ocfs2: Make ocfs2_journal_dirty() void.
[pandora-kernel.git] / fs / ocfs2 / xattr.c
1 /* -*- mode: c; c-basic-offset: 8; -*-
2  * vim: noexpandtab sw=8 ts=8 sts=0:
3  *
4  * xattr.c
5  *
6  * Copyright (C) 2004, 2008 Oracle.  All rights reserved.
7  *
8  * CREDITS:
9  * Lots of code in this file is copy from linux/fs/ext3/xattr.c.
10  * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public
14  * License version 2 as published by the Free Software Foundation.
15  *
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.
20  */
21
22 #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>
34 #include <linux/sort.h>
35 #include <linux/init.h>
36 #include <linux/module.h>
37 #include <linux/string.h>
38 #include <linux/security.h>
39
40 #define MLOG_MASK_PREFIX ML_XATTR
41 #include <cluster/masklog.h>
42
43 #include "ocfs2.h"
44 #include "alloc.h"
45 #include "blockcheck.h"
46 #include "dlmglue.h"
47 #include "file.h"
48 #include "symlink.h"
49 #include "sysfile.h"
50 #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"
56 #include "super.h"
57 #include "xattr.h"
58 #include "refcounttree.h"
59 #include "acl.h"
60
61 struct ocfs2_xattr_def_value_root {
62         struct ocfs2_xattr_value_root   xv;
63         struct ocfs2_extent_rec         er;
64 };
65
66 struct ocfs2_xattr_bucket {
67         /* The inode these xattrs are associated with */
68         struct inode *bu_inode;
69
70         /* The actual buffers that make up the bucket */
71         struct buffer_head *bu_bhs[OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET];
72
73         /* How many blocks make up one bucket for this filesystem */
74         int bu_blocks;
75 };
76
77 struct ocfs2_xattr_set_ctxt {
78         handle_t *handle;
79         struct ocfs2_alloc_context *meta_ac;
80         struct ocfs2_alloc_context *data_ac;
81         struct ocfs2_cached_dealloc_ctxt dealloc;
82 };
83
84 #define OCFS2_XATTR_ROOT_SIZE   (sizeof(struct ocfs2_xattr_def_value_root))
85 #define OCFS2_XATTR_INLINE_SIZE 80
86 #define OCFS2_XATTR_HEADER_GAP  4
87 #define OCFS2_XATTR_FREE_IN_IBODY       (OCFS2_MIN_XATTR_INLINE_SIZE \
88                                          - sizeof(struct ocfs2_xattr_header) \
89                                          - OCFS2_XATTR_HEADER_GAP)
90 #define OCFS2_XATTR_FREE_IN_BLOCK(ptr)  ((ptr)->i_sb->s_blocksize \
91                                          - sizeof(struct ocfs2_xattr_block) \
92                                          - sizeof(struct ocfs2_xattr_header) \
93                                          - OCFS2_XATTR_HEADER_GAP)
94
95 static struct ocfs2_xattr_def_value_root def_xv = {
96         .xv.xr_list.l_count = cpu_to_le16(1),
97 };
98
99 struct xattr_handler *ocfs2_xattr_handlers[] = {
100         &ocfs2_xattr_user_handler,
101         &ocfs2_xattr_acl_access_handler,
102         &ocfs2_xattr_acl_default_handler,
103         &ocfs2_xattr_trusted_handler,
104         &ocfs2_xattr_security_handler,
105         NULL
106 };
107
108 static struct xattr_handler *ocfs2_xattr_handler_map[OCFS2_XATTR_MAX] = {
109         [OCFS2_XATTR_INDEX_USER]        = &ocfs2_xattr_user_handler,
110         [OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS]
111                                         = &ocfs2_xattr_acl_access_handler,
112         [OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT]
113                                         = &ocfs2_xattr_acl_default_handler,
114         [OCFS2_XATTR_INDEX_TRUSTED]     = &ocfs2_xattr_trusted_handler,
115         [OCFS2_XATTR_INDEX_SECURITY]    = &ocfs2_xattr_security_handler,
116 };
117
118 struct ocfs2_xattr_info {
119         int             xi_name_index;
120         const char      *xi_name;
121         int             xi_name_len;
122         const void      *xi_value;
123         size_t          xi_value_len;
124 };
125
126 struct ocfs2_xattr_search {
127         struct buffer_head *inode_bh;
128         /*
129          * xattr_bh point to the block buffer head which has extended attribute
130          * when extended attribute in inode, xattr_bh is equal to inode_bh.
131          */
132         struct buffer_head *xattr_bh;
133         struct ocfs2_xattr_header *header;
134         struct ocfs2_xattr_bucket *bucket;
135         void *base;
136         void *end;
137         struct ocfs2_xattr_entry *here;
138         int not_found;
139 };
140
141 /* Operations on struct ocfs2_xa_entry */
142 struct ocfs2_xa_loc;
143 struct ocfs2_xa_loc_operations {
144         /*
145          * Journal functions
146          */
147         int (*xlo_journal_access)(handle_t *handle, struct ocfs2_xa_loc *loc,
148                                   int type);
149         void (*xlo_journal_dirty)(handle_t *handle, struct ocfs2_xa_loc *loc);
150
151         /*
152          * Return a pointer to the appropriate buffer in loc->xl_storage
153          * at the given offset from loc->xl_header.
154          */
155         void *(*xlo_offset_pointer)(struct ocfs2_xa_loc *loc, int offset);
156
157         /* Can we reuse the existing entry for the new value? */
158         int (*xlo_can_reuse)(struct ocfs2_xa_loc *loc,
159                              struct ocfs2_xattr_info *xi);
160
161         /* How much space is needed for the new value? */
162         int (*xlo_check_space)(struct ocfs2_xa_loc *loc,
163                                struct ocfs2_xattr_info *xi);
164
165         /*
166          * Return the offset of the first name+value pair.  This is
167          * the start of our downward-filling free space.
168          */
169         int (*xlo_get_free_start)(struct ocfs2_xa_loc *loc);
170
171         /*
172          * Remove the name+value at this location.  Do whatever is
173          * appropriate with the remaining name+value pairs.
174          */
175         void (*xlo_wipe_namevalue)(struct ocfs2_xa_loc *loc);
176
177         /* Fill xl_entry with a new entry */
178         void (*xlo_add_entry)(struct ocfs2_xa_loc *loc, u32 name_hash);
179
180         /* Add name+value storage to an entry */
181         void (*xlo_add_namevalue)(struct ocfs2_xa_loc *loc, int size);
182
183         /*
184          * Initialize the value buf's access and bh fields for this entry.
185          * ocfs2_xa_fill_value_buf() will handle the xv pointer.
186          */
187         void (*xlo_fill_value_buf)(struct ocfs2_xa_loc *loc,
188                                    struct ocfs2_xattr_value_buf *vb);
189 };
190
191 /*
192  * Describes an xattr entry location.  This is a memory structure
193  * tracking the on-disk structure.
194  */
195 struct ocfs2_xa_loc {
196         /* This xattr belongs to this inode */
197         struct inode *xl_inode;
198
199         /* The ocfs2_xattr_header inside the on-disk storage. Not NULL. */
200         struct ocfs2_xattr_header *xl_header;
201
202         /* Bytes from xl_header to the end of the storage */
203         int xl_size;
204
205         /*
206          * The ocfs2_xattr_entry this location describes.  If this is
207          * NULL, this location describes the on-disk structure where it
208          * would have been.
209          */
210         struct ocfs2_xattr_entry *xl_entry;
211
212         /*
213          * Internal housekeeping
214          */
215
216         /* Buffer(s) containing this entry */
217         void *xl_storage;
218
219         /* Operations on the storage backing this location */
220         const struct ocfs2_xa_loc_operations *xl_ops;
221 };
222
223 /*
224  * Convenience functions to calculate how much space is needed for a
225  * given name+value pair
226  */
227 static int namevalue_size(int name_len, uint64_t value_len)
228 {
229         if (value_len > OCFS2_XATTR_INLINE_SIZE)
230                 return OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
231         else
232                 return OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(value_len);
233 }
234
235 static int namevalue_size_xi(struct ocfs2_xattr_info *xi)
236 {
237         return namevalue_size(xi->xi_name_len, xi->xi_value_len);
238 }
239
240 static int namevalue_size_xe(struct ocfs2_xattr_entry *xe)
241 {
242         u64 value_len = le64_to_cpu(xe->xe_value_size);
243
244         BUG_ON((value_len > OCFS2_XATTR_INLINE_SIZE) &&
245                ocfs2_xattr_is_local(xe));
246         return namevalue_size(xe->xe_name_len, value_len);
247 }
248
249
250 static int ocfs2_xattr_bucket_get_name_value(struct super_block *sb,
251                                              struct ocfs2_xattr_header *xh,
252                                              int index,
253                                              int *block_off,
254                                              int *new_offset);
255
256 static int ocfs2_xattr_block_find(struct inode *inode,
257                                   int name_index,
258                                   const char *name,
259                                   struct ocfs2_xattr_search *xs);
260 static int ocfs2_xattr_index_block_find(struct inode *inode,
261                                         struct buffer_head *root_bh,
262                                         int name_index,
263                                         const char *name,
264                                         struct ocfs2_xattr_search *xs);
265
266 static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
267                                         struct buffer_head *blk_bh,
268                                         char *buffer,
269                                         size_t buffer_size);
270
271 static int ocfs2_xattr_create_index_block(struct inode *inode,
272                                           struct ocfs2_xattr_search *xs,
273                                           struct ocfs2_xattr_set_ctxt *ctxt);
274
275 static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
276                                              struct ocfs2_xattr_info *xi,
277                                              struct ocfs2_xattr_search *xs,
278                                              struct ocfs2_xattr_set_ctxt *ctxt);
279
280 typedef int (xattr_tree_rec_func)(struct inode *inode,
281                                   struct buffer_head *root_bh,
282                                   u64 blkno, u32 cpos, u32 len, void *para);
283 static int ocfs2_iterate_xattr_index_block(struct inode *inode,
284                                            struct buffer_head *root_bh,
285                                            xattr_tree_rec_func *rec_func,
286                                            void *para);
287 static int ocfs2_delete_xattr_in_bucket(struct inode *inode,
288                                         struct ocfs2_xattr_bucket *bucket,
289                                         void *para);
290 static int ocfs2_rm_xattr_cluster(struct inode *inode,
291                                   struct buffer_head *root_bh,
292                                   u64 blkno,
293                                   u32 cpos,
294                                   u32 len,
295                                   void *para);
296
297 static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
298                                   u64 src_blk, u64 last_blk, u64 to_blk,
299                                   unsigned int start_bucket,
300                                   u32 *first_hash);
301 static int ocfs2_prepare_refcount_xattr(struct inode *inode,
302                                         struct ocfs2_dinode *di,
303                                         struct ocfs2_xattr_info *xi,
304                                         struct ocfs2_xattr_search *xis,
305                                         struct ocfs2_xattr_search *xbs,
306                                         struct ocfs2_refcount_tree **ref_tree,
307                                         int *meta_need,
308                                         int *credits);
309 static int ocfs2_get_xattr_tree_value_root(struct super_block *sb,
310                                            struct ocfs2_xattr_bucket *bucket,
311                                            int offset,
312                                            struct ocfs2_xattr_value_root **xv,
313                                            struct buffer_head **bh);
314
315 static inline u16 ocfs2_xattr_buckets_per_cluster(struct ocfs2_super *osb)
316 {
317         return (1 << osb->s_clustersize_bits) / OCFS2_XATTR_BUCKET_SIZE;
318 }
319
320 static inline u16 ocfs2_blocks_per_xattr_bucket(struct super_block *sb)
321 {
322         return OCFS2_XATTR_BUCKET_SIZE / (1 << sb->s_blocksize_bits);
323 }
324
325 #define bucket_blkno(_b) ((_b)->bu_bhs[0]->b_blocknr)
326 #define bucket_block(_b, _n) ((_b)->bu_bhs[(_n)]->b_data)
327 #define bucket_xh(_b) ((struct ocfs2_xattr_header *)bucket_block((_b), 0))
328
329 static struct ocfs2_xattr_bucket *ocfs2_xattr_bucket_new(struct inode *inode)
330 {
331         struct ocfs2_xattr_bucket *bucket;
332         int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
333
334         BUG_ON(blks > OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET);
335
336         bucket = kzalloc(sizeof(struct ocfs2_xattr_bucket), GFP_NOFS);
337         if (bucket) {
338                 bucket->bu_inode = inode;
339                 bucket->bu_blocks = blks;
340         }
341
342         return bucket;
343 }
344
345 static void ocfs2_xattr_bucket_relse(struct ocfs2_xattr_bucket *bucket)
346 {
347         int i;
348
349         for (i = 0; i < bucket->bu_blocks; i++) {
350                 brelse(bucket->bu_bhs[i]);
351                 bucket->bu_bhs[i] = NULL;
352         }
353 }
354
355 static void ocfs2_xattr_bucket_free(struct ocfs2_xattr_bucket *bucket)
356 {
357         if (bucket) {
358                 ocfs2_xattr_bucket_relse(bucket);
359                 bucket->bu_inode = NULL;
360                 kfree(bucket);
361         }
362 }
363
364 /*
365  * A bucket that has never been written to disk doesn't need to be
366  * read.  We just need the buffer_heads.  Don't call this for
367  * buckets that are already on disk.  ocfs2_read_xattr_bucket() initializes
368  * them fully.
369  */
370 static int ocfs2_init_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
371                                    u64 xb_blkno)
372 {
373         int i, rc = 0;
374
375         for (i = 0; i < bucket->bu_blocks; i++) {
376                 bucket->bu_bhs[i] = sb_getblk(bucket->bu_inode->i_sb,
377                                               xb_blkno + i);
378                 if (!bucket->bu_bhs[i]) {
379                         rc = -EIO;
380                         mlog_errno(rc);
381                         break;
382                 }
383
384                 if (!ocfs2_buffer_uptodate(INODE_CACHE(bucket->bu_inode),
385                                            bucket->bu_bhs[i]))
386                         ocfs2_set_new_buffer_uptodate(INODE_CACHE(bucket->bu_inode),
387                                                       bucket->bu_bhs[i]);
388         }
389
390         if (rc)
391                 ocfs2_xattr_bucket_relse(bucket);
392         return rc;
393 }
394
395 /* Read the xattr bucket at xb_blkno */
396 static int ocfs2_read_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
397                                    u64 xb_blkno)
398 {
399         int rc;
400
401         rc = ocfs2_read_blocks(INODE_CACHE(bucket->bu_inode), xb_blkno,
402                                bucket->bu_blocks, bucket->bu_bhs, 0,
403                                NULL);
404         if (!rc) {
405                 spin_lock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
406                 rc = ocfs2_validate_meta_ecc_bhs(bucket->bu_inode->i_sb,
407                                                  bucket->bu_bhs,
408                                                  bucket->bu_blocks,
409                                                  &bucket_xh(bucket)->xh_check);
410                 spin_unlock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
411                 if (rc)
412                         mlog_errno(rc);
413         }
414
415         if (rc)
416                 ocfs2_xattr_bucket_relse(bucket);
417         return rc;
418 }
419
420 static int ocfs2_xattr_bucket_journal_access(handle_t *handle,
421                                              struct ocfs2_xattr_bucket *bucket,
422                                              int type)
423 {
424         int i, rc = 0;
425
426         for (i = 0; i < bucket->bu_blocks; i++) {
427                 rc = ocfs2_journal_access(handle,
428                                           INODE_CACHE(bucket->bu_inode),
429                                           bucket->bu_bhs[i], type);
430                 if (rc) {
431                         mlog_errno(rc);
432                         break;
433                 }
434         }
435
436         return rc;
437 }
438
439 static void ocfs2_xattr_bucket_journal_dirty(handle_t *handle,
440                                              struct ocfs2_xattr_bucket *bucket)
441 {
442         int i;
443
444         spin_lock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
445         ocfs2_compute_meta_ecc_bhs(bucket->bu_inode->i_sb,
446                                    bucket->bu_bhs, bucket->bu_blocks,
447                                    &bucket_xh(bucket)->xh_check);
448         spin_unlock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
449
450         for (i = 0; i < bucket->bu_blocks; i++)
451                 ocfs2_journal_dirty(handle, bucket->bu_bhs[i]);
452 }
453
454 static void ocfs2_xattr_bucket_copy_data(struct ocfs2_xattr_bucket *dest,
455                                          struct ocfs2_xattr_bucket *src)
456 {
457         int i;
458         int blocksize = src->bu_inode->i_sb->s_blocksize;
459
460         BUG_ON(dest->bu_blocks != src->bu_blocks);
461         BUG_ON(dest->bu_inode != src->bu_inode);
462
463         for (i = 0; i < src->bu_blocks; i++) {
464                 memcpy(bucket_block(dest, i), bucket_block(src, i),
465                        blocksize);
466         }
467 }
468
469 static int ocfs2_validate_xattr_block(struct super_block *sb,
470                                       struct buffer_head *bh)
471 {
472         int rc;
473         struct ocfs2_xattr_block *xb =
474                 (struct ocfs2_xattr_block *)bh->b_data;
475
476         mlog(0, "Validating xattr block %llu\n",
477              (unsigned long long)bh->b_blocknr);
478
479         BUG_ON(!buffer_uptodate(bh));
480
481         /*
482          * If the ecc fails, we return the error but otherwise
483          * leave the filesystem running.  We know any error is
484          * local to this block.
485          */
486         rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &xb->xb_check);
487         if (rc)
488                 return rc;
489
490         /*
491          * Errors after here are fatal
492          */
493
494         if (!OCFS2_IS_VALID_XATTR_BLOCK(xb)) {
495                 ocfs2_error(sb,
496                             "Extended attribute block #%llu has bad "
497                             "signature %.*s",
498                             (unsigned long long)bh->b_blocknr, 7,
499                             xb->xb_signature);
500                 return -EINVAL;
501         }
502
503         if (le64_to_cpu(xb->xb_blkno) != bh->b_blocknr) {
504                 ocfs2_error(sb,
505                             "Extended attribute block #%llu has an "
506                             "invalid xb_blkno of %llu",
507                             (unsigned long long)bh->b_blocknr,
508                             (unsigned long long)le64_to_cpu(xb->xb_blkno));
509                 return -EINVAL;
510         }
511
512         if (le32_to_cpu(xb->xb_fs_generation) != OCFS2_SB(sb)->fs_generation) {
513                 ocfs2_error(sb,
514                             "Extended attribute block #%llu has an invalid "
515                             "xb_fs_generation of #%u",
516                             (unsigned long long)bh->b_blocknr,
517                             le32_to_cpu(xb->xb_fs_generation));
518                 return -EINVAL;
519         }
520
521         return 0;
522 }
523
524 static int ocfs2_read_xattr_block(struct inode *inode, u64 xb_blkno,
525                                   struct buffer_head **bh)
526 {
527         int rc;
528         struct buffer_head *tmp = *bh;
529
530         rc = ocfs2_read_block(INODE_CACHE(inode), xb_blkno, &tmp,
531                               ocfs2_validate_xattr_block);
532
533         /* If ocfs2_read_block() got us a new bh, pass it up. */
534         if (!rc && !*bh)
535                 *bh = tmp;
536
537         return rc;
538 }
539
540 static inline const char *ocfs2_xattr_prefix(int name_index)
541 {
542         struct xattr_handler *handler = NULL;
543
544         if (name_index > 0 && name_index < OCFS2_XATTR_MAX)
545                 handler = ocfs2_xattr_handler_map[name_index];
546
547         return handler ? handler->prefix : NULL;
548 }
549
550 static u32 ocfs2_xattr_name_hash(struct inode *inode,
551                                  const char *name,
552                                  int name_len)
553 {
554         /* Get hash value of uuid from super block */
555         u32 hash = OCFS2_SB(inode->i_sb)->uuid_hash;
556         int i;
557
558         /* hash extended attribute name */
559         for (i = 0; i < name_len; i++) {
560                 hash = (hash << OCFS2_HASH_SHIFT) ^
561                        (hash >> (8*sizeof(hash) - OCFS2_HASH_SHIFT)) ^
562                        *name++;
563         }
564
565         return hash;
566 }
567
568 static int ocfs2_xattr_entry_real_size(int name_len, size_t value_len)
569 {
570         return namevalue_size(name_len, value_len) +
571                 sizeof(struct ocfs2_xattr_entry);
572 }
573
574 static int ocfs2_xi_entry_usage(struct ocfs2_xattr_info *xi)
575 {
576         return namevalue_size_xi(xi) +
577                 sizeof(struct ocfs2_xattr_entry);
578 }
579
580 static int ocfs2_xe_entry_usage(struct ocfs2_xattr_entry *xe)
581 {
582         return namevalue_size_xe(xe) +
583                 sizeof(struct ocfs2_xattr_entry);
584 }
585
586 int ocfs2_calc_security_init(struct inode *dir,
587                              struct ocfs2_security_xattr_info *si,
588                              int *want_clusters,
589                              int *xattr_credits,
590                              struct ocfs2_alloc_context **xattr_ac)
591 {
592         int ret = 0;
593         struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
594         int s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
595                                                  si->value_len);
596
597         /*
598          * The max space of security xattr taken inline is
599          * 256(name) + 80(value) + 16(entry) = 352 bytes,
600          * So reserve one metadata block for it is ok.
601          */
602         if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
603             s_size > OCFS2_XATTR_FREE_IN_IBODY) {
604                 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, xattr_ac);
605                 if (ret) {
606                         mlog_errno(ret);
607                         return ret;
608                 }
609                 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
610         }
611
612         /* reserve clusters for xattr value which will be set in B tree*/
613         if (si->value_len > OCFS2_XATTR_INLINE_SIZE) {
614                 int new_clusters = ocfs2_clusters_for_bytes(dir->i_sb,
615                                                             si->value_len);
616
617                 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
618                                                            new_clusters);
619                 *want_clusters += new_clusters;
620         }
621         return ret;
622 }
623
624 int ocfs2_calc_xattr_init(struct inode *dir,
625                           struct buffer_head *dir_bh,
626                           int mode,
627                           struct ocfs2_security_xattr_info *si,
628                           int *want_clusters,
629                           int *xattr_credits,
630                           int *want_meta)
631 {
632         int ret = 0;
633         struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
634         int s_size = 0, a_size = 0, acl_len = 0, new_clusters;
635
636         if (si->enable)
637                 s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
638                                                      si->value_len);
639
640         if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) {
641                 acl_len = ocfs2_xattr_get_nolock(dir, dir_bh,
642                                         OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT,
643                                         "", NULL, 0);
644                 if (acl_len > 0) {
645                         a_size = ocfs2_xattr_entry_real_size(0, acl_len);
646                         if (S_ISDIR(mode))
647                                 a_size <<= 1;
648                 } else if (acl_len != 0 && acl_len != -ENODATA) {
649                         mlog_errno(ret);
650                         return ret;
651                 }
652         }
653
654         if (!(s_size + a_size))
655                 return ret;
656
657         /*
658          * The max space of security xattr taken inline is
659          * 256(name) + 80(value) + 16(entry) = 352 bytes,
660          * The max space of acl xattr taken inline is
661          * 80(value) + 16(entry) * 2(if directory) = 192 bytes,
662          * when blocksize = 512, may reserve one more cluser for
663          * xattr bucket, otherwise reserve one metadata block
664          * for them is ok.
665          * If this is a new directory with inline data,
666          * we choose to reserve the entire inline area for
667          * directory contents and force an external xattr block.
668          */
669         if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
670             (S_ISDIR(mode) && ocfs2_supports_inline_data(osb)) ||
671             (s_size + a_size) > OCFS2_XATTR_FREE_IN_IBODY) {
672                 *want_meta = *want_meta + 1;
673                 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
674         }
675
676         if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE &&
677             (s_size + a_size) > OCFS2_XATTR_FREE_IN_BLOCK(dir)) {
678                 *want_clusters += 1;
679                 *xattr_credits += ocfs2_blocks_per_xattr_bucket(dir->i_sb);
680         }
681
682         /*
683          * reserve credits and clusters for xattrs which has large value
684          * and have to be set outside
685          */
686         if (si->enable && si->value_len > OCFS2_XATTR_INLINE_SIZE) {
687                 new_clusters = ocfs2_clusters_for_bytes(dir->i_sb,
688                                                         si->value_len);
689                 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
690                                                            new_clusters);
691                 *want_clusters += new_clusters;
692         }
693         if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL &&
694             acl_len > OCFS2_XATTR_INLINE_SIZE) {
695                 /* for directory, it has DEFAULT and ACCESS two types of acls */
696                 new_clusters = (S_ISDIR(mode) ? 2 : 1) *
697                                 ocfs2_clusters_for_bytes(dir->i_sb, acl_len);
698                 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
699                                                            new_clusters);
700                 *want_clusters += new_clusters;
701         }
702
703         return ret;
704 }
705
706 static int ocfs2_xattr_extend_allocation(struct inode *inode,
707                                          u32 clusters_to_add,
708                                          struct ocfs2_xattr_value_buf *vb,
709                                          struct ocfs2_xattr_set_ctxt *ctxt)
710 {
711         int status = 0;
712         handle_t *handle = ctxt->handle;
713         enum ocfs2_alloc_restarted why;
714         u32 prev_clusters, logical_start = le32_to_cpu(vb->vb_xv->xr_clusters);
715         struct ocfs2_extent_tree et;
716
717         mlog(0, "(clusters_to_add for xattr= %u)\n", clusters_to_add);
718
719         ocfs2_init_xattr_value_extent_tree(&et, INODE_CACHE(inode), vb);
720
721         status = vb->vb_access(handle, INODE_CACHE(inode), vb->vb_bh,
722                               OCFS2_JOURNAL_ACCESS_WRITE);
723         if (status < 0) {
724                 mlog_errno(status);
725                 goto leave;
726         }
727
728         prev_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
729         status = ocfs2_add_clusters_in_btree(handle,
730                                              &et,
731                                              &logical_start,
732                                              clusters_to_add,
733                                              0,
734                                              ctxt->data_ac,
735                                              ctxt->meta_ac,
736                                              &why);
737         if (status < 0) {
738                 mlog_errno(status);
739                 goto leave;
740         }
741
742         ocfs2_journal_dirty(handle, vb->vb_bh);
743
744         clusters_to_add -= le32_to_cpu(vb->vb_xv->xr_clusters) - prev_clusters;
745
746         /*
747          * We should have already allocated enough space before the transaction,
748          * so no need to restart.
749          */
750         BUG_ON(why != RESTART_NONE || clusters_to_add);
751
752 leave:
753
754         return status;
755 }
756
757 static int __ocfs2_remove_xattr_range(struct inode *inode,
758                                       struct ocfs2_xattr_value_buf *vb,
759                                       u32 cpos, u32 phys_cpos, u32 len,
760                                       unsigned int ext_flags,
761                                       struct ocfs2_xattr_set_ctxt *ctxt)
762 {
763         int ret;
764         u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
765         handle_t *handle = ctxt->handle;
766         struct ocfs2_extent_tree et;
767
768         ocfs2_init_xattr_value_extent_tree(&et, INODE_CACHE(inode), vb);
769
770         ret = vb->vb_access(handle, INODE_CACHE(inode), vb->vb_bh,
771                             OCFS2_JOURNAL_ACCESS_WRITE);
772         if (ret) {
773                 mlog_errno(ret);
774                 goto out;
775         }
776
777         ret = ocfs2_remove_extent(handle, &et, cpos, len, ctxt->meta_ac,
778                                   &ctxt->dealloc);
779         if (ret) {
780                 mlog_errno(ret);
781                 goto out;
782         }
783
784         le32_add_cpu(&vb->vb_xv->xr_clusters, -len);
785         ocfs2_journal_dirty(handle, vb->vb_bh);
786
787         if (ext_flags & OCFS2_EXT_REFCOUNTED)
788                 ret = ocfs2_decrease_refcount(inode, handle,
789                                         ocfs2_blocks_to_clusters(inode->i_sb,
790                                                                  phys_blkno),
791                                         len, ctxt->meta_ac, &ctxt->dealloc, 1);
792         else
793                 ret = ocfs2_cache_cluster_dealloc(&ctxt->dealloc,
794                                                   phys_blkno, len);
795         if (ret)
796                 mlog_errno(ret);
797
798 out:
799         return ret;
800 }
801
802 static int ocfs2_xattr_shrink_size(struct inode *inode,
803                                    u32 old_clusters,
804                                    u32 new_clusters,
805                                    struct ocfs2_xattr_value_buf *vb,
806                                    struct ocfs2_xattr_set_ctxt *ctxt)
807 {
808         int ret = 0;
809         unsigned int ext_flags;
810         u32 trunc_len, cpos, phys_cpos, alloc_size;
811         u64 block;
812
813         if (old_clusters <= new_clusters)
814                 return 0;
815
816         cpos = new_clusters;
817         trunc_len = old_clusters - new_clusters;
818         while (trunc_len) {
819                 ret = ocfs2_xattr_get_clusters(inode, cpos, &phys_cpos,
820                                                &alloc_size,
821                                                &vb->vb_xv->xr_list, &ext_flags);
822                 if (ret) {
823                         mlog_errno(ret);
824                         goto out;
825                 }
826
827                 if (alloc_size > trunc_len)
828                         alloc_size = trunc_len;
829
830                 ret = __ocfs2_remove_xattr_range(inode, vb, cpos,
831                                                  phys_cpos, alloc_size,
832                                                  ext_flags, ctxt);
833                 if (ret) {
834                         mlog_errno(ret);
835                         goto out;
836                 }
837
838                 block = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
839                 ocfs2_remove_xattr_clusters_from_cache(INODE_CACHE(inode),
840                                                        block, alloc_size);
841                 cpos += alloc_size;
842                 trunc_len -= alloc_size;
843         }
844
845 out:
846         return ret;
847 }
848
849 static int ocfs2_xattr_value_truncate(struct inode *inode,
850                                       struct ocfs2_xattr_value_buf *vb,
851                                       int len,
852                                       struct ocfs2_xattr_set_ctxt *ctxt)
853 {
854         int ret;
855         u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb, len);
856         u32 old_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
857
858         if (new_clusters == old_clusters)
859                 return 0;
860
861         if (new_clusters > old_clusters)
862                 ret = ocfs2_xattr_extend_allocation(inode,
863                                                     new_clusters - old_clusters,
864                                                     vb, ctxt);
865         else
866                 ret = ocfs2_xattr_shrink_size(inode,
867                                               old_clusters, new_clusters,
868                                               vb, ctxt);
869
870         return ret;
871 }
872
873 static int ocfs2_xattr_list_entry(char *buffer, size_t size,
874                                   size_t *result, const char *prefix,
875                                   const char *name, int name_len)
876 {
877         char *p = buffer + *result;
878         int prefix_len = strlen(prefix);
879         int total_len = prefix_len + name_len + 1;
880
881         *result += total_len;
882
883         /* we are just looking for how big our buffer needs to be */
884         if (!size)
885                 return 0;
886
887         if (*result > size)
888                 return -ERANGE;
889
890         memcpy(p, prefix, prefix_len);
891         memcpy(p + prefix_len, name, name_len);
892         p[prefix_len + name_len] = '\0';
893
894         return 0;
895 }
896
897 static int ocfs2_xattr_list_entries(struct inode *inode,
898                                     struct ocfs2_xattr_header *header,
899                                     char *buffer, size_t buffer_size)
900 {
901         size_t result = 0;
902         int i, type, ret;
903         const char *prefix, *name;
904
905         for (i = 0 ; i < le16_to_cpu(header->xh_count); i++) {
906                 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
907                 type = ocfs2_xattr_get_type(entry);
908                 prefix = ocfs2_xattr_prefix(type);
909
910                 if (prefix) {
911                         name = (const char *)header +
912                                 le16_to_cpu(entry->xe_name_offset);
913
914                         ret = ocfs2_xattr_list_entry(buffer, buffer_size,
915                                                      &result, prefix, name,
916                                                      entry->xe_name_len);
917                         if (ret)
918                                 return ret;
919                 }
920         }
921
922         return result;
923 }
924
925 int ocfs2_has_inline_xattr_value_outside(struct inode *inode,
926                                          struct ocfs2_dinode *di)
927 {
928         struct ocfs2_xattr_header *xh;
929         int i;
930
931         xh = (struct ocfs2_xattr_header *)
932                  ((void *)di + inode->i_sb->s_blocksize -
933                  le16_to_cpu(di->i_xattr_inline_size));
934
935         for (i = 0; i < le16_to_cpu(xh->xh_count); i++)
936                 if (!ocfs2_xattr_is_local(&xh->xh_entries[i]))
937                         return 1;
938
939         return 0;
940 }
941
942 static int ocfs2_xattr_ibody_list(struct inode *inode,
943                                   struct ocfs2_dinode *di,
944                                   char *buffer,
945                                   size_t buffer_size)
946 {
947         struct ocfs2_xattr_header *header = NULL;
948         struct ocfs2_inode_info *oi = OCFS2_I(inode);
949         int ret = 0;
950
951         if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
952                 return ret;
953
954         header = (struct ocfs2_xattr_header *)
955                  ((void *)di + inode->i_sb->s_blocksize -
956                  le16_to_cpu(di->i_xattr_inline_size));
957
958         ret = ocfs2_xattr_list_entries(inode, header, buffer, buffer_size);
959
960         return ret;
961 }
962
963 static int ocfs2_xattr_block_list(struct inode *inode,
964                                   struct ocfs2_dinode *di,
965                                   char *buffer,
966                                   size_t buffer_size)
967 {
968         struct buffer_head *blk_bh = NULL;
969         struct ocfs2_xattr_block *xb;
970         int ret = 0;
971
972         if (!di->i_xattr_loc)
973                 return ret;
974
975         ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
976                                      &blk_bh);
977         if (ret < 0) {
978                 mlog_errno(ret);
979                 return ret;
980         }
981
982         xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
983         if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
984                 struct ocfs2_xattr_header *header = &xb->xb_attrs.xb_header;
985                 ret = ocfs2_xattr_list_entries(inode, header,
986                                                buffer, buffer_size);
987         } else
988                 ret = ocfs2_xattr_tree_list_index_block(inode, blk_bh,
989                                                    buffer, buffer_size);
990
991         brelse(blk_bh);
992
993         return ret;
994 }
995
996 ssize_t ocfs2_listxattr(struct dentry *dentry,
997                         char *buffer,
998                         size_t size)
999 {
1000         int ret = 0, i_ret = 0, b_ret = 0;
1001         struct buffer_head *di_bh = NULL;
1002         struct ocfs2_dinode *di = NULL;
1003         struct ocfs2_inode_info *oi = OCFS2_I(dentry->d_inode);
1004
1005         if (!ocfs2_supports_xattr(OCFS2_SB(dentry->d_sb)))
1006                 return -EOPNOTSUPP;
1007
1008         if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1009                 return ret;
1010
1011         ret = ocfs2_inode_lock(dentry->d_inode, &di_bh, 0);
1012         if (ret < 0) {
1013                 mlog_errno(ret);
1014                 return ret;
1015         }
1016
1017         di = (struct ocfs2_dinode *)di_bh->b_data;
1018
1019         down_read(&oi->ip_xattr_sem);
1020         i_ret = ocfs2_xattr_ibody_list(dentry->d_inode, di, buffer, size);
1021         if (i_ret < 0)
1022                 b_ret = 0;
1023         else {
1024                 if (buffer) {
1025                         buffer += i_ret;
1026                         size -= i_ret;
1027                 }
1028                 b_ret = ocfs2_xattr_block_list(dentry->d_inode, di,
1029                                                buffer, size);
1030                 if (b_ret < 0)
1031                         i_ret = 0;
1032         }
1033         up_read(&oi->ip_xattr_sem);
1034         ocfs2_inode_unlock(dentry->d_inode, 0);
1035
1036         brelse(di_bh);
1037
1038         return i_ret + b_ret;
1039 }
1040
1041 static int ocfs2_xattr_find_entry(int name_index,
1042                                   const char *name,
1043                                   struct ocfs2_xattr_search *xs)
1044 {
1045         struct ocfs2_xattr_entry *entry;
1046         size_t name_len;
1047         int i, cmp = 1;
1048
1049         if (name == NULL)
1050                 return -EINVAL;
1051
1052         name_len = strlen(name);
1053         entry = xs->here;
1054         for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
1055                 cmp = name_index - ocfs2_xattr_get_type(entry);
1056                 if (!cmp)
1057                         cmp = name_len - entry->xe_name_len;
1058                 if (!cmp)
1059                         cmp = memcmp(name, (xs->base +
1060                                      le16_to_cpu(entry->xe_name_offset)),
1061                                      name_len);
1062                 if (cmp == 0)
1063                         break;
1064                 entry += 1;
1065         }
1066         xs->here = entry;
1067
1068         return cmp ? -ENODATA : 0;
1069 }
1070
1071 static int ocfs2_xattr_get_value_outside(struct inode *inode,
1072                                          struct ocfs2_xattr_value_root *xv,
1073                                          void *buffer,
1074                                          size_t len)
1075 {
1076         u32 cpos, p_cluster, num_clusters, bpc, clusters;
1077         u64 blkno;
1078         int i, ret = 0;
1079         size_t cplen, blocksize;
1080         struct buffer_head *bh = NULL;
1081         struct ocfs2_extent_list *el;
1082
1083         el = &xv->xr_list;
1084         clusters = le32_to_cpu(xv->xr_clusters);
1085         bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
1086         blocksize = inode->i_sb->s_blocksize;
1087
1088         cpos = 0;
1089         while (cpos < clusters) {
1090                 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
1091                                                &num_clusters, el, NULL);
1092                 if (ret) {
1093                         mlog_errno(ret);
1094                         goto out;
1095                 }
1096
1097                 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
1098                 /* Copy ocfs2_xattr_value */
1099                 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
1100                         ret = ocfs2_read_block(INODE_CACHE(inode), blkno,
1101                                                &bh, NULL);
1102                         if (ret) {
1103                                 mlog_errno(ret);
1104                                 goto out;
1105                         }
1106
1107                         cplen = len >= blocksize ? blocksize : len;
1108                         memcpy(buffer, bh->b_data, cplen);
1109                         len -= cplen;
1110                         buffer += cplen;
1111
1112                         brelse(bh);
1113                         bh = NULL;
1114                         if (len == 0)
1115                                 break;
1116                 }
1117                 cpos += num_clusters;
1118         }
1119 out:
1120         return ret;
1121 }
1122
1123 static int ocfs2_xattr_ibody_get(struct inode *inode,
1124                                  int name_index,
1125                                  const char *name,
1126                                  void *buffer,
1127                                  size_t buffer_size,
1128                                  struct ocfs2_xattr_search *xs)
1129 {
1130         struct ocfs2_inode_info *oi = OCFS2_I(inode);
1131         struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1132         struct ocfs2_xattr_value_root *xv;
1133         size_t size;
1134         int ret = 0;
1135
1136         if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
1137                 return -ENODATA;
1138
1139         xs->end = (void *)di + inode->i_sb->s_blocksize;
1140         xs->header = (struct ocfs2_xattr_header *)
1141                         (xs->end - le16_to_cpu(di->i_xattr_inline_size));
1142         xs->base = (void *)xs->header;
1143         xs->here = xs->header->xh_entries;
1144
1145         ret = ocfs2_xattr_find_entry(name_index, name, xs);
1146         if (ret)
1147                 return ret;
1148         size = le64_to_cpu(xs->here->xe_value_size);
1149         if (buffer) {
1150                 if (size > buffer_size)
1151                         return -ERANGE;
1152                 if (ocfs2_xattr_is_local(xs->here)) {
1153                         memcpy(buffer, (void *)xs->base +
1154                                le16_to_cpu(xs->here->xe_name_offset) +
1155                                OCFS2_XATTR_SIZE(xs->here->xe_name_len), size);
1156                 } else {
1157                         xv = (struct ocfs2_xattr_value_root *)
1158                                 (xs->base + le16_to_cpu(
1159                                  xs->here->xe_name_offset) +
1160                                 OCFS2_XATTR_SIZE(xs->here->xe_name_len));
1161                         ret = ocfs2_xattr_get_value_outside(inode, xv,
1162                                                             buffer, size);
1163                         if (ret < 0) {
1164                                 mlog_errno(ret);
1165                                 return ret;
1166                         }
1167                 }
1168         }
1169
1170         return size;
1171 }
1172
1173 static int ocfs2_xattr_block_get(struct inode *inode,
1174                                  int name_index,
1175                                  const char *name,
1176                                  void *buffer,
1177                                  size_t buffer_size,
1178                                  struct ocfs2_xattr_search *xs)
1179 {
1180         struct ocfs2_xattr_block *xb;
1181         struct ocfs2_xattr_value_root *xv;
1182         size_t size;
1183         int ret = -ENODATA, name_offset, name_len, i;
1184         int uninitialized_var(block_off);
1185
1186         xs->bucket = ocfs2_xattr_bucket_new(inode);
1187         if (!xs->bucket) {
1188                 ret = -ENOMEM;
1189                 mlog_errno(ret);
1190                 goto cleanup;
1191         }
1192
1193         ret = ocfs2_xattr_block_find(inode, name_index, name, xs);
1194         if (ret) {
1195                 mlog_errno(ret);
1196                 goto cleanup;
1197         }
1198
1199         if (xs->not_found) {
1200                 ret = -ENODATA;
1201                 goto cleanup;
1202         }
1203
1204         xb = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
1205         size = le64_to_cpu(xs->here->xe_value_size);
1206         if (buffer) {
1207                 ret = -ERANGE;
1208                 if (size > buffer_size)
1209                         goto cleanup;
1210
1211                 name_offset = le16_to_cpu(xs->here->xe_name_offset);
1212                 name_len = OCFS2_XATTR_SIZE(xs->here->xe_name_len);
1213                 i = xs->here - xs->header->xh_entries;
1214
1215                 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
1216                         ret = ocfs2_xattr_bucket_get_name_value(inode->i_sb,
1217                                                                 bucket_xh(xs->bucket),
1218                                                                 i,
1219                                                                 &block_off,
1220                                                                 &name_offset);
1221                         xs->base = bucket_block(xs->bucket, block_off);
1222                 }
1223                 if (ocfs2_xattr_is_local(xs->here)) {
1224                         memcpy(buffer, (void *)xs->base +
1225                                name_offset + name_len, size);
1226                 } else {
1227                         xv = (struct ocfs2_xattr_value_root *)
1228                                 (xs->base + name_offset + name_len);
1229                         ret = ocfs2_xattr_get_value_outside(inode, xv,
1230                                                             buffer, size);
1231                         if (ret < 0) {
1232                                 mlog_errno(ret);
1233                                 goto cleanup;
1234                         }
1235                 }
1236         }
1237         ret = size;
1238 cleanup:
1239         ocfs2_xattr_bucket_free(xs->bucket);
1240
1241         brelse(xs->xattr_bh);
1242         xs->xattr_bh = NULL;
1243         return ret;
1244 }
1245
1246 int ocfs2_xattr_get_nolock(struct inode *inode,
1247                            struct buffer_head *di_bh,
1248                            int name_index,
1249                            const char *name,
1250                            void *buffer,
1251                            size_t buffer_size)
1252 {
1253         int ret;
1254         struct ocfs2_dinode *di = NULL;
1255         struct ocfs2_inode_info *oi = OCFS2_I(inode);
1256         struct ocfs2_xattr_search xis = {
1257                 .not_found = -ENODATA,
1258         };
1259         struct ocfs2_xattr_search xbs = {
1260                 .not_found = -ENODATA,
1261         };
1262
1263         if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1264                 return -EOPNOTSUPP;
1265
1266         if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1267                 ret = -ENODATA;
1268
1269         xis.inode_bh = xbs.inode_bh = di_bh;
1270         di = (struct ocfs2_dinode *)di_bh->b_data;
1271
1272         down_read(&oi->ip_xattr_sem);
1273         ret = ocfs2_xattr_ibody_get(inode, name_index, name, buffer,
1274                                     buffer_size, &xis);
1275         if (ret == -ENODATA && di->i_xattr_loc)
1276                 ret = ocfs2_xattr_block_get(inode, name_index, name, buffer,
1277                                             buffer_size, &xbs);
1278         up_read(&oi->ip_xattr_sem);
1279
1280         return ret;
1281 }
1282
1283 /* ocfs2_xattr_get()
1284  *
1285  * Copy an extended attribute into the buffer provided.
1286  * Buffer is NULL to compute the size of buffer required.
1287  */
1288 static int ocfs2_xattr_get(struct inode *inode,
1289                            int name_index,
1290                            const char *name,
1291                            void *buffer,
1292                            size_t buffer_size)
1293 {
1294         int ret;
1295         struct buffer_head *di_bh = NULL;
1296
1297         ret = ocfs2_inode_lock(inode, &di_bh, 0);
1298         if (ret < 0) {
1299                 mlog_errno(ret);
1300                 return ret;
1301         }
1302         ret = ocfs2_xattr_get_nolock(inode, di_bh, name_index,
1303                                      name, buffer, buffer_size);
1304
1305         ocfs2_inode_unlock(inode, 0);
1306
1307         brelse(di_bh);
1308
1309         return ret;
1310 }
1311
1312 static int __ocfs2_xattr_set_value_outside(struct inode *inode,
1313                                            handle_t *handle,
1314                                            struct ocfs2_xattr_value_buf *vb,
1315                                            const void *value,
1316                                            int value_len)
1317 {
1318         int ret = 0, i, cp_len;
1319         u16 blocksize = inode->i_sb->s_blocksize;
1320         u32 p_cluster, num_clusters;
1321         u32 cpos = 0, bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
1322         u32 clusters = ocfs2_clusters_for_bytes(inode->i_sb, value_len);
1323         u64 blkno;
1324         struct buffer_head *bh = NULL;
1325         unsigned int ext_flags;
1326         struct ocfs2_xattr_value_root *xv = vb->vb_xv;
1327
1328         BUG_ON(clusters > le32_to_cpu(xv->xr_clusters));
1329
1330         while (cpos < clusters) {
1331                 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
1332                                                &num_clusters, &xv->xr_list,
1333                                                &ext_flags);
1334                 if (ret) {
1335                         mlog_errno(ret);
1336                         goto out;
1337                 }
1338
1339                 BUG_ON(ext_flags & OCFS2_EXT_REFCOUNTED);
1340
1341                 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
1342
1343                 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
1344                         ret = ocfs2_read_block(INODE_CACHE(inode), blkno,
1345                                                &bh, NULL);
1346                         if (ret) {
1347                                 mlog_errno(ret);
1348                                 goto out;
1349                         }
1350
1351                         ret = ocfs2_journal_access(handle,
1352                                                    INODE_CACHE(inode),
1353                                                    bh,
1354                                                    OCFS2_JOURNAL_ACCESS_WRITE);
1355                         if (ret < 0) {
1356                                 mlog_errno(ret);
1357                                 goto out;
1358                         }
1359
1360                         cp_len = value_len > blocksize ? blocksize : value_len;
1361                         memcpy(bh->b_data, value, cp_len);
1362                         value_len -= cp_len;
1363                         value += cp_len;
1364                         if (cp_len < blocksize)
1365                                 memset(bh->b_data + cp_len, 0,
1366                                        blocksize - cp_len);
1367
1368                         ocfs2_journal_dirty(handle, bh);
1369                         brelse(bh);
1370                         bh = NULL;
1371
1372                         /*
1373                          * XXX: do we need to empty all the following
1374                          * blocks in this cluster?
1375                          */
1376                         if (!value_len)
1377                                 break;
1378                 }
1379                 cpos += num_clusters;
1380         }
1381 out:
1382         brelse(bh);
1383
1384         return ret;
1385 }
1386
1387 static int ocfs2_xa_check_space_helper(int needed_space, int free_start,
1388                                        int num_entries)
1389 {
1390         int free_space;
1391
1392         if (!needed_space)
1393                 return 0;
1394
1395         free_space = free_start -
1396                 sizeof(struct ocfs2_xattr_header) -
1397                 (num_entries * sizeof(struct ocfs2_xattr_entry)) -
1398                 OCFS2_XATTR_HEADER_GAP;
1399         if (free_space < 0)
1400                 return -EIO;
1401         if (free_space < needed_space)
1402                 return -ENOSPC;
1403
1404         return 0;
1405 }
1406
1407 static int ocfs2_xa_journal_access(handle_t *handle, struct ocfs2_xa_loc *loc,
1408                                    int type)
1409 {
1410         return loc->xl_ops->xlo_journal_access(handle, loc, type);
1411 }
1412
1413 static void ocfs2_xa_journal_dirty(handle_t *handle, struct ocfs2_xa_loc *loc)
1414 {
1415         loc->xl_ops->xlo_journal_dirty(handle, loc);
1416 }
1417
1418 /* Give a pointer into the storage for the given offset */
1419 static void *ocfs2_xa_offset_pointer(struct ocfs2_xa_loc *loc, int offset)
1420 {
1421         BUG_ON(offset >= loc->xl_size);
1422         return loc->xl_ops->xlo_offset_pointer(loc, offset);
1423 }
1424
1425 /*
1426  * Wipe the name+value pair and allow the storage to reclaim it.  This
1427  * must be followed by either removal of the entry or a call to
1428  * ocfs2_xa_add_namevalue().
1429  */
1430 static void ocfs2_xa_wipe_namevalue(struct ocfs2_xa_loc *loc)
1431 {
1432         loc->xl_ops->xlo_wipe_namevalue(loc);
1433 }
1434
1435 /*
1436  * Find lowest offset to a name+value pair.  This is the start of our
1437  * downward-growing free space.
1438  */
1439 static int ocfs2_xa_get_free_start(struct ocfs2_xa_loc *loc)
1440 {
1441         return loc->xl_ops->xlo_get_free_start(loc);
1442 }
1443
1444 /* Can we reuse loc->xl_entry for xi? */
1445 static int ocfs2_xa_can_reuse_entry(struct ocfs2_xa_loc *loc,
1446                                     struct ocfs2_xattr_info *xi)
1447 {
1448         return loc->xl_ops->xlo_can_reuse(loc, xi);
1449 }
1450
1451 /* How much free space is needed to set the new value */
1452 static int ocfs2_xa_check_space(struct ocfs2_xa_loc *loc,
1453                                 struct ocfs2_xattr_info *xi)
1454 {
1455         return loc->xl_ops->xlo_check_space(loc, xi);
1456 }
1457
1458 static void ocfs2_xa_add_entry(struct ocfs2_xa_loc *loc, u32 name_hash)
1459 {
1460         loc->xl_ops->xlo_add_entry(loc, name_hash);
1461         loc->xl_entry->xe_name_hash = cpu_to_le32(name_hash);
1462         /*
1463          * We can't leave the new entry's xe_name_offset at zero or
1464          * add_namevalue() will go nuts.  We set it to the size of our
1465          * storage so that it can never be less than any other entry.
1466          */
1467         loc->xl_entry->xe_name_offset = cpu_to_le16(loc->xl_size);
1468 }
1469
1470 static void ocfs2_xa_add_namevalue(struct ocfs2_xa_loc *loc,
1471                                    struct ocfs2_xattr_info *xi)
1472 {
1473         int size = namevalue_size_xi(xi);
1474         int nameval_offset;
1475         char *nameval_buf;
1476
1477         loc->xl_ops->xlo_add_namevalue(loc, size);
1478         loc->xl_entry->xe_value_size = cpu_to_le64(xi->xi_value_len);
1479         loc->xl_entry->xe_name_len = xi->xi_name_len;
1480         ocfs2_xattr_set_type(loc->xl_entry, xi->xi_name_index);
1481         ocfs2_xattr_set_local(loc->xl_entry,
1482                               xi->xi_value_len <= OCFS2_XATTR_INLINE_SIZE);
1483
1484         nameval_offset = le16_to_cpu(loc->xl_entry->xe_name_offset);
1485         nameval_buf = ocfs2_xa_offset_pointer(loc, nameval_offset);
1486         memset(nameval_buf, 0, size);
1487         memcpy(nameval_buf, xi->xi_name, xi->xi_name_len);
1488 }
1489
1490 static void ocfs2_xa_fill_value_buf(struct ocfs2_xa_loc *loc,
1491                                     struct ocfs2_xattr_value_buf *vb)
1492 {
1493         int nameval_offset = le16_to_cpu(loc->xl_entry->xe_name_offset);
1494         int name_size = OCFS2_XATTR_SIZE(loc->xl_entry->xe_name_len);
1495
1496         /* Value bufs are for value trees */
1497         BUG_ON(ocfs2_xattr_is_local(loc->xl_entry));
1498         BUG_ON(namevalue_size_xe(loc->xl_entry) !=
1499                (name_size + OCFS2_XATTR_ROOT_SIZE));
1500
1501         loc->xl_ops->xlo_fill_value_buf(loc, vb);
1502         vb->vb_xv =
1503                 (struct ocfs2_xattr_value_root *)ocfs2_xa_offset_pointer(loc,
1504                                                         nameval_offset +
1505                                                         name_size);
1506 }
1507
1508 static int ocfs2_xa_block_journal_access(handle_t *handle,
1509                                          struct ocfs2_xa_loc *loc, int type)
1510 {
1511         struct buffer_head *bh = loc->xl_storage;
1512         ocfs2_journal_access_func access;
1513
1514         if (loc->xl_size == (bh->b_size -
1515                              offsetof(struct ocfs2_xattr_block,
1516                                       xb_attrs.xb_header)))
1517                 access = ocfs2_journal_access_xb;
1518         else
1519                 access = ocfs2_journal_access_di;
1520         return access(handle, INODE_CACHE(loc->xl_inode), bh, type);
1521 }
1522
1523 static void ocfs2_xa_block_journal_dirty(handle_t *handle,
1524                                          struct ocfs2_xa_loc *loc)
1525 {
1526         struct buffer_head *bh = loc->xl_storage;
1527
1528         ocfs2_journal_dirty(handle, bh);
1529 }
1530
1531 static void *ocfs2_xa_block_offset_pointer(struct ocfs2_xa_loc *loc,
1532                                            int offset)
1533 {
1534         return (char *)loc->xl_header + offset;
1535 }
1536
1537 static int ocfs2_xa_block_can_reuse(struct ocfs2_xa_loc *loc,
1538                                     struct ocfs2_xattr_info *xi)
1539 {
1540         /*
1541          * Block storage is strict.  If the sizes aren't exact, we will
1542          * remove the old one and reinsert the new.
1543          */
1544         return namevalue_size_xe(loc->xl_entry) ==
1545                 namevalue_size_xi(xi);
1546 }
1547
1548 static int ocfs2_xa_block_get_free_start(struct ocfs2_xa_loc *loc)
1549 {
1550         struct ocfs2_xattr_header *xh = loc->xl_header;
1551         int i, count = le16_to_cpu(xh->xh_count);
1552         int offset, free_start = loc->xl_size;
1553
1554         for (i = 0; i < count; i++) {
1555                 offset = le16_to_cpu(xh->xh_entries[i].xe_name_offset);
1556                 if (offset < free_start)
1557                         free_start = offset;
1558         }
1559
1560         return free_start;
1561 }
1562
1563 static int ocfs2_xa_block_check_space(struct ocfs2_xa_loc *loc,
1564                                       struct ocfs2_xattr_info *xi)
1565 {
1566         int count = le16_to_cpu(loc->xl_header->xh_count);
1567         int free_start = ocfs2_xa_get_free_start(loc);
1568         int needed_space = ocfs2_xi_entry_usage(xi);
1569
1570         /*
1571          * Block storage will reclaim the original entry before inserting
1572          * the new value, so we only need the difference.  If the new
1573          * entry is smaller than the old one, we don't need anything.
1574          */
1575         if (loc->xl_entry) {
1576                 /* Don't need space if we're reusing! */
1577                 if (ocfs2_xa_can_reuse_entry(loc, xi))
1578                         needed_space = 0;
1579                 else
1580                         needed_space -= ocfs2_xe_entry_usage(loc->xl_entry);
1581         }
1582         if (needed_space < 0)
1583                 needed_space = 0;
1584         return ocfs2_xa_check_space_helper(needed_space, free_start, count);
1585 }
1586
1587 /*
1588  * Block storage for xattrs keeps the name+value pairs compacted.  When
1589  * we remove one, we have to shift any that preceded it towards the end.
1590  */
1591 static void ocfs2_xa_block_wipe_namevalue(struct ocfs2_xa_loc *loc)
1592 {
1593         int i, offset;
1594         int namevalue_offset, first_namevalue_offset, namevalue_size;
1595         struct ocfs2_xattr_entry *entry = loc->xl_entry;
1596         struct ocfs2_xattr_header *xh = loc->xl_header;
1597         int count = le16_to_cpu(xh->xh_count);
1598
1599         namevalue_offset = le16_to_cpu(entry->xe_name_offset);
1600         namevalue_size = namevalue_size_xe(entry);
1601         first_namevalue_offset = ocfs2_xa_get_free_start(loc);
1602
1603         /* Shift the name+value pairs */
1604         memmove((char *)xh + first_namevalue_offset + namevalue_size,
1605                 (char *)xh + first_namevalue_offset,
1606                 namevalue_offset - first_namevalue_offset);
1607         memset((char *)xh + first_namevalue_offset, 0, namevalue_size);
1608
1609         /* Now tell xh->xh_entries about it */
1610         for (i = 0; i < count; i++) {
1611                 offset = le16_to_cpu(xh->xh_entries[i].xe_name_offset);
1612                 if (offset <= namevalue_offset)
1613                         le16_add_cpu(&xh->xh_entries[i].xe_name_offset,
1614                                      namevalue_size);
1615         }
1616
1617         /*
1618          * Note that we don't update xh_free_start or xh_name_value_len
1619          * because they're not used in block-stored xattrs.
1620          */
1621 }
1622
1623 static void ocfs2_xa_block_add_entry(struct ocfs2_xa_loc *loc, u32 name_hash)
1624 {
1625         int count = le16_to_cpu(loc->xl_header->xh_count);
1626         loc->xl_entry = &(loc->xl_header->xh_entries[count]);
1627         le16_add_cpu(&loc->xl_header->xh_count, 1);
1628         memset(loc->xl_entry, 0, sizeof(struct ocfs2_xattr_entry));
1629 }
1630
1631 static void ocfs2_xa_block_add_namevalue(struct ocfs2_xa_loc *loc, int size)
1632 {
1633         int free_start = ocfs2_xa_get_free_start(loc);
1634
1635         loc->xl_entry->xe_name_offset = cpu_to_le16(free_start - size);
1636 }
1637
1638 static void ocfs2_xa_block_fill_value_buf(struct ocfs2_xa_loc *loc,
1639                                           struct ocfs2_xattr_value_buf *vb)
1640 {
1641         struct buffer_head *bh = loc->xl_storage;
1642
1643         if (loc->xl_size == (bh->b_size -
1644                              offsetof(struct ocfs2_xattr_block,
1645                                       xb_attrs.xb_header)))
1646                 vb->vb_access = ocfs2_journal_access_xb;
1647         else
1648                 vb->vb_access = ocfs2_journal_access_di;
1649         vb->vb_bh = bh;
1650 }
1651
1652 /*
1653  * Operations for xattrs stored in blocks.  This includes inline inode
1654  * storage and unindexed ocfs2_xattr_blocks.
1655  */
1656 static const struct ocfs2_xa_loc_operations ocfs2_xa_block_loc_ops = {
1657         .xlo_journal_access     = ocfs2_xa_block_journal_access,
1658         .xlo_journal_dirty      = ocfs2_xa_block_journal_dirty,
1659         .xlo_offset_pointer     = ocfs2_xa_block_offset_pointer,
1660         .xlo_check_space        = ocfs2_xa_block_check_space,
1661         .xlo_can_reuse          = ocfs2_xa_block_can_reuse,
1662         .xlo_get_free_start     = ocfs2_xa_block_get_free_start,
1663         .xlo_wipe_namevalue     = ocfs2_xa_block_wipe_namevalue,
1664         .xlo_add_entry          = ocfs2_xa_block_add_entry,
1665         .xlo_add_namevalue      = ocfs2_xa_block_add_namevalue,
1666         .xlo_fill_value_buf     = ocfs2_xa_block_fill_value_buf,
1667 };
1668
1669 static int ocfs2_xa_bucket_journal_access(handle_t *handle,
1670                                           struct ocfs2_xa_loc *loc, int type)
1671 {
1672         struct ocfs2_xattr_bucket *bucket = loc->xl_storage;
1673
1674         return ocfs2_xattr_bucket_journal_access(handle, bucket, type);
1675 }
1676
1677 static void ocfs2_xa_bucket_journal_dirty(handle_t *handle,
1678                                           struct ocfs2_xa_loc *loc)
1679 {
1680         struct ocfs2_xattr_bucket *bucket = loc->xl_storage;
1681
1682         ocfs2_xattr_bucket_journal_dirty(handle, bucket);
1683 }
1684
1685 static void *ocfs2_xa_bucket_offset_pointer(struct ocfs2_xa_loc *loc,
1686                                             int offset)
1687 {
1688         struct ocfs2_xattr_bucket *bucket = loc->xl_storage;
1689         int block, block_offset;
1690
1691         /* The header is at the front of the bucket */
1692         block = offset >> loc->xl_inode->i_sb->s_blocksize_bits;
1693         block_offset = offset % loc->xl_inode->i_sb->s_blocksize;
1694
1695         return bucket_block(bucket, block) + block_offset;
1696 }
1697
1698 static int ocfs2_xa_bucket_can_reuse(struct ocfs2_xa_loc *loc,
1699                                      struct ocfs2_xattr_info *xi)
1700 {
1701         return namevalue_size_xe(loc->xl_entry) >=
1702                 namevalue_size_xi(xi);
1703 }
1704
1705 static int ocfs2_xa_bucket_get_free_start(struct ocfs2_xa_loc *loc)
1706 {
1707         struct ocfs2_xattr_bucket *bucket = loc->xl_storage;
1708         return le16_to_cpu(bucket_xh(bucket)->xh_free_start);
1709 }
1710
1711 static int ocfs2_bucket_align_free_start(struct super_block *sb,
1712                                          int free_start, int size)
1713 {
1714         /*
1715          * We need to make sure that the name+value pair fits within
1716          * one block.
1717          */
1718         if (((free_start - size) >> sb->s_blocksize_bits) !=
1719             ((free_start - 1) >> sb->s_blocksize_bits))
1720                 free_start -= free_start % sb->s_blocksize;
1721
1722         return free_start;
1723 }
1724
1725 static int ocfs2_xa_bucket_check_space(struct ocfs2_xa_loc *loc,
1726                                        struct ocfs2_xattr_info *xi)
1727 {
1728         int rc;
1729         int count = le16_to_cpu(loc->xl_header->xh_count);
1730         int free_start = ocfs2_xa_get_free_start(loc);
1731         int needed_space = ocfs2_xi_entry_usage(xi);
1732         int size = namevalue_size_xi(xi);
1733         struct super_block *sb = loc->xl_inode->i_sb;
1734
1735         /*
1736          * Bucket storage does not reclaim name+value pairs it cannot
1737          * reuse.  They live as holes until the bucket fills, and then
1738          * the bucket is defragmented.  However, the bucket can reclaim
1739          * the ocfs2_xattr_entry.
1740          */
1741         if (loc->xl_entry) {
1742                 /* Don't need space if we're reusing! */
1743                 if (ocfs2_xa_can_reuse_entry(loc, xi))
1744                         needed_space = 0;
1745                 else
1746                         needed_space -= sizeof(struct ocfs2_xattr_entry);
1747         }
1748         BUG_ON(needed_space < 0);
1749
1750         if (free_start < size) {
1751                 if (needed_space)
1752                         return -ENOSPC;
1753         } else {
1754                 /*
1755                  * First we check if it would fit in the first place.
1756                  * Below, we align the free start to a block.  This may
1757                  * slide us below the minimum gap.  By checking unaligned
1758                  * first, we avoid that error.
1759                  */
1760                 rc = ocfs2_xa_check_space_helper(needed_space, free_start,
1761                                                  count);
1762                 if (rc)
1763                         return rc;
1764                 free_start = ocfs2_bucket_align_free_start(sb, free_start,
1765                                                            size);
1766         }
1767         return ocfs2_xa_check_space_helper(needed_space, free_start, count);
1768 }
1769
1770 static void ocfs2_xa_bucket_wipe_namevalue(struct ocfs2_xa_loc *loc)
1771 {
1772         le16_add_cpu(&loc->xl_header->xh_name_value_len,
1773                      -namevalue_size_xe(loc->xl_entry));
1774 }
1775
1776 static void ocfs2_xa_bucket_add_entry(struct ocfs2_xa_loc *loc, u32 name_hash)
1777 {
1778         struct ocfs2_xattr_header *xh = loc->xl_header;
1779         int count = le16_to_cpu(xh->xh_count);
1780         int low = 0, high = count - 1, tmp;
1781         struct ocfs2_xattr_entry *tmp_xe;
1782
1783         /*
1784          * We keep buckets sorted by name_hash, so we need to find
1785          * our insert place.
1786          */
1787         while (low <= high && count) {
1788                 tmp = (low + high) / 2;
1789                 tmp_xe = &xh->xh_entries[tmp];
1790
1791                 if (name_hash > le32_to_cpu(tmp_xe->xe_name_hash))
1792                         low = tmp + 1;
1793                 else if (name_hash < le32_to_cpu(tmp_xe->xe_name_hash))
1794                         high = tmp - 1;
1795                 else {
1796                         low = tmp;
1797                         break;
1798                 }
1799         }
1800
1801         if (low != count)
1802                 memmove(&xh->xh_entries[low + 1],
1803                         &xh->xh_entries[low],
1804                         ((count - low) * sizeof(struct ocfs2_xattr_entry)));
1805
1806         le16_add_cpu(&xh->xh_count, 1);
1807         loc->xl_entry = &xh->xh_entries[low];
1808         memset(loc->xl_entry, 0, sizeof(struct ocfs2_xattr_entry));
1809 }
1810
1811 static void ocfs2_xa_bucket_add_namevalue(struct ocfs2_xa_loc *loc, int size)
1812 {
1813         int free_start = ocfs2_xa_get_free_start(loc);
1814         struct ocfs2_xattr_header *xh = loc->xl_header;
1815         struct super_block *sb = loc->xl_inode->i_sb;
1816         int nameval_offset;
1817
1818         free_start = ocfs2_bucket_align_free_start(sb, free_start, size);
1819         nameval_offset = free_start - size;
1820         loc->xl_entry->xe_name_offset = cpu_to_le16(nameval_offset);
1821         xh->xh_free_start = cpu_to_le16(nameval_offset);
1822         le16_add_cpu(&xh->xh_name_value_len, size);
1823
1824 }
1825
1826 static void ocfs2_xa_bucket_fill_value_buf(struct ocfs2_xa_loc *loc,
1827                                            struct ocfs2_xattr_value_buf *vb)
1828 {
1829         struct ocfs2_xattr_bucket *bucket = loc->xl_storage;
1830         struct super_block *sb = loc->xl_inode->i_sb;
1831         int nameval_offset = le16_to_cpu(loc->xl_entry->xe_name_offset);
1832         int size = namevalue_size_xe(loc->xl_entry);
1833         int block_offset = nameval_offset >> sb->s_blocksize_bits;
1834
1835         /* Values are not allowed to straddle block boundaries */
1836         BUG_ON(block_offset !=
1837                ((nameval_offset + size - 1) >> sb->s_blocksize_bits));
1838         /* We expect the bucket to be filled in */
1839         BUG_ON(!bucket->bu_bhs[block_offset]);
1840
1841         vb->vb_access = ocfs2_journal_access;
1842         vb->vb_bh = bucket->bu_bhs[block_offset];
1843 }
1844
1845 /* Operations for xattrs stored in buckets. */
1846 static const struct ocfs2_xa_loc_operations ocfs2_xa_bucket_loc_ops = {
1847         .xlo_journal_access     = ocfs2_xa_bucket_journal_access,
1848         .xlo_journal_dirty      = ocfs2_xa_bucket_journal_dirty,
1849         .xlo_offset_pointer     = ocfs2_xa_bucket_offset_pointer,
1850         .xlo_check_space        = ocfs2_xa_bucket_check_space,
1851         .xlo_can_reuse          = ocfs2_xa_bucket_can_reuse,
1852         .xlo_get_free_start     = ocfs2_xa_bucket_get_free_start,
1853         .xlo_wipe_namevalue     = ocfs2_xa_bucket_wipe_namevalue,
1854         .xlo_add_entry          = ocfs2_xa_bucket_add_entry,
1855         .xlo_add_namevalue      = ocfs2_xa_bucket_add_namevalue,
1856         .xlo_fill_value_buf     = ocfs2_xa_bucket_fill_value_buf,
1857 };
1858
1859 static unsigned int ocfs2_xa_value_clusters(struct ocfs2_xa_loc *loc)
1860 {
1861         struct ocfs2_xattr_value_buf vb;
1862
1863         if (ocfs2_xattr_is_local(loc->xl_entry))
1864                 return 0;
1865
1866         ocfs2_xa_fill_value_buf(loc, &vb);
1867         return le32_to_cpu(vb.vb_xv->xr_clusters);
1868 }
1869
1870 static int ocfs2_xa_value_truncate(struct ocfs2_xa_loc *loc, u64 bytes,
1871                                    struct ocfs2_xattr_set_ctxt *ctxt)
1872 {
1873         int trunc_rc, access_rc;
1874         struct ocfs2_xattr_value_buf vb;
1875
1876         ocfs2_xa_fill_value_buf(loc, &vb);
1877         trunc_rc = ocfs2_xattr_value_truncate(loc->xl_inode, &vb, bytes,
1878                                               ctxt);
1879
1880         /*
1881          * The caller of ocfs2_xa_value_truncate() has already called
1882          * ocfs2_xa_journal_access on the loc.  However, The truncate code
1883          * calls ocfs2_extend_trans().  This may commit the previous
1884          * transaction and open a new one.  If this is a bucket, truncate
1885          * could leave only vb->vb_bh set up for journaling.  Meanwhile,
1886          * the caller is expecting to dirty the entire bucket.  So we must
1887          * reset the journal work.  We do this even if truncate has failed,
1888          * as it could have failed after committing the extend.
1889          */
1890         access_rc = ocfs2_xa_journal_access(ctxt->handle, loc,
1891                                             OCFS2_JOURNAL_ACCESS_WRITE);
1892
1893         /* Errors in truncate take precedence */
1894         return trunc_rc ? trunc_rc : access_rc;
1895 }
1896
1897 static void ocfs2_xa_remove_entry(struct ocfs2_xa_loc *loc)
1898 {
1899         int index, count;
1900         struct ocfs2_xattr_header *xh = loc->xl_header;
1901         struct ocfs2_xattr_entry *entry = loc->xl_entry;
1902
1903         ocfs2_xa_wipe_namevalue(loc);
1904         loc->xl_entry = NULL;
1905
1906         le16_add_cpu(&xh->xh_count, -1);
1907         count = le16_to_cpu(xh->xh_count);
1908
1909         /*
1910          * Only zero out the entry if there are more remaining.  This is
1911          * important for an empty bucket, as it keeps track of the
1912          * bucket's hash value.  It doesn't hurt empty block storage.
1913          */
1914         if (count) {
1915                 index = ((char *)entry - (char *)&xh->xh_entries) /
1916                         sizeof(struct ocfs2_xattr_entry);
1917                 memmove(&xh->xh_entries[index], &xh->xh_entries[index + 1],
1918                         (count - index) * sizeof(struct ocfs2_xattr_entry));
1919                 memset(&xh->xh_entries[count], 0,
1920                        sizeof(struct ocfs2_xattr_entry));
1921         }
1922 }
1923
1924 /*
1925  * If we have a problem adjusting the size of an external value during
1926  * ocfs2_xa_prepare_entry() or ocfs2_xa_remove(), we may have an xattr
1927  * in an intermediate state.  For example, the value may be partially
1928  * truncated.
1929  *
1930  * If the value tree hasn't changed, the extend/truncate went nowhere.
1931  * We have nothing to do.  The caller can treat it as a straight error.
1932  *
1933  * If the value tree got partially truncated, we now have a corrupted
1934  * extended attribute.  We're going to wipe its entry and leak the
1935  * clusters.  Better to leak some storage than leave a corrupt entry.
1936  *
1937  * If the value tree grew, it obviously didn't grow enough for the
1938  * new entry.  We're not going to try and reclaim those clusters either.
1939  * If there was already an external value there (orig_clusters != 0),
1940  * the new clusters are attached safely and we can just leave the old
1941  * value in place.  If there was no external value there, we remove
1942  * the entry.
1943  *
1944  * This way, the xattr block we store in the journal will be consistent.
1945  * If the size change broke because of the journal, no changes will hit
1946  * disk anyway.
1947  */
1948 static void ocfs2_xa_cleanup_value_truncate(struct ocfs2_xa_loc *loc,
1949                                             const char *what,
1950                                             unsigned int orig_clusters)
1951 {
1952         unsigned int new_clusters = ocfs2_xa_value_clusters(loc);
1953         char *nameval_buf = ocfs2_xa_offset_pointer(loc,
1954                                 le16_to_cpu(loc->xl_entry->xe_name_offset));
1955
1956         if (new_clusters < orig_clusters) {
1957                 mlog(ML_ERROR,
1958                      "Partial truncate while %s xattr %.*s.  Leaking "
1959                      "%u clusters and removing the entry\n",
1960                      what, loc->xl_entry->xe_name_len, nameval_buf,
1961                      orig_clusters - new_clusters);
1962                 ocfs2_xa_remove_entry(loc);
1963         } else if (!orig_clusters) {
1964                 mlog(ML_ERROR,
1965                      "Unable to allocate an external value for xattr "
1966                      "%.*s safely.  Leaking %u clusters and removing the "
1967                      "entry\n",
1968                      loc->xl_entry->xe_name_len, nameval_buf,
1969                      new_clusters - orig_clusters);
1970                 ocfs2_xa_remove_entry(loc);
1971         } else if (new_clusters > orig_clusters)
1972                 mlog(ML_ERROR,
1973                      "Unable to grow xattr %.*s safely.  %u new clusters "
1974                      "have been added, but the value will not be "
1975                      "modified\n",
1976                      loc->xl_entry->xe_name_len, nameval_buf,
1977                      new_clusters - orig_clusters);
1978 }
1979
1980 static int ocfs2_xa_remove(struct ocfs2_xa_loc *loc,
1981                            struct ocfs2_xattr_set_ctxt *ctxt)
1982 {
1983         int rc = 0;
1984         unsigned int orig_clusters;
1985
1986         if (!ocfs2_xattr_is_local(loc->xl_entry)) {
1987                 orig_clusters = ocfs2_xa_value_clusters(loc);
1988                 rc = ocfs2_xa_value_truncate(loc, 0, ctxt);
1989                 if (rc) {
1990                         mlog_errno(rc);
1991                         /*
1992                          * Since this is remove, we can return 0 if
1993                          * ocfs2_xa_cleanup_value_truncate() is going to
1994                          * wipe the entry anyway.  So we check the
1995                          * cluster count as well.
1996                          */
1997                         if (orig_clusters != ocfs2_xa_value_clusters(loc))
1998                                 rc = 0;
1999                         ocfs2_xa_cleanup_value_truncate(loc, "removing",
2000                                                         orig_clusters);
2001                         if (rc)
2002                                 goto out;
2003                 }
2004         }
2005
2006         ocfs2_xa_remove_entry(loc);
2007
2008 out:
2009         return rc;
2010 }
2011
2012 static void ocfs2_xa_install_value_root(struct ocfs2_xa_loc *loc)
2013 {
2014         int name_size = OCFS2_XATTR_SIZE(loc->xl_entry->xe_name_len);
2015         char *nameval_buf;
2016
2017         nameval_buf = ocfs2_xa_offset_pointer(loc,
2018                                 le16_to_cpu(loc->xl_entry->xe_name_offset));
2019         memcpy(nameval_buf + name_size, &def_xv, OCFS2_XATTR_ROOT_SIZE);
2020 }
2021
2022 /*
2023  * Take an existing entry and make it ready for the new value.  This
2024  * won't allocate space, but it may free space.  It should be ready for
2025  * ocfs2_xa_prepare_entry() to finish the work.
2026  */
2027 static int ocfs2_xa_reuse_entry(struct ocfs2_xa_loc *loc,
2028                                 struct ocfs2_xattr_info *xi,
2029                                 struct ocfs2_xattr_set_ctxt *ctxt)
2030 {
2031         int rc = 0;
2032         int name_size = OCFS2_XATTR_SIZE(xi->xi_name_len);
2033         unsigned int orig_clusters;
2034         char *nameval_buf;
2035         int xe_local = ocfs2_xattr_is_local(loc->xl_entry);
2036         int xi_local = xi->xi_value_len <= OCFS2_XATTR_INLINE_SIZE;
2037
2038         BUG_ON(OCFS2_XATTR_SIZE(loc->xl_entry->xe_name_len) !=
2039                name_size);
2040
2041         nameval_buf = ocfs2_xa_offset_pointer(loc,
2042                                 le16_to_cpu(loc->xl_entry->xe_name_offset));
2043         if (xe_local) {
2044                 memset(nameval_buf + name_size, 0,
2045                        namevalue_size_xe(loc->xl_entry) - name_size);
2046                 if (!xi_local)
2047                         ocfs2_xa_install_value_root(loc);
2048         } else {
2049                 orig_clusters = ocfs2_xa_value_clusters(loc);
2050                 if (xi_local) {
2051                         rc = ocfs2_xa_value_truncate(loc, 0, ctxt);
2052                         if (rc < 0)
2053                                 mlog_errno(rc);
2054                         else
2055                                 memset(nameval_buf + name_size, 0,
2056                                        namevalue_size_xe(loc->xl_entry) -
2057                                        name_size);
2058                 } else if (le64_to_cpu(loc->xl_entry->xe_value_size) >
2059                            xi->xi_value_len) {
2060                         rc = ocfs2_xa_value_truncate(loc, xi->xi_value_len,
2061                                                      ctxt);
2062                         if (rc < 0)
2063                                 mlog_errno(rc);
2064                 }
2065
2066                 if (rc) {
2067                         ocfs2_xa_cleanup_value_truncate(loc, "reusing",
2068                                                         orig_clusters);
2069                         goto out;
2070                 }
2071         }
2072
2073         loc->xl_entry->xe_value_size = cpu_to_le64(xi->xi_value_len);
2074         ocfs2_xattr_set_local(loc->xl_entry, xi_local);
2075
2076 out:
2077         return rc;
2078 }
2079
2080 /*
2081  * Prepares loc->xl_entry to receive the new xattr.  This includes
2082  * properly setting up the name+value pair region.  If loc->xl_entry
2083  * already exists, it will take care of modifying it appropriately.
2084  *
2085  * Note that this modifies the data.  You did journal_access already,
2086  * right?
2087  */
2088 static int ocfs2_xa_prepare_entry(struct ocfs2_xa_loc *loc,
2089                                   struct ocfs2_xattr_info *xi,
2090                                   u32 name_hash,
2091                                   struct ocfs2_xattr_set_ctxt *ctxt)
2092 {
2093         int rc = 0;
2094         unsigned int orig_clusters;
2095         __le64 orig_value_size = 0;
2096
2097         rc = ocfs2_xa_check_space(loc, xi);
2098         if (rc)
2099                 goto out;
2100
2101         if (loc->xl_entry) {
2102                 if (ocfs2_xa_can_reuse_entry(loc, xi)) {
2103                         orig_value_size = loc->xl_entry->xe_value_size;
2104                         rc = ocfs2_xa_reuse_entry(loc, xi, ctxt);
2105                         if (rc)
2106                                 goto out;
2107                         goto alloc_value;
2108                 }
2109
2110                 if (!ocfs2_xattr_is_local(loc->xl_entry)) {
2111                         orig_clusters = ocfs2_xa_value_clusters(loc);
2112                         rc = ocfs2_xa_value_truncate(loc, 0, ctxt);
2113                         if (rc) {
2114                                 mlog_errno(rc);
2115                                 ocfs2_xa_cleanup_value_truncate(loc,
2116                                                                 "overwriting",
2117                                                                 orig_clusters);
2118                                 goto out;
2119                         }
2120                 }
2121                 ocfs2_xa_wipe_namevalue(loc);
2122         } else
2123                 ocfs2_xa_add_entry(loc, name_hash);
2124
2125         /*
2126          * If we get here, we have a blank entry.  Fill it.  We grow our
2127          * name+value pair back from the end.
2128          */
2129         ocfs2_xa_add_namevalue(loc, xi);
2130         if (xi->xi_value_len > OCFS2_XATTR_INLINE_SIZE)
2131                 ocfs2_xa_install_value_root(loc);
2132
2133 alloc_value:
2134         if (xi->xi_value_len > OCFS2_XATTR_INLINE_SIZE) {
2135                 orig_clusters = ocfs2_xa_value_clusters(loc);
2136                 rc = ocfs2_xa_value_truncate(loc, xi->xi_value_len, ctxt);
2137                 if (rc < 0) {
2138                         /*
2139                          * If we tried to grow an existing external value,
2140                          * ocfs2_xa_cleanuP-value_truncate() is going to
2141                          * let it stand.  We have to restore its original
2142                          * value size.
2143                          */
2144                         loc->xl_entry->xe_value_size = orig_value_size;
2145                         ocfs2_xa_cleanup_value_truncate(loc, "growing",
2146                                                         orig_clusters);
2147                         mlog_errno(rc);
2148                 }
2149         }
2150
2151 out:
2152         return rc;
2153 }
2154
2155 /*
2156  * Store the value portion of the name+value pair.  This will skip
2157  * values that are stored externally.  Their tree roots were set up
2158  * by ocfs2_xa_prepare_entry().
2159  */
2160 static int ocfs2_xa_store_value(struct ocfs2_xa_loc *loc,
2161                                 struct ocfs2_xattr_info *xi,
2162                                 struct ocfs2_xattr_set_ctxt *ctxt)
2163 {
2164         int rc = 0;
2165         int nameval_offset = le16_to_cpu(loc->xl_entry->xe_name_offset);
2166         int name_size = OCFS2_XATTR_SIZE(xi->xi_name_len);
2167         char *nameval_buf;
2168         struct ocfs2_xattr_value_buf vb;
2169
2170         nameval_buf = ocfs2_xa_offset_pointer(loc, nameval_offset);
2171         if (xi->xi_value_len > OCFS2_XATTR_INLINE_SIZE) {
2172                 ocfs2_xa_fill_value_buf(loc, &vb);
2173                 rc = __ocfs2_xattr_set_value_outside(loc->xl_inode,
2174                                                      ctxt->handle, &vb,
2175                                                      xi->xi_value,
2176                                                      xi->xi_value_len);
2177         } else
2178                 memcpy(nameval_buf + name_size, xi->xi_value, xi->xi_value_len);
2179
2180         return rc;
2181 }
2182
2183 static int ocfs2_xa_set(struct ocfs2_xa_loc *loc,
2184                         struct ocfs2_xattr_info *xi,
2185                         struct ocfs2_xattr_set_ctxt *ctxt)
2186 {
2187         int ret;
2188         u32 name_hash = ocfs2_xattr_name_hash(loc->xl_inode, xi->xi_name,
2189                                               xi->xi_name_len);
2190
2191         ret = ocfs2_xa_journal_access(ctxt->handle, loc,
2192                                       OCFS2_JOURNAL_ACCESS_WRITE);
2193         if (ret) {
2194                 mlog_errno(ret);
2195                 goto out;
2196         }
2197
2198         /*
2199          * From here on out, everything is going to modify the buffer a
2200          * little.  Errors are going to leave the xattr header in a
2201          * sane state.  Thus, even with errors we dirty the sucker.
2202          */
2203
2204         /* Don't worry, we are never called with !xi_value and !xl_entry */
2205         if (!xi->xi_value) {
2206                 ret = ocfs2_xa_remove(loc, ctxt);
2207                 goto out_dirty;
2208         }
2209
2210         ret = ocfs2_xa_prepare_entry(loc, xi, name_hash, ctxt);
2211         if (ret) {
2212                 if (ret != -ENOSPC)
2213                         mlog_errno(ret);
2214                 goto out_dirty;
2215         }
2216
2217         ret = ocfs2_xa_store_value(loc, xi, ctxt);
2218         if (ret)
2219                 mlog_errno(ret);
2220
2221 out_dirty:
2222         ocfs2_xa_journal_dirty(ctxt->handle, loc);
2223
2224 out:
2225         return ret;
2226 }
2227
2228 static void ocfs2_init_dinode_xa_loc(struct ocfs2_xa_loc *loc,
2229                                      struct inode *inode,
2230                                      struct buffer_head *bh,
2231                                      struct ocfs2_xattr_entry *entry)
2232 {
2233         struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
2234
2235         BUG_ON(!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_XATTR_FL));
2236
2237         loc->xl_inode = inode;
2238         loc->xl_ops = &ocfs2_xa_block_loc_ops;
2239         loc->xl_storage = bh;
2240         loc->xl_entry = entry;
2241         loc->xl_size = le16_to_cpu(di->i_xattr_inline_size);
2242         loc->xl_header =
2243                 (struct ocfs2_xattr_header *)(bh->b_data + bh->b_size -
2244                                               loc->xl_size);
2245 }
2246
2247 static void ocfs2_init_xattr_block_xa_loc(struct ocfs2_xa_loc *loc,
2248                                           struct inode *inode,
2249                                           struct buffer_head *bh,
2250                                           struct ocfs2_xattr_entry *entry)
2251 {
2252         struct ocfs2_xattr_block *xb =
2253                 (struct ocfs2_xattr_block *)bh->b_data;
2254
2255         BUG_ON(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED);
2256
2257         loc->xl_inode = inode;
2258         loc->xl_ops = &ocfs2_xa_block_loc_ops;
2259         loc->xl_storage = bh;
2260         loc->xl_header = &(xb->xb_attrs.xb_header);
2261         loc->xl_entry = entry;
2262         loc->xl_size = bh->b_size - offsetof(struct ocfs2_xattr_block,
2263                                              xb_attrs.xb_header);
2264 }
2265
2266 static void ocfs2_init_xattr_bucket_xa_loc(struct ocfs2_xa_loc *loc,
2267                                            struct ocfs2_xattr_bucket *bucket,
2268                                            struct ocfs2_xattr_entry *entry)
2269 {
2270         loc->xl_inode = bucket->bu_inode;
2271         loc->xl_ops = &ocfs2_xa_bucket_loc_ops;
2272         loc->xl_storage = bucket;
2273         loc->xl_header = bucket_xh(bucket);
2274         loc->xl_entry = entry;
2275         loc->xl_size = OCFS2_XATTR_BUCKET_SIZE;
2276 }
2277
2278 /*
2279  * In xattr remove, if it is stored outside and refcounted, we may have
2280  * the chance to split the refcount tree. So need the allocators.
2281  */
2282 static int ocfs2_lock_xattr_remove_allocators(struct inode *inode,
2283                                         struct ocfs2_xattr_value_root *xv,
2284                                         struct ocfs2_caching_info *ref_ci,
2285                                         struct buffer_head *ref_root_bh,
2286                                         struct ocfs2_alloc_context **meta_ac,
2287                                         int *ref_credits)
2288 {
2289         int ret, meta_add = 0;
2290         u32 p_cluster, num_clusters;
2291         unsigned int ext_flags;
2292
2293         *ref_credits = 0;
2294         ret = ocfs2_xattr_get_clusters(inode, 0, &p_cluster,
2295                                        &num_clusters,
2296                                        &xv->xr_list,
2297                                        &ext_flags);
2298         if (ret) {
2299                 mlog_errno(ret);
2300                 goto out;
2301         }
2302
2303         if (!(ext_flags & OCFS2_EXT_REFCOUNTED))
2304                 goto out;
2305
2306         ret = ocfs2_refcounted_xattr_delete_need(inode, ref_ci,
2307                                                  ref_root_bh, xv,
2308                                                  &meta_add, ref_credits);
2309         if (ret) {
2310                 mlog_errno(ret);
2311                 goto out;
2312         }
2313
2314         ret = ocfs2_reserve_new_metadata_blocks(OCFS2_SB(inode->i_sb),
2315                                                 meta_add, meta_ac);
2316         if (ret)
2317                 mlog_errno(ret);
2318
2319 out:
2320         return ret;
2321 }
2322
2323 static int ocfs2_remove_value_outside(struct inode*inode,
2324                                       struct ocfs2_xattr_value_buf *vb,
2325                                       struct ocfs2_xattr_header *header,
2326                                       struct ocfs2_caching_info *ref_ci,
2327                                       struct buffer_head *ref_root_bh)
2328 {
2329         int ret = 0, i, ref_credits;
2330         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2331         struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
2332         void *val;
2333
2334         ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
2335
2336         for (i = 0; i < le16_to_cpu(header->xh_count); i++) {
2337                 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
2338
2339                 if (ocfs2_xattr_is_local(entry))
2340                         continue;
2341
2342                 val = (void *)header +
2343                         le16_to_cpu(entry->xe_name_offset);
2344                 vb->vb_xv = (struct ocfs2_xattr_value_root *)
2345                         (val + OCFS2_XATTR_SIZE(entry->xe_name_len));
2346
2347                 ret = ocfs2_lock_xattr_remove_allocators(inode, vb->vb_xv,
2348                                                          ref_ci, ref_root_bh,
2349                                                          &ctxt.meta_ac,
2350                                                          &ref_credits);
2351
2352                 ctxt.handle = ocfs2_start_trans(osb, ref_credits +
2353                                         ocfs2_remove_extent_credits(osb->sb));
2354                 if (IS_ERR(ctxt.handle)) {
2355                         ret = PTR_ERR(ctxt.handle);
2356                         mlog_errno(ret);
2357                         break;
2358                 }
2359
2360                 ret = ocfs2_xattr_value_truncate(inode, vb, 0, &ctxt);
2361                 if (ret < 0) {
2362                         mlog_errno(ret);
2363                         break;
2364                 }
2365
2366                 ocfs2_commit_trans(osb, ctxt.handle);
2367                 if (ctxt.meta_ac) {
2368                         ocfs2_free_alloc_context(ctxt.meta_ac);
2369                         ctxt.meta_ac = NULL;
2370                 }
2371         }
2372
2373         if (ctxt.meta_ac)
2374                 ocfs2_free_alloc_context(ctxt.meta_ac);
2375         ocfs2_schedule_truncate_log_flush(osb, 1);
2376         ocfs2_run_deallocs(osb, &ctxt.dealloc);
2377         return ret;
2378 }
2379
2380 static int ocfs2_xattr_ibody_remove(struct inode *inode,
2381                                     struct buffer_head *di_bh,
2382                                     struct ocfs2_caching_info *ref_ci,
2383                                     struct buffer_head *ref_root_bh)
2384 {
2385
2386         struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
2387         struct ocfs2_xattr_header *header;
2388         int ret;
2389         struct ocfs2_xattr_value_buf vb = {
2390                 .vb_bh = di_bh,
2391                 .vb_access = ocfs2_journal_access_di,
2392         };
2393
2394         header = (struct ocfs2_xattr_header *)
2395                  ((void *)di + inode->i_sb->s_blocksize -
2396                  le16_to_cpu(di->i_xattr_inline_size));
2397
2398         ret = ocfs2_remove_value_outside(inode, &vb, header,
2399                                          ref_ci, ref_root_bh);
2400
2401         return ret;
2402 }
2403
2404 struct ocfs2_rm_xattr_bucket_para {
2405         struct ocfs2_caching_info *ref_ci;
2406         struct buffer_head *ref_root_bh;
2407 };
2408
2409 static int ocfs2_xattr_block_remove(struct inode *inode,
2410                                     struct buffer_head *blk_bh,
2411                                     struct ocfs2_caching_info *ref_ci,
2412                                     struct buffer_head *ref_root_bh)
2413 {
2414         struct ocfs2_xattr_block *xb;
2415         int ret = 0;
2416         struct ocfs2_xattr_value_buf vb = {
2417                 .vb_bh = blk_bh,
2418                 .vb_access = ocfs2_journal_access_xb,
2419         };
2420         struct ocfs2_rm_xattr_bucket_para args = {
2421                 .ref_ci = ref_ci,
2422                 .ref_root_bh = ref_root_bh,
2423         };
2424
2425         xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
2426         if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
2427                 struct ocfs2_xattr_header *header = &(xb->xb_attrs.xb_header);
2428                 ret = ocfs2_remove_value_outside(inode, &vb, header,
2429                                                  ref_ci, ref_root_bh);
2430         } else
2431                 ret = ocfs2_iterate_xattr_index_block(inode,
2432                                                 blk_bh,
2433                                                 ocfs2_rm_xattr_cluster,
2434                                                 &args);
2435
2436         return ret;
2437 }
2438
2439 static int ocfs2_xattr_free_block(struct inode *inode,
2440                                   u64 block,
2441                                   struct ocfs2_caching_info *ref_ci,
2442                                   struct buffer_head *ref_root_bh)
2443 {
2444         struct inode *xb_alloc_inode;
2445         struct buffer_head *xb_alloc_bh = NULL;
2446         struct buffer_head *blk_bh = NULL;
2447         struct ocfs2_xattr_block *xb;
2448         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2449         handle_t *handle;
2450         int ret = 0;
2451         u64 blk, bg_blkno;
2452         u16 bit;
2453
2454         ret = ocfs2_read_xattr_block(inode, block, &blk_bh);
2455         if (ret < 0) {
2456                 mlog_errno(ret);
2457                 goto out;
2458         }
2459
2460         ret = ocfs2_xattr_block_remove(inode, blk_bh, ref_ci, ref_root_bh);
2461         if (ret < 0) {
2462                 mlog_errno(ret);
2463                 goto out;
2464         }
2465
2466         xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
2467         blk = le64_to_cpu(xb->xb_blkno);
2468         bit = le16_to_cpu(xb->xb_suballoc_bit);
2469         bg_blkno = ocfs2_which_suballoc_group(blk, bit);
2470
2471         xb_alloc_inode = ocfs2_get_system_file_inode(osb,
2472                                 EXTENT_ALLOC_SYSTEM_INODE,
2473                                 le16_to_cpu(xb->xb_suballoc_slot));
2474         if (!xb_alloc_inode) {
2475                 ret = -ENOMEM;
2476                 mlog_errno(ret);
2477                 goto out;
2478         }
2479         mutex_lock(&xb_alloc_inode->i_mutex);
2480
2481         ret = ocfs2_inode_lock(xb_alloc_inode, &xb_alloc_bh, 1);
2482         if (ret < 0) {
2483                 mlog_errno(ret);
2484                 goto out_mutex;
2485         }
2486
2487         handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE);
2488         if (IS_ERR(handle)) {
2489                 ret = PTR_ERR(handle);
2490                 mlog_errno(ret);
2491                 goto out_unlock;
2492         }
2493
2494         ret = ocfs2_free_suballoc_bits(handle, xb_alloc_inode, xb_alloc_bh,
2495                                        bit, bg_blkno, 1);
2496         if (ret < 0)
2497                 mlog_errno(ret);
2498
2499         ocfs2_commit_trans(osb, handle);
2500 out_unlock:
2501         ocfs2_inode_unlock(xb_alloc_inode, 1);
2502         brelse(xb_alloc_bh);
2503 out_mutex:
2504         mutex_unlock(&xb_alloc_inode->i_mutex);
2505         iput(xb_alloc_inode);
2506 out:
2507         brelse(blk_bh);
2508         return ret;
2509 }
2510
2511 /*
2512  * ocfs2_xattr_remove()
2513  *
2514  * Free extended attribute resources associated with this inode.
2515  */
2516 int ocfs2_xattr_remove(struct inode *inode, struct buffer_head *di_bh)
2517 {
2518         struct ocfs2_inode_info *oi = OCFS2_I(inode);
2519         struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
2520         struct ocfs2_refcount_tree *ref_tree = NULL;
2521         struct buffer_head *ref_root_bh = NULL;
2522         struct ocfs2_caching_info *ref_ci = NULL;
2523         handle_t *handle;
2524         int ret;
2525
2526         if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2527                 return 0;
2528
2529         if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
2530                 return 0;
2531
2532         if (OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL) {
2533                 ret = ocfs2_lock_refcount_tree(OCFS2_SB(inode->i_sb),
2534                                                le64_to_cpu(di->i_refcount_loc),
2535                                                1, &ref_tree, &ref_root_bh);
2536                 if (ret) {
2537                         mlog_errno(ret);
2538                         goto out;
2539                 }
2540                 ref_ci = &ref_tree->rf_ci;
2541
2542         }
2543
2544         if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
2545                 ret = ocfs2_xattr_ibody_remove(inode, di_bh,
2546                                                ref_ci, ref_root_bh);
2547                 if (ret < 0) {
2548                         mlog_errno(ret);
2549                         goto out;
2550                 }
2551         }
2552
2553         if (di->i_xattr_loc) {
2554                 ret = ocfs2_xattr_free_block(inode,
2555                                              le64_to_cpu(di->i_xattr_loc),
2556                                              ref_ci, ref_root_bh);
2557                 if (ret < 0) {
2558                         mlog_errno(ret);
2559                         goto out;
2560                 }
2561         }
2562
2563         handle = ocfs2_start_trans((OCFS2_SB(inode->i_sb)),
2564                                    OCFS2_INODE_UPDATE_CREDITS);
2565         if (IS_ERR(handle)) {
2566                 ret = PTR_ERR(handle);
2567                 mlog_errno(ret);
2568                 goto out;
2569         }
2570         ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
2571                                       OCFS2_JOURNAL_ACCESS_WRITE);
2572         if (ret) {
2573                 mlog_errno(ret);
2574                 goto out_commit;
2575         }
2576
2577         di->i_xattr_loc = 0;
2578
2579         spin_lock(&oi->ip_lock);
2580         oi->ip_dyn_features &= ~(OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL);
2581         di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
2582         spin_unlock(&oi->ip_lock);
2583
2584         ocfs2_journal_dirty(handle, di_bh);
2585 out_commit:
2586         ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
2587 out:
2588         if (ref_tree)
2589                 ocfs2_unlock_refcount_tree(OCFS2_SB(inode->i_sb), ref_tree, 1);
2590         brelse(ref_root_bh);
2591         return ret;
2592 }
2593
2594 static int ocfs2_xattr_has_space_inline(struct inode *inode,
2595                                         struct ocfs2_dinode *di)
2596 {
2597         struct ocfs2_inode_info *oi = OCFS2_I(inode);
2598         unsigned int xattrsize = OCFS2_SB(inode->i_sb)->s_xattr_inline_size;
2599         int free;
2600
2601         if (xattrsize < OCFS2_MIN_XATTR_INLINE_SIZE)
2602                 return 0;
2603
2604         if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
2605                 struct ocfs2_inline_data *idata = &di->id2.i_data;
2606                 free = le16_to_cpu(idata->id_count) - le64_to_cpu(di->i_size);
2607         } else if (ocfs2_inode_is_fast_symlink(inode)) {
2608                 free = ocfs2_fast_symlink_chars(inode->i_sb) -
2609                         le64_to_cpu(di->i_size);
2610         } else {
2611                 struct ocfs2_extent_list *el = &di->id2.i_list;
2612                 free = (le16_to_cpu(el->l_count) -
2613                         le16_to_cpu(el->l_next_free_rec)) *
2614                         sizeof(struct ocfs2_extent_rec);
2615         }
2616         if (free >= xattrsize)
2617                 return 1;
2618
2619         return 0;
2620 }
2621
2622 /*
2623  * ocfs2_xattr_ibody_find()
2624  *
2625  * Find extended attribute in inode block and
2626  * fill search info into struct ocfs2_xattr_search.
2627  */
2628 static int ocfs2_xattr_ibody_find(struct inode *inode,
2629                                   int name_index,
2630                                   const char *name,
2631                                   struct ocfs2_xattr_search *xs)
2632 {
2633         struct ocfs2_inode_info *oi = OCFS2_I(inode);
2634         struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2635         int ret;
2636         int has_space = 0;
2637
2638         if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
2639                 return 0;
2640
2641         if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
2642                 down_read(&oi->ip_alloc_sem);
2643                 has_space = ocfs2_xattr_has_space_inline(inode, di);
2644                 up_read(&oi->ip_alloc_sem);
2645                 if (!has_space)
2646                         return 0;
2647         }
2648
2649         xs->xattr_bh = xs->inode_bh;
2650         xs->end = (void *)di + inode->i_sb->s_blocksize;
2651         if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)
2652                 xs->header = (struct ocfs2_xattr_header *)
2653                         (xs->end - le16_to_cpu(di->i_xattr_inline_size));
2654         else
2655                 xs->header = (struct ocfs2_xattr_header *)
2656                         (xs->end - OCFS2_SB(inode->i_sb)->s_xattr_inline_size);
2657         xs->base = (void *)xs->header;
2658         xs->here = xs->header->xh_entries;
2659
2660         /* Find the named attribute. */
2661         if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
2662                 ret = ocfs2_xattr_find_entry(name_index, name, xs);
2663                 if (ret && ret != -ENODATA)
2664                         return ret;
2665                 xs->not_found = ret;
2666         }
2667
2668         return 0;
2669 }
2670
2671 static int ocfs2_xattr_ibody_init(struct inode *inode,
2672                                   struct buffer_head *di_bh,
2673                                   struct ocfs2_xattr_set_ctxt *ctxt)
2674 {
2675         int ret;
2676         struct ocfs2_inode_info *oi = OCFS2_I(inode);
2677         struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
2678         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2679         unsigned int xattrsize = osb->s_xattr_inline_size;
2680
2681         if (!ocfs2_xattr_has_space_inline(inode, di)) {
2682                 ret = -ENOSPC;
2683                 goto out;
2684         }
2685
2686         ret = ocfs2_journal_access_di(ctxt->handle, INODE_CACHE(inode), di_bh,
2687                                       OCFS2_JOURNAL_ACCESS_WRITE);
2688         if (ret) {
2689                 mlog_errno(ret);
2690                 goto out;
2691         }
2692
2693         /*
2694          * Adjust extent record count or inline data size
2695          * to reserve space for extended attribute.
2696          */
2697         if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
2698                 struct ocfs2_inline_data *idata = &di->id2.i_data;
2699                 le16_add_cpu(&idata->id_count, -xattrsize);
2700         } else if (!(ocfs2_inode_is_fast_symlink(inode))) {
2701                 struct ocfs2_extent_list *el = &di->id2.i_list;
2702                 le16_add_cpu(&el->l_count, -(xattrsize /
2703                                              sizeof(struct ocfs2_extent_rec)));
2704         }
2705         di->i_xattr_inline_size = cpu_to_le16(xattrsize);
2706
2707         spin_lock(&oi->ip_lock);
2708         oi->ip_dyn_features |= OCFS2_INLINE_XATTR_FL|OCFS2_HAS_XATTR_FL;
2709         di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
2710         spin_unlock(&oi->ip_lock);
2711
2712         ocfs2_journal_dirty(ctxt->handle, di_bh);
2713
2714 out:
2715         return ret;
2716 }
2717
2718 /*
2719  * ocfs2_xattr_ibody_set()
2720  *
2721  * Set, replace or remove an extended attribute into inode block.
2722  *
2723  */
2724 static int ocfs2_xattr_ibody_set(struct inode *inode,
2725                                  struct ocfs2_xattr_info *xi,
2726                                  struct ocfs2_xattr_search *xs,
2727                                  struct ocfs2_xattr_set_ctxt *ctxt)
2728 {
2729         int ret;
2730         struct ocfs2_inode_info *oi = OCFS2_I(inode);
2731         struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2732         struct ocfs2_xa_loc loc;
2733
2734         if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
2735                 return -ENOSPC;
2736
2737         down_write(&oi->ip_alloc_sem);
2738         if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
2739                 if (!ocfs2_xattr_has_space_inline(inode, di)) {
2740                         ret = -ENOSPC;
2741                         goto out;
2742                 }
2743         }
2744
2745         if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
2746                 ret = ocfs2_xattr_ibody_init(inode, xs->inode_bh, ctxt);
2747                 if (ret) {
2748                         if (ret != -ENOSPC)
2749                                 mlog_errno(ret);
2750                         goto out;
2751                 }
2752         }
2753
2754         ocfs2_init_dinode_xa_loc(&loc, inode, xs->inode_bh,
2755                                  xs->not_found ? NULL : xs->here);
2756         ret = ocfs2_xa_set(&loc, xi, ctxt);
2757         if (ret) {
2758                 if (ret != -ENOSPC)
2759                         mlog_errno(ret);
2760                 goto out;
2761         }
2762         xs->here = loc.xl_entry;
2763
2764 out:
2765         up_write(&oi->ip_alloc_sem);
2766
2767         return ret;
2768 }
2769
2770 /*
2771  * ocfs2_xattr_block_find()
2772  *
2773  * Find extended attribute in external block and
2774  * fill search info into struct ocfs2_xattr_search.
2775  */
2776 static int ocfs2_xattr_block_find(struct inode *inode,
2777                                   int name_index,
2778                                   const char *name,
2779                                   struct ocfs2_xattr_search *xs)
2780 {
2781         struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2782         struct buffer_head *blk_bh = NULL;
2783         struct ocfs2_xattr_block *xb;
2784         int ret = 0;
2785
2786         if (!di->i_xattr_loc)
2787                 return ret;
2788
2789         ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
2790                                      &blk_bh);
2791         if (ret < 0) {
2792                 mlog_errno(ret);
2793                 return ret;
2794         }
2795
2796         xs->xattr_bh = blk_bh;
2797         xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
2798
2799         if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
2800                 xs->header = &xb->xb_attrs.xb_header;
2801                 xs->base = (void *)xs->header;
2802                 xs->end = (void *)(blk_bh->b_data) + blk_bh->b_size;
2803                 xs->here = xs->header->xh_entries;
2804
2805                 ret = ocfs2_xattr_find_entry(name_index, name, xs);
2806         } else
2807                 ret = ocfs2_xattr_index_block_find(inode, blk_bh,
2808                                                    name_index,
2809                                                    name, xs);
2810
2811         if (ret && ret != -ENODATA) {
2812                 xs->xattr_bh = NULL;
2813                 goto cleanup;
2814         }
2815         xs->not_found = ret;
2816         return 0;
2817 cleanup:
2818         brelse(blk_bh);
2819
2820         return ret;
2821 }
2822
2823 static int ocfs2_create_xattr_block(struct inode *inode,
2824                                     struct buffer_head *inode_bh,
2825                                     struct ocfs2_xattr_set_ctxt *ctxt,
2826                                     int indexed,
2827                                     struct buffer_head **ret_bh)
2828 {
2829         int ret;
2830         u16 suballoc_bit_start;
2831         u32 num_got;
2832         u64 first_blkno;
2833         struct ocfs2_dinode *di =  (struct ocfs2_dinode *)inode_bh->b_data;
2834         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2835         struct buffer_head *new_bh = NULL;
2836         struct ocfs2_xattr_block *xblk;
2837
2838         ret = ocfs2_journal_access_di(ctxt->handle, INODE_CACHE(inode),
2839                                       inode_bh, OCFS2_JOURNAL_ACCESS_CREATE);
2840         if (ret < 0) {
2841                 mlog_errno(ret);
2842                 goto end;
2843         }
2844
2845         ret = ocfs2_claim_metadata(osb, ctxt->handle, ctxt->meta_ac, 1,
2846                                    &suballoc_bit_start, &num_got,
2847                                    &first_blkno);
2848         if (ret < 0) {
2849                 mlog_errno(ret);
2850                 goto end;
2851         }
2852
2853         new_bh = sb_getblk(inode->i_sb, first_blkno);
2854         ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), new_bh);
2855
2856         ret = ocfs2_journal_access_xb(ctxt->handle, INODE_CACHE(inode),
2857                                       new_bh,
2858                                       OCFS2_JOURNAL_ACCESS_CREATE);
2859         if (ret < 0) {
2860                 mlog_errno(ret);
2861                 goto end;
2862         }
2863
2864         /* Initialize ocfs2_xattr_block */
2865         xblk = (struct ocfs2_xattr_block *)new_bh->b_data;
2866         memset(xblk, 0, inode->i_sb->s_blocksize);
2867         strcpy((void *)xblk, OCFS2_XATTR_BLOCK_SIGNATURE);
2868         xblk->xb_suballoc_slot = cpu_to_le16(ctxt->meta_ac->ac_alloc_slot);
2869         xblk->xb_suballoc_bit = cpu_to_le16(suballoc_bit_start);
2870         xblk->xb_fs_generation = cpu_to_le32(osb->fs_generation);
2871         xblk->xb_blkno = cpu_to_le64(first_blkno);
2872         if (indexed) {
2873                 struct ocfs2_xattr_tree_root *xr = &xblk->xb_attrs.xb_root;
2874                 xr->xt_clusters = cpu_to_le32(1);
2875                 xr->xt_last_eb_blk = 0;
2876                 xr->xt_list.l_tree_depth = 0;
2877                 xr->xt_list.l_count = cpu_to_le16(
2878                                         ocfs2_xattr_recs_per_xb(inode->i_sb));
2879                 xr->xt_list.l_next_free_rec = cpu_to_le16(1);
2880                 xblk->xb_flags = cpu_to_le16(OCFS2_XATTR_INDEXED);
2881         }
2882         ocfs2_journal_dirty(ctxt->handle, new_bh);
2883
2884         /* Add it to the inode */
2885         di->i_xattr_loc = cpu_to_le64(first_blkno);
2886
2887         spin_lock(&OCFS2_I(inode)->ip_lock);
2888         OCFS2_I(inode)->ip_dyn_features |= OCFS2_HAS_XATTR_FL;
2889         di->i_dyn_features = cpu_to_le16(OCFS2_I(inode)->ip_dyn_features);
2890         spin_unlock(&OCFS2_I(inode)->ip_lock);
2891
2892         ocfs2_journal_dirty(ctxt->handle, inode_bh);
2893
2894         *ret_bh = new_bh;
2895         new_bh = NULL;
2896
2897 end:
2898         brelse(new_bh);
2899         return ret;
2900 }
2901
2902 /*
2903  * ocfs2_xattr_block_set()
2904  *
2905  * Set, replace or remove an extended attribute into external block.
2906  *
2907  */
2908 static int ocfs2_xattr_block_set(struct inode *inode,
2909                                  struct ocfs2_xattr_info *xi,
2910                                  struct ocfs2_xattr_search *xs,
2911                                  struct ocfs2_xattr_set_ctxt *ctxt)
2912 {
2913         struct buffer_head *new_bh = NULL;
2914         struct ocfs2_xattr_block *xblk = NULL;
2915         int ret;
2916         struct ocfs2_xa_loc loc;
2917
2918         if (!xs->xattr_bh) {
2919                 ret = ocfs2_create_xattr_block(inode, xs->inode_bh, ctxt,
2920                                                0, &new_bh);
2921                 if (ret) {
2922                         mlog_errno(ret);
2923                         goto end;
2924                 }
2925
2926                 xs->xattr_bh = new_bh;
2927                 xblk = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
2928                 xs->header = &xblk->xb_attrs.xb_header;
2929                 xs->base = (void *)xs->header;
2930                 xs->end = (void *)xblk + inode->i_sb->s_blocksize;
2931                 xs->here = xs->header->xh_entries;
2932         } else
2933                 xblk = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
2934
2935         if (!(le16_to_cpu(xblk->xb_flags) & OCFS2_XATTR_INDEXED)) {
2936                 ocfs2_init_xattr_block_xa_loc(&loc, inode, xs->xattr_bh,
2937                                               xs->not_found ? NULL : xs->here);
2938
2939                 ret = ocfs2_xa_set(&loc, xi, ctxt);
2940                 if (!ret)
2941                         xs->here = loc.xl_entry;
2942                 else if (ret != -ENOSPC)
2943                         goto end;
2944                 else {
2945                         ret = ocfs2_xattr_create_index_block(inode, xs, ctxt);
2946                         if (ret)
2947                                 goto end;
2948                 }
2949         }
2950
2951         if (le16_to_cpu(xblk->xb_flags) & OCFS2_XATTR_INDEXED)
2952                 ret = ocfs2_xattr_set_entry_index_block(inode, xi, xs, ctxt);
2953
2954 end:
2955         return ret;
2956 }
2957
2958 /* Check whether the new xattr can be inserted into the inode. */
2959 static int ocfs2_xattr_can_be_in_inode(struct inode *inode,
2960                                        struct ocfs2_xattr_info *xi,
2961                                        struct ocfs2_xattr_search *xs)
2962 {
2963         struct ocfs2_xattr_entry *last;
2964         int free, i;
2965         size_t min_offs = xs->end - xs->base;
2966
2967         if (!xs->header)
2968                 return 0;
2969
2970         last = xs->header->xh_entries;
2971
2972         for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
2973                 size_t offs = le16_to_cpu(last->xe_name_offset);
2974                 if (offs < min_offs)
2975                         min_offs = offs;
2976                 last += 1;
2977         }
2978
2979         free = min_offs - ((void *)last - xs->base) - OCFS2_XATTR_HEADER_GAP;
2980         if (free < 0)
2981                 return 0;
2982
2983         BUG_ON(!xs->not_found);
2984
2985         if (free >= (sizeof(struct ocfs2_xattr_entry) + namevalue_size_xi(xi)))
2986                 return 1;
2987
2988         return 0;
2989 }
2990
2991 static int ocfs2_calc_xattr_set_need(struct inode *inode,
2992                                      struct ocfs2_dinode *di,
2993                                      struct ocfs2_xattr_info *xi,
2994                                      struct ocfs2_xattr_search *xis,
2995                                      struct ocfs2_xattr_search *xbs,
2996                                      int *clusters_need,
2997                                      int *meta_need,
2998                                      int *credits_need)
2999 {
3000         int ret = 0, old_in_xb = 0;
3001         int clusters_add = 0, meta_add = 0, credits = 0;
3002         struct buffer_head *bh = NULL;
3003         struct ocfs2_xattr_block *xb = NULL;
3004         struct ocfs2_xattr_entry *xe = NULL;
3005         struct ocfs2_xattr_value_root *xv = NULL;
3006         char *base = NULL;
3007         int name_offset, name_len = 0;
3008         u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
3009                                                     xi->xi_value_len);
3010         u64 value_size;
3011
3012         /*
3013          * Calculate the clusters we need to write.
3014          * No matter whether we replace an old one or add a new one,
3015          * we need this for writing.
3016          */
3017         if (xi->xi_value_len > OCFS2_XATTR_INLINE_SIZE)
3018                 credits += new_clusters *
3019                            ocfs2_clusters_to_blocks(inode->i_sb, 1);
3020
3021         if (xis->not_found && xbs->not_found) {
3022                 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
3023
3024                 if (xi->xi_value_len > OCFS2_XATTR_INLINE_SIZE) {
3025                         clusters_add += new_clusters;
3026                         credits += ocfs2_calc_extend_credits(inode->i_sb,
3027                                                         &def_xv.xv.xr_list,
3028                                                         new_clusters);
3029                 }
3030
3031                 goto meta_guess;
3032         }
3033
3034         if (!xis->not_found) {
3035                 xe = xis->here;
3036                 name_offset = le16_to_cpu(xe->xe_name_offset);
3037                 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3038                 base = xis->base;
3039                 credits += OCFS2_INODE_UPDATE_CREDITS;
3040         } else {
3041                 int i, block_off = 0;
3042                 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
3043                 xe = xbs->here;
3044                 name_offset = le16_to_cpu(xe->xe_name_offset);
3045                 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3046                 i = xbs->here - xbs->header->xh_entries;
3047                 old_in_xb = 1;
3048
3049                 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
3050                         ret = ocfs2_xattr_bucket_get_name_value(inode->i_sb,
3051                                                         bucket_xh(xbs->bucket),
3052                                                         i, &block_off,
3053                                                         &name_offset);
3054                         base = bucket_block(xbs->bucket, block_off);
3055                         credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
3056                 } else {
3057                         base = xbs->base;
3058                         credits += OCFS2_XATTR_BLOCK_UPDATE_CREDITS;
3059                 }
3060         }
3061
3062         /*
3063          * delete a xattr doesn't need metadata and cluster allocation.
3064          * so just calculate the credits and return.
3065          *
3066          * The credits for removing the value tree will be extended
3067          * by ocfs2_remove_extent itself.
3068          */
3069         if (!xi->xi_value) {
3070                 if (!ocfs2_xattr_is_local(xe))
3071                         credits += ocfs2_remove_extent_credits(inode->i_sb);
3072
3073                 goto out;
3074         }
3075
3076         /* do cluster allocation guess first. */
3077         value_size = le64_to_cpu(xe->xe_value_size);
3078
3079         if (old_in_xb) {
3080                 /*
3081                  * In xattr set, we always try to set the xe in inode first,
3082                  * so if it can be inserted into inode successfully, the old
3083                  * one will be removed from the xattr block, and this xattr
3084                  * will be inserted into inode as a new xattr in inode.
3085                  */
3086                 if (ocfs2_xattr_can_be_in_inode(inode, xi, xis)) {
3087                         clusters_add += new_clusters;
3088                         credits += ocfs2_remove_extent_credits(inode->i_sb) +
3089                                     OCFS2_INODE_UPDATE_CREDITS;
3090                         if (!ocfs2_xattr_is_local(xe))
3091                                 credits += ocfs2_calc_extend_credits(
3092                                                         inode->i_sb,
3093                                                         &def_xv.xv.xr_list,
3094                                                         new_clusters);
3095                         goto out;
3096                 }
3097         }
3098
3099         if (xi->xi_value_len > OCFS2_XATTR_INLINE_SIZE) {
3100                 /* the new values will be stored outside. */
3101                 u32 old_clusters = 0;
3102
3103                 if (!ocfs2_xattr_is_local(xe)) {
3104                         old_clusters =  ocfs2_clusters_for_bytes(inode->i_sb,
3105                                                                  value_size);
3106                         xv = (struct ocfs2_xattr_value_root *)
3107                              (base + name_offset + name_len);
3108                         value_size = OCFS2_XATTR_ROOT_SIZE;
3109                 } else
3110                         xv = &def_xv.xv;
3111
3112                 if (old_clusters >= new_clusters) {
3113                         credits += ocfs2_remove_extent_credits(inode->i_sb);
3114                         goto out;
3115                 } else {
3116                         meta_add += ocfs2_extend_meta_needed(&xv->xr_list);
3117                         clusters_add += new_clusters - old_clusters;
3118                         credits += ocfs2_calc_extend_credits(inode->i_sb,
3119                                                              &xv->xr_list,
3120                                                              new_clusters -
3121                                                              old_clusters);
3122                         if (value_size >= OCFS2_XATTR_ROOT_SIZE)
3123                                 goto out;
3124                 }
3125         } else {
3126                 /*
3127                  * Now the new value will be stored inside. So if the new
3128                  * value is smaller than the size of value root or the old
3129                  * value, we don't need any allocation, otherwise we have
3130                  * to guess metadata allocation.
3131                  */
3132                 if ((ocfs2_xattr_is_local(xe) &&
3133                      (value_size >= xi->xi_value_len)) ||
3134                     (!ocfs2_xattr_is_local(xe) &&
3135                      OCFS2_XATTR_ROOT_SIZE >= xi->xi_value_len))
3136                         goto out;
3137         }
3138
3139 meta_guess:
3140         /* calculate metadata allocation. */
3141         if (di->i_xattr_loc) {
3142                 if (!xbs->xattr_bh) {
3143                         ret = ocfs2_read_xattr_block(inode,
3144                                                      le64_to_cpu(di->i_xattr_loc),
3145                                                      &bh);
3146                         if (ret) {
3147                                 mlog_errno(ret);
3148                                 goto out;
3149                         }
3150
3151                         xb = (struct ocfs2_xattr_block *)bh->b_data;
3152                 } else
3153                         xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
3154
3155                 /*
3156                  * If there is already an xattr tree, good, we can calculate
3157                  * like other b-trees. Otherwise we may have the chance of
3158                  * create a tree, the credit calculation is borrowed from
3159                  * ocfs2_calc_extend_credits with root_el = NULL. And the
3160                  * new tree will be cluster based, so no meta is needed.
3161                  */
3162                 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
3163                         struct ocfs2_extent_list *el =
3164                                  &xb->xb_attrs.xb_root.xt_list;
3165                         meta_add += ocfs2_extend_meta_needed(el);
3166                         credits += ocfs2_calc_extend_credits(inode->i_sb,
3167                                                              el, 1);
3168                 } else
3169                         credits += OCFS2_SUBALLOC_ALLOC + 1;
3170
3171                 /*
3172                  * This cluster will be used either for new bucket or for
3173                  * new xattr block.
3174                  * If the cluster size is the same as the bucket size, one
3175                  * more is needed since we may need to extend the bucket
3176                  * also.
3177                  */
3178                 clusters_add += 1;
3179                 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
3180                 if (OCFS2_XATTR_BUCKET_SIZE ==
3181                         OCFS2_SB(inode->i_sb)->s_clustersize) {
3182                         credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
3183                         clusters_add += 1;
3184                 }
3185         } else {
3186                 meta_add += 1;
3187                 credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
3188         }
3189 out:
3190         if (clusters_need)
3191                 *clusters_need = clusters_add;
3192         if (meta_need)
3193                 *meta_need = meta_add;
3194         if (credits_need)
3195                 *credits_need = credits;
3196         brelse(bh);
3197         return ret;
3198 }
3199
3200 static int ocfs2_init_xattr_set_ctxt(struct inode *inode,
3201                                      struct ocfs2_dinode *di,
3202                                      struct ocfs2_xattr_info *xi,
3203                                      struct ocfs2_xattr_search *xis,
3204                                      struct ocfs2_xattr_search *xbs,
3205                                      struct ocfs2_xattr_set_ctxt *ctxt,
3206                                      int extra_meta,
3207                                      int *credits)
3208 {
3209         int clusters_add, meta_add, ret;
3210         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3211
3212         memset(ctxt, 0, sizeof(struct ocfs2_xattr_set_ctxt));
3213
3214         ocfs2_init_dealloc_ctxt(&ctxt->dealloc);
3215
3216         ret = ocfs2_calc_xattr_set_need(inode, di, xi, xis, xbs,
3217                                         &clusters_add, &meta_add, credits);
3218         if (ret) {
3219                 mlog_errno(ret);
3220                 return ret;
3221         }
3222
3223         meta_add += extra_meta;
3224         mlog(0, "Set xattr %s, reserve meta blocks = %d, clusters = %d, "
3225              "credits = %d\n", xi->xi_name, meta_add, clusters_add, *credits);
3226
3227         if (meta_add) {
3228                 ret = ocfs2_reserve_new_metadata_blocks(osb, meta_add,
3229                                                         &ctxt->meta_ac);
3230                 if (ret) {
3231                         mlog_errno(ret);
3232                         goto out;
3233                 }
3234         }
3235
3236         if (clusters_add) {
3237                 ret = ocfs2_reserve_clusters(osb, clusters_add, &ctxt->data_ac);
3238                 if (ret)
3239                         mlog_errno(ret);
3240         }
3241 out:
3242         if (ret) {
3243                 if (ctxt->meta_ac) {
3244                         ocfs2_free_alloc_context(ctxt->meta_ac);
3245                         ctxt->meta_ac = NULL;
3246                 }
3247
3248                 /*
3249                  * We cannot have an error and a non null ctxt->data_ac.
3250                  */
3251         }
3252
3253         return ret;
3254 }
3255
3256 static int __ocfs2_xattr_set_handle(struct inode *inode,
3257                                     struct ocfs2_dinode *di,
3258                                     struct ocfs2_xattr_info *xi,
3259                                     struct ocfs2_xattr_search *xis,
3260                                     struct ocfs2_xattr_search *xbs,
3261                                     struct ocfs2_xattr_set_ctxt *ctxt)
3262 {
3263         int ret = 0, credits, old_found;
3264
3265         if (!xi->xi_value) {
3266                 /* Remove existing extended attribute */
3267                 if (!xis->not_found)
3268                         ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
3269                 else if (!xbs->not_found)
3270                         ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
3271         } else {
3272                 /* We always try to set extended attribute into inode first*/
3273                 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
3274                 if (!ret && !xbs->not_found) {
3275                         /*
3276                          * If succeed and that extended attribute existing in
3277                          * external block, then we will remove it.
3278                          */
3279                         xi->xi_value = NULL;
3280                         xi->xi_value_len = 0;
3281
3282                         old_found = xis->not_found;
3283                         xis->not_found = -ENODATA;
3284                         ret = ocfs2_calc_xattr_set_need(inode,
3285                                                         di,
3286                                                         xi,
3287                                                         xis,
3288                                                         xbs,
3289                                                         NULL,
3290                                                         NULL,
3291                                                         &credits);
3292                         xis->not_found = old_found;
3293                         if (ret) {
3294                                 mlog_errno(ret);
3295                                 goto out;
3296                         }
3297
3298                         ret = ocfs2_extend_trans(ctxt->handle, credits +
3299                                         ctxt->handle->h_buffer_credits);
3300                         if (ret) {
3301                                 mlog_errno(ret);
3302                                 goto out;
3303                         }
3304                         ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
3305                 } else if (ret == -ENOSPC) {
3306                         if (di->i_xattr_loc && !xbs->xattr_bh) {
3307                                 ret = ocfs2_xattr_block_find(inode,
3308                                                              xi->xi_name_index,
3309                                                              xi->xi_name, xbs);
3310                                 if (ret)
3311                                         goto out;
3312
3313                                 old_found = xis->not_found;
3314                                 xis->not_found = -ENODATA;
3315                                 ret = ocfs2_calc_xattr_set_need(inode,
3316                                                                 di,
3317                                                                 xi,
3318                                                                 xis,
3319                                                                 xbs,
3320                                                                 NULL,
3321                                                                 NULL,
3322                                                                 &credits);
3323                                 xis->not_found = old_found;
3324                                 if (ret) {
3325                                         mlog_errno(ret);
3326                                         goto out;
3327                                 }
3328
3329                                 ret = ocfs2_extend_trans(ctxt->handle, credits +
3330                                         ctxt->handle->h_buffer_credits);
3331                                 if (ret) {
3332                                         mlog_errno(ret);
3333                                         goto out;
3334                                 }
3335                         }
3336                         /*
3337                          * If no space in inode, we will set extended attribute
3338                          * into external block.
3339                          */
3340                         ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
3341                         if (ret)
3342                                 goto out;
3343                         if (!xis->not_found) {
3344                                 /*
3345                                  * If succeed and that extended attribute
3346                                  * existing in inode, we will remove it.
3347                                  */
3348                                 xi->xi_value = NULL;
3349                                 xi->xi_value_len = 0;
3350                                 xbs->not_found = -ENODATA;
3351                                 ret = ocfs2_calc_xattr_set_need(inode,
3352                                                                 di,
3353                                                                 xi,
3354                                                                 xis,
3355                                                                 xbs,
3356                                                                 NULL,
3357                                                                 NULL,
3358                                                                 &credits);
3359                                 if (ret) {
3360                                         mlog_errno(ret);
3361                                         goto out;
3362                                 }
3363
3364                                 ret = ocfs2_extend_trans(ctxt->handle, credits +
3365                                                 ctxt->handle->h_buffer_credits);
3366                                 if (ret) {
3367                                         mlog_errno(ret);
3368                                         goto out;
3369                                 }
3370                                 ret = ocfs2_xattr_ibody_set(inode, xi,
3371                                                             xis, ctxt);
3372                         }
3373                 }
3374         }
3375
3376         if (!ret) {
3377                 /* Update inode ctime. */
3378                 ret = ocfs2_journal_access_di(ctxt->handle, INODE_CACHE(inode),
3379                                               xis->inode_bh,
3380                                               OCFS2_JOURNAL_ACCESS_WRITE);
3381                 if (ret) {
3382                         mlog_errno(ret);
3383                         goto out;
3384                 }
3385
3386                 inode->i_ctime = CURRENT_TIME;
3387                 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
3388                 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
3389                 ocfs2_journal_dirty(ctxt->handle, xis->inode_bh);
3390         }
3391 out:
3392         return ret;
3393 }
3394
3395 /*
3396  * This function only called duing creating inode
3397  * for init security/acl xattrs of the new inode.
3398  * All transanction credits have been reserved in mknod.
3399  */
3400 int ocfs2_xattr_set_handle(handle_t *handle,
3401                            struct inode *inode,
3402                            struct buffer_head *di_bh,
3403                            int name_index,
3404                            const char *name,
3405                            const void *value,
3406                            size_t value_len,
3407                            int flags,
3408                            struct ocfs2_alloc_context *meta_ac,
3409                            struct ocfs2_alloc_context *data_ac)
3410 {
3411         struct ocfs2_dinode *di;
3412         int ret;
3413
3414         struct ocfs2_xattr_info xi = {
3415                 .xi_name_index = name_index,
3416                 .xi_name = name,
3417                 .xi_name_len = strlen(name),
3418                 .xi_value = value,
3419                 .xi_value_len = value_len,
3420         };
3421
3422         struct ocfs2_xattr_search xis = {
3423                 .not_found = -ENODATA,
3424         };
3425
3426         struct ocfs2_xattr_search xbs = {
3427                 .not_found = -ENODATA,
3428         };
3429
3430         struct ocfs2_xattr_set_ctxt ctxt = {
3431                 .handle = handle,
3432                 .meta_ac = meta_ac,
3433                 .data_ac = data_ac,
3434         };
3435
3436         if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
3437                 return -EOPNOTSUPP;
3438
3439         /*
3440          * In extreme situation, may need xattr bucket when
3441          * block size is too small. And we have already reserved
3442          * the credits for bucket in mknod.
3443          */
3444         if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE) {
3445                 xbs.bucket = ocfs2_xattr_bucket_new(inode);
3446                 if (!xbs.bucket) {
3447                         mlog_errno(-ENOMEM);
3448                         return -ENOMEM;
3449                 }
3450         }
3451
3452         xis.inode_bh = xbs.inode_bh = di_bh;
3453         di = (struct ocfs2_dinode *)di_bh->b_data;
3454
3455         down_write(&OCFS2_I(inode)->ip_xattr_sem);
3456
3457         ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
3458         if (ret)
3459                 goto cleanup;
3460         if (xis.not_found) {
3461                 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
3462                 if (ret)
3463                         goto cleanup;
3464         }
3465
3466         ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
3467
3468 cleanup:
3469         up_write(&OCFS2_I(inode)->ip_xattr_sem);
3470         brelse(xbs.xattr_bh);
3471         ocfs2_xattr_bucket_free(xbs.bucket);
3472
3473         return ret;
3474 }
3475
3476 /*
3477  * ocfs2_xattr_set()
3478  *
3479  * Set, replace or remove an extended attribute for this inode.
3480  * value is NULL to remove an existing extended attribute, else either
3481  * create or replace an extended attribute.
3482  */
3483 int ocfs2_xattr_set(struct inode *inode,
3484                     int name_index,
3485                     const char *name,
3486                     const void *value,
3487                     size_t value_len,
3488                     int flags)
3489 {
3490         struct buffer_head *di_bh = NULL;
3491         struct ocfs2_dinode *di;
3492         int ret, credits, ref_meta = 0, ref_credits = 0;
3493         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3494         struct inode *tl_inode = osb->osb_tl_inode;
3495         struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
3496         struct ocfs2_refcount_tree *ref_tree = NULL;
3497
3498         struct ocfs2_xattr_info xi = {
3499                 .xi_name_index = name_index,
3500                 .xi_name = name,
3501                 .xi_name_len = strlen(name),
3502                 .xi_value = value,
3503                 .xi_value_len = value_len,
3504         };
3505
3506         struct ocfs2_xattr_search xis = {
3507                 .not_found = -ENODATA,
3508         };
3509
3510         struct ocfs2_xattr_search xbs = {
3511                 .not_found = -ENODATA,
3512         };
3513
3514         if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
3515                 return -EOPNOTSUPP;
3516
3517         /*
3518          * Only xbs will be used on indexed trees.  xis doesn't need a
3519          * bucket.
3520          */
3521         xbs.bucket = ocfs2_xattr_bucket_new(inode);
3522         if (!xbs.bucket) {
3523                 mlog_errno(-ENOMEM);
3524                 return -ENOMEM;
3525         }
3526
3527         ret = ocfs2_inode_lock(inode, &di_bh, 1);
3528         if (ret < 0) {
3529                 mlog_errno(ret);
3530                 goto cleanup_nolock;
3531         }
3532         xis.inode_bh = xbs.inode_bh = di_bh;
3533         di = (struct ocfs2_dinode *)di_bh->b_data;
3534
3535         down_write(&OCFS2_I(inode)->ip_xattr_sem);
3536         /*
3537          * Scan inode and external block to find the same name
3538          * extended attribute and collect search infomation.
3539          */
3540         ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
3541         if (ret)
3542                 goto cleanup;
3543         if (xis.not_found) {
3544                 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
3545                 if (ret)
3546                         goto cleanup;
3547         }
3548
3549         if (xis.not_found && xbs.not_found) {
3550                 ret = -ENODATA;
3551                 if (flags & XATTR_REPLACE)
3552                         goto cleanup;
3553                 ret = 0;
3554                 if (!value)
3555                         goto cleanup;
3556         } else {
3557                 ret = -EEXIST;
3558                 if (flags & XATTR_CREATE)
3559                         goto cleanup;
3560         }
3561
3562         /* Check whether the value is refcounted and do some prepartion. */
3563         if (OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL &&
3564             (!xis.not_found || !xbs.not_found)) {
3565                 ret = ocfs2_prepare_refcount_xattr(inode, di, &xi,
3566                                                    &xis, &xbs, &ref_tree,
3567                                                    &ref_meta, &ref_credits);
3568                 if (ret) {
3569                         mlog_errno(ret);
3570                         goto cleanup;
3571                 }
3572         }
3573
3574         mutex_lock(&tl_inode->i_mutex);
3575
3576         if (ocfs2_truncate_log_needs_flush(osb)) {
3577                 ret = __ocfs2_flush_truncate_log(osb);
3578                 if (ret < 0) {
3579                         mutex_unlock(&tl_inode->i_mutex);
3580                         mlog_errno(ret);
3581                         goto cleanup;
3582                 }
3583         }
3584         mutex_unlock(&tl_inode->i_mutex);
3585
3586         ret = ocfs2_init_xattr_set_ctxt(inode, di, &xi, &xis,
3587                                         &xbs, &ctxt, ref_meta, &credits);
3588         if (ret) {
3589                 mlog_errno(ret);
3590                 goto cleanup;
3591         }
3592
3593         /* we need to update inode's ctime field, so add credit for it. */
3594         credits += OCFS2_INODE_UPDATE_CREDITS;
3595         ctxt.handle = ocfs2_start_trans(osb, credits + ref_credits);
3596         if (IS_ERR(ctxt.handle)) {
3597                 ret = PTR_ERR(ctxt.handle);
3598                 mlog_errno(ret);
3599                 goto cleanup;
3600         }
3601
3602         ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
3603
3604         ocfs2_commit_trans(osb, ctxt.handle);
3605
3606         if (ctxt.data_ac)
3607                 ocfs2_free_alloc_context(ctxt.data_ac);
3608         if (ctxt.meta_ac)
3609                 ocfs2_free_alloc_context(ctxt.meta_ac);
3610         if (ocfs2_dealloc_has_cluster(&ctxt.dealloc))
3611                 ocfs2_schedule_truncate_log_flush(osb, 1);
3612         ocfs2_run_deallocs(osb, &ctxt.dealloc);
3613
3614 cleanup:
3615         if (ref_tree)
3616                 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
3617         up_write(&OCFS2_I(inode)->ip_xattr_sem);
3618         if (!value && !ret) {
3619                 ret = ocfs2_try_remove_refcount_tree(inode, di_bh);
3620                 if (ret)
3621                         mlog_errno(ret);
3622         }
3623         ocfs2_inode_unlock(inode, 1);
3624 cleanup_nolock:
3625         brelse(di_bh);
3626         brelse(xbs.xattr_bh);
3627         ocfs2_xattr_bucket_free(xbs.bucket);
3628
3629         return ret;
3630 }
3631
3632 /*
3633  * Find the xattr extent rec which may contains name_hash.
3634  * e_cpos will be the first name hash of the xattr rec.
3635  * el must be the ocfs2_xattr_header.xb_attrs.xb_root.xt_list.
3636  */
3637 static int ocfs2_xattr_get_rec(struct inode *inode,
3638                                u32 name_hash,
3639                                u64 *p_blkno,
3640                                u32 *e_cpos,
3641                                u32 *num_clusters,
3642                                struct ocfs2_extent_list *el)
3643 {
3644         int ret = 0, i;
3645         struct buffer_head *eb_bh = NULL;
3646         struct ocfs2_extent_block *eb;
3647         struct ocfs2_extent_rec *rec = NULL;
3648         u64 e_blkno = 0;
3649
3650         if (el->l_tree_depth) {
3651                 ret = ocfs2_find_leaf(INODE_CACHE(inode), el, name_hash,
3652                                       &eb_bh);
3653                 if (ret) {
3654                         mlog_errno(ret);
3655                         goto out;
3656                 }
3657
3658                 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
3659                 el = &eb->h_list;
3660
3661                 if (el->l_tree_depth) {
3662                         ocfs2_error(inode->i_sb,
3663                                     "Inode %lu has non zero tree depth in "
3664                                     "xattr tree block %llu\n", inode->i_ino,
3665                                     (unsigned long long)eb_bh->b_blocknr);
3666                         ret = -EROFS;
3667                         goto out;
3668                 }
3669         }
3670
3671         for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
3672                 rec = &el->l_recs[i];
3673
3674                 if (le32_to_cpu(rec->e_cpos) <= name_hash) {
3675                         e_blkno = le64_to_cpu(rec->e_blkno);
3676                         break;
3677                 }
3678         }
3679
3680         if (!e_blkno) {
3681                 ocfs2_error(inode->i_sb, "Inode %lu has bad extent "
3682                             "record (%u, %u, 0) in xattr", inode->i_ino,
3683                             le32_to_cpu(rec->e_cpos),
3684                             ocfs2_rec_clusters(el, rec));
3685                 ret = -EROFS;
3686                 goto out;
3687         }
3688
3689         *p_blkno = le64_to_cpu(rec->e_blkno);
3690         *num_clusters = le16_to_cpu(rec->e_leaf_clusters);
3691         if (e_cpos)
3692                 *e_cpos = le32_to_cpu(rec->e_cpos);
3693 out:
3694         brelse(eb_bh);
3695         return ret;
3696 }
3697
3698 typedef int (xattr_bucket_func)(struct inode *inode,
3699                                 struct ocfs2_xattr_bucket *bucket,
3700                                 void *para);
3701
3702 static int ocfs2_find_xe_in_bucket(struct inode *inode,
3703                                    struct ocfs2_xattr_bucket *bucket,
3704                                    int name_index,
3705                                    const char *name,
3706                                    u32 name_hash,
3707                                    u16 *xe_index,
3708                                    int *found)
3709 {
3710         int i, ret = 0, cmp = 1, block_off, new_offset;
3711         struct ocfs2_xattr_header *xh = bucket_xh(bucket);
3712         size_t name_len = strlen(name);
3713         struct ocfs2_xattr_entry *xe = NULL;
3714         char *xe_name;
3715
3716         /*
3717          * We don't use binary search in the bucket because there
3718          * may be multiple entries with the same name hash.
3719          */
3720         for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
3721                 xe = &xh->xh_entries[i];
3722
3723                 if (name_hash > le32_to_cpu(xe->xe_name_hash))
3724                         continue;
3725                 else if (name_hash < le32_to_cpu(xe->xe_name_hash))
3726                         break;
3727
3728                 cmp = name_index - ocfs2_xattr_get_type(xe);
3729                 if (!cmp)
3730                         cmp = name_len - xe->xe_name_len;
3731                 if (cmp)
3732                         continue;
3733
3734                 ret = ocfs2_xattr_bucket_get_name_value(inode->i_sb,
3735                                                         xh,
3736                                                         i,
3737                                                         &block_off,
3738                                                         &new_offset);
3739                 if (ret) {
3740                         mlog_errno(ret);
3741                         break;
3742                 }
3743
3744
3745                 xe_name = bucket_block(bucket, block_off) + new_offset;
3746                 if (!memcmp(name, xe_name, name_len)) {
3747                         *xe_index = i;
3748                         *found = 1;
3749                         ret = 0;
3750                         break;
3751                 }
3752         }
3753
3754         return ret;
3755 }
3756
3757 /*
3758  * Find the specified xattr entry in a series of buckets.
3759  * This series start from p_blkno and last for num_clusters.
3760  * The ocfs2_xattr_header.xh_num_buckets of the first bucket contains
3761  * the num of the valid buckets.
3762  *
3763  * Return the buffer_head this xattr should reside in. And if the xattr's
3764  * hash is in the gap of 2 buckets, return the lower bucket.
3765  */
3766 static int ocfs2_xattr_bucket_find(struct inode *inode,
3767                                    int name_index,
3768                                    const char *name,
3769                                    u32 name_hash,
3770                                    u64 p_blkno,
3771                                    u32 first_hash,
3772                                    u32 num_clusters,
3773                                    struct ocfs2_xattr_search *xs)
3774 {
3775         int ret, found = 0;
3776         struct ocfs2_xattr_header *xh = NULL;
3777         struct ocfs2_xattr_entry *xe = NULL;
3778         u16 index = 0;
3779         u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
3780         int low_bucket = 0, bucket, high_bucket;
3781         struct ocfs2_xattr_bucket *search;
3782         u32 last_hash;
3783         u64 blkno, lower_blkno = 0;
3784
3785         search = ocfs2_xattr_bucket_new(inode);
3786         if (!search) {
3787                 ret = -ENOMEM;
3788                 mlog_errno(ret);
3789                 goto out;
3790         }
3791
3792         ret = ocfs2_read_xattr_bucket(search, p_blkno);
3793         if (ret) {
3794                 mlog_errno(ret);
3795                 goto out;
3796         }
3797
3798         xh = bucket_xh(search);
3799         high_bucket = le16_to_cpu(xh->xh_num_buckets) - 1;
3800         while (low_bucket <= high_bucket) {
3801                 ocfs2_xattr_bucket_relse(search);
3802
3803                 bucket = (low_bucket + high_bucket) / 2;
3804                 blkno = p_blkno + bucket * blk_per_bucket;
3805                 ret = ocfs2_read_xattr_bucket(search, blkno);
3806                 if (ret) {
3807                         mlog_errno(ret);
3808                         goto out;
3809                 }
3810
3811                 xh = bucket_xh(search);
3812                 xe = &xh->xh_entries[0];
3813                 if (name_hash < le32_to_cpu(xe->xe_name_hash)) {
3814                         high_bucket = bucket - 1;
3815                         continue;
3816                 }
3817
3818                 /*
3819                  * Check whether the hash of the last entry in our
3820                  * bucket is larger than the search one. for an empty
3821                  * bucket, the last one is also the first one.
3822                  */
3823                 if (xh->xh_count)
3824                         xe = &xh->xh_entries[le16_to_cpu(xh->xh_count) - 1];
3825
3826                 last_hash = le32_to_cpu(xe->xe_name_hash);
3827
3828                 /* record lower_blkno which may be the insert place. */
3829                 lower_blkno = blkno;
3830
3831                 if (name_hash > le32_to_cpu(xe->xe_name_hash)) {
3832                         low_bucket = bucket + 1;
3833                         continue;
3834                 }
3835
3836                 /* the searched xattr should reside in this bucket if exists. */
3837                 ret = ocfs2_find_xe_in_bucket(inode, search,
3838                                               name_index, name, name_hash,
3839                                               &index, &found);
3840                 if (ret) {
3841                         mlog_errno(ret);
3842                         goto out;
3843                 }
3844                 break;
3845         }
3846
3847         /*
3848          * Record the bucket we have found.
3849          * When the xattr's hash value is in the gap of 2 buckets, we will
3850          * always set it to the previous bucket.
3851          */
3852         if (!lower_blkno)
3853                 lower_blkno = p_blkno;
3854
3855         /* This should be in cache - we just read it during the search */
3856         ret = ocfs2_read_xattr_bucket(xs->bucket, lower_blkno);
3857         if (ret) {
3858                 mlog_errno(ret);
3859                 goto out;
3860         }
3861
3862         xs->header = bucket_xh(xs->bucket);
3863         xs->base = bucket_block(xs->bucket, 0);
3864         xs->end = xs->base + inode->i_sb->s_blocksize;
3865
3866         if (found) {
3867                 xs->here = &xs->header->xh_entries[index];
3868                 mlog(0, "find xattr %s in bucket %llu, entry = %u\n", name,
3869                      (unsigned long long)bucket_blkno(xs->bucket), index);
3870         } else
3871                 ret = -ENODATA;
3872
3873 out:
3874         ocfs2_xattr_bucket_free(search);
3875         return ret;
3876 }
3877
3878 static int ocfs2_xattr_index_block_find(struct inode *inode,
3879                                         struct buffer_head *root_bh,
3880                                         int name_index,
3881                                         const char *name,
3882                                         struct ocfs2_xattr_search *xs)
3883 {
3884         int ret;
3885         struct ocfs2_xattr_block *xb =
3886                         (struct ocfs2_xattr_block *)root_bh->b_data;
3887         struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
3888         struct ocfs2_extent_list *el = &xb_root->xt_list;
3889         u64 p_blkno = 0;
3890         u32 first_hash, num_clusters = 0;
3891         u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
3892
3893         if (le16_to_cpu(el->l_next_free_rec) == 0)
3894                 return -ENODATA;
3895
3896         mlog(0, "find xattr %s, hash = %u, index = %d in xattr tree\n",
3897              name, name_hash, name_index);
3898
3899         ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &first_hash,
3900                                   &num_clusters, el);
3901         if (ret) {
3902                 mlog_errno(ret);
3903                 goto out;
3904         }
3905
3906         BUG_ON(p_blkno == 0 || num_clusters == 0 || first_hash > name_hash);
3907
3908         mlog(0, "find xattr extent rec %u clusters from %llu, the first hash "
3909              "in the rec is %u\n", num_clusters, (unsigned long long)p_blkno,
3910              first_hash);
3911
3912         ret = ocfs2_xattr_bucket_find(inode, name_index, name, name_hash,
3913                                       p_blkno, first_hash, num_clusters, xs);
3914
3915 out:
3916         return ret;
3917 }
3918
3919 static int ocfs2_iterate_xattr_buckets(struct inode *inode,
3920                                        u64 blkno,
3921                                        u32 clusters,
3922                                        xattr_bucket_func *func,
3923                                        void *para)
3924 {
3925         int i, ret = 0;
3926         u32 bpc = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb));
3927         u32 num_buckets = clusters * bpc;
3928         struct ocfs2_xattr_bucket *bucket;
3929
3930         bucket = ocfs2_xattr_bucket_new(inode);
3931         if (!bucket) {
3932                 mlog_errno(-ENOMEM);
3933                 return -ENOMEM;
3934         }
3935
3936         mlog(0, "iterating xattr buckets in %u clusters starting from %llu\n",
3937              clusters, (unsigned long long)blkno);
3938
3939         for (i = 0; i < num_buckets; i++, blkno += bucket->bu_blocks) {
3940                 ret = ocfs2_read_xattr_bucket(bucket, blkno);
3941                 if (ret) {
3942                         mlog_errno(ret);
3943                         break;
3944                 }
3945
3946                 /*
3947                  * The real bucket num in this series of blocks is stored
3948                  * in the 1st bucket.
3949                  */
3950                 if (i == 0)
3951                         num_buckets = le16_to_cpu(bucket_xh(bucket)->xh_num_buckets);
3952
3953                 mlog(0, "iterating xattr bucket %llu, first hash %u\n",
3954                      (unsigned long long)blkno,
3955                      le32_to_cpu(bucket_xh(bucket)->xh_entries[0].xe_name_hash));
3956                 if (func) {
3957                         ret = func(inode, bucket, para);
3958                         if (ret && ret != -ERANGE)
3959                                 mlog_errno(ret);
3960                         /* Fall through to bucket_relse() */
3961                 }
3962
3963                 ocfs2_xattr_bucket_relse(bucket);
3964                 if (ret)
3965                         break;
3966         }
3967
3968         ocfs2_xattr_bucket_free(bucket);
3969         return ret;
3970 }
3971
3972 struct ocfs2_xattr_tree_list {
3973         char *buffer;
3974         size_t buffer_size;
3975         size_t result;
3976 };
3977
3978 static int ocfs2_xattr_bucket_get_name_value(struct super_block *sb,
3979                                              struct ocfs2_xattr_header *xh,
3980                                              int index,
3981                                              int *block_off,
3982                                              int *new_offset)
3983 {
3984         u16 name_offset;
3985
3986         if (index < 0 || index >= le16_to_cpu(xh->xh_count))
3987                 return -EINVAL;
3988
3989         name_offset = le16_to_cpu(xh->xh_entries[index].xe_name_offset);
3990
3991         *block_off = name_offset >> sb->s_blocksize_bits;
3992         *new_offset = name_offset % sb->s_blocksize;
3993
3994         return 0;
3995 }
3996
3997 static int ocfs2_list_xattr_bucket(struct inode *inode,
3998                                    struct ocfs2_xattr_bucket *bucket,
3999                                    void *para)
4000 {
4001         int ret = 0, type;
4002         struct ocfs2_xattr_tree_list *xl = (struct ocfs2_xattr_tree_list *)para;
4003         int i, block_off, new_offset;
4004         const char *prefix, *name;
4005
4006         for (i = 0 ; i < le16_to_cpu(bucket_xh(bucket)->xh_count); i++) {
4007                 struct ocfs2_xattr_entry *entry = &bucket_xh(bucket)->xh_entries[i];
4008                 type = ocfs2_xattr_get_type(entry);
4009                 prefix = ocfs2_xattr_prefix(type);
4010
4011                 if (prefix) {
4012                         ret = ocfs2_xattr_bucket_get_name_value(inode->i_sb,
4013                                                                 bucket_xh(bucket),
4014                                                                 i,
4015                                                                 &block_off,
4016                                                                 &new_offset);
4017                         if (ret)
4018                                 break;
4019
4020                         name = (const char *)bucket_block(bucket, block_off) +
4021                                 new_offset;
4022                         ret = ocfs2_xattr_list_entry(xl->buffer,
4023                                                      xl->buffer_size,
4024                                                      &xl->result,
4025                                                      prefix, name,
4026                                                      entry->xe_name_len);
4027                         if (ret)
4028                                 break;
4029                 }
4030         }
4031
4032         return ret;
4033 }
4034
4035 static int ocfs2_iterate_xattr_index_block(struct inode *inode,
4036                                            struct buffer_head *blk_bh,
4037                                            xattr_tree_rec_func *rec_func,
4038                                            void *para)
4039 {
4040         struct ocfs2_xattr_block *xb =
4041                         (struct ocfs2_xattr_block *)blk_bh->b_data;
4042         struct ocfs2_extent_list *el = &xb->xb_attrs.xb_root.xt_list;
4043         int ret = 0;
4044         u32 name_hash = UINT_MAX, e_cpos = 0, num_clusters = 0;
4045         u64 p_blkno = 0;
4046
4047         if (!el->l_next_free_rec || !rec_func)
4048                 return 0;
4049
4050         while (name_hash > 0) {
4051                 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
4052                                           &e_cpos, &num_clusters, el);
4053                 if (ret) {
4054                         mlog_errno(ret);
4055                         break;
4056                 }
4057
4058                 ret = rec_func(inode, blk_bh, p_blkno, e_cpos,
4059                                num_clusters, para);
4060                 if (ret) {
4061                         if (ret != -ERANGE)
4062                                 mlog_errno(ret);
4063                         break;
4064                 }
4065
4066                 if (e_cpos == 0)
4067                         break;
4068
4069                 name_hash = e_cpos - 1;
4070         }
4071
4072         return ret;
4073
4074 }
4075
4076 static int ocfs2_list_xattr_tree_rec(struct inode *inode,
4077                                      struct buffer_head *root_bh,
4078                                      u64 blkno, u32 cpos, u32 len, void *para)
4079 {
4080         return ocfs2_iterate_xattr_buckets(inode, blkno, len,
4081                                            ocfs2_list_xattr_bucket, para);
4082 }
4083
4084 static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
4085                                              struct buffer_head *blk_bh,
4086                                              char *buffer,
4087                                              size_t buffer_size)
4088 {
4089         int ret;
4090         struct ocfs2_xattr_tree_list xl = {
4091                 .buffer = buffer,
4092                 .buffer_size = buffer_size,
4093                 .result = 0,
4094         };
4095
4096         ret = ocfs2_iterate_xattr_index_block(inode, blk_bh,
4097                                               ocfs2_list_xattr_tree_rec, &xl);
4098         if (ret) {
4099                 mlog_errno(ret);
4100                 goto out;
4101         }
4102
4103         ret = xl.result;
4104 out:
4105         return ret;
4106 }
4107
4108 static int cmp_xe(const void *a, const void *b)
4109 {
4110         const struct ocfs2_xattr_entry *l = a, *r = b;
4111         u32 l_hash = le32_to_cpu(l->xe_name_hash);
4112         u32 r_hash = le32_to_cpu(r->xe_name_hash);
4113
4114         if (l_hash > r_hash)
4115                 return 1;
4116         if (l_hash < r_hash)
4117                 return -1;
4118         return 0;
4119 }
4120
4121 static void swap_xe(void *a, void *b, int size)
4122 {
4123         struct ocfs2_xattr_entry *l = a, *r = b, tmp;
4124
4125         tmp = *l;
4126         memcpy(l, r, sizeof(struct ocfs2_xattr_entry));
4127         memcpy(r, &tmp, sizeof(struct ocfs2_xattr_entry));
4128 }
4129
4130 /*
4131  * When the ocfs2_xattr_block is filled up, new bucket will be created
4132  * and all the xattr entries will be moved to the new bucket.
4133  * The header goes at the start of the bucket, and the names+values are
4134  * filled from the end.  This is why *target starts as the last buffer.
4135  * Note: we need to sort the entries since they are not saved in order
4136  * in the ocfs2_xattr_block.
4137  */
4138 static void ocfs2_cp_xattr_block_to_bucket(struct inode *inode,
4139                                            struct buffer_head *xb_bh,
4140                                            struct ocfs2_xattr_bucket *bucket)
4141 {
4142         int i, blocksize = inode->i_sb->s_blocksize;
4143         int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
4144         u16 offset, size, off_change;
4145         struct ocfs2_xattr_entry *xe;
4146         struct ocfs2_xattr_block *xb =
4147                                 (struct ocfs2_xattr_block *)xb_bh->b_data;
4148         struct ocfs2_xattr_header *xb_xh = &xb->xb_attrs.xb_header;
4149         struct ocfs2_xattr_header *xh = bucket_xh(bucket);
4150         u16 count = le16_to_cpu(xb_xh->xh_count);
4151         char *src = xb_bh->b_data;
4152         char *target = bucket_block(bucket, blks - 1);
4153
4154         mlog(0, "cp xattr from block %llu to bucket %llu\n",
4155              (unsigned long long)xb_bh->b_blocknr,
4156              (unsigned long long)bucket_blkno(bucket));
4157
4158         for (i = 0; i < blks; i++)
4159                 memset(bucket_block(bucket, i), 0, blocksize);
4160
4161         /*
4162          * Since the xe_name_offset is based on ocfs2_xattr_header,
4163          * there is a offset change corresponding to the change of
4164          * ocfs2_xattr_header's position.
4165          */
4166         off_change = offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
4167         xe = &xb_xh->xh_entries[count - 1];
4168         offset = le16_to_cpu(xe->xe_name_offset) + off_change;
4169         size = blocksize - offset;
4170
4171         /* copy all the names and values. */
4172         memcpy(target + offset, src + offset, size);
4173
4174         /* Init new header now. */
4175         xh->xh_count = xb_xh->xh_count;
4176         xh->xh_num_buckets = cpu_to_le16(1);
4177         xh->xh_name_value_len = cpu_to_le16(size);
4178         xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE - size);
4179
4180         /* copy all the entries. */
4181         target = bucket_block(bucket, 0);
4182         offset = offsetof(struct ocfs2_xattr_header, xh_entries);
4183         size = count * sizeof(struct ocfs2_xattr_entry);
4184         memcpy(target + offset, (char *)xb_xh + offset, size);
4185
4186         /* Change the xe offset for all the xe because of the move. */
4187         off_change = OCFS2_XATTR_BUCKET_SIZE - blocksize +
4188                  offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
4189         for (i = 0; i < count; i++)
4190                 le16_add_cpu(&xh->xh_entries[i].xe_name_offset, off_change);
4191
4192         mlog(0, "copy entry: start = %u, size = %u, offset_change = %u\n",
4193              offset, size, off_change);
4194
4195         sort(target + offset, count, sizeof(struct ocfs2_xattr_entry),
4196              cmp_xe, swap_xe);
4197 }
4198
4199 /*
4200  * After we move xattr from block to index btree, we have to
4201  * update ocfs2_xattr_search to the new xe and base.
4202  *
4203  * When the entry is in xattr block, xattr_bh indicates the storage place.
4204  * While if the entry is in index b-tree, "bucket" indicates the
4205  * real place of the xattr.
4206  */
4207 static void ocfs2_xattr_update_xattr_search(struct inode *inode,
4208                                             struct ocfs2_xattr_search *xs,
4209                                             struct buffer_head *old_bh)
4210 {
4211         char *buf = old_bh->b_data;
4212         struct ocfs2_xattr_block *old_xb = (struct ocfs2_xattr_block *)buf;
4213         struct ocfs2_xattr_header *old_xh = &old_xb->xb_attrs.xb_header;
4214         int i;
4215
4216         xs->header = bucket_xh(xs->bucket);
4217         xs->base = bucket_block(xs->bucket, 0);
4218         xs->end = xs->base + inode->i_sb->s_blocksize;
4219
4220         if (xs->not_found)
4221                 return;
4222
4223         i = xs->here - old_xh->xh_entries;
4224         xs->here = &xs->header->xh_entries[i];
4225 }
4226
4227 static int ocfs2_xattr_create_index_block(struct inode *inode,
4228                                           struct ocfs2_xattr_search *xs,
4229                                           struct ocfs2_xattr_set_ctxt *ctxt)
4230 {
4231         int ret;
4232         u32 bit_off, len;
4233         u64 blkno;
4234         handle_t *handle = ctxt->handle;
4235         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4236         struct ocfs2_inode_info *oi = OCFS2_I(inode);
4237         struct buffer_head *xb_bh = xs->xattr_bh;
4238         struct ocfs2_xattr_block *xb =
4239                         (struct ocfs2_xattr_block *)xb_bh->b_data;
4240         struct ocfs2_xattr_tree_root *xr;
4241         u16 xb_flags = le16_to_cpu(xb->xb_flags);
4242
4243         mlog(0, "create xattr index block for %llu\n",
4244              (unsigned long long)xb_bh->b_blocknr);
4245
4246         BUG_ON(xb_flags & OCFS2_XATTR_INDEXED);
4247         BUG_ON(!xs->bucket);
4248
4249         /*
4250          * XXX:
4251          * We can use this lock for now, and maybe move to a dedicated mutex
4252          * if performance becomes a problem later.
4253          */
4254         down_write(&oi->ip_alloc_sem);
4255
4256         ret = ocfs2_journal_access_xb(handle, INODE_CACHE(inode), xb_bh,
4257                                       OCFS2_JOURNAL_ACCESS_WRITE);
4258         if (ret) {
4259                 mlog_errno(ret);
4260                 goto out;
4261         }
4262
4263         ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac,
4264                                      1, 1, &bit_off, &len);
4265         if (ret) {
4266                 mlog_errno(ret);
4267                 goto out;
4268         }
4269
4270         /*
4271          * The bucket may spread in many blocks, and
4272          * we will only touch the 1st block and the last block
4273          * in the whole bucket(one for entry and one for data).
4274          */
4275         blkno = ocfs2_clusters_to_blocks(inode->i_sb, bit_off);
4276
4277         mlog(0, "allocate 1 cluster from %llu to xattr block\n",
4278              (unsigned long long)blkno);
4279
4280         ret = ocfs2_init_xattr_bucket(xs->bucket, blkno);
4281         if (ret) {
4282                 mlog_errno(ret);
4283                 goto out;
4284         }
4285
4286         ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
4287                                                 OCFS2_JOURNAL_ACCESS_CREATE);
4288         if (ret) {
4289                 mlog_errno(ret);
4290                 goto out;
4291         }
4292
4293         ocfs2_cp_xattr_block_to_bucket(inode, xb_bh, xs->bucket);
4294         ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
4295
4296         ocfs2_xattr_update_xattr_search(inode, xs, xb_bh);
4297
4298         /* Change from ocfs2_xattr_header to ocfs2_xattr_tree_root */
4299         memset(&xb->xb_attrs, 0, inode->i_sb->s_blocksize -
4300                offsetof(struct ocfs2_xattr_block, xb_attrs));
4301
4302         xr = &xb->xb_attrs.xb_root;
4303         xr->xt_clusters = cpu_to_le32(1);
4304         xr->xt_last_eb_blk = 0;
4305         xr->xt_list.l_tree_depth = 0;
4306         xr->xt_list.l_count = cpu_to_le16(ocfs2_xattr_recs_per_xb(inode->i_sb));
4307         xr->xt_list.l_next_free_rec = cpu_to_le16(1);
4308
4309         xr->xt_list.l_recs[0].e_cpos = 0;
4310         xr->xt_list.l_recs[0].e_blkno = cpu_to_le64(blkno);
4311         xr->xt_list.l_recs[0].e_leaf_clusters = cpu_to_le16(1);
4312
4313         xb->xb_flags = cpu_to_le16(xb_flags | OCFS2_XATTR_INDEXED);
4314
4315         ocfs2_journal_dirty(handle, xb_bh);
4316
4317 out:
4318         up_write(&oi->ip_alloc_sem);
4319
4320         return ret;
4321 }
4322
4323 static int cmp_xe_offset(const void *a, const void *b)
4324 {
4325         const struct ocfs2_xattr_entry *l = a, *r = b;
4326         u32 l_name_offset = le16_to_cpu(l->xe_name_offset);
4327         u32 r_name_offset = le16_to_cpu(r->xe_name_offset);
4328
4329         if (l_name_offset < r_name_offset)
4330                 return 1;
4331         if (l_name_offset > r_name_offset)
4332                 return -1;
4333         return 0;
4334 }
4335
4336 /*
4337  * defrag a xattr bucket if we find that the bucket has some
4338  * holes beteen name/value pairs.
4339  * We will move all the name/value pairs to the end of the bucket
4340  * so that we can spare some space for insertion.
4341  */
4342 static int ocfs2_defrag_xattr_bucket(struct inode *inode,
4343                                      handle_t *handle,
4344                                      struct ocfs2_xattr_bucket *bucket)
4345 {
4346         int ret, i;
4347         size_t end, offset, len;
4348         struct ocfs2_xattr_header *xh;
4349         char *entries, *buf, *bucket_buf = NULL;
4350         u64 blkno = bucket_blkno(bucket);
4351         u16 xh_free_start;
4352         size_t blocksize = inode->i_sb->s_blocksize;
4353         struct ocfs2_xattr_entry *xe;
4354
4355         /*
4356          * In order to make the operation more efficient and generic,
4357          * we copy all the blocks into a contiguous memory and do the
4358          * defragment there, so if anything is error, we will not touch
4359          * the real block.
4360          */
4361         bucket_buf = kmalloc(OCFS2_XATTR_BUCKET_SIZE, GFP_NOFS);
4362         if (!bucket_buf) {
4363                 ret = -EIO;
4364                 goto out;
4365         }
4366
4367         buf = bucket_buf;
4368         for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
4369                 memcpy(buf, bucket_block(bucket, i), blocksize);
4370
4371         ret = ocfs2_xattr_bucket_journal_access(handle, bucket,
4372                                                 OCFS2_JOURNAL_ACCESS_WRITE);
4373         if (ret < 0) {
4374                 mlog_errno(ret);
4375                 goto out;
4376         }
4377
4378         xh = (struct ocfs2_xattr_header *)bucket_buf;
4379         entries = (char *)xh->xh_entries;
4380         xh_free_start = le16_to_cpu(xh->xh_free_start);
4381
4382         mlog(0, "adjust xattr bucket in %llu, count = %u, "
4383              "xh_free_start = %u, xh_name_value_len = %u.\n",
4384              (unsigned long long)blkno, le16_to_cpu(xh->xh_count),
4385              xh_free_start, le16_to_cpu(xh->xh_name_value_len));
4386
4387         /*
4388          * sort all the entries by their offset.
4389          * the largest will be the first, so that we can
4390          * move them to the end one by one.
4391          */
4392         sort(entries, le16_to_cpu(xh->xh_count),
4393              sizeof(struct ocfs2_xattr_entry),
4394              cmp_xe_offset, swap_xe);
4395
4396         /* Move all name/values to the end of the bucket. */
4397         xe = xh->xh_entries;
4398         end = OCFS2_XATTR_BUCKET_SIZE;
4399         for (i = 0; i < le16_to_cpu(xh->xh_count); i++, xe++) {
4400                 offset = le16_to_cpu(xe->xe_name_offset);
4401                 len = namevalue_size_xe(xe);
4402
4403                 /*
4404                  * We must make sure that the name/value pair
4405                  * exist in the same block. So adjust end to
4406                  * the previous block end if needed.
4407                  */
4408                 if (((end - len) / blocksize !=
4409                         (end - 1) / blocksize))
4410                         end = end - end % blocksize;
4411
4412                 if (end > offset + len) {
4413                         memmove(bucket_buf + end - len,
4414                                 bucket_buf + offset, len);
4415                         xe->xe_name_offset = cpu_to_le16(end - len);
4416                 }
4417
4418                 mlog_bug_on_msg(end < offset + len, "Defrag check failed for "
4419                                 "bucket %llu\n", (unsigned long long)blkno);
4420
4421                 end -= len;
4422         }
4423
4424         mlog_bug_on_msg(xh_free_start > end, "Defrag check failed for "
4425                         "bucket %llu\n", (unsigned long long)blkno);
4426
4427         if (xh_free_start == end)
4428                 goto out;
4429
4430         memset(bucket_buf + xh_free_start, 0, end - xh_free_start);
4431         xh->xh_free_start = cpu_to_le16(end);
4432
4433         /* sort the entries by their name_hash. */
4434         sort(entries, le16_to_cpu(xh->xh_count),
4435              sizeof(struct ocfs2_xattr_entry),
4436              cmp_xe, swap_xe);
4437
4438         buf = bucket_buf;
4439         for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
4440                 memcpy(bucket_block(bucket, i), buf, blocksize);
4441         ocfs2_xattr_bucket_journal_dirty(handle, bucket);
4442
4443 out:
4444         kfree(bucket_buf);
4445         return ret;
4446 }
4447
4448 /*
4449  * prev_blkno points to the start of an existing extent.  new_blkno
4450  * points to a newly allocated extent.  Because we know each of our
4451  * clusters contains more than bucket, we can easily split one cluster
4452  * at a bucket boundary.  So we take the last cluster of the existing
4453  * extent and split it down the middle.  We move the last half of the
4454  * buckets in the last cluster of the existing extent over to the new
4455  * extent.
4456  *
4457  * first_bh is the buffer at prev_blkno so we can update the existing
4458  * extent's bucket count.  header_bh is the bucket were we were hoping
4459  * to insert our xattr.  If the bucket move places the target in the new
4460  * extent, we'll update first_bh and header_bh after modifying the old
4461  * extent.
4462  *
4463  * first_hash will be set as the 1st xe's name_hash in the new extent.
4464  */
4465 static int ocfs2_mv_xattr_bucket_cross_cluster(struct inode *inode,
4466                                                handle_t *handle,
4467                                                struct ocfs2_xattr_bucket *first,
4468                                                struct ocfs2_xattr_bucket *target,
4469                                                u64 new_blkno,
4470                                                u32 num_clusters,
4471                                                u32 *first_hash)
4472 {
4473         int ret;
4474         struct super_block *sb = inode->i_sb;
4475         int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(sb);
4476         int num_buckets = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(sb));
4477         int to_move = num_buckets / 2;
4478         u64 src_blkno;
4479         u64 last_cluster_blkno = bucket_blkno(first) +
4480                 ((num_clusters - 1) * ocfs2_clusters_to_blocks(sb, 1));
4481
4482         BUG_ON(le16_to_cpu(bucket_xh(first)->xh_num_buckets) < num_buckets);
4483         BUG_ON(OCFS2_XATTR_BUCKET_SIZE == OCFS2_SB(sb)->s_clustersize);
4484
4485         mlog(0, "move half of xattrs in cluster %llu to %llu\n",
4486              (unsigned long long)last_cluster_blkno, (unsigned long long)new_blkno);
4487
4488         ret = ocfs2_mv_xattr_buckets(inode, handle, bucket_blkno(first),
4489                                      last_cluster_blkno, new_blkno,
4490                                      to_move, first_hash);
4491         if (ret) {
4492                 mlog_errno(ret);
4493                 goto out;
4494         }
4495
4496         /* This is the first bucket that got moved */
4497         src_blkno = last_cluster_blkno + (to_move * blks_per_bucket);
4498
4499         /*
4500          * If the target bucket was part of the moved buckets, we need to
4501          * update first and target.
4502          */
4503         if (bucket_blkno(target) >= src_blkno) {
4504                 /* Find the block for the new target bucket */
4505                 src_blkno = new_blkno +
4506                         (bucket_blkno(target) - src_blkno);
4507
4508                 ocfs2_xattr_bucket_relse(first);
4509                 ocfs2_xattr_bucket_relse(target);
4510
4511                 /*
4512                  * These shouldn't fail - the buffers are in the
4513                  * journal from ocfs2_cp_xattr_bucket().
4514                  */
4515                 ret = ocfs2_read_xattr_bucket(first, new_blkno);
4516                 if (ret) {
4517                         mlog_errno(ret);
4518                         goto out;
4519                 }
4520                 ret = ocfs2_read_xattr_bucket(target, src_blkno);
4521                 if (ret)
4522                         mlog_errno(ret);
4523
4524         }
4525
4526 out:
4527         return ret;
4528 }
4529
4530 /*
4531  * Find the suitable pos when we divide a bucket into 2.
4532  * We have to make sure the xattrs with the same hash value exist
4533  * in the same bucket.
4534  *
4535  * If this ocfs2_xattr_header covers more than one hash value, find a
4536  * place where the hash value changes.  Try to find the most even split.
4537  * The most common case is that all entries have different hash values,
4538  * and the first check we make will find a place to split.
4539  */
4540 static int ocfs2_xattr_find_divide_pos(struct ocfs2_xattr_header *xh)
4541 {
4542         struct ocfs2_xattr_entry *entries = xh->xh_entries;
4543         int count = le16_to_cpu(xh->xh_count);
4544         int delta, middle = count / 2;
4545
4546         /*
4547          * We start at the middle.  Each step gets farther away in both
4548          * directions.  We therefore hit the change in hash value
4549          * nearest to the middle.  Note that this loop does not execute for
4550          * count < 2.
4551          */
4552         for (delta = 0; delta < middle; delta++) {
4553                 /* Let's check delta earlier than middle */
4554                 if (cmp_xe(&entries[middle - delta - 1],
4555                            &entries[middle - delta]))
4556                         return middle - delta;
4557
4558                 /* For even counts, don't walk off the end */
4559                 if ((middle + delta + 1) == count)
4560                         continue;
4561
4562                 /* Now try delta past middle */
4563                 if (cmp_xe(&entries[middle + delta],
4564                            &entries[middle + delta + 1]))
4565                         return middle + delta + 1;
4566         }
4567
4568         /* Every entry had the same hash */
4569         return count;
4570 }
4571
4572 /*
4573  * Move some xattrs in old bucket(blk) to new bucket(new_blk).
4574  * first_hash will record the 1st hash of the new bucket.
4575  *
4576  * Normally half of the xattrs will be moved.  But we have to make
4577  * sure that the xattrs with the same hash value are stored in the
4578  * same bucket. If all the xattrs in this bucket have the same hash
4579  * value, the new bucket will be initialized as an empty one and the
4580  * first_hash will be initialized as (hash_value+1).
4581  */
4582 static int ocfs2_divide_xattr_bucket(struct inode *inode,
4583                                     handle_t *handle,
4584                                     u64 blk,
4585                                     u64 new_blk,
4586                                     u32 *first_hash,
4587                                     int new_bucket_head)
4588 {
4589         int ret, i;
4590         int count, start, len, name_value_len = 0, name_offset = 0;
4591         struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
4592         struct ocfs2_xattr_header *xh;
4593         struct ocfs2_xattr_entry *xe;
4594         int blocksize = inode->i_sb->s_blocksize;
4595
4596         mlog(0, "move some of xattrs from bucket %llu to %llu\n",
4597              (unsigned long long)blk, (unsigned long long)new_blk);
4598
4599         s_bucket = ocfs2_xattr_bucket_new(inode);
4600         t_bucket = ocfs2_xattr_bucket_new(inode);
4601         if (!s_bucket || !t_bucket) {
4602                 ret = -ENOMEM;
4603                 mlog_errno(ret);
4604                 goto out;
4605         }
4606
4607         ret = ocfs2_read_xattr_bucket(s_bucket, blk);
4608         if (ret) {
4609                 mlog_errno(ret);
4610                 goto out;
4611         }
4612
4613         ret = ocfs2_xattr_bucket_journal_access(handle, s_bucket,
4614                                                 OCFS2_JOURNAL_ACCESS_WRITE);
4615         if (ret) {
4616                 mlog_errno(ret);
4617                 goto out;
4618         }
4619
4620         /*
4621          * Even if !new_bucket_head, we're overwriting t_bucket.  Thus,
4622          * there's no need to read it.
4623          */
4624         ret = ocfs2_init_xattr_bucket(t_bucket, new_blk);
4625         if (ret) {
4626                 mlog_errno(ret);
4627                 goto out;
4628         }
4629
4630         /*
4631          * Hey, if we're overwriting t_bucket, what difference does
4632          * ACCESS_CREATE vs ACCESS_WRITE make?  See the comment in the
4633          * same part of ocfs2_cp_xattr_bucket().
4634          */
4635         ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
4636                                                 new_bucket_head ?
4637                                                 OCFS2_JOURNAL_ACCESS_CREATE :
4638                                                 OCFS2_JOURNAL_ACCESS_WRITE);
4639         if (ret) {
4640                 mlog_errno(ret);
4641                 goto out;
4642         }
4643
4644         xh = bucket_xh(s_bucket);
4645         count = le16_to_cpu(xh->xh_count);
4646         start = ocfs2_xattr_find_divide_pos(xh);
4647
4648         if (start == count) {
4649                 xe = &xh->xh_entries[start-1];
4650
4651                 /*
4652                  * initialized a new empty bucket here.
4653                  * The hash value is set as one larger than
4654                  * that of the last entry in the previous bucket.
4655                  */
4656                 for (i = 0; i < t_bucket->bu_blocks; i++)
4657                         memset(bucket_block(t_bucket, i), 0, blocksize);
4658
4659                 xh = bucket_xh(t_bucket);
4660                 xh->xh_free_start = cpu_to_le16(blocksize);
4661                 xh->xh_entries[0].xe_name_hash = xe->xe_name_hash;
4662                 le32_add_cpu(&xh->xh_entries[0].xe_name_hash, 1);
4663
4664                 goto set_num_buckets;
4665         }
4666
4667         /* copy the whole bucket to the new first. */
4668         ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
4669
4670         /* update the new bucket. */
4671         xh = bucket_xh(t_bucket);
4672
4673         /*
4674          * Calculate the total name/value len and xh_free_start for
4675          * the old bucket first.
4676          */
4677         name_offset = OCFS2_XATTR_BUCKET_SIZE;
4678         name_value_len = 0;
4679         for (i = 0; i < start; i++) {
4680                 xe = &xh->xh_entries[i];
4681                 name_value_len += namevalue_size_xe(xe);
4682                 if (le16_to_cpu(xe->xe_name_offset) < name_offset)
4683                         name_offset = le16_to_cpu(xe->xe_name_offset);
4684         }
4685
4686         /*
4687          * Now begin the modification to the new bucket.
4688          *
4689          * In the new bucket, We just move the xattr entry to the beginning
4690          * and don't touch the name/value. So there will be some holes in the
4691          * bucket, and they will be removed when ocfs2_defrag_xattr_bucket is
4692          * called.
4693          */
4694         xe = &xh->xh_entries[start];
4695         len = sizeof(struct ocfs2_xattr_entry) * (count - start);
4696         mlog(0, "mv xattr entry len %d from %d to %d\n", len,
4697              (int)((char *)xe - (char *)xh),
4698              (int)((char *)xh->xh_entries - (char *)xh));
4699         memmove((char *)xh->xh_entries, (char *)xe, len);
4700         xe = &xh->xh_entries[count - start];
4701         len = sizeof(struct ocfs2_xattr_entry) * start;
4702         memset((char *)xe, 0, len);
4703
4704         le16_add_cpu(&xh->xh_count, -start);
4705         le16_add_cpu(&xh->xh_name_value_len, -name_value_len);
4706
4707         /* Calculate xh_free_start for the new bucket. */
4708         xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
4709         for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
4710                 xe = &xh->xh_entries[i];
4711                 if (le16_to_cpu(xe->xe_name_offset) <
4712                     le16_to_cpu(xh->xh_free_start))
4713                         xh->xh_free_start = xe->xe_name_offset;
4714         }
4715
4716 set_num_buckets:
4717         /* set xh->xh_num_buckets for the new xh. */
4718         if (new_bucket_head)
4719                 xh->xh_num_buckets = cpu_to_le16(1);
4720         else
4721                 xh->xh_num_buckets = 0;
4722
4723         ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
4724
4725         /* store the first_hash of the new bucket. */
4726         if (first_hash)
4727                 *first_hash = le32_to_cpu(xh->xh_entries[0].xe_name_hash);
4728
4729         /*
4730          * Now only update the 1st block of the old bucket.  If we
4731          * just added a new empty bucket, there is no need to modify
4732          * it.
4733          */
4734         if (start == count)
4735                 goto out;
4736
4737         xh = bucket_xh(s_bucket);
4738         memset(&xh->xh_entries[start], 0,
4739                sizeof(struct ocfs2_xattr_entry) * (count - start));
4740         xh->xh_count = cpu_to_le16(start);
4741         xh->xh_free_start = cpu_to_le16(name_offset);
4742         xh->xh_name_value_len = cpu_to_le16(name_value_len);
4743
4744         ocfs2_xattr_bucket_journal_dirty(handle, s_bucket);
4745
4746 out:
4747         ocfs2_xattr_bucket_free(s_bucket);
4748         ocfs2_xattr_bucket_free(t_bucket);
4749
4750         return ret;
4751 }
4752
4753 /*
4754  * Copy xattr from one bucket to another bucket.
4755  *
4756  * The caller must make sure that the journal transaction
4757  * has enough space for journaling.
4758  */
4759 static int ocfs2_cp_xattr_bucket(struct inode *inode,
4760                                  handle_t *handle,
4761                                  u64 s_blkno,
4762                                  u64 t_blkno,
4763                                  int t_is_new)
4764 {
4765         int ret;
4766         struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
4767
4768         BUG_ON(s_blkno == t_blkno);
4769
4770         mlog(0, "cp bucket %llu to %llu, target is %d\n",
4771              (unsigned long long)s_blkno, (unsigned long long)t_blkno,
4772              t_is_new);
4773
4774         s_bucket = ocfs2_xattr_bucket_new(inode);
4775         t_bucket = ocfs2_xattr_bucket_new(inode);
4776         if (!s_bucket || !t_bucket) {
4777                 ret = -ENOMEM;
4778                 mlog_errno(ret);
4779                 goto out;
4780         }
4781
4782         ret = ocfs2_read_xattr_bucket(s_bucket, s_blkno);
4783         if (ret)
4784                 goto out;
4785
4786         /*
4787          * Even if !t_is_new, we're overwriting t_bucket.  Thus,
4788          * there's no need to read it.
4789          */
4790         ret = ocfs2_init_xattr_bucket(t_bucket, t_blkno);
4791         if (ret)
4792                 goto out;
4793
4794         /*
4795          * Hey, if we're overwriting t_bucket, what difference does
4796          * ACCESS_CREATE vs ACCESS_WRITE make?  Well, if we allocated a new
4797          * cluster to fill, we came here from
4798          * ocfs2_mv_xattr_buckets(), and it is really new -
4799          * ACCESS_CREATE is required.  But we also might have moved data
4800          * out of t_bucket before extending back into it.
4801          * ocfs2_add_new_xattr_bucket() can do this - its call to
4802          * ocfs2_add_new_xattr_cluster() may have created a new extent
4803          * and copied out the end of the old extent.  Then it re-extends
4804          * the old extent back to create space for new xattrs.  That's
4805          * how we get here, and the bucket isn't really new.
4806          */
4807         ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
4808                                                 t_is_new ?
4809                                                 OCFS2_JOURNAL_ACCESS_CREATE :
4810                                                 OCFS2_JOURNAL_ACCESS_WRITE);
4811         if (ret)
4812                 goto out;
4813
4814         ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
4815         ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
4816
4817 out:
4818         ocfs2_xattr_bucket_free(t_bucket);
4819         ocfs2_xattr_bucket_free(s_bucket);
4820
4821         return ret;
4822 }
4823
4824 /*
4825  * src_blk points to the start of an existing extent.  last_blk points to
4826  * last cluster in that extent.  to_blk points to a newly allocated
4827  * extent.  We copy the buckets from the cluster at last_blk to the new
4828  * extent.  If start_bucket is non-zero, we skip that many buckets before
4829  * we start copying.  The new extent's xh_num_buckets gets set to the
4830  * number of buckets we copied.  The old extent's xh_num_buckets shrinks
4831  * by the same amount.
4832  */
4833 static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
4834                                   u64 src_blk, u64 last_blk, u64 to_blk,
4835                                   unsigned int start_bucket,
4836                                   u32 *first_hash)
4837 {
4838         int i, ret, credits;
4839         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4840         int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
4841         int num_buckets = ocfs2_xattr_buckets_per_cluster(osb);
4842         struct ocfs2_xattr_bucket *old_first, *new_first;
4843
4844         mlog(0, "mv xattrs from cluster %llu to %llu\n",
4845              (unsigned long long)last_blk, (unsigned long long)to_blk);
4846
4847         BUG_ON(start_bucket >= num_buckets);
4848         if (start_bucket) {
4849                 num_buckets -= start_bucket;
4850                 last_blk += (start_bucket * blks_per_bucket);
4851         }
4852
4853         /* The first bucket of the original extent */
4854         old_first = ocfs2_xattr_bucket_new(inode);
4855         /* The first bucket of the new extent */
4856         new_first = ocfs2_xattr_bucket_new(inode);
4857         if (!old_first || !new_first) {
4858                 ret = -ENOMEM;
4859                 mlog_errno(ret);
4860                 goto out;
4861         }
4862
4863         ret = ocfs2_read_xattr_bucket(old_first, src_blk);
4864         if (ret) {
4865                 mlog_errno(ret);
4866                 goto out;
4867         }
4868
4869         /*
4870          * We need to update the first bucket of the old extent and all
4871          * the buckets going to the new extent.
4872          */
4873         credits = ((num_buckets + 1) * blks_per_bucket) +
4874                 handle->h_buffer_credits;
4875         ret = ocfs2_extend_trans(handle, credits);
4876         if (ret) {
4877                 mlog_errno(ret);
4878                 goto out;
4879         }
4880
4881         ret = ocfs2_xattr_bucket_journal_access(handle, old_first,
4882                                                 OCFS2_JOURNAL_ACCESS_WRITE);
4883         if (ret) {
4884                 mlog_errno(ret);
4885                 goto out;
4886         }
4887
4888         for (i = 0; i < num_buckets; i++) {
4889                 ret = ocfs2_cp_xattr_bucket(inode, handle,
4890                                             last_blk + (i * blks_per_bucket),
4891                                             to_blk + (i * blks_per_bucket),
4892                                             1);
4893                 if (ret) {
4894                         mlog_errno(ret);
4895                         goto out;
4896                 }
4897         }
4898
4899         /*
4900          * Get the new bucket ready before we dirty anything
4901          * (This actually shouldn't fail, because we already dirtied
4902          * it once in ocfs2_cp_xattr_bucket()).
4903          */
4904         ret = ocfs2_read_xattr_bucket(new_first, to_blk);
4905         if (ret) {
4906                 mlog_errno(ret);
4907                 goto out;
4908         }
4909         ret = ocfs2_xattr_bucket_journal_access(handle, new_first,
4910                                                 OCFS2_JOURNAL_ACCESS_WRITE);
4911         if (ret) {
4912                 mlog_errno(ret);
4913                 goto out;
4914         }
4915
4916         /* Now update the headers */
4917         le16_add_cpu(&bucket_xh(old_first)->xh_num_buckets, -num_buckets);
4918         ocfs2_xattr_bucket_journal_dirty(handle, old_first);
4919
4920         bucket_xh(new_first)->xh_num_buckets = cpu_to_le16(num_buckets);
4921         ocfs2_xattr_bucket_journal_dirty(handle, new_first);
4922
4923         if (first_hash)
4924                 *first_hash = le32_to_cpu(bucket_xh(new_first)->xh_entries[0].xe_name_hash);
4925
4926 out:
4927         ocfs2_xattr_bucket_free(new_first);
4928         ocfs2_xattr_bucket_free(old_first);
4929         return ret;
4930 }
4931
4932 /*
4933  * Move some xattrs in this cluster to the new cluster.
4934  * This function should only be called when bucket size == cluster size.
4935  * Otherwise ocfs2_mv_xattr_bucket_cross_cluster should be used instead.
4936  */
4937 static int ocfs2_divide_xattr_cluster(struct inode *inode,
4938                                       handle_t *handle,
4939                                       u64 prev_blk,
4940                                       u64 new_blk,
4941                                       u32 *first_hash)
4942 {
4943         u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
4944         int ret, credits = 2 * blk_per_bucket + handle->h_buffer_credits;
4945
4946         BUG_ON(OCFS2_XATTR_BUCKET_SIZE < OCFS2_SB(inode->i_sb)->s_clustersize);
4947
4948         ret = ocfs2_extend_trans(handle, credits);
4949         if (ret) {
4950                 mlog_errno(ret);
4951                 return ret;
4952         }
4953
4954         /* Move half of the xattr in start_blk to the next bucket. */
4955         return  ocfs2_divide_xattr_bucket(inode, handle, prev_blk,
4956                                           new_blk, first_hash, 1);
4957 }
4958
4959 /*
4960  * Move some xattrs from the old cluster to the new one since they are not
4961  * contiguous in ocfs2 xattr tree.
4962  *
4963  * new_blk starts a new separate cluster, and we will move some xattrs from
4964  * prev_blk to it. v_start will be set as the first name hash value in this
4965  * new cluster so that it can be used as e_cpos during tree insertion and
4966  * don't collide with our original b-tree operations. first_bh and header_bh
4967  * will also be updated since they will be used in ocfs2_extend_xattr_bucket
4968  * to extend the insert bucket.
4969  *
4970  * The problem is how much xattr should we move to the new one and when should
4971  * we update first_bh and header_bh?
4972  * 1. If cluster size > bucket size, that means the previous cluster has more
4973  *    than 1 bucket, so just move half nums of bucket into the new cluster and
4974  *    update the first_bh and header_bh if the insert bucket has been moved
4975  *    to the new cluster.
4976  * 2. If cluster_size == bucket_size:
4977  *    a) If the previous extent rec has more than one cluster and the insert
4978  *       place isn't in the last cluster, copy the entire last cluster to the
4979  *       new one. This time, we don't need to upate the first_bh and header_bh
4980  *       since they will not be moved into the new cluster.
4981  *    b) Otherwise, move the bottom half of the xattrs in the last cluster into
4982  *       the new one. And we set the extend flag to zero if the insert place is
4983  *       moved into the new allocated cluster since no extend is needed.
4984  */
4985 static int ocfs2_adjust_xattr_cross_cluster(struct inode *inode,
4986                                             handle_t *handle,
4987                                             struct ocfs2_xattr_bucket *first,
4988                                             struct ocfs2_xattr_bucket *target,
4989                                             u64 new_blk,
4990                                             u32 prev_clusters,
4991                                             u32 *v_start,
4992                                             int *extend)
4993 {
4994         int ret;
4995
4996         mlog(0, "adjust xattrs from cluster %llu len %u to %llu\n",
4997              (unsigned long long)bucket_blkno(first), prev_clusters,
4998              (unsigned long long)new_blk);
4999
5000         if (ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb)) > 1) {
5001                 ret = ocfs2_mv_xattr_bucket_cross_cluster(inode,
5002                                                           handle,
5003                                                           first, target,
5004                                                           new_blk,
5005                                                           prev_clusters,
5006                                                           v_start);
5007                 if (ret)
5008                         mlog_errno(ret);
5009         } else {
5010                 /* The start of the last cluster in the first extent */
5011                 u64 last_blk = bucket_blkno(first) +
5012                         ((prev_clusters - 1) *
5013                          ocfs2_clusters_to_blocks(inode->i_sb, 1));
5014
5015                 if (prev_clusters > 1 && bucket_blkno(target) != last_blk) {
5016                         ret = ocfs2_mv_xattr_buckets(inode, handle,
5017                                                      bucket_blkno(first),
5018                                                      last_blk, new_blk, 0,
5019                                                      v_start);
5020                         if (ret)
5021                                 mlog_errno(ret);
5022                 } else {
5023                         ret = ocfs2_divide_xattr_cluster(inode, handle,
5024                                                          last_blk, new_blk,
5025                                                          v_start);
5026                         if (ret)
5027                                 mlog_errno(ret);
5028
5029                         if ((bucket_blkno(target) == last_blk) && extend)
5030                                 *extend = 0;
5031                 }
5032         }
5033
5034         return ret;
5035 }
5036
5037 /*
5038  * Add a new cluster for xattr storage.
5039  *
5040  * If the new cluster is contiguous with the previous one, it will be
5041  * appended to the same extent record, and num_clusters will be updated.
5042  * If not, we will insert a new extent for it and move some xattrs in
5043  * the last cluster into the new allocated one.
5044  * We also need to limit the maximum size of a btree leaf, otherwise we'll
5045  * lose the benefits of hashing because we'll have to search large leaves.
5046  * So now the maximum size is OCFS2_MAX_XATTR_TREE_LEAF_SIZE(or clustersize,
5047  * if it's bigger).
5048  *
5049  * first_bh is the first block of the previous extent rec and header_bh
5050  * indicates the bucket we will insert the new xattrs. They will be updated
5051  * when the header_bh is moved into the new cluster.
5052  */
5053 static int ocfs2_add_new_xattr_cluster(struct inode *inode,
5054                                        struct buffer_head *root_bh,
5055                                        struct ocfs2_xattr_bucket *first,
5056                                        struct ocfs2_xattr_bucket *target,
5057                                        u32 *num_clusters,
5058                                        u32 prev_cpos,
5059                                        int *extend,
5060                                        struct ocfs2_xattr_set_ctxt *ctxt)
5061 {
5062         int ret;
5063         u16 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
5064         u32 prev_clusters = *num_clusters;
5065         u32 clusters_to_add = 1, bit_off, num_bits, v_start = 0;
5066         u64 block;
5067         handle_t *handle = ctxt->handle;
5068         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5069         struct ocfs2_extent_tree et;
5070
5071         mlog(0, "Add new xattr cluster for %llu, previous xattr hash = %u, "
5072              "previous xattr blkno = %llu\n",
5073              (unsigned long long)OCFS2_I(inode)->ip_blkno,
5074              prev_cpos, (unsigned long long)bucket_blkno(first));
5075
5076         ocfs2_init_xattr_tree_extent_tree(&et, INODE_CACHE(inode), root_bh);
5077
5078         ret = ocfs2_journal_access_xb(handle, INODE_CACHE(inode), root_bh,
5079                                       OCFS2_JOURNAL_ACCESS_WRITE);
5080         if (ret < 0) {
5081                 mlog_errno(ret);
5082                 goto leave;
5083         }
5084
5085         ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac, 1,
5086                                      clusters_to_add, &bit_off, &num_bits);
5087         if (ret < 0) {
5088                 if (ret != -ENOSPC)
5089                         mlog_errno(ret);
5090                 goto leave;
5091         }
5092
5093         BUG_ON(num_bits > clusters_to_add);
5094
5095         block = ocfs2_clusters_to_blocks(osb->sb, bit_off);
5096         mlog(0, "Allocating %u clusters at block %u for xattr in inode %llu\n",
5097              num_bits, bit_off, (unsigned long long)OCFS2_I(inode)->ip_blkno);
5098
5099         if (bucket_blkno(first) + (prev_clusters * bpc) == block &&
5100             (prev_clusters + num_bits) << osb->s_clustersize_bits <=
5101              OCFS2_MAX_XATTR_TREE_LEAF_SIZE) {
5102                 /*
5103                  * If this cluster is contiguous with the old one and
5104                  * adding this new cluster, we don't surpass the limit of
5105                  * OCFS2_MAX_XATTR_TREE_LEAF_SIZE, cool. We will let it be
5106                  * initialized and used like other buckets in the previous
5107                  * cluster.
5108                  * So add it as a contiguous one. The caller will handle
5109                  * its init process.
5110                  */
5111                 v_start = prev_cpos + prev_clusters;
5112                 *num_clusters = prev_clusters + num_bits;
5113                 mlog(0, "Add contiguous %u clusters to previous extent rec.\n",
5114                      num_bits);
5115         } else {
5116                 ret = ocfs2_adjust_xattr_cross_cluster(inode,
5117                                                        handle,
5118                                                        first,
5119                                                        target,
5120                                                        block,
5121                                                        prev_clusters,
5122                                                        &v_start,
5123                                                        extend);
5124                 if (ret) {
5125                         mlog_errno(ret);
5126                         goto leave;
5127                 }
5128         }
5129
5130         mlog(0, "Insert %u clusters at block %llu for xattr at %u\n",
5131              num_bits, (unsigned long long)block, v_start);
5132         ret = ocfs2_insert_extent(handle, &et, v_start, block,
5133                                   num_bits, 0, ctxt->meta_ac);
5134         if (ret < 0) {
5135                 mlog_errno(ret);
5136                 goto leave;
5137         }
5138
5139         ocfs2_journal_dirty(handle, root_bh);
5140
5141 leave:
5142         return ret;
5143 }
5144
5145 /*
5146  * We are given an extent.  'first' is the bucket at the very front of
5147  * the extent.  The extent has space for an additional bucket past
5148  * bucket_xh(first)->xh_num_buckets.  'target_blkno' is the block number
5149  * of the target bucket.  We wish to shift every bucket past the target
5150  * down one, filling in that additional space.  When we get back to the
5151  * target, we split the target between itself and the now-empty bucket
5152  * at target+1 (aka, target_blkno + blks_per_bucket).
5153  */
5154 static int ocfs2_extend_xattr_bucket(struct inode *inode,
5155                                      handle_t *handle,
5156                                      struct ocfs2_xattr_bucket *first,
5157                                      u64 target_blk,
5158                                      u32 num_clusters)
5159 {
5160         int ret, credits;
5161         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5162         u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
5163         u64 end_blk;
5164         u16 new_bucket = le16_to_cpu(bucket_xh(first)->xh_num_buckets);
5165
5166         mlog(0, "extend xattr bucket in %llu, xattr extend rec starting "
5167              "from %llu, len = %u\n", (unsigned long long)target_blk,
5168              (unsigned long long)bucket_blkno(first), num_clusters);
5169
5170         /* The extent must have room for an additional bucket */
5171         BUG_ON(new_bucket >=
5172                (num_clusters * ocfs2_xattr_buckets_per_cluster(osb)));
5173
5174         /* end_blk points to the last existing bucket */
5175         end_blk = bucket_blkno(first) + ((new_bucket - 1) * blk_per_bucket);
5176
5177         /*
5178          * end_blk is the start of the last existing bucket.
5179          * Thus, (end_blk - target_blk) covers the target bucket and
5180          * every bucket after it up to, but not including, the last
5181          * existing bucket.  Then we add the last existing bucket, the
5182          * new bucket, and the first bucket (3 * blk_per_bucket).
5183          */
5184         credits = (end_blk - target_blk) + (3 * blk_per_bucket) +
5185                   handle->h_buffer_credits;
5186         ret = ocfs2_extend_trans(handle, credits);
5187         if (ret) {
5188                 mlog_errno(ret);
5189                 goto out;
5190         }
5191
5192         ret = ocfs2_xattr_bucket_journal_access(handle, first,
5193                                                 OCFS2_JOURNAL_ACCESS_WRITE);
5194         if (ret) {
5195                 mlog_errno(ret);
5196                 goto out;
5197         }
5198
5199         while (end_blk != target_blk) {
5200                 ret = ocfs2_cp_xattr_bucket(inode, handle, end_blk,
5201                                             end_blk + blk_per_bucket, 0);
5202                 if (ret)
5203                         goto out;
5204                 end_blk -= blk_per_bucket;
5205         }
5206
5207         /* Move half of the xattr in target_blkno to the next bucket. */
5208         ret = ocfs2_divide_xattr_bucket(inode, handle, target_blk,
5209                                         target_blk + blk_per_bucket, NULL, 0);
5210
5211         le16_add_cpu(&bucket_xh(first)->xh_num_buckets, 1);
5212         ocfs2_xattr_bucket_journal_dirty(handle, first);
5213
5214 out:
5215         return ret;
5216 }
5217
5218 /*
5219  * Add new xattr bucket in an extent record and adjust the buckets
5220  * accordingly.  xb_bh is the ocfs2_xattr_block, and target is the
5221  * bucket we want to insert into.
5222  *
5223  * In the easy case, we will move all the buckets after target down by
5224  * one. Half of target's xattrs will be moved to the next bucket.
5225  *
5226  * If current cluster is full, we'll allocate a new one.  This may not
5227  * be contiguous.  The underlying calls will make sure that there is
5228  * space for the insert, shifting buckets around if necessary.
5229  * 'target' may be moved by those calls.
5230  */
5231 static int ocfs2_add_new_xattr_bucket(struct inode *inode,
5232                                       struct buffer_head *xb_bh,
5233                                       struct ocfs2_xattr_bucket *target,
5234                                       struct ocfs2_xattr_set_ctxt *ctxt)
5235 {
5236         struct ocfs2_xattr_block *xb =
5237                         (struct ocfs2_xattr_block *)xb_bh->b_data;
5238         struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
5239         struct ocfs2_extent_list *el = &xb_root->xt_list;
5240         u32 name_hash =
5241                 le32_to_cpu(bucket_xh(target)->xh_entries[0].xe_name_hash);
5242         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5243         int ret, num_buckets, extend = 1;
5244         u64 p_blkno;
5245         u32 e_cpos, num_clusters;
5246         /* The bucket at the front of the extent */
5247         struct ocfs2_xattr_bucket *first;
5248
5249         mlog(0, "Add new xattr bucket starting from %llu\n",
5250              (unsigned long long)bucket_blkno(target));
5251
5252         /* The first bucket of the original extent */
5253         first = ocfs2_xattr_bucket_new(inode);
5254         if (!first) {
5255                 ret = -ENOMEM;
5256                 mlog_errno(ret);
5257                 goto out;
5258         }
5259
5260         ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &e_cpos,
5261                                   &num_clusters, el);
5262         if (ret) {
5263                 mlog_errno(ret);
5264                 goto out;
5265         }
5266
5267         ret = ocfs2_read_xattr_bucket(first, p_blkno);
5268         if (ret) {
5269                 mlog_errno(ret);
5270                 goto out;
5271         }
5272
5273         num_buckets = ocfs2_xattr_buckets_per_cluster(osb) * num_clusters;
5274         if (num_buckets == le16_to_cpu(bucket_xh(first)->xh_num_buckets)) {
5275                 /*
5276                  * This can move first+target if the target bucket moves
5277                  * to the new extent.
5278                  */
5279                 ret = ocfs2_add_new_xattr_cluster(inode,
5280                                                   xb_bh,
5281                                                   first,
5282                                                   target,
5283                                                   &num_clusters,
5284                                                   e_cpos,
5285                                                   &extend,
5286                                                   ctxt);
5287                 if (ret) {
5288                         mlog_errno(ret);
5289                         goto out;
5290                 }
5291         }
5292
5293         if (extend) {
5294                 ret = ocfs2_extend_xattr_bucket(inode,
5295                                                 ctxt->handle,
5296                                                 first,
5297                                                 bucket_blkno(target),
5298                                                 num_clusters);
5299                 if (ret)
5300                         mlog_errno(ret);
5301         }
5302
5303 out:
5304         ocfs2_xattr_bucket_free(first);
5305
5306         return ret;
5307 }
5308
5309 static inline char *ocfs2_xattr_bucket_get_val(struct inode *inode,
5310                                         struct ocfs2_xattr_bucket *bucket,
5311                                         int offs)
5312 {
5313         int block_off = offs >> inode->i_sb->s_blocksize_bits;
5314
5315         offs = offs % inode->i_sb->s_blocksize;
5316         return bucket_block(bucket, block_off) + offs;
5317 }
5318
5319 /*
5320  * Truncate the specified xe_off entry in xattr bucket.
5321  * bucket is indicated by header_bh and len is the new length.
5322  * Both the ocfs2_xattr_value_root and the entry will be updated here.
5323  *
5324  * Copy the new updated xe and xe_value_root to new_xe and new_xv if needed.
5325  */
5326 static int ocfs2_xattr_bucket_value_truncate(struct inode *inode,
5327                                              struct ocfs2_xattr_bucket *bucket,
5328                                              int xe_off,
5329                                              int len,
5330                                              struct ocfs2_xattr_set_ctxt *ctxt)
5331 {
5332         int ret, offset;
5333         u64 value_blk;
5334         struct ocfs2_xattr_entry *xe;
5335         struct ocfs2_xattr_header *xh = bucket_xh(bucket);
5336         size_t blocksize = inode->i_sb->s_blocksize;
5337         struct ocfs2_xattr_value_buf vb = {
5338                 .vb_access = ocfs2_journal_access,
5339         };
5340
5341         xe = &xh->xh_entries[xe_off];
5342
5343         BUG_ON(!xe || ocfs2_xattr_is_local(xe));
5344
5345         offset = le16_to_cpu(xe->xe_name_offset) +
5346                  OCFS2_XATTR_SIZE(xe->xe_name_len);
5347
5348         value_blk = offset / blocksize;
5349
5350         /* We don't allow ocfs2_xattr_value to be stored in different block. */
5351         BUG_ON(value_blk != (offset + OCFS2_XATTR_ROOT_SIZE - 1) / blocksize);
5352
5353         vb.vb_bh = bucket->bu_bhs[value_blk];
5354         BUG_ON(!vb.vb_bh);
5355
5356         vb.vb_xv = (struct ocfs2_xattr_value_root *)
5357                 (vb.vb_bh->b_data + offset % blocksize);
5358
5359         /*
5360          * From here on out we have to dirty the bucket.  The generic
5361          * value calls only modify one of the bucket's bhs, but we need
5362          * to send the bucket at once.  So if they error, they *could* have
5363          * modified something.  We have to assume they did, and dirty
5364          * the whole bucket.  This leaves us in a consistent state.
5365          */
5366         mlog(0, "truncate %u in xattr bucket %llu to %d bytes.\n",
5367              xe_off, (unsigned long long)bucket_blkno(bucket), len);
5368         ret = ocfs2_xattr_value_truncate(inode, &vb, len, ctxt);
5369         if (ret) {
5370                 mlog_errno(ret);
5371                 goto out;
5372         }
5373
5374         ret = ocfs2_xattr_bucket_journal_access(ctxt->handle, bucket,
5375                                                 OCFS2_JOURNAL_ACCESS_WRITE);
5376         if (ret) {
5377                 mlog_errno(ret);
5378                 goto out;
5379         }
5380
5381         xe->xe_value_size = cpu_to_le64(len);
5382
5383         ocfs2_xattr_bucket_journal_dirty(ctxt->handle, bucket);
5384
5385 out:
5386         return ret;
5387 }
5388
5389 static int ocfs2_rm_xattr_cluster(struct inode *inode,
5390                                   struct buffer_head *root_bh,
5391                                   u64 blkno,
5392                                   u32 cpos,
5393                                   u32 len,
5394                                   void *para)
5395 {
5396         int ret;
5397         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5398         struct inode *tl_inode = osb->osb_tl_inode;
5399         handle_t *handle;
5400         struct ocfs2_xattr_block *xb =
5401                         (struct ocfs2_xattr_block *)root_bh->b_data;
5402         struct ocfs2_alloc_context *meta_ac = NULL;
5403         struct ocfs2_cached_dealloc_ctxt dealloc;
5404         struct ocfs2_extent_tree et;
5405
5406         ret = ocfs2_iterate_xattr_buckets(inode, blkno, len,
5407                                           ocfs2_delete_xattr_in_bucket, para);
5408         if (ret) {
5409                 mlog_errno(ret);
5410                 return ret;
5411         }
5412
5413         ocfs2_init_xattr_tree_extent_tree(&et, INODE_CACHE(inode), root_bh);
5414
5415         ocfs2_init_dealloc_ctxt(&dealloc);
5416
5417         mlog(0, "rm xattr extent rec at %u len = %u, start from %llu\n",
5418              cpos, len, (unsigned long long)blkno);
5419
5420         ocfs2_remove_xattr_clusters_from_cache(INODE_CACHE(inode), blkno,
5421                                                len);
5422
5423         ret = ocfs2_lock_allocators(inode, &et, 0, 1, NULL, &meta_ac);
5424         if (ret) {
5425                 mlog_errno(ret);
5426                 return ret;
5427         }
5428
5429         mutex_lock(&tl_inode->i_mutex);
5430
5431         if (ocfs2_truncate_log_needs_flush(osb)) {
5432                 ret = __ocfs2_flush_truncate_log(osb);
5433                 if (ret < 0) {
5434                         mlog_errno(ret);
5435                         goto out;
5436                 }
5437         }
5438
5439         handle = ocfs2_start_trans(osb, ocfs2_remove_extent_credits(osb->sb));
5440         if (IS_ERR(handle)) {
5441                 ret = -ENOMEM;
5442                 mlog_errno(ret);
5443                 goto out;
5444         }
5445
5446         ret = ocfs2_journal_access_xb(handle, INODE_CACHE(inode), root_bh,
5447                                       OCFS2_JOURNAL_ACCESS_WRITE);
5448         if (ret) {
5449                 mlog_errno(ret);
5450                 goto out_commit;
5451         }
5452
5453         ret = ocfs2_remove_extent(handle, &et, cpos, len, meta_ac,
5454                                   &dealloc);
5455         if (ret) {
5456                 mlog_errno(ret);
5457                 goto out_commit;
5458         }
5459
5460         le32_add_cpu(&xb->xb_attrs.xb_root.xt_clusters, -len);
5461         ocfs2_journal_dirty(handle, root_bh);
5462
5463         ret = ocfs2_truncate_log_append(osb, handle, blkno, len);
5464         if (ret)
5465                 mlog_errno(ret);
5466
5467 out_commit:
5468         ocfs2_commit_trans(osb, handle);
5469 out:
5470         ocfs2_schedule_truncate_log_flush(osb, 1);
5471
5472         mutex_unlock(&tl_inode->i_mutex);
5473
5474         if (meta_ac)
5475                 ocfs2_free_alloc_context(meta_ac);
5476
5477         ocfs2_run_deallocs(osb, &dealloc);
5478
5479         return ret;
5480 }
5481
5482 /*
5483  * check whether the xattr bucket is filled up with the same hash value.
5484  * If we want to insert the xattr with the same hash, return -ENOSPC.
5485  * If we want to insert a xattr with different hash value, go ahead
5486  * and ocfs2_divide_xattr_bucket will handle this.
5487  */
5488 static int ocfs2_check_xattr_bucket_collision(struct inode *inode,
5489                                               struct ocfs2_xattr_bucket *bucket,
5490                                               const char *name)
5491 {
5492         struct ocfs2_xattr_header *xh = bucket_xh(bucket);
5493         u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
5494
5495         if (name_hash != le32_to_cpu(xh->xh_entries[0].xe_name_hash))
5496                 return 0;
5497
5498         if (xh->xh_entries[le16_to_cpu(xh->xh_count) - 1].xe_name_hash ==
5499             xh->xh_entries[0].xe_name_hash) {
5500                 mlog(ML_ERROR, "Too much hash collision in xattr bucket %llu, "
5501                      "hash = %u\n",
5502                      (unsigned long long)bucket_blkno(bucket),
5503                      le32_to_cpu(xh->xh_entries[0].xe_name_hash));
5504                 return -ENOSPC;
5505         }
5506
5507         return 0;
5508 }
5509
5510 /*
5511  * Try to set the entry in the current bucket.  If we fail, the caller
5512  * will handle getting us another bucket.
5513  */
5514 static int ocfs2_xattr_set_entry_bucket(struct inode *inode,
5515                                         struct ocfs2_xattr_info *xi,
5516                                         struct ocfs2_xattr_search *xs,
5517                                         struct ocfs2_xattr_set_ctxt *ctxt)
5518 {
5519         int ret;
5520         struct ocfs2_xa_loc loc;
5521
5522         mlog_entry("Set xattr %s in xattr bucket\n", xi->xi_name);
5523
5524         ocfs2_init_xattr_bucket_xa_loc(&loc, xs->bucket,
5525                                        xs->not_found ? NULL : xs->here);
5526         ret = ocfs2_xa_set(&loc, xi, ctxt);
5527         if (!ret) {
5528                 xs->here = loc.xl_entry;
5529                 goto out;
5530         }
5531         if (ret != -ENOSPC) {
5532                 mlog_errno(ret);
5533                 goto out;
5534         }
5535
5536         /* Ok, we need space.  Let's try defragmenting the bucket. */
5537         ret = ocfs2_defrag_xattr_bucket(inode, ctxt->handle,
5538                                         xs->bucket);
5539         if (ret) {
5540                 mlog_errno(ret);
5541                 goto out;
5542         }
5543
5544         ret = ocfs2_xa_set(&loc, xi, ctxt);
5545         if (!ret) {
5546                 xs->here = loc.xl_entry;
5547                 goto out;
5548         }
5549         if (ret != -ENOSPC)
5550                 mlog_errno(ret);
5551
5552
5553 out:
5554         mlog_exit(ret);
5555         return ret;
5556 }
5557
5558 static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
5559                                              struct ocfs2_xattr_info *xi,
5560                                              struct ocfs2_xattr_search *xs,
5561                                              struct ocfs2_xattr_set_ctxt *ctxt)
5562 {
5563         int ret;
5564
5565         mlog_entry("Set xattr %s in xattr index block\n", xi->xi_name);
5566
5567         ret = ocfs2_xattr_set_entry_bucket(inode, xi, xs, ctxt);
5568         if (!ret)
5569                 goto out;
5570         if (ret != -ENOSPC) {
5571                 mlog_errno(ret);
5572                 goto out;
5573         }
5574
5575         /* Ack, need more space.  Let's try to get another bucket! */
5576
5577         /*
5578          * We do not allow for overlapping ranges between buckets. And
5579          * the maximum number of collisions we will allow for then is
5580          * one bucket's worth, so check it here whether we need to
5581          * add a new bucket for the insert.
5582          */
5583         ret = ocfs2_check_xattr_bucket_collision(inode,
5584                                                  xs->bucket,
5585                                                  xi->xi_name);
5586         if (ret) {
5587                 mlog_errno(ret);
5588                 goto out;
5589         }
5590
5591         ret = ocfs2_add_new_xattr_bucket(inode,
5592                                          xs->xattr_bh,
5593                                          xs->bucket,
5594                                          ctxt);
5595         if (ret) {
5596                 mlog_errno(ret);
5597                 goto out;
5598         }
5599
5600         /*
5601          * ocfs2_add_new_xattr_bucket() will have updated
5602          * xs->bucket if it moved, but it will not have updated
5603          * any of the other search fields.  Thus, we drop it and
5604          * re-search.  Everything should be cached, so it'll be
5605          * quick.
5606          */
5607         ocfs2_xattr_bucket_relse(xs->bucket);
5608         ret = ocfs2_xattr_index_block_find(inode, xs->xattr_bh,
5609                                            xi->xi_name_index,
5610                                            xi->xi_name, xs);
5611         if (ret && ret != -ENODATA)
5612                 goto out;
5613         xs->not_found = ret;
5614
5615         /* Ok, we have a new bucket, let's try again */
5616         ret = ocfs2_xattr_set_entry_bucket(inode, xi, xs, ctxt);
5617         if (ret && (ret != -ENOSPC))
5618                 mlog_errno(ret);
5619
5620 out:
5621         mlog_exit(ret);
5622         return ret;
5623 }
5624
5625 static int ocfs2_delete_xattr_in_bucket(struct inode *inode,
5626                                         struct ocfs2_xattr_bucket *bucket,
5627                                         void *para)
5628 {
5629         int ret = 0, ref_credits;
5630         struct ocfs2_xattr_header *xh = bucket_xh(bucket);
5631         u16 i;
5632         struct ocfs2_xattr_entry *xe;
5633         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5634         struct ocfs2_xattr_set_ctxt ctxt = {NULL, NULL,};
5635         int credits = ocfs2_remove_extent_credits(osb->sb) +
5636                 ocfs2_blocks_per_xattr_bucket(inode->i_sb);
5637         struct ocfs2_xattr_value_root *xv;
5638         struct ocfs2_rm_xattr_bucket_para *args =
5639                         (struct ocfs2_rm_xattr_bucket_para *)para;
5640
5641         ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
5642
5643         for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
5644                 xe = &xh->xh_entries[i];
5645                 if (ocfs2_xattr_is_local(xe))
5646                         continue;
5647
5648                 ret = ocfs2_get_xattr_tree_value_root(inode->i_sb, bucket,
5649                                                       i, &xv, NULL);
5650
5651                 ret = ocfs2_lock_xattr_remove_allocators(inode, xv,
5652                                                          args->ref_ci,
5653                                                          args->ref_root_bh,
5654                                                          &ctxt.meta_ac,
5655                                                          &ref_credits);
5656
5657                 ctxt.handle = ocfs2_start_trans(osb, credits + ref_credits);
5658                 if (IS_ERR(ctxt.handle)) {
5659                         ret = PTR_ERR(ctxt.handle);
5660                         mlog_errno(ret);
5661                         break;
5662                 }
5663
5664                 ret = ocfs2_xattr_bucket_value_truncate(inode, bucket,
5665                                                         i, 0, &ctxt);
5666
5667                 ocfs2_commit_trans(osb, ctxt.handle);
5668                 if (ctxt.meta_ac) {
5669                         ocfs2_free_alloc_context(ctxt.meta_ac);
5670                         ctxt.meta_ac = NULL;
5671                 }
5672                 if (ret) {
5673                         mlog_errno(ret);
5674                         break;
5675                 }
5676         }
5677
5678         if (ctxt.meta_ac)
5679                 ocfs2_free_alloc_context(ctxt.meta_ac);
5680         ocfs2_schedule_truncate_log_flush(osb, 1);
5681         ocfs2_run_deallocs(osb, &ctxt.dealloc);
5682         return ret;
5683 }
5684
5685 /*
5686  * Whenever we modify a xattr value root in the bucket(e.g, CoW
5687  * or change the extent record flag), we need to recalculate
5688  * the metaecc for the whole bucket. So it is done here.
5689  *
5690  * Note:
5691  * We have to give the extra credits for the caller.
5692  */
5693 static int ocfs2_xattr_bucket_post_refcount(struct inode *inode,
5694                                             handle_t *handle,
5695                                             void *para)
5696 {
5697         int ret;
5698         struct ocfs2_xattr_bucket *bucket =
5699                         (struct ocfs2_xattr_bucket *)para;
5700
5701         ret = ocfs2_xattr_bucket_journal_access(handle, bucket,
5702                                                 OCFS2_JOURNAL_ACCESS_WRITE);
5703         if (ret) {
5704                 mlog_errno(ret);
5705                 return ret;
5706         }
5707
5708         ocfs2_xattr_bucket_journal_dirty(handle, bucket);
5709
5710         return 0;
5711 }
5712
5713 /*
5714  * Special action we need if the xattr value is refcounted.
5715  *
5716  * 1. If the xattr is refcounted, lock the tree.
5717  * 2. CoW the xattr if we are setting the new value and the value
5718  *    will be stored outside.
5719  * 3. In other case, decrease_refcount will work for us, so just
5720  *    lock the refcount tree, calculate the meta and credits is OK.
5721  *
5722  * We have to do CoW before ocfs2_init_xattr_set_ctxt since
5723  * currently CoW is a completed transaction, while this function
5724  * will also lock the allocators and let us deadlock. So we will
5725  * CoW the whole xattr value.
5726  */
5727 static int ocfs2_prepare_refcount_xattr(struct inode *inode,
5728                                         struct ocfs2_dinode *di,
5729                                         struct ocfs2_xattr_info *xi,
5730                                         struct ocfs2_xattr_search *xis,
5731                                         struct ocfs2_xattr_search *xbs,
5732                                         struct ocfs2_refcount_tree **ref_tree,
5733                                         int *meta_add,
5734                                         int *credits)
5735 {
5736         int ret = 0;
5737         struct ocfs2_xattr_block *xb;
5738         struct ocfs2_xattr_entry *xe;
5739         char *base;
5740         u32 p_cluster, num_clusters;
5741         unsigned int ext_flags;
5742         int name_offset, name_len;
5743         struct ocfs2_xattr_value_buf vb;
5744         struct ocfs2_xattr_bucket *bucket = NULL;
5745         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5746         struct ocfs2_post_refcount refcount;
5747         struct ocfs2_post_refcount *p = NULL;
5748         struct buffer_head *ref_root_bh = NULL;
5749
5750         if (!xis->not_found) {
5751                 xe = xis->here;
5752                 name_offset = le16_to_cpu(xe->xe_name_offset);
5753                 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
5754                 base = xis->base;
5755                 vb.vb_bh = xis->inode_bh;
5756                 vb.vb_access = ocfs2_journal_access_di;
5757         } else {
5758                 int i, block_off = 0;
5759                 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
5760                 xe = xbs->here;
5761                 name_offset = le16_to_cpu(xe->xe_name_offset);
5762                 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
5763                 i = xbs->here - xbs->header->xh_entries;
5764
5765                 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
5766                         ret = ocfs2_xattr_bucket_get_name_value(inode->i_sb,
5767                                                         bucket_xh(xbs->bucket),
5768                                                         i, &block_off,
5769                                                         &name_offset);
5770                         if (ret) {
5771                                 mlog_errno(ret);
5772                                 goto out;
5773                         }
5774                         base = bucket_block(xbs->bucket, block_off);
5775                         vb.vb_bh = xbs->bucket->bu_bhs[block_off];
5776                         vb.vb_access = ocfs2_journal_access;
5777
5778                         if (ocfs2_meta_ecc(osb)) {
5779                                 /*create parameters for ocfs2_post_refcount. */
5780                                 bucket = xbs->bucket;
5781                                 refcount.credits = bucket->bu_blocks;
5782                                 refcount.para = bucket;
5783                                 refcount.func =
5784                                         ocfs2_xattr_bucket_post_refcount;
5785                                 p = &refcount;
5786                         }
5787                 } else {
5788                         base = xbs->base;
5789                         vb.vb_bh = xbs->xattr_bh;
5790                         vb.vb_access = ocfs2_journal_access_xb;
5791                 }
5792         }
5793
5794         if (ocfs2_xattr_is_local(xe))
5795                 goto out;
5796
5797         vb.vb_xv = (struct ocfs2_xattr_value_root *)
5798                                 (base + name_offset + name_len);
5799
5800         ret = ocfs2_xattr_get_clusters(inode, 0, &p_cluster,
5801                                        &num_clusters, &vb.vb_xv->xr_list,
5802                                        &ext_flags);
5803         if (ret) {
5804                 mlog_errno(ret);
5805                 goto out;
5806         }
5807
5808         /*
5809          * We just need to check the 1st extent record, since we always
5810          * CoW the whole xattr. So there shouldn't be a xattr with
5811          * some REFCOUNT extent recs after the 1st one.
5812          */
5813         if (!(ext_flags & OCFS2_EXT_REFCOUNTED))
5814                 goto out;
5815
5816         ret = ocfs2_lock_refcount_tree(osb, le64_to_cpu(di->i_refcount_loc),
5817                                        1, ref_tree, &ref_root_bh);
5818         if (ret) {
5819                 mlog_errno(ret);
5820                 goto out;
5821         }
5822
5823         /*
5824          * If we are deleting the xattr or the new size will be stored inside,
5825          * cool, leave it there, the xattr truncate process will remove them
5826          * for us(it still needs the refcount tree lock and the meta, credits).
5827          * And the worse case is that every cluster truncate will split the
5828          * refcount tree, and make the original extent become 3. So we will need
5829          * 2 * cluster more extent recs at most.
5830          */
5831         if (!xi->xi_value || xi->xi_value_len <= OCFS2_XATTR_INLINE_SIZE) {
5832
5833                 ret = ocfs2_refcounted_xattr_delete_need(inode,
5834                                                          &(*ref_tree)->rf_ci,
5835                                                          ref_root_bh, vb.vb_xv,
5836                                                          meta_add, credits);
5837                 if (ret)
5838                         mlog_errno(ret);
5839                 goto out;
5840         }
5841
5842         ret = ocfs2_refcount_cow_xattr(inode, di, &vb,
5843                                        *ref_tree, ref_root_bh, 0,
5844                                        le32_to_cpu(vb.vb_xv->xr_clusters), p);
5845         if (ret)
5846                 mlog_errno(ret);
5847
5848 out:
5849         brelse(ref_root_bh);
5850         return ret;
5851 }
5852
5853 /*
5854  * Add the REFCOUNTED flags for all the extent rec in ocfs2_xattr_value_root.
5855  * The physical clusters will be added to refcount tree.
5856  */
5857 static int ocfs2_xattr_value_attach_refcount(struct inode *inode,
5858                                 struct ocfs2_xattr_value_root *xv,
5859                                 struct ocfs2_extent_tree *value_et,
5860                                 struct ocfs2_caching_info *ref_ci,
5861                                 struct buffer_head *ref_root_bh,
5862                                 struct ocfs2_cached_dealloc_ctxt *dealloc,
5863                                 struct ocfs2_post_refcount *refcount)
5864 {
5865         int ret = 0;
5866         u32 clusters = le32_to_cpu(xv->xr_clusters);
5867         u32 cpos, p_cluster, num_clusters;
5868         struct ocfs2_extent_list *el = &xv->xr_list;
5869         unsigned int ext_flags;
5870
5871         cpos = 0;
5872         while (cpos < clusters) {
5873                 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
5874                                                &num_clusters, el, &ext_flags);
5875
5876                 cpos += num_clusters;
5877                 if ((ext_flags & OCFS2_EXT_REFCOUNTED))
5878                         continue;
5879
5880                 BUG_ON(!p_cluster);
5881
5882                 ret = ocfs2_add_refcount_flag(inode, value_et,
5883                                               ref_ci, ref_root_bh,
5884                                               cpos - num_clusters,
5885                                               p_cluster, num_clusters,
5886                                               dealloc, refcount);
5887                 if (ret) {
5888                         mlog_errno(ret);
5889                         break;
5890                 }
5891         }
5892
5893         return ret;
5894 }
5895
5896 /*
5897  * Given a normal ocfs2_xattr_header, refcount all the entries which
5898  * have value stored outside.
5899  * Used for xattrs stored in inode and ocfs2_xattr_block.
5900  */
5901 static int ocfs2_xattr_attach_refcount_normal(struct inode *inode,
5902                                 struct ocfs2_xattr_value_buf *vb,
5903                                 struct ocfs2_xattr_header *header,
5904                                 struct ocfs2_caching_info *ref_ci,
5905                                 struct buffer_head *ref_root_bh,
5906                                 struct ocfs2_cached_dealloc_ctxt *dealloc)
5907 {
5908
5909         struct ocfs2_xattr_entry *xe;
5910         struct ocfs2_xattr_value_root *xv;
5911         struct ocfs2_extent_tree et;
5912         int i, ret = 0;
5913
5914         for (i = 0; i < le16_to_cpu(header->xh_count); i++) {
5915                 xe = &header->xh_entries[i];
5916
5917                 if (ocfs2_xattr_is_local(xe))
5918                         continue;
5919
5920                 xv = (struct ocfs2_xattr_value_root *)((void *)header +
5921                         le16_to_cpu(xe->xe_name_offset) +
5922                         OCFS2_XATTR_SIZE(xe->xe_name_len));
5923
5924                 vb->vb_xv = xv;
5925                 ocfs2_init_xattr_value_extent_tree(&et, INODE_CACHE(inode), vb);
5926
5927                 ret = ocfs2_xattr_value_attach_refcount(inode, xv, &et,
5928                                                         ref_ci, ref_root_bh,
5929                                                         dealloc, NULL);
5930                 if (ret) {
5931                         mlog_errno(ret);
5932                         break;
5933                 }
5934         }
5935
5936         return ret;
5937 }
5938
5939 static int ocfs2_xattr_inline_attach_refcount(struct inode *inode,
5940                                 struct buffer_head *fe_bh,
5941                                 struct ocfs2_caching_info *ref_ci,
5942                                 struct buffer_head *ref_root_bh,
5943                                 struct ocfs2_cached_dealloc_ctxt *dealloc)
5944 {
5945         struct ocfs2_dinode *di = (struct ocfs2_dinode *)fe_bh->b_data;
5946         struct ocfs2_xattr_header *header = (struct ocfs2_xattr_header *)
5947                                 (fe_bh->b_data + inode->i_sb->s_blocksize -
5948                                 le16_to_cpu(di->i_xattr_inline_size));
5949         struct ocfs2_xattr_value_buf vb = {
5950                 .vb_bh = fe_bh,
5951                 .vb_access = ocfs2_journal_access_di,
5952         };
5953
5954         return ocfs2_xattr_attach_refcount_normal(inode, &vb, header,
5955                                                   ref_ci, ref_root_bh, dealloc);
5956 }
5957
5958 struct ocfs2_xattr_tree_value_refcount_para {
5959         struct ocfs2_caching_info *ref_ci;
5960         struct buffer_head *ref_root_bh;
5961         struct ocfs2_cached_dealloc_ctxt *dealloc;
5962 };
5963
5964 static int ocfs2_get_xattr_tree_value_root(struct super_block *sb,
5965                                            struct ocfs2_xattr_bucket *bucket,
5966                                            int offset,
5967                                            struct ocfs2_xattr_value_root **xv,
5968                                            struct buffer_head **bh)
5969 {
5970         int ret, block_off, name_offset;
5971         struct ocfs2_xattr_header *xh = bucket_xh(bucket);
5972         struct ocfs2_xattr_entry *xe = &xh->xh_entries[offset];
5973         void *base;
5974
5975         ret = ocfs2_xattr_bucket_get_name_value(sb,
5976                                                 bucket_xh(bucket),
5977                                                 offset,
5978                                                 &block_off,
5979                                                 &name_offset);
5980         if (ret) {
5981                 mlog_errno(ret);
5982                 goto out;
5983         }
5984
5985         base = bucket_block(bucket, block_off);
5986
5987         *xv = (struct ocfs2_xattr_value_root *)(base + name_offset +
5988                          OCFS2_XATTR_SIZE(xe->xe_name_len));
5989
5990         if (bh)
5991                 *bh = bucket->bu_bhs[block_off];
5992 out:
5993         return ret;
5994 }
5995
5996 /*
5997  * For a given xattr bucket, refcount all the entries which
5998  * have value stored outside.
5999  */
6000 static int ocfs2_xattr_bucket_value_refcount(struct inode *inode,
6001                                              struct ocfs2_xattr_bucket *bucket,
6002                                              void *para)
6003 {
6004         int i, ret = 0;
6005         struct ocfs2_extent_tree et;
6006         struct ocfs2_xattr_tree_value_refcount_para *ref =
6007                         (struct ocfs2_xattr_tree_value_refcount_para *)para;
6008         struct ocfs2_xattr_header *xh =
6009                         (struct ocfs2_xattr_header *)bucket->bu_bhs[0]->b_data;
6010         struct ocfs2_xattr_entry *xe;
6011         struct ocfs2_xattr_value_buf vb = {
6012                 .vb_access = ocfs2_journal_access,
6013         };
6014         struct ocfs2_post_refcount refcount = {
6015                 .credits = bucket->bu_blocks,
6016                 .para = bucket,
6017                 .func = ocfs2_xattr_bucket_post_refcount,
6018         };
6019         struct ocfs2_post_refcount *p = NULL;
6020
6021         /* We only need post_refcount if we support metaecc. */
6022         if (ocfs2_meta_ecc(OCFS2_SB(inode->i_sb)))
6023                 p = &refcount;
6024
6025         mlog(0, "refcount bucket %llu, count = %u\n",
6026              (unsigned long long)bucket_blkno(bucket),
6027              le16_to_cpu(xh->xh_count));
6028         for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
6029                 xe = &xh->xh_entries[i];
6030
6031                 if (ocfs2_xattr_is_local(xe))
6032                         continue;
6033
6034                 ret = ocfs2_get_xattr_tree_value_root(inode->i_sb, bucket, i,
6035                                                       &vb.vb_xv, &vb.vb_bh);
6036                 if (ret) {
6037                         mlog_errno(ret);
6038                         break;
6039                 }
6040
6041                 ocfs2_init_xattr_value_extent_tree(&et,
6042                                                    INODE_CACHE(inode), &vb);
6043
6044                 ret = ocfs2_xattr_value_attach_refcount(inode, vb.vb_xv,
6045                                                         &et, ref->ref_ci,
6046                                                         ref->ref_root_bh,
6047                                                         ref->dealloc, p);
6048                 if (ret) {
6049                         mlog_errno(ret);
6050                         break;
6051                 }
6052         }
6053
6054         return ret;
6055
6056 }
6057
6058 static int ocfs2_refcount_xattr_tree_rec(struct inode *inode,
6059                                      struct buffer_head *root_bh,
6060                                      u64 blkno, u32 cpos, u32 len, void *para)
6061 {
6062         return ocfs2_iterate_xattr_buckets(inode, blkno, len,
6063                                            ocfs2_xattr_bucket_value_refcount,
6064                                            para);
6065 }
6066
6067 static int ocfs2_xattr_block_attach_refcount(struct inode *inode,
6068                                 struct buffer_head *blk_bh,
6069                                 struct ocfs2_caching_info *ref_ci,
6070                                 struct buffer_head *ref_root_bh,
6071                                 struct ocfs2_cached_dealloc_ctxt *dealloc)
6072 {
6073         int ret = 0;
6074         struct ocfs2_xattr_block *xb =
6075                                 (struct ocfs2_xattr_block *)blk_bh->b_data;
6076
6077         if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
6078                 struct ocfs2_xattr_header *header = &xb->xb_attrs.xb_header;
6079                 struct ocfs2_xattr_value_buf vb = {
6080                         .vb_bh = blk_bh,
6081                         .vb_access = ocfs2_journal_access_xb,
6082                 };
6083
6084                 ret = ocfs2_xattr_attach_refcount_normal(inode, &vb, header,
6085                                                          ref_ci, ref_root_bh,
6086                                                          dealloc);
6087         } else {
6088                 struct ocfs2_xattr_tree_value_refcount_para para = {
6089                         .ref_ci = ref_ci,
6090                         .ref_root_bh = ref_root_bh,
6091                         .dealloc = dealloc,
6092                 };
6093
6094                 ret = ocfs2_iterate_xattr_index_block(inode, blk_bh,
6095                                                 ocfs2_refcount_xattr_tree_rec,
6096                                                 &para);
6097         }
6098
6099         return ret;
6100 }
6101
6102 int ocfs2_xattr_attach_refcount_tree(struct inode *inode,
6103                                      struct buffer_head *fe_bh,
6104                                      struct ocfs2_caching_info *ref_ci,
6105                                      struct buffer_head *ref_root_bh,
6106                                      struct ocfs2_cached_dealloc_ctxt *dealloc)
6107 {
6108         int ret = 0;
6109         struct ocfs2_inode_info *oi = OCFS2_I(inode);
6110         struct ocfs2_dinode *di = (struct ocfs2_dinode *)fe_bh->b_data;
6111         struct buffer_head *blk_bh = NULL;
6112
6113         if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
6114                 ret = ocfs2_xattr_inline_attach_refcount(inode, fe_bh,
6115                                                          ref_ci, ref_root_bh,
6116                                                          dealloc);
6117                 if (ret) {
6118                         mlog_errno(ret);
6119                         goto out;
6120                 }
6121         }
6122
6123         if (!di->i_xattr_loc)
6124                 goto out;
6125
6126         ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
6127                                      &blk_bh);
6128         if (ret < 0) {
6129                 mlog_errno(ret);
6130                 goto out;
6131         }
6132
6133         ret = ocfs2_xattr_block_attach_refcount(inode, blk_bh, ref_ci,
6134                                                 ref_root_bh, dealloc);
6135         if (ret)
6136                 mlog_errno(ret);
6137
6138         brelse(blk_bh);
6139 out:
6140
6141         return ret;
6142 }
6143
6144 typedef int (should_xattr_reflinked)(struct ocfs2_xattr_entry *xe);
6145 /*
6146  * Store the information we need in xattr reflink.
6147  * old_bh and new_bh are inode bh for the old and new inode.
6148  */
6149 struct ocfs2_xattr_reflink {
6150         struct inode *old_inode;
6151         struct inode *new_inode;
6152         struct buffer_head *old_bh;
6153         struct buffer_head *new_bh;
6154         struct ocfs2_caching_info *ref_ci;
6155         struct buffer_head *ref_root_bh;
6156         struct ocfs2_cached_dealloc_ctxt *dealloc;
6157         should_xattr_reflinked *xattr_reflinked;
6158 };
6159
6160 /*
6161  * Given a xattr header and xe offset,
6162  * return the proper xv and the corresponding bh.
6163  * xattr in inode, block and xattr tree have different implementaions.
6164  */
6165 typedef int (get_xattr_value_root)(struct super_block *sb,
6166                                    struct buffer_head *bh,
6167                                    struct ocfs2_xattr_header *xh,
6168                                    int offset,
6169                                    struct ocfs2_xattr_value_root **xv,
6170                                    struct buffer_head **ret_bh,
6171                                    void *para);
6172
6173 /*
6174  * Calculate all the xattr value root metadata stored in this xattr header and
6175  * credits we need if we create them from the scratch.
6176  * We use get_xattr_value_root so that all types of xattr container can use it.
6177  */
6178 static int ocfs2_value_metas_in_xattr_header(struct super_block *sb,
6179                                              struct buffer_head *bh,
6180                                              struct ocfs2_xattr_header *xh,
6181                                              int *metas, int *credits,
6182                                              int *num_recs,
6183                                              get_xattr_value_root *func,
6184                                              void *para)
6185 {
6186         int i, ret = 0;
6187         struct ocfs2_xattr_value_root *xv;
6188         struct ocfs2_xattr_entry *xe;
6189
6190         for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
6191                 xe = &xh->xh_entries[i];
6192                 if (ocfs2_xattr_is_local(xe))
6193                         continue;
6194
6195                 ret = func(sb, bh, xh, i, &xv, NULL, para);
6196                 if (ret) {
6197                         mlog_errno(ret);
6198                         break;
6199                 }
6200
6201                 *metas += le16_to_cpu(xv->xr_list.l_tree_depth) *
6202                           le16_to_cpu(xv->xr_list.l_next_free_rec);
6203
6204                 *credits += ocfs2_calc_extend_credits(sb,
6205                                                 &def_xv.xv.xr_list,
6206                                                 le32_to_cpu(xv->xr_clusters));
6207
6208                 /*
6209                  * If the value is a tree with depth > 1, We don't go deep
6210                  * to the extent block, so just calculate a maximum record num.
6211                  */
6212                 if (!xv->xr_list.l_tree_depth)
6213                         *num_recs += le16_to_cpu(xv->xr_list.l_next_free_rec);
6214                 else
6215                         *num_recs += ocfs2_clusters_for_bytes(sb,
6216                                                               XATTR_SIZE_MAX);
6217         }
6218
6219         return ret;
6220 }
6221
6222 /* Used by xattr inode and block to return the right xv and buffer_head. */
6223 static int ocfs2_get_xattr_value_root(struct super_block *sb,
6224                                       struct buffer_head *bh,
6225                                       struct ocfs2_xattr_header *xh,
6226                                       int offset,
6227                                       struct ocfs2_xattr_value_root **xv,
6228                                       struct buffer_head **ret_bh,
6229                                       void *para)
6230 {
6231         struct ocfs2_xattr_entry *xe = &xh->xh_entries[offset];
6232
6233         *xv = (struct ocfs2_xattr_value_root *)((void *)xh +
6234                 le16_to_cpu(xe->xe_name_offset) +
6235                 OCFS2_XATTR_SIZE(xe->xe_name_len));
6236
6237         if (ret_bh)
6238                 *ret_bh = bh;
6239
6240         return 0;
6241 }
6242
6243 /*
6244  * Lock the meta_ac and caculate how much credits we need for reflink xattrs.
6245  * It is only used for inline xattr and xattr block.
6246  */
6247 static int ocfs2_reflink_lock_xattr_allocators(struct ocfs2_super *osb,
6248                                         struct ocfs2_xattr_header *xh,
6249                                         struct buffer_head *ref_root_bh,
6250                                         int *credits,
6251                                         struct ocfs2_alloc_context **meta_ac)
6252 {
6253         int ret, meta_add = 0, num_recs = 0;
6254         struct ocfs2_refcount_block *rb =
6255                         (struct ocfs2_refcount_block *)ref_root_bh->b_data;
6256
6257         *credits = 0;
6258
6259         ret = ocfs2_value_metas_in_xattr_header(osb->sb, NULL, xh,
6260                                                 &meta_add, credits, &num_recs,
6261                                                 ocfs2_get_xattr_value_root,
6262                                                 NULL);
6263         if (ret) {
6264                 mlog_errno(ret);
6265                 goto out;
6266         }
6267
6268         /*
6269          * We need to add/modify num_recs in refcount tree, so just calculate
6270          * an approximate number we need for refcount tree change.
6271          * Sometimes we need to split the tree, and after split,  half recs
6272          * will be moved to the new block, and a new block can only provide
6273          * half number of recs. So we multiple new blocks by 2.
6274          */
6275         num_recs = num_recs / ocfs2_refcount_recs_per_rb(osb->sb) * 2;
6276         meta_add += num_recs;
6277         *credits += num_recs + num_recs * OCFS2_EXPAND_REFCOUNT_TREE_CREDITS;
6278         if (le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL)
6279                 *credits += le16_to_cpu(rb->rf_list.l_tree_depth) *
6280                             le16_to_cpu(rb->rf_list.l_next_free_rec) + 1;
6281         else
6282                 *credits += 1;
6283
6284         ret = ocfs2_reserve_new_metadata_blocks(osb, meta_add, meta_ac);
6285         if (ret)
6286                 mlog_errno(ret);
6287
6288 out:
6289         return ret;
6290 }
6291
6292 /*
6293  * Given a xattr header, reflink all the xattrs in this container.
6294  * It can be used for inode, block and bucket.
6295  *
6296  * NOTE:
6297  * Before we call this function, the caller has memcpy the xattr in
6298  * old_xh to the new_xh.
6299  *
6300  * If args.xattr_reflinked is set, call it to decide whether the xe should
6301  * be reflinked or not. If not, remove it from the new xattr header.
6302  */
6303 static int ocfs2_reflink_xattr_header(handle_t *handle,
6304                                       struct ocfs2_xattr_reflink *args,
6305                                       struct buffer_head *old_bh,
6306                                       struct ocfs2_xattr_header *xh,
6307                                       struct buffer_head *new_bh,
6308                                       struct ocfs2_xattr_header *new_xh,
6309                                       struct ocfs2_xattr_value_buf *vb,
6310                                       struct ocfs2_alloc_context *meta_ac,
6311                                       get_xattr_value_root *func,
6312                                       void *para)
6313 {
6314         int ret = 0, i, j;
6315         struct super_block *sb = args->old_inode->i_sb;
6316         struct buffer_head *value_bh;
6317         struct ocfs2_xattr_entry *xe, *last;
6318         struct ocfs2_xattr_value_root *xv, *new_xv;
6319         struct ocfs2_extent_tree data_et;
6320         u32 clusters, cpos, p_cluster, num_clusters;
6321         unsigned int ext_flags = 0;
6322
6323         mlog(0, "reflink xattr in container %llu, count = %u\n",
6324              (unsigned long long)old_bh->b_blocknr, le16_to_cpu(xh->xh_count));
6325
6326         last = &new_xh->xh_entries[le16_to_cpu(new_xh->xh_count)];
6327         for (i = 0, j = 0; i < le16_to_cpu(xh->xh_count); i++, j++) {
6328                 xe = &xh->xh_entries[i];
6329
6330                 if (args->xattr_reflinked && !args->xattr_reflinked(xe)) {
6331                         xe = &new_xh->xh_entries[j];
6332
6333                         le16_add_cpu(&new_xh->xh_count, -1);
6334                         if (new_xh->xh_count) {
6335                                 memmove(xe, xe + 1,
6336                                         (void *)last - (void *)xe);
6337                                 memset(last, 0,
6338                                        sizeof(struct ocfs2_xattr_entry));
6339                         }
6340
6341                         /*
6342                          * We don't want j to increase in the next round since
6343                          * it is already moved ahead.
6344                          */
6345                         j--;
6346                         continue;
6347                 }
6348
6349                 if (ocfs2_xattr_is_local(xe))
6350                         continue;
6351
6352                 ret = func(sb, old_bh, xh, i, &xv, NULL, para);
6353                 if (ret) {
6354                         mlog_errno(ret);
6355                         break;
6356                 }
6357
6358                 ret = func(sb, new_bh, new_xh, j, &new_xv, &value_bh, para);
6359                 if (ret) {
6360                         mlog_errno(ret);
6361                         break;
6362                 }
6363
6364                 /*
6365                  * For the xattr which has l_tree_depth = 0, all the extent
6366                  * recs have already be copied to the new xh with the
6367                  * propriate OCFS2_EXT_REFCOUNTED flag we just need to
6368                  * increase the refount count int the refcount tree.
6369                  *
6370                  * For the xattr which has l_tree_depth > 0, we need
6371                  * to initialize it to the empty default value root,
6372                  * and then insert the extents one by one.
6373                  */
6374                 if (xv->xr_list.l_tree_depth) {
6375                         memcpy(new_xv, &def_xv, sizeof(def_xv));
6376                         vb->vb_xv = new_xv;
6377                         vb->vb_bh = value_bh;
6378                         ocfs2_init_xattr_value_extent_tree(&data_et,
6379                                         INODE_CACHE(args->new_inode), vb);
6380                 }
6381
6382                 clusters = le32_to_cpu(xv->xr_clusters);
6383                 cpos = 0;
6384                 while (cpos < clusters) {
6385                         ret = ocfs2_xattr_get_clusters(args->old_inode,
6386                                                        cpos,
6387                                                        &p_cluster,
6388                                                        &num_clusters,
6389                                                        &xv->xr_list,
6390                                                        &ext_flags);
6391                         if (ret) {
6392                                 mlog_errno(ret);
6393                                 goto out;
6394                         }
6395
6396                         BUG_ON(!p_cluster);
6397
6398                         if (xv->xr_list.l_tree_depth) {
6399                                 ret = ocfs2_insert_extent(handle,
6400                                                 &data_et, cpos,
6401                                                 ocfs2_clusters_to_blocks(
6402                                                         args->old_inode->i_sb,
6403                                                         p_cluster),
6404                                                 num_clusters, ext_flags,
6405                                                 meta_ac);
6406                                 if (ret) {
6407                                         mlog_errno(ret);
6408                                         goto out;
6409                                 }
6410                         }
6411
6412                         ret = ocfs2_increase_refcount(handle, args->ref_ci,
6413                                                       args->ref_root_bh,
6414                                                       p_cluster, num_clusters,
6415                                                       meta_ac, args->dealloc);
6416                         if (ret) {
6417                                 mlog_errno(ret);
6418                                 goto out;
6419                         }
6420
6421                         cpos += num_clusters;
6422                 }
6423         }
6424
6425 out:
6426         return ret;
6427 }
6428
6429 static int ocfs2_reflink_xattr_inline(struct ocfs2_xattr_reflink *args)
6430 {
6431         int ret = 0, credits = 0;
6432         handle_t *handle;
6433         struct ocfs2_super *osb = OCFS2_SB(args->old_inode->i_sb);
6434         struct ocfs2_dinode *di = (struct ocfs2_dinode *)args->old_bh->b_data;
6435         int inline_size = le16_to_cpu(di->i_xattr_inline_size);
6436         int header_off = osb->sb->s_blocksize - inline_size;
6437         struct ocfs2_xattr_header *xh = (struct ocfs2_xattr_header *)
6438                                         (args->old_bh->b_data + header_off);
6439         struct ocfs2_xattr_header *new_xh = (struct ocfs2_xattr_header *)
6440                                         (args->new_bh->b_data + header_off);
6441         struct ocfs2_alloc_context *meta_ac = NULL;
6442         struct ocfs2_inode_info *new_oi;
6443         struct ocfs2_dinode *new_di;
6444         struct ocfs2_xattr_value_buf vb = {
6445                 .vb_bh = args->new_bh,
6446                 .vb_access = ocfs2_journal_access_di,
6447         };
6448
6449         ret = ocfs2_reflink_lock_xattr_allocators(osb, xh, args->ref_root_bh,
6450                                                   &credits, &meta_ac);
6451         if (ret) {
6452                 mlog_errno(ret);
6453                 goto out;
6454         }
6455
6456         handle = ocfs2_start_trans(osb, credits);
6457         if (IS_ERR(handle)) {
6458                 ret = PTR_ERR(handle);
6459                 mlog_errno(ret);
6460                 goto out;
6461         }
6462
6463         ret = ocfs2_journal_access_di(handle, INODE_CACHE(args->new_inode),
6464                                       args->new_bh, OCFS2_JOURNAL_ACCESS_WRITE);
6465         if (ret) {
6466                 mlog_errno(ret);
6467                 goto out_commit;
6468         }
6469
6470         memcpy(args->new_bh->b_data + header_off,
6471                args->old_bh->b_data + header_off, inline_size);
6472
6473         new_di = (struct ocfs2_dinode *)args->new_bh->b_data;
6474         new_di->i_xattr_inline_size = cpu_to_le16(inline_size);
6475
6476         ret = ocfs2_reflink_xattr_header(handle, args, args->old_bh, xh,
6477                                          args->new_bh, new_xh, &vb, meta_ac,
6478                                          ocfs2_get_xattr_value_root, NULL);
6479         if (ret) {
6480                 mlog_errno(ret);
6481                 goto out_commit;
6482         }
6483
6484         new_oi = OCFS2_I(args->new_inode);
6485         spin_lock(&new_oi->ip_lock);
6486         new_oi->ip_dyn_features |= OCFS2_HAS_XATTR_FL | OCFS2_INLINE_XATTR_FL;
6487         new_di->i_dyn_features = cpu_to_le16(new_oi->ip_dyn_features);
6488         spin_unlock(&new_oi->ip_lock);
6489
6490         ocfs2_journal_dirty(handle, args->new_bh);
6491
6492 out_commit:
6493         ocfs2_commit_trans(osb, handle);
6494
6495 out:
6496         if (meta_ac)
6497                 ocfs2_free_alloc_context(meta_ac);
6498         return ret;
6499 }
6500
6501 static int ocfs2_create_empty_xattr_block(struct inode *inode,
6502                                           struct buffer_head *fe_bh,
6503                                           struct buffer_head **ret_bh,
6504                                           int indexed)
6505 {
6506         int ret;
6507         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
6508         struct ocfs2_xattr_set_ctxt ctxt;
6509
6510         memset(&ctxt, 0, sizeof(ctxt));
6511         ret = ocfs2_reserve_new_metadata_blocks(osb, 1, &ctxt.meta_ac);
6512         if (ret < 0) {
6513                 mlog_errno(ret);
6514                 return ret;
6515         }
6516
6517         ctxt.handle = ocfs2_start_trans(osb, OCFS2_XATTR_BLOCK_CREATE_CREDITS);
6518         if (IS_ERR(ctxt.handle)) {
6519                 ret = PTR_ERR(ctxt.handle);
6520                 mlog_errno(ret);
6521                 goto out;
6522         }
6523
6524         mlog(0, "create new xattr block for inode %llu, index = %d\n",
6525              (unsigned long long)fe_bh->b_blocknr, indexed);
6526         ret = ocfs2_create_xattr_block(inode, fe_bh, &ctxt, indexed,
6527                                        ret_bh);
6528         if (ret)
6529                 mlog_errno(ret);
6530
6531         ocfs2_commit_trans(osb, ctxt.handle);
6532 out:
6533         ocfs2_free_alloc_context(ctxt.meta_ac);
6534         return ret;
6535 }
6536
6537 static int ocfs2_reflink_xattr_block(struct ocfs2_xattr_reflink *args,
6538                                      struct buffer_head *blk_bh,
6539                                      struct buffer_head *new_blk_bh)
6540 {
6541         int ret = 0, credits = 0;
6542         handle_t *handle;
6543         struct ocfs2_inode_info *new_oi = OCFS2_I(args->new_inode);
6544         struct ocfs2_dinode *new_di;
6545         struct ocfs2_super *osb = OCFS2_SB(args->new_inode->i_sb);
6546         int header_off = offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
6547         struct ocfs2_xattr_block *xb =
6548                         (struct ocfs2_xattr_block *)blk_bh->b_data;
6549         struct ocfs2_xattr_header *xh = &xb->xb_attrs.xb_header;
6550         struct ocfs2_xattr_block *new_xb =
6551                         (struct ocfs2_xattr_block *)new_blk_bh->b_data;
6552         struct ocfs2_xattr_header *new_xh = &new_xb->xb_attrs.xb_header;
6553         struct ocfs2_alloc_context *meta_ac;
6554         struct ocfs2_xattr_value_buf vb = {
6555                 .vb_bh = new_blk_bh,
6556                 .vb_access = ocfs2_journal_access_xb,
6557         };
6558
6559         ret = ocfs2_reflink_lock_xattr_allocators(osb, xh, args->ref_root_bh,
6560                                                   &credits, &meta_ac);
6561         if (ret) {
6562                 mlog_errno(ret);
6563                 return ret;
6564         }
6565
6566         /* One more credits in case we need to add xattr flags in new inode. */
6567         handle = ocfs2_start_trans(osb, credits + 1);
6568         if (IS_ERR(handle)) {
6569                 ret = PTR_ERR(handle);
6570                 mlog_errno(ret);
6571                 goto out;
6572         }
6573
6574         if (!(new_oi->ip_dyn_features & OCFS2_HAS_XATTR_FL)) {
6575                 ret = ocfs2_journal_access_di(handle,
6576                                               INODE_CACHE(args->new_inode),
6577                                               args->new_bh,
6578                                               OCFS2_JOURNAL_ACCESS_WRITE);
6579                 if (ret) {
6580                         mlog_errno(ret);
6581                         goto out_commit;
6582                 }
6583         }
6584
6585         ret = ocfs2_journal_access_xb(handle, INODE_CACHE(args->new_inode),
6586                                       new_blk_bh, OCFS2_JOURNAL_ACCESS_WRITE);
6587         if (ret) {
6588                 mlog_errno(ret);
6589                 goto out_commit;
6590         }
6591
6592         memcpy(new_blk_bh->b_data + header_off, blk_bh->b_data + header_off,
6593                osb->sb->s_blocksize - header_off);
6594
6595         ret = ocfs2_reflink_xattr_header(handle, args, blk_bh, xh,
6596                                          new_blk_bh, new_xh, &vb, meta_ac,
6597                                          ocfs2_get_xattr_value_root, NULL);
6598         if (ret) {
6599                 mlog_errno(ret);
6600                 goto out_commit;
6601         }
6602
6603         ocfs2_journal_dirty(handle, new_blk_bh);
6604
6605         if (!(new_oi->ip_dyn_features & OCFS2_HAS_XATTR_FL)) {
6606                 new_di = (struct ocfs2_dinode *)args->new_bh->b_data;
6607                 spin_lock(&new_oi->ip_lock);
6608                 new_oi->ip_dyn_features |= OCFS2_HAS_XATTR_FL;
6609                 new_di->i_dyn_features = cpu_to_le16(new_oi->ip_dyn_features);
6610                 spin_unlock(&new_oi->ip_lock);
6611
6612                 ocfs2_journal_dirty(handle, args->new_bh);
6613         }
6614
6615 out_commit:
6616         ocfs2_commit_trans(osb, handle);
6617
6618 out:
6619         ocfs2_free_alloc_context(meta_ac);
6620         return ret;
6621 }
6622
6623 struct ocfs2_reflink_xattr_tree_args {
6624         struct ocfs2_xattr_reflink *reflink;
6625         struct buffer_head *old_blk_bh;
6626         struct buffer_head *new_blk_bh;
6627         struct ocfs2_xattr_bucket *old_bucket;
6628         struct ocfs2_xattr_bucket *new_bucket;
6629 };
6630
6631 /*
6632  * NOTE:
6633  * We have to handle the case that both old bucket and new bucket
6634  * will call this function to get the right ret_bh.
6635  * So The caller must give us the right bh.
6636  */
6637 static int ocfs2_get_reflink_xattr_value_root(struct super_block *sb,
6638                                         struct buffer_head *bh,
6639                                         struct ocfs2_xattr_header *xh,
6640                                         int offset,
6641                                         struct ocfs2_xattr_value_root **xv,
6642                                         struct buffer_head **ret_bh,
6643                                         void *para)
6644 {
6645         struct ocfs2_reflink_xattr_tree_args *args =
6646                         (struct ocfs2_reflink_xattr_tree_args *)para;
6647         struct ocfs2_xattr_bucket *bucket;
6648
6649         if (bh == args->old_bucket->bu_bhs[0])
6650                 bucket = args->old_bucket;
6651         else
6652                 bucket = args->new_bucket;
6653
6654         return ocfs2_get_xattr_tree_value_root(sb, bucket, offset,
6655                                                xv, ret_bh);
6656 }
6657
6658 struct ocfs2_value_tree_metas {
6659         int num_metas;
6660         int credits;
6661         int num_recs;
6662 };
6663
6664 static int ocfs2_value_tree_metas_in_bucket(struct super_block *sb,
6665                                         struct buffer_head *bh,
6666                                         struct ocfs2_xattr_header *xh,
6667                                         int offset,
6668                                         struct ocfs2_xattr_value_root **xv,
6669                                         struct buffer_head **ret_bh,
6670                                         void *para)
6671 {
6672         struct ocfs2_xattr_bucket *bucket =
6673                                 (struct ocfs2_xattr_bucket *)para;
6674
6675         return ocfs2_get_xattr_tree_value_root(sb, bucket, offset,
6676                                                xv, ret_bh);
6677 }
6678
6679 static int ocfs2_calc_value_tree_metas(struct inode *inode,
6680                                       struct ocfs2_xattr_bucket *bucket,
6681                                       void *para)
6682 {
6683         struct ocfs2_value_tree_metas *metas =
6684                         (struct ocfs2_value_tree_metas *)para;
6685         struct ocfs2_xattr_header *xh =
6686                         (struct ocfs2_xattr_header *)bucket->bu_bhs[0]->b_data;
6687
6688         /* Add the credits for this bucket first. */
6689         metas->credits += bucket->bu_blocks;
6690         return ocfs2_value_metas_in_xattr_header(inode->i_sb, bucket->bu_bhs[0],
6691                                         xh, &metas->num_metas,
6692                                         &metas->credits, &metas->num_recs,
6693                                         ocfs2_value_tree_metas_in_bucket,
6694                                         bucket);
6695 }
6696
6697 /*
6698  * Given a xattr extent rec starting from blkno and having len clusters,
6699  * iterate all the buckets calculate how much metadata we need for reflinking
6700  * all the ocfs2_xattr_value_root and lock the allocators accordingly.
6701  */
6702 static int ocfs2_lock_reflink_xattr_rec_allocators(
6703                                 struct ocfs2_reflink_xattr_tree_args *args,
6704                                 struct ocfs2_extent_tree *xt_et,
6705                                 u64 blkno, u32 len, int *credits,
6706                                 struct ocfs2_alloc_context **meta_ac,
6707                                 struct ocfs2_alloc_context **data_ac)
6708 {
6709         int ret, num_free_extents;
6710         struct ocfs2_value_tree_metas metas;
6711         struct ocfs2_super *osb = OCFS2_SB(args->reflink->old_inode->i_sb);
6712         struct ocfs2_refcount_block *rb;
6713
6714         memset(&metas, 0, sizeof(metas));
6715
6716         ret = ocfs2_iterate_xattr_buckets(args->reflink->old_inode, blkno, len,
6717                                           ocfs2_calc_value_tree_metas, &metas);
6718         if (ret) {
6719                 mlog_errno(ret);
6720                 goto out;
6721         }
6722
6723         *credits = metas.credits;
6724
6725         /*
6726          * Calculate we need for refcount tree change.
6727          *
6728          * We need to add/modify num_recs in refcount tree, so just calculate
6729          * an approximate number we need for refcount tree change.
6730          * Sometimes we need to split the tree, and after split,  half recs
6731          * will be moved to the new block, and a new block can only provide
6732          * half number of recs. So we multiple new blocks by 2.
6733          * In the end, we have to add credits for modifying the already
6734          * existed refcount block.
6735          */
6736         rb = (struct ocfs2_refcount_block *)args->reflink->ref_root_bh->b_data;
6737         metas.num_recs =
6738                 (metas.num_recs + ocfs2_refcount_recs_per_rb(osb->sb) - 1) /
6739                  ocfs2_refcount_recs_per_rb(osb->sb) * 2;
6740         metas.num_metas += metas.num_recs;
6741         *credits += metas.num_recs +
6742                     metas.num_recs * OCFS2_EXPAND_REFCOUNT_TREE_CREDITS;
6743         if (le32_to_cpu(rb->rf_flags) & OCFS2_REFCOUNT_TREE_FL)
6744                 *credits += le16_to_cpu(rb->rf_list.l_tree_depth) *
6745                             le16_to_cpu(rb->rf_list.l_next_free_rec) + 1;
6746         else
6747                 *credits += 1;
6748
6749         /* count in the xattr tree change. */
6750         num_free_extents = ocfs2_num_free_extents(osb, xt_et);
6751         if (num_free_extents < 0) {
6752                 ret = num_free_extents;
6753                 mlog_errno(ret);
6754                 goto out;
6755         }
6756
6757         if (num_free_extents < len)
6758                 metas.num_metas += ocfs2_extend_meta_needed(xt_et->et_root_el);
6759
6760         *credits += ocfs2_calc_extend_credits(osb->sb,
6761                                               xt_et->et_root_el, len);
6762
6763         if (metas.num_metas) {
6764                 ret = ocfs2_reserve_new_metadata_blocks(osb, metas.num_metas,
6765                                                         meta_ac);
6766                 if (ret) {
6767                         mlog_errno(ret);
6768                         goto out;
6769                 }
6770         }
6771
6772         if (len) {
6773                 ret = ocfs2_reserve_clusters(osb, len, data_ac);
6774                 if (ret)
6775                         mlog_errno(ret);
6776         }
6777 out:
6778         if (ret) {
6779                 if (*meta_ac) {
6780                         ocfs2_free_alloc_context(*meta_ac);
6781                         meta_ac = NULL;
6782                 }
6783         }
6784
6785         return ret;
6786 }
6787
6788 static int ocfs2_reflink_xattr_buckets(handle_t *handle,
6789                                 u64 blkno, u64 new_blkno, u32 clusters,
6790                                 struct ocfs2_alloc_context *meta_ac,
6791                                 struct ocfs2_alloc_context *data_ac,
6792                                 struct ocfs2_reflink_xattr_tree_args *args)
6793 {
6794         int i, j, ret = 0;
6795         struct super_block *sb = args->reflink->old_inode->i_sb;
6796         u32 bpc = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(sb));
6797         u32 num_buckets = clusters * bpc;
6798         int bpb = args->old_bucket->bu_blocks;
6799         struct ocfs2_xattr_value_buf vb = {
6800                 .vb_access = ocfs2_journal_access,
6801         };
6802
6803         for (i = 0; i < num_buckets; i++, blkno += bpb, new_blkno += bpb) {
6804                 ret = ocfs2_read_xattr_bucket(args->old_bucket, blkno);
6805                 if (ret) {
6806                         mlog_errno(ret);
6807                         break;
6808                 }
6809
6810                 ret = ocfs2_init_xattr_bucket(args->new_bucket, new_blkno);
6811                 if (ret) {
6812                         mlog_errno(ret);
6813                         break;
6814                 }
6815
6816                 /*
6817                  * The real bucket num in this series of blocks is stored
6818                  * in the 1st bucket.
6819                  */
6820                 if (i == 0)
6821                         num_buckets = le16_to_cpu(
6822                                 bucket_xh(args->old_bucket)->xh_num_buckets);
6823
6824                 ret = ocfs2_xattr_bucket_journal_access(handle,
6825                                                 args->new_bucket,
6826                                                 OCFS2_JOURNAL_ACCESS_CREATE);
6827                 if (ret) {
6828                         mlog_errno(ret);
6829                         break;
6830                 }
6831
6832                 for (j = 0; j < bpb; j++)
6833                         memcpy(bucket_block(args->new_bucket, j),
6834                                bucket_block(args->old_bucket, j),
6835                                sb->s_blocksize);
6836
6837                 ocfs2_xattr_bucket_journal_dirty(handle, args->new_bucket);
6838
6839                 ret = ocfs2_reflink_xattr_header(handle, args->reflink,
6840                                         args->old_bucket->bu_bhs[0],
6841                                         bucket_xh(args->old_bucket),
6842                                         args->new_bucket->bu_bhs[0],
6843                                         bucket_xh(args->new_bucket),
6844                                         &vb, meta_ac,
6845                                         ocfs2_get_reflink_xattr_value_root,
6846                                         args);
6847                 if (ret) {
6848                         mlog_errno(ret);
6849                         break;
6850                 }
6851
6852                 /*
6853                  * Re-access and dirty the bucket to calculate metaecc.
6854                  * Because we may extend the transaction in reflink_xattr_header
6855                  * which will let the already accessed block gone.
6856                  */
6857                 ret = ocfs2_xattr_bucket_journal_access(handle,
6858                                                 args->new_bucket,
6859                                                 OCFS2_JOURNAL_ACCESS_WRITE);
6860                 if (ret) {
6861                         mlog_errno(ret);
6862                         break;
6863                 }
6864
6865                 ocfs2_xattr_bucket_journal_dirty(handle, args->new_bucket);
6866                 ocfs2_xattr_bucket_relse(args->old_bucket);
6867                 ocfs2_xattr_bucket_relse(args->new_bucket);
6868         }
6869
6870         ocfs2_xattr_bucket_relse(args->old_bucket);
6871         ocfs2_xattr_bucket_relse(args->new_bucket);
6872         return ret;
6873 }
6874 /*
6875  * Create the same xattr extent record in the new inode's xattr tree.
6876  */
6877 static int ocfs2_reflink_xattr_rec(struct inode *inode,
6878                                    struct buffer_head *root_bh,
6879                                    u64 blkno,
6880                                    u32 cpos,
6881                                    u32 len,
6882                                    void *para)
6883 {
6884         int ret, credits = 0;
6885         u32 p_cluster, num_clusters;
6886         u64 new_blkno;
6887         handle_t *handle;
6888         struct ocfs2_reflink_xattr_tree_args *args =
6889                         (struct ocfs2_reflink_xattr_tree_args *)para;
6890         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
6891         struct ocfs2_alloc_context *meta_ac = NULL;
6892         struct ocfs2_alloc_context *data_ac = NULL;
6893         struct ocfs2_extent_tree et;
6894
6895         ocfs2_init_xattr_tree_extent_tree(&et,
6896                                           INODE_CACHE(args->reflink->new_inode),
6897                                           args->new_blk_bh);
6898
6899         ret = ocfs2_lock_reflink_xattr_rec_allocators(args, &et, blkno,
6900                                                       len, &credits,
6901                                                       &meta_ac, &data_ac);
6902         if (ret) {
6903                 mlog_errno(ret);
6904                 goto out;
6905         }
6906
6907         handle = ocfs2_start_trans(osb, credits);
6908         if (IS_ERR(handle)) {
6909                 ret = PTR_ERR(handle);
6910                 mlog_errno(ret);
6911                 goto out;
6912         }
6913
6914         ret = ocfs2_claim_clusters(osb, handle, data_ac,
6915                                    len, &p_cluster, &num_clusters);
6916         if (ret) {
6917                 mlog_errno(ret);
6918                 goto out_commit;
6919         }
6920
6921         new_blkno = ocfs2_clusters_to_blocks(osb->sb, p_cluster);
6922
6923         mlog(0, "reflink xattr buckets %llu to %llu, len %u\n",
6924              (unsigned long long)blkno, (unsigned long long)new_blkno, len);
6925         ret = ocfs2_reflink_xattr_buckets(handle, blkno, new_blkno, len,
6926                                           meta_ac, data_ac, args);
6927         if (ret) {
6928                 mlog_errno(ret);
6929                 goto out_commit;
6930         }
6931
6932         mlog(0, "insert new xattr extent rec start %llu len %u to %u\n",
6933              (unsigned long long)new_blkno, len, cpos);
6934         ret = ocfs2_insert_extent(handle, &et, cpos, new_blkno,
6935                                   len, 0, meta_ac);
6936         if (ret)
6937                 mlog_errno(ret);
6938
6939 out_commit:
6940         ocfs2_commit_trans(osb, handle);
6941
6942 out:
6943         if (meta_ac)
6944                 ocfs2_free_alloc_context(meta_ac);
6945         if (data_ac)
6946                 ocfs2_free_alloc_context(data_ac);
6947         return ret;
6948 }
6949
6950 /*
6951  * Create reflinked xattr buckets.
6952  * We will add bucket one by one, and refcount all the xattrs in the bucket
6953  * if they are stored outside.
6954  */
6955 static int ocfs2_reflink_xattr_tree(struct ocfs2_xattr_reflink *args,
6956                                     struct buffer_head *blk_bh,
6957                                     struct buffer_head *new_blk_bh)
6958 {
6959         int ret;
6960         struct ocfs2_reflink_xattr_tree_args para;
6961
6962         memset(&para, 0, sizeof(para));
6963         para.reflink = args;
6964         para.old_blk_bh = blk_bh;
6965         para.new_blk_bh = new_blk_bh;
6966
6967         para.old_bucket = ocfs2_xattr_bucket_new(args->old_inode);
6968         if (!para.old_bucket) {
6969                 mlog_errno(-ENOMEM);
6970                 return -ENOMEM;
6971         }
6972
6973         para.new_bucket = ocfs2_xattr_bucket_new(args->new_inode);
6974         if (!para.new_bucket) {
6975                 ret = -ENOMEM;
6976                 mlog_errno(ret);
6977                 goto out;
6978         }
6979
6980         ret = ocfs2_iterate_xattr_index_block(args->old_inode, blk_bh,
6981                                               ocfs2_reflink_xattr_rec,
6982                                               &para);
6983         if (ret)
6984                 mlog_errno(ret);
6985
6986 out:
6987         ocfs2_xattr_bucket_free(para.old_bucket);
6988         ocfs2_xattr_bucket_free(para.new_bucket);
6989         return ret;
6990 }
6991
6992 static int ocfs2_reflink_xattr_in_block(struct ocfs2_xattr_reflink *args,
6993                                         struct buffer_head *blk_bh)
6994 {
6995         int ret, indexed = 0;
6996         struct buffer_head *new_blk_bh = NULL;
6997         struct ocfs2_xattr_block *xb =
6998                         (struct ocfs2_xattr_block *)blk_bh->b_data;
6999
7000
7001         if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)
7002                 indexed = 1;
7003
7004         ret = ocfs2_create_empty_xattr_block(args->new_inode, args->new_bh,
7005                                              &new_blk_bh, indexed);
7006         if (ret) {
7007                 mlog_errno(ret);
7008                 goto out;
7009         }
7010
7011         if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED))
7012                 ret = ocfs2_reflink_xattr_block(args, blk_bh, new_blk_bh);
7013         else
7014                 ret = ocfs2_reflink_xattr_tree(args, blk_bh, new_blk_bh);
7015         if (ret)
7016                 mlog_errno(ret);
7017
7018 out:
7019         brelse(new_blk_bh);
7020         return ret;
7021 }
7022
7023 static int ocfs2_reflink_xattr_no_security(struct ocfs2_xattr_entry *xe)
7024 {
7025         int type = ocfs2_xattr_get_type(xe);
7026
7027         return type != OCFS2_XATTR_INDEX_SECURITY &&
7028                type != OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS &&
7029                type != OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT;
7030 }
7031
7032 int ocfs2_reflink_xattrs(struct inode *old_inode,
7033                          struct buffer_head *old_bh,
7034                          struct inode *new_inode,
7035                          struct buffer_head *new_bh,
7036                          bool preserve_security)
7037 {
7038         int ret;
7039         struct ocfs2_xattr_reflink args;
7040         struct ocfs2_inode_info *oi = OCFS2_I(old_inode);
7041         struct ocfs2_dinode *di = (struct ocfs2_dinode *)old_bh->b_data;
7042         struct buffer_head *blk_bh = NULL;
7043         struct ocfs2_cached_dealloc_ctxt dealloc;
7044         struct ocfs2_refcount_tree *ref_tree;
7045         struct buffer_head *ref_root_bh = NULL;
7046
7047         ret = ocfs2_lock_refcount_tree(OCFS2_SB(old_inode->i_sb),
7048                                        le64_to_cpu(di->i_refcount_loc),
7049                                        1, &ref_tree, &ref_root_bh);
7050         if (ret) {
7051                 mlog_errno(ret);
7052                 goto out;
7053         }
7054
7055         ocfs2_init_dealloc_ctxt(&dealloc);
7056
7057         args.old_inode = old_inode;
7058         args.new_inode = new_inode;
7059         args.old_bh = old_bh;
7060         args.new_bh = new_bh;
7061         args.ref_ci = &ref_tree->rf_ci;
7062         args.ref_root_bh = ref_root_bh;
7063         args.dealloc = &dealloc;
7064         if (preserve_security)
7065                 args.xattr_reflinked = NULL;
7066         else
7067                 args.xattr_reflinked = ocfs2_reflink_xattr_no_security;
7068
7069         if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
7070                 ret = ocfs2_reflink_xattr_inline(&args);
7071                 if (ret) {
7072                         mlog_errno(ret);
7073                         goto out_unlock;
7074                 }
7075         }
7076
7077         if (!di->i_xattr_loc)
7078                 goto out_unlock;
7079
7080         ret = ocfs2_read_xattr_block(old_inode, le64_to_cpu(di->i_xattr_loc),
7081                                      &blk_bh);
7082         if (ret < 0) {
7083                 mlog_errno(ret);
7084                 goto out_unlock;
7085         }
7086
7087         ret = ocfs2_reflink_xattr_in_block(&args, blk_bh);
7088         if (ret)
7089                 mlog_errno(ret);
7090
7091         brelse(blk_bh);
7092
7093 out_unlock:
7094         ocfs2_unlock_refcount_tree(OCFS2_SB(old_inode->i_sb),
7095                                    ref_tree, 1);
7096         brelse(ref_root_bh);
7097
7098         if (ocfs2_dealloc_has_cluster(&dealloc)) {
7099                 ocfs2_schedule_truncate_log_flush(OCFS2_SB(old_inode->i_sb), 1);
7100                 ocfs2_run_deallocs(OCFS2_SB(old_inode->i_sb), &dealloc);
7101         }
7102
7103 out:
7104         return ret;
7105 }
7106
7107 /*
7108  * Initialize security and acl for a already created inode.
7109  * Used for reflink a non-preserve-security file.
7110  *
7111  * It uses common api like ocfs2_xattr_set, so the caller
7112  * must not hold any lock expect i_mutex.
7113  */
7114 int ocfs2_init_security_and_acl(struct inode *dir,
7115                                 struct inode *inode)
7116 {
7117         int ret = 0;
7118         struct buffer_head *dir_bh = NULL;
7119         struct ocfs2_security_xattr_info si = {
7120                 .enable = 1,
7121         };
7122
7123         ret = ocfs2_init_security_get(inode, dir, &si);
7124         if (!ret) {
7125                 ret = ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_SECURITY,
7126                                       si.name, si.value, si.value_len,
7127                                       XATTR_CREATE);
7128                 if (ret) {
7129                         mlog_errno(ret);
7130                         goto leave;
7131                 }
7132         } else if (ret != -EOPNOTSUPP) {
7133                 mlog_errno(ret);
7134                 goto leave;
7135         }
7136
7137         ret = ocfs2_inode_lock(dir, &dir_bh, 0);
7138         if (ret) {
7139                 mlog_errno(ret);
7140                 goto leave;
7141         }
7142
7143         ret = ocfs2_init_acl(NULL, inode, dir, NULL, dir_bh, NULL, NULL);
7144         if (ret)
7145                 mlog_errno(ret);
7146
7147         ocfs2_inode_unlock(dir, 0);
7148         brelse(dir_bh);
7149 leave:
7150         return ret;
7151 }
7152 /*
7153  * 'security' attributes support
7154  */
7155 static size_t ocfs2_xattr_security_list(struct dentry *dentry, char *list,
7156                                         size_t list_size, const char *name,
7157                                         size_t name_len, int type)
7158 {
7159         const size_t prefix_len = XATTR_SECURITY_PREFIX_LEN;
7160         const size_t total_len = prefix_len + name_len + 1;
7161
7162         if (list && total_len <= list_size) {
7163                 memcpy(list, XATTR_SECURITY_PREFIX, prefix_len);
7164                 memcpy(list + prefix_len, name, name_len);
7165                 list[prefix_len + name_len] = '\0';
7166         }
7167         return total_len;
7168 }
7169
7170 static int ocfs2_xattr_security_get(struct dentry *dentry, const char *name,
7171                                     void *buffer, size_t size, int type)
7172 {
7173         if (strcmp(name, "") == 0)
7174                 return -EINVAL;
7175         return ocfs2_xattr_get(dentry->d_inode, OCFS2_XATTR_INDEX_SECURITY,
7176                                name, buffer, size);
7177 }
7178
7179 static int ocfs2_xattr_security_set(struct dentry *dentry, const char *name,
7180                 const void *value, size_t size, int flags, int type)
7181 {
7182         if (strcmp(name, "") == 0)
7183                 return -EINVAL;
7184
7185         return ocfs2_xattr_set(dentry->d_inode, OCFS2_XATTR_INDEX_SECURITY,
7186                                name, value, size, flags);
7187 }
7188
7189 int ocfs2_init_security_get(struct inode *inode,
7190                             struct inode *dir,
7191                             struct ocfs2_security_xattr_info *si)
7192 {
7193         /* check whether ocfs2 support feature xattr */
7194         if (!ocfs2_supports_xattr(OCFS2_SB(dir->i_sb)))
7195                 return -EOPNOTSUPP;
7196         return security_inode_init_security(inode, dir, &si->name, &si->value,
7197                                             &si->value_len);
7198 }
7199
7200 int ocfs2_init_security_set(handle_t *handle,
7201                             struct inode *inode,
7202                             struct buffer_head *di_bh,
7203                             struct ocfs2_security_xattr_info *si,
7204                             struct ocfs2_alloc_context *xattr_ac,
7205                             struct ocfs2_alloc_context *data_ac)
7206 {
7207         return ocfs2_xattr_set_handle(handle, inode, di_bh,
7208                                      OCFS2_XATTR_INDEX_SECURITY,
7209                                      si->name, si->value, si->value_len, 0,
7210                                      xattr_ac, data_ac);
7211 }
7212
7213 struct xattr_handler ocfs2_xattr_security_handler = {
7214         .prefix = XATTR_SECURITY_PREFIX,
7215         .list   = ocfs2_xattr_security_list,
7216         .get    = ocfs2_xattr_security_get,
7217         .set    = ocfs2_xattr_security_set,
7218 };
7219
7220 /*
7221  * 'trusted' attributes support
7222  */
7223 static size_t ocfs2_xattr_trusted_list(struct dentry *dentry, char *list,
7224                                        size_t list_size, const char *name,
7225                                        size_t name_len, int type)
7226 {
7227         const size_t prefix_len = XATTR_TRUSTED_PREFIX_LEN;
7228         const size_t total_len = prefix_len + name_len + 1;
7229
7230         if (list && total_len <= list_size) {
7231                 memcpy(list, XATTR_TRUSTED_PREFIX, prefix_len);
7232                 memcpy(list + prefix_len, name, name_len);
7233                 list[prefix_len + name_len] = '\0';
7234         }
7235         return total_len;
7236 }
7237
7238 static int ocfs2_xattr_trusted_get(struct dentry *dentry, const char *name,
7239                 void *buffer, size_t size, int type)
7240 {
7241         if (strcmp(name, "") == 0)
7242                 return -EINVAL;
7243         return ocfs2_xattr_get(dentry->d_inode, OCFS2_XATTR_INDEX_TRUSTED,
7244                                name, buffer, size);
7245 }
7246
7247 static int ocfs2_xattr_trusted_set(struct dentry *dentry, const char *name,
7248                 const void *value, size_t size, int flags, int type)
7249 {
7250         if (strcmp(name, "") == 0)
7251                 return -EINVAL;
7252
7253         return ocfs2_xattr_set(dentry->d_inode, OCFS2_XATTR_INDEX_TRUSTED,
7254                                name, value, size, flags);
7255 }
7256
7257 struct xattr_handler ocfs2_xattr_trusted_handler = {
7258         .prefix = XATTR_TRUSTED_PREFIX,
7259         .list   = ocfs2_xattr_trusted_list,
7260         .get    = ocfs2_xattr_trusted_get,
7261         .set    = ocfs2_xattr_trusted_set,
7262 };
7263
7264 /*
7265  * 'user' attributes support
7266  */
7267 static size_t ocfs2_xattr_user_list(struct dentry *dentry, char *list,
7268                                     size_t list_size, const char *name,
7269                                     size_t name_len, int type)
7270 {
7271         const size_t prefix_len = XATTR_USER_PREFIX_LEN;
7272         const size_t total_len = prefix_len + name_len + 1;
7273         struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb);
7274
7275         if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
7276                 return 0;
7277
7278         if (list && total_len <= list_size) {
7279                 memcpy(list, XATTR_USER_PREFIX, prefix_len);
7280                 memcpy(list + prefix_len, name, name_len);
7281                 list[prefix_len + name_len] = '\0';
7282         }
7283         return total_len;
7284 }
7285
7286 static int ocfs2_xattr_user_get(struct dentry *dentry, const char *name,
7287                 void *buffer, size_t size, int type)
7288 {
7289         struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb);
7290
7291         if (strcmp(name, "") == 0)
7292                 return -EINVAL;
7293         if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
7294                 return -EOPNOTSUPP;
7295         return ocfs2_xattr_get(dentry->d_inode, OCFS2_XATTR_INDEX_USER, name,
7296                                buffer, size);
7297 }
7298
7299 static int ocfs2_xattr_user_set(struct dentry *dentry, const char *name,
7300                 const void *value, size_t size, int flags, int type)
7301 {
7302         struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb);
7303
7304         if (strcmp(name, "") == 0)
7305                 return -EINVAL;
7306         if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
7307                 return -EOPNOTSUPP;
7308
7309         return ocfs2_xattr_set(dentry->d_inode, OCFS2_XATTR_INDEX_USER,
7310                                name, value, size, flags);
7311 }
7312
7313 struct xattr_handler ocfs2_xattr_user_handler = {
7314         .prefix = XATTR_USER_PREFIX,
7315         .list   = ocfs2_xattr_user_list,
7316         .get    = ocfs2_xattr_user_get,
7317         .set    = ocfs2_xattr_user_set,
7318 };