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>
38 #include <linux/security.h>
40 #define MLOG_MASK_PREFIX ML_XATTR
41 #include <cluster/masklog.h>
45 #include "blockcheck.h"
55 #include "buffer_head_io.h"
60 struct ocfs2_xattr_def_value_root {
61 struct ocfs2_xattr_value_root xv;
62 struct ocfs2_extent_rec er;
65 struct ocfs2_xattr_bucket {
66 /* The inode these xattrs are associated with */
67 struct inode *bu_inode;
69 /* The actual buffers that make up the bucket */
70 struct buffer_head *bu_bhs[OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET];
72 /* How many blocks make up one bucket for this filesystem */
76 struct ocfs2_xattr_set_ctxt {
78 struct ocfs2_alloc_context *meta_ac;
79 struct ocfs2_alloc_context *data_ac;
80 struct ocfs2_cached_dealloc_ctxt dealloc;
83 #define OCFS2_XATTR_ROOT_SIZE (sizeof(struct ocfs2_xattr_def_value_root))
84 #define OCFS2_XATTR_INLINE_SIZE 80
85 #define OCFS2_XATTR_FREE_IN_IBODY (OCFS2_MIN_XATTR_INLINE_SIZE \
86 - sizeof(struct ocfs2_xattr_header) \
88 #define OCFS2_XATTR_FREE_IN_BLOCK(ptr) ((ptr)->i_sb->s_blocksize \
89 - sizeof(struct ocfs2_xattr_block) \
90 - sizeof(struct ocfs2_xattr_header) \
93 static struct ocfs2_xattr_def_value_root def_xv = {
94 .xv.xr_list.l_count = cpu_to_le16(1),
97 struct xattr_handler *ocfs2_xattr_handlers[] = {
98 &ocfs2_xattr_user_handler,
99 #ifdef CONFIG_OCFS2_FS_POSIX_ACL
100 &ocfs2_xattr_acl_access_handler,
101 &ocfs2_xattr_acl_default_handler,
103 &ocfs2_xattr_trusted_handler,
104 &ocfs2_xattr_security_handler,
108 static struct xattr_handler *ocfs2_xattr_handler_map[OCFS2_XATTR_MAX] = {
109 [OCFS2_XATTR_INDEX_USER] = &ocfs2_xattr_user_handler,
110 #ifdef CONFIG_OCFS2_FS_POSIX_ACL
111 [OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS]
112 = &ocfs2_xattr_acl_access_handler,
113 [OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT]
114 = &ocfs2_xattr_acl_default_handler,
116 [OCFS2_XATTR_INDEX_TRUSTED] = &ocfs2_xattr_trusted_handler,
117 [OCFS2_XATTR_INDEX_SECURITY] = &ocfs2_xattr_security_handler,
120 struct ocfs2_xattr_info {
127 struct ocfs2_xattr_search {
128 struct buffer_head *inode_bh;
130 * xattr_bh point to the block buffer head which has extended attribute
131 * when extended attribute in inode, xattr_bh is equal to inode_bh.
133 struct buffer_head *xattr_bh;
134 struct ocfs2_xattr_header *header;
135 struct ocfs2_xattr_bucket *bucket;
138 struct ocfs2_xattr_entry *here;
142 static int ocfs2_xattr_bucket_get_name_value(struct inode *inode,
143 struct ocfs2_xattr_header *xh,
148 static int ocfs2_xattr_block_find(struct inode *inode,
151 struct ocfs2_xattr_search *xs);
152 static int ocfs2_xattr_index_block_find(struct inode *inode,
153 struct buffer_head *root_bh,
156 struct ocfs2_xattr_search *xs);
158 static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
159 struct ocfs2_xattr_tree_root *xt,
163 static int ocfs2_xattr_create_index_block(struct inode *inode,
164 struct ocfs2_xattr_search *xs,
165 struct ocfs2_xattr_set_ctxt *ctxt);
167 static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
168 struct ocfs2_xattr_info *xi,
169 struct ocfs2_xattr_search *xs,
170 struct ocfs2_xattr_set_ctxt *ctxt);
172 static int ocfs2_delete_xattr_index_block(struct inode *inode,
173 struct buffer_head *xb_bh);
174 static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
175 u64 src_blk, u64 last_blk, u64 to_blk,
176 unsigned int start_bucket,
179 static inline u16 ocfs2_xattr_buckets_per_cluster(struct ocfs2_super *osb)
181 return (1 << osb->s_clustersize_bits) / OCFS2_XATTR_BUCKET_SIZE;
184 static inline u16 ocfs2_blocks_per_xattr_bucket(struct super_block *sb)
186 return OCFS2_XATTR_BUCKET_SIZE / (1 << sb->s_blocksize_bits);
189 static inline u16 ocfs2_xattr_max_xe_in_bucket(struct super_block *sb)
191 u16 len = sb->s_blocksize -
192 offsetof(struct ocfs2_xattr_header, xh_entries);
194 return len / sizeof(struct ocfs2_xattr_entry);
197 #define bucket_blkno(_b) ((_b)->bu_bhs[0]->b_blocknr)
198 #define bucket_block(_b, _n) ((_b)->bu_bhs[(_n)]->b_data)
199 #define bucket_xh(_b) ((struct ocfs2_xattr_header *)bucket_block((_b), 0))
201 static struct ocfs2_xattr_bucket *ocfs2_xattr_bucket_new(struct inode *inode)
203 struct ocfs2_xattr_bucket *bucket;
204 int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
206 BUG_ON(blks > OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET);
208 bucket = kzalloc(sizeof(struct ocfs2_xattr_bucket), GFP_NOFS);
210 bucket->bu_inode = inode;
211 bucket->bu_blocks = blks;
217 static void ocfs2_xattr_bucket_relse(struct ocfs2_xattr_bucket *bucket)
221 for (i = 0; i < bucket->bu_blocks; i++) {
222 brelse(bucket->bu_bhs[i]);
223 bucket->bu_bhs[i] = NULL;
227 static void ocfs2_xattr_bucket_free(struct ocfs2_xattr_bucket *bucket)
230 ocfs2_xattr_bucket_relse(bucket);
231 bucket->bu_inode = NULL;
237 * A bucket that has never been written to disk doesn't need to be
238 * read. We just need the buffer_heads. Don't call this for
239 * buckets that are already on disk. ocfs2_read_xattr_bucket() initializes
242 static int ocfs2_init_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
247 for (i = 0; i < bucket->bu_blocks; i++) {
248 bucket->bu_bhs[i] = sb_getblk(bucket->bu_inode->i_sb,
250 if (!bucket->bu_bhs[i]) {
256 if (!ocfs2_buffer_uptodate(bucket->bu_inode,
258 ocfs2_set_new_buffer_uptodate(bucket->bu_inode,
263 ocfs2_xattr_bucket_relse(bucket);
267 /* Read the xattr bucket at xb_blkno */
268 static int ocfs2_read_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
273 rc = ocfs2_read_blocks(bucket->bu_inode, xb_blkno,
274 bucket->bu_blocks, bucket->bu_bhs, 0,
277 rc = ocfs2_validate_meta_ecc_bhs(bucket->bu_inode->i_sb,
280 &bucket_xh(bucket)->xh_check);
286 ocfs2_xattr_bucket_relse(bucket);
290 static int ocfs2_xattr_bucket_journal_access(handle_t *handle,
291 struct ocfs2_xattr_bucket *bucket,
296 for (i = 0; i < bucket->bu_blocks; i++) {
297 rc = ocfs2_journal_access(handle, bucket->bu_inode,
298 bucket->bu_bhs[i], type);
308 static void ocfs2_xattr_bucket_journal_dirty(handle_t *handle,
309 struct ocfs2_xattr_bucket *bucket)
313 ocfs2_compute_meta_ecc_bhs(bucket->bu_inode->i_sb,
314 bucket->bu_bhs, bucket->bu_blocks,
315 &bucket_xh(bucket)->xh_check);
317 for (i = 0; i < bucket->bu_blocks; i++)
318 ocfs2_journal_dirty(handle, bucket->bu_bhs[i]);
321 static void ocfs2_xattr_bucket_copy_data(struct ocfs2_xattr_bucket *dest,
322 struct ocfs2_xattr_bucket *src)
325 int blocksize = src->bu_inode->i_sb->s_blocksize;
327 BUG_ON(dest->bu_blocks != src->bu_blocks);
328 BUG_ON(dest->bu_inode != src->bu_inode);
330 for (i = 0; i < src->bu_blocks; i++) {
331 memcpy(bucket_block(dest, i), bucket_block(src, i),
336 static int ocfs2_validate_xattr_block(struct super_block *sb,
337 struct buffer_head *bh)
340 struct ocfs2_xattr_block *xb =
341 (struct ocfs2_xattr_block *)bh->b_data;
343 mlog(0, "Validating xattr block %llu\n",
344 (unsigned long long)bh->b_blocknr);
346 BUG_ON(!buffer_uptodate(bh));
349 * If the ecc fails, we return the error but otherwise
350 * leave the filesystem running. We know any error is
351 * local to this block.
353 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &xb->xb_check);
358 * Errors after here are fatal
361 if (!OCFS2_IS_VALID_XATTR_BLOCK(xb)) {
363 "Extended attribute block #%llu has bad "
365 (unsigned long long)bh->b_blocknr, 7,
370 if (le64_to_cpu(xb->xb_blkno) != bh->b_blocknr) {
372 "Extended attribute block #%llu has an "
373 "invalid xb_blkno of %llu",
374 (unsigned long long)bh->b_blocknr,
375 (unsigned long long)le64_to_cpu(xb->xb_blkno));
379 if (le32_to_cpu(xb->xb_fs_generation) != OCFS2_SB(sb)->fs_generation) {
381 "Extended attribute block #%llu has an invalid "
382 "xb_fs_generation of #%u",
383 (unsigned long long)bh->b_blocknr,
384 le32_to_cpu(xb->xb_fs_generation));
391 static int ocfs2_read_xattr_block(struct inode *inode, u64 xb_blkno,
392 struct buffer_head **bh)
395 struct buffer_head *tmp = *bh;
397 rc = ocfs2_read_block(inode, xb_blkno, &tmp,
398 ocfs2_validate_xattr_block);
400 /* If ocfs2_read_block() got us a new bh, pass it up. */
407 static inline const char *ocfs2_xattr_prefix(int name_index)
409 struct xattr_handler *handler = NULL;
411 if (name_index > 0 && name_index < OCFS2_XATTR_MAX)
412 handler = ocfs2_xattr_handler_map[name_index];
414 return handler ? handler->prefix : NULL;
417 static u32 ocfs2_xattr_name_hash(struct inode *inode,
421 /* Get hash value of uuid from super block */
422 u32 hash = OCFS2_SB(inode->i_sb)->uuid_hash;
425 /* hash extended attribute name */
426 for (i = 0; i < name_len; i++) {
427 hash = (hash << OCFS2_HASH_SHIFT) ^
428 (hash >> (8*sizeof(hash) - OCFS2_HASH_SHIFT)) ^
436 * ocfs2_xattr_hash_entry()
438 * Compute the hash of an extended attribute.
440 static void ocfs2_xattr_hash_entry(struct inode *inode,
441 struct ocfs2_xattr_header *header,
442 struct ocfs2_xattr_entry *entry)
445 char *name = (char *)header + le16_to_cpu(entry->xe_name_offset);
447 hash = ocfs2_xattr_name_hash(inode, name, entry->xe_name_len);
448 entry->xe_name_hash = cpu_to_le32(hash);
453 static int ocfs2_xattr_entry_real_size(int name_len, size_t value_len)
457 if (value_len <= OCFS2_XATTR_INLINE_SIZE)
458 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(value_len);
460 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
461 size += sizeof(struct ocfs2_xattr_entry);
466 int ocfs2_calc_security_init(struct inode *dir,
467 struct ocfs2_security_xattr_info *si,
470 struct ocfs2_alloc_context **xattr_ac)
473 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
474 int s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
478 * The max space of security xattr taken inline is
479 * 256(name) + 80(value) + 16(entry) = 352 bytes,
480 * So reserve one metadata block for it is ok.
482 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
483 s_size > OCFS2_XATTR_FREE_IN_IBODY) {
484 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, xattr_ac);
489 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
492 /* reserve clusters for xattr value which will be set in B tree*/
493 if (si->value_len > OCFS2_XATTR_INLINE_SIZE)
494 *want_clusters += ocfs2_clusters_for_bytes(dir->i_sb,
499 int ocfs2_calc_xattr_init(struct inode *dir,
500 struct buffer_head *dir_bh,
502 struct ocfs2_security_xattr_info *si,
505 struct ocfs2_alloc_context **xattr_ac)
508 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
514 s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
517 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) {
518 acl_len = ocfs2_xattr_get_nolock(dir, dir_bh,
519 OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT,
522 a_size = ocfs2_xattr_entry_real_size(0, acl_len);
525 } else if (acl_len != 0 && acl_len != -ENODATA) {
531 if (!(s_size + a_size))
535 * The max space of security xattr taken inline is
536 * 256(name) + 80(value) + 16(entry) = 352 bytes,
537 * The max space of acl xattr taken inline is
538 * 80(value) + 16(entry) * 2(if directory) = 192 bytes,
539 * when blocksize = 512, may reserve one more cluser for
540 * xattr bucket, otherwise reserve one metadata block
543 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
544 (s_size + a_size) > OCFS2_XATTR_FREE_IN_IBODY) {
545 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, xattr_ac);
550 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
553 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE &&
554 (s_size + a_size) > OCFS2_XATTR_FREE_IN_BLOCK(dir)) {
556 *xattr_credits += ocfs2_blocks_per_xattr_bucket(dir->i_sb);
559 /* reserve clusters for xattr value which will be set in B tree*/
560 if (si->enable && si->value_len > OCFS2_XATTR_INLINE_SIZE)
561 *want_clusters += ocfs2_clusters_for_bytes(dir->i_sb,
563 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL &&
564 acl_len > OCFS2_XATTR_INLINE_SIZE) {
565 *want_clusters += ocfs2_clusters_for_bytes(dir->i_sb, acl_len);
567 *want_clusters += ocfs2_clusters_for_bytes(dir->i_sb,
574 static int ocfs2_xattr_extend_allocation(struct inode *inode,
576 struct ocfs2_xattr_value_buf *vb,
577 struct ocfs2_xattr_set_ctxt *ctxt)
580 handle_t *handle = ctxt->handle;
581 enum ocfs2_alloc_restarted why;
582 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
583 u32 prev_clusters, logical_start = le32_to_cpu(vb->vb_xv->xr_clusters);
584 struct ocfs2_extent_tree et;
586 mlog(0, "(clusters_to_add for xattr= %u)\n", clusters_to_add);
588 ocfs2_init_xattr_value_extent_tree(&et, inode, vb);
590 status = vb->vb_access(handle, inode, vb->vb_bh,
591 OCFS2_JOURNAL_ACCESS_WRITE);
597 prev_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
598 status = ocfs2_add_clusters_in_btree(osb,
613 status = ocfs2_journal_dirty(handle, vb->vb_bh);
619 clusters_to_add -= le32_to_cpu(vb->vb_xv->xr_clusters) - prev_clusters;
622 * We should have already allocated enough space before the transaction,
623 * so no need to restart.
625 BUG_ON(why != RESTART_NONE || clusters_to_add);
632 static int __ocfs2_remove_xattr_range(struct inode *inode,
633 struct ocfs2_xattr_value_buf *vb,
634 u32 cpos, u32 phys_cpos, u32 len,
635 struct ocfs2_xattr_set_ctxt *ctxt)
638 u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
639 handle_t *handle = ctxt->handle;
640 struct ocfs2_extent_tree et;
642 ocfs2_init_xattr_value_extent_tree(&et, inode, vb);
644 ret = vb->vb_access(handle, inode, vb->vb_bh,
645 OCFS2_JOURNAL_ACCESS_WRITE);
651 ret = ocfs2_remove_extent(inode, &et, cpos, len, handle, ctxt->meta_ac,
658 le32_add_cpu(&vb->vb_xv->xr_clusters, -len);
660 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
666 ret = ocfs2_cache_cluster_dealloc(&ctxt->dealloc, phys_blkno, len);
674 static int ocfs2_xattr_shrink_size(struct inode *inode,
677 struct ocfs2_xattr_value_buf *vb,
678 struct ocfs2_xattr_set_ctxt *ctxt)
681 u32 trunc_len, cpos, phys_cpos, alloc_size;
684 if (old_clusters <= new_clusters)
688 trunc_len = old_clusters - new_clusters;
690 ret = ocfs2_xattr_get_clusters(inode, cpos, &phys_cpos,
692 &vb->vb_xv->xr_list);
698 if (alloc_size > trunc_len)
699 alloc_size = trunc_len;
701 ret = __ocfs2_remove_xattr_range(inode, vb, cpos,
702 phys_cpos, alloc_size,
709 block = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
710 ocfs2_remove_xattr_clusters_from_cache(inode, block,
713 trunc_len -= alloc_size;
720 static int ocfs2_xattr_value_truncate(struct inode *inode,
721 struct ocfs2_xattr_value_buf *vb,
723 struct ocfs2_xattr_set_ctxt *ctxt)
726 u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb, len);
727 u32 old_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
729 if (new_clusters == old_clusters)
732 if (new_clusters > old_clusters)
733 ret = ocfs2_xattr_extend_allocation(inode,
734 new_clusters - old_clusters,
737 ret = ocfs2_xattr_shrink_size(inode,
738 old_clusters, new_clusters,
744 static int ocfs2_xattr_list_entry(char *buffer, size_t size,
745 size_t *result, const char *prefix,
746 const char *name, int name_len)
748 char *p = buffer + *result;
749 int prefix_len = strlen(prefix);
750 int total_len = prefix_len + name_len + 1;
752 *result += total_len;
754 /* we are just looking for how big our buffer needs to be */
761 memcpy(p, prefix, prefix_len);
762 memcpy(p + prefix_len, name, name_len);
763 p[prefix_len + name_len] = '\0';
768 static int ocfs2_xattr_list_entries(struct inode *inode,
769 struct ocfs2_xattr_header *header,
770 char *buffer, size_t buffer_size)
774 const char *prefix, *name;
776 for (i = 0 ; i < le16_to_cpu(header->xh_count); i++) {
777 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
778 type = ocfs2_xattr_get_type(entry);
779 prefix = ocfs2_xattr_prefix(type);
782 name = (const char *)header +
783 le16_to_cpu(entry->xe_name_offset);
785 ret = ocfs2_xattr_list_entry(buffer, buffer_size,
786 &result, prefix, name,
796 static int ocfs2_xattr_ibody_list(struct inode *inode,
797 struct ocfs2_dinode *di,
801 struct ocfs2_xattr_header *header = NULL;
802 struct ocfs2_inode_info *oi = OCFS2_I(inode);
805 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
808 header = (struct ocfs2_xattr_header *)
809 ((void *)di + inode->i_sb->s_blocksize -
810 le16_to_cpu(di->i_xattr_inline_size));
812 ret = ocfs2_xattr_list_entries(inode, header, buffer, buffer_size);
817 static int ocfs2_xattr_block_list(struct inode *inode,
818 struct ocfs2_dinode *di,
822 struct buffer_head *blk_bh = NULL;
823 struct ocfs2_xattr_block *xb;
826 if (!di->i_xattr_loc)
829 ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
836 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
837 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
838 struct ocfs2_xattr_header *header = &xb->xb_attrs.xb_header;
839 ret = ocfs2_xattr_list_entries(inode, header,
840 buffer, buffer_size);
842 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root;
843 ret = ocfs2_xattr_tree_list_index_block(inode, xt,
844 buffer, buffer_size);
852 ssize_t ocfs2_listxattr(struct dentry *dentry,
856 int ret = 0, i_ret = 0, b_ret = 0;
857 struct buffer_head *di_bh = NULL;
858 struct ocfs2_dinode *di = NULL;
859 struct ocfs2_inode_info *oi = OCFS2_I(dentry->d_inode);
861 if (!ocfs2_supports_xattr(OCFS2_SB(dentry->d_sb)))
864 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
867 ret = ocfs2_inode_lock(dentry->d_inode, &di_bh, 0);
873 di = (struct ocfs2_dinode *)di_bh->b_data;
875 down_read(&oi->ip_xattr_sem);
876 i_ret = ocfs2_xattr_ibody_list(dentry->d_inode, di, buffer, size);
884 b_ret = ocfs2_xattr_block_list(dentry->d_inode, di,
889 up_read(&oi->ip_xattr_sem);
890 ocfs2_inode_unlock(dentry->d_inode, 0);
894 return i_ret + b_ret;
897 static int ocfs2_xattr_find_entry(int name_index,
899 struct ocfs2_xattr_search *xs)
901 struct ocfs2_xattr_entry *entry;
908 name_len = strlen(name);
910 for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
911 cmp = name_index - ocfs2_xattr_get_type(entry);
913 cmp = name_len - entry->xe_name_len;
915 cmp = memcmp(name, (xs->base +
916 le16_to_cpu(entry->xe_name_offset)),
924 return cmp ? -ENODATA : 0;
927 static int ocfs2_xattr_get_value_outside(struct inode *inode,
928 struct ocfs2_xattr_value_root *xv,
932 u32 cpos, p_cluster, num_clusters, bpc, clusters;
935 size_t cplen, blocksize;
936 struct buffer_head *bh = NULL;
937 struct ocfs2_extent_list *el;
940 clusters = le32_to_cpu(xv->xr_clusters);
941 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
942 blocksize = inode->i_sb->s_blocksize;
945 while (cpos < clusters) {
946 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
953 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
954 /* Copy ocfs2_xattr_value */
955 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
956 ret = ocfs2_read_block(inode, blkno, &bh, NULL);
962 cplen = len >= blocksize ? blocksize : len;
963 memcpy(buffer, bh->b_data, cplen);
972 cpos += num_clusters;
978 static int ocfs2_xattr_ibody_get(struct inode *inode,
983 struct ocfs2_xattr_search *xs)
985 struct ocfs2_inode_info *oi = OCFS2_I(inode);
986 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
987 struct ocfs2_xattr_value_root *xv;
991 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
994 xs->end = (void *)di + inode->i_sb->s_blocksize;
995 xs->header = (struct ocfs2_xattr_header *)
996 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
997 xs->base = (void *)xs->header;
998 xs->here = xs->header->xh_entries;
1000 ret = ocfs2_xattr_find_entry(name_index, name, xs);
1003 size = le64_to_cpu(xs->here->xe_value_size);
1005 if (size > buffer_size)
1007 if (ocfs2_xattr_is_local(xs->here)) {
1008 memcpy(buffer, (void *)xs->base +
1009 le16_to_cpu(xs->here->xe_name_offset) +
1010 OCFS2_XATTR_SIZE(xs->here->xe_name_len), size);
1012 xv = (struct ocfs2_xattr_value_root *)
1013 (xs->base + le16_to_cpu(
1014 xs->here->xe_name_offset) +
1015 OCFS2_XATTR_SIZE(xs->here->xe_name_len));
1016 ret = ocfs2_xattr_get_value_outside(inode, xv,
1028 static int ocfs2_xattr_block_get(struct inode *inode,
1033 struct ocfs2_xattr_search *xs)
1035 struct ocfs2_xattr_block *xb;
1036 struct ocfs2_xattr_value_root *xv;
1038 int ret = -ENODATA, name_offset, name_len, block_off, i;
1040 xs->bucket = ocfs2_xattr_bucket_new(inode);
1047 ret = ocfs2_xattr_block_find(inode, name_index, name, xs);
1053 if (xs->not_found) {
1058 xb = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
1059 size = le64_to_cpu(xs->here->xe_value_size);
1062 if (size > buffer_size)
1065 name_offset = le16_to_cpu(xs->here->xe_name_offset);
1066 name_len = OCFS2_XATTR_SIZE(xs->here->xe_name_len);
1067 i = xs->here - xs->header->xh_entries;
1069 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
1070 ret = ocfs2_xattr_bucket_get_name_value(inode,
1071 bucket_xh(xs->bucket),
1075 xs->base = bucket_block(xs->bucket, block_off);
1077 if (ocfs2_xattr_is_local(xs->here)) {
1078 memcpy(buffer, (void *)xs->base +
1079 name_offset + name_len, size);
1081 xv = (struct ocfs2_xattr_value_root *)
1082 (xs->base + name_offset + name_len);
1083 ret = ocfs2_xattr_get_value_outside(inode, xv,
1093 ocfs2_xattr_bucket_free(xs->bucket);
1095 brelse(xs->xattr_bh);
1096 xs->xattr_bh = NULL;
1100 int ocfs2_xattr_get_nolock(struct inode *inode,
1101 struct buffer_head *di_bh,
1108 struct ocfs2_dinode *di = NULL;
1109 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1110 struct ocfs2_xattr_search xis = {
1111 .not_found = -ENODATA,
1113 struct ocfs2_xattr_search xbs = {
1114 .not_found = -ENODATA,
1117 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1120 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1123 xis.inode_bh = xbs.inode_bh = di_bh;
1124 di = (struct ocfs2_dinode *)di_bh->b_data;
1126 down_read(&oi->ip_xattr_sem);
1127 ret = ocfs2_xattr_ibody_get(inode, name_index, name, buffer,
1129 if (ret == -ENODATA && di->i_xattr_loc)
1130 ret = ocfs2_xattr_block_get(inode, name_index, name, buffer,
1132 up_read(&oi->ip_xattr_sem);
1137 /* ocfs2_xattr_get()
1139 * Copy an extended attribute into the buffer provided.
1140 * Buffer is NULL to compute the size of buffer required.
1142 static int ocfs2_xattr_get(struct inode *inode,
1149 struct buffer_head *di_bh = NULL;
1151 ret = ocfs2_inode_lock(inode, &di_bh, 0);
1156 ret = ocfs2_xattr_get_nolock(inode, di_bh, name_index,
1157 name, buffer, buffer_size);
1159 ocfs2_inode_unlock(inode, 0);
1166 static int __ocfs2_xattr_set_value_outside(struct inode *inode,
1168 struct ocfs2_xattr_value_root *xv,
1172 int ret = 0, i, cp_len, credits;
1173 u16 blocksize = inode->i_sb->s_blocksize;
1174 u32 p_cluster, num_clusters;
1175 u32 cpos = 0, bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
1176 u32 clusters = ocfs2_clusters_for_bytes(inode->i_sb, value_len);
1178 struct buffer_head *bh = NULL;
1180 BUG_ON(clusters > le32_to_cpu(xv->xr_clusters));
1183 * In __ocfs2_xattr_set_value_outside has already been dirtied,
1184 * so we don't need to worry about whether ocfs2_extend_trans
1185 * will create a new transactio for us or not.
1187 credits = clusters * bpc;
1188 ret = ocfs2_extend_trans(handle, credits);
1194 while (cpos < clusters) {
1195 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
1196 &num_clusters, &xv->xr_list);
1202 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
1204 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
1205 ret = ocfs2_read_block(inode, blkno, &bh, NULL);
1211 ret = ocfs2_journal_access(handle,
1214 OCFS2_JOURNAL_ACCESS_WRITE);
1220 cp_len = value_len > blocksize ? blocksize : value_len;
1221 memcpy(bh->b_data, value, cp_len);
1222 value_len -= cp_len;
1224 if (cp_len < blocksize)
1225 memset(bh->b_data + cp_len, 0,
1226 blocksize - cp_len);
1228 ret = ocfs2_journal_dirty(handle, bh);
1237 * XXX: do we need to empty all the following
1238 * blocks in this cluster?
1243 cpos += num_clusters;
1251 static int ocfs2_xattr_cleanup(struct inode *inode,
1253 struct ocfs2_xattr_info *xi,
1254 struct ocfs2_xattr_search *xs,
1255 struct ocfs2_xattr_value_buf *vb,
1259 size_t name_len = strlen(xi->name);
1260 void *val = xs->base + offs;
1261 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1263 ret = vb->vb_access(handle, inode, vb->vb_bh,
1264 OCFS2_JOURNAL_ACCESS_WRITE);
1269 /* Decrease xattr count */
1270 le16_add_cpu(&xs->header->xh_count, -1);
1271 /* Remove the xattr entry and tree root which has already be set*/
1272 memset((void *)xs->here, 0, sizeof(struct ocfs2_xattr_entry));
1273 memset(val, 0, size);
1275 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
1282 static int ocfs2_xattr_update_entry(struct inode *inode,
1284 struct ocfs2_xattr_info *xi,
1285 struct ocfs2_xattr_search *xs,
1286 struct ocfs2_xattr_value_buf *vb,
1291 ret = vb->vb_access(handle, inode, vb->vb_bh,
1292 OCFS2_JOURNAL_ACCESS_WRITE);
1298 xs->here->xe_name_offset = cpu_to_le16(offs);
1299 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1300 if (xi->value_len <= OCFS2_XATTR_INLINE_SIZE)
1301 ocfs2_xattr_set_local(xs->here, 1);
1303 ocfs2_xattr_set_local(xs->here, 0);
1304 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1306 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
1314 * ocfs2_xattr_set_value_outside()
1316 * Set large size value in B tree.
1318 static int ocfs2_xattr_set_value_outside(struct inode *inode,
1319 struct ocfs2_xattr_info *xi,
1320 struct ocfs2_xattr_search *xs,
1321 struct ocfs2_xattr_set_ctxt *ctxt,
1322 struct ocfs2_xattr_value_buf *vb,
1325 size_t name_len = strlen(xi->name);
1326 void *val = xs->base + offs;
1327 struct ocfs2_xattr_value_root *xv = NULL;
1328 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1331 memset(val, 0, size);
1332 memcpy(val, xi->name, name_len);
1333 xv = (struct ocfs2_xattr_value_root *)
1334 (val + OCFS2_XATTR_SIZE(name_len));
1335 xv->xr_clusters = 0;
1336 xv->xr_last_eb_blk = 0;
1337 xv->xr_list.l_tree_depth = 0;
1338 xv->xr_list.l_count = cpu_to_le16(1);
1339 xv->xr_list.l_next_free_rec = 0;
1342 ret = ocfs2_xattr_value_truncate(inode, vb, xi->value_len, ctxt);
1347 ret = ocfs2_xattr_update_entry(inode, ctxt->handle, xi, xs, vb, offs);
1352 ret = __ocfs2_xattr_set_value_outside(inode, ctxt->handle, vb->vb_xv,
1353 xi->value, xi->value_len);
1361 * ocfs2_xattr_set_entry_local()
1363 * Set, replace or remove extended attribute in local.
1365 static void ocfs2_xattr_set_entry_local(struct inode *inode,
1366 struct ocfs2_xattr_info *xi,
1367 struct ocfs2_xattr_search *xs,
1368 struct ocfs2_xattr_entry *last,
1371 size_t name_len = strlen(xi->name);
1374 if (xi->value && xs->not_found) {
1375 /* Insert the new xattr entry. */
1376 le16_add_cpu(&xs->header->xh_count, 1);
1377 ocfs2_xattr_set_type(last, xi->name_index);
1378 ocfs2_xattr_set_local(last, 1);
1379 last->xe_name_len = name_len;
1385 first_val = xs->base + min_offs;
1386 offs = le16_to_cpu(xs->here->xe_name_offset);
1387 val = xs->base + offs;
1389 if (le64_to_cpu(xs->here->xe_value_size) >
1390 OCFS2_XATTR_INLINE_SIZE)
1391 size = OCFS2_XATTR_SIZE(name_len) +
1392 OCFS2_XATTR_ROOT_SIZE;
1394 size = OCFS2_XATTR_SIZE(name_len) +
1395 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1397 if (xi->value && size == OCFS2_XATTR_SIZE(name_len) +
1398 OCFS2_XATTR_SIZE(xi->value_len)) {
1399 /* The old and the new value have the
1400 same size. Just replace the value. */
1401 ocfs2_xattr_set_local(xs->here, 1);
1402 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1403 /* Clear value bytes. */
1404 memset(val + OCFS2_XATTR_SIZE(name_len),
1406 OCFS2_XATTR_SIZE(xi->value_len));
1407 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1412 /* Remove the old name+value. */
1413 memmove(first_val + size, first_val, val - first_val);
1414 memset(first_val, 0, size);
1415 xs->here->xe_name_hash = 0;
1416 xs->here->xe_name_offset = 0;
1417 ocfs2_xattr_set_local(xs->here, 1);
1418 xs->here->xe_value_size = 0;
1422 /* Adjust all value offsets. */
1423 last = xs->header->xh_entries;
1424 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1425 size_t o = le16_to_cpu(last->xe_name_offset);
1428 last->xe_name_offset = cpu_to_le16(o + size);
1433 /* Remove the old entry. */
1435 memmove(xs->here, xs->here + 1,
1436 (void *)last - (void *)xs->here);
1437 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
1438 le16_add_cpu(&xs->header->xh_count, -1);
1442 /* Insert the new name+value. */
1443 size_t size = OCFS2_XATTR_SIZE(name_len) +
1444 OCFS2_XATTR_SIZE(xi->value_len);
1445 void *val = xs->base + min_offs - size;
1447 xs->here->xe_name_offset = cpu_to_le16(min_offs - size);
1448 memset(val, 0, size);
1449 memcpy(val, xi->name, name_len);
1450 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1453 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1454 ocfs2_xattr_set_local(xs->here, 1);
1455 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1462 * ocfs2_xattr_set_entry()
1464 * Set extended attribute entry into inode or block.
1466 * If extended attribute value size > OCFS2_XATTR_INLINE_SIZE,
1467 * We first insert tree root(ocfs2_xattr_value_root) with set_entry_local(),
1468 * then set value in B tree with set_value_outside().
1470 static int ocfs2_xattr_set_entry(struct inode *inode,
1471 struct ocfs2_xattr_info *xi,
1472 struct ocfs2_xattr_search *xs,
1473 struct ocfs2_xattr_set_ctxt *ctxt,
1476 struct ocfs2_xattr_entry *last;
1477 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1478 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1479 size_t min_offs = xs->end - xs->base, name_len = strlen(xi->name);
1481 handle_t *handle = ctxt->handle;
1483 struct ocfs2_xattr_info xi_l = {
1484 .name_index = xi->name_index,
1487 .value_len = xi->value_len,
1489 struct ocfs2_xattr_value_buf vb = {
1490 .vb_bh = xs->xattr_bh,
1491 .vb_access = ocfs2_journal_access_di,
1494 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1495 BUG_ON(xs->xattr_bh == xs->inode_bh);
1496 vb.vb_access = ocfs2_journal_access_xb;
1498 BUG_ON(xs->xattr_bh != xs->inode_bh);
1500 /* Compute min_offs, last and free space. */
1501 last = xs->header->xh_entries;
1503 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1504 size_t offs = le16_to_cpu(last->xe_name_offset);
1505 if (offs < min_offs)
1510 free = min_offs - ((void *)last - xs->base) - sizeof(__u32);
1514 if (!xs->not_found) {
1516 if (ocfs2_xattr_is_local(xs->here))
1517 size = OCFS2_XATTR_SIZE(name_len) +
1518 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1520 size = OCFS2_XATTR_SIZE(name_len) +
1521 OCFS2_XATTR_ROOT_SIZE;
1522 free += (size + sizeof(struct ocfs2_xattr_entry));
1524 /* Check free space in inode or block */
1525 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1526 if (free < sizeof(struct ocfs2_xattr_entry) +
1527 OCFS2_XATTR_SIZE(name_len) +
1528 OCFS2_XATTR_ROOT_SIZE) {
1532 size_l = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1533 xi_l.value = (void *)&def_xv;
1534 xi_l.value_len = OCFS2_XATTR_ROOT_SIZE;
1535 } else if (xi->value) {
1536 if (free < sizeof(struct ocfs2_xattr_entry) +
1537 OCFS2_XATTR_SIZE(name_len) +
1538 OCFS2_XATTR_SIZE(xi->value_len)) {
1544 if (!xs->not_found) {
1545 /* For existing extended attribute */
1546 size_t size = OCFS2_XATTR_SIZE(name_len) +
1547 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1548 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
1549 void *val = xs->base + offs;
1551 if (ocfs2_xattr_is_local(xs->here) && size == size_l) {
1552 /* Replace existing local xattr with tree root */
1553 ret = ocfs2_xattr_set_value_outside(inode, xi, xs,
1558 } else if (!ocfs2_xattr_is_local(xs->here)) {
1559 /* For existing xattr which has value outside */
1560 vb.vb_xv = (struct ocfs2_xattr_value_root *)
1561 (val + OCFS2_XATTR_SIZE(name_len));
1563 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1565 * If new value need set outside also,
1566 * first truncate old value to new value,
1567 * then set new value with set_value_outside().
1569 ret = ocfs2_xattr_value_truncate(inode,
1578 ret = ocfs2_xattr_update_entry(inode,
1589 ret = __ocfs2_xattr_set_value_outside(inode,
1599 * If new value need set in local,
1600 * just trucate old value to zero.
1602 ret = ocfs2_xattr_value_truncate(inode,
1612 ret = ocfs2_journal_access_di(handle, inode, xs->inode_bh,
1613 OCFS2_JOURNAL_ACCESS_WRITE);
1619 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1620 ret = vb.vb_access(handle, inode, vb.vb_bh,
1621 OCFS2_JOURNAL_ACCESS_WRITE);
1629 * Set value in local, include set tree root in local.
1630 * This is the first step for value size >INLINE_SIZE.
1632 ocfs2_xattr_set_entry_local(inode, &xi_l, xs, last, min_offs);
1634 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1635 ret = ocfs2_journal_dirty(handle, xs->xattr_bh);
1642 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) &&
1643 (flag & OCFS2_INLINE_XATTR_FL)) {
1644 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1645 unsigned int xattrsize = osb->s_xattr_inline_size;
1648 * Adjust extent record count or inline data size
1649 * to reserve space for extended attribute.
1651 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1652 struct ocfs2_inline_data *idata = &di->id2.i_data;
1653 le16_add_cpu(&idata->id_count, -xattrsize);
1654 } else if (!(ocfs2_inode_is_fast_symlink(inode))) {
1655 struct ocfs2_extent_list *el = &di->id2.i_list;
1656 le16_add_cpu(&el->l_count, -(xattrsize /
1657 sizeof(struct ocfs2_extent_rec)));
1659 di->i_xattr_inline_size = cpu_to_le16(xattrsize);
1661 /* Update xattr flag */
1662 spin_lock(&oi->ip_lock);
1663 oi->ip_dyn_features |= flag;
1664 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1665 spin_unlock(&oi->ip_lock);
1666 /* Update inode ctime */
1667 inode->i_ctime = CURRENT_TIME;
1668 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
1669 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
1671 ret = ocfs2_journal_dirty(handle, xs->inode_bh);
1675 if (!ret && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1677 * Set value outside in B tree.
1678 * This is the second step for value size > INLINE_SIZE.
1680 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
1681 ret = ocfs2_xattr_set_value_outside(inode, xi, xs, ctxt,
1688 * If set value outside failed, we have to clean
1689 * the junk tree root we have already set in local.
1691 ret2 = ocfs2_xattr_cleanup(inode, ctxt->handle,
1701 static int ocfs2_remove_value_outside(struct inode*inode,
1702 struct ocfs2_xattr_value_buf *vb,
1703 struct ocfs2_xattr_header *header)
1706 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1707 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
1709 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
1711 ctxt.handle = ocfs2_start_trans(osb,
1712 ocfs2_remove_extent_credits(osb->sb));
1713 if (IS_ERR(ctxt.handle)) {
1714 ret = PTR_ERR(ctxt.handle);
1719 for (i = 0; i < le16_to_cpu(header->xh_count); i++) {
1720 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
1722 if (!ocfs2_xattr_is_local(entry)) {
1725 val = (void *)header +
1726 le16_to_cpu(entry->xe_name_offset);
1727 vb->vb_xv = (struct ocfs2_xattr_value_root *)
1728 (val + OCFS2_XATTR_SIZE(entry->xe_name_len));
1729 ret = ocfs2_xattr_value_truncate(inode, vb, 0, &ctxt);
1737 ocfs2_commit_trans(osb, ctxt.handle);
1738 ocfs2_schedule_truncate_log_flush(osb, 1);
1739 ocfs2_run_deallocs(osb, &ctxt.dealloc);
1744 static int ocfs2_xattr_ibody_remove(struct inode *inode,
1745 struct buffer_head *di_bh)
1748 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1749 struct ocfs2_xattr_header *header;
1751 struct ocfs2_xattr_value_buf vb = {
1753 .vb_access = ocfs2_journal_access_di,
1756 header = (struct ocfs2_xattr_header *)
1757 ((void *)di + inode->i_sb->s_blocksize -
1758 le16_to_cpu(di->i_xattr_inline_size));
1760 ret = ocfs2_remove_value_outside(inode, &vb, header);
1765 static int ocfs2_xattr_block_remove(struct inode *inode,
1766 struct buffer_head *blk_bh)
1768 struct ocfs2_xattr_block *xb;
1770 struct ocfs2_xattr_value_buf vb = {
1772 .vb_access = ocfs2_journal_access_xb,
1775 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
1776 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
1777 struct ocfs2_xattr_header *header = &(xb->xb_attrs.xb_header);
1778 ret = ocfs2_remove_value_outside(inode, &vb, header);
1780 ret = ocfs2_delete_xattr_index_block(inode, blk_bh);
1785 static int ocfs2_xattr_free_block(struct inode *inode,
1788 struct inode *xb_alloc_inode;
1789 struct buffer_head *xb_alloc_bh = NULL;
1790 struct buffer_head *blk_bh = NULL;
1791 struct ocfs2_xattr_block *xb;
1792 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1798 ret = ocfs2_read_xattr_block(inode, block, &blk_bh);
1804 ret = ocfs2_xattr_block_remove(inode, blk_bh);
1810 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
1811 blk = le64_to_cpu(xb->xb_blkno);
1812 bit = le16_to_cpu(xb->xb_suballoc_bit);
1813 bg_blkno = ocfs2_which_suballoc_group(blk, bit);
1815 xb_alloc_inode = ocfs2_get_system_file_inode(osb,
1816 EXTENT_ALLOC_SYSTEM_INODE,
1817 le16_to_cpu(xb->xb_suballoc_slot));
1818 if (!xb_alloc_inode) {
1823 mutex_lock(&xb_alloc_inode->i_mutex);
1825 ret = ocfs2_inode_lock(xb_alloc_inode, &xb_alloc_bh, 1);
1831 handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE);
1832 if (IS_ERR(handle)) {
1833 ret = PTR_ERR(handle);
1838 ret = ocfs2_free_suballoc_bits(handle, xb_alloc_inode, xb_alloc_bh,
1843 ocfs2_commit_trans(osb, handle);
1845 ocfs2_inode_unlock(xb_alloc_inode, 1);
1846 brelse(xb_alloc_bh);
1848 mutex_unlock(&xb_alloc_inode->i_mutex);
1849 iput(xb_alloc_inode);
1856 * ocfs2_xattr_remove()
1858 * Free extended attribute resources associated with this inode.
1860 int ocfs2_xattr_remove(struct inode *inode, struct buffer_head *di_bh)
1862 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1863 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1867 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1870 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1873 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
1874 ret = ocfs2_xattr_ibody_remove(inode, di_bh);
1881 if (di->i_xattr_loc) {
1882 ret = ocfs2_xattr_free_block(inode,
1883 le64_to_cpu(di->i_xattr_loc));
1890 handle = ocfs2_start_trans((OCFS2_SB(inode->i_sb)),
1891 OCFS2_INODE_UPDATE_CREDITS);
1892 if (IS_ERR(handle)) {
1893 ret = PTR_ERR(handle);
1897 ret = ocfs2_journal_access_di(handle, inode, di_bh,
1898 OCFS2_JOURNAL_ACCESS_WRITE);
1904 di->i_xattr_loc = 0;
1906 spin_lock(&oi->ip_lock);
1907 oi->ip_dyn_features &= ~(OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL);
1908 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1909 spin_unlock(&oi->ip_lock);
1911 ret = ocfs2_journal_dirty(handle, di_bh);
1915 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
1920 static int ocfs2_xattr_has_space_inline(struct inode *inode,
1921 struct ocfs2_dinode *di)
1923 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1924 unsigned int xattrsize = OCFS2_SB(inode->i_sb)->s_xattr_inline_size;
1927 if (xattrsize < OCFS2_MIN_XATTR_INLINE_SIZE)
1930 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1931 struct ocfs2_inline_data *idata = &di->id2.i_data;
1932 free = le16_to_cpu(idata->id_count) - le64_to_cpu(di->i_size);
1933 } else if (ocfs2_inode_is_fast_symlink(inode)) {
1934 free = ocfs2_fast_symlink_chars(inode->i_sb) -
1935 le64_to_cpu(di->i_size);
1937 struct ocfs2_extent_list *el = &di->id2.i_list;
1938 free = (le16_to_cpu(el->l_count) -
1939 le16_to_cpu(el->l_next_free_rec)) *
1940 sizeof(struct ocfs2_extent_rec);
1942 if (free >= xattrsize)
1949 * ocfs2_xattr_ibody_find()
1951 * Find extended attribute in inode block and
1952 * fill search info into struct ocfs2_xattr_search.
1954 static int ocfs2_xattr_ibody_find(struct inode *inode,
1957 struct ocfs2_xattr_search *xs)
1959 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1960 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1964 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
1967 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
1968 down_read(&oi->ip_alloc_sem);
1969 has_space = ocfs2_xattr_has_space_inline(inode, di);
1970 up_read(&oi->ip_alloc_sem);
1975 xs->xattr_bh = xs->inode_bh;
1976 xs->end = (void *)di + inode->i_sb->s_blocksize;
1977 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)
1978 xs->header = (struct ocfs2_xattr_header *)
1979 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
1981 xs->header = (struct ocfs2_xattr_header *)
1982 (xs->end - OCFS2_SB(inode->i_sb)->s_xattr_inline_size);
1983 xs->base = (void *)xs->header;
1984 xs->here = xs->header->xh_entries;
1986 /* Find the named attribute. */
1987 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
1988 ret = ocfs2_xattr_find_entry(name_index, name, xs);
1989 if (ret && ret != -ENODATA)
1991 xs->not_found = ret;
1998 * ocfs2_xattr_ibody_set()
2000 * Set, replace or remove an extended attribute into inode block.
2003 static int ocfs2_xattr_ibody_set(struct inode *inode,
2004 struct ocfs2_xattr_info *xi,
2005 struct ocfs2_xattr_search *xs,
2006 struct ocfs2_xattr_set_ctxt *ctxt)
2008 struct ocfs2_inode_info *oi = OCFS2_I(inode);
2009 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2012 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
2015 down_write(&oi->ip_alloc_sem);
2016 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
2017 if (!ocfs2_xattr_has_space_inline(inode, di)) {
2023 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
2024 (OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL));
2026 up_write(&oi->ip_alloc_sem);
2032 * ocfs2_xattr_block_find()
2034 * Find extended attribute in external block and
2035 * fill search info into struct ocfs2_xattr_search.
2037 static int ocfs2_xattr_block_find(struct inode *inode,
2040 struct ocfs2_xattr_search *xs)
2042 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2043 struct buffer_head *blk_bh = NULL;
2044 struct ocfs2_xattr_block *xb;
2047 if (!di->i_xattr_loc)
2050 ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
2057 xs->xattr_bh = blk_bh;
2058 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
2060 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
2061 xs->header = &xb->xb_attrs.xb_header;
2062 xs->base = (void *)xs->header;
2063 xs->end = (void *)(blk_bh->b_data) + blk_bh->b_size;
2064 xs->here = xs->header->xh_entries;
2066 ret = ocfs2_xattr_find_entry(name_index, name, xs);
2068 ret = ocfs2_xattr_index_block_find(inode, blk_bh,
2072 if (ret && ret != -ENODATA) {
2073 xs->xattr_bh = NULL;
2076 xs->not_found = ret;
2085 * ocfs2_xattr_block_set()
2087 * Set, replace or remove an extended attribute into external block.
2090 static int ocfs2_xattr_block_set(struct inode *inode,
2091 struct ocfs2_xattr_info *xi,
2092 struct ocfs2_xattr_search *xs,
2093 struct ocfs2_xattr_set_ctxt *ctxt)
2095 struct buffer_head *new_bh = NULL;
2096 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2097 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2098 handle_t *handle = ctxt->handle;
2099 struct ocfs2_xattr_block *xblk = NULL;
2100 u16 suballoc_bit_start;
2105 if (!xs->xattr_bh) {
2106 ret = ocfs2_journal_access_di(handle, inode, xs->inode_bh,
2107 OCFS2_JOURNAL_ACCESS_CREATE);
2113 ret = ocfs2_claim_metadata(osb, handle, ctxt->meta_ac, 1,
2114 &suballoc_bit_start, &num_got,
2121 new_bh = sb_getblk(inode->i_sb, first_blkno);
2122 ocfs2_set_new_buffer_uptodate(inode, new_bh);
2124 ret = ocfs2_journal_access_xb(handle, inode, new_bh,
2125 OCFS2_JOURNAL_ACCESS_CREATE);
2131 /* Initialize ocfs2_xattr_block */
2132 xs->xattr_bh = new_bh;
2133 xblk = (struct ocfs2_xattr_block *)new_bh->b_data;
2134 memset(xblk, 0, inode->i_sb->s_blocksize);
2135 strcpy((void *)xblk, OCFS2_XATTR_BLOCK_SIGNATURE);
2136 xblk->xb_suballoc_slot = cpu_to_le16(osb->slot_num);
2137 xblk->xb_suballoc_bit = cpu_to_le16(suballoc_bit_start);
2138 xblk->xb_fs_generation = cpu_to_le32(osb->fs_generation);
2139 xblk->xb_blkno = cpu_to_le64(first_blkno);
2141 xs->header = &xblk->xb_attrs.xb_header;
2142 xs->base = (void *)xs->header;
2143 xs->end = (void *)xblk + inode->i_sb->s_blocksize;
2144 xs->here = xs->header->xh_entries;
2146 ret = ocfs2_journal_dirty(handle, new_bh);
2151 di->i_xattr_loc = cpu_to_le64(first_blkno);
2152 ocfs2_journal_dirty(handle, xs->inode_bh);
2154 xblk = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
2156 if (!(le16_to_cpu(xblk->xb_flags) & OCFS2_XATTR_INDEXED)) {
2157 /* Set extended attribute into external block */
2158 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
2159 OCFS2_HAS_XATTR_FL);
2160 if (!ret || ret != -ENOSPC)
2163 ret = ocfs2_xattr_create_index_block(inode, xs, ctxt);
2168 ret = ocfs2_xattr_set_entry_index_block(inode, xi, xs, ctxt);
2175 /* Check whether the new xattr can be inserted into the inode. */
2176 static int ocfs2_xattr_can_be_in_inode(struct inode *inode,
2177 struct ocfs2_xattr_info *xi,
2178 struct ocfs2_xattr_search *xs)
2181 struct ocfs2_xattr_entry *last;
2183 size_t min_offs = xs->end - xs->base;
2188 last = xs->header->xh_entries;
2190 for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
2191 size_t offs = le16_to_cpu(last->xe_name_offset);
2192 if (offs < min_offs)
2197 free = min_offs - ((void *)last - xs->base) - sizeof(__u32);
2201 BUG_ON(!xs->not_found);
2203 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
2204 value_size = OCFS2_XATTR_ROOT_SIZE;
2206 value_size = OCFS2_XATTR_SIZE(xi->value_len);
2208 if (free >= sizeof(struct ocfs2_xattr_entry) +
2209 OCFS2_XATTR_SIZE(strlen(xi->name)) + value_size)
2215 static int ocfs2_calc_xattr_set_need(struct inode *inode,
2216 struct ocfs2_dinode *di,
2217 struct ocfs2_xattr_info *xi,
2218 struct ocfs2_xattr_search *xis,
2219 struct ocfs2_xattr_search *xbs,
2224 int ret = 0, old_in_xb = 0;
2225 int clusters_add = 0, meta_add = 0, credits = 0;
2226 struct buffer_head *bh = NULL;
2227 struct ocfs2_xattr_block *xb = NULL;
2228 struct ocfs2_xattr_entry *xe = NULL;
2229 struct ocfs2_xattr_value_root *xv = NULL;
2231 int name_offset, name_len = 0;
2232 u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2236 if (xis->not_found && xbs->not_found) {
2237 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2239 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
2240 clusters_add += new_clusters;
2241 credits += ocfs2_calc_extend_credits(inode->i_sb,
2249 if (!xis->not_found) {
2251 name_offset = le16_to_cpu(xe->xe_name_offset);
2252 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2254 credits += OCFS2_INODE_UPDATE_CREDITS;
2256 int i, block_off = 0;
2257 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2259 name_offset = le16_to_cpu(xe->xe_name_offset);
2260 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2261 i = xbs->here - xbs->header->xh_entries;
2264 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
2265 ret = ocfs2_xattr_bucket_get_name_value(inode,
2266 bucket_xh(xbs->bucket),
2269 base = bucket_block(xbs->bucket, block_off);
2270 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2273 credits += OCFS2_XATTR_BLOCK_UPDATE_CREDITS;
2278 * delete a xattr doesn't need metadata and cluster allocation.
2279 * so just calculate the credits and return.
2281 * The credits for removing the value tree will be extended
2282 * by ocfs2_remove_extent itself.
2285 if (!ocfs2_xattr_is_local(xe))
2286 credits += ocfs2_remove_extent_credits(inode->i_sb);
2291 /* do cluster allocation guess first. */
2292 value_size = le64_to_cpu(xe->xe_value_size);
2296 * In xattr set, we always try to set the xe in inode first,
2297 * so if it can be inserted into inode successfully, the old
2298 * one will be removed from the xattr block, and this xattr
2299 * will be inserted into inode as a new xattr in inode.
2301 if (ocfs2_xattr_can_be_in_inode(inode, xi, xis)) {
2302 clusters_add += new_clusters;
2303 credits += ocfs2_remove_extent_credits(inode->i_sb) +
2304 OCFS2_INODE_UPDATE_CREDITS;
2305 if (!ocfs2_xattr_is_local(xe))
2306 credits += ocfs2_calc_extend_credits(
2314 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
2315 /* the new values will be stored outside. */
2316 u32 old_clusters = 0;
2318 if (!ocfs2_xattr_is_local(xe)) {
2319 old_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2321 xv = (struct ocfs2_xattr_value_root *)
2322 (base + name_offset + name_len);
2323 value_size = OCFS2_XATTR_ROOT_SIZE;
2327 if (old_clusters >= new_clusters) {
2328 credits += ocfs2_remove_extent_credits(inode->i_sb);
2331 meta_add += ocfs2_extend_meta_needed(&xv->xr_list);
2332 clusters_add += new_clusters - old_clusters;
2333 credits += ocfs2_calc_extend_credits(inode->i_sb,
2337 if (value_size >= OCFS2_XATTR_ROOT_SIZE)
2342 * Now the new value will be stored inside. So if the new
2343 * value is smaller than the size of value root or the old
2344 * value, we don't need any allocation, otherwise we have
2345 * to guess metadata allocation.
2347 if ((ocfs2_xattr_is_local(xe) && value_size >= xi->value_len) ||
2348 (!ocfs2_xattr_is_local(xe) &&
2349 OCFS2_XATTR_ROOT_SIZE >= xi->value_len))
2354 /* calculate metadata allocation. */
2355 if (di->i_xattr_loc) {
2356 if (!xbs->xattr_bh) {
2357 ret = ocfs2_read_xattr_block(inode,
2358 le64_to_cpu(di->i_xattr_loc),
2365 xb = (struct ocfs2_xattr_block *)bh->b_data;
2367 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2369 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
2370 struct ocfs2_extent_list *el =
2371 &xb->xb_attrs.xb_root.xt_list;
2372 meta_add += ocfs2_extend_meta_needed(el);
2373 credits += ocfs2_calc_extend_credits(inode->i_sb,
2378 * This cluster will be used either for new bucket or for
2380 * If the cluster size is the same as the bucket size, one
2381 * more is needed since we may need to extend the bucket
2385 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2386 if (OCFS2_XATTR_BUCKET_SIZE ==
2387 OCFS2_SB(inode->i_sb)->s_clustersize) {
2388 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2393 credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
2397 *clusters_need = clusters_add;
2399 *meta_need = meta_add;
2401 *credits_need = credits;
2406 static int ocfs2_init_xattr_set_ctxt(struct inode *inode,
2407 struct ocfs2_dinode *di,
2408 struct ocfs2_xattr_info *xi,
2409 struct ocfs2_xattr_search *xis,
2410 struct ocfs2_xattr_search *xbs,
2411 struct ocfs2_xattr_set_ctxt *ctxt,
2414 int clusters_add, meta_add, ret;
2415 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2417 memset(ctxt, 0, sizeof(struct ocfs2_xattr_set_ctxt));
2419 ocfs2_init_dealloc_ctxt(&ctxt->dealloc);
2421 ret = ocfs2_calc_xattr_set_need(inode, di, xi, xis, xbs,
2422 &clusters_add, &meta_add, credits);
2428 mlog(0, "Set xattr %s, reserve meta blocks = %d, clusters = %d, "
2429 "credits = %d\n", xi->name, meta_add, clusters_add, *credits);
2432 ret = ocfs2_reserve_new_metadata_blocks(osb, meta_add,
2441 ret = ocfs2_reserve_clusters(osb, clusters_add, &ctxt->data_ac);
2447 if (ctxt->meta_ac) {
2448 ocfs2_free_alloc_context(ctxt->meta_ac);
2449 ctxt->meta_ac = NULL;
2453 * We cannot have an error and a non null ctxt->data_ac.
2460 static int __ocfs2_xattr_set_handle(struct inode *inode,
2461 struct ocfs2_dinode *di,
2462 struct ocfs2_xattr_info *xi,
2463 struct ocfs2_xattr_search *xis,
2464 struct ocfs2_xattr_search *xbs,
2465 struct ocfs2_xattr_set_ctxt *ctxt)
2467 int ret = 0, credits, old_found;
2470 /* Remove existing extended attribute */
2471 if (!xis->not_found)
2472 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2473 else if (!xbs->not_found)
2474 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2476 /* We always try to set extended attribute into inode first*/
2477 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2478 if (!ret && !xbs->not_found) {
2480 * If succeed and that extended attribute existing in
2481 * external block, then we will remove it.
2486 old_found = xis->not_found;
2487 xis->not_found = -ENODATA;
2488 ret = ocfs2_calc_xattr_set_need(inode,
2496 xis->not_found = old_found;
2502 ret = ocfs2_extend_trans(ctxt->handle, credits +
2503 ctxt->handle->h_buffer_credits);
2508 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2509 } else if (ret == -ENOSPC) {
2510 if (di->i_xattr_loc && !xbs->xattr_bh) {
2511 ret = ocfs2_xattr_block_find(inode,
2517 old_found = xis->not_found;
2518 xis->not_found = -ENODATA;
2519 ret = ocfs2_calc_xattr_set_need(inode,
2527 xis->not_found = old_found;
2533 ret = ocfs2_extend_trans(ctxt->handle, credits +
2534 ctxt->handle->h_buffer_credits);
2541 * If no space in inode, we will set extended attribute
2542 * into external block.
2544 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2547 if (!xis->not_found) {
2549 * If succeed and that extended attribute
2550 * existing in inode, we will remove it.
2554 xbs->not_found = -ENODATA;
2555 ret = ocfs2_calc_xattr_set_need(inode,
2568 ret = ocfs2_extend_trans(ctxt->handle, credits +
2569 ctxt->handle->h_buffer_credits);
2574 ret = ocfs2_xattr_ibody_set(inode, xi,
2585 * This function only called duing creating inode
2586 * for init security/acl xattrs of the new inode.
2587 * The xattrs could be put into ibody or extent block,
2588 * xattr bucket would not be use in this case.
2589 * transanction credits also be reserved in here.
2591 int ocfs2_xattr_set_handle(handle_t *handle,
2592 struct inode *inode,
2593 struct buffer_head *di_bh,
2599 struct ocfs2_alloc_context *meta_ac,
2600 struct ocfs2_alloc_context *data_ac)
2602 struct ocfs2_dinode *di;
2605 struct ocfs2_xattr_info xi = {
2606 .name_index = name_index,
2609 .value_len = value_len,
2612 struct ocfs2_xattr_search xis = {
2613 .not_found = -ENODATA,
2616 struct ocfs2_xattr_search xbs = {
2617 .not_found = -ENODATA,
2620 struct ocfs2_xattr_set_ctxt ctxt = {
2626 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2629 xis.inode_bh = xbs.inode_bh = di_bh;
2630 di = (struct ocfs2_dinode *)di_bh->b_data;
2632 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2634 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2637 if (xis.not_found) {
2638 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2643 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2646 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2647 brelse(xbs.xattr_bh);
2655 * Set, replace or remove an extended attribute for this inode.
2656 * value is NULL to remove an existing extended attribute, else either
2657 * create or replace an extended attribute.
2659 int ocfs2_xattr_set(struct inode *inode,
2666 struct buffer_head *di_bh = NULL;
2667 struct ocfs2_dinode *di;
2669 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2670 struct inode *tl_inode = osb->osb_tl_inode;
2671 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
2673 struct ocfs2_xattr_info xi = {
2674 .name_index = name_index,
2677 .value_len = value_len,
2680 struct ocfs2_xattr_search xis = {
2681 .not_found = -ENODATA,
2684 struct ocfs2_xattr_search xbs = {
2685 .not_found = -ENODATA,
2688 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2692 * Only xbs will be used on indexed trees. xis doesn't need a
2695 xbs.bucket = ocfs2_xattr_bucket_new(inode);
2697 mlog_errno(-ENOMEM);
2701 ret = ocfs2_inode_lock(inode, &di_bh, 1);
2704 goto cleanup_nolock;
2706 xis.inode_bh = xbs.inode_bh = di_bh;
2707 di = (struct ocfs2_dinode *)di_bh->b_data;
2709 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2711 * Scan inode and external block to find the same name
2712 * extended attribute and collect search infomation.
2714 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2717 if (xis.not_found) {
2718 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2723 if (xis.not_found && xbs.not_found) {
2725 if (flags & XATTR_REPLACE)
2732 if (flags & XATTR_CREATE)
2737 mutex_lock(&tl_inode->i_mutex);
2739 if (ocfs2_truncate_log_needs_flush(osb)) {
2740 ret = __ocfs2_flush_truncate_log(osb);
2742 mutex_unlock(&tl_inode->i_mutex);
2747 mutex_unlock(&tl_inode->i_mutex);
2749 ret = ocfs2_init_xattr_set_ctxt(inode, di, &xi, &xis,
2750 &xbs, &ctxt, &credits);
2756 ctxt.handle = ocfs2_start_trans(osb, credits);
2757 if (IS_ERR(ctxt.handle)) {
2758 ret = PTR_ERR(ctxt.handle);
2763 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2765 ocfs2_commit_trans(osb, ctxt.handle);
2768 ocfs2_free_alloc_context(ctxt.data_ac);
2770 ocfs2_free_alloc_context(ctxt.meta_ac);
2771 if (ocfs2_dealloc_has_cluster(&ctxt.dealloc))
2772 ocfs2_schedule_truncate_log_flush(osb, 1);
2773 ocfs2_run_deallocs(osb, &ctxt.dealloc);
2775 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2776 ocfs2_inode_unlock(inode, 1);
2779 brelse(xbs.xattr_bh);
2780 ocfs2_xattr_bucket_free(xbs.bucket);
2786 * Find the xattr extent rec which may contains name_hash.
2787 * e_cpos will be the first name hash of the xattr rec.
2788 * el must be the ocfs2_xattr_header.xb_attrs.xb_root.xt_list.
2790 static int ocfs2_xattr_get_rec(struct inode *inode,
2795 struct ocfs2_extent_list *el)
2798 struct buffer_head *eb_bh = NULL;
2799 struct ocfs2_extent_block *eb;
2800 struct ocfs2_extent_rec *rec = NULL;
2803 if (el->l_tree_depth) {
2804 ret = ocfs2_find_leaf(inode, el, name_hash, &eb_bh);
2810 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2813 if (el->l_tree_depth) {
2814 ocfs2_error(inode->i_sb,
2815 "Inode %lu has non zero tree depth in "
2816 "xattr tree block %llu\n", inode->i_ino,
2817 (unsigned long long)eb_bh->b_blocknr);
2823 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
2824 rec = &el->l_recs[i];
2826 if (le32_to_cpu(rec->e_cpos) <= name_hash) {
2827 e_blkno = le64_to_cpu(rec->e_blkno);
2833 ocfs2_error(inode->i_sb, "Inode %lu has bad extent "
2834 "record (%u, %u, 0) in xattr", inode->i_ino,
2835 le32_to_cpu(rec->e_cpos),
2836 ocfs2_rec_clusters(el, rec));
2841 *p_blkno = le64_to_cpu(rec->e_blkno);
2842 *num_clusters = le16_to_cpu(rec->e_leaf_clusters);
2844 *e_cpos = le32_to_cpu(rec->e_cpos);
2850 typedef int (xattr_bucket_func)(struct inode *inode,
2851 struct ocfs2_xattr_bucket *bucket,
2854 static int ocfs2_find_xe_in_bucket(struct inode *inode,
2855 struct ocfs2_xattr_bucket *bucket,
2862 int i, ret = 0, cmp = 1, block_off, new_offset;
2863 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
2864 size_t name_len = strlen(name);
2865 struct ocfs2_xattr_entry *xe = NULL;
2869 * We don't use binary search in the bucket because there
2870 * may be multiple entries with the same name hash.
2872 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
2873 xe = &xh->xh_entries[i];
2875 if (name_hash > le32_to_cpu(xe->xe_name_hash))
2877 else if (name_hash < le32_to_cpu(xe->xe_name_hash))
2880 cmp = name_index - ocfs2_xattr_get_type(xe);
2882 cmp = name_len - xe->xe_name_len;
2886 ret = ocfs2_xattr_bucket_get_name_value(inode,
2897 xe_name = bucket_block(bucket, block_off) + new_offset;
2898 if (!memcmp(name, xe_name, name_len)) {
2910 * Find the specified xattr entry in a series of buckets.
2911 * This series start from p_blkno and last for num_clusters.
2912 * The ocfs2_xattr_header.xh_num_buckets of the first bucket contains
2913 * the num of the valid buckets.
2915 * Return the buffer_head this xattr should reside in. And if the xattr's
2916 * hash is in the gap of 2 buckets, return the lower bucket.
2918 static int ocfs2_xattr_bucket_find(struct inode *inode,
2925 struct ocfs2_xattr_search *xs)
2928 struct ocfs2_xattr_header *xh = NULL;
2929 struct ocfs2_xattr_entry *xe = NULL;
2931 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2932 int low_bucket = 0, bucket, high_bucket;
2933 struct ocfs2_xattr_bucket *search;
2935 u64 blkno, lower_blkno = 0;
2937 search = ocfs2_xattr_bucket_new(inode);
2944 ret = ocfs2_read_xattr_bucket(search, p_blkno);
2950 xh = bucket_xh(search);
2951 high_bucket = le16_to_cpu(xh->xh_num_buckets) - 1;
2952 while (low_bucket <= high_bucket) {
2953 ocfs2_xattr_bucket_relse(search);
2955 bucket = (low_bucket + high_bucket) / 2;
2956 blkno = p_blkno + bucket * blk_per_bucket;
2957 ret = ocfs2_read_xattr_bucket(search, blkno);
2963 xh = bucket_xh(search);
2964 xe = &xh->xh_entries[0];
2965 if (name_hash < le32_to_cpu(xe->xe_name_hash)) {
2966 high_bucket = bucket - 1;
2971 * Check whether the hash of the last entry in our
2972 * bucket is larger than the search one. for an empty
2973 * bucket, the last one is also the first one.
2976 xe = &xh->xh_entries[le16_to_cpu(xh->xh_count) - 1];
2978 last_hash = le32_to_cpu(xe->xe_name_hash);
2980 /* record lower_blkno which may be the insert place. */
2981 lower_blkno = blkno;
2983 if (name_hash > le32_to_cpu(xe->xe_name_hash)) {
2984 low_bucket = bucket + 1;
2988 /* the searched xattr should reside in this bucket if exists. */
2989 ret = ocfs2_find_xe_in_bucket(inode, search,
2990 name_index, name, name_hash,
3000 * Record the bucket we have found.
3001 * When the xattr's hash value is in the gap of 2 buckets, we will
3002 * always set it to the previous bucket.
3005 lower_blkno = p_blkno;
3007 /* This should be in cache - we just read it during the search */
3008 ret = ocfs2_read_xattr_bucket(xs->bucket, lower_blkno);
3014 xs->header = bucket_xh(xs->bucket);
3015 xs->base = bucket_block(xs->bucket, 0);
3016 xs->end = xs->base + inode->i_sb->s_blocksize;
3019 xs->here = &xs->header->xh_entries[index];
3020 mlog(0, "find xattr %s in bucket %llu, entry = %u\n", name,
3021 (unsigned long long)bucket_blkno(xs->bucket), index);
3026 ocfs2_xattr_bucket_free(search);
3030 static int ocfs2_xattr_index_block_find(struct inode *inode,
3031 struct buffer_head *root_bh,
3034 struct ocfs2_xattr_search *xs)
3037 struct ocfs2_xattr_block *xb =
3038 (struct ocfs2_xattr_block *)root_bh->b_data;
3039 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
3040 struct ocfs2_extent_list *el = &xb_root->xt_list;
3042 u32 first_hash, num_clusters = 0;
3043 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
3045 if (le16_to_cpu(el->l_next_free_rec) == 0)
3048 mlog(0, "find xattr %s, hash = %u, index = %d in xattr tree\n",
3049 name, name_hash, name_index);
3051 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &first_hash,
3058 BUG_ON(p_blkno == 0 || num_clusters == 0 || first_hash > name_hash);
3060 mlog(0, "find xattr extent rec %u clusters from %llu, the first hash "
3061 "in the rec is %u\n", num_clusters, (unsigned long long)p_blkno,
3064 ret = ocfs2_xattr_bucket_find(inode, name_index, name, name_hash,
3065 p_blkno, first_hash, num_clusters, xs);
3071 static int ocfs2_iterate_xattr_buckets(struct inode *inode,
3074 xattr_bucket_func *func,
3078 u32 bpc = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb));
3079 u32 num_buckets = clusters * bpc;
3080 struct ocfs2_xattr_bucket *bucket;
3082 bucket = ocfs2_xattr_bucket_new(inode);
3084 mlog_errno(-ENOMEM);
3088 mlog(0, "iterating xattr buckets in %u clusters starting from %llu\n",
3089 clusters, (unsigned long long)blkno);
3091 for (i = 0; i < num_buckets; i++, blkno += bucket->bu_blocks) {
3092 ret = ocfs2_read_xattr_bucket(bucket, blkno);
3099 * The real bucket num in this series of blocks is stored
3100 * in the 1st bucket.
3103 num_buckets = le16_to_cpu(bucket_xh(bucket)->xh_num_buckets);
3105 mlog(0, "iterating xattr bucket %llu, first hash %u\n",
3106 (unsigned long long)blkno,
3107 le32_to_cpu(bucket_xh(bucket)->xh_entries[0].xe_name_hash));
3109 ret = func(inode, bucket, para);
3112 /* Fall through to bucket_relse() */
3115 ocfs2_xattr_bucket_relse(bucket);
3120 ocfs2_xattr_bucket_free(bucket);
3124 struct ocfs2_xattr_tree_list {
3130 static int ocfs2_xattr_bucket_get_name_value(struct inode *inode,
3131 struct ocfs2_xattr_header *xh,
3138 if (index < 0 || index >= le16_to_cpu(xh->xh_count))
3141 name_offset = le16_to_cpu(xh->xh_entries[index].xe_name_offset);
3143 *block_off = name_offset >> inode->i_sb->s_blocksize_bits;
3144 *new_offset = name_offset % inode->i_sb->s_blocksize;
3149 static int ocfs2_list_xattr_bucket(struct inode *inode,
3150 struct ocfs2_xattr_bucket *bucket,
3154 struct ocfs2_xattr_tree_list *xl = (struct ocfs2_xattr_tree_list *)para;
3155 int i, block_off, new_offset;
3156 const char *prefix, *name;
3158 for (i = 0 ; i < le16_to_cpu(bucket_xh(bucket)->xh_count); i++) {
3159 struct ocfs2_xattr_entry *entry = &bucket_xh(bucket)->xh_entries[i];
3160 type = ocfs2_xattr_get_type(entry);
3161 prefix = ocfs2_xattr_prefix(type);
3164 ret = ocfs2_xattr_bucket_get_name_value(inode,
3172 name = (const char *)bucket_block(bucket, block_off) +
3174 ret = ocfs2_xattr_list_entry(xl->buffer,
3178 entry->xe_name_len);
3187 static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
3188 struct ocfs2_xattr_tree_root *xt,
3192 struct ocfs2_extent_list *el = &xt->xt_list;
3194 u32 name_hash = UINT_MAX, e_cpos = 0, num_clusters = 0;
3196 struct ocfs2_xattr_tree_list xl = {
3198 .buffer_size = buffer_size,
3202 if (le16_to_cpu(el->l_next_free_rec) == 0)
3205 while (name_hash > 0) {
3206 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
3207 &e_cpos, &num_clusters, el);
3213 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
3214 ocfs2_list_xattr_bucket,
3224 name_hash = e_cpos - 1;
3232 static int cmp_xe(const void *a, const void *b)
3234 const struct ocfs2_xattr_entry *l = a, *r = b;
3235 u32 l_hash = le32_to_cpu(l->xe_name_hash);
3236 u32 r_hash = le32_to_cpu(r->xe_name_hash);
3238 if (l_hash > r_hash)
3240 if (l_hash < r_hash)
3245 static void swap_xe(void *a, void *b, int size)
3247 struct ocfs2_xattr_entry *l = a, *r = b, tmp;
3250 memcpy(l, r, sizeof(struct ocfs2_xattr_entry));
3251 memcpy(r, &tmp, sizeof(struct ocfs2_xattr_entry));
3255 * When the ocfs2_xattr_block is filled up, new bucket will be created
3256 * and all the xattr entries will be moved to the new bucket.
3257 * The header goes at the start of the bucket, and the names+values are
3258 * filled from the end. This is why *target starts as the last buffer.
3259 * Note: we need to sort the entries since they are not saved in order
3260 * in the ocfs2_xattr_block.
3262 static void ocfs2_cp_xattr_block_to_bucket(struct inode *inode,
3263 struct buffer_head *xb_bh,
3264 struct ocfs2_xattr_bucket *bucket)
3266 int i, blocksize = inode->i_sb->s_blocksize;
3267 int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
3268 u16 offset, size, off_change;
3269 struct ocfs2_xattr_entry *xe;
3270 struct ocfs2_xattr_block *xb =
3271 (struct ocfs2_xattr_block *)xb_bh->b_data;
3272 struct ocfs2_xattr_header *xb_xh = &xb->xb_attrs.xb_header;
3273 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
3274 u16 count = le16_to_cpu(xb_xh->xh_count);
3275 char *src = xb_bh->b_data;
3276 char *target = bucket_block(bucket, blks - 1);
3278 mlog(0, "cp xattr from block %llu to bucket %llu\n",
3279 (unsigned long long)xb_bh->b_blocknr,
3280 (unsigned long long)bucket_blkno(bucket));
3282 for (i = 0; i < blks; i++)
3283 memset(bucket_block(bucket, i), 0, blocksize);
3286 * Since the xe_name_offset is based on ocfs2_xattr_header,
3287 * there is a offset change corresponding to the change of
3288 * ocfs2_xattr_header's position.
3290 off_change = offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3291 xe = &xb_xh->xh_entries[count - 1];
3292 offset = le16_to_cpu(xe->xe_name_offset) + off_change;
3293 size = blocksize - offset;
3295 /* copy all the names and values. */
3296 memcpy(target + offset, src + offset, size);
3298 /* Init new header now. */
3299 xh->xh_count = xb_xh->xh_count;
3300 xh->xh_num_buckets = cpu_to_le16(1);
3301 xh->xh_name_value_len = cpu_to_le16(size);
3302 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE - size);
3304 /* copy all the entries. */
3305 target = bucket_block(bucket, 0);
3306 offset = offsetof(struct ocfs2_xattr_header, xh_entries);
3307 size = count * sizeof(struct ocfs2_xattr_entry);
3308 memcpy(target + offset, (char *)xb_xh + offset, size);
3310 /* Change the xe offset for all the xe because of the move. */
3311 off_change = OCFS2_XATTR_BUCKET_SIZE - blocksize +
3312 offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3313 for (i = 0; i < count; i++)
3314 le16_add_cpu(&xh->xh_entries[i].xe_name_offset, off_change);
3316 mlog(0, "copy entry: start = %u, size = %u, offset_change = %u\n",
3317 offset, size, off_change);
3319 sort(target + offset, count, sizeof(struct ocfs2_xattr_entry),
3324 * After we move xattr from block to index btree, we have to
3325 * update ocfs2_xattr_search to the new xe and base.
3327 * When the entry is in xattr block, xattr_bh indicates the storage place.
3328 * While if the entry is in index b-tree, "bucket" indicates the
3329 * real place of the xattr.
3331 static void ocfs2_xattr_update_xattr_search(struct inode *inode,
3332 struct ocfs2_xattr_search *xs,
3333 struct buffer_head *old_bh)
3335 char *buf = old_bh->b_data;
3336 struct ocfs2_xattr_block *old_xb = (struct ocfs2_xattr_block *)buf;
3337 struct ocfs2_xattr_header *old_xh = &old_xb->xb_attrs.xb_header;
3340 xs->header = bucket_xh(xs->bucket);
3341 xs->base = bucket_block(xs->bucket, 0);
3342 xs->end = xs->base + inode->i_sb->s_blocksize;
3347 i = xs->here - old_xh->xh_entries;
3348 xs->here = &xs->header->xh_entries[i];
3351 static int ocfs2_xattr_create_index_block(struct inode *inode,
3352 struct ocfs2_xattr_search *xs,
3353 struct ocfs2_xattr_set_ctxt *ctxt)
3358 handle_t *handle = ctxt->handle;
3359 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3360 struct ocfs2_inode_info *oi = OCFS2_I(inode);
3361 struct buffer_head *xb_bh = xs->xattr_bh;
3362 struct ocfs2_xattr_block *xb =
3363 (struct ocfs2_xattr_block *)xb_bh->b_data;
3364 struct ocfs2_xattr_tree_root *xr;
3365 u16 xb_flags = le16_to_cpu(xb->xb_flags);
3367 mlog(0, "create xattr index block for %llu\n",
3368 (unsigned long long)xb_bh->b_blocknr);
3370 BUG_ON(xb_flags & OCFS2_XATTR_INDEXED);
3371 BUG_ON(!xs->bucket);
3375 * We can use this lock for now, and maybe move to a dedicated mutex
3376 * if performance becomes a problem later.
3378 down_write(&oi->ip_alloc_sem);
3380 ret = ocfs2_journal_access_xb(handle, inode, xb_bh,
3381 OCFS2_JOURNAL_ACCESS_WRITE);
3387 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac,
3388 1, 1, &bit_off, &len);
3395 * The bucket may spread in many blocks, and
3396 * we will only touch the 1st block and the last block
3397 * in the whole bucket(one for entry and one for data).
3399 blkno = ocfs2_clusters_to_blocks(inode->i_sb, bit_off);
3401 mlog(0, "allocate 1 cluster from %llu to xattr block\n",
3402 (unsigned long long)blkno);
3404 ret = ocfs2_init_xattr_bucket(xs->bucket, blkno);
3410 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
3411 OCFS2_JOURNAL_ACCESS_CREATE);
3417 ocfs2_cp_xattr_block_to_bucket(inode, xb_bh, xs->bucket);
3418 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
3420 ocfs2_xattr_update_xattr_search(inode, xs, xb_bh);
3422 /* Change from ocfs2_xattr_header to ocfs2_xattr_tree_root */
3423 memset(&xb->xb_attrs, 0, inode->i_sb->s_blocksize -
3424 offsetof(struct ocfs2_xattr_block, xb_attrs));
3426 xr = &xb->xb_attrs.xb_root;
3427 xr->xt_clusters = cpu_to_le32(1);
3428 xr->xt_last_eb_blk = 0;
3429 xr->xt_list.l_tree_depth = 0;
3430 xr->xt_list.l_count = cpu_to_le16(ocfs2_xattr_recs_per_xb(inode->i_sb));
3431 xr->xt_list.l_next_free_rec = cpu_to_le16(1);
3433 xr->xt_list.l_recs[0].e_cpos = 0;
3434 xr->xt_list.l_recs[0].e_blkno = cpu_to_le64(blkno);
3435 xr->xt_list.l_recs[0].e_leaf_clusters = cpu_to_le16(1);
3437 xb->xb_flags = cpu_to_le16(xb_flags | OCFS2_XATTR_INDEXED);
3439 ocfs2_journal_dirty(handle, xb_bh);
3442 up_write(&oi->ip_alloc_sem);
3447 static int cmp_xe_offset(const void *a, const void *b)
3449 const struct ocfs2_xattr_entry *l = a, *r = b;
3450 u32 l_name_offset = le16_to_cpu(l->xe_name_offset);
3451 u32 r_name_offset = le16_to_cpu(r->xe_name_offset);
3453 if (l_name_offset < r_name_offset)
3455 if (l_name_offset > r_name_offset)
3461 * defrag a xattr bucket if we find that the bucket has some
3462 * holes beteen name/value pairs.
3463 * We will move all the name/value pairs to the end of the bucket
3464 * so that we can spare some space for insertion.
3466 static int ocfs2_defrag_xattr_bucket(struct inode *inode,
3468 struct ocfs2_xattr_bucket *bucket)
3471 size_t end, offset, len, value_len;
3472 struct ocfs2_xattr_header *xh;
3473 char *entries, *buf, *bucket_buf = NULL;
3474 u64 blkno = bucket_blkno(bucket);
3476 size_t blocksize = inode->i_sb->s_blocksize;
3477 struct ocfs2_xattr_entry *xe;
3480 * In order to make the operation more efficient and generic,
3481 * we copy all the blocks into a contiguous memory and do the
3482 * defragment there, so if anything is error, we will not touch
3485 bucket_buf = kmalloc(OCFS2_XATTR_BUCKET_SIZE, GFP_NOFS);
3492 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3493 memcpy(buf, bucket_block(bucket, i), blocksize);
3495 ret = ocfs2_xattr_bucket_journal_access(handle, bucket,
3496 OCFS2_JOURNAL_ACCESS_WRITE);
3502 xh = (struct ocfs2_xattr_header *)bucket_buf;
3503 entries = (char *)xh->xh_entries;
3504 xh_free_start = le16_to_cpu(xh->xh_free_start);
3506 mlog(0, "adjust xattr bucket in %llu, count = %u, "
3507 "xh_free_start = %u, xh_name_value_len = %u.\n",
3508 (unsigned long long)blkno, le16_to_cpu(xh->xh_count),
3509 xh_free_start, le16_to_cpu(xh->xh_name_value_len));
3512 * sort all the entries by their offset.
3513 * the largest will be the first, so that we can
3514 * move them to the end one by one.
3516 sort(entries, le16_to_cpu(xh->xh_count),
3517 sizeof(struct ocfs2_xattr_entry),
3518 cmp_xe_offset, swap_xe);
3520 /* Move all name/values to the end of the bucket. */
3521 xe = xh->xh_entries;
3522 end = OCFS2_XATTR_BUCKET_SIZE;
3523 for (i = 0; i < le16_to_cpu(xh->xh_count); i++, xe++) {
3524 offset = le16_to_cpu(xe->xe_name_offset);
3525 if (ocfs2_xattr_is_local(xe))
3526 value_len = OCFS2_XATTR_SIZE(
3527 le64_to_cpu(xe->xe_value_size));
3529 value_len = OCFS2_XATTR_ROOT_SIZE;
3530 len = OCFS2_XATTR_SIZE(xe->xe_name_len) + value_len;
3533 * We must make sure that the name/value pair
3534 * exist in the same block. So adjust end to
3535 * the previous block end if needed.
3537 if (((end - len) / blocksize !=
3538 (end - 1) / blocksize))
3539 end = end - end % blocksize;
3541 if (end > offset + len) {
3542 memmove(bucket_buf + end - len,
3543 bucket_buf + offset, len);
3544 xe->xe_name_offset = cpu_to_le16(end - len);
3547 mlog_bug_on_msg(end < offset + len, "Defrag check failed for "
3548 "bucket %llu\n", (unsigned long long)blkno);
3553 mlog_bug_on_msg(xh_free_start > end, "Defrag check failed for "
3554 "bucket %llu\n", (unsigned long long)blkno);
3556 if (xh_free_start == end)
3559 memset(bucket_buf + xh_free_start, 0, end - xh_free_start);
3560 xh->xh_free_start = cpu_to_le16(end);
3562 /* sort the entries by their name_hash. */
3563 sort(entries, le16_to_cpu(xh->xh_count),
3564 sizeof(struct ocfs2_xattr_entry),
3568 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3569 memcpy(bucket_block(bucket, i), buf, blocksize);
3570 ocfs2_xattr_bucket_journal_dirty(handle, bucket);
3578 * prev_blkno points to the start of an existing extent. new_blkno
3579 * points to a newly allocated extent. Because we know each of our
3580 * clusters contains more than bucket, we can easily split one cluster
3581 * at a bucket boundary. So we take the last cluster of the existing
3582 * extent and split it down the middle. We move the last half of the
3583 * buckets in the last cluster of the existing extent over to the new
3586 * first_bh is the buffer at prev_blkno so we can update the existing
3587 * extent's bucket count. header_bh is the bucket were we were hoping
3588 * to insert our xattr. If the bucket move places the target in the new
3589 * extent, we'll update first_bh and header_bh after modifying the old
3592 * first_hash will be set as the 1st xe's name_hash in the new extent.
3594 static int ocfs2_mv_xattr_bucket_cross_cluster(struct inode *inode,
3596 struct ocfs2_xattr_bucket *first,
3597 struct ocfs2_xattr_bucket *target,
3603 struct super_block *sb = inode->i_sb;
3604 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(sb);
3605 int num_buckets = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(sb));
3606 int to_move = num_buckets / 2;
3608 u64 last_cluster_blkno = bucket_blkno(first) +
3609 ((num_clusters - 1) * ocfs2_clusters_to_blocks(sb, 1));
3611 BUG_ON(le16_to_cpu(bucket_xh(first)->xh_num_buckets) < num_buckets);
3612 BUG_ON(OCFS2_XATTR_BUCKET_SIZE == OCFS2_SB(sb)->s_clustersize);
3614 mlog(0, "move half of xattrs in cluster %llu to %llu\n",
3615 (unsigned long long)last_cluster_blkno, (unsigned long long)new_blkno);
3617 ret = ocfs2_mv_xattr_buckets(inode, handle, bucket_blkno(first),
3618 last_cluster_blkno, new_blkno,
3619 to_move, first_hash);
3625 /* This is the first bucket that got moved */
3626 src_blkno = last_cluster_blkno + (to_move * blks_per_bucket);
3629 * If the target bucket was part of the moved buckets, we need to
3630 * update first and target.
3632 if (bucket_blkno(target) >= src_blkno) {
3633 /* Find the block for the new target bucket */
3634 src_blkno = new_blkno +
3635 (bucket_blkno(target) - src_blkno);
3637 ocfs2_xattr_bucket_relse(first);
3638 ocfs2_xattr_bucket_relse(target);
3641 * These shouldn't fail - the buffers are in the
3642 * journal from ocfs2_cp_xattr_bucket().
3644 ret = ocfs2_read_xattr_bucket(first, new_blkno);
3649 ret = ocfs2_read_xattr_bucket(target, src_blkno);
3660 * Find the suitable pos when we divide a bucket into 2.
3661 * We have to make sure the xattrs with the same hash value exist
3662 * in the same bucket.
3664 * If this ocfs2_xattr_header covers more than one hash value, find a
3665 * place where the hash value changes. Try to find the most even split.
3666 * The most common case is that all entries have different hash values,
3667 * and the first check we make will find a place to split.
3669 static int ocfs2_xattr_find_divide_pos(struct ocfs2_xattr_header *xh)
3671 struct ocfs2_xattr_entry *entries = xh->xh_entries;
3672 int count = le16_to_cpu(xh->xh_count);
3673 int delta, middle = count / 2;
3676 * We start at the middle. Each step gets farther away in both
3677 * directions. We therefore hit the change in hash value
3678 * nearest to the middle. Note that this loop does not execute for
3681 for (delta = 0; delta < middle; delta++) {
3682 /* Let's check delta earlier than middle */
3683 if (cmp_xe(&entries[middle - delta - 1],
3684 &entries[middle - delta]))
3685 return middle - delta;
3687 /* For even counts, don't walk off the end */
3688 if ((middle + delta + 1) == count)
3691 /* Now try delta past middle */
3692 if (cmp_xe(&entries[middle + delta],
3693 &entries[middle + delta + 1]))
3694 return middle + delta + 1;
3697 /* Every entry had the same hash */
3702 * Move some xattrs in old bucket(blk) to new bucket(new_blk).
3703 * first_hash will record the 1st hash of the new bucket.
3705 * Normally half of the xattrs will be moved. But we have to make
3706 * sure that the xattrs with the same hash value are stored in the
3707 * same bucket. If all the xattrs in this bucket have the same hash
3708 * value, the new bucket will be initialized as an empty one and the
3709 * first_hash will be initialized as (hash_value+1).
3711 static int ocfs2_divide_xattr_bucket(struct inode *inode,
3716 int new_bucket_head)
3719 int count, start, len, name_value_len = 0, xe_len, name_offset = 0;
3720 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
3721 struct ocfs2_xattr_header *xh;
3722 struct ocfs2_xattr_entry *xe;
3723 int blocksize = inode->i_sb->s_blocksize;
3725 mlog(0, "move some of xattrs from bucket %llu to %llu\n",
3726 (unsigned long long)blk, (unsigned long long)new_blk);
3728 s_bucket = ocfs2_xattr_bucket_new(inode);
3729 t_bucket = ocfs2_xattr_bucket_new(inode);
3730 if (!s_bucket || !t_bucket) {
3736 ret = ocfs2_read_xattr_bucket(s_bucket, blk);
3742 ret = ocfs2_xattr_bucket_journal_access(handle, s_bucket,
3743 OCFS2_JOURNAL_ACCESS_WRITE);
3750 * Even if !new_bucket_head, we're overwriting t_bucket. Thus,
3751 * there's no need to read it.
3753 ret = ocfs2_init_xattr_bucket(t_bucket, new_blk);
3760 * Hey, if we're overwriting t_bucket, what difference does
3761 * ACCESS_CREATE vs ACCESS_WRITE make? See the comment in the
3762 * same part of ocfs2_cp_xattr_bucket().
3764 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
3766 OCFS2_JOURNAL_ACCESS_CREATE :
3767 OCFS2_JOURNAL_ACCESS_WRITE);
3773 xh = bucket_xh(s_bucket);
3774 count = le16_to_cpu(xh->xh_count);
3775 start = ocfs2_xattr_find_divide_pos(xh);
3777 if (start == count) {
3778 xe = &xh->xh_entries[start-1];
3781 * initialized a new empty bucket here.
3782 * The hash value is set as one larger than
3783 * that of the last entry in the previous bucket.
3785 for (i = 0; i < t_bucket->bu_blocks; i++)
3786 memset(bucket_block(t_bucket, i), 0, blocksize);
3788 xh = bucket_xh(t_bucket);
3789 xh->xh_free_start = cpu_to_le16(blocksize);
3790 xh->xh_entries[0].xe_name_hash = xe->xe_name_hash;
3791 le32_add_cpu(&xh->xh_entries[0].xe_name_hash, 1);
3793 goto set_num_buckets;
3796 /* copy the whole bucket to the new first. */
3797 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
3799 /* update the new bucket. */
3800 xh = bucket_xh(t_bucket);
3803 * Calculate the total name/value len and xh_free_start for
3804 * the old bucket first.
3806 name_offset = OCFS2_XATTR_BUCKET_SIZE;
3808 for (i = 0; i < start; i++) {
3809 xe = &xh->xh_entries[i];
3810 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3811 if (ocfs2_xattr_is_local(xe))
3813 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3815 xe_len += OCFS2_XATTR_ROOT_SIZE;
3816 name_value_len += xe_len;
3817 if (le16_to_cpu(xe->xe_name_offset) < name_offset)
3818 name_offset = le16_to_cpu(xe->xe_name_offset);
3822 * Now begin the modification to the new bucket.
3824 * In the new bucket, We just move the xattr entry to the beginning
3825 * and don't touch the name/value. So there will be some holes in the
3826 * bucket, and they will be removed when ocfs2_defrag_xattr_bucket is
3829 xe = &xh->xh_entries[start];
3830 len = sizeof(struct ocfs2_xattr_entry) * (count - start);
3831 mlog(0, "mv xattr entry len %d from %d to %d\n", len,
3832 (int)((char *)xe - (char *)xh),
3833 (int)((char *)xh->xh_entries - (char *)xh));
3834 memmove((char *)xh->xh_entries, (char *)xe, len);
3835 xe = &xh->xh_entries[count - start];
3836 len = sizeof(struct ocfs2_xattr_entry) * start;
3837 memset((char *)xe, 0, len);
3839 le16_add_cpu(&xh->xh_count, -start);
3840 le16_add_cpu(&xh->xh_name_value_len, -name_value_len);
3842 /* Calculate xh_free_start for the new bucket. */
3843 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
3844 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
3845 xe = &xh->xh_entries[i];
3846 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3847 if (ocfs2_xattr_is_local(xe))
3849 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3851 xe_len += OCFS2_XATTR_ROOT_SIZE;
3852 if (le16_to_cpu(xe->xe_name_offset) <
3853 le16_to_cpu(xh->xh_free_start))
3854 xh->xh_free_start = xe->xe_name_offset;
3858 /* set xh->xh_num_buckets for the new xh. */
3859 if (new_bucket_head)
3860 xh->xh_num_buckets = cpu_to_le16(1);
3862 xh->xh_num_buckets = 0;
3864 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
3866 /* store the first_hash of the new bucket. */
3868 *first_hash = le32_to_cpu(xh->xh_entries[0].xe_name_hash);
3871 * Now only update the 1st block of the old bucket. If we
3872 * just added a new empty bucket, there is no need to modify
3878 xh = bucket_xh(s_bucket);
3879 memset(&xh->xh_entries[start], 0,
3880 sizeof(struct ocfs2_xattr_entry) * (count - start));
3881 xh->xh_count = cpu_to_le16(start);
3882 xh->xh_free_start = cpu_to_le16(name_offset);
3883 xh->xh_name_value_len = cpu_to_le16(name_value_len);
3885 ocfs2_xattr_bucket_journal_dirty(handle, s_bucket);
3888 ocfs2_xattr_bucket_free(s_bucket);
3889 ocfs2_xattr_bucket_free(t_bucket);
3895 * Copy xattr from one bucket to another bucket.
3897 * The caller must make sure that the journal transaction
3898 * has enough space for journaling.
3900 static int ocfs2_cp_xattr_bucket(struct inode *inode,
3907 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
3909 BUG_ON(s_blkno == t_blkno);
3911 mlog(0, "cp bucket %llu to %llu, target is %d\n",
3912 (unsigned long long)s_blkno, (unsigned long long)t_blkno,
3915 s_bucket = ocfs2_xattr_bucket_new(inode);
3916 t_bucket = ocfs2_xattr_bucket_new(inode);
3917 if (!s_bucket || !t_bucket) {
3923 ret = ocfs2_read_xattr_bucket(s_bucket, s_blkno);
3928 * Even if !t_is_new, we're overwriting t_bucket. Thus,
3929 * there's no need to read it.
3931 ret = ocfs2_init_xattr_bucket(t_bucket, t_blkno);
3936 * Hey, if we're overwriting t_bucket, what difference does
3937 * ACCESS_CREATE vs ACCESS_WRITE make? Well, if we allocated a new
3938 * cluster to fill, we came here from
3939 * ocfs2_mv_xattr_buckets(), and it is really new -
3940 * ACCESS_CREATE is required. But we also might have moved data
3941 * out of t_bucket before extending back into it.
3942 * ocfs2_add_new_xattr_bucket() can do this - its call to
3943 * ocfs2_add_new_xattr_cluster() may have created a new extent
3944 * and copied out the end of the old extent. Then it re-extends
3945 * the old extent back to create space for new xattrs. That's
3946 * how we get here, and the bucket isn't really new.
3948 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
3950 OCFS2_JOURNAL_ACCESS_CREATE :
3951 OCFS2_JOURNAL_ACCESS_WRITE);
3955 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
3956 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
3959 ocfs2_xattr_bucket_free(t_bucket);
3960 ocfs2_xattr_bucket_free(s_bucket);
3966 * src_blk points to the start of an existing extent. last_blk points to
3967 * last cluster in that extent. to_blk points to a newly allocated
3968 * extent. We copy the buckets from the cluster at last_blk to the new
3969 * extent. If start_bucket is non-zero, we skip that many buckets before
3970 * we start copying. The new extent's xh_num_buckets gets set to the
3971 * number of buckets we copied. The old extent's xh_num_buckets shrinks
3972 * by the same amount.
3974 static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
3975 u64 src_blk, u64 last_blk, u64 to_blk,
3976 unsigned int start_bucket,
3979 int i, ret, credits;
3980 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3981 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
3982 int num_buckets = ocfs2_xattr_buckets_per_cluster(osb);
3983 struct ocfs2_xattr_bucket *old_first, *new_first;
3985 mlog(0, "mv xattrs from cluster %llu to %llu\n",
3986 (unsigned long long)last_blk, (unsigned long long)to_blk);
3988 BUG_ON(start_bucket >= num_buckets);
3990 num_buckets -= start_bucket;
3991 last_blk += (start_bucket * blks_per_bucket);
3994 /* The first bucket of the original extent */
3995 old_first = ocfs2_xattr_bucket_new(inode);
3996 /* The first bucket of the new extent */
3997 new_first = ocfs2_xattr_bucket_new(inode);
3998 if (!old_first || !new_first) {
4004 ret = ocfs2_read_xattr_bucket(old_first, src_blk);
4011 * We need to update the first bucket of the old extent and all
4012 * the buckets going to the new extent.
4014 credits = ((num_buckets + 1) * blks_per_bucket) +
4015 handle->h_buffer_credits;
4016 ret = ocfs2_extend_trans(handle, credits);
4022 ret = ocfs2_xattr_bucket_journal_access(handle, old_first,
4023 OCFS2_JOURNAL_ACCESS_WRITE);
4029 for (i = 0; i < num_buckets; i++) {
4030 ret = ocfs2_cp_xattr_bucket(inode, handle,
4031 last_blk + (i * blks_per_bucket),
4032 to_blk + (i * blks_per_bucket),
4041 * Get the new bucket ready before we dirty anything
4042 * (This actually shouldn't fail, because we already dirtied
4043 * it once in ocfs2_cp_xattr_bucket()).
4045 ret = ocfs2_read_xattr_bucket(new_first, to_blk);
4050 ret = ocfs2_xattr_bucket_journal_access(handle, new_first,
4051 OCFS2_JOURNAL_ACCESS_WRITE);
4057 /* Now update the headers */
4058 le16_add_cpu(&bucket_xh(old_first)->xh_num_buckets, -num_buckets);
4059 ocfs2_xattr_bucket_journal_dirty(handle, old_first);
4061 bucket_xh(new_first)->xh_num_buckets = cpu_to_le16(num_buckets);
4062 ocfs2_xattr_bucket_journal_dirty(handle, new_first);
4065 *first_hash = le32_to_cpu(bucket_xh(new_first)->xh_entries[0].xe_name_hash);
4068 ocfs2_xattr_bucket_free(new_first);
4069 ocfs2_xattr_bucket_free(old_first);
4074 * Move some xattrs in this cluster to the new cluster.
4075 * This function should only be called when bucket size == cluster size.
4076 * Otherwise ocfs2_mv_xattr_bucket_cross_cluster should be used instead.
4078 static int ocfs2_divide_xattr_cluster(struct inode *inode,
4084 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
4085 int ret, credits = 2 * blk_per_bucket + handle->h_buffer_credits;
4087 BUG_ON(OCFS2_XATTR_BUCKET_SIZE < OCFS2_SB(inode->i_sb)->s_clustersize);
4089 ret = ocfs2_extend_trans(handle, credits);
4095 /* Move half of the xattr in start_blk to the next bucket. */
4096 return ocfs2_divide_xattr_bucket(inode, handle, prev_blk,
4097 new_blk, first_hash, 1);
4101 * Move some xattrs from the old cluster to the new one since they are not
4102 * contiguous in ocfs2 xattr tree.
4104 * new_blk starts a new separate cluster, and we will move some xattrs from
4105 * prev_blk to it. v_start will be set as the first name hash value in this
4106 * new cluster so that it can be used as e_cpos during tree insertion and
4107 * don't collide with our original b-tree operations. first_bh and header_bh
4108 * will also be updated since they will be used in ocfs2_extend_xattr_bucket
4109 * to extend the insert bucket.
4111 * The problem is how much xattr should we move to the new one and when should
4112 * we update first_bh and header_bh?
4113 * 1. If cluster size > bucket size, that means the previous cluster has more
4114 * than 1 bucket, so just move half nums of bucket into the new cluster and
4115 * update the first_bh and header_bh if the insert bucket has been moved
4116 * to the new cluster.
4117 * 2. If cluster_size == bucket_size:
4118 * a) If the previous extent rec has more than one cluster and the insert
4119 * place isn't in the last cluster, copy the entire last cluster to the
4120 * new one. This time, we don't need to upate the first_bh and header_bh
4121 * since they will not be moved into the new cluster.
4122 * b) Otherwise, move the bottom half of the xattrs in the last cluster into
4123 * the new one. And we set the extend flag to zero if the insert place is
4124 * moved into the new allocated cluster since no extend is needed.
4126 static int ocfs2_adjust_xattr_cross_cluster(struct inode *inode,
4128 struct ocfs2_xattr_bucket *first,
4129 struct ocfs2_xattr_bucket *target,
4137 mlog(0, "adjust xattrs from cluster %llu len %u to %llu\n",
4138 (unsigned long long)bucket_blkno(first), prev_clusters,
4139 (unsigned long long)new_blk);
4141 if (ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb)) > 1) {
4142 ret = ocfs2_mv_xattr_bucket_cross_cluster(inode,
4151 /* The start of the last cluster in the first extent */
4152 u64 last_blk = bucket_blkno(first) +
4153 ((prev_clusters - 1) *
4154 ocfs2_clusters_to_blocks(inode->i_sb, 1));
4156 if (prev_clusters > 1 && bucket_blkno(target) != last_blk) {
4157 ret = ocfs2_mv_xattr_buckets(inode, handle,
4158 bucket_blkno(first),
4159 last_blk, new_blk, 0,
4164 ret = ocfs2_divide_xattr_cluster(inode, handle,
4170 if ((bucket_blkno(target) == last_blk) && extend)
4179 * Add a new cluster for xattr storage.
4181 * If the new cluster is contiguous with the previous one, it will be
4182 * appended to the same extent record, and num_clusters will be updated.
4183 * If not, we will insert a new extent for it and move some xattrs in
4184 * the last cluster into the new allocated one.
4185 * We also need to limit the maximum size of a btree leaf, otherwise we'll
4186 * lose the benefits of hashing because we'll have to search large leaves.
4187 * So now the maximum size is OCFS2_MAX_XATTR_TREE_LEAF_SIZE(or clustersize,
4190 * first_bh is the first block of the previous extent rec and header_bh
4191 * indicates the bucket we will insert the new xattrs. They will be updated
4192 * when the header_bh is moved into the new cluster.
4194 static int ocfs2_add_new_xattr_cluster(struct inode *inode,
4195 struct buffer_head *root_bh,
4196 struct ocfs2_xattr_bucket *first,
4197 struct ocfs2_xattr_bucket *target,
4201 struct ocfs2_xattr_set_ctxt *ctxt)
4204 u16 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
4205 u32 prev_clusters = *num_clusters;
4206 u32 clusters_to_add = 1, bit_off, num_bits, v_start = 0;
4208 handle_t *handle = ctxt->handle;
4209 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4210 struct ocfs2_extent_tree et;
4212 mlog(0, "Add new xattr cluster for %llu, previous xattr hash = %u, "
4213 "previous xattr blkno = %llu\n",
4214 (unsigned long long)OCFS2_I(inode)->ip_blkno,
4215 prev_cpos, (unsigned long long)bucket_blkno(first));
4217 ocfs2_init_xattr_tree_extent_tree(&et, inode, root_bh);
4219 ret = ocfs2_journal_access_xb(handle, inode, root_bh,
4220 OCFS2_JOURNAL_ACCESS_WRITE);
4226 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac, 1,
4227 clusters_to_add, &bit_off, &num_bits);
4234 BUG_ON(num_bits > clusters_to_add);
4236 block = ocfs2_clusters_to_blocks(osb->sb, bit_off);
4237 mlog(0, "Allocating %u clusters at block %u for xattr in inode %llu\n",
4238 num_bits, bit_off, (unsigned long long)OCFS2_I(inode)->ip_blkno);
4240 if (bucket_blkno(first) + (prev_clusters * bpc) == block &&
4241 (prev_clusters + num_bits) << osb->s_clustersize_bits <=
4242 OCFS2_MAX_XATTR_TREE_LEAF_SIZE) {
4244 * If this cluster is contiguous with the old one and
4245 * adding this new cluster, we don't surpass the limit of
4246 * OCFS2_MAX_XATTR_TREE_LEAF_SIZE, cool. We will let it be
4247 * initialized and used like other buckets in the previous
4249 * So add it as a contiguous one. The caller will handle
4252 v_start = prev_cpos + prev_clusters;
4253 *num_clusters = prev_clusters + num_bits;
4254 mlog(0, "Add contiguous %u clusters to previous extent rec.\n",
4257 ret = ocfs2_adjust_xattr_cross_cluster(inode,
4271 mlog(0, "Insert %u clusters at block %llu for xattr at %u\n",
4272 num_bits, (unsigned long long)block, v_start);
4273 ret = ocfs2_insert_extent(osb, handle, inode, &et, v_start, block,
4274 num_bits, 0, ctxt->meta_ac);
4280 ret = ocfs2_journal_dirty(handle, root_bh);
4289 * We are given an extent. 'first' is the bucket at the very front of
4290 * the extent. The extent has space for an additional bucket past
4291 * bucket_xh(first)->xh_num_buckets. 'target_blkno' is the block number
4292 * of the target bucket. We wish to shift every bucket past the target
4293 * down one, filling in that additional space. When we get back to the
4294 * target, we split the target between itself and the now-empty bucket
4295 * at target+1 (aka, target_blkno + blks_per_bucket).
4297 static int ocfs2_extend_xattr_bucket(struct inode *inode,
4299 struct ocfs2_xattr_bucket *first,
4304 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4305 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
4307 u16 new_bucket = le16_to_cpu(bucket_xh(first)->xh_num_buckets);
4309 mlog(0, "extend xattr bucket in %llu, xattr extend rec starting "
4310 "from %llu, len = %u\n", (unsigned long long)target_blk,
4311 (unsigned long long)bucket_blkno(first), num_clusters);
4313 /* The extent must have room for an additional bucket */
4314 BUG_ON(new_bucket >=
4315 (num_clusters * ocfs2_xattr_buckets_per_cluster(osb)));
4317 /* end_blk points to the last existing bucket */
4318 end_blk = bucket_blkno(first) + ((new_bucket - 1) * blk_per_bucket);
4321 * end_blk is the start of the last existing bucket.
4322 * Thus, (end_blk - target_blk) covers the target bucket and
4323 * every bucket after it up to, but not including, the last
4324 * existing bucket. Then we add the last existing bucket, the
4325 * new bucket, and the first bucket (3 * blk_per_bucket).
4327 credits = (end_blk - target_blk) + (3 * blk_per_bucket) +
4328 handle->h_buffer_credits;
4329 ret = ocfs2_extend_trans(handle, credits);
4335 ret = ocfs2_xattr_bucket_journal_access(handle, first,
4336 OCFS2_JOURNAL_ACCESS_WRITE);
4342 while (end_blk != target_blk) {
4343 ret = ocfs2_cp_xattr_bucket(inode, handle, end_blk,
4344 end_blk + blk_per_bucket, 0);
4347 end_blk -= blk_per_bucket;
4350 /* Move half of the xattr in target_blkno to the next bucket. */
4351 ret = ocfs2_divide_xattr_bucket(inode, handle, target_blk,
4352 target_blk + blk_per_bucket, NULL, 0);
4354 le16_add_cpu(&bucket_xh(first)->xh_num_buckets, 1);
4355 ocfs2_xattr_bucket_journal_dirty(handle, first);
4362 * Add new xattr bucket in an extent record and adjust the buckets
4363 * accordingly. xb_bh is the ocfs2_xattr_block, and target is the
4364 * bucket we want to insert into.
4366 * In the easy case, we will move all the buckets after target down by
4367 * one. Half of target's xattrs will be moved to the next bucket.
4369 * If current cluster is full, we'll allocate a new one. This may not
4370 * be contiguous. The underlying calls will make sure that there is
4371 * space for the insert, shifting buckets around if necessary.
4372 * 'target' may be moved by those calls.
4374 static int ocfs2_add_new_xattr_bucket(struct inode *inode,
4375 struct buffer_head *xb_bh,
4376 struct ocfs2_xattr_bucket *target,
4377 struct ocfs2_xattr_set_ctxt *ctxt)
4379 struct ocfs2_xattr_block *xb =
4380 (struct ocfs2_xattr_block *)xb_bh->b_data;
4381 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
4382 struct ocfs2_extent_list *el = &xb_root->xt_list;
4384 le32_to_cpu(bucket_xh(target)->xh_entries[0].xe_name_hash);
4385 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4386 int ret, num_buckets, extend = 1;
4388 u32 e_cpos, num_clusters;
4389 /* The bucket at the front of the extent */
4390 struct ocfs2_xattr_bucket *first;
4392 mlog(0, "Add new xattr bucket starting from %llu\n",
4393 (unsigned long long)bucket_blkno(target));
4395 /* The first bucket of the original extent */
4396 first = ocfs2_xattr_bucket_new(inode);
4403 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &e_cpos,
4410 ret = ocfs2_read_xattr_bucket(first, p_blkno);
4416 num_buckets = ocfs2_xattr_buckets_per_cluster(osb) * num_clusters;
4417 if (num_buckets == le16_to_cpu(bucket_xh(first)->xh_num_buckets)) {
4419 * This can move first+target if the target bucket moves
4420 * to the new extent.
4422 ret = ocfs2_add_new_xattr_cluster(inode,
4437 ret = ocfs2_extend_xattr_bucket(inode,
4440 bucket_blkno(target),
4447 ocfs2_xattr_bucket_free(first);
4452 static inline char *ocfs2_xattr_bucket_get_val(struct inode *inode,
4453 struct ocfs2_xattr_bucket *bucket,
4456 int block_off = offs >> inode->i_sb->s_blocksize_bits;
4458 offs = offs % inode->i_sb->s_blocksize;
4459 return bucket_block(bucket, block_off) + offs;
4463 * Handle the normal xattr set, including replace, delete and new.
4465 * Note: "local" indicates the real data's locality. So we can't
4466 * just its bucket locality by its length.
4468 static void ocfs2_xattr_set_entry_normal(struct inode *inode,
4469 struct ocfs2_xattr_info *xi,
4470 struct ocfs2_xattr_search *xs,
4474 struct ocfs2_xattr_entry *last, *xe;
4475 int name_len = strlen(xi->name);
4476 struct ocfs2_xattr_header *xh = xs->header;
4477 u16 count = le16_to_cpu(xh->xh_count), start;
4478 size_t blocksize = inode->i_sb->s_blocksize;
4480 size_t offs, size, new_size;
4482 last = &xh->xh_entries[count];
4483 if (!xs->not_found) {
4485 offs = le16_to_cpu(xe->xe_name_offset);
4486 if (ocfs2_xattr_is_local(xe))
4487 size = OCFS2_XATTR_SIZE(name_len) +
4488 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
4490 size = OCFS2_XATTR_SIZE(name_len) +
4491 OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
4494 * If the new value will be stored outside, xi->value has been
4495 * initalized as an empty ocfs2_xattr_value_root, and the same
4496 * goes with xi->value_len, so we can set new_size safely here.
4497 * See ocfs2_xattr_set_in_bucket.
4499 new_size = OCFS2_XATTR_SIZE(name_len) +
4500 OCFS2_XATTR_SIZE(xi->value_len);
4502 le16_add_cpu(&xh->xh_name_value_len, -size);
4504 if (new_size > size)
4505 goto set_new_name_value;
4507 /* Now replace the old value with new one. */
4509 xe->xe_value_size = cpu_to_le64(xi->value_len);
4511 xe->xe_value_size = 0;
4513 val = ocfs2_xattr_bucket_get_val(inode,
4515 memset(val + OCFS2_XATTR_SIZE(name_len), 0,
4516 size - OCFS2_XATTR_SIZE(name_len));
4517 if (OCFS2_XATTR_SIZE(xi->value_len) > 0)
4518 memcpy(val + OCFS2_XATTR_SIZE(name_len),
4519 xi->value, xi->value_len);
4521 le16_add_cpu(&xh->xh_name_value_len, new_size);
4522 ocfs2_xattr_set_local(xe, local);
4526 * Remove the old entry if there is more than one.
4527 * We don't remove the last entry so that we can
4528 * use it to indicate the hash value of the empty
4532 le16_add_cpu(&xh->xh_count, -1);
4535 (void *)last - (void *)xe);
4537 sizeof(struct ocfs2_xattr_entry));
4540 cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
4545 /* find a new entry for insert. */
4546 int low = 0, high = count - 1, tmp;
4547 struct ocfs2_xattr_entry *tmp_xe;
4549 while (low <= high && count) {
4550 tmp = (low + high) / 2;
4551 tmp_xe = &xh->xh_entries[tmp];
4553 if (name_hash > le32_to_cpu(tmp_xe->xe_name_hash))
4555 else if (name_hash <
4556 le32_to_cpu(tmp_xe->xe_name_hash))
4564 xe = &xh->xh_entries[low];
4566 memmove(xe + 1, xe, (void *)last - (void *)xe);
4568 le16_add_cpu(&xh->xh_count, 1);
4569 memset(xe, 0, sizeof(struct ocfs2_xattr_entry));
4570 xe->xe_name_hash = cpu_to_le32(name_hash);
4571 xe->xe_name_len = name_len;
4572 ocfs2_xattr_set_type(xe, xi->name_index);
4576 /* Insert the new name+value. */
4577 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(xi->value_len);
4580 * We must make sure that the name/value pair
4581 * exists in the same block.
4583 offs = le16_to_cpu(xh->xh_free_start);
4584 start = offs - size;
4586 if (start >> inode->i_sb->s_blocksize_bits !=
4587 (offs - 1) >> inode->i_sb->s_blocksize_bits) {
4588 offs = offs - offs % blocksize;
4589 xh->xh_free_start = cpu_to_le16(offs);
4592 val = ocfs2_xattr_bucket_get_val(inode, xs->bucket, offs - size);
4593 xe->xe_name_offset = cpu_to_le16(offs - size);
4595 memset(val, 0, size);
4596 memcpy(val, xi->name, name_len);
4597 memcpy(val + OCFS2_XATTR_SIZE(name_len), xi->value, xi->value_len);
4599 xe->xe_value_size = cpu_to_le64(xi->value_len);
4600 ocfs2_xattr_set_local(xe, local);
4602 le16_add_cpu(&xh->xh_free_start, -size);
4603 le16_add_cpu(&xh->xh_name_value_len, size);
4609 * Set the xattr entry in the specified bucket.
4610 * The bucket is indicated by xs->bucket and it should have the enough
4611 * space for the xattr insertion.
4613 static int ocfs2_xattr_set_entry_in_bucket(struct inode *inode,
4615 struct ocfs2_xattr_info *xi,
4616 struct ocfs2_xattr_search *xs,
4623 mlog(0, "Set xattr entry len = %lu index = %d in bucket %llu\n",
4624 (unsigned long)xi->value_len, xi->name_index,
4625 (unsigned long long)bucket_blkno(xs->bucket));
4627 if (!xs->bucket->bu_bhs[1]) {
4628 blkno = bucket_blkno(xs->bucket);
4629 ocfs2_xattr_bucket_relse(xs->bucket);
4630 ret = ocfs2_read_xattr_bucket(xs->bucket, blkno);
4637 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
4638 OCFS2_JOURNAL_ACCESS_WRITE);
4644 ocfs2_xattr_set_entry_normal(inode, xi, xs, name_hash, local);
4645 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
4652 * Truncate the specified xe_off entry in xattr bucket.
4653 * bucket is indicated by header_bh and len is the new length.
4654 * Both the ocfs2_xattr_value_root and the entry will be updated here.
4656 * Copy the new updated xe and xe_value_root to new_xe and new_xv if needed.
4658 static int ocfs2_xattr_bucket_value_truncate(struct inode *inode,
4659 struct ocfs2_xattr_bucket *bucket,
4662 struct ocfs2_xattr_set_ctxt *ctxt)
4666 struct ocfs2_xattr_entry *xe;
4667 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
4668 size_t blocksize = inode->i_sb->s_blocksize;
4669 struct ocfs2_xattr_value_buf vb = {
4670 .vb_access = ocfs2_journal_access,
4673 xe = &xh->xh_entries[xe_off];
4675 BUG_ON(!xe || ocfs2_xattr_is_local(xe));
4677 offset = le16_to_cpu(xe->xe_name_offset) +
4678 OCFS2_XATTR_SIZE(xe->xe_name_len);
4680 value_blk = offset / blocksize;
4682 /* We don't allow ocfs2_xattr_value to be stored in different block. */
4683 BUG_ON(value_blk != (offset + OCFS2_XATTR_ROOT_SIZE - 1) / blocksize);
4685 vb.vb_bh = bucket->bu_bhs[value_blk];
4688 vb.vb_xv = (struct ocfs2_xattr_value_root *)
4689 (vb.vb_bh->b_data + offset % blocksize);
4691 ret = ocfs2_xattr_bucket_journal_access(ctxt->handle, bucket,
4692 OCFS2_JOURNAL_ACCESS_WRITE);
4699 * From here on out we have to dirty the bucket. The generic
4700 * value calls only modify one of the bucket's bhs, but we need
4701 * to send the bucket at once. So if they error, they *could* have
4702 * modified something. We have to assume they did, and dirty
4703 * the whole bucket. This leaves us in a consistent state.
4705 mlog(0, "truncate %u in xattr bucket %llu to %d bytes.\n",
4706 xe_off, (unsigned long long)bucket_blkno(bucket), len);
4707 ret = ocfs2_xattr_value_truncate(inode, &vb, len, ctxt);
4713 xe->xe_value_size = cpu_to_le64(len);
4716 ocfs2_xattr_bucket_journal_dirty(ctxt->handle, bucket);
4722 static int ocfs2_xattr_bucket_value_truncate_xs(struct inode *inode,
4723 struct ocfs2_xattr_search *xs,
4725 struct ocfs2_xattr_set_ctxt *ctxt)
4728 struct ocfs2_xattr_entry *xe = xs->here;
4729 struct ocfs2_xattr_header *xh = (struct ocfs2_xattr_header *)xs->base;
4731 BUG_ON(!xs->bucket->bu_bhs[0] || !xe || ocfs2_xattr_is_local(xe));
4733 offset = xe - xh->xh_entries;
4734 ret = ocfs2_xattr_bucket_value_truncate(inode, xs->bucket,
4742 static int ocfs2_xattr_bucket_set_value_outside(struct inode *inode,
4744 struct ocfs2_xattr_search *xs,
4749 struct ocfs2_xattr_value_root *xv;
4750 struct ocfs2_xattr_entry *xe = xs->here;
4752 BUG_ON(!xs->base || !xe || ocfs2_xattr_is_local(xe));
4754 offset = le16_to_cpu(xe->xe_name_offset) +
4755 OCFS2_XATTR_SIZE(xe->xe_name_len);
4757 xv = (struct ocfs2_xattr_value_root *)(xs->base + offset);
4759 return __ocfs2_xattr_set_value_outside(inode, handle,
4760 xv, val, value_len);
4763 static int ocfs2_rm_xattr_cluster(struct inode *inode,
4764 struct buffer_head *root_bh,
4770 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4771 struct inode *tl_inode = osb->osb_tl_inode;
4773 struct ocfs2_xattr_block *xb =
4774 (struct ocfs2_xattr_block *)root_bh->b_data;
4775 struct ocfs2_alloc_context *meta_ac = NULL;
4776 struct ocfs2_cached_dealloc_ctxt dealloc;
4777 struct ocfs2_extent_tree et;
4779 ocfs2_init_xattr_tree_extent_tree(&et, inode, root_bh);
4781 ocfs2_init_dealloc_ctxt(&dealloc);
4783 mlog(0, "rm xattr extent rec at %u len = %u, start from %llu\n",
4784 cpos, len, (unsigned long long)blkno);
4786 ocfs2_remove_xattr_clusters_from_cache(inode, blkno, len);
4788 ret = ocfs2_lock_allocators(inode, &et, 0, 1, NULL, &meta_ac);
4794 mutex_lock(&tl_inode->i_mutex);
4796 if (ocfs2_truncate_log_needs_flush(osb)) {
4797 ret = __ocfs2_flush_truncate_log(osb);
4804 handle = ocfs2_start_trans(osb, ocfs2_remove_extent_credits(osb->sb));
4805 if (IS_ERR(handle)) {
4811 ret = ocfs2_journal_access_xb(handle, inode, root_bh,
4812 OCFS2_JOURNAL_ACCESS_WRITE);
4818 ret = ocfs2_remove_extent(inode, &et, cpos, len, handle, meta_ac,
4825 le32_add_cpu(&xb->xb_attrs.xb_root.xt_clusters, -len);
4827 ret = ocfs2_journal_dirty(handle, root_bh);
4833 ret = ocfs2_truncate_log_append(osb, handle, blkno, len);
4838 ocfs2_commit_trans(osb, handle);
4840 ocfs2_schedule_truncate_log_flush(osb, 1);
4842 mutex_unlock(&tl_inode->i_mutex);
4845 ocfs2_free_alloc_context(meta_ac);
4847 ocfs2_run_deallocs(osb, &dealloc);
4852 static void ocfs2_xattr_bucket_remove_xs(struct inode *inode,
4854 struct ocfs2_xattr_search *xs)
4856 struct ocfs2_xattr_header *xh = bucket_xh(xs->bucket);
4857 struct ocfs2_xattr_entry *last = &xh->xh_entries[
4858 le16_to_cpu(xh->xh_count) - 1];
4861 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
4862 OCFS2_JOURNAL_ACCESS_WRITE);
4868 /* Remove the old entry. */
4869 memmove(xs->here, xs->here + 1,
4870 (void *)last - (void *)xs->here);
4871 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
4872 le16_add_cpu(&xh->xh_count, -1);
4874 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
4878 * Set the xattr name/value in the bucket specified in xs.
4880 * As the new value in xi may be stored in the bucket or in an outside cluster,
4881 * we divide the whole process into 3 steps:
4882 * 1. insert name/value in the bucket(ocfs2_xattr_set_entry_in_bucket)
4883 * 2. truncate of the outside cluster(ocfs2_xattr_bucket_value_truncate_xs)
4884 * 3. Set the value to the outside cluster(ocfs2_xattr_bucket_set_value_outside)
4885 * 4. If the clusters for the new outside value can't be allocated, we need
4886 * to free the xattr we allocated in set.
4888 static int ocfs2_xattr_set_in_bucket(struct inode *inode,
4889 struct ocfs2_xattr_info *xi,
4890 struct ocfs2_xattr_search *xs,
4891 struct ocfs2_xattr_set_ctxt *ctxt)
4895 char *val = (char *)xi->value;
4896 struct ocfs2_xattr_entry *xe = xs->here;
4897 u32 name_hash = ocfs2_xattr_name_hash(inode, xi->name,
4900 if (!xs->not_found && !ocfs2_xattr_is_local(xe)) {
4902 * We need to truncate the xattr storage first.
4904 * If both the old and new value are stored to
4905 * outside block, we only need to truncate
4906 * the storage and then set the value outside.
4908 * If the new value should be stored within block,
4909 * we should free all the outside block first and
4910 * the modification to the xattr block will be done
4911 * by following steps.
4913 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
4914 value_len = xi->value_len;
4918 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
4925 goto set_value_outside;
4928 value_len = xi->value_len;
4929 /* So we have to handle the inside block change now. */
4930 if (value_len > OCFS2_XATTR_INLINE_SIZE) {
4932 * If the new value will be stored outside of block,
4933 * initalize a new empty value root and insert it first.
4936 xi->value = &def_xv;
4937 xi->value_len = OCFS2_XATTR_ROOT_SIZE;
4940 ret = ocfs2_xattr_set_entry_in_bucket(inode, ctxt->handle, xi, xs,
4947 if (value_len <= OCFS2_XATTR_INLINE_SIZE)
4950 /* allocate the space now for the outside block storage. */
4951 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
4956 if (xs->not_found) {
4958 * We can't allocate enough clusters for outside
4959 * storage and we have allocated xattr already,
4960 * so need to remove it.
4962 ocfs2_xattr_bucket_remove_xs(inode, ctxt->handle, xs);
4968 ret = ocfs2_xattr_bucket_set_value_outside(inode, ctxt->handle,
4969 xs, val, value_len);
4975 * check whether the xattr bucket is filled up with the same hash value.
4976 * If we want to insert the xattr with the same hash, return -ENOSPC.
4977 * If we want to insert a xattr with different hash value, go ahead
4978 * and ocfs2_divide_xattr_bucket will handle this.
4980 static int ocfs2_check_xattr_bucket_collision(struct inode *inode,
4981 struct ocfs2_xattr_bucket *bucket,
4984 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
4985 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
4987 if (name_hash != le32_to_cpu(xh->xh_entries[0].xe_name_hash))
4990 if (xh->xh_entries[le16_to_cpu(xh->xh_count) - 1].xe_name_hash ==
4991 xh->xh_entries[0].xe_name_hash) {
4992 mlog(ML_ERROR, "Too much hash collision in xattr bucket %llu, "
4994 (unsigned long long)bucket_blkno(bucket),
4995 le32_to_cpu(xh->xh_entries[0].xe_name_hash));
5002 static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
5003 struct ocfs2_xattr_info *xi,
5004 struct ocfs2_xattr_search *xs,
5005 struct ocfs2_xattr_set_ctxt *ctxt)
5007 struct ocfs2_xattr_header *xh;
5008 struct ocfs2_xattr_entry *xe;
5009 u16 count, header_size, xh_free_start;
5010 int free, max_free, need, old;
5011 size_t value_size = 0, name_len = strlen(xi->name);
5012 size_t blocksize = inode->i_sb->s_blocksize;
5013 int ret, allocation = 0;
5015 mlog_entry("Set xattr %s in xattr index block\n", xi->name);
5019 count = le16_to_cpu(xh->xh_count);
5020 xh_free_start = le16_to_cpu(xh->xh_free_start);
5021 header_size = sizeof(struct ocfs2_xattr_header) +
5022 count * sizeof(struct ocfs2_xattr_entry);
5023 max_free = OCFS2_XATTR_BUCKET_SIZE -
5024 le16_to_cpu(xh->xh_name_value_len) - header_size;
5026 mlog_bug_on_msg(header_size > blocksize, "bucket %llu has header size "
5027 "of %u which exceed block size\n",
5028 (unsigned long long)bucket_blkno(xs->bucket),
5031 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE)
5032 value_size = OCFS2_XATTR_ROOT_SIZE;
5034 value_size = OCFS2_XATTR_SIZE(xi->value_len);
5037 need = sizeof(struct ocfs2_xattr_entry) +
5038 OCFS2_XATTR_SIZE(name_len) + value_size;
5040 need = value_size + OCFS2_XATTR_SIZE(name_len);
5043 * We only replace the old value if the new length is smaller
5044 * than the old one. Otherwise we will allocate new space in the
5045 * bucket to store it.
5048 if (ocfs2_xattr_is_local(xe))
5049 old = OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
5051 old = OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
5053 if (old >= value_size)
5057 free = xh_free_start - header_size;
5059 * We need to make sure the new name/value pair
5060 * can exist in the same block.
5062 if (xh_free_start % blocksize < need)
5063 free -= xh_free_start % blocksize;
5065 mlog(0, "xs->not_found = %d, in xattr bucket %llu: free = %d, "
5066 "need = %d, max_free = %d, xh_free_start = %u, xh_name_value_len ="
5067 " %u\n", xs->not_found,
5068 (unsigned long long)bucket_blkno(xs->bucket),
5069 free, need, max_free, le16_to_cpu(xh->xh_free_start),
5070 le16_to_cpu(xh->xh_name_value_len));
5074 count == ocfs2_xattr_max_xe_in_bucket(inode->i_sb))) {
5075 if (need <= max_free &&
5076 count < ocfs2_xattr_max_xe_in_bucket(inode->i_sb)) {
5078 * We can create the space by defragment. Since only the
5079 * name/value will be moved, the xe shouldn't be changed
5082 ret = ocfs2_defrag_xattr_bucket(inode, ctxt->handle,
5089 xh_free_start = le16_to_cpu(xh->xh_free_start);
5090 free = xh_free_start - header_size;
5091 if (xh_free_start % blocksize < need)
5092 free -= xh_free_start % blocksize;
5097 mlog(0, "Can't get enough space for xattr insert by "
5098 "defragment. Need %u bytes, but we have %d, so "
5099 "allocate new bucket for it.\n", need, free);
5103 * We have to add new buckets or clusters and one
5104 * allocation should leave us enough space for insert.
5109 * We do not allow for overlapping ranges between buckets. And
5110 * the maximum number of collisions we will allow for then is
5111 * one bucket's worth, so check it here whether we need to
5112 * add a new bucket for the insert.
5114 ret = ocfs2_check_xattr_bucket_collision(inode,
5122 ret = ocfs2_add_new_xattr_bucket(inode,
5132 * ocfs2_add_new_xattr_bucket() will have updated
5133 * xs->bucket if it moved, but it will not have updated
5134 * any of the other search fields. Thus, we drop it and
5135 * re-search. Everything should be cached, so it'll be
5138 ocfs2_xattr_bucket_relse(xs->bucket);
5139 ret = ocfs2_xattr_index_block_find(inode, xs->xattr_bh,
5142 if (ret && ret != -ENODATA)
5144 xs->not_found = ret;
5150 ret = ocfs2_xattr_set_in_bucket(inode, xi, xs, ctxt);
5156 static int ocfs2_delete_xattr_in_bucket(struct inode *inode,
5157 struct ocfs2_xattr_bucket *bucket,
5161 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
5163 struct ocfs2_xattr_entry *xe;
5164 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5165 struct ocfs2_xattr_set_ctxt ctxt = {NULL, NULL,};
5166 int credits = ocfs2_remove_extent_credits(osb->sb) +
5167 ocfs2_blocks_per_xattr_bucket(inode->i_sb);
5170 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
5172 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
5173 xe = &xh->xh_entries[i];
5174 if (ocfs2_xattr_is_local(xe))
5177 ctxt.handle = ocfs2_start_trans(osb, credits);
5178 if (IS_ERR(ctxt.handle)) {
5179 ret = PTR_ERR(ctxt.handle);
5184 ret = ocfs2_xattr_bucket_value_truncate(inode, bucket,
5187 ocfs2_commit_trans(osb, ctxt.handle);
5194 ocfs2_schedule_truncate_log_flush(osb, 1);
5195 ocfs2_run_deallocs(osb, &ctxt.dealloc);
5199 static int ocfs2_delete_xattr_index_block(struct inode *inode,
5200 struct buffer_head *xb_bh)
5202 struct ocfs2_xattr_block *xb =
5203 (struct ocfs2_xattr_block *)xb_bh->b_data;
5204 struct ocfs2_extent_list *el = &xb->xb_attrs.xb_root.xt_list;
5206 u32 name_hash = UINT_MAX, e_cpos, num_clusters;
5209 if (le16_to_cpu(el->l_next_free_rec) == 0)
5212 while (name_hash > 0) {
5213 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
5214 &e_cpos, &num_clusters, el);
5220 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
5221 ocfs2_delete_xattr_in_bucket,
5228 ret = ocfs2_rm_xattr_cluster(inode, xb_bh,
5229 p_blkno, e_cpos, num_clusters);
5238 name_hash = e_cpos - 1;
5246 * 'security' attributes support
5248 static size_t ocfs2_xattr_security_list(struct inode *inode, char *list,
5249 size_t list_size, const char *name,
5252 const size_t prefix_len = XATTR_SECURITY_PREFIX_LEN;
5253 const size_t total_len = prefix_len + name_len + 1;
5255 if (list && total_len <= list_size) {
5256 memcpy(list, XATTR_SECURITY_PREFIX, prefix_len);
5257 memcpy(list + prefix_len, name, name_len);
5258 list[prefix_len + name_len] = '\0';
5263 static int ocfs2_xattr_security_get(struct inode *inode, const char *name,
5264 void *buffer, size_t size)
5266 if (strcmp(name, "") == 0)
5268 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_SECURITY, name,
5272 static int ocfs2_xattr_security_set(struct inode *inode, const char *name,
5273 const void *value, size_t size, int flags)
5275 if (strcmp(name, "") == 0)
5278 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_SECURITY, name, value,
5282 int ocfs2_init_security_get(struct inode *inode,
5284 struct ocfs2_security_xattr_info *si)
5286 return security_inode_init_security(inode, dir, &si->name, &si->value,
5290 int ocfs2_init_security_set(handle_t *handle,
5291 struct inode *inode,
5292 struct buffer_head *di_bh,
5293 struct ocfs2_security_xattr_info *si,
5294 struct ocfs2_alloc_context *xattr_ac,
5295 struct ocfs2_alloc_context *data_ac)
5297 return ocfs2_xattr_set_handle(handle, inode, di_bh,
5298 OCFS2_XATTR_INDEX_SECURITY,
5299 si->name, si->value, si->value_len, 0,
5303 struct xattr_handler ocfs2_xattr_security_handler = {
5304 .prefix = XATTR_SECURITY_PREFIX,
5305 .list = ocfs2_xattr_security_list,
5306 .get = ocfs2_xattr_security_get,
5307 .set = ocfs2_xattr_security_set,
5311 * 'trusted' attributes support
5313 static size_t ocfs2_xattr_trusted_list(struct inode *inode, char *list,
5314 size_t list_size, const char *name,
5317 const size_t prefix_len = XATTR_TRUSTED_PREFIX_LEN;
5318 const size_t total_len = prefix_len + name_len + 1;
5320 if (list && total_len <= list_size) {
5321 memcpy(list, XATTR_TRUSTED_PREFIX, prefix_len);
5322 memcpy(list + prefix_len, name, name_len);
5323 list[prefix_len + name_len] = '\0';
5328 static int ocfs2_xattr_trusted_get(struct inode *inode, const char *name,
5329 void *buffer, size_t size)
5331 if (strcmp(name, "") == 0)
5333 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_TRUSTED, name,
5337 static int ocfs2_xattr_trusted_set(struct inode *inode, const char *name,
5338 const void *value, size_t size, int flags)
5340 if (strcmp(name, "") == 0)
5343 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_TRUSTED, name, value,
5347 struct xattr_handler ocfs2_xattr_trusted_handler = {
5348 .prefix = XATTR_TRUSTED_PREFIX,
5349 .list = ocfs2_xattr_trusted_list,
5350 .get = ocfs2_xattr_trusted_get,
5351 .set = ocfs2_xattr_trusted_set,
5355 * 'user' attributes support
5357 static size_t ocfs2_xattr_user_list(struct inode *inode, char *list,
5358 size_t list_size, const char *name,
5361 const size_t prefix_len = XATTR_USER_PREFIX_LEN;
5362 const size_t total_len = prefix_len + name_len + 1;
5363 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5365 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5368 if (list && total_len <= list_size) {
5369 memcpy(list, XATTR_USER_PREFIX, prefix_len);
5370 memcpy(list + prefix_len, name, name_len);
5371 list[prefix_len + name_len] = '\0';
5376 static int ocfs2_xattr_user_get(struct inode *inode, const char *name,
5377 void *buffer, size_t size)
5379 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5381 if (strcmp(name, "") == 0)
5383 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5385 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_USER, name,
5389 static int ocfs2_xattr_user_set(struct inode *inode, const char *name,
5390 const void *value, size_t size, int flags)
5392 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5394 if (strcmp(name, "") == 0)
5396 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5399 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_USER, name, value,
5403 struct xattr_handler ocfs2_xattr_user_handler = {
5404 .prefix = XATTR_USER_PREFIX,
5405 .list = ocfs2_xattr_user_list,
5406 .get = ocfs2_xattr_user_get,
5407 .set = ocfs2_xattr_user_set,