1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
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>
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.
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.
22 #include <linux/capability.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>
39 #define MLOG_MASK_PREFIX ML_XATTR
40 #include <cluster/masklog.h>
53 #include "buffer_head_io.h"
58 struct ocfs2_xattr_def_value_root
{
59 struct ocfs2_xattr_value_root xv
;
60 struct ocfs2_extent_rec er
;
63 struct ocfs2_xattr_bucket
{
64 struct buffer_head
*bhs
[OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET
];
65 struct ocfs2_xattr_header
*xh
;
68 #define OCFS2_XATTR_ROOT_SIZE (sizeof(struct ocfs2_xattr_def_value_root))
69 #define OCFS2_XATTR_INLINE_SIZE 80
71 static struct ocfs2_xattr_def_value_root def_xv
= {
72 .xv
.xr_list
.l_count
= cpu_to_le16(1),
75 struct xattr_handler
*ocfs2_xattr_handlers
[] = {
76 &ocfs2_xattr_user_handler
,
77 &ocfs2_xattr_trusted_handler
,
81 static struct xattr_handler
*ocfs2_xattr_handler_map
[OCFS2_XATTR_MAX
] = {
82 [OCFS2_XATTR_INDEX_USER
] = &ocfs2_xattr_user_handler
,
83 [OCFS2_XATTR_INDEX_TRUSTED
] = &ocfs2_xattr_trusted_handler
,
86 struct ocfs2_xattr_info
{
93 struct ocfs2_xattr_search
{
94 struct buffer_head
*inode_bh
;
96 * xattr_bh point to the block buffer head which has extended attribute
97 * when extended attribute in inode, xattr_bh is equal to inode_bh.
99 struct buffer_head
*xattr_bh
;
100 struct ocfs2_xattr_header
*header
;
101 struct ocfs2_xattr_bucket bucket
;
104 struct ocfs2_xattr_entry
*here
;
108 static int ocfs2_xattr_bucket_get_name_value(struct inode
*inode
,
109 struct ocfs2_xattr_header
*xh
,
114 static int ocfs2_xattr_block_find(struct inode
*inode
,
117 struct ocfs2_xattr_search
*xs
);
118 static int ocfs2_xattr_index_block_find(struct inode
*inode
,
119 struct buffer_head
*root_bh
,
122 struct ocfs2_xattr_search
*xs
);
124 static int ocfs2_xattr_tree_list_index_block(struct inode
*inode
,
125 struct ocfs2_xattr_tree_root
*xt
,
129 static int ocfs2_xattr_create_index_block(struct inode
*inode
,
130 struct ocfs2_xattr_search
*xs
);
132 static int ocfs2_xattr_set_entry_index_block(struct inode
*inode
,
133 struct ocfs2_xattr_info
*xi
,
134 struct ocfs2_xattr_search
*xs
);
136 static int ocfs2_delete_xattr_index_block(struct inode
*inode
,
137 struct buffer_head
*xb_bh
);
139 static inline u16
ocfs2_xattr_buckets_per_cluster(struct ocfs2_super
*osb
)
141 return (1 << osb
->s_clustersize_bits
) / OCFS2_XATTR_BUCKET_SIZE
;
144 static inline u16
ocfs2_blocks_per_xattr_bucket(struct super_block
*sb
)
146 return OCFS2_XATTR_BUCKET_SIZE
/ (1 << sb
->s_blocksize_bits
);
149 static inline u16
ocfs2_xattr_max_xe_in_bucket(struct super_block
*sb
)
151 u16 len
= sb
->s_blocksize
-
152 offsetof(struct ocfs2_xattr_header
, xh_entries
);
154 return len
/ sizeof(struct ocfs2_xattr_entry
);
157 static inline const char *ocfs2_xattr_prefix(int name_index
)
159 struct xattr_handler
*handler
= NULL
;
161 if (name_index
> 0 && name_index
< OCFS2_XATTR_MAX
)
162 handler
= ocfs2_xattr_handler_map
[name_index
];
164 return handler
? handler
->prefix
: NULL
;
167 static u32
ocfs2_xattr_name_hash(struct inode
*inode
,
171 /* Get hash value of uuid from super block */
172 u32 hash
= OCFS2_SB(inode
->i_sb
)->uuid_hash
;
175 /* hash extended attribute name */
176 for (i
= 0; i
< name_len
; i
++) {
177 hash
= (hash
<< OCFS2_HASH_SHIFT
) ^
178 (hash
>> (8*sizeof(hash
) - OCFS2_HASH_SHIFT
)) ^
186 * ocfs2_xattr_hash_entry()
188 * Compute the hash of an extended attribute.
190 static void ocfs2_xattr_hash_entry(struct inode
*inode
,
191 struct ocfs2_xattr_header
*header
,
192 struct ocfs2_xattr_entry
*entry
)
195 char *name
= (char *)header
+ le16_to_cpu(entry
->xe_name_offset
);
197 hash
= ocfs2_xattr_name_hash(inode
, name
, entry
->xe_name_len
);
198 entry
->xe_name_hash
= cpu_to_le32(hash
);
203 static int ocfs2_xattr_extend_allocation(struct inode
*inode
,
205 struct buffer_head
*xattr_bh
,
206 struct ocfs2_xattr_value_root
*xv
)
209 int restart_func
= 0;
211 handle_t
*handle
= NULL
;
212 struct ocfs2_alloc_context
*data_ac
= NULL
;
213 struct ocfs2_alloc_context
*meta_ac
= NULL
;
214 enum ocfs2_alloc_restarted why
;
215 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
216 u32 prev_clusters
, logical_start
= le32_to_cpu(xv
->xr_clusters
);
217 struct ocfs2_extent_tree et
;
219 mlog(0, "(clusters_to_add for xattr= %u)\n", clusters_to_add
);
221 ocfs2_init_xattr_value_extent_tree(&et
, inode
, xattr_bh
, xv
);
225 status
= ocfs2_lock_allocators(inode
, &et
, clusters_to_add
, 0,
232 credits
= ocfs2_calc_extend_credits(osb
->sb
, et
.et_root_el
,
234 handle
= ocfs2_start_trans(osb
, credits
);
235 if (IS_ERR(handle
)) {
236 status
= PTR_ERR(handle
);
242 restarted_transaction
:
243 status
= ocfs2_journal_access(handle
, inode
, xattr_bh
,
244 OCFS2_JOURNAL_ACCESS_WRITE
);
250 prev_clusters
= le32_to_cpu(xv
->xr_clusters
);
251 status
= ocfs2_add_clusters_in_btree(osb
,
261 if ((status
< 0) && (status
!= -EAGAIN
)) {
262 if (status
!= -ENOSPC
)
267 status
= ocfs2_journal_dirty(handle
, xattr_bh
);
273 clusters_to_add
-= le32_to_cpu(xv
->xr_clusters
) - prev_clusters
;
275 if (why
!= RESTART_NONE
&& clusters_to_add
) {
276 if (why
== RESTART_META
) {
277 mlog(0, "restarting function.\n");
280 BUG_ON(why
!= RESTART_TRANS
);
282 mlog(0, "restarting transaction.\n");
283 /* TODO: This can be more intelligent. */
284 credits
= ocfs2_calc_extend_credits(osb
->sb
,
287 status
= ocfs2_extend_trans(handle
, credits
);
289 /* handle still has to be committed at
295 goto restarted_transaction
;
301 ocfs2_commit_trans(osb
, handle
);
305 ocfs2_free_alloc_context(data_ac
);
309 ocfs2_free_alloc_context(meta_ac
);
312 if ((!status
) && restart_func
) {
320 static int __ocfs2_remove_xattr_range(struct inode
*inode
,
321 struct buffer_head
*root_bh
,
322 struct ocfs2_xattr_value_root
*xv
,
323 u32 cpos
, u32 phys_cpos
, u32 len
,
324 struct ocfs2_cached_dealloc_ctxt
*dealloc
)
327 u64 phys_blkno
= ocfs2_clusters_to_blocks(inode
->i_sb
, phys_cpos
);
328 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
329 struct inode
*tl_inode
= osb
->osb_tl_inode
;
331 struct ocfs2_alloc_context
*meta_ac
= NULL
;
332 struct ocfs2_extent_tree et
;
334 ocfs2_init_xattr_value_extent_tree(&et
, inode
, root_bh
, xv
);
336 ret
= ocfs2_lock_allocators(inode
, &et
, 0, 1, NULL
, &meta_ac
);
342 mutex_lock(&tl_inode
->i_mutex
);
344 if (ocfs2_truncate_log_needs_flush(osb
)) {
345 ret
= __ocfs2_flush_truncate_log(osb
);
352 handle
= ocfs2_start_trans(osb
, OCFS2_REMOVE_EXTENT_CREDITS
);
353 if (IS_ERR(handle
)) {
354 ret
= PTR_ERR(handle
);
359 ret
= ocfs2_journal_access(handle
, inode
, root_bh
,
360 OCFS2_JOURNAL_ACCESS_WRITE
);
366 ret
= ocfs2_remove_extent(inode
, &et
, cpos
, len
, handle
, meta_ac
,
373 le32_add_cpu(&xv
->xr_clusters
, -len
);
375 ret
= ocfs2_journal_dirty(handle
, root_bh
);
381 ret
= ocfs2_truncate_log_append(osb
, handle
, phys_blkno
, len
);
386 ocfs2_commit_trans(osb
, handle
);
388 mutex_unlock(&tl_inode
->i_mutex
);
391 ocfs2_free_alloc_context(meta_ac
);
396 static int ocfs2_xattr_shrink_size(struct inode
*inode
,
399 struct buffer_head
*root_bh
,
400 struct ocfs2_xattr_value_root
*xv
)
403 u32 trunc_len
, cpos
, phys_cpos
, alloc_size
;
405 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
406 struct ocfs2_cached_dealloc_ctxt dealloc
;
408 ocfs2_init_dealloc_ctxt(&dealloc
);
410 if (old_clusters
<= new_clusters
)
414 trunc_len
= old_clusters
- new_clusters
;
416 ret
= ocfs2_xattr_get_clusters(inode
, cpos
, &phys_cpos
,
417 &alloc_size
, &xv
->xr_list
);
423 if (alloc_size
> trunc_len
)
424 alloc_size
= trunc_len
;
426 ret
= __ocfs2_remove_xattr_range(inode
, root_bh
, xv
, cpos
,
427 phys_cpos
, alloc_size
,
434 block
= ocfs2_clusters_to_blocks(inode
->i_sb
, phys_cpos
);
435 ocfs2_remove_xattr_clusters_from_cache(inode
, block
,
438 trunc_len
-= alloc_size
;
442 ocfs2_schedule_truncate_log_flush(osb
, 1);
443 ocfs2_run_deallocs(osb
, &dealloc
);
448 static int ocfs2_xattr_value_truncate(struct inode
*inode
,
449 struct buffer_head
*root_bh
,
450 struct ocfs2_xattr_value_root
*xv
,
454 u32 new_clusters
= ocfs2_clusters_for_bytes(inode
->i_sb
, len
);
455 u32 old_clusters
= le32_to_cpu(xv
->xr_clusters
);
457 if (new_clusters
== old_clusters
)
460 if (new_clusters
> old_clusters
)
461 ret
= ocfs2_xattr_extend_allocation(inode
,
462 new_clusters
- old_clusters
,
465 ret
= ocfs2_xattr_shrink_size(inode
,
466 old_clusters
, new_clusters
,
472 static int ocfs2_xattr_list_entry(char *buffer
, size_t size
,
473 size_t *result
, const char *prefix
,
474 const char *name
, int name_len
)
476 char *p
= buffer
+ *result
;
477 int prefix_len
= strlen(prefix
);
478 int total_len
= prefix_len
+ name_len
+ 1;
480 *result
+= total_len
;
482 /* we are just looking for how big our buffer needs to be */
489 memcpy(p
, prefix
, prefix_len
);
490 memcpy(p
+ prefix_len
, name
, name_len
);
491 p
[prefix_len
+ name_len
] = '\0';
496 static int ocfs2_xattr_list_entries(struct inode
*inode
,
497 struct ocfs2_xattr_header
*header
,
498 char *buffer
, size_t buffer_size
)
502 const char *prefix
, *name
;
504 for (i
= 0 ; i
< le16_to_cpu(header
->xh_count
); i
++) {
505 struct ocfs2_xattr_entry
*entry
= &header
->xh_entries
[i
];
506 type
= ocfs2_xattr_get_type(entry
);
507 prefix
= ocfs2_xattr_prefix(type
);
510 name
= (const char *)header
+
511 le16_to_cpu(entry
->xe_name_offset
);
513 ret
= ocfs2_xattr_list_entry(buffer
, buffer_size
,
514 &result
, prefix
, name
,
524 static int ocfs2_xattr_ibody_list(struct inode
*inode
,
525 struct ocfs2_dinode
*di
,
529 struct ocfs2_xattr_header
*header
= NULL
;
530 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
533 if (!(oi
->ip_dyn_features
& OCFS2_INLINE_XATTR_FL
))
536 header
= (struct ocfs2_xattr_header
*)
537 ((void *)di
+ inode
->i_sb
->s_blocksize
-
538 le16_to_cpu(di
->i_xattr_inline_size
));
540 ret
= ocfs2_xattr_list_entries(inode
, header
, buffer
, buffer_size
);
545 static int ocfs2_xattr_block_list(struct inode
*inode
,
546 struct ocfs2_dinode
*di
,
550 struct buffer_head
*blk_bh
= NULL
;
551 struct ocfs2_xattr_block
*xb
;
554 if (!di
->i_xattr_loc
)
557 ret
= ocfs2_read_block(inode
, le64_to_cpu(di
->i_xattr_loc
), &blk_bh
);
563 xb
= (struct ocfs2_xattr_block
*)blk_bh
->b_data
;
564 if (!OCFS2_IS_VALID_XATTR_BLOCK(xb
)) {
569 if (!(le16_to_cpu(xb
->xb_flags
) & OCFS2_XATTR_INDEXED
)) {
570 struct ocfs2_xattr_header
*header
= &xb
->xb_attrs
.xb_header
;
571 ret
= ocfs2_xattr_list_entries(inode
, header
,
572 buffer
, buffer_size
);
574 struct ocfs2_xattr_tree_root
*xt
= &xb
->xb_attrs
.xb_root
;
575 ret
= ocfs2_xattr_tree_list_index_block(inode
, xt
,
576 buffer
, buffer_size
);
584 ssize_t
ocfs2_listxattr(struct dentry
*dentry
,
588 int ret
= 0, i_ret
= 0, b_ret
= 0;
589 struct buffer_head
*di_bh
= NULL
;
590 struct ocfs2_dinode
*di
= NULL
;
591 struct ocfs2_inode_info
*oi
= OCFS2_I(dentry
->d_inode
);
593 if (!ocfs2_supports_xattr(OCFS2_SB(dentry
->d_sb
)))
596 if (!(oi
->ip_dyn_features
& OCFS2_HAS_XATTR_FL
))
599 ret
= ocfs2_inode_lock(dentry
->d_inode
, &di_bh
, 0);
605 di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
607 down_read(&oi
->ip_xattr_sem
);
608 i_ret
= ocfs2_xattr_ibody_list(dentry
->d_inode
, di
, buffer
, size
);
616 b_ret
= ocfs2_xattr_block_list(dentry
->d_inode
, di
,
621 up_read(&oi
->ip_xattr_sem
);
622 ocfs2_inode_unlock(dentry
->d_inode
, 0);
626 return i_ret
+ b_ret
;
629 static int ocfs2_xattr_find_entry(int name_index
,
631 struct ocfs2_xattr_search
*xs
)
633 struct ocfs2_xattr_entry
*entry
;
640 name_len
= strlen(name
);
642 for (i
= 0; i
< le16_to_cpu(xs
->header
->xh_count
); i
++) {
643 cmp
= name_index
- ocfs2_xattr_get_type(entry
);
645 cmp
= name_len
- entry
->xe_name_len
;
647 cmp
= memcmp(name
, (xs
->base
+
648 le16_to_cpu(entry
->xe_name_offset
)),
656 return cmp
? -ENODATA
: 0;
659 static int ocfs2_xattr_get_value_outside(struct inode
*inode
,
660 struct ocfs2_xattr_value_root
*xv
,
664 u32 cpos
, p_cluster
, num_clusters
, bpc
, clusters
;
667 size_t cplen
, blocksize
;
668 struct buffer_head
*bh
= NULL
;
669 struct ocfs2_extent_list
*el
;
672 clusters
= le32_to_cpu(xv
->xr_clusters
);
673 bpc
= ocfs2_clusters_to_blocks(inode
->i_sb
, 1);
674 blocksize
= inode
->i_sb
->s_blocksize
;
677 while (cpos
< clusters
) {
678 ret
= ocfs2_xattr_get_clusters(inode
, cpos
, &p_cluster
,
685 blkno
= ocfs2_clusters_to_blocks(inode
->i_sb
, p_cluster
);
686 /* Copy ocfs2_xattr_value */
687 for (i
= 0; i
< num_clusters
* bpc
; i
++, blkno
++) {
688 ret
= ocfs2_read_block(inode
, blkno
, &bh
);
694 cplen
= len
>= blocksize
? blocksize
: len
;
695 memcpy(buffer
, bh
->b_data
, cplen
);
704 cpos
+= num_clusters
;
710 static int ocfs2_xattr_ibody_get(struct inode
*inode
,
715 struct ocfs2_xattr_search
*xs
)
717 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
718 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)xs
->inode_bh
->b_data
;
719 struct ocfs2_xattr_value_root
*xv
;
723 if (!(oi
->ip_dyn_features
& OCFS2_INLINE_XATTR_FL
))
726 xs
->end
= (void *)di
+ inode
->i_sb
->s_blocksize
;
727 xs
->header
= (struct ocfs2_xattr_header
*)
728 (xs
->end
- le16_to_cpu(di
->i_xattr_inline_size
));
729 xs
->base
= (void *)xs
->header
;
730 xs
->here
= xs
->header
->xh_entries
;
732 ret
= ocfs2_xattr_find_entry(name_index
, name
, xs
);
735 size
= le64_to_cpu(xs
->here
->xe_value_size
);
737 if (size
> buffer_size
)
739 if (ocfs2_xattr_is_local(xs
->here
)) {
740 memcpy(buffer
, (void *)xs
->base
+
741 le16_to_cpu(xs
->here
->xe_name_offset
) +
742 OCFS2_XATTR_SIZE(xs
->here
->xe_name_len
), size
);
744 xv
= (struct ocfs2_xattr_value_root
*)
745 (xs
->base
+ le16_to_cpu(
746 xs
->here
->xe_name_offset
) +
747 OCFS2_XATTR_SIZE(xs
->here
->xe_name_len
));
748 ret
= ocfs2_xattr_get_value_outside(inode
, xv
,
760 static int ocfs2_xattr_block_get(struct inode
*inode
,
765 struct ocfs2_xattr_search
*xs
)
767 struct ocfs2_xattr_block
*xb
;
768 struct ocfs2_xattr_value_root
*xv
;
770 int ret
= -ENODATA
, name_offset
, name_len
, block_off
, i
;
772 memset(&xs
->bucket
, 0, sizeof(xs
->bucket
));
774 ret
= ocfs2_xattr_block_find(inode
, name_index
, name
, xs
);
785 xb
= (struct ocfs2_xattr_block
*)xs
->xattr_bh
->b_data
;
786 size
= le64_to_cpu(xs
->here
->xe_value_size
);
789 if (size
> buffer_size
)
792 name_offset
= le16_to_cpu(xs
->here
->xe_name_offset
);
793 name_len
= OCFS2_XATTR_SIZE(xs
->here
->xe_name_len
);
794 i
= xs
->here
- xs
->header
->xh_entries
;
796 if (le16_to_cpu(xb
->xb_flags
) & OCFS2_XATTR_INDEXED
) {
797 ret
= ocfs2_xattr_bucket_get_name_value(inode
,
802 xs
->base
= xs
->bucket
.bhs
[block_off
]->b_data
;
804 if (ocfs2_xattr_is_local(xs
->here
)) {
805 memcpy(buffer
, (void *)xs
->base
+
806 name_offset
+ name_len
, size
);
808 xv
= (struct ocfs2_xattr_value_root
*)
809 (xs
->base
+ name_offset
+ name_len
);
810 ret
= ocfs2_xattr_get_value_outside(inode
, xv
,
820 for (i
= 0; i
< OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET
; i
++)
821 brelse(xs
->bucket
.bhs
[i
]);
822 memset(&xs
->bucket
, 0, sizeof(xs
->bucket
));
824 brelse(xs
->xattr_bh
);
831 * Copy an extended attribute into the buffer provided.
832 * Buffer is NULL to compute the size of buffer required.
834 static int ocfs2_xattr_get(struct inode
*inode
,
841 struct ocfs2_dinode
*di
= NULL
;
842 struct buffer_head
*di_bh
= NULL
;
843 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
844 struct ocfs2_xattr_search xis
= {
845 .not_found
= -ENODATA
,
847 struct ocfs2_xattr_search xbs
= {
848 .not_found
= -ENODATA
,
851 if (!ocfs2_supports_xattr(OCFS2_SB(inode
->i_sb
)))
854 if (!(oi
->ip_dyn_features
& OCFS2_HAS_XATTR_FL
))
857 ret
= ocfs2_inode_lock(inode
, &di_bh
, 0);
862 xis
.inode_bh
= xbs
.inode_bh
= di_bh
;
863 di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
865 down_read(&oi
->ip_xattr_sem
);
866 ret
= ocfs2_xattr_ibody_get(inode
, name_index
, name
, buffer
,
868 if (ret
== -ENODATA
&& di
->i_xattr_loc
)
869 ret
= ocfs2_xattr_block_get(inode
, name_index
, name
, buffer
,
871 up_read(&oi
->ip_xattr_sem
);
872 ocfs2_inode_unlock(inode
, 0);
879 static int __ocfs2_xattr_set_value_outside(struct inode
*inode
,
880 struct ocfs2_xattr_value_root
*xv
,
884 int ret
= 0, i
, cp_len
, credits
;
885 u16 blocksize
= inode
->i_sb
->s_blocksize
;
886 u32 p_cluster
, num_clusters
;
887 u32 cpos
= 0, bpc
= ocfs2_clusters_to_blocks(inode
->i_sb
, 1);
888 u32 clusters
= ocfs2_clusters_for_bytes(inode
->i_sb
, value_len
);
890 struct buffer_head
*bh
= NULL
;
893 BUG_ON(clusters
> le32_to_cpu(xv
->xr_clusters
));
895 credits
= clusters
* bpc
;
896 handle
= ocfs2_start_trans(OCFS2_SB(inode
->i_sb
), credits
);
897 if (IS_ERR(handle
)) {
898 ret
= PTR_ERR(handle
);
903 while (cpos
< clusters
) {
904 ret
= ocfs2_xattr_get_clusters(inode
, cpos
, &p_cluster
,
905 &num_clusters
, &xv
->xr_list
);
911 blkno
= ocfs2_clusters_to_blocks(inode
->i_sb
, p_cluster
);
913 for (i
= 0; i
< num_clusters
* bpc
; i
++, blkno
++) {
914 ret
= ocfs2_read_block(inode
, blkno
, &bh
);
920 ret
= ocfs2_journal_access(handle
,
923 OCFS2_JOURNAL_ACCESS_WRITE
);
929 cp_len
= value_len
> blocksize
? blocksize
: value_len
;
930 memcpy(bh
->b_data
, value
, cp_len
);
933 if (cp_len
< blocksize
)
934 memset(bh
->b_data
+ cp_len
, 0,
937 ret
= ocfs2_journal_dirty(handle
, bh
);
946 * XXX: do we need to empty all the following
947 * blocks in this cluster?
952 cpos
+= num_clusters
;
955 ocfs2_commit_trans(OCFS2_SB(inode
->i_sb
), handle
);
962 static int ocfs2_xattr_cleanup(struct inode
*inode
,
963 struct ocfs2_xattr_info
*xi
,
964 struct ocfs2_xattr_search
*xs
,
967 handle_t
*handle
= NULL
;
969 size_t name_len
= strlen(xi
->name
);
970 void *val
= xs
->base
+ offs
;
971 size_t size
= OCFS2_XATTR_SIZE(name_len
) + OCFS2_XATTR_ROOT_SIZE
;
973 handle
= ocfs2_start_trans((OCFS2_SB(inode
->i_sb
)),
974 OCFS2_XATTR_BLOCK_UPDATE_CREDITS
);
975 if (IS_ERR(handle
)) {
976 ret
= PTR_ERR(handle
);
980 ret
= ocfs2_journal_access(handle
, inode
, xs
->xattr_bh
,
981 OCFS2_JOURNAL_ACCESS_WRITE
);
986 /* Decrease xattr count */
987 le16_add_cpu(&xs
->header
->xh_count
, -1);
988 /* Remove the xattr entry and tree root which has already be set*/
989 memset((void *)xs
->here
, 0, sizeof(struct ocfs2_xattr_entry
));
990 memset(val
, 0, size
);
992 ret
= ocfs2_journal_dirty(handle
, xs
->xattr_bh
);
996 ocfs2_commit_trans(OCFS2_SB(inode
->i_sb
), handle
);
1001 static int ocfs2_xattr_update_entry(struct inode
*inode
,
1002 struct ocfs2_xattr_info
*xi
,
1003 struct ocfs2_xattr_search
*xs
,
1006 handle_t
*handle
= NULL
;
1009 handle
= ocfs2_start_trans((OCFS2_SB(inode
->i_sb
)),
1010 OCFS2_XATTR_BLOCK_UPDATE_CREDITS
);
1011 if (IS_ERR(handle
)) {
1012 ret
= PTR_ERR(handle
);
1016 ret
= ocfs2_journal_access(handle
, inode
, xs
->xattr_bh
,
1017 OCFS2_JOURNAL_ACCESS_WRITE
);
1023 xs
->here
->xe_name_offset
= cpu_to_le16(offs
);
1024 xs
->here
->xe_value_size
= cpu_to_le64(xi
->value_len
);
1025 if (xi
->value_len
<= OCFS2_XATTR_INLINE_SIZE
)
1026 ocfs2_xattr_set_local(xs
->here
, 1);
1028 ocfs2_xattr_set_local(xs
->here
, 0);
1029 ocfs2_xattr_hash_entry(inode
, xs
->header
, xs
->here
);
1031 ret
= ocfs2_journal_dirty(handle
, xs
->xattr_bh
);
1035 ocfs2_commit_trans(OCFS2_SB(inode
->i_sb
), handle
);
1041 * ocfs2_xattr_set_value_outside()
1043 * Set large size value in B tree.
1045 static int ocfs2_xattr_set_value_outside(struct inode
*inode
,
1046 struct ocfs2_xattr_info
*xi
,
1047 struct ocfs2_xattr_search
*xs
,
1050 size_t name_len
= strlen(xi
->name
);
1051 void *val
= xs
->base
+ offs
;
1052 struct ocfs2_xattr_value_root
*xv
= NULL
;
1053 size_t size
= OCFS2_XATTR_SIZE(name_len
) + OCFS2_XATTR_ROOT_SIZE
;
1056 memset(val
, 0, size
);
1057 memcpy(val
, xi
->name
, name_len
);
1058 xv
= (struct ocfs2_xattr_value_root
*)
1059 (val
+ OCFS2_XATTR_SIZE(name_len
));
1060 xv
->xr_clusters
= 0;
1061 xv
->xr_last_eb_blk
= 0;
1062 xv
->xr_list
.l_tree_depth
= 0;
1063 xv
->xr_list
.l_count
= cpu_to_le16(1);
1064 xv
->xr_list
.l_next_free_rec
= 0;
1066 ret
= ocfs2_xattr_value_truncate(inode
, xs
->xattr_bh
, xv
,
1072 ret
= __ocfs2_xattr_set_value_outside(inode
, xv
, xi
->value
,
1078 ret
= ocfs2_xattr_update_entry(inode
, xi
, xs
, offs
);
1086 * ocfs2_xattr_set_entry_local()
1088 * Set, replace or remove extended attribute in local.
1090 static void ocfs2_xattr_set_entry_local(struct inode
*inode
,
1091 struct ocfs2_xattr_info
*xi
,
1092 struct ocfs2_xattr_search
*xs
,
1093 struct ocfs2_xattr_entry
*last
,
1096 size_t name_len
= strlen(xi
->name
);
1099 if (xi
->value
&& xs
->not_found
) {
1100 /* Insert the new xattr entry. */
1101 le16_add_cpu(&xs
->header
->xh_count
, 1);
1102 ocfs2_xattr_set_type(last
, xi
->name_index
);
1103 ocfs2_xattr_set_local(last
, 1);
1104 last
->xe_name_len
= name_len
;
1110 first_val
= xs
->base
+ min_offs
;
1111 offs
= le16_to_cpu(xs
->here
->xe_name_offset
);
1112 val
= xs
->base
+ offs
;
1114 if (le64_to_cpu(xs
->here
->xe_value_size
) >
1115 OCFS2_XATTR_INLINE_SIZE
)
1116 size
= OCFS2_XATTR_SIZE(name_len
) +
1117 OCFS2_XATTR_ROOT_SIZE
;
1119 size
= OCFS2_XATTR_SIZE(name_len
) +
1120 OCFS2_XATTR_SIZE(le64_to_cpu(xs
->here
->xe_value_size
));
1122 if (xi
->value
&& size
== OCFS2_XATTR_SIZE(name_len
) +
1123 OCFS2_XATTR_SIZE(xi
->value_len
)) {
1124 /* The old and the new value have the
1125 same size. Just replace the value. */
1126 ocfs2_xattr_set_local(xs
->here
, 1);
1127 xs
->here
->xe_value_size
= cpu_to_le64(xi
->value_len
);
1128 /* Clear value bytes. */
1129 memset(val
+ OCFS2_XATTR_SIZE(name_len
),
1131 OCFS2_XATTR_SIZE(xi
->value_len
));
1132 memcpy(val
+ OCFS2_XATTR_SIZE(name_len
),
1137 /* Remove the old name+value. */
1138 memmove(first_val
+ size
, first_val
, val
- first_val
);
1139 memset(first_val
, 0, size
);
1140 xs
->here
->xe_name_hash
= 0;
1141 xs
->here
->xe_name_offset
= 0;
1142 ocfs2_xattr_set_local(xs
->here
, 1);
1143 xs
->here
->xe_value_size
= 0;
1147 /* Adjust all value offsets. */
1148 last
= xs
->header
->xh_entries
;
1149 for (i
= 0 ; i
< le16_to_cpu(xs
->header
->xh_count
); i
++) {
1150 size_t o
= le16_to_cpu(last
->xe_name_offset
);
1153 last
->xe_name_offset
= cpu_to_le16(o
+ size
);
1158 /* Remove the old entry. */
1160 memmove(xs
->here
, xs
->here
+ 1,
1161 (void *)last
- (void *)xs
->here
);
1162 memset(last
, 0, sizeof(struct ocfs2_xattr_entry
));
1163 le16_add_cpu(&xs
->header
->xh_count
, -1);
1167 /* Insert the new name+value. */
1168 size_t size
= OCFS2_XATTR_SIZE(name_len
) +
1169 OCFS2_XATTR_SIZE(xi
->value_len
);
1170 void *val
= xs
->base
+ min_offs
- size
;
1172 xs
->here
->xe_name_offset
= cpu_to_le16(min_offs
- size
);
1173 memset(val
, 0, size
);
1174 memcpy(val
, xi
->name
, name_len
);
1175 memcpy(val
+ OCFS2_XATTR_SIZE(name_len
),
1178 xs
->here
->xe_value_size
= cpu_to_le64(xi
->value_len
);
1179 ocfs2_xattr_set_local(xs
->here
, 1);
1180 ocfs2_xattr_hash_entry(inode
, xs
->header
, xs
->here
);
1187 * ocfs2_xattr_set_entry()
1189 * Set extended attribute entry into inode or block.
1191 * If extended attribute value size > OCFS2_XATTR_INLINE_SIZE,
1192 * We first insert tree root(ocfs2_xattr_value_root) with set_entry_local(),
1193 * then set value in B tree with set_value_outside().
1195 static int ocfs2_xattr_set_entry(struct inode
*inode
,
1196 struct ocfs2_xattr_info
*xi
,
1197 struct ocfs2_xattr_search
*xs
,
1200 struct ocfs2_xattr_entry
*last
;
1201 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
1202 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)xs
->inode_bh
->b_data
;
1203 size_t min_offs
= xs
->end
- xs
->base
, name_len
= strlen(xi
->name
);
1205 handle_t
*handle
= NULL
;
1207 struct ocfs2_xattr_info xi_l
= {
1208 .name_index
= xi
->name_index
,
1211 .value_len
= xi
->value_len
,
1214 /* Compute min_offs, last and free space. */
1215 last
= xs
->header
->xh_entries
;
1217 for (i
= 0 ; i
< le16_to_cpu(xs
->header
->xh_count
); i
++) {
1218 size_t offs
= le16_to_cpu(last
->xe_name_offset
);
1219 if (offs
< min_offs
)
1224 free
= min_offs
- ((void *)last
- xs
->base
) - sizeof(__u32
);
1228 if (!xs
->not_found
) {
1230 if (ocfs2_xattr_is_local(xs
->here
))
1231 size
= OCFS2_XATTR_SIZE(name_len
) +
1232 OCFS2_XATTR_SIZE(le64_to_cpu(xs
->here
->xe_value_size
));
1234 size
= OCFS2_XATTR_SIZE(name_len
) +
1235 OCFS2_XATTR_ROOT_SIZE
;
1236 free
+= (size
+ sizeof(struct ocfs2_xattr_entry
));
1238 /* Check free space in inode or block */
1239 if (xi
->value
&& xi
->value_len
> OCFS2_XATTR_INLINE_SIZE
) {
1240 if (free
< sizeof(struct ocfs2_xattr_entry
) +
1241 OCFS2_XATTR_SIZE(name_len
) +
1242 OCFS2_XATTR_ROOT_SIZE
) {
1246 size_l
= OCFS2_XATTR_SIZE(name_len
) + OCFS2_XATTR_ROOT_SIZE
;
1247 xi_l
.value
= (void *)&def_xv
;
1248 xi_l
.value_len
= OCFS2_XATTR_ROOT_SIZE
;
1249 } else if (xi
->value
) {
1250 if (free
< sizeof(struct ocfs2_xattr_entry
) +
1251 OCFS2_XATTR_SIZE(name_len
) +
1252 OCFS2_XATTR_SIZE(xi
->value_len
)) {
1258 if (!xs
->not_found
) {
1259 /* For existing extended attribute */
1260 size_t size
= OCFS2_XATTR_SIZE(name_len
) +
1261 OCFS2_XATTR_SIZE(le64_to_cpu(xs
->here
->xe_value_size
));
1262 size_t offs
= le16_to_cpu(xs
->here
->xe_name_offset
);
1263 void *val
= xs
->base
+ offs
;
1265 if (ocfs2_xattr_is_local(xs
->here
) && size
== size_l
) {
1266 /* Replace existing local xattr with tree root */
1267 ret
= ocfs2_xattr_set_value_outside(inode
, xi
, xs
,
1272 } else if (!ocfs2_xattr_is_local(xs
->here
)) {
1273 /* For existing xattr which has value outside */
1274 struct ocfs2_xattr_value_root
*xv
= NULL
;
1275 xv
= (struct ocfs2_xattr_value_root
*)(val
+
1276 OCFS2_XATTR_SIZE(name_len
));
1278 if (xi
->value_len
> OCFS2_XATTR_INLINE_SIZE
) {
1280 * If new value need set outside also,
1281 * first truncate old value to new value,
1282 * then set new value with set_value_outside().
1284 ret
= ocfs2_xattr_value_truncate(inode
,
1293 ret
= __ocfs2_xattr_set_value_outside(inode
,
1302 ret
= ocfs2_xattr_update_entry(inode
,
1311 * If new value need set in local,
1312 * just trucate old value to zero.
1314 ret
= ocfs2_xattr_value_truncate(inode
,
1324 handle
= ocfs2_start_trans((OCFS2_SB(inode
->i_sb
)),
1325 OCFS2_INODE_UPDATE_CREDITS
);
1326 if (IS_ERR(handle
)) {
1327 ret
= PTR_ERR(handle
);
1332 ret
= ocfs2_journal_access(handle
, inode
, xs
->inode_bh
,
1333 OCFS2_JOURNAL_ACCESS_WRITE
);
1339 if (!(flag
& OCFS2_INLINE_XATTR_FL
)) {
1340 /* set extended attribute in external block. */
1341 ret
= ocfs2_extend_trans(handle
,
1342 OCFS2_INODE_UPDATE_CREDITS
+
1343 OCFS2_XATTR_BLOCK_UPDATE_CREDITS
);
1348 ret
= ocfs2_journal_access(handle
, inode
, xs
->xattr_bh
,
1349 OCFS2_JOURNAL_ACCESS_WRITE
);
1357 * Set value in local, include set tree root in local.
1358 * This is the first step for value size >INLINE_SIZE.
1360 ocfs2_xattr_set_entry_local(inode
, &xi_l
, xs
, last
, min_offs
);
1362 if (!(flag
& OCFS2_INLINE_XATTR_FL
)) {
1363 ret
= ocfs2_journal_dirty(handle
, xs
->xattr_bh
);
1370 if (!(oi
->ip_dyn_features
& OCFS2_INLINE_XATTR_FL
) &&
1371 (flag
& OCFS2_INLINE_XATTR_FL
)) {
1372 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1373 unsigned int xattrsize
= osb
->s_xattr_inline_size
;
1376 * Adjust extent record count or inline data size
1377 * to reserve space for extended attribute.
1379 if (oi
->ip_dyn_features
& OCFS2_INLINE_DATA_FL
) {
1380 struct ocfs2_inline_data
*idata
= &di
->id2
.i_data
;
1381 le16_add_cpu(&idata
->id_count
, -xattrsize
);
1382 } else if (!(ocfs2_inode_is_fast_symlink(inode
))) {
1383 struct ocfs2_extent_list
*el
= &di
->id2
.i_list
;
1384 le16_add_cpu(&el
->l_count
, -(xattrsize
/
1385 sizeof(struct ocfs2_extent_rec
)));
1387 di
->i_xattr_inline_size
= cpu_to_le16(xattrsize
);
1389 /* Update xattr flag */
1390 spin_lock(&oi
->ip_lock
);
1391 oi
->ip_dyn_features
|= flag
;
1392 di
->i_dyn_features
= cpu_to_le16(oi
->ip_dyn_features
);
1393 spin_unlock(&oi
->ip_lock
);
1394 /* Update inode ctime */
1395 inode
->i_ctime
= CURRENT_TIME
;
1396 di
->i_ctime
= cpu_to_le64(inode
->i_ctime
.tv_sec
);
1397 di
->i_ctime_nsec
= cpu_to_le32(inode
->i_ctime
.tv_nsec
);
1399 ret
= ocfs2_journal_dirty(handle
, xs
->inode_bh
);
1404 ocfs2_commit_trans(OCFS2_SB(inode
->i_sb
), handle
);
1406 if (!ret
&& xi
->value_len
> OCFS2_XATTR_INLINE_SIZE
) {
1408 * Set value outside in B tree.
1409 * This is the second step for value size > INLINE_SIZE.
1411 size_t offs
= le16_to_cpu(xs
->here
->xe_name_offset
);
1412 ret
= ocfs2_xattr_set_value_outside(inode
, xi
, xs
, offs
);
1418 * If set value outside failed, we have to clean
1419 * the junk tree root we have already set in local.
1421 ret2
= ocfs2_xattr_cleanup(inode
, xi
, xs
, offs
);
1431 static int ocfs2_remove_value_outside(struct inode
*inode
,
1432 struct buffer_head
*bh
,
1433 struct ocfs2_xattr_header
*header
)
1437 for (i
= 0; i
< le16_to_cpu(header
->xh_count
); i
++) {
1438 struct ocfs2_xattr_entry
*entry
= &header
->xh_entries
[i
];
1440 if (!ocfs2_xattr_is_local(entry
)) {
1441 struct ocfs2_xattr_value_root
*xv
;
1444 val
= (void *)header
+
1445 le16_to_cpu(entry
->xe_name_offset
);
1446 xv
= (struct ocfs2_xattr_value_root
*)
1447 (val
+ OCFS2_XATTR_SIZE(entry
->xe_name_len
));
1448 ret
= ocfs2_xattr_value_truncate(inode
, bh
, xv
, 0);
1459 static int ocfs2_xattr_ibody_remove(struct inode
*inode
,
1460 struct buffer_head
*di_bh
)
1463 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
1464 struct ocfs2_xattr_header
*header
;
1467 header
= (struct ocfs2_xattr_header
*)
1468 ((void *)di
+ inode
->i_sb
->s_blocksize
-
1469 le16_to_cpu(di
->i_xattr_inline_size
));
1471 ret
= ocfs2_remove_value_outside(inode
, di_bh
, header
);
1476 static int ocfs2_xattr_block_remove(struct inode
*inode
,
1477 struct buffer_head
*blk_bh
)
1479 struct ocfs2_xattr_block
*xb
;
1482 xb
= (struct ocfs2_xattr_block
*)blk_bh
->b_data
;
1483 if (!(le16_to_cpu(xb
->xb_flags
) & OCFS2_XATTR_INDEXED
)) {
1484 struct ocfs2_xattr_header
*header
= &(xb
->xb_attrs
.xb_header
);
1485 ret
= ocfs2_remove_value_outside(inode
, blk_bh
, header
);
1487 ret
= ocfs2_delete_xattr_index_block(inode
, blk_bh
);
1492 static int ocfs2_xattr_free_block(struct inode
*inode
,
1495 struct inode
*xb_alloc_inode
;
1496 struct buffer_head
*xb_alloc_bh
= NULL
;
1497 struct buffer_head
*blk_bh
= NULL
;
1498 struct ocfs2_xattr_block
*xb
;
1499 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1505 ret
= ocfs2_read_block(inode
, block
, &blk_bh
);
1511 xb
= (struct ocfs2_xattr_block
*)blk_bh
->b_data
;
1512 if (!OCFS2_IS_VALID_XATTR_BLOCK(xb
)) {
1517 ret
= ocfs2_xattr_block_remove(inode
, blk_bh
);
1523 blk
= le64_to_cpu(xb
->xb_blkno
);
1524 bit
= le16_to_cpu(xb
->xb_suballoc_bit
);
1525 bg_blkno
= ocfs2_which_suballoc_group(blk
, bit
);
1527 xb_alloc_inode
= ocfs2_get_system_file_inode(osb
,
1528 EXTENT_ALLOC_SYSTEM_INODE
,
1529 le16_to_cpu(xb
->xb_suballoc_slot
));
1530 if (!xb_alloc_inode
) {
1535 mutex_lock(&xb_alloc_inode
->i_mutex
);
1537 ret
= ocfs2_inode_lock(xb_alloc_inode
, &xb_alloc_bh
, 1);
1543 handle
= ocfs2_start_trans(osb
, OCFS2_SUBALLOC_FREE
);
1544 if (IS_ERR(handle
)) {
1545 ret
= PTR_ERR(handle
);
1550 ret
= ocfs2_free_suballoc_bits(handle
, xb_alloc_inode
, xb_alloc_bh
,
1555 ocfs2_commit_trans(osb
, handle
);
1557 ocfs2_inode_unlock(xb_alloc_inode
, 1);
1558 brelse(xb_alloc_bh
);
1560 mutex_unlock(&xb_alloc_inode
->i_mutex
);
1561 iput(xb_alloc_inode
);
1568 * ocfs2_xattr_remove()
1570 * Free extended attribute resources associated with this inode.
1572 int ocfs2_xattr_remove(struct inode
*inode
, struct buffer_head
*di_bh
)
1574 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
1575 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
1579 if (!ocfs2_supports_xattr(OCFS2_SB(inode
->i_sb
)))
1582 if (!(oi
->ip_dyn_features
& OCFS2_HAS_XATTR_FL
))
1585 if (oi
->ip_dyn_features
& OCFS2_INLINE_XATTR_FL
) {
1586 ret
= ocfs2_xattr_ibody_remove(inode
, di_bh
);
1593 if (di
->i_xattr_loc
) {
1594 ret
= ocfs2_xattr_free_block(inode
,
1595 le64_to_cpu(di
->i_xattr_loc
));
1602 handle
= ocfs2_start_trans((OCFS2_SB(inode
->i_sb
)),
1603 OCFS2_INODE_UPDATE_CREDITS
);
1604 if (IS_ERR(handle
)) {
1605 ret
= PTR_ERR(handle
);
1609 ret
= ocfs2_journal_access(handle
, inode
, di_bh
,
1610 OCFS2_JOURNAL_ACCESS_WRITE
);
1616 di
->i_xattr_loc
= 0;
1618 spin_lock(&oi
->ip_lock
);
1619 oi
->ip_dyn_features
&= ~(OCFS2_INLINE_XATTR_FL
| OCFS2_HAS_XATTR_FL
);
1620 di
->i_dyn_features
= cpu_to_le16(oi
->ip_dyn_features
);
1621 spin_unlock(&oi
->ip_lock
);
1623 ret
= ocfs2_journal_dirty(handle
, di_bh
);
1627 ocfs2_commit_trans(OCFS2_SB(inode
->i_sb
), handle
);
1632 static int ocfs2_xattr_has_space_inline(struct inode
*inode
,
1633 struct ocfs2_dinode
*di
)
1635 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
1636 unsigned int xattrsize
= OCFS2_SB(inode
->i_sb
)->s_xattr_inline_size
;
1639 if (xattrsize
< OCFS2_MIN_XATTR_INLINE_SIZE
)
1642 if (oi
->ip_dyn_features
& OCFS2_INLINE_DATA_FL
) {
1643 struct ocfs2_inline_data
*idata
= &di
->id2
.i_data
;
1644 free
= le16_to_cpu(idata
->id_count
) - le64_to_cpu(di
->i_size
);
1645 } else if (ocfs2_inode_is_fast_symlink(inode
)) {
1646 free
= ocfs2_fast_symlink_chars(inode
->i_sb
) -
1647 le64_to_cpu(di
->i_size
);
1649 struct ocfs2_extent_list
*el
= &di
->id2
.i_list
;
1650 free
= (le16_to_cpu(el
->l_count
) -
1651 le16_to_cpu(el
->l_next_free_rec
)) *
1652 sizeof(struct ocfs2_extent_rec
);
1654 if (free
>= xattrsize
)
1661 * ocfs2_xattr_ibody_find()
1663 * Find extended attribute in inode block and
1664 * fill search info into struct ocfs2_xattr_search.
1666 static int ocfs2_xattr_ibody_find(struct inode
*inode
,
1669 struct ocfs2_xattr_search
*xs
)
1671 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
1672 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)xs
->inode_bh
->b_data
;
1676 if (inode
->i_sb
->s_blocksize
== OCFS2_MIN_BLOCKSIZE
)
1679 if (!(oi
->ip_dyn_features
& OCFS2_INLINE_XATTR_FL
)) {
1680 down_read(&oi
->ip_alloc_sem
);
1681 has_space
= ocfs2_xattr_has_space_inline(inode
, di
);
1682 up_read(&oi
->ip_alloc_sem
);
1687 xs
->xattr_bh
= xs
->inode_bh
;
1688 xs
->end
= (void *)di
+ inode
->i_sb
->s_blocksize
;
1689 if (oi
->ip_dyn_features
& OCFS2_INLINE_XATTR_FL
)
1690 xs
->header
= (struct ocfs2_xattr_header
*)
1691 (xs
->end
- le16_to_cpu(di
->i_xattr_inline_size
));
1693 xs
->header
= (struct ocfs2_xattr_header
*)
1694 (xs
->end
- OCFS2_SB(inode
->i_sb
)->s_xattr_inline_size
);
1695 xs
->base
= (void *)xs
->header
;
1696 xs
->here
= xs
->header
->xh_entries
;
1698 /* Find the named attribute. */
1699 if (oi
->ip_dyn_features
& OCFS2_INLINE_XATTR_FL
) {
1700 ret
= ocfs2_xattr_find_entry(name_index
, name
, xs
);
1701 if (ret
&& ret
!= -ENODATA
)
1703 xs
->not_found
= ret
;
1710 * ocfs2_xattr_ibody_set()
1712 * Set, replace or remove an extended attribute into inode block.
1715 static int ocfs2_xattr_ibody_set(struct inode
*inode
,
1716 struct ocfs2_xattr_info
*xi
,
1717 struct ocfs2_xattr_search
*xs
)
1719 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
1720 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)xs
->inode_bh
->b_data
;
1723 if (inode
->i_sb
->s_blocksize
== OCFS2_MIN_BLOCKSIZE
)
1726 down_write(&oi
->ip_alloc_sem
);
1727 if (!(oi
->ip_dyn_features
& OCFS2_INLINE_XATTR_FL
)) {
1728 if (!ocfs2_xattr_has_space_inline(inode
, di
)) {
1734 ret
= ocfs2_xattr_set_entry(inode
, xi
, xs
,
1735 (OCFS2_INLINE_XATTR_FL
| OCFS2_HAS_XATTR_FL
));
1737 up_write(&oi
->ip_alloc_sem
);
1743 * ocfs2_xattr_block_find()
1745 * Find extended attribute in external block and
1746 * fill search info into struct ocfs2_xattr_search.
1748 static int ocfs2_xattr_block_find(struct inode
*inode
,
1751 struct ocfs2_xattr_search
*xs
)
1753 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)xs
->inode_bh
->b_data
;
1754 struct buffer_head
*blk_bh
= NULL
;
1755 struct ocfs2_xattr_block
*xb
;
1758 if (!di
->i_xattr_loc
)
1761 ret
= ocfs2_read_block(inode
, le64_to_cpu(di
->i_xattr_loc
), &blk_bh
);
1767 xb
= (struct ocfs2_xattr_block
*)blk_bh
->b_data
;
1768 if (!OCFS2_IS_VALID_XATTR_BLOCK(xb
)) {
1773 xs
->xattr_bh
= blk_bh
;
1775 if (!(le16_to_cpu(xb
->xb_flags
) & OCFS2_XATTR_INDEXED
)) {
1776 xs
->header
= &xb
->xb_attrs
.xb_header
;
1777 xs
->base
= (void *)xs
->header
;
1778 xs
->end
= (void *)(blk_bh
->b_data
) + blk_bh
->b_size
;
1779 xs
->here
= xs
->header
->xh_entries
;
1781 ret
= ocfs2_xattr_find_entry(name_index
, name
, xs
);
1783 ret
= ocfs2_xattr_index_block_find(inode
, blk_bh
,
1787 if (ret
&& ret
!= -ENODATA
) {
1788 xs
->xattr_bh
= NULL
;
1791 xs
->not_found
= ret
;
1800 * ocfs2_xattr_block_set()
1802 * Set, replace or remove an extended attribute into external block.
1805 static int ocfs2_xattr_block_set(struct inode
*inode
,
1806 struct ocfs2_xattr_info
*xi
,
1807 struct ocfs2_xattr_search
*xs
)
1809 struct buffer_head
*new_bh
= NULL
;
1810 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
1811 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)xs
->inode_bh
->b_data
;
1812 struct ocfs2_alloc_context
*meta_ac
= NULL
;
1813 handle_t
*handle
= NULL
;
1814 struct ocfs2_xattr_block
*xblk
= NULL
;
1815 u16 suballoc_bit_start
;
1820 if (!xs
->xattr_bh
) {
1822 * Alloc one external block for extended attribute
1825 ret
= ocfs2_reserve_new_metadata_blocks(osb
, 1, &meta_ac
);
1830 handle
= ocfs2_start_trans(osb
,
1831 OCFS2_XATTR_BLOCK_CREATE_CREDITS
);
1832 if (IS_ERR(handle
)) {
1833 ret
= PTR_ERR(handle
);
1837 ret
= ocfs2_journal_access(handle
, inode
, xs
->inode_bh
,
1838 OCFS2_JOURNAL_ACCESS_CREATE
);
1844 ret
= ocfs2_claim_metadata(osb
, handle
, meta_ac
, 1,
1845 &suballoc_bit_start
, &num_got
,
1852 new_bh
= sb_getblk(inode
->i_sb
, first_blkno
);
1853 ocfs2_set_new_buffer_uptodate(inode
, new_bh
);
1855 ret
= ocfs2_journal_access(handle
, inode
, new_bh
,
1856 OCFS2_JOURNAL_ACCESS_CREATE
);
1862 /* Initialize ocfs2_xattr_block */
1863 xs
->xattr_bh
= new_bh
;
1864 xblk
= (struct ocfs2_xattr_block
*)new_bh
->b_data
;
1865 memset(xblk
, 0, inode
->i_sb
->s_blocksize
);
1866 strcpy((void *)xblk
, OCFS2_XATTR_BLOCK_SIGNATURE
);
1867 xblk
->xb_suballoc_slot
= cpu_to_le16(osb
->slot_num
);
1868 xblk
->xb_suballoc_bit
= cpu_to_le16(suballoc_bit_start
);
1869 xblk
->xb_fs_generation
= cpu_to_le32(osb
->fs_generation
);
1870 xblk
->xb_blkno
= cpu_to_le64(first_blkno
);
1872 xs
->header
= &xblk
->xb_attrs
.xb_header
;
1873 xs
->base
= (void *)xs
->header
;
1874 xs
->end
= (void *)xblk
+ inode
->i_sb
->s_blocksize
;
1875 xs
->here
= xs
->header
->xh_entries
;
1878 ret
= ocfs2_journal_dirty(handle
, new_bh
);
1883 di
->i_xattr_loc
= cpu_to_le64(first_blkno
);
1884 ret
= ocfs2_journal_dirty(handle
, xs
->inode_bh
);
1888 ocfs2_commit_trans(osb
, handle
);
1891 ocfs2_free_alloc_context(meta_ac
);
1895 xblk
= (struct ocfs2_xattr_block
*)xs
->xattr_bh
->b_data
;
1897 if (!(le16_to_cpu(xblk
->xb_flags
) & OCFS2_XATTR_INDEXED
)) {
1898 /* Set extended attribute into external block */
1899 ret
= ocfs2_xattr_set_entry(inode
, xi
, xs
, OCFS2_HAS_XATTR_FL
);
1900 if (!ret
|| ret
!= -ENOSPC
)
1903 ret
= ocfs2_xattr_create_index_block(inode
, xs
);
1908 ret
= ocfs2_xattr_set_entry_index_block(inode
, xi
, xs
);
1918 * Set, replace or remove an extended attribute for this inode.
1919 * value is NULL to remove an existing extended attribute, else either
1920 * create or replace an extended attribute.
1922 int ocfs2_xattr_set(struct inode
*inode
,
1929 struct buffer_head
*di_bh
= NULL
;
1930 struct ocfs2_dinode
*di
;
1932 u16 i
, blk_per_bucket
= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
1934 struct ocfs2_xattr_info xi
= {
1935 .name_index
= name_index
,
1938 .value_len
= value_len
,
1941 struct ocfs2_xattr_search xis
= {
1942 .not_found
= -ENODATA
,
1945 struct ocfs2_xattr_search xbs
= {
1946 .not_found
= -ENODATA
,
1949 if (!ocfs2_supports_xattr(OCFS2_SB(inode
->i_sb
)))
1952 ret
= ocfs2_inode_lock(inode
, &di_bh
, 1);
1957 xis
.inode_bh
= xbs
.inode_bh
= di_bh
;
1958 di
= (struct ocfs2_dinode
*)di_bh
->b_data
;
1960 down_write(&OCFS2_I(inode
)->ip_xattr_sem
);
1962 * Scan inode and external block to find the same name
1963 * extended attribute and collect search infomation.
1965 ret
= ocfs2_xattr_ibody_find(inode
, name_index
, name
, &xis
);
1968 if (xis
.not_found
) {
1969 ret
= ocfs2_xattr_block_find(inode
, name_index
, name
, &xbs
);
1974 if (xis
.not_found
&& xbs
.not_found
) {
1976 if (flags
& XATTR_REPLACE
)
1983 if (flags
& XATTR_CREATE
)
1988 /* Remove existing extended attribute */
1990 ret
= ocfs2_xattr_ibody_set(inode
, &xi
, &xis
);
1991 else if (!xbs
.not_found
)
1992 ret
= ocfs2_xattr_block_set(inode
, &xi
, &xbs
);
1994 /* We always try to set extended attribute into inode first*/
1995 ret
= ocfs2_xattr_ibody_set(inode
, &xi
, &xis
);
1996 if (!ret
&& !xbs
.not_found
) {
1998 * If succeed and that extended attribute existing in
1999 * external block, then we will remove it.
2003 ret
= ocfs2_xattr_block_set(inode
, &xi
, &xbs
);
2004 } else if (ret
== -ENOSPC
) {
2005 if (di
->i_xattr_loc
&& !xbs
.xattr_bh
) {
2006 ret
= ocfs2_xattr_block_find(inode
, name_index
,
2012 * If no space in inode, we will set extended attribute
2013 * into external block.
2015 ret
= ocfs2_xattr_block_set(inode
, &xi
, &xbs
);
2018 if (!xis
.not_found
) {
2020 * If succeed and that extended attribute
2021 * existing in inode, we will remove it.
2025 ret
= ocfs2_xattr_ibody_set(inode
, &xi
, &xis
);
2030 up_write(&OCFS2_I(inode
)->ip_xattr_sem
);
2031 ocfs2_inode_unlock(inode
, 1);
2033 brelse(xbs
.xattr_bh
);
2034 for (i
= 0; i
< blk_per_bucket
; i
++)
2035 brelse(xbs
.bucket
.bhs
[i
]);
2041 * Find the xattr extent rec which may contains name_hash.
2042 * e_cpos will be the first name hash of the xattr rec.
2043 * el must be the ocfs2_xattr_header.xb_attrs.xb_root.xt_list.
2045 static int ocfs2_xattr_get_rec(struct inode
*inode
,
2050 struct ocfs2_extent_list
*el
)
2053 struct buffer_head
*eb_bh
= NULL
;
2054 struct ocfs2_extent_block
*eb
;
2055 struct ocfs2_extent_rec
*rec
= NULL
;
2058 if (el
->l_tree_depth
) {
2059 ret
= ocfs2_find_leaf(inode
, el
, name_hash
, &eb_bh
);
2065 eb
= (struct ocfs2_extent_block
*) eb_bh
->b_data
;
2068 if (el
->l_tree_depth
) {
2069 ocfs2_error(inode
->i_sb
,
2070 "Inode %lu has non zero tree depth in "
2071 "xattr tree block %llu\n", inode
->i_ino
,
2072 (unsigned long long)eb_bh
->b_blocknr
);
2078 for (i
= le16_to_cpu(el
->l_next_free_rec
) - 1; i
>= 0; i
--) {
2079 rec
= &el
->l_recs
[i
];
2081 if (le32_to_cpu(rec
->e_cpos
) <= name_hash
) {
2082 e_blkno
= le64_to_cpu(rec
->e_blkno
);
2088 ocfs2_error(inode
->i_sb
, "Inode %lu has bad extent "
2089 "record (%u, %u, 0) in xattr", inode
->i_ino
,
2090 le32_to_cpu(rec
->e_cpos
),
2091 ocfs2_rec_clusters(el
, rec
));
2096 *p_blkno
= le64_to_cpu(rec
->e_blkno
);
2097 *num_clusters
= le16_to_cpu(rec
->e_leaf_clusters
);
2099 *e_cpos
= le32_to_cpu(rec
->e_cpos
);
2105 typedef int (xattr_bucket_func
)(struct inode
*inode
,
2106 struct ocfs2_xattr_bucket
*bucket
,
2109 static int ocfs2_find_xe_in_bucket(struct inode
*inode
,
2110 struct buffer_head
*header_bh
,
2117 int i
, ret
= 0, cmp
= 1, block_off
, new_offset
;
2118 struct ocfs2_xattr_header
*xh
=
2119 (struct ocfs2_xattr_header
*)header_bh
->b_data
;
2120 size_t name_len
= strlen(name
);
2121 struct ocfs2_xattr_entry
*xe
= NULL
;
2122 struct buffer_head
*name_bh
= NULL
;
2126 * We don't use binary search in the bucket because there
2127 * may be multiple entries with the same name hash.
2129 for (i
= 0; i
< le16_to_cpu(xh
->xh_count
); i
++) {
2130 xe
= &xh
->xh_entries
[i
];
2132 if (name_hash
> le32_to_cpu(xe
->xe_name_hash
))
2134 else if (name_hash
< le32_to_cpu(xe
->xe_name_hash
))
2137 cmp
= name_index
- ocfs2_xattr_get_type(xe
);
2139 cmp
= name_len
- xe
->xe_name_len
;
2143 ret
= ocfs2_xattr_bucket_get_name_value(inode
,
2153 ret
= ocfs2_read_block(inode
, header_bh
->b_blocknr
+ block_off
,
2159 xe_name
= name_bh
->b_data
+ new_offset
;
2161 cmp
= memcmp(name
, xe_name
, name_len
);
2177 * Find the specified xattr entry in a series of buckets.
2178 * This series start from p_blkno and last for num_clusters.
2179 * The ocfs2_xattr_header.xh_num_buckets of the first bucket contains
2180 * the num of the valid buckets.
2182 * Return the buffer_head this xattr should reside in. And if the xattr's
2183 * hash is in the gap of 2 buckets, return the lower bucket.
2185 static int ocfs2_xattr_bucket_find(struct inode
*inode
,
2192 struct ocfs2_xattr_search
*xs
)
2195 struct buffer_head
*bh
= NULL
;
2196 struct buffer_head
*lower_bh
= NULL
;
2197 struct ocfs2_xattr_header
*xh
= NULL
;
2198 struct ocfs2_xattr_entry
*xe
= NULL
;
2200 u16 blk_per_bucket
= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
2201 int low_bucket
= 0, bucket
, high_bucket
;
2205 ret
= ocfs2_read_block(inode
, p_blkno
, &bh
);
2211 xh
= (struct ocfs2_xattr_header
*)bh
->b_data
;
2212 high_bucket
= le16_to_cpu(xh
->xh_num_buckets
) - 1;
2214 while (low_bucket
<= high_bucket
) {
2217 bucket
= (low_bucket
+ high_bucket
) / 2;
2219 blkno
= p_blkno
+ bucket
* blk_per_bucket
;
2221 ret
= ocfs2_read_block(inode
, blkno
, &bh
);
2227 xh
= (struct ocfs2_xattr_header
*)bh
->b_data
;
2228 xe
= &xh
->xh_entries
[0];
2229 if (name_hash
< le32_to_cpu(xe
->xe_name_hash
)) {
2230 high_bucket
= bucket
- 1;
2235 * Check whether the hash of the last entry in our
2236 * bucket is larger than the search one. for an empty
2237 * bucket, the last one is also the first one.
2240 xe
= &xh
->xh_entries
[le16_to_cpu(xh
->xh_count
) - 1];
2242 last_hash
= le32_to_cpu(xe
->xe_name_hash
);
2244 /* record lower_bh which may be the insert place. */
2249 if (name_hash
> le32_to_cpu(xe
->xe_name_hash
)) {
2250 low_bucket
= bucket
+ 1;
2254 /* the searched xattr should reside in this bucket if exists. */
2255 ret
= ocfs2_find_xe_in_bucket(inode
, lower_bh
,
2256 name_index
, name
, name_hash
,
2266 * Record the bucket we have found.
2267 * When the xattr's hash value is in the gap of 2 buckets, we will
2268 * always set it to the previous bucket.
2272 * We can't find any bucket whose first name_hash is less
2273 * than the find name_hash.
2275 BUG_ON(bh
->b_blocknr
!= p_blkno
);
2279 xs
->bucket
.bhs
[0] = lower_bh
;
2280 xs
->bucket
.xh
= (struct ocfs2_xattr_header
*)
2281 xs
->bucket
.bhs
[0]->b_data
;
2284 xs
->header
= xs
->bucket
.xh
;
2285 xs
->base
= xs
->bucket
.bhs
[0]->b_data
;
2286 xs
->end
= xs
->base
+ inode
->i_sb
->s_blocksize
;
2290 * If we have found the xattr enty, read all the blocks in
2293 ret
= ocfs2_read_blocks(inode
, xs
->bucket
.bhs
[0]->b_blocknr
+ 1,
2294 blk_per_bucket
- 1, &xs
->bucket
.bhs
[1],
2301 xs
->here
= &xs
->header
->xh_entries
[index
];
2302 mlog(0, "find xattr %s in bucket %llu, entry = %u\n", name
,
2303 (unsigned long long)xs
->bucket
.bhs
[0]->b_blocknr
, index
);
2313 static int ocfs2_xattr_index_block_find(struct inode
*inode
,
2314 struct buffer_head
*root_bh
,
2317 struct ocfs2_xattr_search
*xs
)
2320 struct ocfs2_xattr_block
*xb
=
2321 (struct ocfs2_xattr_block
*)root_bh
->b_data
;
2322 struct ocfs2_xattr_tree_root
*xb_root
= &xb
->xb_attrs
.xb_root
;
2323 struct ocfs2_extent_list
*el
= &xb_root
->xt_list
;
2325 u32 first_hash
, num_clusters
= 0;
2326 u32 name_hash
= ocfs2_xattr_name_hash(inode
, name
, strlen(name
));
2328 if (le16_to_cpu(el
->l_next_free_rec
) == 0)
2331 mlog(0, "find xattr %s, hash = %u, index = %d in xattr tree\n",
2332 name
, name_hash
, name_index
);
2334 ret
= ocfs2_xattr_get_rec(inode
, name_hash
, &p_blkno
, &first_hash
,
2341 BUG_ON(p_blkno
== 0 || num_clusters
== 0 || first_hash
> name_hash
);
2343 mlog(0, "find xattr extent rec %u clusters from %llu, the first hash "
2344 "in the rec is %u\n", num_clusters
, (unsigned long long)p_blkno
,
2347 ret
= ocfs2_xattr_bucket_find(inode
, name_index
, name
, name_hash
,
2348 p_blkno
, first_hash
, num_clusters
, xs
);
2354 static int ocfs2_iterate_xattr_buckets(struct inode
*inode
,
2357 xattr_bucket_func
*func
,
2361 int blk_per_bucket
= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
2362 u32 bpc
= ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode
->i_sb
));
2363 u32 num_buckets
= clusters
* bpc
;
2364 struct ocfs2_xattr_bucket bucket
;
2366 memset(&bucket
, 0, sizeof(bucket
));
2368 mlog(0, "iterating xattr buckets in %u clusters starting from %llu\n",
2369 clusters
, (unsigned long long)blkno
);
2371 for (i
= 0; i
< num_buckets
; i
++, blkno
+= blk_per_bucket
) {
2372 ret
= ocfs2_read_blocks(inode
, blkno
, blk_per_bucket
,
2379 bucket
.xh
= (struct ocfs2_xattr_header
*)bucket
.bhs
[0]->b_data
;
2381 * The real bucket num in this series of blocks is stored
2382 * in the 1st bucket.
2385 num_buckets
= le16_to_cpu(bucket
.xh
->xh_num_buckets
);
2387 mlog(0, "iterating xattr bucket %llu, first hash %u\n",
2388 (unsigned long long)blkno
,
2389 le32_to_cpu(bucket
.xh
->xh_entries
[0].xe_name_hash
));
2391 ret
= func(inode
, &bucket
, para
);
2398 for (j
= 0; j
< blk_per_bucket
; j
++)
2399 brelse(bucket
.bhs
[j
]);
2400 memset(&bucket
, 0, sizeof(bucket
));
2404 for (j
= 0; j
< blk_per_bucket
; j
++)
2405 brelse(bucket
.bhs
[j
]);
2410 struct ocfs2_xattr_tree_list
{
2416 static int ocfs2_xattr_bucket_get_name_value(struct inode
*inode
,
2417 struct ocfs2_xattr_header
*xh
,
2424 if (index
< 0 || index
>= le16_to_cpu(xh
->xh_count
))
2427 name_offset
= le16_to_cpu(xh
->xh_entries
[index
].xe_name_offset
);
2429 *block_off
= name_offset
>> inode
->i_sb
->s_blocksize_bits
;
2430 *new_offset
= name_offset
% inode
->i_sb
->s_blocksize
;
2435 static int ocfs2_list_xattr_bucket(struct inode
*inode
,
2436 struct ocfs2_xattr_bucket
*bucket
,
2440 struct ocfs2_xattr_tree_list
*xl
= (struct ocfs2_xattr_tree_list
*)para
;
2441 int i
, block_off
, new_offset
;
2442 const char *prefix
, *name
;
2444 for (i
= 0 ; i
< le16_to_cpu(bucket
->xh
->xh_count
); i
++) {
2445 struct ocfs2_xattr_entry
*entry
= &bucket
->xh
->xh_entries
[i
];
2446 type
= ocfs2_xattr_get_type(entry
);
2447 prefix
= ocfs2_xattr_prefix(type
);
2450 ret
= ocfs2_xattr_bucket_get_name_value(inode
,
2458 name
= (const char *)bucket
->bhs
[block_off
]->b_data
+
2460 ret
= ocfs2_xattr_list_entry(xl
->buffer
,
2464 entry
->xe_name_len
);
2473 static int ocfs2_xattr_tree_list_index_block(struct inode
*inode
,
2474 struct ocfs2_xattr_tree_root
*xt
,
2478 struct ocfs2_extent_list
*el
= &xt
->xt_list
;
2480 u32 name_hash
= UINT_MAX
, e_cpos
= 0, num_clusters
= 0;
2482 struct ocfs2_xattr_tree_list xl
= {
2484 .buffer_size
= buffer_size
,
2488 if (le16_to_cpu(el
->l_next_free_rec
) == 0)
2491 while (name_hash
> 0) {
2492 ret
= ocfs2_xattr_get_rec(inode
, name_hash
, &p_blkno
,
2493 &e_cpos
, &num_clusters
, el
);
2499 ret
= ocfs2_iterate_xattr_buckets(inode
, p_blkno
, num_clusters
,
2500 ocfs2_list_xattr_bucket
,
2510 name_hash
= e_cpos
- 1;
2518 static int cmp_xe(const void *a
, const void *b
)
2520 const struct ocfs2_xattr_entry
*l
= a
, *r
= b
;
2521 u32 l_hash
= le32_to_cpu(l
->xe_name_hash
);
2522 u32 r_hash
= le32_to_cpu(r
->xe_name_hash
);
2524 if (l_hash
> r_hash
)
2526 if (l_hash
< r_hash
)
2531 static void swap_xe(void *a
, void *b
, int size
)
2533 struct ocfs2_xattr_entry
*l
= a
, *r
= b
, tmp
;
2536 memcpy(l
, r
, sizeof(struct ocfs2_xattr_entry
));
2537 memcpy(r
, &tmp
, sizeof(struct ocfs2_xattr_entry
));
2541 * When the ocfs2_xattr_block is filled up, new bucket will be created
2542 * and all the xattr entries will be moved to the new bucket.
2543 * Note: we need to sort the entries since they are not saved in order
2544 * in the ocfs2_xattr_block.
2546 static void ocfs2_cp_xattr_block_to_bucket(struct inode
*inode
,
2547 struct buffer_head
*xb_bh
,
2548 struct buffer_head
*xh_bh
,
2549 struct buffer_head
*data_bh
)
2551 int i
, blocksize
= inode
->i_sb
->s_blocksize
;
2552 u16 offset
, size
, off_change
;
2553 struct ocfs2_xattr_entry
*xe
;
2554 struct ocfs2_xattr_block
*xb
=
2555 (struct ocfs2_xattr_block
*)xb_bh
->b_data
;
2556 struct ocfs2_xattr_header
*xb_xh
= &xb
->xb_attrs
.xb_header
;
2557 struct ocfs2_xattr_header
*xh
=
2558 (struct ocfs2_xattr_header
*)xh_bh
->b_data
;
2559 u16 count
= le16_to_cpu(xb_xh
->xh_count
);
2560 char *target
= xh_bh
->b_data
, *src
= xb_bh
->b_data
;
2562 mlog(0, "cp xattr from block %llu to bucket %llu\n",
2563 (unsigned long long)xb_bh
->b_blocknr
,
2564 (unsigned long long)xh_bh
->b_blocknr
);
2566 memset(xh_bh
->b_data
, 0, blocksize
);
2568 memset(data_bh
->b_data
, 0, blocksize
);
2570 * Since the xe_name_offset is based on ocfs2_xattr_header,
2571 * there is a offset change corresponding to the change of
2572 * ocfs2_xattr_header's position.
2574 off_change
= offsetof(struct ocfs2_xattr_block
, xb_attrs
.xb_header
);
2575 xe
= &xb_xh
->xh_entries
[count
- 1];
2576 offset
= le16_to_cpu(xe
->xe_name_offset
) + off_change
;
2577 size
= blocksize
- offset
;
2579 /* copy all the names and values. */
2581 target
= data_bh
->b_data
;
2582 memcpy(target
+ offset
, src
+ offset
, size
);
2584 /* Init new header now. */
2585 xh
->xh_count
= xb_xh
->xh_count
;
2586 xh
->xh_num_buckets
= cpu_to_le16(1);
2587 xh
->xh_name_value_len
= cpu_to_le16(size
);
2588 xh
->xh_free_start
= cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE
- size
);
2590 /* copy all the entries. */
2591 target
= xh_bh
->b_data
;
2592 offset
= offsetof(struct ocfs2_xattr_header
, xh_entries
);
2593 size
= count
* sizeof(struct ocfs2_xattr_entry
);
2594 memcpy(target
+ offset
, (char *)xb_xh
+ offset
, size
);
2596 /* Change the xe offset for all the xe because of the move. */
2597 off_change
= OCFS2_XATTR_BUCKET_SIZE
- blocksize
+
2598 offsetof(struct ocfs2_xattr_block
, xb_attrs
.xb_header
);
2599 for (i
= 0; i
< count
; i
++)
2600 le16_add_cpu(&xh
->xh_entries
[i
].xe_name_offset
, off_change
);
2602 mlog(0, "copy entry: start = %u, size = %u, offset_change = %u\n",
2603 offset
, size
, off_change
);
2605 sort(target
+ offset
, count
, sizeof(struct ocfs2_xattr_entry
),
2610 * After we move xattr from block to index btree, we have to
2611 * update ocfs2_xattr_search to the new xe and base.
2613 * When the entry is in xattr block, xattr_bh indicates the storage place.
2614 * While if the entry is in index b-tree, "bucket" indicates the
2615 * real place of the xattr.
2617 static int ocfs2_xattr_update_xattr_search(struct inode
*inode
,
2618 struct ocfs2_xattr_search
*xs
,
2619 struct buffer_head
*old_bh
,
2620 struct buffer_head
*new_bh
)
2623 char *buf
= old_bh
->b_data
;
2624 struct ocfs2_xattr_block
*old_xb
= (struct ocfs2_xattr_block
*)buf
;
2625 struct ocfs2_xattr_header
*old_xh
= &old_xb
->xb_attrs
.xb_header
;
2626 int i
, blocksize
= inode
->i_sb
->s_blocksize
;
2627 u16 blk_per_bucket
= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
2629 xs
->bucket
.bhs
[0] = new_bh
;
2631 xs
->bucket
.xh
= (struct ocfs2_xattr_header
*)xs
->bucket
.bhs
[0]->b_data
;
2632 xs
->header
= xs
->bucket
.xh
;
2634 xs
->base
= new_bh
->b_data
;
2635 xs
->end
= xs
->base
+ inode
->i_sb
->s_blocksize
;
2637 if (!xs
->not_found
) {
2638 if (OCFS2_XATTR_BUCKET_SIZE
!= blocksize
) {
2639 ret
= ocfs2_read_blocks(inode
,
2640 xs
->bucket
.bhs
[0]->b_blocknr
+ 1,
2641 blk_per_bucket
- 1, &xs
->bucket
.bhs
[1],
2649 i
= xs
->here
- old_xh
->xh_entries
;
2650 xs
->here
= &xs
->header
->xh_entries
[i
];
2656 static int ocfs2_xattr_create_index_block(struct inode
*inode
,
2657 struct ocfs2_xattr_search
*xs
)
2659 int ret
, credits
= OCFS2_SUBALLOC_ALLOC
;
2663 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
2664 struct ocfs2_inode_info
*oi
= OCFS2_I(inode
);
2665 struct ocfs2_alloc_context
*data_ac
;
2666 struct buffer_head
*xh_bh
= NULL
, *data_bh
= NULL
;
2667 struct buffer_head
*xb_bh
= xs
->xattr_bh
;
2668 struct ocfs2_xattr_block
*xb
=
2669 (struct ocfs2_xattr_block
*)xb_bh
->b_data
;
2670 struct ocfs2_xattr_tree_root
*xr
;
2671 u16 xb_flags
= le16_to_cpu(xb
->xb_flags
);
2672 u16 bpb
= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
2674 mlog(0, "create xattr index block for %llu\n",
2675 (unsigned long long)xb_bh
->b_blocknr
);
2677 BUG_ON(xb_flags
& OCFS2_XATTR_INDEXED
);
2679 ret
= ocfs2_reserve_clusters(osb
, 1, &data_ac
);
2687 * We can use this lock for now, and maybe move to a dedicated mutex
2688 * if performance becomes a problem later.
2690 down_write(&oi
->ip_alloc_sem
);
2693 * 3 more credits, one for xattr block update, one for the 1st block
2694 * of the new xattr bucket and one for the value/data.
2697 handle
= ocfs2_start_trans(osb
, credits
);
2698 if (IS_ERR(handle
)) {
2699 ret
= PTR_ERR(handle
);
2704 ret
= ocfs2_journal_access(handle
, inode
, xb_bh
,
2705 OCFS2_JOURNAL_ACCESS_WRITE
);
2711 ret
= ocfs2_claim_clusters(osb
, handle
, data_ac
, 1, &bit_off
, &len
);
2718 * The bucket may spread in many blocks, and
2719 * we will only touch the 1st block and the last block
2720 * in the whole bucket(one for entry and one for data).
2722 blkno
= ocfs2_clusters_to_blocks(inode
->i_sb
, bit_off
);
2724 mlog(0, "allocate 1 cluster from %llu to xattr block\n",
2725 (unsigned long long)blkno
);
2727 xh_bh
= sb_getblk(inode
->i_sb
, blkno
);
2734 ocfs2_set_new_buffer_uptodate(inode
, xh_bh
);
2736 ret
= ocfs2_journal_access(handle
, inode
, xh_bh
,
2737 OCFS2_JOURNAL_ACCESS_CREATE
);
2744 data_bh
= sb_getblk(inode
->i_sb
, blkno
+ bpb
- 1);
2751 ocfs2_set_new_buffer_uptodate(inode
, data_bh
);
2753 ret
= ocfs2_journal_access(handle
, inode
, data_bh
,
2754 OCFS2_JOURNAL_ACCESS_CREATE
);
2761 ocfs2_cp_xattr_block_to_bucket(inode
, xb_bh
, xh_bh
, data_bh
);
2763 ocfs2_journal_dirty(handle
, xh_bh
);
2765 ocfs2_journal_dirty(handle
, data_bh
);
2767 ret
= ocfs2_xattr_update_xattr_search(inode
, xs
, xb_bh
, xh_bh
);
2773 /* Change from ocfs2_xattr_header to ocfs2_xattr_tree_root */
2774 memset(&xb
->xb_attrs
, 0, inode
->i_sb
->s_blocksize
-
2775 offsetof(struct ocfs2_xattr_block
, xb_attrs
));
2777 xr
= &xb
->xb_attrs
.xb_root
;
2778 xr
->xt_clusters
= cpu_to_le32(1);
2779 xr
->xt_last_eb_blk
= 0;
2780 xr
->xt_list
.l_tree_depth
= 0;
2781 xr
->xt_list
.l_count
= cpu_to_le16(ocfs2_xattr_recs_per_xb(inode
->i_sb
));
2782 xr
->xt_list
.l_next_free_rec
= cpu_to_le16(1);
2784 xr
->xt_list
.l_recs
[0].e_cpos
= 0;
2785 xr
->xt_list
.l_recs
[0].e_blkno
= cpu_to_le64(blkno
);
2786 xr
->xt_list
.l_recs
[0].e_leaf_clusters
= cpu_to_le16(1);
2788 xb
->xb_flags
= cpu_to_le16(xb_flags
| OCFS2_XATTR_INDEXED
);
2790 ret
= ocfs2_journal_dirty(handle
, xb_bh
);
2797 ocfs2_commit_trans(osb
, handle
);
2800 up_write(&oi
->ip_alloc_sem
);
2804 ocfs2_free_alloc_context(data_ac
);
2812 static int cmp_xe_offset(const void *a
, const void *b
)
2814 const struct ocfs2_xattr_entry
*l
= a
, *r
= b
;
2815 u32 l_name_offset
= le16_to_cpu(l
->xe_name_offset
);
2816 u32 r_name_offset
= le16_to_cpu(r
->xe_name_offset
);
2818 if (l_name_offset
< r_name_offset
)
2820 if (l_name_offset
> r_name_offset
)
2826 * defrag a xattr bucket if we find that the bucket has some
2827 * holes beteen name/value pairs.
2828 * We will move all the name/value pairs to the end of the bucket
2829 * so that we can spare some space for insertion.
2831 static int ocfs2_defrag_xattr_bucket(struct inode
*inode
,
2832 struct ocfs2_xattr_bucket
*bucket
)
2835 size_t end
, offset
, len
, value_len
;
2836 struct ocfs2_xattr_header
*xh
;
2837 char *entries
, *buf
, *bucket_buf
= NULL
;
2838 u64 blkno
= bucket
->bhs
[0]->b_blocknr
;
2839 u16 blk_per_bucket
= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
2841 size_t blocksize
= inode
->i_sb
->s_blocksize
;
2843 struct buffer_head
**bhs
;
2844 struct ocfs2_xattr_entry
*xe
;
2846 bhs
= kzalloc(sizeof(struct buffer_head
*) * blk_per_bucket
,
2851 ret
= ocfs2_read_blocks(inode
, blkno
, blk_per_bucket
, bhs
, 0);
2856 * In order to make the operation more efficient and generic,
2857 * we copy all the blocks into a contiguous memory and do the
2858 * defragment there, so if anything is error, we will not touch
2861 bucket_buf
= kmalloc(OCFS2_XATTR_BUCKET_SIZE
, GFP_NOFS
);
2868 for (i
= 0; i
< blk_per_bucket
; i
++, buf
+= blocksize
)
2869 memcpy(buf
, bhs
[i
]->b_data
, blocksize
);
2871 handle
= ocfs2_start_trans((OCFS2_SB(inode
->i_sb
)), blk_per_bucket
);
2872 if (IS_ERR(handle
)) {
2873 ret
= PTR_ERR(handle
);
2879 for (i
= 0; i
< blk_per_bucket
; i
++) {
2880 ret
= ocfs2_journal_access(handle
, inode
, bhs
[i
],
2881 OCFS2_JOURNAL_ACCESS_WRITE
);
2888 xh
= (struct ocfs2_xattr_header
*)bucket_buf
;
2889 entries
= (char *)xh
->xh_entries
;
2890 xh_free_start
= le16_to_cpu(xh
->xh_free_start
);
2892 mlog(0, "adjust xattr bucket in %llu, count = %u, "
2893 "xh_free_start = %u, xh_name_value_len = %u.\n",
2894 (unsigned long long)blkno
, le16_to_cpu(xh
->xh_count
),
2895 xh_free_start
, le16_to_cpu(xh
->xh_name_value_len
));
2898 * sort all the entries by their offset.
2899 * the largest will be the first, so that we can
2900 * move them to the end one by one.
2902 sort(entries
, le16_to_cpu(xh
->xh_count
),
2903 sizeof(struct ocfs2_xattr_entry
),
2904 cmp_xe_offset
, swap_xe
);
2906 /* Move all name/values to the end of the bucket. */
2907 xe
= xh
->xh_entries
;
2908 end
= OCFS2_XATTR_BUCKET_SIZE
;
2909 for (i
= 0; i
< le16_to_cpu(xh
->xh_count
); i
++, xe
++) {
2910 offset
= le16_to_cpu(xe
->xe_name_offset
);
2911 if (ocfs2_xattr_is_local(xe
))
2912 value_len
= OCFS2_XATTR_SIZE(
2913 le64_to_cpu(xe
->xe_value_size
));
2915 value_len
= OCFS2_XATTR_ROOT_SIZE
;
2916 len
= OCFS2_XATTR_SIZE(xe
->xe_name_len
) + value_len
;
2919 * We must make sure that the name/value pair
2920 * exist in the same block. So adjust end to
2921 * the previous block end if needed.
2923 if (((end
- len
) / blocksize
!=
2924 (end
- 1) / blocksize
))
2925 end
= end
- end
% blocksize
;
2927 if (end
> offset
+ len
) {
2928 memmove(bucket_buf
+ end
- len
,
2929 bucket_buf
+ offset
, len
);
2930 xe
->xe_name_offset
= cpu_to_le16(end
- len
);
2933 mlog_bug_on_msg(end
< offset
+ len
, "Defrag check failed for "
2934 "bucket %llu\n", (unsigned long long)blkno
);
2939 mlog_bug_on_msg(xh_free_start
> end
, "Defrag check failed for "
2940 "bucket %llu\n", (unsigned long long)blkno
);
2942 if (xh_free_start
== end
)
2945 memset(bucket_buf
+ xh_free_start
, 0, end
- xh_free_start
);
2946 xh
->xh_free_start
= cpu_to_le16(end
);
2948 /* sort the entries by their name_hash. */
2949 sort(entries
, le16_to_cpu(xh
->xh_count
),
2950 sizeof(struct ocfs2_xattr_entry
),
2954 for (i
= 0; i
< blk_per_bucket
; i
++, buf
+= blocksize
) {
2955 memcpy(bhs
[i
]->b_data
, buf
, blocksize
);
2956 ocfs2_journal_dirty(handle
, bhs
[i
]);
2960 ocfs2_commit_trans(OCFS2_SB(inode
->i_sb
), handle
);
2964 for (i
= 0; i
< blk_per_bucket
; i
++)
2974 * Move half nums of the xattr bucket in the previous cluster to this new
2975 * cluster. We only touch the last cluster of the previous extend record.
2977 * first_bh is the first buffer_head of a series of bucket in the same
2978 * extent rec and header_bh is the header of one bucket in this cluster.
2979 * They will be updated if we move the data header_bh contains to the new
2980 * cluster. first_hash will be set as the 1st xe's name_hash of the new cluster.
2982 static int ocfs2_mv_xattr_bucket_cross_cluster(struct inode
*inode
,
2984 struct buffer_head
**first_bh
,
2985 struct buffer_head
**header_bh
,
2991 int i
, ret
, credits
;
2992 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
2993 int bpc
= ocfs2_clusters_to_blocks(inode
->i_sb
, 1);
2994 int num_buckets
= ocfs2_xattr_buckets_per_cluster(osb
);
2995 int blocksize
= inode
->i_sb
->s_blocksize
;
2996 struct buffer_head
*old_bh
, *new_bh
, *prev_bh
, *new_first_bh
= NULL
;
2997 struct ocfs2_xattr_header
*new_xh
;
2998 struct ocfs2_xattr_header
*xh
=
2999 (struct ocfs2_xattr_header
*)((*first_bh
)->b_data
);
3001 BUG_ON(le16_to_cpu(xh
->xh_num_buckets
) < num_buckets
);
3002 BUG_ON(OCFS2_XATTR_BUCKET_SIZE
== osb
->s_clustersize
);
3004 prev_bh
= *first_bh
;
3006 xh
= (struct ocfs2_xattr_header
*)prev_bh
->b_data
;
3008 prev_blkno
+= (num_clusters
- 1) * bpc
+ bpc
/ 2;
3010 mlog(0, "move half of xattrs in cluster %llu to %llu\n",
3011 (unsigned long long)prev_blkno
, (unsigned long long)new_blkno
);
3014 * We need to update the 1st half of the new cluster and
3015 * 1 more for the update of the 1st bucket of the previous
3018 credits
= bpc
/ 2 + 1;
3019 ret
= ocfs2_extend_trans(handle
, credits
);
3025 ret
= ocfs2_journal_access(handle
, inode
, prev_bh
,
3026 OCFS2_JOURNAL_ACCESS_WRITE
);
3032 for (i
= 0; i
< bpc
/ 2; i
++, prev_blkno
++, new_blkno
++) {
3033 old_bh
= new_bh
= NULL
;
3034 new_bh
= sb_getblk(inode
->i_sb
, new_blkno
);
3041 ocfs2_set_new_buffer_uptodate(inode
, new_bh
);
3043 ret
= ocfs2_journal_access(handle
, inode
, new_bh
,
3044 OCFS2_JOURNAL_ACCESS_CREATE
);
3051 ret
= ocfs2_read_block(inode
, prev_blkno
, &old_bh
);
3058 memcpy(new_bh
->b_data
, old_bh
->b_data
, blocksize
);
3061 new_xh
= (struct ocfs2_xattr_header
*)new_bh
->b_data
;
3062 new_xh
->xh_num_buckets
= cpu_to_le16(num_buckets
/ 2);
3065 *first_hash
= le32_to_cpu(
3066 new_xh
->xh_entries
[0].xe_name_hash
);
3067 new_first_bh
= new_bh
;
3068 get_bh(new_first_bh
);
3071 ocfs2_journal_dirty(handle
, new_bh
);
3073 if (*header_bh
== old_bh
) {
3075 *header_bh
= new_bh
;
3079 *first_bh
= new_first_bh
;
3086 le16_add_cpu(&xh
->xh_num_buckets
, -(num_buckets
/ 2));
3088 ocfs2_journal_dirty(handle
, prev_bh
);
3091 brelse(new_first_bh
);
3095 static int ocfs2_read_xattr_bucket(struct inode
*inode
,
3097 struct buffer_head
**bhs
,
3101 u16 i
, blk_per_bucket
= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
3104 return ocfs2_read_blocks(inode
, blkno
,
3105 blk_per_bucket
, bhs
, 0);
3107 for (i
= 0; i
< blk_per_bucket
; i
++) {
3108 bhs
[i
] = sb_getblk(inode
->i_sb
, blkno
+ i
);
3109 if (bhs
[i
] == NULL
) {
3114 ocfs2_set_new_buffer_uptodate(inode
, bhs
[i
]);
3121 * Find the suitable pos when we divide a bucket into 2.
3122 * We have to make sure the xattrs with the same hash value exist
3123 * in the same bucket.
3125 * If this ocfs2_xattr_header covers more than one hash value, find a
3126 * place where the hash value changes. Try to find the most even split.
3127 * The most common case is that all entries have different hash values,
3128 * and the first check we make will find a place to split.
3130 static int ocfs2_xattr_find_divide_pos(struct ocfs2_xattr_header
*xh
)
3132 struct ocfs2_xattr_entry
*entries
= xh
->xh_entries
;
3133 int count
= le16_to_cpu(xh
->xh_count
);
3134 int delta
, middle
= count
/ 2;
3137 * We start at the middle. Each step gets farther away in both
3138 * directions. We therefore hit the change in hash value
3139 * nearest to the middle. Note that this loop does not execute for
3142 for (delta
= 0; delta
< middle
; delta
++) {
3143 /* Let's check delta earlier than middle */
3144 if (cmp_xe(&entries
[middle
- delta
- 1],
3145 &entries
[middle
- delta
]))
3146 return middle
- delta
;
3148 /* For even counts, don't walk off the end */
3149 if ((middle
+ delta
+ 1) == count
)
3152 /* Now try delta past middle */
3153 if (cmp_xe(&entries
[middle
+ delta
],
3154 &entries
[middle
+ delta
+ 1]))
3155 return middle
+ delta
+ 1;
3158 /* Every entry had the same hash */
3163 * Move some xattrs in old bucket(blk) to new bucket(new_blk).
3164 * first_hash will record the 1st hash of the new bucket.
3166 * Normally half of the xattrs will be moved. But we have to make
3167 * sure that the xattrs with the same hash value are stored in the
3168 * same bucket. If all the xattrs in this bucket have the same hash
3169 * value, the new bucket will be initialized as an empty one and the
3170 * first_hash will be initialized as (hash_value+1).
3172 static int ocfs2_divide_xattr_bucket(struct inode
*inode
,
3177 int new_bucket_head
)
3180 int count
, start
, len
, name_value_len
= 0, xe_len
, name_offset
= 0;
3181 u16 blk_per_bucket
= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
3182 struct buffer_head
**s_bhs
, **t_bhs
= NULL
;
3183 struct ocfs2_xattr_header
*xh
;
3184 struct ocfs2_xattr_entry
*xe
;
3185 int blocksize
= inode
->i_sb
->s_blocksize
;
3187 mlog(0, "move some of xattrs from bucket %llu to %llu\n",
3188 (unsigned long long)blk
, (unsigned long long)new_blk
);
3190 s_bhs
= kcalloc(blk_per_bucket
, sizeof(struct buffer_head
*), GFP_NOFS
);
3194 ret
= ocfs2_read_xattr_bucket(inode
, blk
, s_bhs
, 0);
3200 ret
= ocfs2_journal_access(handle
, inode
, s_bhs
[0],
3201 OCFS2_JOURNAL_ACCESS_WRITE
);
3207 t_bhs
= kcalloc(blk_per_bucket
, sizeof(struct buffer_head
*), GFP_NOFS
);
3213 ret
= ocfs2_read_xattr_bucket(inode
, new_blk
, t_bhs
, new_bucket_head
);
3219 for (i
= 0; i
< blk_per_bucket
; i
++) {
3220 ret
= ocfs2_journal_access(handle
, inode
, t_bhs
[i
],
3222 OCFS2_JOURNAL_ACCESS_CREATE
:
3223 OCFS2_JOURNAL_ACCESS_WRITE
);
3230 xh
= (struct ocfs2_xattr_header
*)s_bhs
[0]->b_data
;
3231 count
= le16_to_cpu(xh
->xh_count
);
3232 start
= ocfs2_xattr_find_divide_pos(xh
);
3234 if (start
== count
) {
3235 xe
= &xh
->xh_entries
[start
-1];
3238 * initialized a new empty bucket here.
3239 * The hash value is set as one larger than
3240 * that of the last entry in the previous bucket.
3242 for (i
= 0; i
< blk_per_bucket
; i
++)
3243 memset(t_bhs
[i
]->b_data
, 0, blocksize
);
3245 xh
= (struct ocfs2_xattr_header
*)t_bhs
[0]->b_data
;
3246 xh
->xh_free_start
= cpu_to_le16(blocksize
);
3247 xh
->xh_entries
[0].xe_name_hash
= xe
->xe_name_hash
;
3248 le32_add_cpu(&xh
->xh_entries
[0].xe_name_hash
, 1);
3250 goto set_num_buckets
;
3253 /* copy the whole bucket to the new first. */
3254 for (i
= 0; i
< blk_per_bucket
; i
++)
3255 memcpy(t_bhs
[i
]->b_data
, s_bhs
[i
]->b_data
, blocksize
);
3257 /* update the new bucket. */
3258 xh
= (struct ocfs2_xattr_header
*)t_bhs
[0]->b_data
;
3261 * Calculate the total name/value len and xh_free_start for
3262 * the old bucket first.
3264 name_offset
= OCFS2_XATTR_BUCKET_SIZE
;
3266 for (i
= 0; i
< start
; i
++) {
3267 xe
= &xh
->xh_entries
[i
];
3268 xe_len
= OCFS2_XATTR_SIZE(xe
->xe_name_len
);
3269 if (ocfs2_xattr_is_local(xe
))
3271 OCFS2_XATTR_SIZE(le64_to_cpu(xe
->xe_value_size
));
3273 xe_len
+= OCFS2_XATTR_ROOT_SIZE
;
3274 name_value_len
+= xe_len
;
3275 if (le16_to_cpu(xe
->xe_name_offset
) < name_offset
)
3276 name_offset
= le16_to_cpu(xe
->xe_name_offset
);
3280 * Now begin the modification to the new bucket.
3282 * In the new bucket, We just move the xattr entry to the beginning
3283 * and don't touch the name/value. So there will be some holes in the
3284 * bucket, and they will be removed when ocfs2_defrag_xattr_bucket is
3287 xe
= &xh
->xh_entries
[start
];
3288 len
= sizeof(struct ocfs2_xattr_entry
) * (count
- start
);
3289 mlog(0, "mv xattr entry len %d from %d to %d\n", len
,
3290 (int)((char *)xe
- (char *)xh
),
3291 (int)((char *)xh
->xh_entries
- (char *)xh
));
3292 memmove((char *)xh
->xh_entries
, (char *)xe
, len
);
3293 xe
= &xh
->xh_entries
[count
- start
];
3294 len
= sizeof(struct ocfs2_xattr_entry
) * start
;
3295 memset((char *)xe
, 0, len
);
3297 le16_add_cpu(&xh
->xh_count
, -start
);
3298 le16_add_cpu(&xh
->xh_name_value_len
, -name_value_len
);
3300 /* Calculate xh_free_start for the new bucket. */
3301 xh
->xh_free_start
= cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE
);
3302 for (i
= 0; i
< le16_to_cpu(xh
->xh_count
); i
++) {
3303 xe
= &xh
->xh_entries
[i
];
3304 xe_len
= OCFS2_XATTR_SIZE(xe
->xe_name_len
);
3305 if (ocfs2_xattr_is_local(xe
))
3307 OCFS2_XATTR_SIZE(le64_to_cpu(xe
->xe_value_size
));
3309 xe_len
+= OCFS2_XATTR_ROOT_SIZE
;
3310 if (le16_to_cpu(xe
->xe_name_offset
) <
3311 le16_to_cpu(xh
->xh_free_start
))
3312 xh
->xh_free_start
= xe
->xe_name_offset
;
3316 /* set xh->xh_num_buckets for the new xh. */
3317 if (new_bucket_head
)
3318 xh
->xh_num_buckets
= cpu_to_le16(1);
3320 xh
->xh_num_buckets
= 0;
3322 for (i
= 0; i
< blk_per_bucket
; i
++) {
3323 ocfs2_journal_dirty(handle
, t_bhs
[i
]);
3328 /* store the first_hash of the new bucket. */
3330 *first_hash
= le32_to_cpu(xh
->xh_entries
[0].xe_name_hash
);
3333 * Now only update the 1st block of the old bucket. If we
3334 * just added a new empty bucket, there is no need to modify
3340 xh
= (struct ocfs2_xattr_header
*)s_bhs
[0]->b_data
;
3341 memset(&xh
->xh_entries
[start
], 0,
3342 sizeof(struct ocfs2_xattr_entry
) * (count
- start
));
3343 xh
->xh_count
= cpu_to_le16(start
);
3344 xh
->xh_free_start
= cpu_to_le16(name_offset
);
3345 xh
->xh_name_value_len
= cpu_to_le16(name_value_len
);
3347 ocfs2_journal_dirty(handle
, s_bhs
[0]);
3353 for (i
= 0; i
< blk_per_bucket
; i
++)
3359 for (i
= 0; i
< blk_per_bucket
; i
++)
3368 * Copy xattr from one bucket to another bucket.
3370 * The caller must make sure that the journal transaction
3371 * has enough space for journaling.
3373 static int ocfs2_cp_xattr_bucket(struct inode
*inode
,
3380 int blk_per_bucket
= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
3381 int blocksize
= inode
->i_sb
->s_blocksize
;
3382 struct buffer_head
**s_bhs
, **t_bhs
= NULL
;
3384 BUG_ON(s_blkno
== t_blkno
);
3386 mlog(0, "cp bucket %llu to %llu, target is %d\n",
3387 (unsigned long long)s_blkno
, (unsigned long long)t_blkno
,
3390 s_bhs
= kzalloc(sizeof(struct buffer_head
*) * blk_per_bucket
,
3395 ret
= ocfs2_read_xattr_bucket(inode
, s_blkno
, s_bhs
, 0);
3399 t_bhs
= kzalloc(sizeof(struct buffer_head
*) * blk_per_bucket
,
3406 ret
= ocfs2_read_xattr_bucket(inode
, t_blkno
, t_bhs
, t_is_new
);
3410 for (i
= 0; i
< blk_per_bucket
; i
++) {
3411 ret
= ocfs2_journal_access(handle
, inode
, t_bhs
[i
],
3413 OCFS2_JOURNAL_ACCESS_CREATE
:
3414 OCFS2_JOURNAL_ACCESS_WRITE
);
3419 for (i
= 0; i
< blk_per_bucket
; i
++) {
3420 memcpy(t_bhs
[i
]->b_data
, s_bhs
[i
]->b_data
, blocksize
);
3421 ocfs2_journal_dirty(handle
, t_bhs
[i
]);
3426 for (i
= 0; i
< blk_per_bucket
; i
++)
3432 for (i
= 0; i
< blk_per_bucket
; i
++)
3441 * Copy one xattr cluster from src_blk to to_blk.
3442 * The to_blk will become the first bucket header of the cluster, so its
3443 * xh_num_buckets will be initialized as the bucket num in the cluster.
3445 static int ocfs2_cp_xattr_cluster(struct inode
*inode
,
3447 struct buffer_head
*first_bh
,
3452 int i
, ret
, credits
;
3453 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
3454 int bpc
= ocfs2_clusters_to_blocks(inode
->i_sb
, 1);
3455 int num_buckets
= ocfs2_xattr_buckets_per_cluster(osb
);
3456 struct buffer_head
*bh
= NULL
;
3457 struct ocfs2_xattr_header
*xh
;
3458 u64 to_blk_start
= to_blk
;
3460 mlog(0, "cp xattrs from cluster %llu to %llu\n",
3461 (unsigned long long)src_blk
, (unsigned long long)to_blk
);
3464 * We need to update the new cluster and 1 more for the update of
3465 * the 1st bucket of the previous extent rec.
3468 ret
= ocfs2_extend_trans(handle
, credits
);
3474 ret
= ocfs2_journal_access(handle
, inode
, first_bh
,
3475 OCFS2_JOURNAL_ACCESS_WRITE
);
3481 for (i
= 0; i
< num_buckets
; i
++) {
3482 ret
= ocfs2_cp_xattr_bucket(inode
, handle
,
3483 src_blk
, to_blk
, 1);
3489 src_blk
+= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
3490 to_blk
+= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
3493 /* update the old bucket header. */
3494 xh
= (struct ocfs2_xattr_header
*)first_bh
->b_data
;
3495 le16_add_cpu(&xh
->xh_num_buckets
, -num_buckets
);
3497 ocfs2_journal_dirty(handle
, first_bh
);
3499 /* update the new bucket header. */
3500 ret
= ocfs2_read_block(inode
, to_blk_start
, &bh
);
3506 ret
= ocfs2_journal_access(handle
, inode
, bh
,
3507 OCFS2_JOURNAL_ACCESS_WRITE
);
3513 xh
= (struct ocfs2_xattr_header
*)bh
->b_data
;
3514 xh
->xh_num_buckets
= cpu_to_le16(num_buckets
);
3516 ocfs2_journal_dirty(handle
, bh
);
3519 *first_hash
= le32_to_cpu(xh
->xh_entries
[0].xe_name_hash
);
3526 * Move some xattrs in this cluster to the new cluster.
3527 * This function should only be called when bucket size == cluster size.
3528 * Otherwise ocfs2_mv_xattr_bucket_cross_cluster should be used instead.
3530 static int ocfs2_divide_xattr_cluster(struct inode
*inode
,
3536 u16 blk_per_bucket
= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
3537 int ret
, credits
= 2 * blk_per_bucket
;
3539 BUG_ON(OCFS2_XATTR_BUCKET_SIZE
< OCFS2_SB(inode
->i_sb
)->s_clustersize
);
3541 ret
= ocfs2_extend_trans(handle
, credits
);
3547 /* Move half of the xattr in start_blk to the next bucket. */
3548 return ocfs2_divide_xattr_bucket(inode
, handle
, prev_blk
,
3549 new_blk
, first_hash
, 1);
3553 * Move some xattrs from the old cluster to the new one since they are not
3554 * contiguous in ocfs2 xattr tree.
3556 * new_blk starts a new separate cluster, and we will move some xattrs from
3557 * prev_blk to it. v_start will be set as the first name hash value in this
3558 * new cluster so that it can be used as e_cpos during tree insertion and
3559 * don't collide with our original b-tree operations. first_bh and header_bh
3560 * will also be updated since they will be used in ocfs2_extend_xattr_bucket
3561 * to extend the insert bucket.
3563 * The problem is how much xattr should we move to the new one and when should
3564 * we update first_bh and header_bh?
3565 * 1. If cluster size > bucket size, that means the previous cluster has more
3566 * than 1 bucket, so just move half nums of bucket into the new cluster and
3567 * update the first_bh and header_bh if the insert bucket has been moved
3568 * to the new cluster.
3569 * 2. If cluster_size == bucket_size:
3570 * a) If the previous extent rec has more than one cluster and the insert
3571 * place isn't in the last cluster, copy the entire last cluster to the
3572 * new one. This time, we don't need to upate the first_bh and header_bh
3573 * since they will not be moved into the new cluster.
3574 * b) Otherwise, move the bottom half of the xattrs in the last cluster into
3575 * the new one. And we set the extend flag to zero if the insert place is
3576 * moved into the new allocated cluster since no extend is needed.
3578 static int ocfs2_adjust_xattr_cross_cluster(struct inode
*inode
,
3580 struct buffer_head
**first_bh
,
3581 struct buffer_head
**header_bh
,
3589 int bpc
= ocfs2_clusters_to_blocks(inode
->i_sb
, 1);
3591 mlog(0, "adjust xattrs from cluster %llu len %u to %llu\n",
3592 (unsigned long long)prev_blk
, prev_clusters
,
3593 (unsigned long long)new_blk
);
3595 if (ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode
->i_sb
)) > 1)
3596 ret
= ocfs2_mv_xattr_bucket_cross_cluster(inode
,
3605 u64 last_blk
= prev_blk
+ bpc
* (prev_clusters
- 1);
3607 if (prev_clusters
> 1 && (*header_bh
)->b_blocknr
!= last_blk
)
3608 ret
= ocfs2_cp_xattr_cluster(inode
, handle
, *first_bh
,
3612 ret
= ocfs2_divide_xattr_cluster(inode
, handle
,
3616 if ((*header_bh
)->b_blocknr
== last_blk
&& extend
)
3625 * Add a new cluster for xattr storage.
3627 * If the new cluster is contiguous with the previous one, it will be
3628 * appended to the same extent record, and num_clusters will be updated.
3629 * If not, we will insert a new extent for it and move some xattrs in
3630 * the last cluster into the new allocated one.
3631 * We also need to limit the maximum size of a btree leaf, otherwise we'll
3632 * lose the benefits of hashing because we'll have to search large leaves.
3633 * So now the maximum size is OCFS2_MAX_XATTR_TREE_LEAF_SIZE(or clustersize,
3636 * first_bh is the first block of the previous extent rec and header_bh
3637 * indicates the bucket we will insert the new xattrs. They will be updated
3638 * when the header_bh is moved into the new cluster.
3640 static int ocfs2_add_new_xattr_cluster(struct inode
*inode
,
3641 struct buffer_head
*root_bh
,
3642 struct buffer_head
**first_bh
,
3643 struct buffer_head
**header_bh
,
3650 u16 bpc
= ocfs2_clusters_to_blocks(inode
->i_sb
, 1);
3651 u32 prev_clusters
= *num_clusters
;
3652 u32 clusters_to_add
= 1, bit_off
, num_bits
, v_start
= 0;
3654 handle_t
*handle
= NULL
;
3655 struct ocfs2_alloc_context
*data_ac
= NULL
;
3656 struct ocfs2_alloc_context
*meta_ac
= NULL
;
3657 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
3658 struct ocfs2_extent_tree et
;
3660 mlog(0, "Add new xattr cluster for %llu, previous xattr hash = %u, "
3661 "previous xattr blkno = %llu\n",
3662 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
3663 prev_cpos
, (unsigned long long)prev_blkno
);
3665 ocfs2_init_xattr_tree_extent_tree(&et
, inode
, root_bh
);
3667 ret
= ocfs2_lock_allocators(inode
, &et
, clusters_to_add
, 0,
3668 &data_ac
, &meta_ac
);
3674 credits
= ocfs2_calc_extend_credits(osb
->sb
, et
.et_root_el
,
3676 handle
= ocfs2_start_trans(osb
, credits
);
3677 if (IS_ERR(handle
)) {
3678 ret
= PTR_ERR(handle
);
3684 ret
= ocfs2_journal_access(handle
, inode
, root_bh
,
3685 OCFS2_JOURNAL_ACCESS_WRITE
);
3691 ret
= __ocfs2_claim_clusters(osb
, handle
, data_ac
, 1,
3692 clusters_to_add
, &bit_off
, &num_bits
);
3699 BUG_ON(num_bits
> clusters_to_add
);
3701 block
= ocfs2_clusters_to_blocks(osb
->sb
, bit_off
);
3702 mlog(0, "Allocating %u clusters at block %u for xattr in inode %llu\n",
3703 num_bits
, bit_off
, (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
3705 if (prev_blkno
+ prev_clusters
* bpc
== block
&&
3706 (prev_clusters
+ num_bits
) << osb
->s_clustersize_bits
<=
3707 OCFS2_MAX_XATTR_TREE_LEAF_SIZE
) {
3709 * If this cluster is contiguous with the old one and
3710 * adding this new cluster, we don't surpass the limit of
3711 * OCFS2_MAX_XATTR_TREE_LEAF_SIZE, cool. We will let it be
3712 * initialized and used like other buckets in the previous
3714 * So add it as a contiguous one. The caller will handle
3717 v_start
= prev_cpos
+ prev_clusters
;
3718 *num_clusters
= prev_clusters
+ num_bits
;
3719 mlog(0, "Add contiguous %u clusters to previous extent rec.\n",
3722 ret
= ocfs2_adjust_xattr_cross_cluster(inode
,
3737 if (handle
->h_buffer_credits
< credits
) {
3739 * The journal has been restarted before, and don't
3740 * have enough space for the insertion, so extend it
3743 ret
= ocfs2_extend_trans(handle
, credits
);
3749 mlog(0, "Insert %u clusters at block %llu for xattr at %u\n",
3750 num_bits
, (unsigned long long)block
, v_start
);
3751 ret
= ocfs2_insert_extent(osb
, handle
, inode
, &et
, v_start
, block
,
3752 num_bits
, 0, meta_ac
);
3758 ret
= ocfs2_journal_dirty(handle
, root_bh
);
3766 ocfs2_commit_trans(osb
, handle
);
3768 ocfs2_free_alloc_context(data_ac
);
3770 ocfs2_free_alloc_context(meta_ac
);
3776 * Extend a new xattr bucket and move xattrs to the end one by one until
3777 * We meet with start_bh. Only move half of the xattrs to the bucket after it.
3779 static int ocfs2_extend_xattr_bucket(struct inode
*inode
,
3780 struct buffer_head
*first_bh
,
3781 struct buffer_head
*start_bh
,
3785 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
3786 u16 blk_per_bucket
= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
3787 u64 start_blk
= start_bh
->b_blocknr
, end_blk
;
3788 u32 num_buckets
= num_clusters
* ocfs2_xattr_buckets_per_cluster(osb
);
3790 struct ocfs2_xattr_header
*first_xh
=
3791 (struct ocfs2_xattr_header
*)first_bh
->b_data
;
3792 u16 bucket
= le16_to_cpu(first_xh
->xh_num_buckets
);
3794 mlog(0, "extend xattr bucket in %llu, xattr extend rec starting "
3795 "from %llu, len = %u\n", (unsigned long long)start_blk
,
3796 (unsigned long long)first_bh
->b_blocknr
, num_clusters
);
3798 BUG_ON(bucket
>= num_buckets
);
3800 end_blk
= first_bh
->b_blocknr
+ (bucket
- 1) * blk_per_bucket
;
3803 * We will touch all the buckets after the start_bh(include it).
3804 * Add one more bucket and modify the first_bh.
3806 credits
= end_blk
- start_blk
+ 2 * blk_per_bucket
+ 1;
3807 handle
= ocfs2_start_trans(osb
, credits
);
3808 if (IS_ERR(handle
)) {
3809 ret
= PTR_ERR(handle
);
3815 ret
= ocfs2_journal_access(handle
, inode
, first_bh
,
3816 OCFS2_JOURNAL_ACCESS_WRITE
);
3822 while (end_blk
!= start_blk
) {
3823 ret
= ocfs2_cp_xattr_bucket(inode
, handle
, end_blk
,
3824 end_blk
+ blk_per_bucket
, 0);
3827 end_blk
-= blk_per_bucket
;
3830 /* Move half of the xattr in start_blk to the next bucket. */
3831 ret
= ocfs2_divide_xattr_bucket(inode
, handle
, start_blk
,
3832 start_blk
+ blk_per_bucket
, NULL
, 0);
3834 le16_add_cpu(&first_xh
->xh_num_buckets
, 1);
3835 ocfs2_journal_dirty(handle
, first_bh
);
3838 ocfs2_commit_trans(osb
, handle
);
3844 * Add new xattr bucket in an extent record and adjust the buckets accordingly.
3845 * xb_bh is the ocfs2_xattr_block.
3846 * We will move all the buckets starting from header_bh to the next place. As
3847 * for this one, half num of its xattrs will be moved to the next one.
3849 * We will allocate a new cluster if current cluster is full and adjust
3850 * header_bh and first_bh if the insert place is moved to the new cluster.
3852 static int ocfs2_add_new_xattr_bucket(struct inode
*inode
,
3853 struct buffer_head
*xb_bh
,
3854 struct buffer_head
*header_bh
)
3856 struct ocfs2_xattr_header
*first_xh
= NULL
;
3857 struct buffer_head
*first_bh
= NULL
;
3858 struct ocfs2_xattr_block
*xb
=
3859 (struct ocfs2_xattr_block
*)xb_bh
->b_data
;
3860 struct ocfs2_xattr_tree_root
*xb_root
= &xb
->xb_attrs
.xb_root
;
3861 struct ocfs2_extent_list
*el
= &xb_root
->xt_list
;
3862 struct ocfs2_xattr_header
*xh
=
3863 (struct ocfs2_xattr_header
*)header_bh
->b_data
;
3864 u32 name_hash
= le32_to_cpu(xh
->xh_entries
[0].xe_name_hash
);
3865 struct super_block
*sb
= inode
->i_sb
;
3866 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
3867 int ret
, num_buckets
, extend
= 1;
3869 u32 e_cpos
, num_clusters
;
3871 mlog(0, "Add new xattr bucket starting form %llu\n",
3872 (unsigned long long)header_bh
->b_blocknr
);
3875 * Add refrence for header_bh here because it may be
3876 * changed in ocfs2_add_new_xattr_cluster and we need
3877 * to free it in the end.
3881 ret
= ocfs2_xattr_get_rec(inode
, name_hash
, &p_blkno
, &e_cpos
,
3888 ret
= ocfs2_read_block(inode
, p_blkno
, &first_bh
);
3894 num_buckets
= ocfs2_xattr_buckets_per_cluster(osb
) * num_clusters
;
3895 first_xh
= (struct ocfs2_xattr_header
*)first_bh
->b_data
;
3897 if (num_buckets
== le16_to_cpu(first_xh
->xh_num_buckets
)) {
3898 ret
= ocfs2_add_new_xattr_cluster(inode
,
3913 ret
= ocfs2_extend_xattr_bucket(inode
,
3925 static inline char *ocfs2_xattr_bucket_get_val(struct inode
*inode
,
3926 struct ocfs2_xattr_bucket
*bucket
,
3929 int block_off
= offs
>> inode
->i_sb
->s_blocksize_bits
;
3931 offs
= offs
% inode
->i_sb
->s_blocksize
;
3932 return bucket
->bhs
[block_off
]->b_data
+ offs
;
3936 * Handle the normal xattr set, including replace, delete and new.
3938 * Note: "local" indicates the real data's locality. So we can't
3939 * just its bucket locality by its length.
3941 static void ocfs2_xattr_set_entry_normal(struct inode
*inode
,
3942 struct ocfs2_xattr_info
*xi
,
3943 struct ocfs2_xattr_search
*xs
,
3947 struct ocfs2_xattr_entry
*last
, *xe
;
3948 int name_len
= strlen(xi
->name
);
3949 struct ocfs2_xattr_header
*xh
= xs
->header
;
3950 u16 count
= le16_to_cpu(xh
->xh_count
), start
;
3951 size_t blocksize
= inode
->i_sb
->s_blocksize
;
3953 size_t offs
, size
, new_size
;
3955 last
= &xh
->xh_entries
[count
];
3956 if (!xs
->not_found
) {
3958 offs
= le16_to_cpu(xe
->xe_name_offset
);
3959 if (ocfs2_xattr_is_local(xe
))
3960 size
= OCFS2_XATTR_SIZE(name_len
) +
3961 OCFS2_XATTR_SIZE(le64_to_cpu(xe
->xe_value_size
));
3963 size
= OCFS2_XATTR_SIZE(name_len
) +
3964 OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE
);
3967 * If the new value will be stored outside, xi->value has been
3968 * initalized as an empty ocfs2_xattr_value_root, and the same
3969 * goes with xi->value_len, so we can set new_size safely here.
3970 * See ocfs2_xattr_set_in_bucket.
3972 new_size
= OCFS2_XATTR_SIZE(name_len
) +
3973 OCFS2_XATTR_SIZE(xi
->value_len
);
3975 le16_add_cpu(&xh
->xh_name_value_len
, -size
);
3977 if (new_size
> size
)
3978 goto set_new_name_value
;
3980 /* Now replace the old value with new one. */
3982 xe
->xe_value_size
= cpu_to_le64(xi
->value_len
);
3984 xe
->xe_value_size
= 0;
3986 val
= ocfs2_xattr_bucket_get_val(inode
,
3988 memset(val
+ OCFS2_XATTR_SIZE(name_len
), 0,
3989 size
- OCFS2_XATTR_SIZE(name_len
));
3990 if (OCFS2_XATTR_SIZE(xi
->value_len
) > 0)
3991 memcpy(val
+ OCFS2_XATTR_SIZE(name_len
),
3992 xi
->value
, xi
->value_len
);
3994 le16_add_cpu(&xh
->xh_name_value_len
, new_size
);
3995 ocfs2_xattr_set_local(xe
, local
);
3999 * Remove the old entry if there is more than one.
4000 * We don't remove the last entry so that we can
4001 * use it to indicate the hash value of the empty
4005 le16_add_cpu(&xh
->xh_count
, -1);
4008 (void *)last
- (void *)xe
);
4010 sizeof(struct ocfs2_xattr_entry
));
4013 cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE
);
4018 /* find a new entry for insert. */
4019 int low
= 0, high
= count
- 1, tmp
;
4020 struct ocfs2_xattr_entry
*tmp_xe
;
4022 while (low
<= high
&& count
) {
4023 tmp
= (low
+ high
) / 2;
4024 tmp_xe
= &xh
->xh_entries
[tmp
];
4026 if (name_hash
> le32_to_cpu(tmp_xe
->xe_name_hash
))
4028 else if (name_hash
<
4029 le32_to_cpu(tmp_xe
->xe_name_hash
))
4037 xe
= &xh
->xh_entries
[low
];
4039 memmove(xe
+ 1, xe
, (void *)last
- (void *)xe
);
4041 le16_add_cpu(&xh
->xh_count
, 1);
4042 memset(xe
, 0, sizeof(struct ocfs2_xattr_entry
));
4043 xe
->xe_name_hash
= cpu_to_le32(name_hash
);
4044 xe
->xe_name_len
= name_len
;
4045 ocfs2_xattr_set_type(xe
, xi
->name_index
);
4049 /* Insert the new name+value. */
4050 size
= OCFS2_XATTR_SIZE(name_len
) + OCFS2_XATTR_SIZE(xi
->value_len
);
4053 * We must make sure that the name/value pair
4054 * exists in the same block.
4056 offs
= le16_to_cpu(xh
->xh_free_start
);
4057 start
= offs
- size
;
4059 if (start
>> inode
->i_sb
->s_blocksize_bits
!=
4060 (offs
- 1) >> inode
->i_sb
->s_blocksize_bits
) {
4061 offs
= offs
- offs
% blocksize
;
4062 xh
->xh_free_start
= cpu_to_le16(offs
);
4065 val
= ocfs2_xattr_bucket_get_val(inode
,
4066 &xs
->bucket
, offs
- size
);
4067 xe
->xe_name_offset
= cpu_to_le16(offs
- size
);
4069 memset(val
, 0, size
);
4070 memcpy(val
, xi
->name
, name_len
);
4071 memcpy(val
+ OCFS2_XATTR_SIZE(name_len
), xi
->value
, xi
->value_len
);
4073 xe
->xe_value_size
= cpu_to_le64(xi
->value_len
);
4074 ocfs2_xattr_set_local(xe
, local
);
4076 le16_add_cpu(&xh
->xh_free_start
, -size
);
4077 le16_add_cpu(&xh
->xh_name_value_len
, size
);
4082 static int ocfs2_xattr_bucket_handle_journal(struct inode
*inode
,
4084 struct ocfs2_xattr_search
*xs
,
4085 struct buffer_head
**bhs
,
4088 int ret
= 0, off
, block_off
;
4089 struct ocfs2_xattr_entry
*xe
= xs
->here
;
4092 * First calculate all the blocks we should journal_access
4093 * and journal_dirty. The first block should always be touched.
4095 ret
= ocfs2_journal_dirty(handle
, bhs
[0]);
4099 /* calc the data. */
4100 off
= le16_to_cpu(xe
->xe_name_offset
);
4101 block_off
= off
>> inode
->i_sb
->s_blocksize_bits
;
4102 ret
= ocfs2_journal_dirty(handle
, bhs
[block_off
]);
4110 * Set the xattr entry in the specified bucket.
4111 * The bucket is indicated by xs->bucket and it should have the enough
4112 * space for the xattr insertion.
4114 static int ocfs2_xattr_set_entry_in_bucket(struct inode
*inode
,
4115 struct ocfs2_xattr_info
*xi
,
4116 struct ocfs2_xattr_search
*xs
,
4121 handle_t
*handle
= NULL
;
4122 u16 blk_per_bucket
= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
4123 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
4125 mlog(0, "Set xattr entry len = %lu index = %d in bucket %llu\n",
4126 (unsigned long)xi
->value_len
, xi
->name_index
,
4127 (unsigned long long)xs
->bucket
.bhs
[0]->b_blocknr
);
4129 if (!xs
->bucket
.bhs
[1]) {
4130 ret
= ocfs2_read_blocks(inode
,
4131 xs
->bucket
.bhs
[0]->b_blocknr
+ 1,
4132 blk_per_bucket
- 1, &xs
->bucket
.bhs
[1],
4140 handle
= ocfs2_start_trans(osb
, blk_per_bucket
);
4141 if (IS_ERR(handle
)) {
4142 ret
= PTR_ERR(handle
);
4148 for (i
= 0; i
< blk_per_bucket
; i
++) {
4149 ret
= ocfs2_journal_access(handle
, inode
, xs
->bucket
.bhs
[i
],
4150 OCFS2_JOURNAL_ACCESS_WRITE
);
4157 ocfs2_xattr_set_entry_normal(inode
, xi
, xs
, name_hash
, local
);
4159 /*Only dirty the blocks we have touched in set xattr. */
4160 ret
= ocfs2_xattr_bucket_handle_journal(inode
, handle
, xs
,
4161 xs
->bucket
.bhs
, blk_per_bucket
);
4165 ocfs2_commit_trans(osb
, handle
);
4170 static int ocfs2_xattr_value_update_size(struct inode
*inode
,
4171 struct buffer_head
*xe_bh
,
4172 struct ocfs2_xattr_entry
*xe
,
4176 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
4177 handle_t
*handle
= NULL
;
4179 handle
= ocfs2_start_trans(osb
, 1);
4180 if (IS_ERR(handle
)) {
4186 ret
= ocfs2_journal_access(handle
, inode
, xe_bh
,
4187 OCFS2_JOURNAL_ACCESS_WRITE
);
4193 xe
->xe_value_size
= cpu_to_le64(new_size
);
4195 ret
= ocfs2_journal_dirty(handle
, xe_bh
);
4200 ocfs2_commit_trans(osb
, handle
);
4206 * Truncate the specified xe_off entry in xattr bucket.
4207 * bucket is indicated by header_bh and len is the new length.
4208 * Both the ocfs2_xattr_value_root and the entry will be updated here.
4210 * Copy the new updated xe and xe_value_root to new_xe and new_xv if needed.
4212 static int ocfs2_xattr_bucket_value_truncate(struct inode
*inode
,
4213 struct buffer_head
*header_bh
,
4219 struct buffer_head
*value_bh
= NULL
;
4220 struct ocfs2_xattr_value_root
*xv
;
4221 struct ocfs2_xattr_entry
*xe
;
4222 struct ocfs2_xattr_header
*xh
=
4223 (struct ocfs2_xattr_header
*)header_bh
->b_data
;
4224 size_t blocksize
= inode
->i_sb
->s_blocksize
;
4226 xe
= &xh
->xh_entries
[xe_off
];
4228 BUG_ON(!xe
|| ocfs2_xattr_is_local(xe
));
4230 offset
= le16_to_cpu(xe
->xe_name_offset
) +
4231 OCFS2_XATTR_SIZE(xe
->xe_name_len
);
4233 value_blk
= offset
/ blocksize
;
4235 /* We don't allow ocfs2_xattr_value to be stored in different block. */
4236 BUG_ON(value_blk
!= (offset
+ OCFS2_XATTR_ROOT_SIZE
- 1) / blocksize
);
4237 value_blk
+= header_bh
->b_blocknr
;
4239 ret
= ocfs2_read_block(inode
, value_blk
, &value_bh
);
4245 xv
= (struct ocfs2_xattr_value_root
*)
4246 (value_bh
->b_data
+ offset
% blocksize
);
4248 mlog(0, "truncate %u in xattr bucket %llu to %d bytes.\n",
4249 xe_off
, (unsigned long long)header_bh
->b_blocknr
, len
);
4250 ret
= ocfs2_xattr_value_truncate(inode
, value_bh
, xv
, len
);
4256 ret
= ocfs2_xattr_value_update_size(inode
, header_bh
, xe
, len
);
4267 static int ocfs2_xattr_bucket_value_truncate_xs(struct inode
*inode
,
4268 struct ocfs2_xattr_search
*xs
,
4272 struct ocfs2_xattr_entry
*xe
= xs
->here
;
4273 struct ocfs2_xattr_header
*xh
= (struct ocfs2_xattr_header
*)xs
->base
;
4275 BUG_ON(!xs
->bucket
.bhs
[0] || !xe
|| ocfs2_xattr_is_local(xe
));
4277 offset
= xe
- xh
->xh_entries
;
4278 ret
= ocfs2_xattr_bucket_value_truncate(inode
, xs
->bucket
.bhs
[0],
4286 static int ocfs2_xattr_bucket_set_value_outside(struct inode
*inode
,
4287 struct ocfs2_xattr_search
*xs
,
4292 struct ocfs2_xattr_value_root
*xv
;
4293 struct ocfs2_xattr_entry
*xe
= xs
->here
;
4295 BUG_ON(!xs
->base
|| !xe
|| ocfs2_xattr_is_local(xe
));
4297 offset
= le16_to_cpu(xe
->xe_name_offset
) +
4298 OCFS2_XATTR_SIZE(xe
->xe_name_len
);
4300 xv
= (struct ocfs2_xattr_value_root
*)(xs
->base
+ offset
);
4302 return __ocfs2_xattr_set_value_outside(inode
, xv
, val
, value_len
);
4305 static int ocfs2_rm_xattr_cluster(struct inode
*inode
,
4306 struct buffer_head
*root_bh
,
4312 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
4313 struct inode
*tl_inode
= osb
->osb_tl_inode
;
4315 struct ocfs2_xattr_block
*xb
=
4316 (struct ocfs2_xattr_block
*)root_bh
->b_data
;
4317 struct ocfs2_alloc_context
*meta_ac
= NULL
;
4318 struct ocfs2_cached_dealloc_ctxt dealloc
;
4319 struct ocfs2_extent_tree et
;
4321 ocfs2_init_xattr_tree_extent_tree(&et
, inode
, root_bh
);
4323 ocfs2_init_dealloc_ctxt(&dealloc
);
4325 mlog(0, "rm xattr extent rec at %u len = %u, start from %llu\n",
4326 cpos
, len
, (unsigned long long)blkno
);
4328 ocfs2_remove_xattr_clusters_from_cache(inode
, blkno
, len
);
4330 ret
= ocfs2_lock_allocators(inode
, &et
, 0, 1, NULL
, &meta_ac
);
4336 mutex_lock(&tl_inode
->i_mutex
);
4338 if (ocfs2_truncate_log_needs_flush(osb
)) {
4339 ret
= __ocfs2_flush_truncate_log(osb
);
4346 handle
= ocfs2_start_trans(osb
, OCFS2_REMOVE_EXTENT_CREDITS
);
4347 if (IS_ERR(handle
)) {
4353 ret
= ocfs2_journal_access(handle
, inode
, root_bh
,
4354 OCFS2_JOURNAL_ACCESS_WRITE
);
4360 ret
= ocfs2_remove_extent(inode
, &et
, cpos
, len
, handle
, meta_ac
,
4367 le32_add_cpu(&xb
->xb_attrs
.xb_root
.xt_clusters
, -len
);
4369 ret
= ocfs2_journal_dirty(handle
, root_bh
);
4375 ret
= ocfs2_truncate_log_append(osb
, handle
, blkno
, len
);
4380 ocfs2_commit_trans(osb
, handle
);
4382 ocfs2_schedule_truncate_log_flush(osb
, 1);
4384 mutex_unlock(&tl_inode
->i_mutex
);
4387 ocfs2_free_alloc_context(meta_ac
);
4389 ocfs2_run_deallocs(osb
, &dealloc
);
4394 static void ocfs2_xattr_bucket_remove_xs(struct inode
*inode
,
4395 struct ocfs2_xattr_search
*xs
)
4397 handle_t
*handle
= NULL
;
4398 struct ocfs2_xattr_header
*xh
= xs
->bucket
.xh
;
4399 struct ocfs2_xattr_entry
*last
= &xh
->xh_entries
[
4400 le16_to_cpu(xh
->xh_count
) - 1];
4403 handle
= ocfs2_start_trans((OCFS2_SB(inode
->i_sb
)), 1);
4404 if (IS_ERR(handle
)) {
4405 ret
= PTR_ERR(handle
);
4410 ret
= ocfs2_journal_access(handle
, inode
, xs
->bucket
.bhs
[0],
4411 OCFS2_JOURNAL_ACCESS_WRITE
);
4417 /* Remove the old entry. */
4418 memmove(xs
->here
, xs
->here
+ 1,
4419 (void *)last
- (void *)xs
->here
);
4420 memset(last
, 0, sizeof(struct ocfs2_xattr_entry
));
4421 le16_add_cpu(&xh
->xh_count
, -1);
4423 ret
= ocfs2_journal_dirty(handle
, xs
->bucket
.bhs
[0]);
4427 ocfs2_commit_trans(OCFS2_SB(inode
->i_sb
), handle
);
4431 * Set the xattr name/value in the bucket specified in xs.
4433 * As the new value in xi may be stored in the bucket or in an outside cluster,
4434 * we divide the whole process into 3 steps:
4435 * 1. insert name/value in the bucket(ocfs2_xattr_set_entry_in_bucket)
4436 * 2. truncate of the outside cluster(ocfs2_xattr_bucket_value_truncate_xs)
4437 * 3. Set the value to the outside cluster(ocfs2_xattr_bucket_set_value_outside)
4438 * 4. If the clusters for the new outside value can't be allocated, we need
4439 * to free the xattr we allocated in set.
4441 static int ocfs2_xattr_set_in_bucket(struct inode
*inode
,
4442 struct ocfs2_xattr_info
*xi
,
4443 struct ocfs2_xattr_search
*xs
)
4447 char *val
= (char *)xi
->value
;
4448 struct ocfs2_xattr_entry
*xe
= xs
->here
;
4449 u32 name_hash
= ocfs2_xattr_name_hash(inode
, xi
->name
,
4452 if (!xs
->not_found
&& !ocfs2_xattr_is_local(xe
)) {
4454 * We need to truncate the xattr storage first.
4456 * If both the old and new value are stored to
4457 * outside block, we only need to truncate
4458 * the storage and then set the value outside.
4460 * If the new value should be stored within block,
4461 * we should free all the outside block first and
4462 * the modification to the xattr block will be done
4463 * by following steps.
4465 if (xi
->value_len
> OCFS2_XATTR_INLINE_SIZE
)
4466 value_len
= xi
->value_len
;
4470 ret
= ocfs2_xattr_bucket_value_truncate_xs(inode
, xs
,
4476 goto set_value_outside
;
4479 value_len
= xi
->value_len
;
4480 /* So we have to handle the inside block change now. */
4481 if (value_len
> OCFS2_XATTR_INLINE_SIZE
) {
4483 * If the new value will be stored outside of block,
4484 * initalize a new empty value root and insert it first.
4487 xi
->value
= &def_xv
;
4488 xi
->value_len
= OCFS2_XATTR_ROOT_SIZE
;
4491 ret
= ocfs2_xattr_set_entry_in_bucket(inode
, xi
, xs
, name_hash
, local
);
4497 if (value_len
<= OCFS2_XATTR_INLINE_SIZE
)
4500 /* allocate the space now for the outside block storage. */
4501 ret
= ocfs2_xattr_bucket_value_truncate_xs(inode
, xs
,
4506 if (xs
->not_found
) {
4508 * We can't allocate enough clusters for outside
4509 * storage and we have allocated xattr already,
4510 * so need to remove it.
4512 ocfs2_xattr_bucket_remove_xs(inode
, xs
);
4518 ret
= ocfs2_xattr_bucket_set_value_outside(inode
, xs
, val
, value_len
);
4524 * check whether the xattr bucket is filled up with the same hash value.
4525 * If we want to insert the xattr with the same hash, return -ENOSPC.
4526 * If we want to insert a xattr with different hash value, go ahead
4527 * and ocfs2_divide_xattr_bucket will handle this.
4529 static int ocfs2_check_xattr_bucket_collision(struct inode
*inode
,
4530 struct ocfs2_xattr_bucket
*bucket
,
4533 struct ocfs2_xattr_header
*xh
= bucket
->xh
;
4534 u32 name_hash
= ocfs2_xattr_name_hash(inode
, name
, strlen(name
));
4536 if (name_hash
!= le32_to_cpu(xh
->xh_entries
[0].xe_name_hash
))
4539 if (xh
->xh_entries
[le16_to_cpu(xh
->xh_count
) - 1].xe_name_hash
==
4540 xh
->xh_entries
[0].xe_name_hash
) {
4541 mlog(ML_ERROR
, "Too much hash collision in xattr bucket %llu, "
4543 (unsigned long long)bucket
->bhs
[0]->b_blocknr
,
4544 le32_to_cpu(xh
->xh_entries
[0].xe_name_hash
));
4551 static int ocfs2_xattr_set_entry_index_block(struct inode
*inode
,
4552 struct ocfs2_xattr_info
*xi
,
4553 struct ocfs2_xattr_search
*xs
)
4555 struct ocfs2_xattr_header
*xh
;
4556 struct ocfs2_xattr_entry
*xe
;
4557 u16 count
, header_size
, xh_free_start
;
4558 int i
, free
, max_free
, need
, old
;
4559 size_t value_size
= 0, name_len
= strlen(xi
->name
);
4560 size_t blocksize
= inode
->i_sb
->s_blocksize
;
4561 int ret
, allocation
= 0;
4562 u16 blk_per_bucket
= ocfs2_blocks_per_xattr_bucket(inode
->i_sb
);
4564 mlog_entry("Set xattr %s in xattr index block\n", xi
->name
);
4568 count
= le16_to_cpu(xh
->xh_count
);
4569 xh_free_start
= le16_to_cpu(xh
->xh_free_start
);
4570 header_size
= sizeof(struct ocfs2_xattr_header
) +
4571 count
* sizeof(struct ocfs2_xattr_entry
);
4572 max_free
= OCFS2_XATTR_BUCKET_SIZE
-
4573 le16_to_cpu(xh
->xh_name_value_len
) - header_size
;
4575 mlog_bug_on_msg(header_size
> blocksize
, "bucket %llu has header size "
4576 "of %u which exceed block size\n",
4577 (unsigned long long)xs
->bucket
.bhs
[0]->b_blocknr
,
4580 if (xi
->value
&& xi
->value_len
> OCFS2_XATTR_INLINE_SIZE
)
4581 value_size
= OCFS2_XATTR_ROOT_SIZE
;
4583 value_size
= OCFS2_XATTR_SIZE(xi
->value_len
);
4586 need
= sizeof(struct ocfs2_xattr_entry
) +
4587 OCFS2_XATTR_SIZE(name_len
) + value_size
;
4589 need
= value_size
+ OCFS2_XATTR_SIZE(name_len
);
4592 * We only replace the old value if the new length is smaller
4593 * than the old one. Otherwise we will allocate new space in the
4594 * bucket to store it.
4597 if (ocfs2_xattr_is_local(xe
))
4598 old
= OCFS2_XATTR_SIZE(le64_to_cpu(xe
->xe_value_size
));
4600 old
= OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE
);
4602 if (old
>= value_size
)
4606 free
= xh_free_start
- header_size
;
4608 * We need to make sure the new name/value pair
4609 * can exist in the same block.
4611 if (xh_free_start
% blocksize
< need
)
4612 free
-= xh_free_start
% blocksize
;
4614 mlog(0, "xs->not_found = %d, in xattr bucket %llu: free = %d, "
4615 "need = %d, max_free = %d, xh_free_start = %u, xh_name_value_len ="
4616 " %u\n", xs
->not_found
,
4617 (unsigned long long)xs
->bucket
.bhs
[0]->b_blocknr
,
4618 free
, need
, max_free
, le16_to_cpu(xh
->xh_free_start
),
4619 le16_to_cpu(xh
->xh_name_value_len
));
4621 if (free
< need
|| count
== ocfs2_xattr_max_xe_in_bucket(inode
->i_sb
)) {
4622 if (need
<= max_free
&&
4623 count
< ocfs2_xattr_max_xe_in_bucket(inode
->i_sb
)) {
4625 * We can create the space by defragment. Since only the
4626 * name/value will be moved, the xe shouldn't be changed
4629 ret
= ocfs2_defrag_xattr_bucket(inode
, &xs
->bucket
);
4635 xh_free_start
= le16_to_cpu(xh
->xh_free_start
);
4636 free
= xh_free_start
- header_size
;
4637 if (xh_free_start
% blocksize
< need
)
4638 free
-= xh_free_start
% blocksize
;
4643 mlog(0, "Can't get enough space for xattr insert by "
4644 "defragment. Need %u bytes, but we have %d, so "
4645 "allocate new bucket for it.\n", need
, free
);
4649 * We have to add new buckets or clusters and one
4650 * allocation should leave us enough space for insert.
4655 * We do not allow for overlapping ranges between buckets. And
4656 * the maximum number of collisions we will allow for then is
4657 * one bucket's worth, so check it here whether we need to
4658 * add a new bucket for the insert.
4660 ret
= ocfs2_check_xattr_bucket_collision(inode
,
4668 ret
= ocfs2_add_new_xattr_bucket(inode
,
4676 for (i
= 0; i
< blk_per_bucket
; i
++)
4677 brelse(xs
->bucket
.bhs
[i
]);
4679 memset(&xs
->bucket
, 0, sizeof(xs
->bucket
));
4681 ret
= ocfs2_xattr_index_block_find(inode
, xs
->xattr_bh
,
4684 if (ret
&& ret
!= -ENODATA
)
4686 xs
->not_found
= ret
;
4692 ret
= ocfs2_xattr_set_in_bucket(inode
, xi
, xs
);
4698 static int ocfs2_delete_xattr_in_bucket(struct inode
*inode
,
4699 struct ocfs2_xattr_bucket
*bucket
,
4703 struct ocfs2_xattr_header
*xh
= bucket
->xh
;
4705 struct ocfs2_xattr_entry
*xe
;
4707 for (i
= 0; i
< le16_to_cpu(xh
->xh_count
); i
++) {
4708 xe
= &xh
->xh_entries
[i
];
4709 if (ocfs2_xattr_is_local(xe
))
4712 ret
= ocfs2_xattr_bucket_value_truncate(inode
,
4724 static int ocfs2_delete_xattr_index_block(struct inode
*inode
,
4725 struct buffer_head
*xb_bh
)
4727 struct ocfs2_xattr_block
*xb
=
4728 (struct ocfs2_xattr_block
*)xb_bh
->b_data
;
4729 struct ocfs2_extent_list
*el
= &xb
->xb_attrs
.xb_root
.xt_list
;
4731 u32 name_hash
= UINT_MAX
, e_cpos
, num_clusters
;
4734 if (le16_to_cpu(el
->l_next_free_rec
) == 0)
4737 while (name_hash
> 0) {
4738 ret
= ocfs2_xattr_get_rec(inode
, name_hash
, &p_blkno
,
4739 &e_cpos
, &num_clusters
, el
);
4745 ret
= ocfs2_iterate_xattr_buckets(inode
, p_blkno
, num_clusters
,
4746 ocfs2_delete_xattr_in_bucket
,
4753 ret
= ocfs2_rm_xattr_cluster(inode
, xb_bh
,
4754 p_blkno
, e_cpos
, num_clusters
);
4763 name_hash
= e_cpos
- 1;
4771 * 'trusted' attributes support
4773 static size_t ocfs2_xattr_trusted_list(struct inode
*inode
, char *list
,
4774 size_t list_size
, const char *name
,
4777 const size_t prefix_len
= XATTR_TRUSTED_PREFIX_LEN
;
4778 const size_t total_len
= prefix_len
+ name_len
+ 1;
4780 if (list
&& total_len
<= list_size
) {
4781 memcpy(list
, XATTR_TRUSTED_PREFIX
, prefix_len
);
4782 memcpy(list
+ prefix_len
, name
, name_len
);
4783 list
[prefix_len
+ name_len
] = '\0';
4788 static int ocfs2_xattr_trusted_get(struct inode
*inode
, const char *name
,
4789 void *buffer
, size_t size
)
4791 if (strcmp(name
, "") == 0)
4793 return ocfs2_xattr_get(inode
, OCFS2_XATTR_INDEX_TRUSTED
, name
,
4797 static int ocfs2_xattr_trusted_set(struct inode
*inode
, const char *name
,
4798 const void *value
, size_t size
, int flags
)
4800 if (strcmp(name
, "") == 0)
4803 return ocfs2_xattr_set(inode
, OCFS2_XATTR_INDEX_TRUSTED
, name
, value
,
4807 struct xattr_handler ocfs2_xattr_trusted_handler
= {
4808 .prefix
= XATTR_TRUSTED_PREFIX
,
4809 .list
= ocfs2_xattr_trusted_list
,
4810 .get
= ocfs2_xattr_trusted_get
,
4811 .set
= ocfs2_xattr_trusted_set
,
4815 * 'user' attributes support
4817 static size_t ocfs2_xattr_user_list(struct inode
*inode
, char *list
,
4818 size_t list_size
, const char *name
,
4821 const size_t prefix_len
= XATTR_USER_PREFIX_LEN
;
4822 const size_t total_len
= prefix_len
+ name_len
+ 1;
4823 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
4825 if (osb
->s_mount_opt
& OCFS2_MOUNT_NOUSERXATTR
)
4828 if (list
&& total_len
<= list_size
) {
4829 memcpy(list
, XATTR_USER_PREFIX
, prefix_len
);
4830 memcpy(list
+ prefix_len
, name
, name_len
);
4831 list
[prefix_len
+ name_len
] = '\0';
4836 static int ocfs2_xattr_user_get(struct inode
*inode
, const char *name
,
4837 void *buffer
, size_t size
)
4839 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
4841 if (strcmp(name
, "") == 0)
4843 if (osb
->s_mount_opt
& OCFS2_MOUNT_NOUSERXATTR
)
4845 return ocfs2_xattr_get(inode
, OCFS2_XATTR_INDEX_USER
, name
,
4849 static int ocfs2_xattr_user_set(struct inode
*inode
, const char *name
,
4850 const void *value
, size_t size
, int flags
)
4852 struct ocfs2_super
*osb
= OCFS2_SB(inode
->i_sb
);
4854 if (strcmp(name
, "") == 0)
4856 if (osb
->s_mount_opt
& OCFS2_MOUNT_NOUSERXATTR
)
4859 return ocfs2_xattr_set(inode
, OCFS2_XATTR_INDEX_USER
, name
, value
,
4863 struct xattr_handler ocfs2_xattr_user_handler
= {
4864 .prefix
= XATTR_USER_PREFIX
,
4865 .list
= ocfs2_xattr_user_list
,
4866 .get
= ocfs2_xattr_user_get
,
4867 .set
= ocfs2_xattr_user_set
,