blob: 2563df89fc2a0e60f28a2e8958ddfda525099fb4 [file] [log] [blame]
Tao Maf56654c2008-08-18 17:38:48 +08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * xattr.c
5 *
Tiger Yangc3cb6822008-10-23 16:33:03 +08006 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
Tao Maf56654c2008-08-18 17:38:48 +08007 *
Tiger Yangcf1d6c72008-08-18 17:11:00 +08008 * CREDITS:
Tiger Yangc3cb6822008-10-23 16:33:03 +08009 * Lots of code in this file is copy from linux/fs/ext3/xattr.c.
10 * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
Tiger Yangcf1d6c72008-08-18 17:11:00 +080011 *
Tao Maf56654c2008-08-18 17:38:48 +080012 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public
Tiger Yangc3cb6822008-10-23 16:33:03 +080014 * License version 2 as published by the Free Software Foundation.
Tao Maf56654c2008-08-18 17:38:48 +080015 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
Tao Maf56654c2008-08-18 17:38:48 +080020 */
21
Tiger Yangcf1d6c72008-08-18 17:11:00 +080022#include <linux/capability.h>
23#include <linux/fs.h>
24#include <linux/types.h>
25#include <linux/slab.h>
26#include <linux/highmem.h>
27#include <linux/pagemap.h>
28#include <linux/uio.h>
29#include <linux/sched.h>
30#include <linux/splice.h>
31#include <linux/mount.h>
32#include <linux/writeback.h>
33#include <linux/falloc.h>
Tao Ma01225592008-08-18 17:38:53 +080034#include <linux/sort.h>
Mark Fasheh99219ae2008-10-07 14:52:59 -070035#include <linux/init.h>
36#include <linux/module.h>
37#include <linux/string.h>
Tiger Yang923f7f32008-11-14 11:16:27 +080038#include <linux/security.h>
Tiger Yangcf1d6c72008-08-18 17:11:00 +080039
Tao Maf56654c2008-08-18 17:38:48 +080040#define MLOG_MASK_PREFIX ML_XATTR
41#include <cluster/masklog.h>
42
43#include "ocfs2.h"
44#include "alloc.h"
Joel Beckerd6b32bb2008-10-17 14:55:01 -070045#include "blockcheck.h"
Tao Maf56654c2008-08-18 17:38:48 +080046#include "dlmglue.h"
47#include "file.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080048#include "symlink.h"
49#include "sysfile.h"
Tao Maf56654c2008-08-18 17:38:48 +080050#include "inode.h"
51#include "journal.h"
52#include "ocfs2_fs.h"
53#include "suballoc.h"
54#include "uptodate.h"
55#include "buffer_head_io.h"
Tao Ma0c044f02008-08-18 17:38:50 +080056#include "super.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080057#include "xattr.h"
58
59
60struct ocfs2_xattr_def_value_root {
61 struct ocfs2_xattr_value_root xv;
62 struct ocfs2_extent_rec er;
63};
64
Tao Ma0c044f02008-08-18 17:38:50 +080065struct ocfs2_xattr_bucket {
Joel Beckerba937122008-10-24 19:13:20 -070066 /* The inode these xattrs are associated with */
67 struct inode *bu_inode;
68
69 /* The actual buffers that make up the bucket */
Joel Becker4ac60322008-10-18 19:11:42 -070070 struct buffer_head *bu_bhs[OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET];
Joel Beckerba937122008-10-24 19:13:20 -070071
72 /* How many blocks make up one bucket for this filesystem */
73 int bu_blocks;
Tao Ma0c044f02008-08-18 17:38:50 +080074};
75
Tao Ma78f30c32008-11-12 08:27:00 +080076struct ocfs2_xattr_set_ctxt {
Tao Ma85db90e2008-11-12 08:27:01 +080077 handle_t *handle;
Tao Ma78f30c32008-11-12 08:27:00 +080078 struct ocfs2_alloc_context *meta_ac;
79 struct ocfs2_alloc_context *data_ac;
80 struct ocfs2_cached_dealloc_ctxt dealloc;
81};
82
Tiger Yangcf1d6c72008-08-18 17:11:00 +080083#define OCFS2_XATTR_ROOT_SIZE (sizeof(struct ocfs2_xattr_def_value_root))
84#define OCFS2_XATTR_INLINE_SIZE 80
Tiger Yang4442f512009-02-20 11:11:50 +080085#define OCFS2_XATTR_HEADER_GAP 4
Tiger Yang534eadd2008-11-14 11:16:41 +080086#define OCFS2_XATTR_FREE_IN_IBODY (OCFS2_MIN_XATTR_INLINE_SIZE \
87 - sizeof(struct ocfs2_xattr_header) \
Tiger Yang4442f512009-02-20 11:11:50 +080088 - OCFS2_XATTR_HEADER_GAP)
Tiger Yang89c38bd2008-11-14 11:17:41 +080089#define OCFS2_XATTR_FREE_IN_BLOCK(ptr) ((ptr)->i_sb->s_blocksize \
90 - sizeof(struct ocfs2_xattr_block) \
91 - sizeof(struct ocfs2_xattr_header) \
Tiger Yang4442f512009-02-20 11:11:50 +080092 - OCFS2_XATTR_HEADER_GAP)
Tiger Yangcf1d6c72008-08-18 17:11:00 +080093
94static struct ocfs2_xattr_def_value_root def_xv = {
95 .xv.xr_list.l_count = cpu_to_le16(1),
96};
97
98struct xattr_handler *ocfs2_xattr_handlers[] = {
99 &ocfs2_xattr_user_handler,
Tiger Yang929fb012008-11-14 11:17:04 +0800100#ifdef CONFIG_OCFS2_FS_POSIX_ACL
101 &ocfs2_xattr_acl_access_handler,
102 &ocfs2_xattr_acl_default_handler,
103#endif
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800104 &ocfs2_xattr_trusted_handler,
Tiger Yang923f7f32008-11-14 11:16:27 +0800105 &ocfs2_xattr_security_handler,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800106 NULL
107};
108
Tiger Yangc988fd02008-10-23 16:34:44 +0800109static struct xattr_handler *ocfs2_xattr_handler_map[OCFS2_XATTR_MAX] = {
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800110 [OCFS2_XATTR_INDEX_USER] = &ocfs2_xattr_user_handler,
Tiger Yang929fb012008-11-14 11:17:04 +0800111#ifdef CONFIG_OCFS2_FS_POSIX_ACL
112 [OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS]
113 = &ocfs2_xattr_acl_access_handler,
114 [OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT]
115 = &ocfs2_xattr_acl_default_handler,
116#endif
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800117 [OCFS2_XATTR_INDEX_TRUSTED] = &ocfs2_xattr_trusted_handler,
Tiger Yang923f7f32008-11-14 11:16:27 +0800118 [OCFS2_XATTR_INDEX_SECURITY] = &ocfs2_xattr_security_handler,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800119};
120
121struct ocfs2_xattr_info {
122 int name_index;
123 const char *name;
124 const void *value;
125 size_t value_len;
126};
127
128struct ocfs2_xattr_search {
129 struct buffer_head *inode_bh;
130 /*
131 * xattr_bh point to the block buffer head which has extended attribute
132 * when extended attribute in inode, xattr_bh is equal to inode_bh.
133 */
134 struct buffer_head *xattr_bh;
135 struct ocfs2_xattr_header *header;
Joel Beckerba937122008-10-24 19:13:20 -0700136 struct ocfs2_xattr_bucket *bucket;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800137 void *base;
138 void *end;
139 struct ocfs2_xattr_entry *here;
140 int not_found;
141};
142
Tao Ma589dc262008-08-18 17:38:51 +0800143static int ocfs2_xattr_bucket_get_name_value(struct inode *inode,
144 struct ocfs2_xattr_header *xh,
145 int index,
146 int *block_off,
147 int *new_offset);
148
Joel Becker54f443f2008-10-20 18:43:07 -0700149static int ocfs2_xattr_block_find(struct inode *inode,
150 int name_index,
151 const char *name,
152 struct ocfs2_xattr_search *xs);
Tao Ma589dc262008-08-18 17:38:51 +0800153static int ocfs2_xattr_index_block_find(struct inode *inode,
154 struct buffer_head *root_bh,
155 int name_index,
156 const char *name,
157 struct ocfs2_xattr_search *xs);
158
Tao Ma0c044f02008-08-18 17:38:50 +0800159static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
160 struct ocfs2_xattr_tree_root *xt,
161 char *buffer,
162 size_t buffer_size);
163
Tao Ma01225592008-08-18 17:38:53 +0800164static int ocfs2_xattr_create_index_block(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +0800165 struct ocfs2_xattr_search *xs,
166 struct ocfs2_xattr_set_ctxt *ctxt);
Tao Ma01225592008-08-18 17:38:53 +0800167
168static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
169 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +0800170 struct ocfs2_xattr_search *xs,
171 struct ocfs2_xattr_set_ctxt *ctxt);
Tao Ma01225592008-08-18 17:38:53 +0800172
Tao Maa3944252008-08-18 17:38:54 +0800173static int ocfs2_delete_xattr_index_block(struct inode *inode,
174 struct buffer_head *xb_bh);
Joel Beckerc58b6032008-11-26 13:36:24 -0800175static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
176 u64 src_blk, u64 last_blk, u64 to_blk,
177 unsigned int start_bucket,
178 u32 *first_hash);
Tao Maa3944252008-08-18 17:38:54 +0800179
Tiger Yang0030e002008-10-23 16:33:33 +0800180static inline u16 ocfs2_xattr_buckets_per_cluster(struct ocfs2_super *osb)
181{
182 return (1 << osb->s_clustersize_bits) / OCFS2_XATTR_BUCKET_SIZE;
183}
184
185static inline u16 ocfs2_blocks_per_xattr_bucket(struct super_block *sb)
186{
187 return OCFS2_XATTR_BUCKET_SIZE / (1 << sb->s_blocksize_bits);
188}
189
190static inline u16 ocfs2_xattr_max_xe_in_bucket(struct super_block *sb)
191{
192 u16 len = sb->s_blocksize -
193 offsetof(struct ocfs2_xattr_header, xh_entries);
194
195 return len / sizeof(struct ocfs2_xattr_entry);
196}
197
Joel Becker9c7759a2008-10-24 16:21:03 -0700198#define bucket_blkno(_b) ((_b)->bu_bhs[0]->b_blocknr)
Joel Becker51def392008-10-24 16:57:21 -0700199#define bucket_block(_b, _n) ((_b)->bu_bhs[(_n)]->b_data)
Joel Becker3e632942008-10-24 17:04:49 -0700200#define bucket_xh(_b) ((struct ocfs2_xattr_header *)bucket_block((_b), 0))
Joel Becker9c7759a2008-10-24 16:21:03 -0700201
Joel Beckerba937122008-10-24 19:13:20 -0700202static struct ocfs2_xattr_bucket *ocfs2_xattr_bucket_new(struct inode *inode)
Joel Becker6dde41d2008-10-24 17:16:48 -0700203{
Joel Beckerba937122008-10-24 19:13:20 -0700204 struct ocfs2_xattr_bucket *bucket;
205 int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Joel Becker6dde41d2008-10-24 17:16:48 -0700206
Joel Beckerba937122008-10-24 19:13:20 -0700207 BUG_ON(blks > OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET);
208
209 bucket = kzalloc(sizeof(struct ocfs2_xattr_bucket), GFP_NOFS);
210 if (bucket) {
211 bucket->bu_inode = inode;
212 bucket->bu_blocks = blks;
213 }
214
215 return bucket;
216}
217
218static void ocfs2_xattr_bucket_relse(struct ocfs2_xattr_bucket *bucket)
219{
220 int i;
221
222 for (i = 0; i < bucket->bu_blocks; i++) {
Joel Becker6dde41d2008-10-24 17:16:48 -0700223 brelse(bucket->bu_bhs[i]);
224 bucket->bu_bhs[i] = NULL;
225 }
226}
227
Joel Beckerba937122008-10-24 19:13:20 -0700228static void ocfs2_xattr_bucket_free(struct ocfs2_xattr_bucket *bucket)
229{
230 if (bucket) {
231 ocfs2_xattr_bucket_relse(bucket);
232 bucket->bu_inode = NULL;
233 kfree(bucket);
234 }
235}
236
Joel Becker784b8162008-10-24 17:33:40 -0700237/*
238 * A bucket that has never been written to disk doesn't need to be
239 * read. We just need the buffer_heads. Don't call this for
240 * buckets that are already on disk. ocfs2_read_xattr_bucket() initializes
241 * them fully.
242 */
Joel Beckerba937122008-10-24 19:13:20 -0700243static int ocfs2_init_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
Joel Becker784b8162008-10-24 17:33:40 -0700244 u64 xb_blkno)
245{
246 int i, rc = 0;
Joel Becker784b8162008-10-24 17:33:40 -0700247
Joel Beckerba937122008-10-24 19:13:20 -0700248 for (i = 0; i < bucket->bu_blocks; i++) {
249 bucket->bu_bhs[i] = sb_getblk(bucket->bu_inode->i_sb,
250 xb_blkno + i);
Joel Becker784b8162008-10-24 17:33:40 -0700251 if (!bucket->bu_bhs[i]) {
252 rc = -EIO;
253 mlog_errno(rc);
254 break;
255 }
256
Tao Ma757055a2008-11-06 08:10:48 +0800257 if (!ocfs2_buffer_uptodate(bucket->bu_inode,
258 bucket->bu_bhs[i]))
259 ocfs2_set_new_buffer_uptodate(bucket->bu_inode,
260 bucket->bu_bhs[i]);
Joel Becker784b8162008-10-24 17:33:40 -0700261 }
262
263 if (rc)
Joel Beckerba937122008-10-24 19:13:20 -0700264 ocfs2_xattr_bucket_relse(bucket);
Joel Becker784b8162008-10-24 17:33:40 -0700265 return rc;
266}
267
268/* Read the xattr bucket at xb_blkno */
Joel Beckerba937122008-10-24 19:13:20 -0700269static int ocfs2_read_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
Joel Becker784b8162008-10-24 17:33:40 -0700270 u64 xb_blkno)
271{
Joel Beckerba937122008-10-24 19:13:20 -0700272 int rc;
Joel Becker784b8162008-10-24 17:33:40 -0700273
Joel Beckerba937122008-10-24 19:13:20 -0700274 rc = ocfs2_read_blocks(bucket->bu_inode, xb_blkno,
Joel Becker970e4932008-11-13 14:49:19 -0800275 bucket->bu_blocks, bucket->bu_bhs, 0,
276 NULL);
Joel Becker4d0e2142008-12-05 11:19:37 -0800277 if (!rc) {
Tao Mac8b9cf92009-02-24 17:40:26 -0800278 spin_lock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800279 rc = ocfs2_validate_meta_ecc_bhs(bucket->bu_inode->i_sb,
280 bucket->bu_bhs,
281 bucket->bu_blocks,
282 &bucket_xh(bucket)->xh_check);
Tao Mac8b9cf92009-02-24 17:40:26 -0800283 spin_unlock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800284 if (rc)
285 mlog_errno(rc);
286 }
287
Joel Becker784b8162008-10-24 17:33:40 -0700288 if (rc)
Joel Beckerba937122008-10-24 19:13:20 -0700289 ocfs2_xattr_bucket_relse(bucket);
Joel Becker784b8162008-10-24 17:33:40 -0700290 return rc;
291}
292
Joel Becker1224be02008-10-24 18:47:33 -0700293static int ocfs2_xattr_bucket_journal_access(handle_t *handle,
Joel Becker1224be02008-10-24 18:47:33 -0700294 struct ocfs2_xattr_bucket *bucket,
295 int type)
296{
297 int i, rc = 0;
Joel Becker1224be02008-10-24 18:47:33 -0700298
Joel Beckerba937122008-10-24 19:13:20 -0700299 for (i = 0; i < bucket->bu_blocks; i++) {
300 rc = ocfs2_journal_access(handle, bucket->bu_inode,
Joel Becker1224be02008-10-24 18:47:33 -0700301 bucket->bu_bhs[i], type);
302 if (rc) {
303 mlog_errno(rc);
304 break;
305 }
306 }
307
308 return rc;
309}
310
311static void ocfs2_xattr_bucket_journal_dirty(handle_t *handle,
Joel Becker1224be02008-10-24 18:47:33 -0700312 struct ocfs2_xattr_bucket *bucket)
313{
Joel Beckerba937122008-10-24 19:13:20 -0700314 int i;
Joel Becker1224be02008-10-24 18:47:33 -0700315
Tao Mac8b9cf92009-02-24 17:40:26 -0800316 spin_lock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800317 ocfs2_compute_meta_ecc_bhs(bucket->bu_inode->i_sb,
318 bucket->bu_bhs, bucket->bu_blocks,
319 &bucket_xh(bucket)->xh_check);
Tao Mac8b9cf92009-02-24 17:40:26 -0800320 spin_unlock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800321
Joel Beckerba937122008-10-24 19:13:20 -0700322 for (i = 0; i < bucket->bu_blocks; i++)
Joel Becker1224be02008-10-24 18:47:33 -0700323 ocfs2_journal_dirty(handle, bucket->bu_bhs[i]);
324}
325
Joel Beckerba937122008-10-24 19:13:20 -0700326static void ocfs2_xattr_bucket_copy_data(struct ocfs2_xattr_bucket *dest,
Joel Becker4980c6d2008-10-24 18:54:43 -0700327 struct ocfs2_xattr_bucket *src)
328{
329 int i;
Joel Beckerba937122008-10-24 19:13:20 -0700330 int blocksize = src->bu_inode->i_sb->s_blocksize;
Joel Becker4980c6d2008-10-24 18:54:43 -0700331
Joel Beckerba937122008-10-24 19:13:20 -0700332 BUG_ON(dest->bu_blocks != src->bu_blocks);
333 BUG_ON(dest->bu_inode != src->bu_inode);
334
335 for (i = 0; i < src->bu_blocks; i++) {
Joel Becker4980c6d2008-10-24 18:54:43 -0700336 memcpy(bucket_block(dest, i), bucket_block(src, i),
337 blocksize);
338 }
339}
Joel Becker1224be02008-10-24 18:47:33 -0700340
Joel Becker4ae1d692008-11-13 14:49:18 -0800341static int ocfs2_validate_xattr_block(struct super_block *sb,
342 struct buffer_head *bh)
343{
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700344 int rc;
Joel Becker4ae1d692008-11-13 14:49:18 -0800345 struct ocfs2_xattr_block *xb =
346 (struct ocfs2_xattr_block *)bh->b_data;
347
348 mlog(0, "Validating xattr block %llu\n",
349 (unsigned long long)bh->b_blocknr);
350
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700351 BUG_ON(!buffer_uptodate(bh));
352
353 /*
354 * If the ecc fails, we return the error but otherwise
355 * leave the filesystem running. We know any error is
356 * local to this block.
357 */
358 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &xb->xb_check);
359 if (rc)
360 return rc;
361
362 /*
363 * Errors after here are fatal
364 */
365
Joel Becker4ae1d692008-11-13 14:49:18 -0800366 if (!OCFS2_IS_VALID_XATTR_BLOCK(xb)) {
367 ocfs2_error(sb,
368 "Extended attribute block #%llu has bad "
369 "signature %.*s",
370 (unsigned long long)bh->b_blocknr, 7,
371 xb->xb_signature);
372 return -EINVAL;
373 }
374
375 if (le64_to_cpu(xb->xb_blkno) != bh->b_blocknr) {
376 ocfs2_error(sb,
377 "Extended attribute block #%llu has an "
378 "invalid xb_blkno of %llu",
379 (unsigned long long)bh->b_blocknr,
380 (unsigned long long)le64_to_cpu(xb->xb_blkno));
381 return -EINVAL;
382 }
383
384 if (le32_to_cpu(xb->xb_fs_generation) != OCFS2_SB(sb)->fs_generation) {
385 ocfs2_error(sb,
386 "Extended attribute block #%llu has an invalid "
387 "xb_fs_generation of #%u",
388 (unsigned long long)bh->b_blocknr,
389 le32_to_cpu(xb->xb_fs_generation));
390 return -EINVAL;
391 }
392
393 return 0;
394}
395
396static int ocfs2_read_xattr_block(struct inode *inode, u64 xb_blkno,
397 struct buffer_head **bh)
398{
399 int rc;
400 struct buffer_head *tmp = *bh;
401
Joel Becker970e4932008-11-13 14:49:19 -0800402 rc = ocfs2_read_block(inode, xb_blkno, &tmp,
403 ocfs2_validate_xattr_block);
Joel Becker4ae1d692008-11-13 14:49:18 -0800404
405 /* If ocfs2_read_block() got us a new bh, pass it up. */
406 if (!rc && !*bh)
407 *bh = tmp;
408
409 return rc;
410}
411
Tao Ma936b8832008-10-09 23:06:14 +0800412static inline const char *ocfs2_xattr_prefix(int name_index)
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800413{
414 struct xattr_handler *handler = NULL;
415
416 if (name_index > 0 && name_index < OCFS2_XATTR_MAX)
417 handler = ocfs2_xattr_handler_map[name_index];
418
Tao Ma936b8832008-10-09 23:06:14 +0800419 return handler ? handler->prefix : NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800420}
421
Mark Fasheh40daa162008-10-07 14:31:42 -0700422static u32 ocfs2_xattr_name_hash(struct inode *inode,
Tao Ma2057e5c2008-10-09 23:06:13 +0800423 const char *name,
Mark Fasheh40daa162008-10-07 14:31:42 -0700424 int name_len)
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800425{
426 /* Get hash value of uuid from super block */
427 u32 hash = OCFS2_SB(inode->i_sb)->uuid_hash;
428 int i;
429
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800430 /* hash extended attribute name */
431 for (i = 0; i < name_len; i++) {
432 hash = (hash << OCFS2_HASH_SHIFT) ^
433 (hash >> (8*sizeof(hash) - OCFS2_HASH_SHIFT)) ^
434 *name++;
435 }
436
437 return hash;
438}
439
440/*
441 * ocfs2_xattr_hash_entry()
442 *
443 * Compute the hash of an extended attribute.
444 */
445static void ocfs2_xattr_hash_entry(struct inode *inode,
446 struct ocfs2_xattr_header *header,
447 struct ocfs2_xattr_entry *entry)
448{
449 u32 hash = 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800450 char *name = (char *)header + le16_to_cpu(entry->xe_name_offset);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800451
Tao Ma2057e5c2008-10-09 23:06:13 +0800452 hash = ocfs2_xattr_name_hash(inode, name, entry->xe_name_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800453 entry->xe_name_hash = cpu_to_le32(hash);
454
455 return;
456}
Tao Maf56654c2008-08-18 17:38:48 +0800457
Tiger Yang534eadd2008-11-14 11:16:41 +0800458static int ocfs2_xattr_entry_real_size(int name_len, size_t value_len)
459{
460 int size = 0;
461
462 if (value_len <= OCFS2_XATTR_INLINE_SIZE)
463 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(value_len);
464 else
465 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
466 size += sizeof(struct ocfs2_xattr_entry);
467
468 return size;
469}
470
471int ocfs2_calc_security_init(struct inode *dir,
472 struct ocfs2_security_xattr_info *si,
473 int *want_clusters,
474 int *xattr_credits,
475 struct ocfs2_alloc_context **xattr_ac)
476{
477 int ret = 0;
478 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
479 int s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
480 si->value_len);
481
482 /*
483 * The max space of security xattr taken inline is
484 * 256(name) + 80(value) + 16(entry) = 352 bytes,
485 * So reserve one metadata block for it is ok.
486 */
487 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
488 s_size > OCFS2_XATTR_FREE_IN_IBODY) {
489 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, xattr_ac);
490 if (ret) {
491 mlog_errno(ret);
492 return ret;
493 }
494 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
495 }
496
497 /* reserve clusters for xattr value which will be set in B tree*/
Tiger Yang0e445b62008-12-09 16:42:51 +0800498 if (si->value_len > OCFS2_XATTR_INLINE_SIZE) {
499 int new_clusters = ocfs2_clusters_for_bytes(dir->i_sb,
500 si->value_len);
501
502 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
503 new_clusters);
504 *want_clusters += new_clusters;
505 }
Tiger Yang534eadd2008-11-14 11:16:41 +0800506 return ret;
507}
508
Tiger Yang89c38bd2008-11-14 11:17:41 +0800509int ocfs2_calc_xattr_init(struct inode *dir,
510 struct buffer_head *dir_bh,
511 int mode,
512 struct ocfs2_security_xattr_info *si,
513 int *want_clusters,
514 int *xattr_credits,
515 struct ocfs2_alloc_context **xattr_ac)
516{
517 int ret = 0;
518 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
Tiger Yang0e445b62008-12-09 16:42:51 +0800519 int s_size = 0, a_size = 0, acl_len = 0, new_clusters;
Tiger Yang89c38bd2008-11-14 11:17:41 +0800520
521 if (si->enable)
522 s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
523 si->value_len);
524
525 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) {
526 acl_len = ocfs2_xattr_get_nolock(dir, dir_bh,
527 OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT,
528 "", NULL, 0);
529 if (acl_len > 0) {
530 a_size = ocfs2_xattr_entry_real_size(0, acl_len);
531 if (S_ISDIR(mode))
532 a_size <<= 1;
533 } else if (acl_len != 0 && acl_len != -ENODATA) {
534 mlog_errno(ret);
535 return ret;
536 }
537 }
538
539 if (!(s_size + a_size))
540 return ret;
541
542 /*
543 * The max space of security xattr taken inline is
544 * 256(name) + 80(value) + 16(entry) = 352 bytes,
545 * The max space of acl xattr taken inline is
546 * 80(value) + 16(entry) * 2(if directory) = 192 bytes,
547 * when blocksize = 512, may reserve one more cluser for
548 * xattr bucket, otherwise reserve one metadata block
549 * for them is ok.
Tiger Yang6c9fd1d2009-03-06 10:19:30 +0800550 * If this is a new directory with inline data,
551 * we choose to reserve the entire inline area for
552 * directory contents and force an external xattr block.
Tiger Yang89c38bd2008-11-14 11:17:41 +0800553 */
554 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
Tiger Yang6c9fd1d2009-03-06 10:19:30 +0800555 (S_ISDIR(mode) && ocfs2_supports_inline_data(osb)) ||
Tiger Yang89c38bd2008-11-14 11:17:41 +0800556 (s_size + a_size) > OCFS2_XATTR_FREE_IN_IBODY) {
557 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, xattr_ac);
558 if (ret) {
559 mlog_errno(ret);
560 return ret;
561 }
562 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
563 }
564
565 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE &&
566 (s_size + a_size) > OCFS2_XATTR_FREE_IN_BLOCK(dir)) {
567 *want_clusters += 1;
568 *xattr_credits += ocfs2_blocks_per_xattr_bucket(dir->i_sb);
569 }
570
Tiger Yang0e445b62008-12-09 16:42:51 +0800571 /*
572 * reserve credits and clusters for xattrs which has large value
573 * and have to be set outside
574 */
575 if (si->enable && si->value_len > OCFS2_XATTR_INLINE_SIZE) {
576 new_clusters = ocfs2_clusters_for_bytes(dir->i_sb,
577 si->value_len);
578 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
579 new_clusters);
580 *want_clusters += new_clusters;
581 }
Tiger Yang89c38bd2008-11-14 11:17:41 +0800582 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL &&
583 acl_len > OCFS2_XATTR_INLINE_SIZE) {
Tiger Yang0e445b62008-12-09 16:42:51 +0800584 /* for directory, it has DEFAULT and ACCESS two types of acls */
585 new_clusters = (S_ISDIR(mode) ? 2 : 1) *
586 ocfs2_clusters_for_bytes(dir->i_sb, acl_len);
587 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
588 new_clusters);
589 *want_clusters += new_clusters;
Tiger Yang89c38bd2008-11-14 11:17:41 +0800590 }
591
592 return ret;
593}
594
Tao Maf56654c2008-08-18 17:38:48 +0800595static int ocfs2_xattr_extend_allocation(struct inode *inode,
596 u32 clusters_to_add,
Joel Becker19b801f2008-12-09 14:36:50 -0800597 struct ocfs2_xattr_value_buf *vb,
Tao Ma78f30c32008-11-12 08:27:00 +0800598 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800599{
600 int status = 0;
Tao Ma85db90e2008-11-12 08:27:01 +0800601 handle_t *handle = ctxt->handle;
Tao Maf56654c2008-08-18 17:38:48 +0800602 enum ocfs2_alloc_restarted why;
603 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Becker19b801f2008-12-09 14:36:50 -0800604 u32 prev_clusters, logical_start = le32_to_cpu(vb->vb_xv->xr_clusters);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700605 struct ocfs2_extent_tree et;
Tao Maf56654c2008-08-18 17:38:48 +0800606
607 mlog(0, "(clusters_to_add for xattr= %u)\n", clusters_to_add);
608
Joel Becker19b801f2008-12-09 14:36:50 -0800609 ocfs2_init_xattr_value_extent_tree(&et, inode, vb);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700610
Joel Becker19b801f2008-12-09 14:36:50 -0800611 status = vb->vb_access(handle, inode, vb->vb_bh,
Joel Becker2a50a742008-12-09 14:24:33 -0800612 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Maf56654c2008-08-18 17:38:48 +0800613 if (status < 0) {
614 mlog_errno(status);
615 goto leave;
616 }
617
Joel Becker19b801f2008-12-09 14:36:50 -0800618 prev_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
Tao Maf56654c2008-08-18 17:38:48 +0800619 status = ocfs2_add_clusters_in_btree(osb,
620 inode,
621 &logical_start,
622 clusters_to_add,
623 0,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700624 &et,
Tao Maf56654c2008-08-18 17:38:48 +0800625 handle,
Tao Ma78f30c32008-11-12 08:27:00 +0800626 ctxt->data_ac,
627 ctxt->meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700628 &why);
Tao Ma85db90e2008-11-12 08:27:01 +0800629 if (status < 0) {
630 mlog_errno(status);
Tao Maf56654c2008-08-18 17:38:48 +0800631 goto leave;
632 }
633
Joel Becker19b801f2008-12-09 14:36:50 -0800634 status = ocfs2_journal_dirty(handle, vb->vb_bh);
Tao Maf56654c2008-08-18 17:38:48 +0800635 if (status < 0) {
636 mlog_errno(status);
637 goto leave;
638 }
639
Joel Becker19b801f2008-12-09 14:36:50 -0800640 clusters_to_add -= le32_to_cpu(vb->vb_xv->xr_clusters) - prev_clusters;
Tao Maf56654c2008-08-18 17:38:48 +0800641
Tao Ma85db90e2008-11-12 08:27:01 +0800642 /*
643 * We should have already allocated enough space before the transaction,
644 * so no need to restart.
645 */
646 BUG_ON(why != RESTART_NONE || clusters_to_add);
Tao Maf56654c2008-08-18 17:38:48 +0800647
648leave:
Tao Maf56654c2008-08-18 17:38:48 +0800649
650 return status;
651}
652
653static int __ocfs2_remove_xattr_range(struct inode *inode,
Joel Beckerd72cc722008-12-09 14:30:41 -0800654 struct ocfs2_xattr_value_buf *vb,
Tao Maf56654c2008-08-18 17:38:48 +0800655 u32 cpos, u32 phys_cpos, u32 len,
Tao Ma78f30c32008-11-12 08:27:00 +0800656 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800657{
658 int ret;
659 u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
Tao Ma85db90e2008-11-12 08:27:01 +0800660 handle_t *handle = ctxt->handle;
Joel Beckerf99b9b72008-08-20 19:36:33 -0700661 struct ocfs2_extent_tree et;
Tao Maf56654c2008-08-18 17:38:48 +0800662
Joel Beckerd72cc722008-12-09 14:30:41 -0800663 ocfs2_init_xattr_value_extent_tree(&et, inode, vb);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700664
Joel Beckerd72cc722008-12-09 14:30:41 -0800665 ret = vb->vb_access(handle, inode, vb->vb_bh,
666 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Maf56654c2008-08-18 17:38:48 +0800667 if (ret) {
668 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +0800669 goto out;
Tao Maf56654c2008-08-18 17:38:48 +0800670 }
671
Tao Ma78f30c32008-11-12 08:27:00 +0800672 ret = ocfs2_remove_extent(inode, &et, cpos, len, handle, ctxt->meta_ac,
673 &ctxt->dealloc);
Tao Maf56654c2008-08-18 17:38:48 +0800674 if (ret) {
675 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +0800676 goto out;
Tao Maf56654c2008-08-18 17:38:48 +0800677 }
678
Joel Beckerd72cc722008-12-09 14:30:41 -0800679 le32_add_cpu(&vb->vb_xv->xr_clusters, -len);
Tao Maf56654c2008-08-18 17:38:48 +0800680
Joel Beckerd72cc722008-12-09 14:30:41 -0800681 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tao Maf56654c2008-08-18 17:38:48 +0800682 if (ret) {
683 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +0800684 goto out;
Tao Maf56654c2008-08-18 17:38:48 +0800685 }
686
Tao Ma78f30c32008-11-12 08:27:00 +0800687 ret = ocfs2_cache_cluster_dealloc(&ctxt->dealloc, phys_blkno, len);
Tao Maf56654c2008-08-18 17:38:48 +0800688 if (ret)
689 mlog_errno(ret);
690
Tao Maf56654c2008-08-18 17:38:48 +0800691out:
Tao Maf56654c2008-08-18 17:38:48 +0800692 return ret;
693}
694
695static int ocfs2_xattr_shrink_size(struct inode *inode,
696 u32 old_clusters,
697 u32 new_clusters,
Joel Becker19b801f2008-12-09 14:36:50 -0800698 struct ocfs2_xattr_value_buf *vb,
Tao Ma78f30c32008-11-12 08:27:00 +0800699 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800700{
701 int ret = 0;
702 u32 trunc_len, cpos, phys_cpos, alloc_size;
703 u64 block;
Tao Maf56654c2008-08-18 17:38:48 +0800704
705 if (old_clusters <= new_clusters)
706 return 0;
707
708 cpos = new_clusters;
709 trunc_len = old_clusters - new_clusters;
710 while (trunc_len) {
711 ret = ocfs2_xattr_get_clusters(inode, cpos, &phys_cpos,
Joel Beckerd72cc722008-12-09 14:30:41 -0800712 &alloc_size,
Joel Becker19b801f2008-12-09 14:36:50 -0800713 &vb->vb_xv->xr_list);
Tao Maf56654c2008-08-18 17:38:48 +0800714 if (ret) {
715 mlog_errno(ret);
716 goto out;
717 }
718
719 if (alloc_size > trunc_len)
720 alloc_size = trunc_len;
721
Joel Becker19b801f2008-12-09 14:36:50 -0800722 ret = __ocfs2_remove_xattr_range(inode, vb, cpos,
Tao Maf56654c2008-08-18 17:38:48 +0800723 phys_cpos, alloc_size,
Tao Ma78f30c32008-11-12 08:27:00 +0800724 ctxt);
Tao Maf56654c2008-08-18 17:38:48 +0800725 if (ret) {
726 mlog_errno(ret);
727 goto out;
728 }
729
730 block = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
731 ocfs2_remove_xattr_clusters_from_cache(inode, block,
732 alloc_size);
733 cpos += alloc_size;
734 trunc_len -= alloc_size;
735 }
736
737out:
Tao Maf56654c2008-08-18 17:38:48 +0800738 return ret;
739}
740
741static int ocfs2_xattr_value_truncate(struct inode *inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -0800742 struct ocfs2_xattr_value_buf *vb,
Tao Ma78f30c32008-11-12 08:27:00 +0800743 int len,
744 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800745{
746 int ret;
747 u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb, len);
Joel Beckerb3e5d372008-12-09 15:01:04 -0800748 u32 old_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
Tao Maf56654c2008-08-18 17:38:48 +0800749
750 if (new_clusters == old_clusters)
751 return 0;
752
753 if (new_clusters > old_clusters)
754 ret = ocfs2_xattr_extend_allocation(inode,
755 new_clusters - old_clusters,
Joel Beckerb3e5d372008-12-09 15:01:04 -0800756 vb, ctxt);
Tao Maf56654c2008-08-18 17:38:48 +0800757 else
758 ret = ocfs2_xattr_shrink_size(inode,
759 old_clusters, new_clusters,
Joel Beckerb3e5d372008-12-09 15:01:04 -0800760 vb, ctxt);
Tao Maf56654c2008-08-18 17:38:48 +0800761
762 return ret;
763}
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800764
Tao Ma936b8832008-10-09 23:06:14 +0800765static int ocfs2_xattr_list_entry(char *buffer, size_t size,
766 size_t *result, const char *prefix,
767 const char *name, int name_len)
768{
769 char *p = buffer + *result;
770 int prefix_len = strlen(prefix);
771 int total_len = prefix_len + name_len + 1;
772
773 *result += total_len;
774
775 /* we are just looking for how big our buffer needs to be */
776 if (!size)
777 return 0;
778
779 if (*result > size)
780 return -ERANGE;
781
782 memcpy(p, prefix, prefix_len);
783 memcpy(p + prefix_len, name, name_len);
784 p[prefix_len + name_len] = '\0';
785
786 return 0;
787}
788
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800789static int ocfs2_xattr_list_entries(struct inode *inode,
790 struct ocfs2_xattr_header *header,
791 char *buffer, size_t buffer_size)
792{
Tao Ma936b8832008-10-09 23:06:14 +0800793 size_t result = 0;
794 int i, type, ret;
795 const char *prefix, *name;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800796
797 for (i = 0 ; i < le16_to_cpu(header->xh_count); i++) {
798 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
Tao Ma936b8832008-10-09 23:06:14 +0800799 type = ocfs2_xattr_get_type(entry);
800 prefix = ocfs2_xattr_prefix(type);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800801
Tao Ma936b8832008-10-09 23:06:14 +0800802 if (prefix) {
803 name = (const char *)header +
804 le16_to_cpu(entry->xe_name_offset);
805
806 ret = ocfs2_xattr_list_entry(buffer, buffer_size,
807 &result, prefix, name,
808 entry->xe_name_len);
809 if (ret)
810 return ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800811 }
812 }
813
Tao Ma936b8832008-10-09 23:06:14 +0800814 return result;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800815}
816
817static int ocfs2_xattr_ibody_list(struct inode *inode,
818 struct ocfs2_dinode *di,
819 char *buffer,
820 size_t buffer_size)
821{
822 struct ocfs2_xattr_header *header = NULL;
823 struct ocfs2_inode_info *oi = OCFS2_I(inode);
824 int ret = 0;
825
826 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
827 return ret;
828
829 header = (struct ocfs2_xattr_header *)
830 ((void *)di + inode->i_sb->s_blocksize -
831 le16_to_cpu(di->i_xattr_inline_size));
832
833 ret = ocfs2_xattr_list_entries(inode, header, buffer, buffer_size);
834
835 return ret;
836}
837
838static int ocfs2_xattr_block_list(struct inode *inode,
839 struct ocfs2_dinode *di,
840 char *buffer,
841 size_t buffer_size)
842{
843 struct buffer_head *blk_bh = NULL;
Tao Ma0c044f02008-08-18 17:38:50 +0800844 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800845 int ret = 0;
846
847 if (!di->i_xattr_loc)
848 return ret;
849
Joel Becker4ae1d692008-11-13 14:49:18 -0800850 ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
851 &blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800852 if (ret < 0) {
853 mlog_errno(ret);
854 return ret;
855 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800856
Tao Ma0c044f02008-08-18 17:38:50 +0800857 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Ma0c044f02008-08-18 17:38:50 +0800858 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
859 struct ocfs2_xattr_header *header = &xb->xb_attrs.xb_header;
860 ret = ocfs2_xattr_list_entries(inode, header,
861 buffer, buffer_size);
862 } else {
863 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root;
864 ret = ocfs2_xattr_tree_list_index_block(inode, xt,
865 buffer, buffer_size);
866 }
Joel Becker4ae1d692008-11-13 14:49:18 -0800867
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800868 brelse(blk_bh);
869
870 return ret;
871}
872
873ssize_t ocfs2_listxattr(struct dentry *dentry,
874 char *buffer,
875 size_t size)
876{
877 int ret = 0, i_ret = 0, b_ret = 0;
878 struct buffer_head *di_bh = NULL;
879 struct ocfs2_dinode *di = NULL;
880 struct ocfs2_inode_info *oi = OCFS2_I(dentry->d_inode);
881
Tiger Yang8154da32008-08-18 17:11:46 +0800882 if (!ocfs2_supports_xattr(OCFS2_SB(dentry->d_sb)))
883 return -EOPNOTSUPP;
884
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800885 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
886 return ret;
887
888 ret = ocfs2_inode_lock(dentry->d_inode, &di_bh, 0);
889 if (ret < 0) {
890 mlog_errno(ret);
891 return ret;
892 }
893
894 di = (struct ocfs2_dinode *)di_bh->b_data;
895
896 down_read(&oi->ip_xattr_sem);
897 i_ret = ocfs2_xattr_ibody_list(dentry->d_inode, di, buffer, size);
898 if (i_ret < 0)
899 b_ret = 0;
900 else {
901 if (buffer) {
902 buffer += i_ret;
903 size -= i_ret;
904 }
905 b_ret = ocfs2_xattr_block_list(dentry->d_inode, di,
906 buffer, size);
907 if (b_ret < 0)
908 i_ret = 0;
909 }
910 up_read(&oi->ip_xattr_sem);
911 ocfs2_inode_unlock(dentry->d_inode, 0);
912
913 brelse(di_bh);
914
915 return i_ret + b_ret;
916}
917
918static int ocfs2_xattr_find_entry(int name_index,
919 const char *name,
920 struct ocfs2_xattr_search *xs)
921{
922 struct ocfs2_xattr_entry *entry;
923 size_t name_len;
924 int i, cmp = 1;
925
926 if (name == NULL)
927 return -EINVAL;
928
929 name_len = strlen(name);
930 entry = xs->here;
931 for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
932 cmp = name_index - ocfs2_xattr_get_type(entry);
933 if (!cmp)
934 cmp = name_len - entry->xe_name_len;
935 if (!cmp)
936 cmp = memcmp(name, (xs->base +
937 le16_to_cpu(entry->xe_name_offset)),
938 name_len);
939 if (cmp == 0)
940 break;
941 entry += 1;
942 }
943 xs->here = entry;
944
945 return cmp ? -ENODATA : 0;
946}
947
948static int ocfs2_xattr_get_value_outside(struct inode *inode,
Tao Ma589dc262008-08-18 17:38:51 +0800949 struct ocfs2_xattr_value_root *xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800950 void *buffer,
951 size_t len)
952{
953 u32 cpos, p_cluster, num_clusters, bpc, clusters;
954 u64 blkno;
955 int i, ret = 0;
956 size_t cplen, blocksize;
957 struct buffer_head *bh = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800958 struct ocfs2_extent_list *el;
959
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800960 el = &xv->xr_list;
961 clusters = le32_to_cpu(xv->xr_clusters);
962 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
963 blocksize = inode->i_sb->s_blocksize;
964
965 cpos = 0;
966 while (cpos < clusters) {
967 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
968 &num_clusters, el);
969 if (ret) {
970 mlog_errno(ret);
971 goto out;
972 }
973
974 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
975 /* Copy ocfs2_xattr_value */
976 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
Joel Becker970e4932008-11-13 14:49:19 -0800977 ret = ocfs2_read_block(inode, blkno, &bh, NULL);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800978 if (ret) {
979 mlog_errno(ret);
980 goto out;
981 }
982
983 cplen = len >= blocksize ? blocksize : len;
984 memcpy(buffer, bh->b_data, cplen);
985 len -= cplen;
986 buffer += cplen;
987
988 brelse(bh);
989 bh = NULL;
990 if (len == 0)
991 break;
992 }
993 cpos += num_clusters;
994 }
995out:
996 return ret;
997}
998
999static int ocfs2_xattr_ibody_get(struct inode *inode,
1000 int name_index,
1001 const char *name,
1002 void *buffer,
1003 size_t buffer_size,
1004 struct ocfs2_xattr_search *xs)
1005{
1006 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1007 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
Tao Ma589dc262008-08-18 17:38:51 +08001008 struct ocfs2_xattr_value_root *xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001009 size_t size;
1010 int ret = 0;
1011
1012 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
1013 return -ENODATA;
1014
1015 xs->end = (void *)di + inode->i_sb->s_blocksize;
1016 xs->header = (struct ocfs2_xattr_header *)
1017 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
1018 xs->base = (void *)xs->header;
1019 xs->here = xs->header->xh_entries;
1020
1021 ret = ocfs2_xattr_find_entry(name_index, name, xs);
1022 if (ret)
1023 return ret;
1024 size = le64_to_cpu(xs->here->xe_value_size);
1025 if (buffer) {
1026 if (size > buffer_size)
1027 return -ERANGE;
1028 if (ocfs2_xattr_is_local(xs->here)) {
1029 memcpy(buffer, (void *)xs->base +
1030 le16_to_cpu(xs->here->xe_name_offset) +
1031 OCFS2_XATTR_SIZE(xs->here->xe_name_len), size);
1032 } else {
Tao Ma589dc262008-08-18 17:38:51 +08001033 xv = (struct ocfs2_xattr_value_root *)
1034 (xs->base + le16_to_cpu(
1035 xs->here->xe_name_offset) +
1036 OCFS2_XATTR_SIZE(xs->here->xe_name_len));
1037 ret = ocfs2_xattr_get_value_outside(inode, xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001038 buffer, size);
1039 if (ret < 0) {
1040 mlog_errno(ret);
1041 return ret;
1042 }
1043 }
1044 }
1045
1046 return size;
1047}
1048
1049static int ocfs2_xattr_block_get(struct inode *inode,
1050 int name_index,
1051 const char *name,
1052 void *buffer,
1053 size_t buffer_size,
1054 struct ocfs2_xattr_search *xs)
1055{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001056 struct ocfs2_xattr_block *xb;
Tao Ma589dc262008-08-18 17:38:51 +08001057 struct ocfs2_xattr_value_root *xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001058 size_t size;
Tao Ma589dc262008-08-18 17:38:51 +08001059 int ret = -ENODATA, name_offset, name_len, block_off, i;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001060
Joel Beckerba937122008-10-24 19:13:20 -07001061 xs->bucket = ocfs2_xattr_bucket_new(inode);
1062 if (!xs->bucket) {
1063 ret = -ENOMEM;
1064 mlog_errno(ret);
1065 goto cleanup;
1066 }
Tao Ma589dc262008-08-18 17:38:51 +08001067
Joel Becker54f443f2008-10-20 18:43:07 -07001068 ret = ocfs2_xattr_block_find(inode, name_index, name, xs);
1069 if (ret) {
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001070 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001071 goto cleanup;
1072 }
1073
Tiger Yang6c1e1832008-11-02 19:04:21 +08001074 if (xs->not_found) {
1075 ret = -ENODATA;
1076 goto cleanup;
1077 }
1078
Joel Becker54f443f2008-10-20 18:43:07 -07001079 xb = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001080 size = le64_to_cpu(xs->here->xe_value_size);
1081 if (buffer) {
1082 ret = -ERANGE;
1083 if (size > buffer_size)
1084 goto cleanup;
Tao Ma589dc262008-08-18 17:38:51 +08001085
1086 name_offset = le16_to_cpu(xs->here->xe_name_offset);
1087 name_len = OCFS2_XATTR_SIZE(xs->here->xe_name_len);
1088 i = xs->here - xs->header->xh_entries;
1089
1090 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
1091 ret = ocfs2_xattr_bucket_get_name_value(inode,
Joel Beckerba937122008-10-24 19:13:20 -07001092 bucket_xh(xs->bucket),
Tao Ma589dc262008-08-18 17:38:51 +08001093 i,
1094 &block_off,
1095 &name_offset);
Joel Beckerba937122008-10-24 19:13:20 -07001096 xs->base = bucket_block(xs->bucket, block_off);
Tao Ma589dc262008-08-18 17:38:51 +08001097 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001098 if (ocfs2_xattr_is_local(xs->here)) {
1099 memcpy(buffer, (void *)xs->base +
Tao Ma589dc262008-08-18 17:38:51 +08001100 name_offset + name_len, size);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001101 } else {
Tao Ma589dc262008-08-18 17:38:51 +08001102 xv = (struct ocfs2_xattr_value_root *)
1103 (xs->base + name_offset + name_len);
1104 ret = ocfs2_xattr_get_value_outside(inode, xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001105 buffer, size);
1106 if (ret < 0) {
1107 mlog_errno(ret);
1108 goto cleanup;
1109 }
1110 }
1111 }
1112 ret = size;
1113cleanup:
Joel Beckerba937122008-10-24 19:13:20 -07001114 ocfs2_xattr_bucket_free(xs->bucket);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001115
Joel Becker54f443f2008-10-20 18:43:07 -07001116 brelse(xs->xattr_bh);
1117 xs->xattr_bh = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001118 return ret;
1119}
1120
Tiger Yang4e3e9d02008-11-14 11:16:53 +08001121int ocfs2_xattr_get_nolock(struct inode *inode,
1122 struct buffer_head *di_bh,
Tiger Yang0030e002008-10-23 16:33:33 +08001123 int name_index,
1124 const char *name,
1125 void *buffer,
1126 size_t buffer_size)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001127{
1128 int ret;
1129 struct ocfs2_dinode *di = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001130 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1131 struct ocfs2_xattr_search xis = {
1132 .not_found = -ENODATA,
1133 };
1134 struct ocfs2_xattr_search xbs = {
1135 .not_found = -ENODATA,
1136 };
1137
Tiger Yang8154da32008-08-18 17:11:46 +08001138 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1139 return -EOPNOTSUPP;
1140
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001141 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1142 ret = -ENODATA;
1143
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001144 xis.inode_bh = xbs.inode_bh = di_bh;
1145 di = (struct ocfs2_dinode *)di_bh->b_data;
1146
1147 down_read(&oi->ip_xattr_sem);
1148 ret = ocfs2_xattr_ibody_get(inode, name_index, name, buffer,
1149 buffer_size, &xis);
Tiger Yang6c1e1832008-11-02 19:04:21 +08001150 if (ret == -ENODATA && di->i_xattr_loc)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001151 ret = ocfs2_xattr_block_get(inode, name_index, name, buffer,
1152 buffer_size, &xbs);
1153 up_read(&oi->ip_xattr_sem);
Tiger Yang4e3e9d02008-11-14 11:16:53 +08001154
1155 return ret;
1156}
1157
1158/* ocfs2_xattr_get()
1159 *
1160 * Copy an extended attribute into the buffer provided.
1161 * Buffer is NULL to compute the size of buffer required.
1162 */
1163static int ocfs2_xattr_get(struct inode *inode,
1164 int name_index,
1165 const char *name,
1166 void *buffer,
1167 size_t buffer_size)
1168{
1169 int ret;
1170 struct buffer_head *di_bh = NULL;
1171
1172 ret = ocfs2_inode_lock(inode, &di_bh, 0);
1173 if (ret < 0) {
1174 mlog_errno(ret);
1175 return ret;
1176 }
1177 ret = ocfs2_xattr_get_nolock(inode, di_bh, name_index,
1178 name, buffer, buffer_size);
1179
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001180 ocfs2_inode_unlock(inode, 0);
1181
1182 brelse(di_bh);
1183
1184 return ret;
1185}
1186
1187static int __ocfs2_xattr_set_value_outside(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001188 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001189 struct ocfs2_xattr_value_root *xv,
1190 const void *value,
1191 int value_len)
1192{
Tao Ma71d548a2008-12-05 06:20:54 +08001193 int ret = 0, i, cp_len;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001194 u16 blocksize = inode->i_sb->s_blocksize;
1195 u32 p_cluster, num_clusters;
1196 u32 cpos = 0, bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
1197 u32 clusters = ocfs2_clusters_for_bytes(inode->i_sb, value_len);
1198 u64 blkno;
1199 struct buffer_head *bh = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001200
1201 BUG_ON(clusters > le32_to_cpu(xv->xr_clusters));
1202
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001203 while (cpos < clusters) {
1204 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
1205 &num_clusters, &xv->xr_list);
1206 if (ret) {
1207 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001208 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001209 }
1210
1211 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
1212
1213 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
Joel Becker970e4932008-11-13 14:49:19 -08001214 ret = ocfs2_read_block(inode, blkno, &bh, NULL);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001215 if (ret) {
1216 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001217 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001218 }
1219
1220 ret = ocfs2_journal_access(handle,
1221 inode,
1222 bh,
1223 OCFS2_JOURNAL_ACCESS_WRITE);
1224 if (ret < 0) {
1225 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001226 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001227 }
1228
1229 cp_len = value_len > blocksize ? blocksize : value_len;
1230 memcpy(bh->b_data, value, cp_len);
1231 value_len -= cp_len;
1232 value += cp_len;
1233 if (cp_len < blocksize)
1234 memset(bh->b_data + cp_len, 0,
1235 blocksize - cp_len);
1236
1237 ret = ocfs2_journal_dirty(handle, bh);
1238 if (ret < 0) {
1239 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001240 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001241 }
1242 brelse(bh);
1243 bh = NULL;
1244
1245 /*
1246 * XXX: do we need to empty all the following
1247 * blocks in this cluster?
1248 */
1249 if (!value_len)
1250 break;
1251 }
1252 cpos += num_clusters;
1253 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001254out:
1255 brelse(bh);
1256
1257 return ret;
1258}
1259
1260static int ocfs2_xattr_cleanup(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001261 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001262 struct ocfs2_xattr_info *xi,
1263 struct ocfs2_xattr_search *xs,
Joel Becker512620f2008-12-09 15:58:35 -08001264 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001265 size_t offs)
1266{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001267 int ret = 0;
1268 size_t name_len = strlen(xi->name);
1269 void *val = xs->base + offs;
1270 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1271
Joel Becker512620f2008-12-09 15:58:35 -08001272 ret = vb->vb_access(handle, inode, vb->vb_bh,
1273 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001274 if (ret) {
1275 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001276 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001277 }
1278 /* Decrease xattr count */
1279 le16_add_cpu(&xs->header->xh_count, -1);
1280 /* Remove the xattr entry and tree root which has already be set*/
1281 memset((void *)xs->here, 0, sizeof(struct ocfs2_xattr_entry));
1282 memset(val, 0, size);
1283
Joel Becker512620f2008-12-09 15:58:35 -08001284 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001285 if (ret < 0)
1286 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001287out:
1288 return ret;
1289}
1290
1291static int ocfs2_xattr_update_entry(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001292 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001293 struct ocfs2_xattr_info *xi,
1294 struct ocfs2_xattr_search *xs,
Joel Becker0c748e92008-12-09 15:46:15 -08001295 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001296 size_t offs)
1297{
Tao Ma85db90e2008-11-12 08:27:01 +08001298 int ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001299
Joel Becker0c748e92008-12-09 15:46:15 -08001300 ret = vb->vb_access(handle, inode, vb->vb_bh,
1301 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001302 if (ret) {
1303 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001304 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001305 }
1306
1307 xs->here->xe_name_offset = cpu_to_le16(offs);
1308 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1309 if (xi->value_len <= OCFS2_XATTR_INLINE_SIZE)
1310 ocfs2_xattr_set_local(xs->here, 1);
1311 else
1312 ocfs2_xattr_set_local(xs->here, 0);
1313 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1314
Joel Becker0c748e92008-12-09 15:46:15 -08001315 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001316 if (ret < 0)
1317 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001318out:
1319 return ret;
1320}
1321
1322/*
1323 * ocfs2_xattr_set_value_outside()
1324 *
1325 * Set large size value in B tree.
1326 */
1327static int ocfs2_xattr_set_value_outside(struct inode *inode,
1328 struct ocfs2_xattr_info *xi,
1329 struct ocfs2_xattr_search *xs,
Tao Ma78f30c32008-11-12 08:27:00 +08001330 struct ocfs2_xattr_set_ctxt *ctxt,
Joel Becker512620f2008-12-09 15:58:35 -08001331 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001332 size_t offs)
1333{
1334 size_t name_len = strlen(xi->name);
1335 void *val = xs->base + offs;
1336 struct ocfs2_xattr_value_root *xv = NULL;
1337 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1338 int ret = 0;
1339
1340 memset(val, 0, size);
1341 memcpy(val, xi->name, name_len);
1342 xv = (struct ocfs2_xattr_value_root *)
1343 (val + OCFS2_XATTR_SIZE(name_len));
1344 xv->xr_clusters = 0;
1345 xv->xr_last_eb_blk = 0;
1346 xv->xr_list.l_tree_depth = 0;
1347 xv->xr_list.l_count = cpu_to_le16(1);
1348 xv->xr_list.l_next_free_rec = 0;
Joel Becker512620f2008-12-09 15:58:35 -08001349 vb->vb_xv = xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001350
Joel Becker512620f2008-12-09 15:58:35 -08001351 ret = ocfs2_xattr_value_truncate(inode, vb, xi->value_len, ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001352 if (ret < 0) {
1353 mlog_errno(ret);
1354 return ret;
1355 }
Joel Becker512620f2008-12-09 15:58:35 -08001356 ret = ocfs2_xattr_update_entry(inode, ctxt->handle, xi, xs, vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001357 if (ret < 0) {
1358 mlog_errno(ret);
1359 return ret;
1360 }
Joel Becker512620f2008-12-09 15:58:35 -08001361 ret = __ocfs2_xattr_set_value_outside(inode, ctxt->handle, vb->vb_xv,
Tao Ma85db90e2008-11-12 08:27:01 +08001362 xi->value, xi->value_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001363 if (ret < 0)
1364 mlog_errno(ret);
1365
1366 return ret;
1367}
1368
1369/*
1370 * ocfs2_xattr_set_entry_local()
1371 *
1372 * Set, replace or remove extended attribute in local.
1373 */
1374static void ocfs2_xattr_set_entry_local(struct inode *inode,
1375 struct ocfs2_xattr_info *xi,
1376 struct ocfs2_xattr_search *xs,
1377 struct ocfs2_xattr_entry *last,
1378 size_t min_offs)
1379{
1380 size_t name_len = strlen(xi->name);
1381 int i;
1382
1383 if (xi->value && xs->not_found) {
1384 /* Insert the new xattr entry. */
1385 le16_add_cpu(&xs->header->xh_count, 1);
1386 ocfs2_xattr_set_type(last, xi->name_index);
1387 ocfs2_xattr_set_local(last, 1);
1388 last->xe_name_len = name_len;
1389 } else {
1390 void *first_val;
1391 void *val;
1392 size_t offs, size;
1393
1394 first_val = xs->base + min_offs;
1395 offs = le16_to_cpu(xs->here->xe_name_offset);
1396 val = xs->base + offs;
1397
1398 if (le64_to_cpu(xs->here->xe_value_size) >
1399 OCFS2_XATTR_INLINE_SIZE)
1400 size = OCFS2_XATTR_SIZE(name_len) +
1401 OCFS2_XATTR_ROOT_SIZE;
1402 else
1403 size = OCFS2_XATTR_SIZE(name_len) +
1404 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1405
1406 if (xi->value && size == OCFS2_XATTR_SIZE(name_len) +
1407 OCFS2_XATTR_SIZE(xi->value_len)) {
1408 /* The old and the new value have the
1409 same size. Just replace the value. */
1410 ocfs2_xattr_set_local(xs->here, 1);
1411 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1412 /* Clear value bytes. */
1413 memset(val + OCFS2_XATTR_SIZE(name_len),
1414 0,
1415 OCFS2_XATTR_SIZE(xi->value_len));
1416 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1417 xi->value,
1418 xi->value_len);
1419 return;
1420 }
1421 /* Remove the old name+value. */
1422 memmove(first_val + size, first_val, val - first_val);
1423 memset(first_val, 0, size);
1424 xs->here->xe_name_hash = 0;
1425 xs->here->xe_name_offset = 0;
1426 ocfs2_xattr_set_local(xs->here, 1);
1427 xs->here->xe_value_size = 0;
1428
1429 min_offs += size;
1430
1431 /* Adjust all value offsets. */
1432 last = xs->header->xh_entries;
1433 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1434 size_t o = le16_to_cpu(last->xe_name_offset);
1435
1436 if (o < offs)
1437 last->xe_name_offset = cpu_to_le16(o + size);
1438 last += 1;
1439 }
1440
1441 if (!xi->value) {
1442 /* Remove the old entry. */
1443 last -= 1;
1444 memmove(xs->here, xs->here + 1,
1445 (void *)last - (void *)xs->here);
1446 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
1447 le16_add_cpu(&xs->header->xh_count, -1);
1448 }
1449 }
1450 if (xi->value) {
1451 /* Insert the new name+value. */
1452 size_t size = OCFS2_XATTR_SIZE(name_len) +
1453 OCFS2_XATTR_SIZE(xi->value_len);
1454 void *val = xs->base + min_offs - size;
1455
1456 xs->here->xe_name_offset = cpu_to_le16(min_offs - size);
1457 memset(val, 0, size);
1458 memcpy(val, xi->name, name_len);
1459 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1460 xi->value,
1461 xi->value_len);
1462 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1463 ocfs2_xattr_set_local(xs->here, 1);
1464 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1465 }
1466
1467 return;
1468}
1469
1470/*
1471 * ocfs2_xattr_set_entry()
1472 *
1473 * Set extended attribute entry into inode or block.
1474 *
1475 * If extended attribute value size > OCFS2_XATTR_INLINE_SIZE,
1476 * We first insert tree root(ocfs2_xattr_value_root) with set_entry_local(),
1477 * then set value in B tree with set_value_outside().
1478 */
1479static int ocfs2_xattr_set_entry(struct inode *inode,
1480 struct ocfs2_xattr_info *xi,
1481 struct ocfs2_xattr_search *xs,
Tao Ma78f30c32008-11-12 08:27:00 +08001482 struct ocfs2_xattr_set_ctxt *ctxt,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001483 int flag)
1484{
1485 struct ocfs2_xattr_entry *last;
1486 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1487 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1488 size_t min_offs = xs->end - xs->base, name_len = strlen(xi->name);
1489 size_t size_l = 0;
Tao Ma85db90e2008-11-12 08:27:01 +08001490 handle_t *handle = ctxt->handle;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001491 int free, i, ret;
1492 struct ocfs2_xattr_info xi_l = {
1493 .name_index = xi->name_index,
1494 .name = xi->name,
1495 .value = xi->value,
1496 .value_len = xi->value_len,
1497 };
Joel Becker512620f2008-12-09 15:58:35 -08001498 struct ocfs2_xattr_value_buf vb = {
1499 .vb_bh = xs->xattr_bh,
1500 .vb_access = ocfs2_journal_access_di,
1501 };
1502
1503 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1504 BUG_ON(xs->xattr_bh == xs->inode_bh);
1505 vb.vb_access = ocfs2_journal_access_xb;
1506 } else
1507 BUG_ON(xs->xattr_bh != xs->inode_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001508
1509 /* Compute min_offs, last and free space. */
1510 last = xs->header->xh_entries;
1511
1512 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1513 size_t offs = le16_to_cpu(last->xe_name_offset);
1514 if (offs < min_offs)
1515 min_offs = offs;
1516 last += 1;
1517 }
1518
Tiger Yang4442f512009-02-20 11:11:50 +08001519 free = min_offs - ((void *)last - xs->base) - OCFS2_XATTR_HEADER_GAP;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001520 if (free < 0)
Joel Beckerb37c4d82008-10-20 18:24:03 -07001521 return -EIO;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001522
1523 if (!xs->not_found) {
1524 size_t size = 0;
1525 if (ocfs2_xattr_is_local(xs->here))
1526 size = OCFS2_XATTR_SIZE(name_len) +
1527 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1528 else
1529 size = OCFS2_XATTR_SIZE(name_len) +
1530 OCFS2_XATTR_ROOT_SIZE;
1531 free += (size + sizeof(struct ocfs2_xattr_entry));
1532 }
1533 /* Check free space in inode or block */
1534 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1535 if (free < sizeof(struct ocfs2_xattr_entry) +
1536 OCFS2_XATTR_SIZE(name_len) +
1537 OCFS2_XATTR_ROOT_SIZE) {
1538 ret = -ENOSPC;
1539 goto out;
1540 }
1541 size_l = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1542 xi_l.value = (void *)&def_xv;
1543 xi_l.value_len = OCFS2_XATTR_ROOT_SIZE;
1544 } else if (xi->value) {
1545 if (free < sizeof(struct ocfs2_xattr_entry) +
1546 OCFS2_XATTR_SIZE(name_len) +
1547 OCFS2_XATTR_SIZE(xi->value_len)) {
1548 ret = -ENOSPC;
1549 goto out;
1550 }
1551 }
1552
1553 if (!xs->not_found) {
1554 /* For existing extended attribute */
1555 size_t size = OCFS2_XATTR_SIZE(name_len) +
1556 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1557 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
1558 void *val = xs->base + offs;
1559
1560 if (ocfs2_xattr_is_local(xs->here) && size == size_l) {
1561 /* Replace existing local xattr with tree root */
1562 ret = ocfs2_xattr_set_value_outside(inode, xi, xs,
Joel Becker512620f2008-12-09 15:58:35 -08001563 ctxt, &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001564 if (ret < 0)
1565 mlog_errno(ret);
1566 goto out;
1567 } else if (!ocfs2_xattr_is_local(xs->here)) {
1568 /* For existing xattr which has value outside */
Joel Becker512620f2008-12-09 15:58:35 -08001569 vb.vb_xv = (struct ocfs2_xattr_value_root *)
1570 (val + OCFS2_XATTR_SIZE(name_len));
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001571
1572 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1573 /*
1574 * If new value need set outside also,
1575 * first truncate old value to new value,
1576 * then set new value with set_value_outside().
1577 */
1578 ret = ocfs2_xattr_value_truncate(inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001579 &vb,
Tao Ma78f30c32008-11-12 08:27:00 +08001580 xi->value_len,
1581 ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001582 if (ret < 0) {
1583 mlog_errno(ret);
1584 goto out;
1585 }
1586
Tao Ma85db90e2008-11-12 08:27:01 +08001587 ret = ocfs2_xattr_update_entry(inode,
1588 handle,
1589 xi,
1590 xs,
Joel Becker0c748e92008-12-09 15:46:15 -08001591 &vb,
Tao Ma85db90e2008-11-12 08:27:01 +08001592 offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001593 if (ret < 0) {
1594 mlog_errno(ret);
1595 goto out;
1596 }
1597
Tao Ma85db90e2008-11-12 08:27:01 +08001598 ret = __ocfs2_xattr_set_value_outside(inode,
1599 handle,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001600 vb.vb_xv,
Tao Ma85db90e2008-11-12 08:27:01 +08001601 xi->value,
1602 xi->value_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001603 if (ret < 0)
1604 mlog_errno(ret);
1605 goto out;
1606 } else {
1607 /*
1608 * If new value need set in local,
1609 * just trucate old value to zero.
1610 */
1611 ret = ocfs2_xattr_value_truncate(inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001612 &vb,
Tao Ma85db90e2008-11-12 08:27:01 +08001613 0,
1614 ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001615 if (ret < 0)
1616 mlog_errno(ret);
1617 }
1618 }
1619 }
1620
Joel Becker512620f2008-12-09 15:58:35 -08001621 ret = ocfs2_journal_access_di(handle, inode, xs->inode_bh,
1622 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001623 if (ret) {
1624 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001625 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001626 }
1627
1628 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
Joel Becker512620f2008-12-09 15:58:35 -08001629 ret = vb.vb_access(handle, inode, vb.vb_bh,
1630 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001631 if (ret) {
1632 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001633 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001634 }
1635 }
1636
1637 /*
1638 * Set value in local, include set tree root in local.
1639 * This is the first step for value size >INLINE_SIZE.
1640 */
1641 ocfs2_xattr_set_entry_local(inode, &xi_l, xs, last, min_offs);
1642
1643 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1644 ret = ocfs2_journal_dirty(handle, xs->xattr_bh);
1645 if (ret < 0) {
1646 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001647 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001648 }
1649 }
1650
1651 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) &&
1652 (flag & OCFS2_INLINE_XATTR_FL)) {
1653 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1654 unsigned int xattrsize = osb->s_xattr_inline_size;
1655
1656 /*
1657 * Adjust extent record count or inline data size
1658 * to reserve space for extended attribute.
1659 */
1660 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1661 struct ocfs2_inline_data *idata = &di->id2.i_data;
1662 le16_add_cpu(&idata->id_count, -xattrsize);
1663 } else if (!(ocfs2_inode_is_fast_symlink(inode))) {
1664 struct ocfs2_extent_list *el = &di->id2.i_list;
1665 le16_add_cpu(&el->l_count, -(xattrsize /
1666 sizeof(struct ocfs2_extent_rec)));
1667 }
1668 di->i_xattr_inline_size = cpu_to_le16(xattrsize);
1669 }
1670 /* Update xattr flag */
1671 spin_lock(&oi->ip_lock);
1672 oi->ip_dyn_features |= flag;
1673 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1674 spin_unlock(&oi->ip_lock);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001675
1676 ret = ocfs2_journal_dirty(handle, xs->inode_bh);
1677 if (ret < 0)
1678 mlog_errno(ret);
1679
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001680 if (!ret && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1681 /*
1682 * Set value outside in B tree.
1683 * This is the second step for value size > INLINE_SIZE.
1684 */
1685 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
Joel Becker512620f2008-12-09 15:58:35 -08001686 ret = ocfs2_xattr_set_value_outside(inode, xi, xs, ctxt,
1687 &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001688 if (ret < 0) {
1689 int ret2;
1690
1691 mlog_errno(ret);
1692 /*
1693 * If set value outside failed, we have to clean
1694 * the junk tree root we have already set in local.
1695 */
Tao Ma85db90e2008-11-12 08:27:01 +08001696 ret2 = ocfs2_xattr_cleanup(inode, ctxt->handle,
Joel Becker512620f2008-12-09 15:58:35 -08001697 xi, xs, &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001698 if (ret2 < 0)
1699 mlog_errno(ret2);
1700 }
1701 }
1702out:
1703 return ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001704}
1705
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001706static int ocfs2_remove_value_outside(struct inode*inode,
Joel Becker43119012008-12-09 16:24:43 -08001707 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001708 struct ocfs2_xattr_header *header)
1709{
1710 int ret = 0, i;
Tao Ma78f30c32008-11-12 08:27:00 +08001711 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1712 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
1713
1714 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001715
Jan Karaa90714c2008-10-09 19:38:40 +02001716 ctxt.handle = ocfs2_start_trans(osb,
1717 ocfs2_remove_extent_credits(osb->sb));
Tao Ma85db90e2008-11-12 08:27:01 +08001718 if (IS_ERR(ctxt.handle)) {
1719 ret = PTR_ERR(ctxt.handle);
1720 mlog_errno(ret);
1721 goto out;
1722 }
1723
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001724 for (i = 0; i < le16_to_cpu(header->xh_count); i++) {
1725 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
1726
1727 if (!ocfs2_xattr_is_local(entry)) {
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001728 void *val;
1729
1730 val = (void *)header +
1731 le16_to_cpu(entry->xe_name_offset);
Joel Becker43119012008-12-09 16:24:43 -08001732 vb->vb_xv = (struct ocfs2_xattr_value_root *)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001733 (val + OCFS2_XATTR_SIZE(entry->xe_name_len));
Joel Becker43119012008-12-09 16:24:43 -08001734 ret = ocfs2_xattr_value_truncate(inode, vb, 0, &ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001735 if (ret < 0) {
1736 mlog_errno(ret);
Tao Ma78f30c32008-11-12 08:27:00 +08001737 break;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001738 }
1739 }
1740 }
1741
Tao Ma85db90e2008-11-12 08:27:01 +08001742 ocfs2_commit_trans(osb, ctxt.handle);
Tao Ma78f30c32008-11-12 08:27:00 +08001743 ocfs2_schedule_truncate_log_flush(osb, 1);
1744 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tao Ma85db90e2008-11-12 08:27:01 +08001745out:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001746 return ret;
1747}
1748
1749static int ocfs2_xattr_ibody_remove(struct inode *inode,
1750 struct buffer_head *di_bh)
1751{
1752
1753 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1754 struct ocfs2_xattr_header *header;
1755 int ret;
Joel Becker43119012008-12-09 16:24:43 -08001756 struct ocfs2_xattr_value_buf vb = {
1757 .vb_bh = di_bh,
1758 .vb_access = ocfs2_journal_access_di,
1759 };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001760
1761 header = (struct ocfs2_xattr_header *)
1762 ((void *)di + inode->i_sb->s_blocksize -
1763 le16_to_cpu(di->i_xattr_inline_size));
1764
Joel Becker43119012008-12-09 16:24:43 -08001765 ret = ocfs2_remove_value_outside(inode, &vb, header);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001766
1767 return ret;
1768}
1769
1770static int ocfs2_xattr_block_remove(struct inode *inode,
1771 struct buffer_head *blk_bh)
1772{
1773 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001774 int ret = 0;
Joel Becker43119012008-12-09 16:24:43 -08001775 struct ocfs2_xattr_value_buf vb = {
1776 .vb_bh = blk_bh,
1777 .vb_access = ocfs2_journal_access_xb,
1778 };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001779
1780 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Maa3944252008-08-18 17:38:54 +08001781 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
1782 struct ocfs2_xattr_header *header = &(xb->xb_attrs.xb_header);
Joel Becker43119012008-12-09 16:24:43 -08001783 ret = ocfs2_remove_value_outside(inode, &vb, header);
Tao Maa3944252008-08-18 17:38:54 +08001784 } else
1785 ret = ocfs2_delete_xattr_index_block(inode, blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001786
1787 return ret;
1788}
1789
Tao Ma08413892008-08-29 09:00:19 +08001790static int ocfs2_xattr_free_block(struct inode *inode,
1791 u64 block)
1792{
1793 struct inode *xb_alloc_inode;
1794 struct buffer_head *xb_alloc_bh = NULL;
1795 struct buffer_head *blk_bh = NULL;
1796 struct ocfs2_xattr_block *xb;
1797 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1798 handle_t *handle;
1799 int ret = 0;
1800 u64 blk, bg_blkno;
1801 u16 bit;
1802
Joel Becker4ae1d692008-11-13 14:49:18 -08001803 ret = ocfs2_read_xattr_block(inode, block, &blk_bh);
Tao Ma08413892008-08-29 09:00:19 +08001804 if (ret < 0) {
1805 mlog_errno(ret);
1806 goto out;
1807 }
1808
Tao Ma08413892008-08-29 09:00:19 +08001809 ret = ocfs2_xattr_block_remove(inode, blk_bh);
1810 if (ret < 0) {
1811 mlog_errno(ret);
1812 goto out;
1813 }
1814
Joel Becker4ae1d692008-11-13 14:49:18 -08001815 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Ma08413892008-08-29 09:00:19 +08001816 blk = le64_to_cpu(xb->xb_blkno);
1817 bit = le16_to_cpu(xb->xb_suballoc_bit);
1818 bg_blkno = ocfs2_which_suballoc_group(blk, bit);
1819
1820 xb_alloc_inode = ocfs2_get_system_file_inode(osb,
1821 EXTENT_ALLOC_SYSTEM_INODE,
1822 le16_to_cpu(xb->xb_suballoc_slot));
1823 if (!xb_alloc_inode) {
1824 ret = -ENOMEM;
1825 mlog_errno(ret);
1826 goto out;
1827 }
1828 mutex_lock(&xb_alloc_inode->i_mutex);
1829
1830 ret = ocfs2_inode_lock(xb_alloc_inode, &xb_alloc_bh, 1);
1831 if (ret < 0) {
1832 mlog_errno(ret);
1833 goto out_mutex;
1834 }
1835
1836 handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE);
1837 if (IS_ERR(handle)) {
1838 ret = PTR_ERR(handle);
1839 mlog_errno(ret);
1840 goto out_unlock;
1841 }
1842
1843 ret = ocfs2_free_suballoc_bits(handle, xb_alloc_inode, xb_alloc_bh,
1844 bit, bg_blkno, 1);
1845 if (ret < 0)
1846 mlog_errno(ret);
1847
1848 ocfs2_commit_trans(osb, handle);
1849out_unlock:
1850 ocfs2_inode_unlock(xb_alloc_inode, 1);
1851 brelse(xb_alloc_bh);
1852out_mutex:
1853 mutex_unlock(&xb_alloc_inode->i_mutex);
1854 iput(xb_alloc_inode);
1855out:
1856 brelse(blk_bh);
1857 return ret;
1858}
1859
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001860/*
1861 * ocfs2_xattr_remove()
1862 *
1863 * Free extended attribute resources associated with this inode.
1864 */
1865int ocfs2_xattr_remove(struct inode *inode, struct buffer_head *di_bh)
1866{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001867 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1868 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1869 handle_t *handle;
1870 int ret;
1871
Tiger Yang8154da32008-08-18 17:11:46 +08001872 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1873 return 0;
1874
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001875 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1876 return 0;
1877
1878 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
1879 ret = ocfs2_xattr_ibody_remove(inode, di_bh);
1880 if (ret < 0) {
1881 mlog_errno(ret);
1882 goto out;
1883 }
1884 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001885
Tao Ma08413892008-08-29 09:00:19 +08001886 if (di->i_xattr_loc) {
1887 ret = ocfs2_xattr_free_block(inode,
1888 le64_to_cpu(di->i_xattr_loc));
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001889 if (ret < 0) {
1890 mlog_errno(ret);
1891 goto out;
1892 }
1893 }
1894
1895 handle = ocfs2_start_trans((OCFS2_SB(inode->i_sb)),
1896 OCFS2_INODE_UPDATE_CREDITS);
1897 if (IS_ERR(handle)) {
1898 ret = PTR_ERR(handle);
1899 mlog_errno(ret);
1900 goto out;
1901 }
Joel Becker84008972008-12-09 16:11:49 -08001902 ret = ocfs2_journal_access_di(handle, inode, di_bh,
1903 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001904 if (ret) {
1905 mlog_errno(ret);
1906 goto out_commit;
1907 }
1908
Tao Ma08413892008-08-29 09:00:19 +08001909 di->i_xattr_loc = 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001910
1911 spin_lock(&oi->ip_lock);
1912 oi->ip_dyn_features &= ~(OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL);
1913 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1914 spin_unlock(&oi->ip_lock);
1915
1916 ret = ocfs2_journal_dirty(handle, di_bh);
1917 if (ret < 0)
1918 mlog_errno(ret);
1919out_commit:
1920 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
1921out:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001922 return ret;
1923}
1924
1925static int ocfs2_xattr_has_space_inline(struct inode *inode,
1926 struct ocfs2_dinode *di)
1927{
1928 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1929 unsigned int xattrsize = OCFS2_SB(inode->i_sb)->s_xattr_inline_size;
1930 int free;
1931
1932 if (xattrsize < OCFS2_MIN_XATTR_INLINE_SIZE)
1933 return 0;
1934
1935 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1936 struct ocfs2_inline_data *idata = &di->id2.i_data;
1937 free = le16_to_cpu(idata->id_count) - le64_to_cpu(di->i_size);
1938 } else if (ocfs2_inode_is_fast_symlink(inode)) {
1939 free = ocfs2_fast_symlink_chars(inode->i_sb) -
1940 le64_to_cpu(di->i_size);
1941 } else {
1942 struct ocfs2_extent_list *el = &di->id2.i_list;
1943 free = (le16_to_cpu(el->l_count) -
1944 le16_to_cpu(el->l_next_free_rec)) *
1945 sizeof(struct ocfs2_extent_rec);
1946 }
1947 if (free >= xattrsize)
1948 return 1;
1949
1950 return 0;
1951}
1952
1953/*
1954 * ocfs2_xattr_ibody_find()
1955 *
1956 * Find extended attribute in inode block and
1957 * fill search info into struct ocfs2_xattr_search.
1958 */
1959static int ocfs2_xattr_ibody_find(struct inode *inode,
1960 int name_index,
1961 const char *name,
1962 struct ocfs2_xattr_search *xs)
1963{
1964 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1965 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1966 int ret;
1967 int has_space = 0;
1968
1969 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
1970 return 0;
1971
1972 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
1973 down_read(&oi->ip_alloc_sem);
1974 has_space = ocfs2_xattr_has_space_inline(inode, di);
1975 up_read(&oi->ip_alloc_sem);
1976 if (!has_space)
1977 return 0;
1978 }
1979
1980 xs->xattr_bh = xs->inode_bh;
1981 xs->end = (void *)di + inode->i_sb->s_blocksize;
1982 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)
1983 xs->header = (struct ocfs2_xattr_header *)
1984 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
1985 else
1986 xs->header = (struct ocfs2_xattr_header *)
1987 (xs->end - OCFS2_SB(inode->i_sb)->s_xattr_inline_size);
1988 xs->base = (void *)xs->header;
1989 xs->here = xs->header->xh_entries;
1990
1991 /* Find the named attribute. */
1992 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
1993 ret = ocfs2_xattr_find_entry(name_index, name, xs);
1994 if (ret && ret != -ENODATA)
1995 return ret;
1996 xs->not_found = ret;
1997 }
1998
1999 return 0;
2000}
2001
2002/*
2003 * ocfs2_xattr_ibody_set()
2004 *
2005 * Set, replace or remove an extended attribute into inode block.
2006 *
2007 */
2008static int ocfs2_xattr_ibody_set(struct inode *inode,
2009 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08002010 struct ocfs2_xattr_search *xs,
2011 struct ocfs2_xattr_set_ctxt *ctxt)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002012{
2013 struct ocfs2_inode_info *oi = OCFS2_I(inode);
2014 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2015 int ret;
2016
2017 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
2018 return -ENOSPC;
2019
2020 down_write(&oi->ip_alloc_sem);
2021 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
2022 if (!ocfs2_xattr_has_space_inline(inode, di)) {
2023 ret = -ENOSPC;
2024 goto out;
2025 }
2026 }
2027
Tao Ma78f30c32008-11-12 08:27:00 +08002028 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002029 (OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL));
2030out:
2031 up_write(&oi->ip_alloc_sem);
2032
2033 return ret;
2034}
2035
2036/*
2037 * ocfs2_xattr_block_find()
2038 *
2039 * Find extended attribute in external block and
2040 * fill search info into struct ocfs2_xattr_search.
2041 */
2042static int ocfs2_xattr_block_find(struct inode *inode,
2043 int name_index,
2044 const char *name,
2045 struct ocfs2_xattr_search *xs)
2046{
2047 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2048 struct buffer_head *blk_bh = NULL;
Tao Ma589dc262008-08-18 17:38:51 +08002049 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002050 int ret = 0;
2051
2052 if (!di->i_xattr_loc)
2053 return ret;
2054
Joel Becker4ae1d692008-11-13 14:49:18 -08002055 ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
2056 &blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002057 if (ret < 0) {
2058 mlog_errno(ret);
2059 return ret;
2060 }
Joel Beckerf6087fb2008-10-20 18:20:43 -07002061
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002062 xs->xattr_bh = blk_bh;
Joel Becker4ae1d692008-11-13 14:49:18 -08002063 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002064
Tao Ma589dc262008-08-18 17:38:51 +08002065 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
2066 xs->header = &xb->xb_attrs.xb_header;
2067 xs->base = (void *)xs->header;
2068 xs->end = (void *)(blk_bh->b_data) + blk_bh->b_size;
2069 xs->here = xs->header->xh_entries;
2070
2071 ret = ocfs2_xattr_find_entry(name_index, name, xs);
2072 } else
2073 ret = ocfs2_xattr_index_block_find(inode, blk_bh,
2074 name_index,
2075 name, xs);
2076
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002077 if (ret && ret != -ENODATA) {
2078 xs->xattr_bh = NULL;
2079 goto cleanup;
2080 }
2081 xs->not_found = ret;
2082 return 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002083cleanup:
2084 brelse(blk_bh);
2085
2086 return ret;
2087}
2088
2089/*
2090 * ocfs2_xattr_block_set()
2091 *
2092 * Set, replace or remove an extended attribute into external block.
2093 *
2094 */
2095static int ocfs2_xattr_block_set(struct inode *inode,
2096 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08002097 struct ocfs2_xattr_search *xs,
2098 struct ocfs2_xattr_set_ctxt *ctxt)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002099{
2100 struct buffer_head *new_bh = NULL;
2101 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2102 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
Tao Ma85db90e2008-11-12 08:27:01 +08002103 handle_t *handle = ctxt->handle;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002104 struct ocfs2_xattr_block *xblk = NULL;
2105 u16 suballoc_bit_start;
2106 u32 num_got;
2107 u64 first_blkno;
2108 int ret;
2109
2110 if (!xs->xattr_bh) {
Joel Becker84008972008-12-09 16:11:49 -08002111 ret = ocfs2_journal_access_di(handle, inode, xs->inode_bh,
2112 OCFS2_JOURNAL_ACCESS_CREATE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002113 if (ret < 0) {
2114 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002115 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002116 }
2117
Tao Ma78f30c32008-11-12 08:27:00 +08002118 ret = ocfs2_claim_metadata(osb, handle, ctxt->meta_ac, 1,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002119 &suballoc_bit_start, &num_got,
2120 &first_blkno);
2121 if (ret < 0) {
2122 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002123 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002124 }
2125
2126 new_bh = sb_getblk(inode->i_sb, first_blkno);
2127 ocfs2_set_new_buffer_uptodate(inode, new_bh);
2128
Joel Becker84008972008-12-09 16:11:49 -08002129 ret = ocfs2_journal_access_xb(handle, inode, new_bh,
2130 OCFS2_JOURNAL_ACCESS_CREATE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002131 if (ret < 0) {
2132 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002133 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002134 }
2135
2136 /* Initialize ocfs2_xattr_block */
2137 xs->xattr_bh = new_bh;
2138 xblk = (struct ocfs2_xattr_block *)new_bh->b_data;
2139 memset(xblk, 0, inode->i_sb->s_blocksize);
2140 strcpy((void *)xblk, OCFS2_XATTR_BLOCK_SIGNATURE);
2141 xblk->xb_suballoc_slot = cpu_to_le16(osb->slot_num);
2142 xblk->xb_suballoc_bit = cpu_to_le16(suballoc_bit_start);
2143 xblk->xb_fs_generation = cpu_to_le32(osb->fs_generation);
2144 xblk->xb_blkno = cpu_to_le64(first_blkno);
2145
2146 xs->header = &xblk->xb_attrs.xb_header;
2147 xs->base = (void *)xs->header;
2148 xs->end = (void *)xblk + inode->i_sb->s_blocksize;
2149 xs->here = xs->header->xh_entries;
2150
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002151 ret = ocfs2_journal_dirty(handle, new_bh);
2152 if (ret < 0) {
2153 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002154 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002155 }
2156 di->i_xattr_loc = cpu_to_le64(first_blkno);
Tao Ma85db90e2008-11-12 08:27:01 +08002157 ocfs2_journal_dirty(handle, xs->inode_bh);
Tao Ma01225592008-08-18 17:38:53 +08002158 } else
2159 xblk = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
2160
2161 if (!(le16_to_cpu(xblk->xb_flags) & OCFS2_XATTR_INDEXED)) {
2162 /* Set extended attribute into external block */
Tao Ma78f30c32008-11-12 08:27:00 +08002163 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
2164 OCFS2_HAS_XATTR_FL);
Tao Ma01225592008-08-18 17:38:53 +08002165 if (!ret || ret != -ENOSPC)
2166 goto end;
2167
Tao Ma78f30c32008-11-12 08:27:00 +08002168 ret = ocfs2_xattr_create_index_block(inode, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08002169 if (ret)
2170 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002171 }
2172
Tao Ma78f30c32008-11-12 08:27:00 +08002173 ret = ocfs2_xattr_set_entry_index_block(inode, xi, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08002174
2175end:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002176
2177 return ret;
2178}
2179
Tao Ma78f30c32008-11-12 08:27:00 +08002180/* Check whether the new xattr can be inserted into the inode. */
2181static int ocfs2_xattr_can_be_in_inode(struct inode *inode,
2182 struct ocfs2_xattr_info *xi,
2183 struct ocfs2_xattr_search *xs)
2184{
2185 u64 value_size;
2186 struct ocfs2_xattr_entry *last;
2187 int free, i;
2188 size_t min_offs = xs->end - xs->base;
2189
2190 if (!xs->header)
2191 return 0;
2192
2193 last = xs->header->xh_entries;
2194
2195 for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
2196 size_t offs = le16_to_cpu(last->xe_name_offset);
2197 if (offs < min_offs)
2198 min_offs = offs;
2199 last += 1;
2200 }
2201
Tiger Yang4442f512009-02-20 11:11:50 +08002202 free = min_offs - ((void *)last - xs->base) - OCFS2_XATTR_HEADER_GAP;
Tao Ma78f30c32008-11-12 08:27:00 +08002203 if (free < 0)
2204 return 0;
2205
2206 BUG_ON(!xs->not_found);
2207
2208 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
2209 value_size = OCFS2_XATTR_ROOT_SIZE;
2210 else
2211 value_size = OCFS2_XATTR_SIZE(xi->value_len);
2212
2213 if (free >= sizeof(struct ocfs2_xattr_entry) +
2214 OCFS2_XATTR_SIZE(strlen(xi->name)) + value_size)
2215 return 1;
2216
2217 return 0;
2218}
2219
2220static int ocfs2_calc_xattr_set_need(struct inode *inode,
2221 struct ocfs2_dinode *di,
2222 struct ocfs2_xattr_info *xi,
2223 struct ocfs2_xattr_search *xis,
2224 struct ocfs2_xattr_search *xbs,
2225 int *clusters_need,
Tao Ma85db90e2008-11-12 08:27:01 +08002226 int *meta_need,
2227 int *credits_need)
Tao Ma78f30c32008-11-12 08:27:00 +08002228{
2229 int ret = 0, old_in_xb = 0;
Tao Ma85db90e2008-11-12 08:27:01 +08002230 int clusters_add = 0, meta_add = 0, credits = 0;
Tao Ma78f30c32008-11-12 08:27:00 +08002231 struct buffer_head *bh = NULL;
2232 struct ocfs2_xattr_block *xb = NULL;
2233 struct ocfs2_xattr_entry *xe = NULL;
2234 struct ocfs2_xattr_value_root *xv = NULL;
2235 char *base = NULL;
2236 int name_offset, name_len = 0;
2237 u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2238 xi->value_len);
2239 u64 value_size;
2240
Tao Ma71d548a2008-12-05 06:20:54 +08002241 /*
2242 * Calculate the clusters we need to write.
2243 * No matter whether we replace an old one or add a new one,
2244 * we need this for writing.
2245 */
2246 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
2247 credits += new_clusters *
2248 ocfs2_clusters_to_blocks(inode->i_sb, 1);
2249
Tao Ma78f30c32008-11-12 08:27:00 +08002250 if (xis->not_found && xbs->not_found) {
Tao Ma85db90e2008-11-12 08:27:01 +08002251 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2252
2253 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
Tao Ma78f30c32008-11-12 08:27:00 +08002254 clusters_add += new_clusters;
Tao Ma85db90e2008-11-12 08:27:01 +08002255 credits += ocfs2_calc_extend_credits(inode->i_sb,
2256 &def_xv.xv.xr_list,
2257 new_clusters);
2258 }
Tao Ma78f30c32008-11-12 08:27:00 +08002259
2260 goto meta_guess;
2261 }
2262
2263 if (!xis->not_found) {
2264 xe = xis->here;
2265 name_offset = le16_to_cpu(xe->xe_name_offset);
2266 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2267 base = xis->base;
Tao Ma85db90e2008-11-12 08:27:01 +08002268 credits += OCFS2_INODE_UPDATE_CREDITS;
Tao Ma78f30c32008-11-12 08:27:00 +08002269 } else {
Joel Becker970e4932008-11-13 14:49:19 -08002270 int i, block_off = 0;
Tao Ma78f30c32008-11-12 08:27:00 +08002271 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2272 xe = xbs->here;
2273 name_offset = le16_to_cpu(xe->xe_name_offset);
2274 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2275 i = xbs->here - xbs->header->xh_entries;
2276 old_in_xb = 1;
2277
2278 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
2279 ret = ocfs2_xattr_bucket_get_name_value(inode,
2280 bucket_xh(xbs->bucket),
2281 i, &block_off,
2282 &name_offset);
2283 base = bucket_block(xbs->bucket, block_off);
Tao Ma85db90e2008-11-12 08:27:01 +08002284 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2285 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002286 base = xbs->base;
Tao Ma85db90e2008-11-12 08:27:01 +08002287 credits += OCFS2_XATTR_BLOCK_UPDATE_CREDITS;
2288 }
2289 }
2290
2291 /*
2292 * delete a xattr doesn't need metadata and cluster allocation.
2293 * so just calculate the credits and return.
2294 *
2295 * The credits for removing the value tree will be extended
2296 * by ocfs2_remove_extent itself.
2297 */
2298 if (!xi->value) {
2299 if (!ocfs2_xattr_is_local(xe))
Jan Karaa90714c2008-10-09 19:38:40 +02002300 credits += ocfs2_remove_extent_credits(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08002301
2302 goto out;
Tao Ma78f30c32008-11-12 08:27:00 +08002303 }
2304
2305 /* do cluster allocation guess first. */
2306 value_size = le64_to_cpu(xe->xe_value_size);
2307
2308 if (old_in_xb) {
2309 /*
2310 * In xattr set, we always try to set the xe in inode first,
2311 * so if it can be inserted into inode successfully, the old
2312 * one will be removed from the xattr block, and this xattr
2313 * will be inserted into inode as a new xattr in inode.
2314 */
2315 if (ocfs2_xattr_can_be_in_inode(inode, xi, xis)) {
2316 clusters_add += new_clusters;
Jan Karaa90714c2008-10-09 19:38:40 +02002317 credits += ocfs2_remove_extent_credits(inode->i_sb) +
Tao Ma85db90e2008-11-12 08:27:01 +08002318 OCFS2_INODE_UPDATE_CREDITS;
2319 if (!ocfs2_xattr_is_local(xe))
2320 credits += ocfs2_calc_extend_credits(
2321 inode->i_sb,
2322 &def_xv.xv.xr_list,
2323 new_clusters);
Tao Ma78f30c32008-11-12 08:27:00 +08002324 goto out;
2325 }
2326 }
2327
2328 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
2329 /* the new values will be stored outside. */
2330 u32 old_clusters = 0;
2331
2332 if (!ocfs2_xattr_is_local(xe)) {
2333 old_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2334 value_size);
2335 xv = (struct ocfs2_xattr_value_root *)
2336 (base + name_offset + name_len);
Tao Ma97aff522008-11-19 16:48:41 +08002337 value_size = OCFS2_XATTR_ROOT_SIZE;
Tao Ma78f30c32008-11-12 08:27:00 +08002338 } else
2339 xv = &def_xv.xv;
2340
Tao Ma85db90e2008-11-12 08:27:01 +08002341 if (old_clusters >= new_clusters) {
Jan Karaa90714c2008-10-09 19:38:40 +02002342 credits += ocfs2_remove_extent_credits(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002343 goto out;
Tao Ma85db90e2008-11-12 08:27:01 +08002344 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002345 meta_add += ocfs2_extend_meta_needed(&xv->xr_list);
2346 clusters_add += new_clusters - old_clusters;
Tao Ma85db90e2008-11-12 08:27:01 +08002347 credits += ocfs2_calc_extend_credits(inode->i_sb,
2348 &xv->xr_list,
2349 new_clusters -
2350 old_clusters);
Tao Ma97aff522008-11-19 16:48:41 +08002351 if (value_size >= OCFS2_XATTR_ROOT_SIZE)
2352 goto out;
Tao Ma78f30c32008-11-12 08:27:00 +08002353 }
2354 } else {
2355 /*
2356 * Now the new value will be stored inside. So if the new
2357 * value is smaller than the size of value root or the old
2358 * value, we don't need any allocation, otherwise we have
2359 * to guess metadata allocation.
2360 */
2361 if ((ocfs2_xattr_is_local(xe) && value_size >= xi->value_len) ||
2362 (!ocfs2_xattr_is_local(xe) &&
2363 OCFS2_XATTR_ROOT_SIZE >= xi->value_len))
2364 goto out;
2365 }
2366
2367meta_guess:
2368 /* calculate metadata allocation. */
2369 if (di->i_xattr_loc) {
2370 if (!xbs->xattr_bh) {
Joel Becker4ae1d692008-11-13 14:49:18 -08002371 ret = ocfs2_read_xattr_block(inode,
2372 le64_to_cpu(di->i_xattr_loc),
2373 &bh);
Tao Ma78f30c32008-11-12 08:27:00 +08002374 if (ret) {
2375 mlog_errno(ret);
2376 goto out;
2377 }
2378
2379 xb = (struct ocfs2_xattr_block *)bh->b_data;
2380 } else
2381 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2382
Tao Ma90cb5462008-12-05 06:20:56 +08002383 /*
2384 * If there is already an xattr tree, good, we can calculate
2385 * like other b-trees. Otherwise we may have the chance of
2386 * create a tree, the credit calculation is borrowed from
2387 * ocfs2_calc_extend_credits with root_el = NULL. And the
2388 * new tree will be cluster based, so no meta is needed.
2389 */
Tao Ma78f30c32008-11-12 08:27:00 +08002390 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
2391 struct ocfs2_extent_list *el =
2392 &xb->xb_attrs.xb_root.xt_list;
2393 meta_add += ocfs2_extend_meta_needed(el);
Tao Ma85db90e2008-11-12 08:27:01 +08002394 credits += ocfs2_calc_extend_credits(inode->i_sb,
2395 el, 1);
Tao Ma90cb5462008-12-05 06:20:56 +08002396 } else
2397 credits += OCFS2_SUBALLOC_ALLOC + 1;
Tao Ma78f30c32008-11-12 08:27:00 +08002398
2399 /*
2400 * This cluster will be used either for new bucket or for
2401 * new xattr block.
2402 * If the cluster size is the same as the bucket size, one
2403 * more is needed since we may need to extend the bucket
2404 * also.
2405 */
2406 clusters_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002407 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002408 if (OCFS2_XATTR_BUCKET_SIZE ==
Tao Ma85db90e2008-11-12 08:27:01 +08002409 OCFS2_SB(inode->i_sb)->s_clustersize) {
2410 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002411 clusters_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002412 }
2413 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002414 meta_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002415 credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
2416 }
Tao Ma78f30c32008-11-12 08:27:00 +08002417out:
2418 if (clusters_need)
2419 *clusters_need = clusters_add;
2420 if (meta_need)
2421 *meta_need = meta_add;
Tao Ma85db90e2008-11-12 08:27:01 +08002422 if (credits_need)
2423 *credits_need = credits;
Tao Ma78f30c32008-11-12 08:27:00 +08002424 brelse(bh);
2425 return ret;
2426}
2427
2428static int ocfs2_init_xattr_set_ctxt(struct inode *inode,
2429 struct ocfs2_dinode *di,
2430 struct ocfs2_xattr_info *xi,
2431 struct ocfs2_xattr_search *xis,
2432 struct ocfs2_xattr_search *xbs,
Tao Ma85db90e2008-11-12 08:27:01 +08002433 struct ocfs2_xattr_set_ctxt *ctxt,
2434 int *credits)
Tao Ma78f30c32008-11-12 08:27:00 +08002435{
2436 int clusters_add, meta_add, ret;
2437 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2438
2439 memset(ctxt, 0, sizeof(struct ocfs2_xattr_set_ctxt));
2440
2441 ocfs2_init_dealloc_ctxt(&ctxt->dealloc);
2442
2443 ret = ocfs2_calc_xattr_set_need(inode, di, xi, xis, xbs,
Tao Ma85db90e2008-11-12 08:27:01 +08002444 &clusters_add, &meta_add, credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002445 if (ret) {
2446 mlog_errno(ret);
2447 return ret;
2448 }
2449
Tao Ma85db90e2008-11-12 08:27:01 +08002450 mlog(0, "Set xattr %s, reserve meta blocks = %d, clusters = %d, "
2451 "credits = %d\n", xi->name, meta_add, clusters_add, *credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002452
2453 if (meta_add) {
2454 ret = ocfs2_reserve_new_metadata_blocks(osb, meta_add,
2455 &ctxt->meta_ac);
2456 if (ret) {
2457 mlog_errno(ret);
2458 goto out;
2459 }
2460 }
2461
2462 if (clusters_add) {
2463 ret = ocfs2_reserve_clusters(osb, clusters_add, &ctxt->data_ac);
2464 if (ret)
2465 mlog_errno(ret);
2466 }
2467out:
2468 if (ret) {
2469 if (ctxt->meta_ac) {
2470 ocfs2_free_alloc_context(ctxt->meta_ac);
2471 ctxt->meta_ac = NULL;
2472 }
2473
2474 /*
2475 * We cannot have an error and a non null ctxt->data_ac.
2476 */
2477 }
2478
2479 return ret;
2480}
2481
Tao Ma85db90e2008-11-12 08:27:01 +08002482static int __ocfs2_xattr_set_handle(struct inode *inode,
2483 struct ocfs2_dinode *di,
2484 struct ocfs2_xattr_info *xi,
2485 struct ocfs2_xattr_search *xis,
2486 struct ocfs2_xattr_search *xbs,
2487 struct ocfs2_xattr_set_ctxt *ctxt)
2488{
Tao Ma9f868f12008-11-19 16:48:42 +08002489 int ret = 0, credits, old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002490
2491 if (!xi->value) {
2492 /* Remove existing extended attribute */
2493 if (!xis->not_found)
2494 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2495 else if (!xbs->not_found)
2496 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2497 } else {
2498 /* We always try to set extended attribute into inode first*/
2499 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2500 if (!ret && !xbs->not_found) {
2501 /*
2502 * If succeed and that extended attribute existing in
2503 * external block, then we will remove it.
2504 */
2505 xi->value = NULL;
2506 xi->value_len = 0;
2507
Tao Ma9f868f12008-11-19 16:48:42 +08002508 old_found = xis->not_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002509 xis->not_found = -ENODATA;
2510 ret = ocfs2_calc_xattr_set_need(inode,
2511 di,
2512 xi,
2513 xis,
2514 xbs,
2515 NULL,
2516 NULL,
2517 &credits);
Tao Ma9f868f12008-11-19 16:48:42 +08002518 xis->not_found = old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002519 if (ret) {
2520 mlog_errno(ret);
2521 goto out;
2522 }
2523
2524 ret = ocfs2_extend_trans(ctxt->handle, credits +
2525 ctxt->handle->h_buffer_credits);
2526 if (ret) {
2527 mlog_errno(ret);
2528 goto out;
2529 }
2530 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2531 } else if (ret == -ENOSPC) {
2532 if (di->i_xattr_loc && !xbs->xattr_bh) {
2533 ret = ocfs2_xattr_block_find(inode,
2534 xi->name_index,
2535 xi->name, xbs);
2536 if (ret)
2537 goto out;
2538
Tao Ma9f868f12008-11-19 16:48:42 +08002539 old_found = xis->not_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002540 xis->not_found = -ENODATA;
2541 ret = ocfs2_calc_xattr_set_need(inode,
2542 di,
2543 xi,
2544 xis,
2545 xbs,
2546 NULL,
2547 NULL,
2548 &credits);
Tao Ma9f868f12008-11-19 16:48:42 +08002549 xis->not_found = old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002550 if (ret) {
2551 mlog_errno(ret);
2552 goto out;
2553 }
2554
2555 ret = ocfs2_extend_trans(ctxt->handle, credits +
2556 ctxt->handle->h_buffer_credits);
2557 if (ret) {
2558 mlog_errno(ret);
2559 goto out;
2560 }
2561 }
2562 /*
2563 * If no space in inode, we will set extended attribute
2564 * into external block.
2565 */
2566 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2567 if (ret)
2568 goto out;
2569 if (!xis->not_found) {
2570 /*
2571 * If succeed and that extended attribute
2572 * existing in inode, we will remove it.
2573 */
2574 xi->value = NULL;
2575 xi->value_len = 0;
2576 xbs->not_found = -ENODATA;
2577 ret = ocfs2_calc_xattr_set_need(inode,
2578 di,
2579 xi,
2580 xis,
2581 xbs,
2582 NULL,
2583 NULL,
2584 &credits);
2585 if (ret) {
2586 mlog_errno(ret);
2587 goto out;
2588 }
2589
2590 ret = ocfs2_extend_trans(ctxt->handle, credits +
2591 ctxt->handle->h_buffer_credits);
2592 if (ret) {
2593 mlog_errno(ret);
2594 goto out;
2595 }
2596 ret = ocfs2_xattr_ibody_set(inode, xi,
2597 xis, ctxt);
2598 }
2599 }
2600 }
2601
Tao Ma4b3f6202008-12-05 06:20:55 +08002602 if (!ret) {
2603 /* Update inode ctime. */
Tao Ma89a907a2009-02-17 04:39:28 +08002604 ret = ocfs2_journal_access_di(ctxt->handle, inode,
2605 xis->inode_bh,
2606 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma4b3f6202008-12-05 06:20:55 +08002607 if (ret) {
2608 mlog_errno(ret);
2609 goto out;
2610 }
2611
2612 inode->i_ctime = CURRENT_TIME;
2613 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
2614 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
2615 ocfs2_journal_dirty(ctxt->handle, xis->inode_bh);
2616 }
Tao Ma85db90e2008-11-12 08:27:01 +08002617out:
2618 return ret;
2619}
2620
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002621/*
Tiger Yang6c3faba2008-11-14 11:16:03 +08002622 * This function only called duing creating inode
2623 * for init security/acl xattrs of the new inode.
Tiger Yang008aafa2008-12-09 16:43:08 +08002624 * All transanction credits have been reserved in mknod.
Tiger Yang6c3faba2008-11-14 11:16:03 +08002625 */
2626int ocfs2_xattr_set_handle(handle_t *handle,
2627 struct inode *inode,
2628 struct buffer_head *di_bh,
2629 int name_index,
2630 const char *name,
2631 const void *value,
2632 size_t value_len,
2633 int flags,
2634 struct ocfs2_alloc_context *meta_ac,
2635 struct ocfs2_alloc_context *data_ac)
2636{
2637 struct ocfs2_dinode *di;
2638 int ret;
2639
2640 struct ocfs2_xattr_info xi = {
2641 .name_index = name_index,
2642 .name = name,
2643 .value = value,
2644 .value_len = value_len,
2645 };
2646
2647 struct ocfs2_xattr_search xis = {
2648 .not_found = -ENODATA,
2649 };
2650
2651 struct ocfs2_xattr_search xbs = {
2652 .not_found = -ENODATA,
2653 };
2654
2655 struct ocfs2_xattr_set_ctxt ctxt = {
2656 .handle = handle,
2657 .meta_ac = meta_ac,
2658 .data_ac = data_ac,
2659 };
2660
2661 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2662 return -EOPNOTSUPP;
2663
Tiger Yang008aafa2008-12-09 16:43:08 +08002664 /*
2665 * In extreme situation, may need xattr bucket when
2666 * block size is too small. And we have already reserved
2667 * the credits for bucket in mknod.
2668 */
2669 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE) {
2670 xbs.bucket = ocfs2_xattr_bucket_new(inode);
2671 if (!xbs.bucket) {
2672 mlog_errno(-ENOMEM);
2673 return -ENOMEM;
2674 }
2675 }
2676
Tiger Yang6c3faba2008-11-14 11:16:03 +08002677 xis.inode_bh = xbs.inode_bh = di_bh;
2678 di = (struct ocfs2_dinode *)di_bh->b_data;
2679
2680 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2681
2682 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2683 if (ret)
2684 goto cleanup;
2685 if (xis.not_found) {
2686 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2687 if (ret)
2688 goto cleanup;
2689 }
2690
2691 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2692
2693cleanup:
2694 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2695 brelse(xbs.xattr_bh);
Tiger Yang008aafa2008-12-09 16:43:08 +08002696 ocfs2_xattr_bucket_free(xbs.bucket);
Tiger Yang6c3faba2008-11-14 11:16:03 +08002697
2698 return ret;
2699}
2700
2701/*
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002702 * ocfs2_xattr_set()
2703 *
2704 * Set, replace or remove an extended attribute for this inode.
2705 * value is NULL to remove an existing extended attribute, else either
2706 * create or replace an extended attribute.
2707 */
2708int ocfs2_xattr_set(struct inode *inode,
2709 int name_index,
2710 const char *name,
2711 const void *value,
2712 size_t value_len,
2713 int flags)
2714{
2715 struct buffer_head *di_bh = NULL;
2716 struct ocfs2_dinode *di;
Tao Ma85db90e2008-11-12 08:27:01 +08002717 int ret, credits;
Tao Ma78f30c32008-11-12 08:27:00 +08002718 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08002719 struct inode *tl_inode = osb->osb_tl_inode;
Tao Ma78f30c32008-11-12 08:27:00 +08002720 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002721
2722 struct ocfs2_xattr_info xi = {
2723 .name_index = name_index,
2724 .name = name,
2725 .value = value,
2726 .value_len = value_len,
2727 };
2728
2729 struct ocfs2_xattr_search xis = {
2730 .not_found = -ENODATA,
2731 };
2732
2733 struct ocfs2_xattr_search xbs = {
2734 .not_found = -ENODATA,
2735 };
2736
Tiger Yang8154da32008-08-18 17:11:46 +08002737 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2738 return -EOPNOTSUPP;
2739
Joel Beckerba937122008-10-24 19:13:20 -07002740 /*
2741 * Only xbs will be used on indexed trees. xis doesn't need a
2742 * bucket.
2743 */
2744 xbs.bucket = ocfs2_xattr_bucket_new(inode);
2745 if (!xbs.bucket) {
2746 mlog_errno(-ENOMEM);
2747 return -ENOMEM;
2748 }
2749
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002750 ret = ocfs2_inode_lock(inode, &di_bh, 1);
2751 if (ret < 0) {
2752 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07002753 goto cleanup_nolock;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002754 }
2755 xis.inode_bh = xbs.inode_bh = di_bh;
2756 di = (struct ocfs2_dinode *)di_bh->b_data;
2757
2758 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2759 /*
2760 * Scan inode and external block to find the same name
2761 * extended attribute and collect search infomation.
2762 */
2763 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2764 if (ret)
2765 goto cleanup;
2766 if (xis.not_found) {
2767 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2768 if (ret)
2769 goto cleanup;
2770 }
2771
2772 if (xis.not_found && xbs.not_found) {
2773 ret = -ENODATA;
2774 if (flags & XATTR_REPLACE)
2775 goto cleanup;
2776 ret = 0;
2777 if (!value)
2778 goto cleanup;
2779 } else {
2780 ret = -EEXIST;
2781 if (flags & XATTR_CREATE)
2782 goto cleanup;
2783 }
2784
Tao Ma85db90e2008-11-12 08:27:01 +08002785
2786 mutex_lock(&tl_inode->i_mutex);
2787
2788 if (ocfs2_truncate_log_needs_flush(osb)) {
2789 ret = __ocfs2_flush_truncate_log(osb);
2790 if (ret < 0) {
2791 mutex_unlock(&tl_inode->i_mutex);
2792 mlog_errno(ret);
2793 goto cleanup;
2794 }
2795 }
2796 mutex_unlock(&tl_inode->i_mutex);
2797
2798 ret = ocfs2_init_xattr_set_ctxt(inode, di, &xi, &xis,
2799 &xbs, &ctxt, &credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002800 if (ret) {
2801 mlog_errno(ret);
2802 goto cleanup;
2803 }
2804
Tao Ma4b3f6202008-12-05 06:20:55 +08002805 /* we need to update inode's ctime field, so add credit for it. */
2806 credits += OCFS2_INODE_UPDATE_CREDITS;
Tao Ma85db90e2008-11-12 08:27:01 +08002807 ctxt.handle = ocfs2_start_trans(osb, credits);
2808 if (IS_ERR(ctxt.handle)) {
2809 ret = PTR_ERR(ctxt.handle);
2810 mlog_errno(ret);
2811 goto cleanup;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002812 }
Tao Ma85db90e2008-11-12 08:27:01 +08002813
2814 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2815
2816 ocfs2_commit_trans(osb, ctxt.handle);
2817
Tao Ma78f30c32008-11-12 08:27:00 +08002818 if (ctxt.data_ac)
2819 ocfs2_free_alloc_context(ctxt.data_ac);
2820 if (ctxt.meta_ac)
2821 ocfs2_free_alloc_context(ctxt.meta_ac);
2822 if (ocfs2_dealloc_has_cluster(&ctxt.dealloc))
2823 ocfs2_schedule_truncate_log_flush(osb, 1);
2824 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002825cleanup:
2826 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2827 ocfs2_inode_unlock(inode, 1);
Joel Beckerba937122008-10-24 19:13:20 -07002828cleanup_nolock:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002829 brelse(di_bh);
2830 brelse(xbs.xattr_bh);
Joel Beckerba937122008-10-24 19:13:20 -07002831 ocfs2_xattr_bucket_free(xbs.bucket);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002832
2833 return ret;
2834}
2835
Tao Ma0c044f02008-08-18 17:38:50 +08002836/*
2837 * Find the xattr extent rec which may contains name_hash.
2838 * e_cpos will be the first name hash of the xattr rec.
2839 * el must be the ocfs2_xattr_header.xb_attrs.xb_root.xt_list.
2840 */
2841static int ocfs2_xattr_get_rec(struct inode *inode,
2842 u32 name_hash,
2843 u64 *p_blkno,
2844 u32 *e_cpos,
2845 u32 *num_clusters,
2846 struct ocfs2_extent_list *el)
2847{
2848 int ret = 0, i;
2849 struct buffer_head *eb_bh = NULL;
2850 struct ocfs2_extent_block *eb;
2851 struct ocfs2_extent_rec *rec = NULL;
2852 u64 e_blkno = 0;
2853
2854 if (el->l_tree_depth) {
2855 ret = ocfs2_find_leaf(inode, el, name_hash, &eb_bh);
2856 if (ret) {
2857 mlog_errno(ret);
2858 goto out;
2859 }
2860
2861 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2862 el = &eb->h_list;
2863
2864 if (el->l_tree_depth) {
2865 ocfs2_error(inode->i_sb,
2866 "Inode %lu has non zero tree depth in "
2867 "xattr tree block %llu\n", inode->i_ino,
2868 (unsigned long long)eb_bh->b_blocknr);
2869 ret = -EROFS;
2870 goto out;
2871 }
2872 }
2873
2874 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
2875 rec = &el->l_recs[i];
2876
2877 if (le32_to_cpu(rec->e_cpos) <= name_hash) {
2878 e_blkno = le64_to_cpu(rec->e_blkno);
2879 break;
2880 }
2881 }
2882
2883 if (!e_blkno) {
2884 ocfs2_error(inode->i_sb, "Inode %lu has bad extent "
2885 "record (%u, %u, 0) in xattr", inode->i_ino,
2886 le32_to_cpu(rec->e_cpos),
2887 ocfs2_rec_clusters(el, rec));
2888 ret = -EROFS;
2889 goto out;
2890 }
2891
2892 *p_blkno = le64_to_cpu(rec->e_blkno);
2893 *num_clusters = le16_to_cpu(rec->e_leaf_clusters);
2894 if (e_cpos)
2895 *e_cpos = le32_to_cpu(rec->e_cpos);
2896out:
2897 brelse(eb_bh);
2898 return ret;
2899}
2900
2901typedef int (xattr_bucket_func)(struct inode *inode,
2902 struct ocfs2_xattr_bucket *bucket,
2903 void *para);
2904
Tao Ma589dc262008-08-18 17:38:51 +08002905static int ocfs2_find_xe_in_bucket(struct inode *inode,
Joel Beckere2356a32008-10-27 15:01:54 -07002906 struct ocfs2_xattr_bucket *bucket,
Tao Ma589dc262008-08-18 17:38:51 +08002907 int name_index,
2908 const char *name,
2909 u32 name_hash,
2910 u16 *xe_index,
2911 int *found)
2912{
2913 int i, ret = 0, cmp = 1, block_off, new_offset;
Joel Beckere2356a32008-10-27 15:01:54 -07002914 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma589dc262008-08-18 17:38:51 +08002915 size_t name_len = strlen(name);
2916 struct ocfs2_xattr_entry *xe = NULL;
Tao Ma589dc262008-08-18 17:38:51 +08002917 char *xe_name;
2918
2919 /*
2920 * We don't use binary search in the bucket because there
2921 * may be multiple entries with the same name hash.
2922 */
2923 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
2924 xe = &xh->xh_entries[i];
2925
2926 if (name_hash > le32_to_cpu(xe->xe_name_hash))
2927 continue;
2928 else if (name_hash < le32_to_cpu(xe->xe_name_hash))
2929 break;
2930
2931 cmp = name_index - ocfs2_xattr_get_type(xe);
2932 if (!cmp)
2933 cmp = name_len - xe->xe_name_len;
2934 if (cmp)
2935 continue;
2936
2937 ret = ocfs2_xattr_bucket_get_name_value(inode,
2938 xh,
2939 i,
2940 &block_off,
2941 &new_offset);
2942 if (ret) {
2943 mlog_errno(ret);
2944 break;
2945 }
2946
Joel Becker970e4932008-11-13 14:49:19 -08002947
Joel Beckere2356a32008-10-27 15:01:54 -07002948 xe_name = bucket_block(bucket, block_off) + new_offset;
2949 if (!memcmp(name, xe_name, name_len)) {
Tao Ma589dc262008-08-18 17:38:51 +08002950 *xe_index = i;
2951 *found = 1;
2952 ret = 0;
2953 break;
2954 }
2955 }
2956
2957 return ret;
2958}
2959
2960/*
2961 * Find the specified xattr entry in a series of buckets.
2962 * This series start from p_blkno and last for num_clusters.
2963 * The ocfs2_xattr_header.xh_num_buckets of the first bucket contains
2964 * the num of the valid buckets.
2965 *
2966 * Return the buffer_head this xattr should reside in. And if the xattr's
2967 * hash is in the gap of 2 buckets, return the lower bucket.
2968 */
2969static int ocfs2_xattr_bucket_find(struct inode *inode,
2970 int name_index,
2971 const char *name,
2972 u32 name_hash,
2973 u64 p_blkno,
2974 u32 first_hash,
2975 u32 num_clusters,
2976 struct ocfs2_xattr_search *xs)
2977{
2978 int ret, found = 0;
Tao Ma589dc262008-08-18 17:38:51 +08002979 struct ocfs2_xattr_header *xh = NULL;
2980 struct ocfs2_xattr_entry *xe = NULL;
2981 u16 index = 0;
2982 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2983 int low_bucket = 0, bucket, high_bucket;
Joel Beckere2356a32008-10-27 15:01:54 -07002984 struct ocfs2_xattr_bucket *search;
Tao Ma589dc262008-08-18 17:38:51 +08002985 u32 last_hash;
Joel Beckere2356a32008-10-27 15:01:54 -07002986 u64 blkno, lower_blkno = 0;
Tao Ma589dc262008-08-18 17:38:51 +08002987
Joel Beckere2356a32008-10-27 15:01:54 -07002988 search = ocfs2_xattr_bucket_new(inode);
2989 if (!search) {
2990 ret = -ENOMEM;
2991 mlog_errno(ret);
2992 goto out;
2993 }
2994
2995 ret = ocfs2_read_xattr_bucket(search, p_blkno);
Tao Ma589dc262008-08-18 17:38:51 +08002996 if (ret) {
2997 mlog_errno(ret);
2998 goto out;
2999 }
3000
Joel Beckere2356a32008-10-27 15:01:54 -07003001 xh = bucket_xh(search);
Tao Ma589dc262008-08-18 17:38:51 +08003002 high_bucket = le16_to_cpu(xh->xh_num_buckets) - 1;
Tao Ma589dc262008-08-18 17:38:51 +08003003 while (low_bucket <= high_bucket) {
Joel Beckere2356a32008-10-27 15:01:54 -07003004 ocfs2_xattr_bucket_relse(search);
3005
Tao Ma589dc262008-08-18 17:38:51 +08003006 bucket = (low_bucket + high_bucket) / 2;
Tao Ma589dc262008-08-18 17:38:51 +08003007 blkno = p_blkno + bucket * blk_per_bucket;
Joel Beckere2356a32008-10-27 15:01:54 -07003008 ret = ocfs2_read_xattr_bucket(search, blkno);
Tao Ma589dc262008-08-18 17:38:51 +08003009 if (ret) {
3010 mlog_errno(ret);
3011 goto out;
3012 }
3013
Joel Beckere2356a32008-10-27 15:01:54 -07003014 xh = bucket_xh(search);
Tao Ma589dc262008-08-18 17:38:51 +08003015 xe = &xh->xh_entries[0];
3016 if (name_hash < le32_to_cpu(xe->xe_name_hash)) {
3017 high_bucket = bucket - 1;
3018 continue;
3019 }
3020
3021 /*
3022 * Check whether the hash of the last entry in our
Tao Ma5a095612008-09-19 22:17:41 +08003023 * bucket is larger than the search one. for an empty
3024 * bucket, the last one is also the first one.
Tao Ma589dc262008-08-18 17:38:51 +08003025 */
Tao Ma5a095612008-09-19 22:17:41 +08003026 if (xh->xh_count)
3027 xe = &xh->xh_entries[le16_to_cpu(xh->xh_count) - 1];
3028
Tao Ma589dc262008-08-18 17:38:51 +08003029 last_hash = le32_to_cpu(xe->xe_name_hash);
3030
Joel Beckere2356a32008-10-27 15:01:54 -07003031 /* record lower_blkno which may be the insert place. */
3032 lower_blkno = blkno;
Tao Ma589dc262008-08-18 17:38:51 +08003033
3034 if (name_hash > le32_to_cpu(xe->xe_name_hash)) {
3035 low_bucket = bucket + 1;
3036 continue;
3037 }
3038
3039 /* the searched xattr should reside in this bucket if exists. */
Joel Beckere2356a32008-10-27 15:01:54 -07003040 ret = ocfs2_find_xe_in_bucket(inode, search,
Tao Ma589dc262008-08-18 17:38:51 +08003041 name_index, name, name_hash,
3042 &index, &found);
3043 if (ret) {
3044 mlog_errno(ret);
3045 goto out;
3046 }
3047 break;
3048 }
3049
3050 /*
3051 * Record the bucket we have found.
3052 * When the xattr's hash value is in the gap of 2 buckets, we will
3053 * always set it to the previous bucket.
3054 */
Joel Beckere2356a32008-10-27 15:01:54 -07003055 if (!lower_blkno)
3056 lower_blkno = p_blkno;
3057
3058 /* This should be in cache - we just read it during the search */
3059 ret = ocfs2_read_xattr_bucket(xs->bucket, lower_blkno);
3060 if (ret) {
3061 mlog_errno(ret);
3062 goto out;
Tao Ma589dc262008-08-18 17:38:51 +08003063 }
Tao Ma589dc262008-08-18 17:38:51 +08003064
Joel Beckerba937122008-10-24 19:13:20 -07003065 xs->header = bucket_xh(xs->bucket);
3066 xs->base = bucket_block(xs->bucket, 0);
Tao Ma589dc262008-08-18 17:38:51 +08003067 xs->end = xs->base + inode->i_sb->s_blocksize;
3068
3069 if (found) {
Tao Ma589dc262008-08-18 17:38:51 +08003070 xs->here = &xs->header->xh_entries[index];
3071 mlog(0, "find xattr %s in bucket %llu, entry = %u\n", name,
Joel Beckerba937122008-10-24 19:13:20 -07003072 (unsigned long long)bucket_blkno(xs->bucket), index);
Tao Ma589dc262008-08-18 17:38:51 +08003073 } else
3074 ret = -ENODATA;
3075
3076out:
Joel Beckere2356a32008-10-27 15:01:54 -07003077 ocfs2_xattr_bucket_free(search);
Tao Ma589dc262008-08-18 17:38:51 +08003078 return ret;
3079}
3080
3081static int ocfs2_xattr_index_block_find(struct inode *inode,
3082 struct buffer_head *root_bh,
3083 int name_index,
3084 const char *name,
3085 struct ocfs2_xattr_search *xs)
3086{
3087 int ret;
3088 struct ocfs2_xattr_block *xb =
3089 (struct ocfs2_xattr_block *)root_bh->b_data;
3090 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
3091 struct ocfs2_extent_list *el = &xb_root->xt_list;
3092 u64 p_blkno = 0;
3093 u32 first_hash, num_clusters = 0;
Tao Ma2057e5c2008-10-09 23:06:13 +08003094 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
Tao Ma589dc262008-08-18 17:38:51 +08003095
3096 if (le16_to_cpu(el->l_next_free_rec) == 0)
3097 return -ENODATA;
3098
3099 mlog(0, "find xattr %s, hash = %u, index = %d in xattr tree\n",
3100 name, name_hash, name_index);
3101
3102 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &first_hash,
3103 &num_clusters, el);
3104 if (ret) {
3105 mlog_errno(ret);
3106 goto out;
3107 }
3108
3109 BUG_ON(p_blkno == 0 || num_clusters == 0 || first_hash > name_hash);
3110
3111 mlog(0, "find xattr extent rec %u clusters from %llu, the first hash "
Mark Fashehde29c082008-10-29 14:45:30 -07003112 "in the rec is %u\n", num_clusters, (unsigned long long)p_blkno,
3113 first_hash);
Tao Ma589dc262008-08-18 17:38:51 +08003114
3115 ret = ocfs2_xattr_bucket_find(inode, name_index, name, name_hash,
3116 p_blkno, first_hash, num_clusters, xs);
3117
3118out:
3119 return ret;
3120}
3121
Tao Ma0c044f02008-08-18 17:38:50 +08003122static int ocfs2_iterate_xattr_buckets(struct inode *inode,
3123 u64 blkno,
3124 u32 clusters,
3125 xattr_bucket_func *func,
3126 void *para)
3127{
Joel Becker6dde41d2008-10-24 17:16:48 -07003128 int i, ret = 0;
Tao Ma0c044f02008-08-18 17:38:50 +08003129 u32 bpc = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb));
3130 u32 num_buckets = clusters * bpc;
Joel Beckerba937122008-10-24 19:13:20 -07003131 struct ocfs2_xattr_bucket *bucket;
Tao Ma0c044f02008-08-18 17:38:50 +08003132
Joel Beckerba937122008-10-24 19:13:20 -07003133 bucket = ocfs2_xattr_bucket_new(inode);
3134 if (!bucket) {
3135 mlog_errno(-ENOMEM);
3136 return -ENOMEM;
3137 }
Tao Ma0c044f02008-08-18 17:38:50 +08003138
3139 mlog(0, "iterating xattr buckets in %u clusters starting from %llu\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003140 clusters, (unsigned long long)blkno);
Tao Ma0c044f02008-08-18 17:38:50 +08003141
Joel Beckerba937122008-10-24 19:13:20 -07003142 for (i = 0; i < num_buckets; i++, blkno += bucket->bu_blocks) {
3143 ret = ocfs2_read_xattr_bucket(bucket, blkno);
Tao Ma0c044f02008-08-18 17:38:50 +08003144 if (ret) {
3145 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07003146 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003147 }
3148
Tao Ma0c044f02008-08-18 17:38:50 +08003149 /*
3150 * The real bucket num in this series of blocks is stored
3151 * in the 1st bucket.
3152 */
3153 if (i == 0)
Joel Beckerba937122008-10-24 19:13:20 -07003154 num_buckets = le16_to_cpu(bucket_xh(bucket)->xh_num_buckets);
Tao Ma0c044f02008-08-18 17:38:50 +08003155
Mark Fashehde29c082008-10-29 14:45:30 -07003156 mlog(0, "iterating xattr bucket %llu, first hash %u\n",
3157 (unsigned long long)blkno,
Joel Beckerba937122008-10-24 19:13:20 -07003158 le32_to_cpu(bucket_xh(bucket)->xh_entries[0].xe_name_hash));
Tao Ma0c044f02008-08-18 17:38:50 +08003159 if (func) {
Joel Beckerba937122008-10-24 19:13:20 -07003160 ret = func(inode, bucket, para);
3161 if (ret)
Tao Ma0c044f02008-08-18 17:38:50 +08003162 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07003163 /* Fall through to bucket_relse() */
Tao Ma0c044f02008-08-18 17:38:50 +08003164 }
3165
Joel Beckerba937122008-10-24 19:13:20 -07003166 ocfs2_xattr_bucket_relse(bucket);
3167 if (ret)
3168 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003169 }
3170
Joel Beckerba937122008-10-24 19:13:20 -07003171 ocfs2_xattr_bucket_free(bucket);
Tao Ma0c044f02008-08-18 17:38:50 +08003172 return ret;
3173}
3174
3175struct ocfs2_xattr_tree_list {
3176 char *buffer;
3177 size_t buffer_size;
Tao Ma936b8832008-10-09 23:06:14 +08003178 size_t result;
Tao Ma0c044f02008-08-18 17:38:50 +08003179};
3180
3181static int ocfs2_xattr_bucket_get_name_value(struct inode *inode,
3182 struct ocfs2_xattr_header *xh,
3183 int index,
3184 int *block_off,
3185 int *new_offset)
3186{
3187 u16 name_offset;
3188
3189 if (index < 0 || index >= le16_to_cpu(xh->xh_count))
3190 return -EINVAL;
3191
3192 name_offset = le16_to_cpu(xh->xh_entries[index].xe_name_offset);
3193
3194 *block_off = name_offset >> inode->i_sb->s_blocksize_bits;
3195 *new_offset = name_offset % inode->i_sb->s_blocksize;
3196
3197 return 0;
3198}
3199
3200static int ocfs2_list_xattr_bucket(struct inode *inode,
3201 struct ocfs2_xattr_bucket *bucket,
3202 void *para)
3203{
Tao Ma936b8832008-10-09 23:06:14 +08003204 int ret = 0, type;
Tao Ma0c044f02008-08-18 17:38:50 +08003205 struct ocfs2_xattr_tree_list *xl = (struct ocfs2_xattr_tree_list *)para;
Tao Ma0c044f02008-08-18 17:38:50 +08003206 int i, block_off, new_offset;
Tao Ma936b8832008-10-09 23:06:14 +08003207 const char *prefix, *name;
Tao Ma0c044f02008-08-18 17:38:50 +08003208
Joel Becker3e632942008-10-24 17:04:49 -07003209 for (i = 0 ; i < le16_to_cpu(bucket_xh(bucket)->xh_count); i++) {
3210 struct ocfs2_xattr_entry *entry = &bucket_xh(bucket)->xh_entries[i];
Tao Ma936b8832008-10-09 23:06:14 +08003211 type = ocfs2_xattr_get_type(entry);
3212 prefix = ocfs2_xattr_prefix(type);
Tao Ma0c044f02008-08-18 17:38:50 +08003213
Tao Ma936b8832008-10-09 23:06:14 +08003214 if (prefix) {
Tao Ma0c044f02008-08-18 17:38:50 +08003215 ret = ocfs2_xattr_bucket_get_name_value(inode,
Joel Becker3e632942008-10-24 17:04:49 -07003216 bucket_xh(bucket),
Tao Ma0c044f02008-08-18 17:38:50 +08003217 i,
3218 &block_off,
3219 &new_offset);
3220 if (ret)
3221 break;
Tao Ma936b8832008-10-09 23:06:14 +08003222
Joel Becker51def392008-10-24 16:57:21 -07003223 name = (const char *)bucket_block(bucket, block_off) +
Tao Ma936b8832008-10-09 23:06:14 +08003224 new_offset;
3225 ret = ocfs2_xattr_list_entry(xl->buffer,
3226 xl->buffer_size,
3227 &xl->result,
3228 prefix, name,
3229 entry->xe_name_len);
3230 if (ret)
3231 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003232 }
3233 }
3234
3235 return ret;
3236}
3237
3238static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
3239 struct ocfs2_xattr_tree_root *xt,
3240 char *buffer,
3241 size_t buffer_size)
3242{
3243 struct ocfs2_extent_list *el = &xt->xt_list;
3244 int ret = 0;
3245 u32 name_hash = UINT_MAX, e_cpos = 0, num_clusters = 0;
3246 u64 p_blkno = 0;
3247 struct ocfs2_xattr_tree_list xl = {
3248 .buffer = buffer,
3249 .buffer_size = buffer_size,
Tao Ma936b8832008-10-09 23:06:14 +08003250 .result = 0,
Tao Ma0c044f02008-08-18 17:38:50 +08003251 };
3252
3253 if (le16_to_cpu(el->l_next_free_rec) == 0)
3254 return 0;
3255
3256 while (name_hash > 0) {
3257 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
3258 &e_cpos, &num_clusters, el);
3259 if (ret) {
3260 mlog_errno(ret);
3261 goto out;
3262 }
3263
3264 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
3265 ocfs2_list_xattr_bucket,
3266 &xl);
3267 if (ret) {
3268 mlog_errno(ret);
3269 goto out;
3270 }
3271
3272 if (e_cpos == 0)
3273 break;
3274
3275 name_hash = e_cpos - 1;
3276 }
3277
Tao Ma936b8832008-10-09 23:06:14 +08003278 ret = xl.result;
Tao Ma0c044f02008-08-18 17:38:50 +08003279out:
3280 return ret;
3281}
Tao Ma01225592008-08-18 17:38:53 +08003282
3283static int cmp_xe(const void *a, const void *b)
3284{
3285 const struct ocfs2_xattr_entry *l = a, *r = b;
3286 u32 l_hash = le32_to_cpu(l->xe_name_hash);
3287 u32 r_hash = le32_to_cpu(r->xe_name_hash);
3288
3289 if (l_hash > r_hash)
3290 return 1;
3291 if (l_hash < r_hash)
3292 return -1;
3293 return 0;
3294}
3295
3296static void swap_xe(void *a, void *b, int size)
3297{
3298 struct ocfs2_xattr_entry *l = a, *r = b, tmp;
3299
3300 tmp = *l;
3301 memcpy(l, r, sizeof(struct ocfs2_xattr_entry));
3302 memcpy(r, &tmp, sizeof(struct ocfs2_xattr_entry));
3303}
3304
3305/*
3306 * When the ocfs2_xattr_block is filled up, new bucket will be created
3307 * and all the xattr entries will be moved to the new bucket.
Joel Becker178eeac2008-10-27 15:18:29 -07003308 * The header goes at the start of the bucket, and the names+values are
3309 * filled from the end. This is why *target starts as the last buffer.
Tao Ma01225592008-08-18 17:38:53 +08003310 * Note: we need to sort the entries since they are not saved in order
3311 * in the ocfs2_xattr_block.
3312 */
3313static void ocfs2_cp_xattr_block_to_bucket(struct inode *inode,
3314 struct buffer_head *xb_bh,
Joel Becker178eeac2008-10-27 15:18:29 -07003315 struct ocfs2_xattr_bucket *bucket)
Tao Ma01225592008-08-18 17:38:53 +08003316{
3317 int i, blocksize = inode->i_sb->s_blocksize;
Joel Becker178eeac2008-10-27 15:18:29 -07003318 int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08003319 u16 offset, size, off_change;
3320 struct ocfs2_xattr_entry *xe;
3321 struct ocfs2_xattr_block *xb =
3322 (struct ocfs2_xattr_block *)xb_bh->b_data;
3323 struct ocfs2_xattr_header *xb_xh = &xb->xb_attrs.xb_header;
Joel Becker178eeac2008-10-27 15:18:29 -07003324 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma01225592008-08-18 17:38:53 +08003325 u16 count = le16_to_cpu(xb_xh->xh_count);
Joel Becker178eeac2008-10-27 15:18:29 -07003326 char *src = xb_bh->b_data;
3327 char *target = bucket_block(bucket, blks - 1);
Tao Ma01225592008-08-18 17:38:53 +08003328
3329 mlog(0, "cp xattr from block %llu to bucket %llu\n",
3330 (unsigned long long)xb_bh->b_blocknr,
Joel Becker178eeac2008-10-27 15:18:29 -07003331 (unsigned long long)bucket_blkno(bucket));
Tao Ma01225592008-08-18 17:38:53 +08003332
Joel Becker178eeac2008-10-27 15:18:29 -07003333 for (i = 0; i < blks; i++)
3334 memset(bucket_block(bucket, i), 0, blocksize);
3335
Tao Ma01225592008-08-18 17:38:53 +08003336 /*
3337 * Since the xe_name_offset is based on ocfs2_xattr_header,
3338 * there is a offset change corresponding to the change of
3339 * ocfs2_xattr_header's position.
3340 */
3341 off_change = offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3342 xe = &xb_xh->xh_entries[count - 1];
3343 offset = le16_to_cpu(xe->xe_name_offset) + off_change;
3344 size = blocksize - offset;
3345
3346 /* copy all the names and values. */
Tao Ma01225592008-08-18 17:38:53 +08003347 memcpy(target + offset, src + offset, size);
3348
3349 /* Init new header now. */
3350 xh->xh_count = xb_xh->xh_count;
3351 xh->xh_num_buckets = cpu_to_le16(1);
3352 xh->xh_name_value_len = cpu_to_le16(size);
3353 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE - size);
3354
3355 /* copy all the entries. */
Joel Becker178eeac2008-10-27 15:18:29 -07003356 target = bucket_block(bucket, 0);
Tao Ma01225592008-08-18 17:38:53 +08003357 offset = offsetof(struct ocfs2_xattr_header, xh_entries);
3358 size = count * sizeof(struct ocfs2_xattr_entry);
3359 memcpy(target + offset, (char *)xb_xh + offset, size);
3360
3361 /* Change the xe offset for all the xe because of the move. */
3362 off_change = OCFS2_XATTR_BUCKET_SIZE - blocksize +
3363 offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3364 for (i = 0; i < count; i++)
3365 le16_add_cpu(&xh->xh_entries[i].xe_name_offset, off_change);
3366
3367 mlog(0, "copy entry: start = %u, size = %u, offset_change = %u\n",
3368 offset, size, off_change);
3369
3370 sort(target + offset, count, sizeof(struct ocfs2_xattr_entry),
3371 cmp_xe, swap_xe);
3372}
3373
3374/*
3375 * After we move xattr from block to index btree, we have to
3376 * update ocfs2_xattr_search to the new xe and base.
3377 *
3378 * When the entry is in xattr block, xattr_bh indicates the storage place.
3379 * While if the entry is in index b-tree, "bucket" indicates the
3380 * real place of the xattr.
3381 */
Joel Becker178eeac2008-10-27 15:18:29 -07003382static void ocfs2_xattr_update_xattr_search(struct inode *inode,
3383 struct ocfs2_xattr_search *xs,
3384 struct buffer_head *old_bh)
Tao Ma01225592008-08-18 17:38:53 +08003385{
Tao Ma01225592008-08-18 17:38:53 +08003386 char *buf = old_bh->b_data;
3387 struct ocfs2_xattr_block *old_xb = (struct ocfs2_xattr_block *)buf;
3388 struct ocfs2_xattr_header *old_xh = &old_xb->xb_attrs.xb_header;
Joel Becker178eeac2008-10-27 15:18:29 -07003389 int i;
Tao Ma01225592008-08-18 17:38:53 +08003390
Joel Beckerba937122008-10-24 19:13:20 -07003391 xs->header = bucket_xh(xs->bucket);
Joel Becker178eeac2008-10-27 15:18:29 -07003392 xs->base = bucket_block(xs->bucket, 0);
Tao Ma01225592008-08-18 17:38:53 +08003393 xs->end = xs->base + inode->i_sb->s_blocksize;
3394
Joel Becker178eeac2008-10-27 15:18:29 -07003395 if (xs->not_found)
3396 return;
Tao Ma01225592008-08-18 17:38:53 +08003397
Joel Becker178eeac2008-10-27 15:18:29 -07003398 i = xs->here - old_xh->xh_entries;
3399 xs->here = &xs->header->xh_entries[i];
Tao Ma01225592008-08-18 17:38:53 +08003400}
3401
3402static int ocfs2_xattr_create_index_block(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +08003403 struct ocfs2_xattr_search *xs,
3404 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08003405{
Tao Ma85db90e2008-11-12 08:27:01 +08003406 int ret;
Tao Ma01225592008-08-18 17:38:53 +08003407 u32 bit_off, len;
3408 u64 blkno;
Tao Ma85db90e2008-11-12 08:27:01 +08003409 handle_t *handle = ctxt->handle;
Tao Ma01225592008-08-18 17:38:53 +08003410 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3411 struct ocfs2_inode_info *oi = OCFS2_I(inode);
Tao Ma01225592008-08-18 17:38:53 +08003412 struct buffer_head *xb_bh = xs->xattr_bh;
3413 struct ocfs2_xattr_block *xb =
3414 (struct ocfs2_xattr_block *)xb_bh->b_data;
3415 struct ocfs2_xattr_tree_root *xr;
3416 u16 xb_flags = le16_to_cpu(xb->xb_flags);
Tao Ma01225592008-08-18 17:38:53 +08003417
3418 mlog(0, "create xattr index block for %llu\n",
3419 (unsigned long long)xb_bh->b_blocknr);
3420
3421 BUG_ON(xb_flags & OCFS2_XATTR_INDEXED);
Joel Becker178eeac2008-10-27 15:18:29 -07003422 BUG_ON(!xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08003423
Tao Ma01225592008-08-18 17:38:53 +08003424 /*
3425 * XXX:
3426 * We can use this lock for now, and maybe move to a dedicated mutex
3427 * if performance becomes a problem later.
3428 */
3429 down_write(&oi->ip_alloc_sem);
3430
Joel Becker84008972008-12-09 16:11:49 -08003431 ret = ocfs2_journal_access_xb(handle, inode, xb_bh,
3432 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08003433 if (ret) {
3434 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003435 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003436 }
3437
Tao Ma78f30c32008-11-12 08:27:00 +08003438 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac,
3439 1, 1, &bit_off, &len);
Tao Ma01225592008-08-18 17:38:53 +08003440 if (ret) {
3441 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003442 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003443 }
3444
3445 /*
3446 * The bucket may spread in many blocks, and
3447 * we will only touch the 1st block and the last block
3448 * in the whole bucket(one for entry and one for data).
3449 */
3450 blkno = ocfs2_clusters_to_blocks(inode->i_sb, bit_off);
3451
Mark Fashehde29c082008-10-29 14:45:30 -07003452 mlog(0, "allocate 1 cluster from %llu to xattr block\n",
3453 (unsigned long long)blkno);
Tao Ma01225592008-08-18 17:38:53 +08003454
Joel Becker178eeac2008-10-27 15:18:29 -07003455 ret = ocfs2_init_xattr_bucket(xs->bucket, blkno);
Tao Ma01225592008-08-18 17:38:53 +08003456 if (ret) {
3457 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003458 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003459 }
3460
Joel Becker178eeac2008-10-27 15:18:29 -07003461 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
3462 OCFS2_JOURNAL_ACCESS_CREATE);
Joel Beckerbd60bd32008-10-20 18:25:56 -07003463 if (ret) {
3464 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003465 goto out;
Joel Beckerbd60bd32008-10-20 18:25:56 -07003466 }
Tao Ma01225592008-08-18 17:38:53 +08003467
Joel Becker178eeac2008-10-27 15:18:29 -07003468 ocfs2_cp_xattr_block_to_bucket(inode, xb_bh, xs->bucket);
3469 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
3470
3471 ocfs2_xattr_update_xattr_search(inode, xs, xb_bh);
3472
Tao Ma01225592008-08-18 17:38:53 +08003473 /* Change from ocfs2_xattr_header to ocfs2_xattr_tree_root */
3474 memset(&xb->xb_attrs, 0, inode->i_sb->s_blocksize -
3475 offsetof(struct ocfs2_xattr_block, xb_attrs));
3476
3477 xr = &xb->xb_attrs.xb_root;
3478 xr->xt_clusters = cpu_to_le32(1);
3479 xr->xt_last_eb_blk = 0;
3480 xr->xt_list.l_tree_depth = 0;
3481 xr->xt_list.l_count = cpu_to_le16(ocfs2_xattr_recs_per_xb(inode->i_sb));
3482 xr->xt_list.l_next_free_rec = cpu_to_le16(1);
3483
3484 xr->xt_list.l_recs[0].e_cpos = 0;
3485 xr->xt_list.l_recs[0].e_blkno = cpu_to_le64(blkno);
3486 xr->xt_list.l_recs[0].e_leaf_clusters = cpu_to_le16(1);
3487
3488 xb->xb_flags = cpu_to_le16(xb_flags | OCFS2_XATTR_INDEXED);
3489
Tao Ma85db90e2008-11-12 08:27:01 +08003490 ocfs2_journal_dirty(handle, xb_bh);
Tao Ma01225592008-08-18 17:38:53 +08003491
Tao Ma85db90e2008-11-12 08:27:01 +08003492out:
Tao Ma01225592008-08-18 17:38:53 +08003493 up_write(&oi->ip_alloc_sem);
3494
Tao Ma01225592008-08-18 17:38:53 +08003495 return ret;
3496}
3497
3498static int cmp_xe_offset(const void *a, const void *b)
3499{
3500 const struct ocfs2_xattr_entry *l = a, *r = b;
3501 u32 l_name_offset = le16_to_cpu(l->xe_name_offset);
3502 u32 r_name_offset = le16_to_cpu(r->xe_name_offset);
3503
3504 if (l_name_offset < r_name_offset)
3505 return 1;
3506 if (l_name_offset > r_name_offset)
3507 return -1;
3508 return 0;
3509}
3510
3511/*
3512 * defrag a xattr bucket if we find that the bucket has some
3513 * holes beteen name/value pairs.
3514 * We will move all the name/value pairs to the end of the bucket
3515 * so that we can spare some space for insertion.
3516 */
3517static int ocfs2_defrag_xattr_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08003518 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08003519 struct ocfs2_xattr_bucket *bucket)
3520{
3521 int ret, i;
3522 size_t end, offset, len, value_len;
3523 struct ocfs2_xattr_header *xh;
3524 char *entries, *buf, *bucket_buf = NULL;
Joel Becker9c7759a2008-10-24 16:21:03 -07003525 u64 blkno = bucket_blkno(bucket);
Tao Ma01225592008-08-18 17:38:53 +08003526 u16 xh_free_start;
Tao Ma01225592008-08-18 17:38:53 +08003527 size_t blocksize = inode->i_sb->s_blocksize;
Tao Ma01225592008-08-18 17:38:53 +08003528 struct ocfs2_xattr_entry *xe;
Tao Ma01225592008-08-18 17:38:53 +08003529
3530 /*
3531 * In order to make the operation more efficient and generic,
3532 * we copy all the blocks into a contiguous memory and do the
3533 * defragment there, so if anything is error, we will not touch
3534 * the real block.
3535 */
3536 bucket_buf = kmalloc(OCFS2_XATTR_BUCKET_SIZE, GFP_NOFS);
3537 if (!bucket_buf) {
3538 ret = -EIO;
3539 goto out;
3540 }
3541
Joel Becker161d6f32008-10-27 15:25:18 -07003542 buf = bucket_buf;
Tao Ma1c32a2f2008-11-06 08:10:47 +08003543 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3544 memcpy(buf, bucket_block(bucket, i), blocksize);
Joel Becker161d6f32008-10-27 15:25:18 -07003545
Tao Ma1c32a2f2008-11-06 08:10:47 +08003546 ret = ocfs2_xattr_bucket_journal_access(handle, bucket,
Joel Becker161d6f32008-10-27 15:25:18 -07003547 OCFS2_JOURNAL_ACCESS_WRITE);
3548 if (ret < 0) {
3549 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003550 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003551 }
3552
3553 xh = (struct ocfs2_xattr_header *)bucket_buf;
3554 entries = (char *)xh->xh_entries;
3555 xh_free_start = le16_to_cpu(xh->xh_free_start);
3556
3557 mlog(0, "adjust xattr bucket in %llu, count = %u, "
3558 "xh_free_start = %u, xh_name_value_len = %u.\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003559 (unsigned long long)blkno, le16_to_cpu(xh->xh_count),
3560 xh_free_start, le16_to_cpu(xh->xh_name_value_len));
Tao Ma01225592008-08-18 17:38:53 +08003561
3562 /*
3563 * sort all the entries by their offset.
3564 * the largest will be the first, so that we can
3565 * move them to the end one by one.
3566 */
3567 sort(entries, le16_to_cpu(xh->xh_count),
3568 sizeof(struct ocfs2_xattr_entry),
3569 cmp_xe_offset, swap_xe);
3570
3571 /* Move all name/values to the end of the bucket. */
3572 xe = xh->xh_entries;
3573 end = OCFS2_XATTR_BUCKET_SIZE;
3574 for (i = 0; i < le16_to_cpu(xh->xh_count); i++, xe++) {
3575 offset = le16_to_cpu(xe->xe_name_offset);
3576 if (ocfs2_xattr_is_local(xe))
3577 value_len = OCFS2_XATTR_SIZE(
3578 le64_to_cpu(xe->xe_value_size));
3579 else
3580 value_len = OCFS2_XATTR_ROOT_SIZE;
3581 len = OCFS2_XATTR_SIZE(xe->xe_name_len) + value_len;
3582
3583 /*
3584 * We must make sure that the name/value pair
3585 * exist in the same block. So adjust end to
3586 * the previous block end if needed.
3587 */
3588 if (((end - len) / blocksize !=
3589 (end - 1) / blocksize))
3590 end = end - end % blocksize;
3591
3592 if (end > offset + len) {
3593 memmove(bucket_buf + end - len,
3594 bucket_buf + offset, len);
3595 xe->xe_name_offset = cpu_to_le16(end - len);
3596 }
3597
3598 mlog_bug_on_msg(end < offset + len, "Defrag check failed for "
3599 "bucket %llu\n", (unsigned long long)blkno);
3600
3601 end -= len;
3602 }
3603
3604 mlog_bug_on_msg(xh_free_start > end, "Defrag check failed for "
3605 "bucket %llu\n", (unsigned long long)blkno);
3606
3607 if (xh_free_start == end)
Tao Ma85db90e2008-11-12 08:27:01 +08003608 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003609
3610 memset(bucket_buf + xh_free_start, 0, end - xh_free_start);
3611 xh->xh_free_start = cpu_to_le16(end);
3612
3613 /* sort the entries by their name_hash. */
3614 sort(entries, le16_to_cpu(xh->xh_count),
3615 sizeof(struct ocfs2_xattr_entry),
3616 cmp_xe, swap_xe);
3617
3618 buf = bucket_buf;
Tao Ma1c32a2f2008-11-06 08:10:47 +08003619 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3620 memcpy(bucket_block(bucket, i), buf, blocksize);
3621 ocfs2_xattr_bucket_journal_dirty(handle, bucket);
Tao Ma01225592008-08-18 17:38:53 +08003622
Tao Ma01225592008-08-18 17:38:53 +08003623out:
Tao Ma01225592008-08-18 17:38:53 +08003624 kfree(bucket_buf);
3625 return ret;
3626}
3627
3628/*
Joel Beckerb5c03e72008-11-25 19:58:16 -08003629 * prev_blkno points to the start of an existing extent. new_blkno
3630 * points to a newly allocated extent. Because we know each of our
3631 * clusters contains more than bucket, we can easily split one cluster
3632 * at a bucket boundary. So we take the last cluster of the existing
3633 * extent and split it down the middle. We move the last half of the
3634 * buckets in the last cluster of the existing extent over to the new
3635 * extent.
Tao Ma01225592008-08-18 17:38:53 +08003636 *
Joel Beckerb5c03e72008-11-25 19:58:16 -08003637 * first_bh is the buffer at prev_blkno so we can update the existing
3638 * extent's bucket count. header_bh is the bucket were we were hoping
3639 * to insert our xattr. If the bucket move places the target in the new
3640 * extent, we'll update first_bh and header_bh after modifying the old
3641 * extent.
3642 *
3643 * first_hash will be set as the 1st xe's name_hash in the new extent.
Tao Ma01225592008-08-18 17:38:53 +08003644 */
3645static int ocfs2_mv_xattr_bucket_cross_cluster(struct inode *inode,
3646 handle_t *handle,
Joel Becker41cb8142008-11-26 14:25:21 -08003647 struct ocfs2_xattr_bucket *first,
3648 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08003649 u64 new_blkno,
Tao Ma01225592008-08-18 17:38:53 +08003650 u32 num_clusters,
3651 u32 *first_hash)
3652{
Joel Beckerc58b6032008-11-26 13:36:24 -08003653 int ret;
Joel Becker41cb8142008-11-26 14:25:21 -08003654 struct super_block *sb = inode->i_sb;
3655 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(sb);
3656 int num_buckets = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(sb));
Joel Beckerb5c03e72008-11-25 19:58:16 -08003657 int to_move = num_buckets / 2;
Joel Beckerc58b6032008-11-26 13:36:24 -08003658 u64 src_blkno;
Joel Becker41cb8142008-11-26 14:25:21 -08003659 u64 last_cluster_blkno = bucket_blkno(first) +
3660 ((num_clusters - 1) * ocfs2_clusters_to_blocks(sb, 1));
Tao Ma01225592008-08-18 17:38:53 +08003661
Joel Becker41cb8142008-11-26 14:25:21 -08003662 BUG_ON(le16_to_cpu(bucket_xh(first)->xh_num_buckets) < num_buckets);
3663 BUG_ON(OCFS2_XATTR_BUCKET_SIZE == OCFS2_SB(sb)->s_clustersize);
Tao Ma01225592008-08-18 17:38:53 +08003664
Tao Ma01225592008-08-18 17:38:53 +08003665 mlog(0, "move half of xattrs in cluster %llu to %llu\n",
Joel Beckerc58b6032008-11-26 13:36:24 -08003666 (unsigned long long)last_cluster_blkno, (unsigned long long)new_blkno);
Tao Ma01225592008-08-18 17:38:53 +08003667
Joel Becker41cb8142008-11-26 14:25:21 -08003668 ret = ocfs2_mv_xattr_buckets(inode, handle, bucket_blkno(first),
Joel Beckerc58b6032008-11-26 13:36:24 -08003669 last_cluster_blkno, new_blkno,
3670 to_move, first_hash);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003671 if (ret) {
3672 mlog_errno(ret);
3673 goto out;
3674 }
3675
Joel Beckerc58b6032008-11-26 13:36:24 -08003676 /* This is the first bucket that got moved */
3677 src_blkno = last_cluster_blkno + (to_move * blks_per_bucket);
3678
Tao Ma01225592008-08-18 17:38:53 +08003679 /*
Joel Beckerc58b6032008-11-26 13:36:24 -08003680 * If the target bucket was part of the moved buckets, we need to
Joel Becker41cb8142008-11-26 14:25:21 -08003681 * update first and target.
Joel Beckerb5c03e72008-11-25 19:58:16 -08003682 */
Joel Becker41cb8142008-11-26 14:25:21 -08003683 if (bucket_blkno(target) >= src_blkno) {
Joel Beckerb5c03e72008-11-25 19:58:16 -08003684 /* Find the block for the new target bucket */
3685 src_blkno = new_blkno +
Joel Becker41cb8142008-11-26 14:25:21 -08003686 (bucket_blkno(target) - src_blkno);
3687
3688 ocfs2_xattr_bucket_relse(first);
3689 ocfs2_xattr_bucket_relse(target);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003690
3691 /*
Joel Beckerc58b6032008-11-26 13:36:24 -08003692 * These shouldn't fail - the buffers are in the
Joel Beckerb5c03e72008-11-25 19:58:16 -08003693 * journal from ocfs2_cp_xattr_bucket().
3694 */
Joel Becker41cb8142008-11-26 14:25:21 -08003695 ret = ocfs2_read_xattr_bucket(first, new_blkno);
Joel Beckerc58b6032008-11-26 13:36:24 -08003696 if (ret) {
3697 mlog_errno(ret);
3698 goto out;
3699 }
Joel Becker41cb8142008-11-26 14:25:21 -08003700 ret = ocfs2_read_xattr_bucket(target, src_blkno);
3701 if (ret)
Joel Beckerb5c03e72008-11-25 19:58:16 -08003702 mlog_errno(ret);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003703
Joel Beckerb5c03e72008-11-25 19:58:16 -08003704 }
3705
Tao Ma01225592008-08-18 17:38:53 +08003706out:
Tao Ma01225592008-08-18 17:38:53 +08003707 return ret;
3708}
3709
Tao Ma01225592008-08-18 17:38:53 +08003710/*
Tao Ma80bcaf32008-10-27 06:06:24 +08003711 * Find the suitable pos when we divide a bucket into 2.
3712 * We have to make sure the xattrs with the same hash value exist
3713 * in the same bucket.
3714 *
3715 * If this ocfs2_xattr_header covers more than one hash value, find a
3716 * place where the hash value changes. Try to find the most even split.
3717 * The most common case is that all entries have different hash values,
3718 * and the first check we make will find a place to split.
Tao Ma01225592008-08-18 17:38:53 +08003719 */
Tao Ma80bcaf32008-10-27 06:06:24 +08003720static int ocfs2_xattr_find_divide_pos(struct ocfs2_xattr_header *xh)
3721{
3722 struct ocfs2_xattr_entry *entries = xh->xh_entries;
3723 int count = le16_to_cpu(xh->xh_count);
3724 int delta, middle = count / 2;
3725
3726 /*
3727 * We start at the middle. Each step gets farther away in both
3728 * directions. We therefore hit the change in hash value
3729 * nearest to the middle. Note that this loop does not execute for
3730 * count < 2.
3731 */
3732 for (delta = 0; delta < middle; delta++) {
3733 /* Let's check delta earlier than middle */
3734 if (cmp_xe(&entries[middle - delta - 1],
3735 &entries[middle - delta]))
3736 return middle - delta;
3737
3738 /* For even counts, don't walk off the end */
3739 if ((middle + delta + 1) == count)
3740 continue;
3741
3742 /* Now try delta past middle */
3743 if (cmp_xe(&entries[middle + delta],
3744 &entries[middle + delta + 1]))
3745 return middle + delta + 1;
3746 }
3747
3748 /* Every entry had the same hash */
3749 return count;
3750}
3751
3752/*
3753 * Move some xattrs in old bucket(blk) to new bucket(new_blk).
3754 * first_hash will record the 1st hash of the new bucket.
3755 *
3756 * Normally half of the xattrs will be moved. But we have to make
3757 * sure that the xattrs with the same hash value are stored in the
3758 * same bucket. If all the xattrs in this bucket have the same hash
3759 * value, the new bucket will be initialized as an empty one and the
3760 * first_hash will be initialized as (hash_value+1).
3761 */
3762static int ocfs2_divide_xattr_bucket(struct inode *inode,
3763 handle_t *handle,
3764 u64 blk,
3765 u64 new_blk,
3766 u32 *first_hash,
3767 int new_bucket_head)
Tao Ma01225592008-08-18 17:38:53 +08003768{
3769 int ret, i;
Tao Ma80bcaf32008-10-27 06:06:24 +08003770 int count, start, len, name_value_len = 0, xe_len, name_offset = 0;
Joel Beckerba937122008-10-24 19:13:20 -07003771 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
Tao Ma01225592008-08-18 17:38:53 +08003772 struct ocfs2_xattr_header *xh;
3773 struct ocfs2_xattr_entry *xe;
3774 int blocksize = inode->i_sb->s_blocksize;
3775
Tao Ma80bcaf32008-10-27 06:06:24 +08003776 mlog(0, "move some of xattrs from bucket %llu to %llu\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003777 (unsigned long long)blk, (unsigned long long)new_blk);
Tao Ma01225592008-08-18 17:38:53 +08003778
Joel Beckerba937122008-10-24 19:13:20 -07003779 s_bucket = ocfs2_xattr_bucket_new(inode);
3780 t_bucket = ocfs2_xattr_bucket_new(inode);
3781 if (!s_bucket || !t_bucket) {
3782 ret = -ENOMEM;
3783 mlog_errno(ret);
3784 goto out;
3785 }
Tao Ma01225592008-08-18 17:38:53 +08003786
Joel Beckerba937122008-10-24 19:13:20 -07003787 ret = ocfs2_read_xattr_bucket(s_bucket, blk);
Tao Ma01225592008-08-18 17:38:53 +08003788 if (ret) {
3789 mlog_errno(ret);
3790 goto out;
3791 }
3792
Joel Beckerba937122008-10-24 19:13:20 -07003793 ret = ocfs2_xattr_bucket_journal_access(handle, s_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07003794 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08003795 if (ret) {
3796 mlog_errno(ret);
3797 goto out;
3798 }
3799
Joel Becker784b8162008-10-24 17:33:40 -07003800 /*
3801 * Even if !new_bucket_head, we're overwriting t_bucket. Thus,
3802 * there's no need to read it.
3803 */
Joel Beckerba937122008-10-24 19:13:20 -07003804 ret = ocfs2_init_xattr_bucket(t_bucket, new_blk);
Tao Ma01225592008-08-18 17:38:53 +08003805 if (ret) {
3806 mlog_errno(ret);
3807 goto out;
3808 }
3809
Joel Becker2b656c12008-11-25 19:00:15 -08003810 /*
3811 * Hey, if we're overwriting t_bucket, what difference does
3812 * ACCESS_CREATE vs ACCESS_WRITE make? See the comment in the
3813 * same part of ocfs2_cp_xattr_bucket().
3814 */
Joel Beckerba937122008-10-24 19:13:20 -07003815 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07003816 new_bucket_head ?
3817 OCFS2_JOURNAL_ACCESS_CREATE :
3818 OCFS2_JOURNAL_ACCESS_WRITE);
3819 if (ret) {
3820 mlog_errno(ret);
3821 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003822 }
3823
Joel Beckerba937122008-10-24 19:13:20 -07003824 xh = bucket_xh(s_bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08003825 count = le16_to_cpu(xh->xh_count);
3826 start = ocfs2_xattr_find_divide_pos(xh);
3827
3828 if (start == count) {
3829 xe = &xh->xh_entries[start-1];
3830
3831 /*
3832 * initialized a new empty bucket here.
3833 * The hash value is set as one larger than
3834 * that of the last entry in the previous bucket.
3835 */
Joel Beckerba937122008-10-24 19:13:20 -07003836 for (i = 0; i < t_bucket->bu_blocks; i++)
3837 memset(bucket_block(t_bucket, i), 0, blocksize);
Tao Ma80bcaf32008-10-27 06:06:24 +08003838
Joel Beckerba937122008-10-24 19:13:20 -07003839 xh = bucket_xh(t_bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08003840 xh->xh_free_start = cpu_to_le16(blocksize);
3841 xh->xh_entries[0].xe_name_hash = xe->xe_name_hash;
3842 le32_add_cpu(&xh->xh_entries[0].xe_name_hash, 1);
3843
3844 goto set_num_buckets;
3845 }
3846
Tao Ma01225592008-08-18 17:38:53 +08003847 /* copy the whole bucket to the new first. */
Joel Beckerba937122008-10-24 19:13:20 -07003848 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003849
3850 /* update the new bucket. */
Joel Beckerba937122008-10-24 19:13:20 -07003851 xh = bucket_xh(t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003852
3853 /*
3854 * Calculate the total name/value len and xh_free_start for
3855 * the old bucket first.
3856 */
3857 name_offset = OCFS2_XATTR_BUCKET_SIZE;
3858 name_value_len = 0;
3859 for (i = 0; i < start; i++) {
3860 xe = &xh->xh_entries[i];
3861 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3862 if (ocfs2_xattr_is_local(xe))
3863 xe_len +=
3864 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3865 else
3866 xe_len += OCFS2_XATTR_ROOT_SIZE;
3867 name_value_len += xe_len;
3868 if (le16_to_cpu(xe->xe_name_offset) < name_offset)
3869 name_offset = le16_to_cpu(xe->xe_name_offset);
3870 }
3871
3872 /*
3873 * Now begin the modification to the new bucket.
3874 *
3875 * In the new bucket, We just move the xattr entry to the beginning
3876 * and don't touch the name/value. So there will be some holes in the
3877 * bucket, and they will be removed when ocfs2_defrag_xattr_bucket is
3878 * called.
3879 */
3880 xe = &xh->xh_entries[start];
3881 len = sizeof(struct ocfs2_xattr_entry) * (count - start);
3882 mlog(0, "mv xattr entry len %d from %d to %d\n", len,
Mark Fashehff1ec202008-08-19 10:54:29 -07003883 (int)((char *)xe - (char *)xh),
3884 (int)((char *)xh->xh_entries - (char *)xh));
Tao Ma01225592008-08-18 17:38:53 +08003885 memmove((char *)xh->xh_entries, (char *)xe, len);
3886 xe = &xh->xh_entries[count - start];
3887 len = sizeof(struct ocfs2_xattr_entry) * start;
3888 memset((char *)xe, 0, len);
3889
3890 le16_add_cpu(&xh->xh_count, -start);
3891 le16_add_cpu(&xh->xh_name_value_len, -name_value_len);
3892
3893 /* Calculate xh_free_start for the new bucket. */
3894 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
3895 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
3896 xe = &xh->xh_entries[i];
3897 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3898 if (ocfs2_xattr_is_local(xe))
3899 xe_len +=
3900 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3901 else
3902 xe_len += OCFS2_XATTR_ROOT_SIZE;
3903 if (le16_to_cpu(xe->xe_name_offset) <
3904 le16_to_cpu(xh->xh_free_start))
3905 xh->xh_free_start = xe->xe_name_offset;
3906 }
3907
Tao Ma80bcaf32008-10-27 06:06:24 +08003908set_num_buckets:
Tao Ma01225592008-08-18 17:38:53 +08003909 /* set xh->xh_num_buckets for the new xh. */
3910 if (new_bucket_head)
3911 xh->xh_num_buckets = cpu_to_le16(1);
3912 else
3913 xh->xh_num_buckets = 0;
3914
Joel Beckerba937122008-10-24 19:13:20 -07003915 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003916
3917 /* store the first_hash of the new bucket. */
3918 if (first_hash)
3919 *first_hash = le32_to_cpu(xh->xh_entries[0].xe_name_hash);
3920
3921 /*
Tao Ma80bcaf32008-10-27 06:06:24 +08003922 * Now only update the 1st block of the old bucket. If we
3923 * just added a new empty bucket, there is no need to modify
3924 * it.
Tao Ma01225592008-08-18 17:38:53 +08003925 */
Tao Ma80bcaf32008-10-27 06:06:24 +08003926 if (start == count)
3927 goto out;
3928
Joel Beckerba937122008-10-24 19:13:20 -07003929 xh = bucket_xh(s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003930 memset(&xh->xh_entries[start], 0,
3931 sizeof(struct ocfs2_xattr_entry) * (count - start));
3932 xh->xh_count = cpu_to_le16(start);
3933 xh->xh_free_start = cpu_to_le16(name_offset);
3934 xh->xh_name_value_len = cpu_to_le16(name_value_len);
3935
Joel Beckerba937122008-10-24 19:13:20 -07003936 ocfs2_xattr_bucket_journal_dirty(handle, s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003937
3938out:
Joel Beckerba937122008-10-24 19:13:20 -07003939 ocfs2_xattr_bucket_free(s_bucket);
3940 ocfs2_xattr_bucket_free(t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003941
3942 return ret;
3943}
3944
3945/*
3946 * Copy xattr from one bucket to another bucket.
3947 *
3948 * The caller must make sure that the journal transaction
3949 * has enough space for journaling.
3950 */
3951static int ocfs2_cp_xattr_bucket(struct inode *inode,
3952 handle_t *handle,
3953 u64 s_blkno,
3954 u64 t_blkno,
3955 int t_is_new)
3956{
Joel Becker4980c6d2008-10-24 18:54:43 -07003957 int ret;
Joel Beckerba937122008-10-24 19:13:20 -07003958 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
Tao Ma01225592008-08-18 17:38:53 +08003959
3960 BUG_ON(s_blkno == t_blkno);
3961
3962 mlog(0, "cp bucket %llu to %llu, target is %d\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003963 (unsigned long long)s_blkno, (unsigned long long)t_blkno,
3964 t_is_new);
Tao Ma01225592008-08-18 17:38:53 +08003965
Joel Beckerba937122008-10-24 19:13:20 -07003966 s_bucket = ocfs2_xattr_bucket_new(inode);
3967 t_bucket = ocfs2_xattr_bucket_new(inode);
3968 if (!s_bucket || !t_bucket) {
3969 ret = -ENOMEM;
3970 mlog_errno(ret);
3971 goto out;
3972 }
Joel Becker92de1092008-11-25 17:06:40 -08003973
Joel Beckerba937122008-10-24 19:13:20 -07003974 ret = ocfs2_read_xattr_bucket(s_bucket, s_blkno);
Tao Ma01225592008-08-18 17:38:53 +08003975 if (ret)
3976 goto out;
3977
Joel Becker784b8162008-10-24 17:33:40 -07003978 /*
3979 * Even if !t_is_new, we're overwriting t_bucket. Thus,
3980 * there's no need to read it.
3981 */
Joel Beckerba937122008-10-24 19:13:20 -07003982 ret = ocfs2_init_xattr_bucket(t_bucket, t_blkno);
Tao Ma01225592008-08-18 17:38:53 +08003983 if (ret)
3984 goto out;
3985
Joel Becker2b656c12008-11-25 19:00:15 -08003986 /*
3987 * Hey, if we're overwriting t_bucket, what difference does
3988 * ACCESS_CREATE vs ACCESS_WRITE make? Well, if we allocated a new
Joel Becker874d65a2008-11-26 13:02:18 -08003989 * cluster to fill, we came here from
3990 * ocfs2_mv_xattr_buckets(), and it is really new -
3991 * ACCESS_CREATE is required. But we also might have moved data
3992 * out of t_bucket before extending back into it.
3993 * ocfs2_add_new_xattr_bucket() can do this - its call to
3994 * ocfs2_add_new_xattr_cluster() may have created a new extent
Joel Becker2b656c12008-11-25 19:00:15 -08003995 * and copied out the end of the old extent. Then it re-extends
3996 * the old extent back to create space for new xattrs. That's
3997 * how we get here, and the bucket isn't really new.
3998 */
Joel Beckerba937122008-10-24 19:13:20 -07003999 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07004000 t_is_new ?
4001 OCFS2_JOURNAL_ACCESS_CREATE :
4002 OCFS2_JOURNAL_ACCESS_WRITE);
4003 if (ret)
4004 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004005
Joel Beckerba937122008-10-24 19:13:20 -07004006 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
4007 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004008
4009out:
Joel Beckerba937122008-10-24 19:13:20 -07004010 ocfs2_xattr_bucket_free(t_bucket);
4011 ocfs2_xattr_bucket_free(s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004012
4013 return ret;
4014}
4015
4016/*
Joel Becker874d65a2008-11-26 13:02:18 -08004017 * src_blk points to the start of an existing extent. last_blk points to
4018 * last cluster in that extent. to_blk points to a newly allocated
Joel Becker54ecb6b2008-11-26 13:18:31 -08004019 * extent. We copy the buckets from the cluster at last_blk to the new
4020 * extent. If start_bucket is non-zero, we skip that many buckets before
4021 * we start copying. The new extent's xh_num_buckets gets set to the
4022 * number of buckets we copied. The old extent's xh_num_buckets shrinks
4023 * by the same amount.
Tao Ma01225592008-08-18 17:38:53 +08004024 */
Joel Becker54ecb6b2008-11-26 13:18:31 -08004025static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
4026 u64 src_blk, u64 last_blk, u64 to_blk,
4027 unsigned int start_bucket,
4028 u32 *first_hash)
Tao Ma01225592008-08-18 17:38:53 +08004029{
4030 int i, ret, credits;
4031 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Becker15d60922008-11-25 18:36:42 -08004032 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08004033 int num_buckets = ocfs2_xattr_buckets_per_cluster(osb);
Joel Becker15d60922008-11-25 18:36:42 -08004034 struct ocfs2_xattr_bucket *old_first, *new_first;
Tao Ma01225592008-08-18 17:38:53 +08004035
Joel Becker874d65a2008-11-26 13:02:18 -08004036 mlog(0, "mv xattrs from cluster %llu to %llu\n",
4037 (unsigned long long)last_blk, (unsigned long long)to_blk);
Tao Ma01225592008-08-18 17:38:53 +08004038
Joel Becker54ecb6b2008-11-26 13:18:31 -08004039 BUG_ON(start_bucket >= num_buckets);
4040 if (start_bucket) {
4041 num_buckets -= start_bucket;
4042 last_blk += (start_bucket * blks_per_bucket);
4043 }
4044
Joel Becker15d60922008-11-25 18:36:42 -08004045 /* The first bucket of the original extent */
4046 old_first = ocfs2_xattr_bucket_new(inode);
4047 /* The first bucket of the new extent */
4048 new_first = ocfs2_xattr_bucket_new(inode);
4049 if (!old_first || !new_first) {
4050 ret = -ENOMEM;
4051 mlog_errno(ret);
4052 goto out;
4053 }
4054
Joel Becker874d65a2008-11-26 13:02:18 -08004055 ret = ocfs2_read_xattr_bucket(old_first, src_blk);
Joel Becker15d60922008-11-25 18:36:42 -08004056 if (ret) {
4057 mlog_errno(ret);
4058 goto out;
4059 }
4060
Tao Ma01225592008-08-18 17:38:53 +08004061 /*
Joel Becker54ecb6b2008-11-26 13:18:31 -08004062 * We need to update the first bucket of the old extent and all
4063 * the buckets going to the new extent.
Tao Ma01225592008-08-18 17:38:53 +08004064 */
Joel Becker54ecb6b2008-11-26 13:18:31 -08004065 credits = ((num_buckets + 1) * blks_per_bucket) +
4066 handle->h_buffer_credits;
Tao Ma01225592008-08-18 17:38:53 +08004067 ret = ocfs2_extend_trans(handle, credits);
4068 if (ret) {
4069 mlog_errno(ret);
4070 goto out;
4071 }
4072
Joel Becker15d60922008-11-25 18:36:42 -08004073 ret = ocfs2_xattr_bucket_journal_access(handle, old_first,
4074 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004075 if (ret) {
4076 mlog_errno(ret);
4077 goto out;
4078 }
4079
4080 for (i = 0; i < num_buckets; i++) {
4081 ret = ocfs2_cp_xattr_bucket(inode, handle,
Joel Becker874d65a2008-11-26 13:02:18 -08004082 last_blk + (i * blks_per_bucket),
Joel Becker15d60922008-11-25 18:36:42 -08004083 to_blk + (i * blks_per_bucket),
4084 1);
Tao Ma01225592008-08-18 17:38:53 +08004085 if (ret) {
4086 mlog_errno(ret);
4087 goto out;
4088 }
Tao Ma01225592008-08-18 17:38:53 +08004089 }
4090
Joel Becker15d60922008-11-25 18:36:42 -08004091 /*
4092 * Get the new bucket ready before we dirty anything
4093 * (This actually shouldn't fail, because we already dirtied
4094 * it once in ocfs2_cp_xattr_bucket()).
4095 */
4096 ret = ocfs2_read_xattr_bucket(new_first, to_blk);
4097 if (ret) {
Tao Ma01225592008-08-18 17:38:53 +08004098 mlog_errno(ret);
4099 goto out;
4100 }
Joel Becker15d60922008-11-25 18:36:42 -08004101 ret = ocfs2_xattr_bucket_journal_access(handle, new_first,
4102 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004103 if (ret) {
4104 mlog_errno(ret);
4105 goto out;
4106 }
4107
Joel Becker15d60922008-11-25 18:36:42 -08004108 /* Now update the headers */
4109 le16_add_cpu(&bucket_xh(old_first)->xh_num_buckets, -num_buckets);
4110 ocfs2_xattr_bucket_journal_dirty(handle, old_first);
Tao Ma01225592008-08-18 17:38:53 +08004111
Joel Becker15d60922008-11-25 18:36:42 -08004112 bucket_xh(new_first)->xh_num_buckets = cpu_to_le16(num_buckets);
4113 ocfs2_xattr_bucket_journal_dirty(handle, new_first);
Tao Ma01225592008-08-18 17:38:53 +08004114
4115 if (first_hash)
Joel Becker15d60922008-11-25 18:36:42 -08004116 *first_hash = le32_to_cpu(bucket_xh(new_first)->xh_entries[0].xe_name_hash);
4117
Tao Ma01225592008-08-18 17:38:53 +08004118out:
Joel Becker15d60922008-11-25 18:36:42 -08004119 ocfs2_xattr_bucket_free(new_first);
4120 ocfs2_xattr_bucket_free(old_first);
Tao Ma01225592008-08-18 17:38:53 +08004121 return ret;
4122}
4123
4124/*
Tao Ma80bcaf32008-10-27 06:06:24 +08004125 * Move some xattrs in this cluster to the new cluster.
Tao Ma01225592008-08-18 17:38:53 +08004126 * This function should only be called when bucket size == cluster size.
4127 * Otherwise ocfs2_mv_xattr_bucket_cross_cluster should be used instead.
4128 */
Tao Ma80bcaf32008-10-27 06:06:24 +08004129static int ocfs2_divide_xattr_cluster(struct inode *inode,
4130 handle_t *handle,
4131 u64 prev_blk,
4132 u64 new_blk,
4133 u32 *first_hash)
Tao Ma01225592008-08-18 17:38:53 +08004134{
4135 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08004136 int ret, credits = 2 * blk_per_bucket + handle->h_buffer_credits;
Tao Ma01225592008-08-18 17:38:53 +08004137
4138 BUG_ON(OCFS2_XATTR_BUCKET_SIZE < OCFS2_SB(inode->i_sb)->s_clustersize);
4139
4140 ret = ocfs2_extend_trans(handle, credits);
4141 if (ret) {
4142 mlog_errno(ret);
4143 return ret;
4144 }
4145
4146 /* Move half of the xattr in start_blk to the next bucket. */
Tao Ma80bcaf32008-10-27 06:06:24 +08004147 return ocfs2_divide_xattr_bucket(inode, handle, prev_blk,
4148 new_blk, first_hash, 1);
Tao Ma01225592008-08-18 17:38:53 +08004149}
4150
4151/*
4152 * Move some xattrs from the old cluster to the new one since they are not
4153 * contiguous in ocfs2 xattr tree.
4154 *
4155 * new_blk starts a new separate cluster, and we will move some xattrs from
4156 * prev_blk to it. v_start will be set as the first name hash value in this
4157 * new cluster so that it can be used as e_cpos during tree insertion and
4158 * don't collide with our original b-tree operations. first_bh and header_bh
4159 * will also be updated since they will be used in ocfs2_extend_xattr_bucket
4160 * to extend the insert bucket.
4161 *
4162 * The problem is how much xattr should we move to the new one and when should
4163 * we update first_bh and header_bh?
4164 * 1. If cluster size > bucket size, that means the previous cluster has more
4165 * than 1 bucket, so just move half nums of bucket into the new cluster and
4166 * update the first_bh and header_bh if the insert bucket has been moved
4167 * to the new cluster.
4168 * 2. If cluster_size == bucket_size:
4169 * a) If the previous extent rec has more than one cluster and the insert
4170 * place isn't in the last cluster, copy the entire last cluster to the
4171 * new one. This time, we don't need to upate the first_bh and header_bh
4172 * since they will not be moved into the new cluster.
4173 * b) Otherwise, move the bottom half of the xattrs in the last cluster into
4174 * the new one. And we set the extend flag to zero if the insert place is
4175 * moved into the new allocated cluster since no extend is needed.
4176 */
4177static int ocfs2_adjust_xattr_cross_cluster(struct inode *inode,
4178 handle_t *handle,
Joel Becker012ee912008-11-26 14:43:31 -08004179 struct ocfs2_xattr_bucket *first,
4180 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08004181 u64 new_blk,
Tao Ma01225592008-08-18 17:38:53 +08004182 u32 prev_clusters,
4183 u32 *v_start,
4184 int *extend)
4185{
Joel Becker92cf3ad2008-11-26 14:12:09 -08004186 int ret;
Tao Ma01225592008-08-18 17:38:53 +08004187
4188 mlog(0, "adjust xattrs from cluster %llu len %u to %llu\n",
Joel Becker012ee912008-11-26 14:43:31 -08004189 (unsigned long long)bucket_blkno(first), prev_clusters,
Mark Fashehde29c082008-10-29 14:45:30 -07004190 (unsigned long long)new_blk);
Tao Ma01225592008-08-18 17:38:53 +08004191
Joel Becker41cb8142008-11-26 14:25:21 -08004192 if (ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb)) > 1) {
Tao Ma01225592008-08-18 17:38:53 +08004193 ret = ocfs2_mv_xattr_bucket_cross_cluster(inode,
4194 handle,
Joel Becker41cb8142008-11-26 14:25:21 -08004195 first, target,
Tao Ma01225592008-08-18 17:38:53 +08004196 new_blk,
Tao Ma01225592008-08-18 17:38:53 +08004197 prev_clusters,
4198 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004199 if (ret)
Joel Becker41cb8142008-11-26 14:25:21 -08004200 mlog_errno(ret);
Joel Becker41cb8142008-11-26 14:25:21 -08004201 } else {
Joel Becker92cf3ad2008-11-26 14:12:09 -08004202 /* The start of the last cluster in the first extent */
4203 u64 last_blk = bucket_blkno(first) +
4204 ((prev_clusters - 1) *
4205 ocfs2_clusters_to_blocks(inode->i_sb, 1));
Tao Ma01225592008-08-18 17:38:53 +08004206
Joel Becker012ee912008-11-26 14:43:31 -08004207 if (prev_clusters > 1 && bucket_blkno(target) != last_blk) {
Joel Becker874d65a2008-11-26 13:02:18 -08004208 ret = ocfs2_mv_xattr_buckets(inode, handle,
Joel Becker92cf3ad2008-11-26 14:12:09 -08004209 bucket_blkno(first),
Joel Becker54ecb6b2008-11-26 13:18:31 -08004210 last_blk, new_blk, 0,
Tao Ma01225592008-08-18 17:38:53 +08004211 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004212 if (ret)
4213 mlog_errno(ret);
4214 } else {
Tao Ma80bcaf32008-10-27 06:06:24 +08004215 ret = ocfs2_divide_xattr_cluster(inode, handle,
4216 last_blk, new_blk,
4217 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004218 if (ret)
4219 mlog_errno(ret);
Tao Ma01225592008-08-18 17:38:53 +08004220
Joel Becker92cf3ad2008-11-26 14:12:09 -08004221 if ((bucket_blkno(target) == last_blk) && extend)
Tao Ma01225592008-08-18 17:38:53 +08004222 *extend = 0;
4223 }
4224 }
4225
4226 return ret;
4227}
4228
4229/*
4230 * Add a new cluster for xattr storage.
4231 *
4232 * If the new cluster is contiguous with the previous one, it will be
4233 * appended to the same extent record, and num_clusters will be updated.
4234 * If not, we will insert a new extent for it and move some xattrs in
4235 * the last cluster into the new allocated one.
4236 * We also need to limit the maximum size of a btree leaf, otherwise we'll
4237 * lose the benefits of hashing because we'll have to search large leaves.
4238 * So now the maximum size is OCFS2_MAX_XATTR_TREE_LEAF_SIZE(or clustersize,
4239 * if it's bigger).
4240 *
4241 * first_bh is the first block of the previous extent rec and header_bh
4242 * indicates the bucket we will insert the new xattrs. They will be updated
4243 * when the header_bh is moved into the new cluster.
4244 */
4245static int ocfs2_add_new_xattr_cluster(struct inode *inode,
4246 struct buffer_head *root_bh,
Joel Beckered29c0c2008-11-26 15:08:44 -08004247 struct ocfs2_xattr_bucket *first,
4248 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08004249 u32 *num_clusters,
4250 u32 prev_cpos,
Tao Ma78f30c32008-11-12 08:27:00 +08004251 int *extend,
4252 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004253{
Tao Ma85db90e2008-11-12 08:27:01 +08004254 int ret;
Tao Ma01225592008-08-18 17:38:53 +08004255 u16 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
4256 u32 prev_clusters = *num_clusters;
4257 u32 clusters_to_add = 1, bit_off, num_bits, v_start = 0;
4258 u64 block;
Tao Ma85db90e2008-11-12 08:27:01 +08004259 handle_t *handle = ctxt->handle;
Tao Ma01225592008-08-18 17:38:53 +08004260 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004261 struct ocfs2_extent_tree et;
Tao Ma01225592008-08-18 17:38:53 +08004262
4263 mlog(0, "Add new xattr cluster for %llu, previous xattr hash = %u, "
4264 "previous xattr blkno = %llu\n",
4265 (unsigned long long)OCFS2_I(inode)->ip_blkno,
Joel Beckered29c0c2008-11-26 15:08:44 -08004266 prev_cpos, (unsigned long long)bucket_blkno(first));
Tao Ma01225592008-08-18 17:38:53 +08004267
Joel Becker8d6220d2008-08-22 12:46:09 -07004268 ocfs2_init_xattr_tree_extent_tree(&et, inode, root_bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004269
Joel Becker84008972008-12-09 16:11:49 -08004270 ret = ocfs2_journal_access_xb(handle, inode, root_bh,
4271 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004272 if (ret < 0) {
4273 mlog_errno(ret);
4274 goto leave;
4275 }
4276
Tao Ma78f30c32008-11-12 08:27:00 +08004277 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac, 1,
Tao Ma01225592008-08-18 17:38:53 +08004278 clusters_to_add, &bit_off, &num_bits);
4279 if (ret < 0) {
4280 if (ret != -ENOSPC)
4281 mlog_errno(ret);
4282 goto leave;
4283 }
4284
4285 BUG_ON(num_bits > clusters_to_add);
4286
4287 block = ocfs2_clusters_to_blocks(osb->sb, bit_off);
4288 mlog(0, "Allocating %u clusters at block %u for xattr in inode %llu\n",
4289 num_bits, bit_off, (unsigned long long)OCFS2_I(inode)->ip_blkno);
4290
Joel Beckered29c0c2008-11-26 15:08:44 -08004291 if (bucket_blkno(first) + (prev_clusters * bpc) == block &&
Tao Ma01225592008-08-18 17:38:53 +08004292 (prev_clusters + num_bits) << osb->s_clustersize_bits <=
4293 OCFS2_MAX_XATTR_TREE_LEAF_SIZE) {
4294 /*
4295 * If this cluster is contiguous with the old one and
4296 * adding this new cluster, we don't surpass the limit of
4297 * OCFS2_MAX_XATTR_TREE_LEAF_SIZE, cool. We will let it be
4298 * initialized and used like other buckets in the previous
4299 * cluster.
4300 * So add it as a contiguous one. The caller will handle
4301 * its init process.
4302 */
4303 v_start = prev_cpos + prev_clusters;
4304 *num_clusters = prev_clusters + num_bits;
4305 mlog(0, "Add contiguous %u clusters to previous extent rec.\n",
4306 num_bits);
4307 } else {
4308 ret = ocfs2_adjust_xattr_cross_cluster(inode,
4309 handle,
Joel Becker012ee912008-11-26 14:43:31 -08004310 first,
4311 target,
Tao Ma01225592008-08-18 17:38:53 +08004312 block,
Tao Ma01225592008-08-18 17:38:53 +08004313 prev_clusters,
4314 &v_start,
4315 extend);
4316 if (ret) {
4317 mlog_errno(ret);
4318 goto leave;
4319 }
4320 }
4321
4322 mlog(0, "Insert %u clusters at block %llu for xattr at %u\n",
Mark Fashehde29c082008-10-29 14:45:30 -07004323 num_bits, (unsigned long long)block, v_start);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004324 ret = ocfs2_insert_extent(osb, handle, inode, &et, v_start, block,
Tao Ma78f30c32008-11-12 08:27:00 +08004325 num_bits, 0, ctxt->meta_ac);
Tao Ma01225592008-08-18 17:38:53 +08004326 if (ret < 0) {
4327 mlog_errno(ret);
4328 goto leave;
4329 }
4330
4331 ret = ocfs2_journal_dirty(handle, root_bh);
Tao Ma85db90e2008-11-12 08:27:01 +08004332 if (ret < 0)
Tao Ma01225592008-08-18 17:38:53 +08004333 mlog_errno(ret);
Tao Ma01225592008-08-18 17:38:53 +08004334
4335leave:
Tao Ma01225592008-08-18 17:38:53 +08004336 return ret;
4337}
4338
4339/*
Joel Becker92de1092008-11-25 17:06:40 -08004340 * We are given an extent. 'first' is the bucket at the very front of
4341 * the extent. The extent has space for an additional bucket past
4342 * bucket_xh(first)->xh_num_buckets. 'target_blkno' is the block number
4343 * of the target bucket. We wish to shift every bucket past the target
4344 * down one, filling in that additional space. When we get back to the
4345 * target, we split the target between itself and the now-empty bucket
4346 * at target+1 (aka, target_blkno + blks_per_bucket).
Tao Ma01225592008-08-18 17:38:53 +08004347 */
4348static int ocfs2_extend_xattr_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004349 handle_t *handle,
Joel Becker92de1092008-11-25 17:06:40 -08004350 struct ocfs2_xattr_bucket *first,
4351 u64 target_blk,
Tao Ma01225592008-08-18 17:38:53 +08004352 u32 num_clusters)
4353{
4354 int ret, credits;
4355 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4356 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Joel Becker92de1092008-11-25 17:06:40 -08004357 u64 end_blk;
4358 u16 new_bucket = le16_to_cpu(bucket_xh(first)->xh_num_buckets);
Tao Ma01225592008-08-18 17:38:53 +08004359
4360 mlog(0, "extend xattr bucket in %llu, xattr extend rec starting "
Joel Becker92de1092008-11-25 17:06:40 -08004361 "from %llu, len = %u\n", (unsigned long long)target_blk,
4362 (unsigned long long)bucket_blkno(first), num_clusters);
Tao Ma01225592008-08-18 17:38:53 +08004363
Joel Becker92de1092008-11-25 17:06:40 -08004364 /* The extent must have room for an additional bucket */
4365 BUG_ON(new_bucket >=
4366 (num_clusters * ocfs2_xattr_buckets_per_cluster(osb)));
Tao Ma01225592008-08-18 17:38:53 +08004367
Joel Becker92de1092008-11-25 17:06:40 -08004368 /* end_blk points to the last existing bucket */
4369 end_blk = bucket_blkno(first) + ((new_bucket - 1) * blk_per_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004370
4371 /*
Joel Becker92de1092008-11-25 17:06:40 -08004372 * end_blk is the start of the last existing bucket.
4373 * Thus, (end_blk - target_blk) covers the target bucket and
4374 * every bucket after it up to, but not including, the last
4375 * existing bucket. Then we add the last existing bucket, the
4376 * new bucket, and the first bucket (3 * blk_per_bucket).
Tao Ma01225592008-08-18 17:38:53 +08004377 */
Joel Becker92de1092008-11-25 17:06:40 -08004378 credits = (end_blk - target_blk) + (3 * blk_per_bucket) +
Tao Ma85db90e2008-11-12 08:27:01 +08004379 handle->h_buffer_credits;
4380 ret = ocfs2_extend_trans(handle, credits);
4381 if (ret) {
Tao Ma01225592008-08-18 17:38:53 +08004382 mlog_errno(ret);
4383 goto out;
4384 }
4385
Joel Becker92de1092008-11-25 17:06:40 -08004386 ret = ocfs2_xattr_bucket_journal_access(handle, first,
4387 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004388 if (ret) {
4389 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08004390 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004391 }
4392
Joel Becker92de1092008-11-25 17:06:40 -08004393 while (end_blk != target_blk) {
Tao Ma01225592008-08-18 17:38:53 +08004394 ret = ocfs2_cp_xattr_bucket(inode, handle, end_blk,
4395 end_blk + blk_per_bucket, 0);
4396 if (ret)
Tao Ma85db90e2008-11-12 08:27:01 +08004397 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004398 end_blk -= blk_per_bucket;
4399 }
4400
Joel Becker92de1092008-11-25 17:06:40 -08004401 /* Move half of the xattr in target_blkno to the next bucket. */
4402 ret = ocfs2_divide_xattr_bucket(inode, handle, target_blk,
4403 target_blk + blk_per_bucket, NULL, 0);
Tao Ma01225592008-08-18 17:38:53 +08004404
Joel Becker92de1092008-11-25 17:06:40 -08004405 le16_add_cpu(&bucket_xh(first)->xh_num_buckets, 1);
4406 ocfs2_xattr_bucket_journal_dirty(handle, first);
Tao Ma01225592008-08-18 17:38:53 +08004407
Tao Ma01225592008-08-18 17:38:53 +08004408out:
4409 return ret;
4410}
4411
4412/*
Joel Becker91f20332008-11-26 15:25:41 -08004413 * Add new xattr bucket in an extent record and adjust the buckets
4414 * accordingly. xb_bh is the ocfs2_xattr_block, and target is the
4415 * bucket we want to insert into.
Tao Ma01225592008-08-18 17:38:53 +08004416 *
Joel Becker91f20332008-11-26 15:25:41 -08004417 * In the easy case, we will move all the buckets after target down by
4418 * one. Half of target's xattrs will be moved to the next bucket.
4419 *
4420 * If current cluster is full, we'll allocate a new one. This may not
4421 * be contiguous. The underlying calls will make sure that there is
4422 * space for the insert, shifting buckets around if necessary.
4423 * 'target' may be moved by those calls.
Tao Ma01225592008-08-18 17:38:53 +08004424 */
4425static int ocfs2_add_new_xattr_bucket(struct inode *inode,
4426 struct buffer_head *xb_bh,
Joel Becker91f20332008-11-26 15:25:41 -08004427 struct ocfs2_xattr_bucket *target,
Tao Ma78f30c32008-11-12 08:27:00 +08004428 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004429{
Tao Ma01225592008-08-18 17:38:53 +08004430 struct ocfs2_xattr_block *xb =
4431 (struct ocfs2_xattr_block *)xb_bh->b_data;
4432 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
4433 struct ocfs2_extent_list *el = &xb_root->xt_list;
Joel Becker91f20332008-11-26 15:25:41 -08004434 u32 name_hash =
4435 le32_to_cpu(bucket_xh(target)->xh_entries[0].xe_name_hash);
Joel Beckered29c0c2008-11-26 15:08:44 -08004436 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08004437 int ret, num_buckets, extend = 1;
4438 u64 p_blkno;
4439 u32 e_cpos, num_clusters;
Joel Becker92de1092008-11-25 17:06:40 -08004440 /* The bucket at the front of the extent */
Joel Becker91f20332008-11-26 15:25:41 -08004441 struct ocfs2_xattr_bucket *first;
Tao Ma01225592008-08-18 17:38:53 +08004442
Joel Becker91f20332008-11-26 15:25:41 -08004443 mlog(0, "Add new xattr bucket starting from %llu\n",
4444 (unsigned long long)bucket_blkno(target));
Tao Ma01225592008-08-18 17:38:53 +08004445
Joel Beckered29c0c2008-11-26 15:08:44 -08004446 /* The first bucket of the original extent */
Joel Becker92de1092008-11-25 17:06:40 -08004447 first = ocfs2_xattr_bucket_new(inode);
Joel Becker91f20332008-11-26 15:25:41 -08004448 if (!first) {
Joel Becker92de1092008-11-25 17:06:40 -08004449 ret = -ENOMEM;
4450 mlog_errno(ret);
4451 goto out;
4452 }
4453
Tao Ma01225592008-08-18 17:38:53 +08004454 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &e_cpos,
4455 &num_clusters, el);
4456 if (ret) {
4457 mlog_errno(ret);
4458 goto out;
4459 }
4460
Joel Beckered29c0c2008-11-26 15:08:44 -08004461 ret = ocfs2_read_xattr_bucket(first, p_blkno);
4462 if (ret) {
4463 mlog_errno(ret);
4464 goto out;
4465 }
4466
Tao Ma01225592008-08-18 17:38:53 +08004467 num_buckets = ocfs2_xattr_buckets_per_cluster(osb) * num_clusters;
Joel Beckered29c0c2008-11-26 15:08:44 -08004468 if (num_buckets == le16_to_cpu(bucket_xh(first)->xh_num_buckets)) {
4469 /*
4470 * This can move first+target if the target bucket moves
4471 * to the new extent.
4472 */
Tao Ma01225592008-08-18 17:38:53 +08004473 ret = ocfs2_add_new_xattr_cluster(inode,
4474 xb_bh,
Joel Beckered29c0c2008-11-26 15:08:44 -08004475 first,
4476 target,
Tao Ma01225592008-08-18 17:38:53 +08004477 &num_clusters,
4478 e_cpos,
Tao Ma78f30c32008-11-12 08:27:00 +08004479 &extend,
4480 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004481 if (ret) {
4482 mlog_errno(ret);
4483 goto out;
4484 }
4485 }
4486
Joel Becker92de1092008-11-25 17:06:40 -08004487 if (extend) {
Tao Ma01225592008-08-18 17:38:53 +08004488 ret = ocfs2_extend_xattr_bucket(inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004489 ctxt->handle,
Joel Beckered29c0c2008-11-26 15:08:44 -08004490 first,
4491 bucket_blkno(target),
Tao Ma01225592008-08-18 17:38:53 +08004492 num_clusters);
Joel Becker92de1092008-11-25 17:06:40 -08004493 if (ret)
4494 mlog_errno(ret);
4495 }
4496
Tao Ma01225592008-08-18 17:38:53 +08004497out:
Joel Becker92de1092008-11-25 17:06:40 -08004498 ocfs2_xattr_bucket_free(first);
Joel Beckered29c0c2008-11-26 15:08:44 -08004499
Tao Ma01225592008-08-18 17:38:53 +08004500 return ret;
4501}
4502
4503static inline char *ocfs2_xattr_bucket_get_val(struct inode *inode,
4504 struct ocfs2_xattr_bucket *bucket,
4505 int offs)
4506{
4507 int block_off = offs >> inode->i_sb->s_blocksize_bits;
4508
4509 offs = offs % inode->i_sb->s_blocksize;
Joel Becker51def392008-10-24 16:57:21 -07004510 return bucket_block(bucket, block_off) + offs;
Tao Ma01225592008-08-18 17:38:53 +08004511}
4512
4513/*
4514 * Handle the normal xattr set, including replace, delete and new.
Tao Ma01225592008-08-18 17:38:53 +08004515 *
4516 * Note: "local" indicates the real data's locality. So we can't
4517 * just its bucket locality by its length.
4518 */
4519static void ocfs2_xattr_set_entry_normal(struct inode *inode,
4520 struct ocfs2_xattr_info *xi,
4521 struct ocfs2_xattr_search *xs,
4522 u32 name_hash,
Tao Ma5a095612008-09-19 22:17:41 +08004523 int local)
Tao Ma01225592008-08-18 17:38:53 +08004524{
4525 struct ocfs2_xattr_entry *last, *xe;
4526 int name_len = strlen(xi->name);
4527 struct ocfs2_xattr_header *xh = xs->header;
4528 u16 count = le16_to_cpu(xh->xh_count), start;
4529 size_t blocksize = inode->i_sb->s_blocksize;
4530 char *val;
4531 size_t offs, size, new_size;
4532
4533 last = &xh->xh_entries[count];
4534 if (!xs->not_found) {
4535 xe = xs->here;
4536 offs = le16_to_cpu(xe->xe_name_offset);
4537 if (ocfs2_xattr_is_local(xe))
4538 size = OCFS2_XATTR_SIZE(name_len) +
4539 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
4540 else
4541 size = OCFS2_XATTR_SIZE(name_len) +
4542 OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
4543
4544 /*
4545 * If the new value will be stored outside, xi->value has been
4546 * initalized as an empty ocfs2_xattr_value_root, and the same
4547 * goes with xi->value_len, so we can set new_size safely here.
4548 * See ocfs2_xattr_set_in_bucket.
4549 */
4550 new_size = OCFS2_XATTR_SIZE(name_len) +
4551 OCFS2_XATTR_SIZE(xi->value_len);
4552
4553 le16_add_cpu(&xh->xh_name_value_len, -size);
4554 if (xi->value) {
4555 if (new_size > size)
4556 goto set_new_name_value;
4557
4558 /* Now replace the old value with new one. */
4559 if (local)
4560 xe->xe_value_size = cpu_to_le64(xi->value_len);
4561 else
4562 xe->xe_value_size = 0;
4563
4564 val = ocfs2_xattr_bucket_get_val(inode,
Joel Beckerba937122008-10-24 19:13:20 -07004565 xs->bucket, offs);
Tao Ma01225592008-08-18 17:38:53 +08004566 memset(val + OCFS2_XATTR_SIZE(name_len), 0,
4567 size - OCFS2_XATTR_SIZE(name_len));
4568 if (OCFS2_XATTR_SIZE(xi->value_len) > 0)
4569 memcpy(val + OCFS2_XATTR_SIZE(name_len),
4570 xi->value, xi->value_len);
4571
4572 le16_add_cpu(&xh->xh_name_value_len, new_size);
4573 ocfs2_xattr_set_local(xe, local);
4574 return;
4575 } else {
Tao Ma5a095612008-09-19 22:17:41 +08004576 /*
4577 * Remove the old entry if there is more than one.
4578 * We don't remove the last entry so that we can
4579 * use it to indicate the hash value of the empty
4580 * bucket.
4581 */
Tao Ma01225592008-08-18 17:38:53 +08004582 last -= 1;
Tao Ma01225592008-08-18 17:38:53 +08004583 le16_add_cpu(&xh->xh_count, -1);
Tao Ma5a095612008-09-19 22:17:41 +08004584 if (xh->xh_count) {
4585 memmove(xe, xe + 1,
4586 (void *)last - (void *)xe);
4587 memset(last, 0,
4588 sizeof(struct ocfs2_xattr_entry));
4589 } else
4590 xh->xh_free_start =
4591 cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
4592
Tao Ma01225592008-08-18 17:38:53 +08004593 return;
4594 }
4595 } else {
4596 /* find a new entry for insert. */
4597 int low = 0, high = count - 1, tmp;
4598 struct ocfs2_xattr_entry *tmp_xe;
4599
Tao Ma5a095612008-09-19 22:17:41 +08004600 while (low <= high && count) {
Tao Ma01225592008-08-18 17:38:53 +08004601 tmp = (low + high) / 2;
4602 tmp_xe = &xh->xh_entries[tmp];
4603
4604 if (name_hash > le32_to_cpu(tmp_xe->xe_name_hash))
4605 low = tmp + 1;
4606 else if (name_hash <
4607 le32_to_cpu(tmp_xe->xe_name_hash))
4608 high = tmp - 1;
Tao Ma06b240d2008-09-19 22:16:34 +08004609 else {
4610 low = tmp;
Tao Ma01225592008-08-18 17:38:53 +08004611 break;
Tao Ma06b240d2008-09-19 22:16:34 +08004612 }
Tao Ma01225592008-08-18 17:38:53 +08004613 }
4614
4615 xe = &xh->xh_entries[low];
4616 if (low != count)
4617 memmove(xe + 1, xe, (void *)last - (void *)xe);
4618
4619 le16_add_cpu(&xh->xh_count, 1);
4620 memset(xe, 0, sizeof(struct ocfs2_xattr_entry));
4621 xe->xe_name_hash = cpu_to_le32(name_hash);
4622 xe->xe_name_len = name_len;
4623 ocfs2_xattr_set_type(xe, xi->name_index);
4624 }
4625
4626set_new_name_value:
4627 /* Insert the new name+value. */
4628 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(xi->value_len);
4629
4630 /*
4631 * We must make sure that the name/value pair
4632 * exists in the same block.
4633 */
4634 offs = le16_to_cpu(xh->xh_free_start);
4635 start = offs - size;
4636
4637 if (start >> inode->i_sb->s_blocksize_bits !=
4638 (offs - 1) >> inode->i_sb->s_blocksize_bits) {
4639 offs = offs - offs % blocksize;
4640 xh->xh_free_start = cpu_to_le16(offs);
4641 }
4642
Joel Beckerba937122008-10-24 19:13:20 -07004643 val = ocfs2_xattr_bucket_get_val(inode, xs->bucket, offs - size);
Tao Ma01225592008-08-18 17:38:53 +08004644 xe->xe_name_offset = cpu_to_le16(offs - size);
4645
4646 memset(val, 0, size);
4647 memcpy(val, xi->name, name_len);
4648 memcpy(val + OCFS2_XATTR_SIZE(name_len), xi->value, xi->value_len);
4649
4650 xe->xe_value_size = cpu_to_le64(xi->value_len);
4651 ocfs2_xattr_set_local(xe, local);
4652 xs->here = xe;
4653 le16_add_cpu(&xh->xh_free_start, -size);
4654 le16_add_cpu(&xh->xh_name_value_len, size);
4655
4656 return;
4657}
4658
Tao Ma01225592008-08-18 17:38:53 +08004659/*
4660 * Set the xattr entry in the specified bucket.
4661 * The bucket is indicated by xs->bucket and it should have the enough
4662 * space for the xattr insertion.
4663 */
4664static int ocfs2_xattr_set_entry_in_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004665 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004666 struct ocfs2_xattr_info *xi,
4667 struct ocfs2_xattr_search *xs,
4668 u32 name_hash,
Tao Ma5a095612008-09-19 22:17:41 +08004669 int local)
Tao Ma01225592008-08-18 17:38:53 +08004670{
Joel Becker1224be02008-10-24 18:47:33 -07004671 int ret;
Joel Becker02dbf382008-10-27 18:07:45 -07004672 u64 blkno;
Tao Ma01225592008-08-18 17:38:53 +08004673
Mark Fashehff1ec202008-08-19 10:54:29 -07004674 mlog(0, "Set xattr entry len = %lu index = %d in bucket %llu\n",
4675 (unsigned long)xi->value_len, xi->name_index,
Joel Beckerba937122008-10-24 19:13:20 -07004676 (unsigned long long)bucket_blkno(xs->bucket));
Tao Ma01225592008-08-18 17:38:53 +08004677
Joel Beckerba937122008-10-24 19:13:20 -07004678 if (!xs->bucket->bu_bhs[1]) {
Joel Becker02dbf382008-10-27 18:07:45 -07004679 blkno = bucket_blkno(xs->bucket);
4680 ocfs2_xattr_bucket_relse(xs->bucket);
4681 ret = ocfs2_read_xattr_bucket(xs->bucket, blkno);
Tao Ma01225592008-08-18 17:38:53 +08004682 if (ret) {
4683 mlog_errno(ret);
4684 goto out;
4685 }
4686 }
4687
Joel Beckerba937122008-10-24 19:13:20 -07004688 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
Joel Becker1224be02008-10-24 18:47:33 -07004689 OCFS2_JOURNAL_ACCESS_WRITE);
4690 if (ret < 0) {
4691 mlog_errno(ret);
4692 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004693 }
4694
Tao Ma5a095612008-09-19 22:17:41 +08004695 ocfs2_xattr_set_entry_normal(inode, xi, xs, name_hash, local);
Joel Beckerba937122008-10-24 19:13:20 -07004696 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004697
Tao Ma01225592008-08-18 17:38:53 +08004698out:
Tao Ma01225592008-08-18 17:38:53 +08004699 return ret;
4700}
4701
Tao Ma01225592008-08-18 17:38:53 +08004702/*
4703 * Truncate the specified xe_off entry in xattr bucket.
4704 * bucket is indicated by header_bh and len is the new length.
4705 * Both the ocfs2_xattr_value_root and the entry will be updated here.
4706 *
4707 * Copy the new updated xe and xe_value_root to new_xe and new_xv if needed.
4708 */
4709static int ocfs2_xattr_bucket_value_truncate(struct inode *inode,
Joel Becker548b0f22008-11-24 19:32:13 -08004710 struct ocfs2_xattr_bucket *bucket,
Tao Ma01225592008-08-18 17:38:53 +08004711 int xe_off,
Tao Ma78f30c32008-11-12 08:27:00 +08004712 int len,
4713 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004714{
4715 int ret, offset;
4716 u64 value_blk;
Tao Ma01225592008-08-18 17:38:53 +08004717 struct ocfs2_xattr_entry *xe;
Joel Becker548b0f22008-11-24 19:32:13 -08004718 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma01225592008-08-18 17:38:53 +08004719 size_t blocksize = inode->i_sb->s_blocksize;
Joel Beckerb3e5d372008-12-09 15:01:04 -08004720 struct ocfs2_xattr_value_buf vb = {
4721 .vb_access = ocfs2_journal_access,
4722 };
Tao Ma01225592008-08-18 17:38:53 +08004723
4724 xe = &xh->xh_entries[xe_off];
4725
4726 BUG_ON(!xe || ocfs2_xattr_is_local(xe));
4727
4728 offset = le16_to_cpu(xe->xe_name_offset) +
4729 OCFS2_XATTR_SIZE(xe->xe_name_len);
4730
4731 value_blk = offset / blocksize;
4732
4733 /* We don't allow ocfs2_xattr_value to be stored in different block. */
4734 BUG_ON(value_blk != (offset + OCFS2_XATTR_ROOT_SIZE - 1) / blocksize);
Tao Ma01225592008-08-18 17:38:53 +08004735
Joel Beckerb3e5d372008-12-09 15:01:04 -08004736 vb.vb_bh = bucket->bu_bhs[value_blk];
4737 BUG_ON(!vb.vb_bh);
Tao Ma01225592008-08-18 17:38:53 +08004738
Joel Beckerb3e5d372008-12-09 15:01:04 -08004739 vb.vb_xv = (struct ocfs2_xattr_value_root *)
4740 (vb.vb_bh->b_data + offset % blocksize);
Tao Ma01225592008-08-18 17:38:53 +08004741
Joel Becker548b0f22008-11-24 19:32:13 -08004742 /*
4743 * From here on out we have to dirty the bucket. The generic
4744 * value calls only modify one of the bucket's bhs, but we need
4745 * to send the bucket at once. So if they error, they *could* have
4746 * modified something. We have to assume they did, and dirty
4747 * the whole bucket. This leaves us in a consistent state.
4748 */
Tao Ma01225592008-08-18 17:38:53 +08004749 mlog(0, "truncate %u in xattr bucket %llu to %d bytes.\n",
Joel Becker548b0f22008-11-24 19:32:13 -08004750 xe_off, (unsigned long long)bucket_blkno(bucket), len);
Joel Beckerb3e5d372008-12-09 15:01:04 -08004751 ret = ocfs2_xattr_value_truncate(inode, &vb, len, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004752 if (ret) {
4753 mlog_errno(ret);
Tao Ma554e7f92009-01-08 08:21:43 +08004754 goto out;
4755 }
4756
4757 ret = ocfs2_xattr_bucket_journal_access(ctxt->handle, bucket,
4758 OCFS2_JOURNAL_ACCESS_WRITE);
4759 if (ret) {
4760 mlog_errno(ret);
4761 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004762 }
4763
Joel Becker548b0f22008-11-24 19:32:13 -08004764 xe->xe_value_size = cpu_to_le64(len);
4765
Joel Becker548b0f22008-11-24 19:32:13 -08004766 ocfs2_xattr_bucket_journal_dirty(ctxt->handle, bucket);
Tao Ma01225592008-08-18 17:38:53 +08004767
4768out:
Tao Ma01225592008-08-18 17:38:53 +08004769 return ret;
4770}
4771
4772static int ocfs2_xattr_bucket_value_truncate_xs(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +08004773 struct ocfs2_xattr_search *xs,
4774 int len,
4775 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004776{
4777 int ret, offset;
4778 struct ocfs2_xattr_entry *xe = xs->here;
4779 struct ocfs2_xattr_header *xh = (struct ocfs2_xattr_header *)xs->base;
4780
Joel Beckerba937122008-10-24 19:13:20 -07004781 BUG_ON(!xs->bucket->bu_bhs[0] || !xe || ocfs2_xattr_is_local(xe));
Tao Ma01225592008-08-18 17:38:53 +08004782
4783 offset = xe - xh->xh_entries;
Joel Becker548b0f22008-11-24 19:32:13 -08004784 ret = ocfs2_xattr_bucket_value_truncate(inode, xs->bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08004785 offset, len, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004786 if (ret)
4787 mlog_errno(ret);
4788
4789 return ret;
4790}
4791
4792static int ocfs2_xattr_bucket_set_value_outside(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004793 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004794 struct ocfs2_xattr_search *xs,
4795 char *val,
4796 int value_len)
4797{
Tao Ma712e53e2009-03-12 08:37:34 +08004798 int ret, offset, block_off;
Tao Ma01225592008-08-18 17:38:53 +08004799 struct ocfs2_xattr_value_root *xv;
4800 struct ocfs2_xattr_entry *xe = xs->here;
Tao Ma712e53e2009-03-12 08:37:34 +08004801 struct ocfs2_xattr_header *xh = bucket_xh(xs->bucket);
4802 void *base;
Tao Ma01225592008-08-18 17:38:53 +08004803
4804 BUG_ON(!xs->base || !xe || ocfs2_xattr_is_local(xe));
4805
Tao Ma712e53e2009-03-12 08:37:34 +08004806 ret = ocfs2_xattr_bucket_get_name_value(inode, xh,
4807 xe - xh->xh_entries,
4808 &block_off,
4809 &offset);
4810 if (ret) {
4811 mlog_errno(ret);
4812 goto out;
4813 }
Tao Ma01225592008-08-18 17:38:53 +08004814
Tao Ma712e53e2009-03-12 08:37:34 +08004815 base = bucket_block(xs->bucket, block_off);
4816 xv = (struct ocfs2_xattr_value_root *)(base + offset +
4817 OCFS2_XATTR_SIZE(xe->xe_name_len));
Tao Ma01225592008-08-18 17:38:53 +08004818
Tao Ma712e53e2009-03-12 08:37:34 +08004819 ret = __ocfs2_xattr_set_value_outside(inode, handle,
4820 xv, val, value_len);
4821 if (ret)
4822 mlog_errno(ret);
4823out:
4824 return ret;
Tao Ma01225592008-08-18 17:38:53 +08004825}
4826
Tao Ma01225592008-08-18 17:38:53 +08004827static int ocfs2_rm_xattr_cluster(struct inode *inode,
4828 struct buffer_head *root_bh,
4829 u64 blkno,
4830 u32 cpos,
4831 u32 len)
4832{
4833 int ret;
4834 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4835 struct inode *tl_inode = osb->osb_tl_inode;
4836 handle_t *handle;
4837 struct ocfs2_xattr_block *xb =
4838 (struct ocfs2_xattr_block *)root_bh->b_data;
Tao Ma01225592008-08-18 17:38:53 +08004839 struct ocfs2_alloc_context *meta_ac = NULL;
4840 struct ocfs2_cached_dealloc_ctxt dealloc;
Joel Beckerf99b9b72008-08-20 19:36:33 -07004841 struct ocfs2_extent_tree et;
4842
Joel Becker8d6220d2008-08-22 12:46:09 -07004843 ocfs2_init_xattr_tree_extent_tree(&et, inode, root_bh);
Tao Ma01225592008-08-18 17:38:53 +08004844
4845 ocfs2_init_dealloc_ctxt(&dealloc);
4846
4847 mlog(0, "rm xattr extent rec at %u len = %u, start from %llu\n",
4848 cpos, len, (unsigned long long)blkno);
4849
4850 ocfs2_remove_xattr_clusters_from_cache(inode, blkno, len);
4851
Joel Beckerf99b9b72008-08-20 19:36:33 -07004852 ret = ocfs2_lock_allocators(inode, &et, 0, 1, NULL, &meta_ac);
Tao Ma01225592008-08-18 17:38:53 +08004853 if (ret) {
4854 mlog_errno(ret);
4855 return ret;
4856 }
4857
4858 mutex_lock(&tl_inode->i_mutex);
4859
4860 if (ocfs2_truncate_log_needs_flush(osb)) {
4861 ret = __ocfs2_flush_truncate_log(osb);
4862 if (ret < 0) {
4863 mlog_errno(ret);
4864 goto out;
4865 }
4866 }
4867
Jan Karaa90714c2008-10-09 19:38:40 +02004868 handle = ocfs2_start_trans(osb, ocfs2_remove_extent_credits(osb->sb));
Tao Mad3264792008-10-24 07:57:28 +08004869 if (IS_ERR(handle)) {
Tao Ma01225592008-08-18 17:38:53 +08004870 ret = -ENOMEM;
4871 mlog_errno(ret);
4872 goto out;
4873 }
4874
Joel Becker84008972008-12-09 16:11:49 -08004875 ret = ocfs2_journal_access_xb(handle, inode, root_bh,
4876 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004877 if (ret) {
4878 mlog_errno(ret);
4879 goto out_commit;
4880 }
4881
Joel Beckerf99b9b72008-08-20 19:36:33 -07004882 ret = ocfs2_remove_extent(inode, &et, cpos, len, handle, meta_ac,
4883 &dealloc);
Tao Ma01225592008-08-18 17:38:53 +08004884 if (ret) {
4885 mlog_errno(ret);
4886 goto out_commit;
4887 }
4888
4889 le32_add_cpu(&xb->xb_attrs.xb_root.xt_clusters, -len);
4890
4891 ret = ocfs2_journal_dirty(handle, root_bh);
4892 if (ret) {
4893 mlog_errno(ret);
4894 goto out_commit;
4895 }
4896
4897 ret = ocfs2_truncate_log_append(osb, handle, blkno, len);
4898 if (ret)
4899 mlog_errno(ret);
4900
4901out_commit:
4902 ocfs2_commit_trans(osb, handle);
4903out:
4904 ocfs2_schedule_truncate_log_flush(osb, 1);
4905
4906 mutex_unlock(&tl_inode->i_mutex);
4907
4908 if (meta_ac)
4909 ocfs2_free_alloc_context(meta_ac);
4910
4911 ocfs2_run_deallocs(osb, &dealloc);
4912
4913 return ret;
4914}
4915
Tao Ma01225592008-08-18 17:38:53 +08004916static void ocfs2_xattr_bucket_remove_xs(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004917 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004918 struct ocfs2_xattr_search *xs)
4919{
Joel Beckerba937122008-10-24 19:13:20 -07004920 struct ocfs2_xattr_header *xh = bucket_xh(xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004921 struct ocfs2_xattr_entry *last = &xh->xh_entries[
4922 le16_to_cpu(xh->xh_count) - 1];
4923 int ret = 0;
4924
Joel Beckerba937122008-10-24 19:13:20 -07004925 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
Joel Becker1224be02008-10-24 18:47:33 -07004926 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004927 if (ret) {
4928 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08004929 return;
Tao Ma01225592008-08-18 17:38:53 +08004930 }
4931
4932 /* Remove the old entry. */
4933 memmove(xs->here, xs->here + 1,
4934 (void *)last - (void *)xs->here);
4935 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
4936 le16_add_cpu(&xh->xh_count, -1);
4937
Joel Beckerba937122008-10-24 19:13:20 -07004938 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004939}
4940
4941/*
4942 * Set the xattr name/value in the bucket specified in xs.
4943 *
4944 * As the new value in xi may be stored in the bucket or in an outside cluster,
4945 * we divide the whole process into 3 steps:
4946 * 1. insert name/value in the bucket(ocfs2_xattr_set_entry_in_bucket)
4947 * 2. truncate of the outside cluster(ocfs2_xattr_bucket_value_truncate_xs)
4948 * 3. Set the value to the outside cluster(ocfs2_xattr_bucket_set_value_outside)
4949 * 4. If the clusters for the new outside value can't be allocated, we need
4950 * to free the xattr we allocated in set.
4951 */
4952static int ocfs2_xattr_set_in_bucket(struct inode *inode,
4953 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08004954 struct ocfs2_xattr_search *xs,
4955 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004956{
Tao Ma5a095612008-09-19 22:17:41 +08004957 int ret, local = 1;
Tao Ma01225592008-08-18 17:38:53 +08004958 size_t value_len;
4959 char *val = (char *)xi->value;
4960 struct ocfs2_xattr_entry *xe = xs->here;
Tao Ma2057e5c2008-10-09 23:06:13 +08004961 u32 name_hash = ocfs2_xattr_name_hash(inode, xi->name,
4962 strlen(xi->name));
Tao Ma01225592008-08-18 17:38:53 +08004963
4964 if (!xs->not_found && !ocfs2_xattr_is_local(xe)) {
4965 /*
4966 * We need to truncate the xattr storage first.
4967 *
4968 * If both the old and new value are stored to
4969 * outside block, we only need to truncate
4970 * the storage and then set the value outside.
4971 *
4972 * If the new value should be stored within block,
4973 * we should free all the outside block first and
4974 * the modification to the xattr block will be done
4975 * by following steps.
4976 */
4977 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
4978 value_len = xi->value_len;
4979 else
4980 value_len = 0;
4981
4982 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
Tao Ma78f30c32008-11-12 08:27:00 +08004983 value_len,
4984 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004985 if (ret)
4986 goto out;
4987
4988 if (value_len)
4989 goto set_value_outside;
4990 }
4991
4992 value_len = xi->value_len;
4993 /* So we have to handle the inside block change now. */
4994 if (value_len > OCFS2_XATTR_INLINE_SIZE) {
4995 /*
4996 * If the new value will be stored outside of block,
4997 * initalize a new empty value root and insert it first.
4998 */
4999 local = 0;
5000 xi->value = &def_xv;
5001 xi->value_len = OCFS2_XATTR_ROOT_SIZE;
5002 }
5003
Tao Ma85db90e2008-11-12 08:27:01 +08005004 ret = ocfs2_xattr_set_entry_in_bucket(inode, ctxt->handle, xi, xs,
5005 name_hash, local);
Tao Ma01225592008-08-18 17:38:53 +08005006 if (ret) {
5007 mlog_errno(ret);
5008 goto out;
5009 }
5010
Tao Ma5a095612008-09-19 22:17:41 +08005011 if (value_len <= OCFS2_XATTR_INLINE_SIZE)
5012 goto out;
Tao Ma01225592008-08-18 17:38:53 +08005013
Tao Ma5a095612008-09-19 22:17:41 +08005014 /* allocate the space now for the outside block storage. */
5015 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
Tao Ma78f30c32008-11-12 08:27:00 +08005016 value_len, ctxt);
Tao Ma5a095612008-09-19 22:17:41 +08005017 if (ret) {
5018 mlog_errno(ret);
5019
5020 if (xs->not_found) {
5021 /*
5022 * We can't allocate enough clusters for outside
5023 * storage and we have allocated xattr already,
5024 * so need to remove it.
5025 */
Tao Ma85db90e2008-11-12 08:27:01 +08005026 ocfs2_xattr_bucket_remove_xs(inode, ctxt->handle, xs);
Tao Ma01225592008-08-18 17:38:53 +08005027 }
Tao Ma01225592008-08-18 17:38:53 +08005028 goto out;
5029 }
5030
5031set_value_outside:
Tao Ma85db90e2008-11-12 08:27:01 +08005032 ret = ocfs2_xattr_bucket_set_value_outside(inode, ctxt->handle,
5033 xs, val, value_len);
Tao Ma01225592008-08-18 17:38:53 +08005034out:
5035 return ret;
5036}
5037
Tao Ma80bcaf32008-10-27 06:06:24 +08005038/*
5039 * check whether the xattr bucket is filled up with the same hash value.
5040 * If we want to insert the xattr with the same hash, return -ENOSPC.
5041 * If we want to insert a xattr with different hash value, go ahead
5042 * and ocfs2_divide_xattr_bucket will handle this.
5043 */
Tao Ma01225592008-08-18 17:38:53 +08005044static int ocfs2_check_xattr_bucket_collision(struct inode *inode,
Tao Ma80bcaf32008-10-27 06:06:24 +08005045 struct ocfs2_xattr_bucket *bucket,
5046 const char *name)
Tao Ma01225592008-08-18 17:38:53 +08005047{
Joel Becker3e632942008-10-24 17:04:49 -07005048 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08005049 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
5050
5051 if (name_hash != le32_to_cpu(xh->xh_entries[0].xe_name_hash))
5052 return 0;
Tao Ma01225592008-08-18 17:38:53 +08005053
5054 if (xh->xh_entries[le16_to_cpu(xh->xh_count) - 1].xe_name_hash ==
5055 xh->xh_entries[0].xe_name_hash) {
5056 mlog(ML_ERROR, "Too much hash collision in xattr bucket %llu, "
5057 "hash = %u\n",
Joel Becker9c7759a2008-10-24 16:21:03 -07005058 (unsigned long long)bucket_blkno(bucket),
Tao Ma01225592008-08-18 17:38:53 +08005059 le32_to_cpu(xh->xh_entries[0].xe_name_hash));
5060 return -ENOSPC;
5061 }
5062
5063 return 0;
5064}
5065
5066static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
5067 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08005068 struct ocfs2_xattr_search *xs,
5069 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08005070{
5071 struct ocfs2_xattr_header *xh;
5072 struct ocfs2_xattr_entry *xe;
5073 u16 count, header_size, xh_free_start;
Joel Becker6dde41d2008-10-24 17:16:48 -07005074 int free, max_free, need, old;
Tao Ma01225592008-08-18 17:38:53 +08005075 size_t value_size = 0, name_len = strlen(xi->name);
5076 size_t blocksize = inode->i_sb->s_blocksize;
5077 int ret, allocation = 0;
Tao Ma01225592008-08-18 17:38:53 +08005078
5079 mlog_entry("Set xattr %s in xattr index block\n", xi->name);
5080
5081try_again:
5082 xh = xs->header;
5083 count = le16_to_cpu(xh->xh_count);
5084 xh_free_start = le16_to_cpu(xh->xh_free_start);
5085 header_size = sizeof(struct ocfs2_xattr_header) +
5086 count * sizeof(struct ocfs2_xattr_entry);
Tiger Yang4442f512009-02-20 11:11:50 +08005087 max_free = OCFS2_XATTR_BUCKET_SIZE - header_size -
5088 le16_to_cpu(xh->xh_name_value_len) - OCFS2_XATTR_HEADER_GAP;
Tao Ma01225592008-08-18 17:38:53 +08005089
5090 mlog_bug_on_msg(header_size > blocksize, "bucket %llu has header size "
5091 "of %u which exceed block size\n",
Joel Beckerba937122008-10-24 19:13:20 -07005092 (unsigned long long)bucket_blkno(xs->bucket),
Tao Ma01225592008-08-18 17:38:53 +08005093 header_size);
5094
5095 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE)
5096 value_size = OCFS2_XATTR_ROOT_SIZE;
5097 else if (xi->value)
5098 value_size = OCFS2_XATTR_SIZE(xi->value_len);
5099
5100 if (xs->not_found)
5101 need = sizeof(struct ocfs2_xattr_entry) +
5102 OCFS2_XATTR_SIZE(name_len) + value_size;
5103 else {
5104 need = value_size + OCFS2_XATTR_SIZE(name_len);
5105
5106 /*
5107 * We only replace the old value if the new length is smaller
5108 * than the old one. Otherwise we will allocate new space in the
5109 * bucket to store it.
5110 */
5111 xe = xs->here;
5112 if (ocfs2_xattr_is_local(xe))
5113 old = OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
5114 else
5115 old = OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
5116
5117 if (old >= value_size)
5118 need = 0;
5119 }
5120
Tiger Yang4442f512009-02-20 11:11:50 +08005121 free = xh_free_start - header_size - OCFS2_XATTR_HEADER_GAP;
Tao Ma01225592008-08-18 17:38:53 +08005122 /*
5123 * We need to make sure the new name/value pair
5124 * can exist in the same block.
5125 */
5126 if (xh_free_start % blocksize < need)
5127 free -= xh_free_start % blocksize;
5128
5129 mlog(0, "xs->not_found = %d, in xattr bucket %llu: free = %d, "
5130 "need = %d, max_free = %d, xh_free_start = %u, xh_name_value_len ="
5131 " %u\n", xs->not_found,
Joel Beckerba937122008-10-24 19:13:20 -07005132 (unsigned long long)bucket_blkno(xs->bucket),
Tao Ma01225592008-08-18 17:38:53 +08005133 free, need, max_free, le16_to_cpu(xh->xh_free_start),
5134 le16_to_cpu(xh->xh_name_value_len));
5135
Tao Ma976331d2008-11-12 08:26:57 +08005136 if (free < need ||
5137 (xs->not_found &&
5138 count == ocfs2_xattr_max_xe_in_bucket(inode->i_sb))) {
Tao Ma01225592008-08-18 17:38:53 +08005139 if (need <= max_free &&
5140 count < ocfs2_xattr_max_xe_in_bucket(inode->i_sb)) {
5141 /*
5142 * We can create the space by defragment. Since only the
5143 * name/value will be moved, the xe shouldn't be changed
5144 * in xs.
5145 */
Tao Ma85db90e2008-11-12 08:27:01 +08005146 ret = ocfs2_defrag_xattr_bucket(inode, ctxt->handle,
5147 xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08005148 if (ret) {
5149 mlog_errno(ret);
5150 goto out;
5151 }
5152
5153 xh_free_start = le16_to_cpu(xh->xh_free_start);
Tiger Yang4442f512009-02-20 11:11:50 +08005154 free = xh_free_start - header_size
5155 - OCFS2_XATTR_HEADER_GAP;
Tao Ma01225592008-08-18 17:38:53 +08005156 if (xh_free_start % blocksize < need)
5157 free -= xh_free_start % blocksize;
5158
5159 if (free >= need)
5160 goto xattr_set;
5161
5162 mlog(0, "Can't get enough space for xattr insert by "
5163 "defragment. Need %u bytes, but we have %d, so "
5164 "allocate new bucket for it.\n", need, free);
5165 }
5166
5167 /*
5168 * We have to add new buckets or clusters and one
5169 * allocation should leave us enough space for insert.
5170 */
5171 BUG_ON(allocation);
5172
5173 /*
5174 * We do not allow for overlapping ranges between buckets. And
5175 * the maximum number of collisions we will allow for then is
5176 * one bucket's worth, so check it here whether we need to
5177 * add a new bucket for the insert.
5178 */
Tao Ma80bcaf32008-10-27 06:06:24 +08005179 ret = ocfs2_check_xattr_bucket_collision(inode,
Joel Beckerba937122008-10-24 19:13:20 -07005180 xs->bucket,
Tao Ma80bcaf32008-10-27 06:06:24 +08005181 xi->name);
Tao Ma01225592008-08-18 17:38:53 +08005182 if (ret) {
5183 mlog_errno(ret);
5184 goto out;
5185 }
5186
5187 ret = ocfs2_add_new_xattr_bucket(inode,
5188 xs->xattr_bh,
Joel Becker91f20332008-11-26 15:25:41 -08005189 xs->bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08005190 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08005191 if (ret) {
5192 mlog_errno(ret);
5193 goto out;
5194 }
5195
Joel Becker91f20332008-11-26 15:25:41 -08005196 /*
5197 * ocfs2_add_new_xattr_bucket() will have updated
5198 * xs->bucket if it moved, but it will not have updated
5199 * any of the other search fields. Thus, we drop it and
5200 * re-search. Everything should be cached, so it'll be
5201 * quick.
5202 */
Joel Beckerba937122008-10-24 19:13:20 -07005203 ocfs2_xattr_bucket_relse(xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08005204 ret = ocfs2_xattr_index_block_find(inode, xs->xattr_bh,
5205 xi->name_index,
5206 xi->name, xs);
5207 if (ret && ret != -ENODATA)
5208 goto out;
5209 xs->not_found = ret;
5210 allocation = 1;
5211 goto try_again;
5212 }
5213
5214xattr_set:
Tao Ma78f30c32008-11-12 08:27:00 +08005215 ret = ocfs2_xattr_set_in_bucket(inode, xi, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08005216out:
5217 mlog_exit(ret);
5218 return ret;
5219}
Tao Maa3944252008-08-18 17:38:54 +08005220
5221static int ocfs2_delete_xattr_in_bucket(struct inode *inode,
5222 struct ocfs2_xattr_bucket *bucket,
5223 void *para)
5224{
5225 int ret = 0;
Joel Becker3e632942008-10-24 17:04:49 -07005226 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Maa3944252008-08-18 17:38:54 +08005227 u16 i;
5228 struct ocfs2_xattr_entry *xe;
Tao Ma78f30c32008-11-12 08:27:00 +08005229 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5230 struct ocfs2_xattr_set_ctxt ctxt = {NULL, NULL,};
Joel Becker548b0f22008-11-24 19:32:13 -08005231 int credits = ocfs2_remove_extent_credits(osb->sb) +
5232 ocfs2_blocks_per_xattr_bucket(inode->i_sb);
5233
Tao Ma78f30c32008-11-12 08:27:00 +08005234
5235 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
Tao Maa3944252008-08-18 17:38:54 +08005236
5237 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
5238 xe = &xh->xh_entries[i];
5239 if (ocfs2_xattr_is_local(xe))
5240 continue;
5241
Tao Ma88c3b062008-12-11 08:54:11 +08005242 ctxt.handle = ocfs2_start_trans(osb, credits);
5243 if (IS_ERR(ctxt.handle)) {
5244 ret = PTR_ERR(ctxt.handle);
5245 mlog_errno(ret);
5246 break;
5247 }
5248
Joel Becker548b0f22008-11-24 19:32:13 -08005249 ret = ocfs2_xattr_bucket_value_truncate(inode, bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08005250 i, 0, &ctxt);
Tao Ma88c3b062008-12-11 08:54:11 +08005251
5252 ocfs2_commit_trans(osb, ctxt.handle);
Tao Maa3944252008-08-18 17:38:54 +08005253 if (ret) {
5254 mlog_errno(ret);
5255 break;
5256 }
5257 }
5258
Tao Ma78f30c32008-11-12 08:27:00 +08005259 ocfs2_schedule_truncate_log_flush(osb, 1);
5260 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tao Maa3944252008-08-18 17:38:54 +08005261 return ret;
5262}
5263
5264static int ocfs2_delete_xattr_index_block(struct inode *inode,
5265 struct buffer_head *xb_bh)
5266{
5267 struct ocfs2_xattr_block *xb =
5268 (struct ocfs2_xattr_block *)xb_bh->b_data;
5269 struct ocfs2_extent_list *el = &xb->xb_attrs.xb_root.xt_list;
5270 int ret = 0;
5271 u32 name_hash = UINT_MAX, e_cpos, num_clusters;
5272 u64 p_blkno;
5273
5274 if (le16_to_cpu(el->l_next_free_rec) == 0)
5275 return 0;
5276
5277 while (name_hash > 0) {
5278 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
5279 &e_cpos, &num_clusters, el);
5280 if (ret) {
5281 mlog_errno(ret);
5282 goto out;
5283 }
5284
5285 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
5286 ocfs2_delete_xattr_in_bucket,
5287 NULL);
5288 if (ret) {
5289 mlog_errno(ret);
5290 goto out;
5291 }
5292
5293 ret = ocfs2_rm_xattr_cluster(inode, xb_bh,
5294 p_blkno, e_cpos, num_clusters);
5295 if (ret) {
5296 mlog_errno(ret);
5297 break;
5298 }
5299
5300 if (e_cpos == 0)
5301 break;
5302
5303 name_hash = e_cpos - 1;
5304 }
5305
5306out:
5307 return ret;
5308}
Mark Fasheh99219ae2008-10-07 14:52:59 -07005309
5310/*
Tiger Yang923f7f32008-11-14 11:16:27 +08005311 * 'security' attributes support
5312 */
5313static size_t ocfs2_xattr_security_list(struct inode *inode, char *list,
5314 size_t list_size, const char *name,
5315 size_t name_len)
5316{
5317 const size_t prefix_len = XATTR_SECURITY_PREFIX_LEN;
5318 const size_t total_len = prefix_len + name_len + 1;
5319
5320 if (list && total_len <= list_size) {
5321 memcpy(list, XATTR_SECURITY_PREFIX, prefix_len);
5322 memcpy(list + prefix_len, name, name_len);
5323 list[prefix_len + name_len] = '\0';
5324 }
5325 return total_len;
5326}
5327
5328static int ocfs2_xattr_security_get(struct inode *inode, const char *name,
5329 void *buffer, size_t size)
5330{
5331 if (strcmp(name, "") == 0)
5332 return -EINVAL;
5333 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_SECURITY, name,
5334 buffer, size);
5335}
5336
5337static int ocfs2_xattr_security_set(struct inode *inode, const char *name,
5338 const void *value, size_t size, int flags)
5339{
5340 if (strcmp(name, "") == 0)
5341 return -EINVAL;
5342
5343 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_SECURITY, name, value,
5344 size, flags);
5345}
5346
Tiger Yang534eadd2008-11-14 11:16:41 +08005347int ocfs2_init_security_get(struct inode *inode,
5348 struct inode *dir,
5349 struct ocfs2_security_xattr_info *si)
5350{
Tiger Yang38d59ef2008-12-17 10:22:56 +08005351 /* check whether ocfs2 support feature xattr */
5352 if (!ocfs2_supports_xattr(OCFS2_SB(dir->i_sb)))
5353 return -EOPNOTSUPP;
Tiger Yang534eadd2008-11-14 11:16:41 +08005354 return security_inode_init_security(inode, dir, &si->name, &si->value,
5355 &si->value_len);
5356}
5357
5358int ocfs2_init_security_set(handle_t *handle,
5359 struct inode *inode,
5360 struct buffer_head *di_bh,
5361 struct ocfs2_security_xattr_info *si,
5362 struct ocfs2_alloc_context *xattr_ac,
5363 struct ocfs2_alloc_context *data_ac)
5364{
5365 return ocfs2_xattr_set_handle(handle, inode, di_bh,
5366 OCFS2_XATTR_INDEX_SECURITY,
5367 si->name, si->value, si->value_len, 0,
5368 xattr_ac, data_ac);
5369}
5370
Tiger Yang923f7f32008-11-14 11:16:27 +08005371struct xattr_handler ocfs2_xattr_security_handler = {
5372 .prefix = XATTR_SECURITY_PREFIX,
5373 .list = ocfs2_xattr_security_list,
5374 .get = ocfs2_xattr_security_get,
5375 .set = ocfs2_xattr_security_set,
5376};
5377
5378/*
Mark Fasheh99219ae2008-10-07 14:52:59 -07005379 * 'trusted' attributes support
5380 */
Mark Fasheh99219ae2008-10-07 14:52:59 -07005381static size_t ocfs2_xattr_trusted_list(struct inode *inode, char *list,
5382 size_t list_size, const char *name,
5383 size_t name_len)
5384{
Tiger Yangceb1eba2008-10-23 16:34:13 +08005385 const size_t prefix_len = XATTR_TRUSTED_PREFIX_LEN;
Mark Fasheh99219ae2008-10-07 14:52:59 -07005386 const size_t total_len = prefix_len + name_len + 1;
5387
5388 if (list && total_len <= list_size) {
5389 memcpy(list, XATTR_TRUSTED_PREFIX, prefix_len);
5390 memcpy(list + prefix_len, name, name_len);
5391 list[prefix_len + name_len] = '\0';
5392 }
5393 return total_len;
5394}
5395
5396static int ocfs2_xattr_trusted_get(struct inode *inode, const char *name,
5397 void *buffer, size_t size)
5398{
5399 if (strcmp(name, "") == 0)
5400 return -EINVAL;
5401 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_TRUSTED, name,
5402 buffer, size);
5403}
5404
5405static int ocfs2_xattr_trusted_set(struct inode *inode, const char *name,
5406 const void *value, size_t size, int flags)
5407{
5408 if (strcmp(name, "") == 0)
5409 return -EINVAL;
5410
5411 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_TRUSTED, name, value,
5412 size, flags);
5413}
5414
5415struct xattr_handler ocfs2_xattr_trusted_handler = {
5416 .prefix = XATTR_TRUSTED_PREFIX,
5417 .list = ocfs2_xattr_trusted_list,
5418 .get = ocfs2_xattr_trusted_get,
5419 .set = ocfs2_xattr_trusted_set,
5420};
5421
Mark Fasheh99219ae2008-10-07 14:52:59 -07005422/*
5423 * 'user' attributes support
5424 */
Mark Fasheh99219ae2008-10-07 14:52:59 -07005425static size_t ocfs2_xattr_user_list(struct inode *inode, char *list,
5426 size_t list_size, const char *name,
5427 size_t name_len)
5428{
Tiger Yangceb1eba2008-10-23 16:34:13 +08005429 const size_t prefix_len = XATTR_USER_PREFIX_LEN;
Mark Fasheh99219ae2008-10-07 14:52:59 -07005430 const size_t total_len = prefix_len + name_len + 1;
5431 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5432
5433 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5434 return 0;
5435
5436 if (list && total_len <= list_size) {
5437 memcpy(list, XATTR_USER_PREFIX, prefix_len);
5438 memcpy(list + prefix_len, name, name_len);
5439 list[prefix_len + name_len] = '\0';
5440 }
5441 return total_len;
5442}
5443
5444static int ocfs2_xattr_user_get(struct inode *inode, const char *name,
5445 void *buffer, size_t size)
5446{
5447 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5448
5449 if (strcmp(name, "") == 0)
5450 return -EINVAL;
5451 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5452 return -EOPNOTSUPP;
5453 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_USER, name,
5454 buffer, size);
5455}
5456
5457static int ocfs2_xattr_user_set(struct inode *inode, const char *name,
5458 const void *value, size_t size, int flags)
5459{
5460 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5461
5462 if (strcmp(name, "") == 0)
5463 return -EINVAL;
5464 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5465 return -EOPNOTSUPP;
5466
5467 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_USER, name, value,
5468 size, flags);
5469}
5470
5471struct xattr_handler ocfs2_xattr_user_handler = {
5472 .prefix = XATTR_USER_PREFIX,
5473 .list = ocfs2_xattr_user_list,
5474 .get = ocfs2_xattr_user_get,
5475 .set = ocfs2_xattr_user_set,
5476};