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