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_HEADER_GAP 4
86 #define OCFS2_XATTR_FREE_IN_IBODY (OCFS2_MIN_XATTR_INLINE_SIZE \
87 - sizeof(struct ocfs2_xattr_header) \
88 - OCFS2_XATTR_HEADER_GAP)
89 #define OCFS2_XATTR_FREE_IN_BLOCK(ptr) ((ptr)->i_sb->s_blocksize \
90 - sizeof(struct ocfs2_xattr_block) \
91 - sizeof(struct ocfs2_xattr_header) \
92 - OCFS2_XATTR_HEADER_GAP)
94 static struct ocfs2_xattr_def_value_root def_xv = {
95 .xv.xr_list.l_count = cpu_to_le16(1),
98 struct xattr_handler *ocfs2_xattr_handlers[] = {
99 &ocfs2_xattr_user_handler,
100 #ifdef CONFIG_OCFS2_FS_POSIX_ACL
101 &ocfs2_xattr_acl_access_handler,
102 &ocfs2_xattr_acl_default_handler,
104 &ocfs2_xattr_trusted_handler,
105 &ocfs2_xattr_security_handler,
109 static struct xattr_handler *ocfs2_xattr_handler_map[OCFS2_XATTR_MAX] = {
110 [OCFS2_XATTR_INDEX_USER] = &ocfs2_xattr_user_handler,
111 #ifdef CONFIG_OCFS2_FS_POSIX_ACL
112 [OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS]
113 = &ocfs2_xattr_acl_access_handler,
114 [OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT]
115 = &ocfs2_xattr_acl_default_handler,
117 [OCFS2_XATTR_INDEX_TRUSTED] = &ocfs2_xattr_trusted_handler,
118 [OCFS2_XATTR_INDEX_SECURITY] = &ocfs2_xattr_security_handler,
121 struct ocfs2_xattr_info {
128 struct ocfs2_xattr_search {
129 struct buffer_head *inode_bh;
131 * xattr_bh point to the block buffer head which has extended attribute
132 * when extended attribute in inode, xattr_bh is equal to inode_bh.
134 struct buffer_head *xattr_bh;
135 struct ocfs2_xattr_header *header;
136 struct ocfs2_xattr_bucket *bucket;
139 struct ocfs2_xattr_entry *here;
143 static int ocfs2_xattr_bucket_get_name_value(struct inode *inode,
144 struct ocfs2_xattr_header *xh,
149 static int ocfs2_xattr_block_find(struct inode *inode,
152 struct ocfs2_xattr_search *xs);
153 static int ocfs2_xattr_index_block_find(struct inode *inode,
154 struct buffer_head *root_bh,
157 struct ocfs2_xattr_search *xs);
159 static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
160 struct ocfs2_xattr_tree_root *xt,
164 static int ocfs2_xattr_create_index_block(struct inode *inode,
165 struct ocfs2_xattr_search *xs,
166 struct ocfs2_xattr_set_ctxt *ctxt);
168 static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
169 struct ocfs2_xattr_info *xi,
170 struct ocfs2_xattr_search *xs,
171 struct ocfs2_xattr_set_ctxt *ctxt);
173 static int ocfs2_delete_xattr_index_block(struct inode *inode,
174 struct buffer_head *xb_bh);
175 static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
176 u64 src_blk, u64 last_blk, u64 to_blk,
177 unsigned int start_bucket,
180 static inline u16 ocfs2_xattr_buckets_per_cluster(struct ocfs2_super *osb)
182 return (1 << osb->s_clustersize_bits) / OCFS2_XATTR_BUCKET_SIZE;
185 static inline u16 ocfs2_blocks_per_xattr_bucket(struct super_block *sb)
187 return OCFS2_XATTR_BUCKET_SIZE / (1 << sb->s_blocksize_bits);
190 static inline u16 ocfs2_xattr_max_xe_in_bucket(struct super_block *sb)
192 u16 len = sb->s_blocksize -
193 offsetof(struct ocfs2_xattr_header, xh_entries);
195 return len / sizeof(struct ocfs2_xattr_entry);
198 #define bucket_blkno(_b) ((_b)->bu_bhs[0]->b_blocknr)
199 #define bucket_block(_b, _n) ((_b)->bu_bhs[(_n)]->b_data)
200 #define bucket_xh(_b) ((struct ocfs2_xattr_header *)bucket_block((_b), 0))
202 static struct ocfs2_xattr_bucket *ocfs2_xattr_bucket_new(struct inode *inode)
204 struct ocfs2_xattr_bucket *bucket;
205 int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
207 BUG_ON(blks > OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET);
209 bucket = kzalloc(sizeof(struct ocfs2_xattr_bucket), GFP_NOFS);
211 bucket->bu_inode = inode;
212 bucket->bu_blocks = blks;
218 static void ocfs2_xattr_bucket_relse(struct ocfs2_xattr_bucket *bucket)
222 for (i = 0; i < bucket->bu_blocks; i++) {
223 brelse(bucket->bu_bhs[i]);
224 bucket->bu_bhs[i] = NULL;
228 static void ocfs2_xattr_bucket_free(struct ocfs2_xattr_bucket *bucket)
231 ocfs2_xattr_bucket_relse(bucket);
232 bucket->bu_inode = NULL;
238 * A bucket that has never been written to disk doesn't need to be
239 * read. We just need the buffer_heads. Don't call this for
240 * buckets that are already on disk. ocfs2_read_xattr_bucket() initializes
243 static int ocfs2_init_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
248 for (i = 0; i < bucket->bu_blocks; i++) {
249 bucket->bu_bhs[i] = sb_getblk(bucket->bu_inode->i_sb,
251 if (!bucket->bu_bhs[i]) {
257 if (!ocfs2_buffer_uptodate(bucket->bu_inode,
259 ocfs2_set_new_buffer_uptodate(bucket->bu_inode,
264 ocfs2_xattr_bucket_relse(bucket);
268 /* Read the xattr bucket at xb_blkno */
269 static int ocfs2_read_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
274 rc = ocfs2_read_blocks(bucket->bu_inode, xb_blkno,
275 bucket->bu_blocks, bucket->bu_bhs, 0,
278 spin_lock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
279 rc = ocfs2_validate_meta_ecc_bhs(bucket->bu_inode->i_sb,
282 &bucket_xh(bucket)->xh_check);
283 spin_unlock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
289 ocfs2_xattr_bucket_relse(bucket);
293 static int ocfs2_xattr_bucket_journal_access(handle_t *handle,
294 struct ocfs2_xattr_bucket *bucket,
299 for (i = 0; i < bucket->bu_blocks; i++) {
300 rc = ocfs2_journal_access(handle, bucket->bu_inode,
301 bucket->bu_bhs[i], type);
311 static void ocfs2_xattr_bucket_journal_dirty(handle_t *handle,
312 struct ocfs2_xattr_bucket *bucket)
316 spin_lock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
317 ocfs2_compute_meta_ecc_bhs(bucket->bu_inode->i_sb,
318 bucket->bu_bhs, bucket->bu_blocks,
319 &bucket_xh(bucket)->xh_check);
320 spin_unlock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
322 for (i = 0; i < bucket->bu_blocks; i++)
323 ocfs2_journal_dirty(handle, bucket->bu_bhs[i]);
326 static void ocfs2_xattr_bucket_copy_data(struct ocfs2_xattr_bucket *dest,
327 struct ocfs2_xattr_bucket *src)
330 int blocksize = src->bu_inode->i_sb->s_blocksize;
332 BUG_ON(dest->bu_blocks != src->bu_blocks);
333 BUG_ON(dest->bu_inode != src->bu_inode);
335 for (i = 0; i < src->bu_blocks; i++) {
336 memcpy(bucket_block(dest, i), bucket_block(src, i),
341 static int ocfs2_validate_xattr_block(struct super_block *sb,
342 struct buffer_head *bh)
345 struct ocfs2_xattr_block *xb =
346 (struct ocfs2_xattr_block *)bh->b_data;
348 mlog(0, "Validating xattr block %llu\n",
349 (unsigned long long)bh->b_blocknr);
351 BUG_ON(!buffer_uptodate(bh));
354 * If the ecc fails, we return the error but otherwise
355 * leave the filesystem running. We know any error is
356 * local to this block.
358 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &xb->xb_check);
363 * Errors after here are fatal
366 if (!OCFS2_IS_VALID_XATTR_BLOCK(xb)) {
368 "Extended attribute block #%llu has bad "
370 (unsigned long long)bh->b_blocknr, 7,
375 if (le64_to_cpu(xb->xb_blkno) != bh->b_blocknr) {
377 "Extended attribute block #%llu has an "
378 "invalid xb_blkno of %llu",
379 (unsigned long long)bh->b_blocknr,
380 (unsigned long long)le64_to_cpu(xb->xb_blkno));
384 if (le32_to_cpu(xb->xb_fs_generation) != OCFS2_SB(sb)->fs_generation) {
386 "Extended attribute block #%llu has an invalid "
387 "xb_fs_generation of #%u",
388 (unsigned long long)bh->b_blocknr,
389 le32_to_cpu(xb->xb_fs_generation));
396 static int ocfs2_read_xattr_block(struct inode *inode, u64 xb_blkno,
397 struct buffer_head **bh)
400 struct buffer_head *tmp = *bh;
402 rc = ocfs2_read_block(inode, xb_blkno, &tmp,
403 ocfs2_validate_xattr_block);
405 /* If ocfs2_read_block() got us a new bh, pass it up. */
412 static inline const char *ocfs2_xattr_prefix(int name_index)
414 struct xattr_handler *handler = NULL;
416 if (name_index > 0 && name_index < OCFS2_XATTR_MAX)
417 handler = ocfs2_xattr_handler_map[name_index];
419 return handler ? handler->prefix : NULL;
422 static u32 ocfs2_xattr_name_hash(struct inode *inode,
426 /* Get hash value of uuid from super block */
427 u32 hash = OCFS2_SB(inode->i_sb)->uuid_hash;
430 /* hash extended attribute name */
431 for (i = 0; i < name_len; i++) {
432 hash = (hash << OCFS2_HASH_SHIFT) ^
433 (hash >> (8*sizeof(hash) - OCFS2_HASH_SHIFT)) ^
441 * ocfs2_xattr_hash_entry()
443 * Compute the hash of an extended attribute.
445 static void ocfs2_xattr_hash_entry(struct inode *inode,
446 struct ocfs2_xattr_header *header,
447 struct ocfs2_xattr_entry *entry)
450 char *name = (char *)header + le16_to_cpu(entry->xe_name_offset);
452 hash = ocfs2_xattr_name_hash(inode, name, entry->xe_name_len);
453 entry->xe_name_hash = cpu_to_le32(hash);
458 static int ocfs2_xattr_entry_real_size(int name_len, size_t value_len)
462 if (value_len <= OCFS2_XATTR_INLINE_SIZE)
463 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(value_len);
465 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
466 size += sizeof(struct ocfs2_xattr_entry);
471 int ocfs2_calc_security_init(struct inode *dir,
472 struct ocfs2_security_xattr_info *si,
475 struct ocfs2_alloc_context **xattr_ac)
478 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
479 int s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
483 * The max space of security xattr taken inline is
484 * 256(name) + 80(value) + 16(entry) = 352 bytes,
485 * So reserve one metadata block for it is ok.
487 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
488 s_size > OCFS2_XATTR_FREE_IN_IBODY) {
489 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, xattr_ac);
494 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
497 /* reserve clusters for xattr value which will be set in B tree*/
498 if (si->value_len > OCFS2_XATTR_INLINE_SIZE) {
499 int new_clusters = ocfs2_clusters_for_bytes(dir->i_sb,
502 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
504 *want_clusters += new_clusters;
509 int ocfs2_calc_xattr_init(struct inode *dir,
510 struct buffer_head *dir_bh,
512 struct ocfs2_security_xattr_info *si,
515 struct ocfs2_alloc_context **xattr_ac)
518 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
519 int s_size = 0, a_size = 0, acl_len = 0, new_clusters;
522 s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
525 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) {
526 acl_len = ocfs2_xattr_get_nolock(dir, dir_bh,
527 OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT,
530 a_size = ocfs2_xattr_entry_real_size(0, acl_len);
533 } else if (acl_len != 0 && acl_len != -ENODATA) {
539 if (!(s_size + a_size))
543 * The max space of security xattr taken inline is
544 * 256(name) + 80(value) + 16(entry) = 352 bytes,
545 * The max space of acl xattr taken inline is
546 * 80(value) + 16(entry) * 2(if directory) = 192 bytes,
547 * when blocksize = 512, may reserve one more cluser for
548 * xattr bucket, otherwise reserve one metadata block
551 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
552 (s_size + a_size) > OCFS2_XATTR_FREE_IN_IBODY) {
553 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, xattr_ac);
558 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
561 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE &&
562 (s_size + a_size) > OCFS2_XATTR_FREE_IN_BLOCK(dir)) {
564 *xattr_credits += ocfs2_blocks_per_xattr_bucket(dir->i_sb);
568 * reserve credits and clusters for xattrs which has large value
569 * and have to be set outside
571 if (si->enable && si->value_len > OCFS2_XATTR_INLINE_SIZE) {
572 new_clusters = ocfs2_clusters_for_bytes(dir->i_sb,
574 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
576 *want_clusters += new_clusters;
578 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL &&
579 acl_len > OCFS2_XATTR_INLINE_SIZE) {
580 /* for directory, it has DEFAULT and ACCESS two types of acls */
581 new_clusters = (S_ISDIR(mode) ? 2 : 1) *
582 ocfs2_clusters_for_bytes(dir->i_sb, acl_len);
583 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
585 *want_clusters += new_clusters;
591 static int ocfs2_xattr_extend_allocation(struct inode *inode,
593 struct ocfs2_xattr_value_buf *vb,
594 struct ocfs2_xattr_set_ctxt *ctxt)
597 handle_t *handle = ctxt->handle;
598 enum ocfs2_alloc_restarted why;
599 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
600 u32 prev_clusters, logical_start = le32_to_cpu(vb->vb_xv->xr_clusters);
601 struct ocfs2_extent_tree et;
603 mlog(0, "(clusters_to_add for xattr= %u)\n", clusters_to_add);
605 ocfs2_init_xattr_value_extent_tree(&et, inode, vb);
607 status = vb->vb_access(handle, inode, vb->vb_bh,
608 OCFS2_JOURNAL_ACCESS_WRITE);
614 prev_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
615 status = ocfs2_add_clusters_in_btree(osb,
630 status = ocfs2_journal_dirty(handle, vb->vb_bh);
636 clusters_to_add -= le32_to_cpu(vb->vb_xv->xr_clusters) - prev_clusters;
639 * We should have already allocated enough space before the transaction,
640 * so no need to restart.
642 BUG_ON(why != RESTART_NONE || clusters_to_add);
649 static int __ocfs2_remove_xattr_range(struct inode *inode,
650 struct ocfs2_xattr_value_buf *vb,
651 u32 cpos, u32 phys_cpos, u32 len,
652 struct ocfs2_xattr_set_ctxt *ctxt)
655 u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
656 handle_t *handle = ctxt->handle;
657 struct ocfs2_extent_tree et;
659 ocfs2_init_xattr_value_extent_tree(&et, inode, vb);
661 ret = vb->vb_access(handle, inode, vb->vb_bh,
662 OCFS2_JOURNAL_ACCESS_WRITE);
668 ret = ocfs2_remove_extent(inode, &et, cpos, len, handle, ctxt->meta_ac,
675 le32_add_cpu(&vb->vb_xv->xr_clusters, -len);
677 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
683 ret = ocfs2_cache_cluster_dealloc(&ctxt->dealloc, phys_blkno, len);
691 static int ocfs2_xattr_shrink_size(struct inode *inode,
694 struct ocfs2_xattr_value_buf *vb,
695 struct ocfs2_xattr_set_ctxt *ctxt)
698 u32 trunc_len, cpos, phys_cpos, alloc_size;
701 if (old_clusters <= new_clusters)
705 trunc_len = old_clusters - new_clusters;
707 ret = ocfs2_xattr_get_clusters(inode, cpos, &phys_cpos,
709 &vb->vb_xv->xr_list);
715 if (alloc_size > trunc_len)
716 alloc_size = trunc_len;
718 ret = __ocfs2_remove_xattr_range(inode, vb, cpos,
719 phys_cpos, alloc_size,
726 block = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
727 ocfs2_remove_xattr_clusters_from_cache(inode, block,
730 trunc_len -= alloc_size;
737 static int ocfs2_xattr_value_truncate(struct inode *inode,
738 struct ocfs2_xattr_value_buf *vb,
740 struct ocfs2_xattr_set_ctxt *ctxt)
743 u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb, len);
744 u32 old_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
746 if (new_clusters == old_clusters)
749 if (new_clusters > old_clusters)
750 ret = ocfs2_xattr_extend_allocation(inode,
751 new_clusters - old_clusters,
754 ret = ocfs2_xattr_shrink_size(inode,
755 old_clusters, new_clusters,
761 static int ocfs2_xattr_list_entry(char *buffer, size_t size,
762 size_t *result, const char *prefix,
763 const char *name, int name_len)
765 char *p = buffer + *result;
766 int prefix_len = strlen(prefix);
767 int total_len = prefix_len + name_len + 1;
769 *result += total_len;
771 /* we are just looking for how big our buffer needs to be */
778 memcpy(p, prefix, prefix_len);
779 memcpy(p + prefix_len, name, name_len);
780 p[prefix_len + name_len] = '\0';
785 static int ocfs2_xattr_list_entries(struct inode *inode,
786 struct ocfs2_xattr_header *header,
787 char *buffer, size_t buffer_size)
791 const char *prefix, *name;
793 for (i = 0 ; i < le16_to_cpu(header->xh_count); i++) {
794 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
795 type = ocfs2_xattr_get_type(entry);
796 prefix = ocfs2_xattr_prefix(type);
799 name = (const char *)header +
800 le16_to_cpu(entry->xe_name_offset);
802 ret = ocfs2_xattr_list_entry(buffer, buffer_size,
803 &result, prefix, name,
813 static int ocfs2_xattr_ibody_list(struct inode *inode,
814 struct ocfs2_dinode *di,
818 struct ocfs2_xattr_header *header = NULL;
819 struct ocfs2_inode_info *oi = OCFS2_I(inode);
822 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
825 header = (struct ocfs2_xattr_header *)
826 ((void *)di + inode->i_sb->s_blocksize -
827 le16_to_cpu(di->i_xattr_inline_size));
829 ret = ocfs2_xattr_list_entries(inode, header, buffer, buffer_size);
834 static int ocfs2_xattr_block_list(struct inode *inode,
835 struct ocfs2_dinode *di,
839 struct buffer_head *blk_bh = NULL;
840 struct ocfs2_xattr_block *xb;
843 if (!di->i_xattr_loc)
846 ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
853 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
854 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
855 struct ocfs2_xattr_header *header = &xb->xb_attrs.xb_header;
856 ret = ocfs2_xattr_list_entries(inode, header,
857 buffer, buffer_size);
859 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root;
860 ret = ocfs2_xattr_tree_list_index_block(inode, xt,
861 buffer, buffer_size);
869 ssize_t ocfs2_listxattr(struct dentry *dentry,
873 int ret = 0, i_ret = 0, b_ret = 0;
874 struct buffer_head *di_bh = NULL;
875 struct ocfs2_dinode *di = NULL;
876 struct ocfs2_inode_info *oi = OCFS2_I(dentry->d_inode);
878 if (!ocfs2_supports_xattr(OCFS2_SB(dentry->d_sb)))
881 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
884 ret = ocfs2_inode_lock(dentry->d_inode, &di_bh, 0);
890 di = (struct ocfs2_dinode *)di_bh->b_data;
892 down_read(&oi->ip_xattr_sem);
893 i_ret = ocfs2_xattr_ibody_list(dentry->d_inode, di, buffer, size);
901 b_ret = ocfs2_xattr_block_list(dentry->d_inode, di,
906 up_read(&oi->ip_xattr_sem);
907 ocfs2_inode_unlock(dentry->d_inode, 0);
911 return i_ret + b_ret;
914 static int ocfs2_xattr_find_entry(int name_index,
916 struct ocfs2_xattr_search *xs)
918 struct ocfs2_xattr_entry *entry;
925 name_len = strlen(name);
927 for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
928 cmp = name_index - ocfs2_xattr_get_type(entry);
930 cmp = name_len - entry->xe_name_len;
932 cmp = memcmp(name, (xs->base +
933 le16_to_cpu(entry->xe_name_offset)),
941 return cmp ? -ENODATA : 0;
944 static int ocfs2_xattr_get_value_outside(struct inode *inode,
945 struct ocfs2_xattr_value_root *xv,
949 u32 cpos, p_cluster, num_clusters, bpc, clusters;
952 size_t cplen, blocksize;
953 struct buffer_head *bh = NULL;
954 struct ocfs2_extent_list *el;
957 clusters = le32_to_cpu(xv->xr_clusters);
958 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
959 blocksize = inode->i_sb->s_blocksize;
962 while (cpos < clusters) {
963 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
970 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
971 /* Copy ocfs2_xattr_value */
972 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
973 ret = ocfs2_read_block(inode, blkno, &bh, NULL);
979 cplen = len >= blocksize ? blocksize : len;
980 memcpy(buffer, bh->b_data, cplen);
989 cpos += num_clusters;
995 static int ocfs2_xattr_ibody_get(struct inode *inode,
1000 struct ocfs2_xattr_search *xs)
1002 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1003 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1004 struct ocfs2_xattr_value_root *xv;
1008 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
1011 xs->end = (void *)di + inode->i_sb->s_blocksize;
1012 xs->header = (struct ocfs2_xattr_header *)
1013 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
1014 xs->base = (void *)xs->header;
1015 xs->here = xs->header->xh_entries;
1017 ret = ocfs2_xattr_find_entry(name_index, name, xs);
1020 size = le64_to_cpu(xs->here->xe_value_size);
1022 if (size > buffer_size)
1024 if (ocfs2_xattr_is_local(xs->here)) {
1025 memcpy(buffer, (void *)xs->base +
1026 le16_to_cpu(xs->here->xe_name_offset) +
1027 OCFS2_XATTR_SIZE(xs->here->xe_name_len), size);
1029 xv = (struct ocfs2_xattr_value_root *)
1030 (xs->base + le16_to_cpu(
1031 xs->here->xe_name_offset) +
1032 OCFS2_XATTR_SIZE(xs->here->xe_name_len));
1033 ret = ocfs2_xattr_get_value_outside(inode, xv,
1045 static int ocfs2_xattr_block_get(struct inode *inode,
1050 struct ocfs2_xattr_search *xs)
1052 struct ocfs2_xattr_block *xb;
1053 struct ocfs2_xattr_value_root *xv;
1055 int ret = -ENODATA, name_offset, name_len, block_off, i;
1057 xs->bucket = ocfs2_xattr_bucket_new(inode);
1064 ret = ocfs2_xattr_block_find(inode, name_index, name, xs);
1070 if (xs->not_found) {
1075 xb = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
1076 size = le64_to_cpu(xs->here->xe_value_size);
1079 if (size > buffer_size)
1082 name_offset = le16_to_cpu(xs->here->xe_name_offset);
1083 name_len = OCFS2_XATTR_SIZE(xs->here->xe_name_len);
1084 i = xs->here - xs->header->xh_entries;
1086 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
1087 ret = ocfs2_xattr_bucket_get_name_value(inode,
1088 bucket_xh(xs->bucket),
1092 xs->base = bucket_block(xs->bucket, block_off);
1094 if (ocfs2_xattr_is_local(xs->here)) {
1095 memcpy(buffer, (void *)xs->base +
1096 name_offset + name_len, size);
1098 xv = (struct ocfs2_xattr_value_root *)
1099 (xs->base + name_offset + name_len);
1100 ret = ocfs2_xattr_get_value_outside(inode, xv,
1110 ocfs2_xattr_bucket_free(xs->bucket);
1112 brelse(xs->xattr_bh);
1113 xs->xattr_bh = NULL;
1117 int ocfs2_xattr_get_nolock(struct inode *inode,
1118 struct buffer_head *di_bh,
1125 struct ocfs2_dinode *di = NULL;
1126 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1127 struct ocfs2_xattr_search xis = {
1128 .not_found = -ENODATA,
1130 struct ocfs2_xattr_search xbs = {
1131 .not_found = -ENODATA,
1134 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1137 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1140 xis.inode_bh = xbs.inode_bh = di_bh;
1141 di = (struct ocfs2_dinode *)di_bh->b_data;
1143 down_read(&oi->ip_xattr_sem);
1144 ret = ocfs2_xattr_ibody_get(inode, name_index, name, buffer,
1146 if (ret == -ENODATA && di->i_xattr_loc)
1147 ret = ocfs2_xattr_block_get(inode, name_index, name, buffer,
1149 up_read(&oi->ip_xattr_sem);
1154 /* ocfs2_xattr_get()
1156 * Copy an extended attribute into the buffer provided.
1157 * Buffer is NULL to compute the size of buffer required.
1159 static int ocfs2_xattr_get(struct inode *inode,
1166 struct buffer_head *di_bh = NULL;
1168 ret = ocfs2_inode_lock(inode, &di_bh, 0);
1173 ret = ocfs2_xattr_get_nolock(inode, di_bh, name_index,
1174 name, buffer, buffer_size);
1176 ocfs2_inode_unlock(inode, 0);
1183 static int __ocfs2_xattr_set_value_outside(struct inode *inode,
1185 struct ocfs2_xattr_value_root *xv,
1189 int ret = 0, i, cp_len;
1190 u16 blocksize = inode->i_sb->s_blocksize;
1191 u32 p_cluster, num_clusters;
1192 u32 cpos = 0, bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
1193 u32 clusters = ocfs2_clusters_for_bytes(inode->i_sb, value_len);
1195 struct buffer_head *bh = NULL;
1197 BUG_ON(clusters > le32_to_cpu(xv->xr_clusters));
1199 while (cpos < clusters) {
1200 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
1201 &num_clusters, &xv->xr_list);
1207 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
1209 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
1210 ret = ocfs2_read_block(inode, blkno, &bh, NULL);
1216 ret = ocfs2_journal_access(handle,
1219 OCFS2_JOURNAL_ACCESS_WRITE);
1225 cp_len = value_len > blocksize ? blocksize : value_len;
1226 memcpy(bh->b_data, value, cp_len);
1227 value_len -= cp_len;
1229 if (cp_len < blocksize)
1230 memset(bh->b_data + cp_len, 0,
1231 blocksize - cp_len);
1233 ret = ocfs2_journal_dirty(handle, bh);
1242 * XXX: do we need to empty all the following
1243 * blocks in this cluster?
1248 cpos += num_clusters;
1256 static int ocfs2_xattr_cleanup(struct inode *inode,
1258 struct ocfs2_xattr_info *xi,
1259 struct ocfs2_xattr_search *xs,
1260 struct ocfs2_xattr_value_buf *vb,
1264 size_t name_len = strlen(xi->name);
1265 void *val = xs->base + offs;
1266 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1268 ret = vb->vb_access(handle, inode, vb->vb_bh,
1269 OCFS2_JOURNAL_ACCESS_WRITE);
1274 /* Decrease xattr count */
1275 le16_add_cpu(&xs->header->xh_count, -1);
1276 /* Remove the xattr entry and tree root which has already be set*/
1277 memset((void *)xs->here, 0, sizeof(struct ocfs2_xattr_entry));
1278 memset(val, 0, size);
1280 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
1287 static int ocfs2_xattr_update_entry(struct inode *inode,
1289 struct ocfs2_xattr_info *xi,
1290 struct ocfs2_xattr_search *xs,
1291 struct ocfs2_xattr_value_buf *vb,
1296 ret = vb->vb_access(handle, inode, vb->vb_bh,
1297 OCFS2_JOURNAL_ACCESS_WRITE);
1303 xs->here->xe_name_offset = cpu_to_le16(offs);
1304 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1305 if (xi->value_len <= OCFS2_XATTR_INLINE_SIZE)
1306 ocfs2_xattr_set_local(xs->here, 1);
1308 ocfs2_xattr_set_local(xs->here, 0);
1309 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1311 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
1319 * ocfs2_xattr_set_value_outside()
1321 * Set large size value in B tree.
1323 static int ocfs2_xattr_set_value_outside(struct inode *inode,
1324 struct ocfs2_xattr_info *xi,
1325 struct ocfs2_xattr_search *xs,
1326 struct ocfs2_xattr_set_ctxt *ctxt,
1327 struct ocfs2_xattr_value_buf *vb,
1330 size_t name_len = strlen(xi->name);
1331 void *val = xs->base + offs;
1332 struct ocfs2_xattr_value_root *xv = NULL;
1333 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1336 memset(val, 0, size);
1337 memcpy(val, xi->name, name_len);
1338 xv = (struct ocfs2_xattr_value_root *)
1339 (val + OCFS2_XATTR_SIZE(name_len));
1340 xv->xr_clusters = 0;
1341 xv->xr_last_eb_blk = 0;
1342 xv->xr_list.l_tree_depth = 0;
1343 xv->xr_list.l_count = cpu_to_le16(1);
1344 xv->xr_list.l_next_free_rec = 0;
1347 ret = ocfs2_xattr_value_truncate(inode, vb, xi->value_len, ctxt);
1352 ret = ocfs2_xattr_update_entry(inode, ctxt->handle, xi, xs, vb, offs);
1357 ret = __ocfs2_xattr_set_value_outside(inode, ctxt->handle, vb->vb_xv,
1358 xi->value, xi->value_len);
1366 * ocfs2_xattr_set_entry_local()
1368 * Set, replace or remove extended attribute in local.
1370 static void ocfs2_xattr_set_entry_local(struct inode *inode,
1371 struct ocfs2_xattr_info *xi,
1372 struct ocfs2_xattr_search *xs,
1373 struct ocfs2_xattr_entry *last,
1376 size_t name_len = strlen(xi->name);
1379 if (xi->value && xs->not_found) {
1380 /* Insert the new xattr entry. */
1381 le16_add_cpu(&xs->header->xh_count, 1);
1382 ocfs2_xattr_set_type(last, xi->name_index);
1383 ocfs2_xattr_set_local(last, 1);
1384 last->xe_name_len = name_len;
1390 first_val = xs->base + min_offs;
1391 offs = le16_to_cpu(xs->here->xe_name_offset);
1392 val = xs->base + offs;
1394 if (le64_to_cpu(xs->here->xe_value_size) >
1395 OCFS2_XATTR_INLINE_SIZE)
1396 size = OCFS2_XATTR_SIZE(name_len) +
1397 OCFS2_XATTR_ROOT_SIZE;
1399 size = OCFS2_XATTR_SIZE(name_len) +
1400 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1402 if (xi->value && size == OCFS2_XATTR_SIZE(name_len) +
1403 OCFS2_XATTR_SIZE(xi->value_len)) {
1404 /* The old and the new value have the
1405 same size. Just replace the value. */
1406 ocfs2_xattr_set_local(xs->here, 1);
1407 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1408 /* Clear value bytes. */
1409 memset(val + OCFS2_XATTR_SIZE(name_len),
1411 OCFS2_XATTR_SIZE(xi->value_len));
1412 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1417 /* Remove the old name+value. */
1418 memmove(first_val + size, first_val, val - first_val);
1419 memset(first_val, 0, size);
1420 xs->here->xe_name_hash = 0;
1421 xs->here->xe_name_offset = 0;
1422 ocfs2_xattr_set_local(xs->here, 1);
1423 xs->here->xe_value_size = 0;
1427 /* Adjust all value offsets. */
1428 last = xs->header->xh_entries;
1429 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1430 size_t o = le16_to_cpu(last->xe_name_offset);
1433 last->xe_name_offset = cpu_to_le16(o + size);
1438 /* Remove the old entry. */
1440 memmove(xs->here, xs->here + 1,
1441 (void *)last - (void *)xs->here);
1442 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
1443 le16_add_cpu(&xs->header->xh_count, -1);
1447 /* Insert the new name+value. */
1448 size_t size = OCFS2_XATTR_SIZE(name_len) +
1449 OCFS2_XATTR_SIZE(xi->value_len);
1450 void *val = xs->base + min_offs - size;
1452 xs->here->xe_name_offset = cpu_to_le16(min_offs - size);
1453 memset(val, 0, size);
1454 memcpy(val, xi->name, name_len);
1455 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1458 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1459 ocfs2_xattr_set_local(xs->here, 1);
1460 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1467 * ocfs2_xattr_set_entry()
1469 * Set extended attribute entry into inode or block.
1471 * If extended attribute value size > OCFS2_XATTR_INLINE_SIZE,
1472 * We first insert tree root(ocfs2_xattr_value_root) with set_entry_local(),
1473 * then set value in B tree with set_value_outside().
1475 static int ocfs2_xattr_set_entry(struct inode *inode,
1476 struct ocfs2_xattr_info *xi,
1477 struct ocfs2_xattr_search *xs,
1478 struct ocfs2_xattr_set_ctxt *ctxt,
1481 struct ocfs2_xattr_entry *last;
1482 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1483 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1484 size_t min_offs = xs->end - xs->base, name_len = strlen(xi->name);
1486 handle_t *handle = ctxt->handle;
1488 struct ocfs2_xattr_info xi_l = {
1489 .name_index = xi->name_index,
1492 .value_len = xi->value_len,
1494 struct ocfs2_xattr_value_buf vb = {
1495 .vb_bh = xs->xattr_bh,
1496 .vb_access = ocfs2_journal_access_di,
1499 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1500 BUG_ON(xs->xattr_bh == xs->inode_bh);
1501 vb.vb_access = ocfs2_journal_access_xb;
1503 BUG_ON(xs->xattr_bh != xs->inode_bh);
1505 /* Compute min_offs, last and free space. */
1506 last = xs->header->xh_entries;
1508 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1509 size_t offs = le16_to_cpu(last->xe_name_offset);
1510 if (offs < min_offs)
1515 free = min_offs - ((void *)last - xs->base) - OCFS2_XATTR_HEADER_GAP;
1519 if (!xs->not_found) {
1521 if (ocfs2_xattr_is_local(xs->here))
1522 size = OCFS2_XATTR_SIZE(name_len) +
1523 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1525 size = OCFS2_XATTR_SIZE(name_len) +
1526 OCFS2_XATTR_ROOT_SIZE;
1527 free += (size + sizeof(struct ocfs2_xattr_entry));
1529 /* Check free space in inode or block */
1530 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1531 if (free < sizeof(struct ocfs2_xattr_entry) +
1532 OCFS2_XATTR_SIZE(name_len) +
1533 OCFS2_XATTR_ROOT_SIZE) {
1537 size_l = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1538 xi_l.value = (void *)&def_xv;
1539 xi_l.value_len = OCFS2_XATTR_ROOT_SIZE;
1540 } else if (xi->value) {
1541 if (free < sizeof(struct ocfs2_xattr_entry) +
1542 OCFS2_XATTR_SIZE(name_len) +
1543 OCFS2_XATTR_SIZE(xi->value_len)) {
1549 if (!xs->not_found) {
1550 /* For existing extended attribute */
1551 size_t size = OCFS2_XATTR_SIZE(name_len) +
1552 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1553 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
1554 void *val = xs->base + offs;
1556 if (ocfs2_xattr_is_local(xs->here) && size == size_l) {
1557 /* Replace existing local xattr with tree root */
1558 ret = ocfs2_xattr_set_value_outside(inode, xi, xs,
1563 } else if (!ocfs2_xattr_is_local(xs->here)) {
1564 /* For existing xattr which has value outside */
1565 vb.vb_xv = (struct ocfs2_xattr_value_root *)
1566 (val + OCFS2_XATTR_SIZE(name_len));
1568 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1570 * If new value need set outside also,
1571 * first truncate old value to new value,
1572 * then set new value with set_value_outside().
1574 ret = ocfs2_xattr_value_truncate(inode,
1583 ret = ocfs2_xattr_update_entry(inode,
1594 ret = __ocfs2_xattr_set_value_outside(inode,
1604 * If new value need set in local,
1605 * just trucate old value to zero.
1607 ret = ocfs2_xattr_value_truncate(inode,
1617 ret = ocfs2_journal_access_di(handle, inode, xs->inode_bh,
1618 OCFS2_JOURNAL_ACCESS_WRITE);
1624 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1625 ret = vb.vb_access(handle, inode, vb.vb_bh,
1626 OCFS2_JOURNAL_ACCESS_WRITE);
1634 * Set value in local, include set tree root in local.
1635 * This is the first step for value size >INLINE_SIZE.
1637 ocfs2_xattr_set_entry_local(inode, &xi_l, xs, last, min_offs);
1639 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1640 ret = ocfs2_journal_dirty(handle, xs->xattr_bh);
1647 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) &&
1648 (flag & OCFS2_INLINE_XATTR_FL)) {
1649 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1650 unsigned int xattrsize = osb->s_xattr_inline_size;
1653 * Adjust extent record count or inline data size
1654 * to reserve space for extended attribute.
1656 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1657 struct ocfs2_inline_data *idata = &di->id2.i_data;
1658 le16_add_cpu(&idata->id_count, -xattrsize);
1659 } else if (!(ocfs2_inode_is_fast_symlink(inode))) {
1660 struct ocfs2_extent_list *el = &di->id2.i_list;
1661 le16_add_cpu(&el->l_count, -(xattrsize /
1662 sizeof(struct ocfs2_extent_rec)));
1664 di->i_xattr_inline_size = cpu_to_le16(xattrsize);
1666 /* Update xattr flag */
1667 spin_lock(&oi->ip_lock);
1668 oi->ip_dyn_features |= flag;
1669 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1670 spin_unlock(&oi->ip_lock);
1672 ret = ocfs2_journal_dirty(handle, xs->inode_bh);
1676 if (!ret && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1678 * Set value outside in B tree.
1679 * This is the second step for value size > INLINE_SIZE.
1681 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
1682 ret = ocfs2_xattr_set_value_outside(inode, xi, xs, ctxt,
1689 * If set value outside failed, we have to clean
1690 * the junk tree root we have already set in local.
1692 ret2 = ocfs2_xattr_cleanup(inode, ctxt->handle,
1702 static int ocfs2_remove_value_outside(struct inode*inode,
1703 struct ocfs2_xattr_value_buf *vb,
1704 struct ocfs2_xattr_header *header)
1707 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1708 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
1710 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
1712 ctxt.handle = ocfs2_start_trans(osb,
1713 ocfs2_remove_extent_credits(osb->sb));
1714 if (IS_ERR(ctxt.handle)) {
1715 ret = PTR_ERR(ctxt.handle);
1720 for (i = 0; i < le16_to_cpu(header->xh_count); i++) {
1721 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
1723 if (!ocfs2_xattr_is_local(entry)) {
1726 val = (void *)header +
1727 le16_to_cpu(entry->xe_name_offset);
1728 vb->vb_xv = (struct ocfs2_xattr_value_root *)
1729 (val + OCFS2_XATTR_SIZE(entry->xe_name_len));
1730 ret = ocfs2_xattr_value_truncate(inode, vb, 0, &ctxt);
1738 ocfs2_commit_trans(osb, ctxt.handle);
1739 ocfs2_schedule_truncate_log_flush(osb, 1);
1740 ocfs2_run_deallocs(osb, &ctxt.dealloc);
1745 static int ocfs2_xattr_ibody_remove(struct inode *inode,
1746 struct buffer_head *di_bh)
1749 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1750 struct ocfs2_xattr_header *header;
1752 struct ocfs2_xattr_value_buf vb = {
1754 .vb_access = ocfs2_journal_access_di,
1757 header = (struct ocfs2_xattr_header *)
1758 ((void *)di + inode->i_sb->s_blocksize -
1759 le16_to_cpu(di->i_xattr_inline_size));
1761 ret = ocfs2_remove_value_outside(inode, &vb, header);
1766 static int ocfs2_xattr_block_remove(struct inode *inode,
1767 struct buffer_head *blk_bh)
1769 struct ocfs2_xattr_block *xb;
1771 struct ocfs2_xattr_value_buf vb = {
1773 .vb_access = ocfs2_journal_access_xb,
1776 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
1777 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
1778 struct ocfs2_xattr_header *header = &(xb->xb_attrs.xb_header);
1779 ret = ocfs2_remove_value_outside(inode, &vb, header);
1781 ret = ocfs2_delete_xattr_index_block(inode, blk_bh);
1786 static int ocfs2_xattr_free_block(struct inode *inode,
1789 struct inode *xb_alloc_inode;
1790 struct buffer_head *xb_alloc_bh = NULL;
1791 struct buffer_head *blk_bh = NULL;
1792 struct ocfs2_xattr_block *xb;
1793 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1799 ret = ocfs2_read_xattr_block(inode, block, &blk_bh);
1805 ret = ocfs2_xattr_block_remove(inode, blk_bh);
1811 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
1812 blk = le64_to_cpu(xb->xb_blkno);
1813 bit = le16_to_cpu(xb->xb_suballoc_bit);
1814 bg_blkno = ocfs2_which_suballoc_group(blk, bit);
1816 xb_alloc_inode = ocfs2_get_system_file_inode(osb,
1817 EXTENT_ALLOC_SYSTEM_INODE,
1818 le16_to_cpu(xb->xb_suballoc_slot));
1819 if (!xb_alloc_inode) {
1824 mutex_lock(&xb_alloc_inode->i_mutex);
1826 ret = ocfs2_inode_lock(xb_alloc_inode, &xb_alloc_bh, 1);
1832 handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE);
1833 if (IS_ERR(handle)) {
1834 ret = PTR_ERR(handle);
1839 ret = ocfs2_free_suballoc_bits(handle, xb_alloc_inode, xb_alloc_bh,
1844 ocfs2_commit_trans(osb, handle);
1846 ocfs2_inode_unlock(xb_alloc_inode, 1);
1847 brelse(xb_alloc_bh);
1849 mutex_unlock(&xb_alloc_inode->i_mutex);
1850 iput(xb_alloc_inode);
1857 * ocfs2_xattr_remove()
1859 * Free extended attribute resources associated with this inode.
1861 int ocfs2_xattr_remove(struct inode *inode, struct buffer_head *di_bh)
1863 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1864 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1868 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1871 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1874 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
1875 ret = ocfs2_xattr_ibody_remove(inode, di_bh);
1882 if (di->i_xattr_loc) {
1883 ret = ocfs2_xattr_free_block(inode,
1884 le64_to_cpu(di->i_xattr_loc));
1891 handle = ocfs2_start_trans((OCFS2_SB(inode->i_sb)),
1892 OCFS2_INODE_UPDATE_CREDITS);
1893 if (IS_ERR(handle)) {
1894 ret = PTR_ERR(handle);
1898 ret = ocfs2_journal_access_di(handle, inode, di_bh,
1899 OCFS2_JOURNAL_ACCESS_WRITE);
1905 di->i_xattr_loc = 0;
1907 spin_lock(&oi->ip_lock);
1908 oi->ip_dyn_features &= ~(OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL);
1909 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1910 spin_unlock(&oi->ip_lock);
1912 ret = ocfs2_journal_dirty(handle, di_bh);
1916 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
1921 static int ocfs2_xattr_has_space_inline(struct inode *inode,
1922 struct ocfs2_dinode *di)
1924 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1925 unsigned int xattrsize = OCFS2_SB(inode->i_sb)->s_xattr_inline_size;
1928 if (xattrsize < OCFS2_MIN_XATTR_INLINE_SIZE)
1931 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1932 struct ocfs2_inline_data *idata = &di->id2.i_data;
1933 free = le16_to_cpu(idata->id_count) - le64_to_cpu(di->i_size);
1934 } else if (ocfs2_inode_is_fast_symlink(inode)) {
1935 free = ocfs2_fast_symlink_chars(inode->i_sb) -
1936 le64_to_cpu(di->i_size);
1938 struct ocfs2_extent_list *el = &di->id2.i_list;
1939 free = (le16_to_cpu(el->l_count) -
1940 le16_to_cpu(el->l_next_free_rec)) *
1941 sizeof(struct ocfs2_extent_rec);
1943 if (free >= xattrsize)
1950 * ocfs2_xattr_ibody_find()
1952 * Find extended attribute in inode block and
1953 * fill search info into struct ocfs2_xattr_search.
1955 static int ocfs2_xattr_ibody_find(struct inode *inode,
1958 struct ocfs2_xattr_search *xs)
1960 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1961 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1965 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
1968 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
1969 down_read(&oi->ip_alloc_sem);
1970 has_space = ocfs2_xattr_has_space_inline(inode, di);
1971 up_read(&oi->ip_alloc_sem);
1976 xs->xattr_bh = xs->inode_bh;
1977 xs->end = (void *)di + inode->i_sb->s_blocksize;
1978 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)
1979 xs->header = (struct ocfs2_xattr_header *)
1980 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
1982 xs->header = (struct ocfs2_xattr_header *)
1983 (xs->end - OCFS2_SB(inode->i_sb)->s_xattr_inline_size);
1984 xs->base = (void *)xs->header;
1985 xs->here = xs->header->xh_entries;
1987 /* Find the named attribute. */
1988 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
1989 ret = ocfs2_xattr_find_entry(name_index, name, xs);
1990 if (ret && ret != -ENODATA)
1992 xs->not_found = ret;
1999 * ocfs2_xattr_ibody_set()
2001 * Set, replace or remove an extended attribute into inode block.
2004 static int ocfs2_xattr_ibody_set(struct inode *inode,
2005 struct ocfs2_xattr_info *xi,
2006 struct ocfs2_xattr_search *xs,
2007 struct ocfs2_xattr_set_ctxt *ctxt)
2009 struct ocfs2_inode_info *oi = OCFS2_I(inode);
2010 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2013 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
2016 down_write(&oi->ip_alloc_sem);
2017 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
2018 if (!ocfs2_xattr_has_space_inline(inode, di)) {
2024 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
2025 (OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL));
2027 up_write(&oi->ip_alloc_sem);
2033 * ocfs2_xattr_block_find()
2035 * Find extended attribute in external block and
2036 * fill search info into struct ocfs2_xattr_search.
2038 static int ocfs2_xattr_block_find(struct inode *inode,
2041 struct ocfs2_xattr_search *xs)
2043 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2044 struct buffer_head *blk_bh = NULL;
2045 struct ocfs2_xattr_block *xb;
2048 if (!di->i_xattr_loc)
2051 ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
2058 xs->xattr_bh = blk_bh;
2059 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
2061 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
2062 xs->header = &xb->xb_attrs.xb_header;
2063 xs->base = (void *)xs->header;
2064 xs->end = (void *)(blk_bh->b_data) + blk_bh->b_size;
2065 xs->here = xs->header->xh_entries;
2067 ret = ocfs2_xattr_find_entry(name_index, name, xs);
2069 ret = ocfs2_xattr_index_block_find(inode, blk_bh,
2073 if (ret && ret != -ENODATA) {
2074 xs->xattr_bh = NULL;
2077 xs->not_found = ret;
2086 * ocfs2_xattr_block_set()
2088 * Set, replace or remove an extended attribute into external block.
2091 static int ocfs2_xattr_block_set(struct inode *inode,
2092 struct ocfs2_xattr_info *xi,
2093 struct ocfs2_xattr_search *xs,
2094 struct ocfs2_xattr_set_ctxt *ctxt)
2096 struct buffer_head *new_bh = NULL;
2097 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2098 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2099 handle_t *handle = ctxt->handle;
2100 struct ocfs2_xattr_block *xblk = NULL;
2101 u16 suballoc_bit_start;
2106 if (!xs->xattr_bh) {
2107 ret = ocfs2_journal_access_di(handle, inode, xs->inode_bh,
2108 OCFS2_JOURNAL_ACCESS_CREATE);
2114 ret = ocfs2_claim_metadata(osb, handle, ctxt->meta_ac, 1,
2115 &suballoc_bit_start, &num_got,
2122 new_bh = sb_getblk(inode->i_sb, first_blkno);
2123 ocfs2_set_new_buffer_uptodate(inode, new_bh);
2125 ret = ocfs2_journal_access_xb(handle, inode, new_bh,
2126 OCFS2_JOURNAL_ACCESS_CREATE);
2132 /* Initialize ocfs2_xattr_block */
2133 xs->xattr_bh = new_bh;
2134 xblk = (struct ocfs2_xattr_block *)new_bh->b_data;
2135 memset(xblk, 0, inode->i_sb->s_blocksize);
2136 strcpy((void *)xblk, OCFS2_XATTR_BLOCK_SIGNATURE);
2137 xblk->xb_suballoc_slot = cpu_to_le16(osb->slot_num);
2138 xblk->xb_suballoc_bit = cpu_to_le16(suballoc_bit_start);
2139 xblk->xb_fs_generation = cpu_to_le32(osb->fs_generation);
2140 xblk->xb_blkno = cpu_to_le64(first_blkno);
2142 xs->header = &xblk->xb_attrs.xb_header;
2143 xs->base = (void *)xs->header;
2144 xs->end = (void *)xblk + inode->i_sb->s_blocksize;
2145 xs->here = xs->header->xh_entries;
2147 ret = ocfs2_journal_dirty(handle, new_bh);
2152 di->i_xattr_loc = cpu_to_le64(first_blkno);
2153 ocfs2_journal_dirty(handle, xs->inode_bh);
2155 xblk = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
2157 if (!(le16_to_cpu(xblk->xb_flags) & OCFS2_XATTR_INDEXED)) {
2158 /* Set extended attribute into external block */
2159 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
2160 OCFS2_HAS_XATTR_FL);
2161 if (!ret || ret != -ENOSPC)
2164 ret = ocfs2_xattr_create_index_block(inode, xs, ctxt);
2169 ret = ocfs2_xattr_set_entry_index_block(inode, xi, xs, ctxt);
2176 /* Check whether the new xattr can be inserted into the inode. */
2177 static int ocfs2_xattr_can_be_in_inode(struct inode *inode,
2178 struct ocfs2_xattr_info *xi,
2179 struct ocfs2_xattr_search *xs)
2182 struct ocfs2_xattr_entry *last;
2184 size_t min_offs = xs->end - xs->base;
2189 last = xs->header->xh_entries;
2191 for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
2192 size_t offs = le16_to_cpu(last->xe_name_offset);
2193 if (offs < min_offs)
2198 free = min_offs - ((void *)last - xs->base) - OCFS2_XATTR_HEADER_GAP;
2202 BUG_ON(!xs->not_found);
2204 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
2205 value_size = OCFS2_XATTR_ROOT_SIZE;
2207 value_size = OCFS2_XATTR_SIZE(xi->value_len);
2209 if (free >= sizeof(struct ocfs2_xattr_entry) +
2210 OCFS2_XATTR_SIZE(strlen(xi->name)) + value_size)
2216 static int ocfs2_calc_xattr_set_need(struct inode *inode,
2217 struct ocfs2_dinode *di,
2218 struct ocfs2_xattr_info *xi,
2219 struct ocfs2_xattr_search *xis,
2220 struct ocfs2_xattr_search *xbs,
2225 int ret = 0, old_in_xb = 0;
2226 int clusters_add = 0, meta_add = 0, credits = 0;
2227 struct buffer_head *bh = NULL;
2228 struct ocfs2_xattr_block *xb = NULL;
2229 struct ocfs2_xattr_entry *xe = NULL;
2230 struct ocfs2_xattr_value_root *xv = NULL;
2232 int name_offset, name_len = 0;
2233 u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2238 * Calculate the clusters we need to write.
2239 * No matter whether we replace an old one or add a new one,
2240 * we need this for writing.
2242 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
2243 credits += new_clusters *
2244 ocfs2_clusters_to_blocks(inode->i_sb, 1);
2246 if (xis->not_found && xbs->not_found) {
2247 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2249 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
2250 clusters_add += new_clusters;
2251 credits += ocfs2_calc_extend_credits(inode->i_sb,
2259 if (!xis->not_found) {
2261 name_offset = le16_to_cpu(xe->xe_name_offset);
2262 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2264 credits += OCFS2_INODE_UPDATE_CREDITS;
2266 int i, block_off = 0;
2267 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2269 name_offset = le16_to_cpu(xe->xe_name_offset);
2270 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2271 i = xbs->here - xbs->header->xh_entries;
2274 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
2275 ret = ocfs2_xattr_bucket_get_name_value(inode,
2276 bucket_xh(xbs->bucket),
2279 base = bucket_block(xbs->bucket, block_off);
2280 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2283 credits += OCFS2_XATTR_BLOCK_UPDATE_CREDITS;
2288 * delete a xattr doesn't need metadata and cluster allocation.
2289 * so just calculate the credits and return.
2291 * The credits for removing the value tree will be extended
2292 * by ocfs2_remove_extent itself.
2295 if (!ocfs2_xattr_is_local(xe))
2296 credits += ocfs2_remove_extent_credits(inode->i_sb);
2301 /* do cluster allocation guess first. */
2302 value_size = le64_to_cpu(xe->xe_value_size);
2306 * In xattr set, we always try to set the xe in inode first,
2307 * so if it can be inserted into inode successfully, the old
2308 * one will be removed from the xattr block, and this xattr
2309 * will be inserted into inode as a new xattr in inode.
2311 if (ocfs2_xattr_can_be_in_inode(inode, xi, xis)) {
2312 clusters_add += new_clusters;
2313 credits += ocfs2_remove_extent_credits(inode->i_sb) +
2314 OCFS2_INODE_UPDATE_CREDITS;
2315 if (!ocfs2_xattr_is_local(xe))
2316 credits += ocfs2_calc_extend_credits(
2324 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
2325 /* the new values will be stored outside. */
2326 u32 old_clusters = 0;
2328 if (!ocfs2_xattr_is_local(xe)) {
2329 old_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2331 xv = (struct ocfs2_xattr_value_root *)
2332 (base + name_offset + name_len);
2333 value_size = OCFS2_XATTR_ROOT_SIZE;
2337 if (old_clusters >= new_clusters) {
2338 credits += ocfs2_remove_extent_credits(inode->i_sb);
2341 meta_add += ocfs2_extend_meta_needed(&xv->xr_list);
2342 clusters_add += new_clusters - old_clusters;
2343 credits += ocfs2_calc_extend_credits(inode->i_sb,
2347 if (value_size >= OCFS2_XATTR_ROOT_SIZE)
2352 * Now the new value will be stored inside. So if the new
2353 * value is smaller than the size of value root or the old
2354 * value, we don't need any allocation, otherwise we have
2355 * to guess metadata allocation.
2357 if ((ocfs2_xattr_is_local(xe) && value_size >= xi->value_len) ||
2358 (!ocfs2_xattr_is_local(xe) &&
2359 OCFS2_XATTR_ROOT_SIZE >= xi->value_len))
2364 /* calculate metadata allocation. */
2365 if (di->i_xattr_loc) {
2366 if (!xbs->xattr_bh) {
2367 ret = ocfs2_read_xattr_block(inode,
2368 le64_to_cpu(di->i_xattr_loc),
2375 xb = (struct ocfs2_xattr_block *)bh->b_data;
2377 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2380 * If there is already an xattr tree, good, we can calculate
2381 * like other b-trees. Otherwise we may have the chance of
2382 * create a tree, the credit calculation is borrowed from
2383 * ocfs2_calc_extend_credits with root_el = NULL. And the
2384 * new tree will be cluster based, so no meta is needed.
2386 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
2387 struct ocfs2_extent_list *el =
2388 &xb->xb_attrs.xb_root.xt_list;
2389 meta_add += ocfs2_extend_meta_needed(el);
2390 credits += ocfs2_calc_extend_credits(inode->i_sb,
2393 credits += OCFS2_SUBALLOC_ALLOC + 1;
2396 * This cluster will be used either for new bucket or for
2398 * If the cluster size is the same as the bucket size, one
2399 * more is needed since we may need to extend the bucket
2403 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2404 if (OCFS2_XATTR_BUCKET_SIZE ==
2405 OCFS2_SB(inode->i_sb)->s_clustersize) {
2406 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2411 credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
2415 *clusters_need = clusters_add;
2417 *meta_need = meta_add;
2419 *credits_need = credits;
2424 static int ocfs2_init_xattr_set_ctxt(struct inode *inode,
2425 struct ocfs2_dinode *di,
2426 struct ocfs2_xattr_info *xi,
2427 struct ocfs2_xattr_search *xis,
2428 struct ocfs2_xattr_search *xbs,
2429 struct ocfs2_xattr_set_ctxt *ctxt,
2432 int clusters_add, meta_add, ret;
2433 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2435 memset(ctxt, 0, sizeof(struct ocfs2_xattr_set_ctxt));
2437 ocfs2_init_dealloc_ctxt(&ctxt->dealloc);
2439 ret = ocfs2_calc_xattr_set_need(inode, di, xi, xis, xbs,
2440 &clusters_add, &meta_add, credits);
2446 mlog(0, "Set xattr %s, reserve meta blocks = %d, clusters = %d, "
2447 "credits = %d\n", xi->name, meta_add, clusters_add, *credits);
2450 ret = ocfs2_reserve_new_metadata_blocks(osb, meta_add,
2459 ret = ocfs2_reserve_clusters(osb, clusters_add, &ctxt->data_ac);
2465 if (ctxt->meta_ac) {
2466 ocfs2_free_alloc_context(ctxt->meta_ac);
2467 ctxt->meta_ac = NULL;
2471 * We cannot have an error and a non null ctxt->data_ac.
2478 static int __ocfs2_xattr_set_handle(struct inode *inode,
2479 struct ocfs2_dinode *di,
2480 struct ocfs2_xattr_info *xi,
2481 struct ocfs2_xattr_search *xis,
2482 struct ocfs2_xattr_search *xbs,
2483 struct ocfs2_xattr_set_ctxt *ctxt)
2485 int ret = 0, credits, old_found;
2488 /* Remove existing extended attribute */
2489 if (!xis->not_found)
2490 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2491 else if (!xbs->not_found)
2492 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2494 /* We always try to set extended attribute into inode first*/
2495 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2496 if (!ret && !xbs->not_found) {
2498 * If succeed and that extended attribute existing in
2499 * external block, then we will remove it.
2504 old_found = xis->not_found;
2505 xis->not_found = -ENODATA;
2506 ret = ocfs2_calc_xattr_set_need(inode,
2514 xis->not_found = old_found;
2520 ret = ocfs2_extend_trans(ctxt->handle, credits +
2521 ctxt->handle->h_buffer_credits);
2526 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2527 } else if (ret == -ENOSPC) {
2528 if (di->i_xattr_loc && !xbs->xattr_bh) {
2529 ret = ocfs2_xattr_block_find(inode,
2535 old_found = xis->not_found;
2536 xis->not_found = -ENODATA;
2537 ret = ocfs2_calc_xattr_set_need(inode,
2545 xis->not_found = old_found;
2551 ret = ocfs2_extend_trans(ctxt->handle, credits +
2552 ctxt->handle->h_buffer_credits);
2559 * If no space in inode, we will set extended attribute
2560 * into external block.
2562 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2565 if (!xis->not_found) {
2567 * If succeed and that extended attribute
2568 * existing in inode, we will remove it.
2572 xbs->not_found = -ENODATA;
2573 ret = ocfs2_calc_xattr_set_need(inode,
2586 ret = ocfs2_extend_trans(ctxt->handle, credits +
2587 ctxt->handle->h_buffer_credits);
2592 ret = ocfs2_xattr_ibody_set(inode, xi,
2599 /* Update inode ctime. */
2600 ret = ocfs2_journal_access_di(ctxt->handle, inode,
2602 OCFS2_JOURNAL_ACCESS_WRITE);
2608 inode->i_ctime = CURRENT_TIME;
2609 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
2610 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
2611 ocfs2_journal_dirty(ctxt->handle, xis->inode_bh);
2618 * This function only called duing creating inode
2619 * for init security/acl xattrs of the new inode.
2620 * All transanction credits have been reserved in mknod.
2622 int ocfs2_xattr_set_handle(handle_t *handle,
2623 struct inode *inode,
2624 struct buffer_head *di_bh,
2630 struct ocfs2_alloc_context *meta_ac,
2631 struct ocfs2_alloc_context *data_ac)
2633 struct ocfs2_dinode *di;
2636 struct ocfs2_xattr_info xi = {
2637 .name_index = name_index,
2640 .value_len = value_len,
2643 struct ocfs2_xattr_search xis = {
2644 .not_found = -ENODATA,
2647 struct ocfs2_xattr_search xbs = {
2648 .not_found = -ENODATA,
2651 struct ocfs2_xattr_set_ctxt ctxt = {
2657 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2661 * In extreme situation, may need xattr bucket when
2662 * block size is too small. And we have already reserved
2663 * the credits for bucket in mknod.
2665 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE) {
2666 xbs.bucket = ocfs2_xattr_bucket_new(inode);
2668 mlog_errno(-ENOMEM);
2673 xis.inode_bh = xbs.inode_bh = di_bh;
2674 di = (struct ocfs2_dinode *)di_bh->b_data;
2676 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2678 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2681 if (xis.not_found) {
2682 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2687 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2690 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2691 brelse(xbs.xattr_bh);
2692 ocfs2_xattr_bucket_free(xbs.bucket);
2700 * Set, replace or remove an extended attribute for this inode.
2701 * value is NULL to remove an existing extended attribute, else either
2702 * create or replace an extended attribute.
2704 int ocfs2_xattr_set(struct inode *inode,
2711 struct buffer_head *di_bh = NULL;
2712 struct ocfs2_dinode *di;
2714 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2715 struct inode *tl_inode = osb->osb_tl_inode;
2716 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
2718 struct ocfs2_xattr_info xi = {
2719 .name_index = name_index,
2722 .value_len = value_len,
2725 struct ocfs2_xattr_search xis = {
2726 .not_found = -ENODATA,
2729 struct ocfs2_xattr_search xbs = {
2730 .not_found = -ENODATA,
2733 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2737 * Only xbs will be used on indexed trees. xis doesn't need a
2740 xbs.bucket = ocfs2_xattr_bucket_new(inode);
2742 mlog_errno(-ENOMEM);
2746 ret = ocfs2_inode_lock(inode, &di_bh, 1);
2749 goto cleanup_nolock;
2751 xis.inode_bh = xbs.inode_bh = di_bh;
2752 di = (struct ocfs2_dinode *)di_bh->b_data;
2754 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2756 * Scan inode and external block to find the same name
2757 * extended attribute and collect search infomation.
2759 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2762 if (xis.not_found) {
2763 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2768 if (xis.not_found && xbs.not_found) {
2770 if (flags & XATTR_REPLACE)
2777 if (flags & XATTR_CREATE)
2782 mutex_lock(&tl_inode->i_mutex);
2784 if (ocfs2_truncate_log_needs_flush(osb)) {
2785 ret = __ocfs2_flush_truncate_log(osb);
2787 mutex_unlock(&tl_inode->i_mutex);
2792 mutex_unlock(&tl_inode->i_mutex);
2794 ret = ocfs2_init_xattr_set_ctxt(inode, di, &xi, &xis,
2795 &xbs, &ctxt, &credits);
2801 /* we need to update inode's ctime field, so add credit for it. */
2802 credits += OCFS2_INODE_UPDATE_CREDITS;
2803 ctxt.handle = ocfs2_start_trans(osb, credits);
2804 if (IS_ERR(ctxt.handle)) {
2805 ret = PTR_ERR(ctxt.handle);
2810 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2812 ocfs2_commit_trans(osb, ctxt.handle);
2815 ocfs2_free_alloc_context(ctxt.data_ac);
2817 ocfs2_free_alloc_context(ctxt.meta_ac);
2818 if (ocfs2_dealloc_has_cluster(&ctxt.dealloc))
2819 ocfs2_schedule_truncate_log_flush(osb, 1);
2820 ocfs2_run_deallocs(osb, &ctxt.dealloc);
2822 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2823 ocfs2_inode_unlock(inode, 1);
2826 brelse(xbs.xattr_bh);
2827 ocfs2_xattr_bucket_free(xbs.bucket);
2833 * Find the xattr extent rec which may contains name_hash.
2834 * e_cpos will be the first name hash of the xattr rec.
2835 * el must be the ocfs2_xattr_header.xb_attrs.xb_root.xt_list.
2837 static int ocfs2_xattr_get_rec(struct inode *inode,
2842 struct ocfs2_extent_list *el)
2845 struct buffer_head *eb_bh = NULL;
2846 struct ocfs2_extent_block *eb;
2847 struct ocfs2_extent_rec *rec = NULL;
2850 if (el->l_tree_depth) {
2851 ret = ocfs2_find_leaf(inode, el, name_hash, &eb_bh);
2857 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2860 if (el->l_tree_depth) {
2861 ocfs2_error(inode->i_sb,
2862 "Inode %lu has non zero tree depth in "
2863 "xattr tree block %llu\n", inode->i_ino,
2864 (unsigned long long)eb_bh->b_blocknr);
2870 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
2871 rec = &el->l_recs[i];
2873 if (le32_to_cpu(rec->e_cpos) <= name_hash) {
2874 e_blkno = le64_to_cpu(rec->e_blkno);
2880 ocfs2_error(inode->i_sb, "Inode %lu has bad extent "
2881 "record (%u, %u, 0) in xattr", inode->i_ino,
2882 le32_to_cpu(rec->e_cpos),
2883 ocfs2_rec_clusters(el, rec));
2888 *p_blkno = le64_to_cpu(rec->e_blkno);
2889 *num_clusters = le16_to_cpu(rec->e_leaf_clusters);
2891 *e_cpos = le32_to_cpu(rec->e_cpos);
2897 typedef int (xattr_bucket_func)(struct inode *inode,
2898 struct ocfs2_xattr_bucket *bucket,
2901 static int ocfs2_find_xe_in_bucket(struct inode *inode,
2902 struct ocfs2_xattr_bucket *bucket,
2909 int i, ret = 0, cmp = 1, block_off, new_offset;
2910 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
2911 size_t name_len = strlen(name);
2912 struct ocfs2_xattr_entry *xe = NULL;
2916 * We don't use binary search in the bucket because there
2917 * may be multiple entries with the same name hash.
2919 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
2920 xe = &xh->xh_entries[i];
2922 if (name_hash > le32_to_cpu(xe->xe_name_hash))
2924 else if (name_hash < le32_to_cpu(xe->xe_name_hash))
2927 cmp = name_index - ocfs2_xattr_get_type(xe);
2929 cmp = name_len - xe->xe_name_len;
2933 ret = ocfs2_xattr_bucket_get_name_value(inode,
2944 xe_name = bucket_block(bucket, block_off) + new_offset;
2945 if (!memcmp(name, xe_name, name_len)) {
2957 * Find the specified xattr entry in a series of buckets.
2958 * This series start from p_blkno and last for num_clusters.
2959 * The ocfs2_xattr_header.xh_num_buckets of the first bucket contains
2960 * the num of the valid buckets.
2962 * Return the buffer_head this xattr should reside in. And if the xattr's
2963 * hash is in the gap of 2 buckets, return the lower bucket.
2965 static int ocfs2_xattr_bucket_find(struct inode *inode,
2972 struct ocfs2_xattr_search *xs)
2975 struct ocfs2_xattr_header *xh = NULL;
2976 struct ocfs2_xattr_entry *xe = NULL;
2978 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2979 int low_bucket = 0, bucket, high_bucket;
2980 struct ocfs2_xattr_bucket *search;
2982 u64 blkno, lower_blkno = 0;
2984 search = ocfs2_xattr_bucket_new(inode);
2991 ret = ocfs2_read_xattr_bucket(search, p_blkno);
2997 xh = bucket_xh(search);
2998 high_bucket = le16_to_cpu(xh->xh_num_buckets) - 1;
2999 while (low_bucket <= high_bucket) {
3000 ocfs2_xattr_bucket_relse(search);
3002 bucket = (low_bucket + high_bucket) / 2;
3003 blkno = p_blkno + bucket * blk_per_bucket;
3004 ret = ocfs2_read_xattr_bucket(search, blkno);
3010 xh = bucket_xh(search);
3011 xe = &xh->xh_entries[0];
3012 if (name_hash < le32_to_cpu(xe->xe_name_hash)) {
3013 high_bucket = bucket - 1;
3018 * Check whether the hash of the last entry in our
3019 * bucket is larger than the search one. for an empty
3020 * bucket, the last one is also the first one.
3023 xe = &xh->xh_entries[le16_to_cpu(xh->xh_count) - 1];
3025 last_hash = le32_to_cpu(xe->xe_name_hash);
3027 /* record lower_blkno which may be the insert place. */
3028 lower_blkno = blkno;
3030 if (name_hash > le32_to_cpu(xe->xe_name_hash)) {
3031 low_bucket = bucket + 1;
3035 /* the searched xattr should reside in this bucket if exists. */
3036 ret = ocfs2_find_xe_in_bucket(inode, search,
3037 name_index, name, name_hash,
3047 * Record the bucket we have found.
3048 * When the xattr's hash value is in the gap of 2 buckets, we will
3049 * always set it to the previous bucket.
3052 lower_blkno = p_blkno;
3054 /* This should be in cache - we just read it during the search */
3055 ret = ocfs2_read_xattr_bucket(xs->bucket, lower_blkno);
3061 xs->header = bucket_xh(xs->bucket);
3062 xs->base = bucket_block(xs->bucket, 0);
3063 xs->end = xs->base + inode->i_sb->s_blocksize;
3066 xs->here = &xs->header->xh_entries[index];
3067 mlog(0, "find xattr %s in bucket %llu, entry = %u\n", name,
3068 (unsigned long long)bucket_blkno(xs->bucket), index);
3073 ocfs2_xattr_bucket_free(search);
3077 static int ocfs2_xattr_index_block_find(struct inode *inode,
3078 struct buffer_head *root_bh,
3081 struct ocfs2_xattr_search *xs)
3084 struct ocfs2_xattr_block *xb =
3085 (struct ocfs2_xattr_block *)root_bh->b_data;
3086 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
3087 struct ocfs2_extent_list *el = &xb_root->xt_list;
3089 u32 first_hash, num_clusters = 0;
3090 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
3092 if (le16_to_cpu(el->l_next_free_rec) == 0)
3095 mlog(0, "find xattr %s, hash = %u, index = %d in xattr tree\n",
3096 name, name_hash, name_index);
3098 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &first_hash,
3105 BUG_ON(p_blkno == 0 || num_clusters == 0 || first_hash > name_hash);
3107 mlog(0, "find xattr extent rec %u clusters from %llu, the first hash "
3108 "in the rec is %u\n", num_clusters, (unsigned long long)p_blkno,
3111 ret = ocfs2_xattr_bucket_find(inode, name_index, name, name_hash,
3112 p_blkno, first_hash, num_clusters, xs);
3118 static int ocfs2_iterate_xattr_buckets(struct inode *inode,
3121 xattr_bucket_func *func,
3125 u32 bpc = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb));
3126 u32 num_buckets = clusters * bpc;
3127 struct ocfs2_xattr_bucket *bucket;
3129 bucket = ocfs2_xattr_bucket_new(inode);
3131 mlog_errno(-ENOMEM);
3135 mlog(0, "iterating xattr buckets in %u clusters starting from %llu\n",
3136 clusters, (unsigned long long)blkno);
3138 for (i = 0; i < num_buckets; i++, blkno += bucket->bu_blocks) {
3139 ret = ocfs2_read_xattr_bucket(bucket, blkno);
3146 * The real bucket num in this series of blocks is stored
3147 * in the 1st bucket.
3150 num_buckets = le16_to_cpu(bucket_xh(bucket)->xh_num_buckets);
3152 mlog(0, "iterating xattr bucket %llu, first hash %u\n",
3153 (unsigned long long)blkno,
3154 le32_to_cpu(bucket_xh(bucket)->xh_entries[0].xe_name_hash));
3156 ret = func(inode, bucket, para);
3159 /* Fall through to bucket_relse() */
3162 ocfs2_xattr_bucket_relse(bucket);
3167 ocfs2_xattr_bucket_free(bucket);
3171 struct ocfs2_xattr_tree_list {
3177 static int ocfs2_xattr_bucket_get_name_value(struct inode *inode,
3178 struct ocfs2_xattr_header *xh,
3185 if (index < 0 || index >= le16_to_cpu(xh->xh_count))
3188 name_offset = le16_to_cpu(xh->xh_entries[index].xe_name_offset);
3190 *block_off = name_offset >> inode->i_sb->s_blocksize_bits;
3191 *new_offset = name_offset % inode->i_sb->s_blocksize;
3196 static int ocfs2_list_xattr_bucket(struct inode *inode,
3197 struct ocfs2_xattr_bucket *bucket,
3201 struct ocfs2_xattr_tree_list *xl = (struct ocfs2_xattr_tree_list *)para;
3202 int i, block_off, new_offset;
3203 const char *prefix, *name;
3205 for (i = 0 ; i < le16_to_cpu(bucket_xh(bucket)->xh_count); i++) {
3206 struct ocfs2_xattr_entry *entry = &bucket_xh(bucket)->xh_entries[i];
3207 type = ocfs2_xattr_get_type(entry);
3208 prefix = ocfs2_xattr_prefix(type);
3211 ret = ocfs2_xattr_bucket_get_name_value(inode,
3219 name = (const char *)bucket_block(bucket, block_off) +
3221 ret = ocfs2_xattr_list_entry(xl->buffer,
3225 entry->xe_name_len);
3234 static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
3235 struct ocfs2_xattr_tree_root *xt,
3239 struct ocfs2_extent_list *el = &xt->xt_list;
3241 u32 name_hash = UINT_MAX, e_cpos = 0, num_clusters = 0;
3243 struct ocfs2_xattr_tree_list xl = {
3245 .buffer_size = buffer_size,
3249 if (le16_to_cpu(el->l_next_free_rec) == 0)
3252 while (name_hash > 0) {
3253 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
3254 &e_cpos, &num_clusters, el);
3260 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
3261 ocfs2_list_xattr_bucket,
3271 name_hash = e_cpos - 1;
3279 static int cmp_xe(const void *a, const void *b)
3281 const struct ocfs2_xattr_entry *l = a, *r = b;
3282 u32 l_hash = le32_to_cpu(l->xe_name_hash);
3283 u32 r_hash = le32_to_cpu(r->xe_name_hash);
3285 if (l_hash > r_hash)
3287 if (l_hash < r_hash)
3292 static void swap_xe(void *a, void *b, int size)
3294 struct ocfs2_xattr_entry *l = a, *r = b, tmp;
3297 memcpy(l, r, sizeof(struct ocfs2_xattr_entry));
3298 memcpy(r, &tmp, sizeof(struct ocfs2_xattr_entry));
3302 * When the ocfs2_xattr_block is filled up, new bucket will be created
3303 * and all the xattr entries will be moved to the new bucket.
3304 * The header goes at the start of the bucket, and the names+values are
3305 * filled from the end. This is why *target starts as the last buffer.
3306 * Note: we need to sort the entries since they are not saved in order
3307 * in the ocfs2_xattr_block.
3309 static void ocfs2_cp_xattr_block_to_bucket(struct inode *inode,
3310 struct buffer_head *xb_bh,
3311 struct ocfs2_xattr_bucket *bucket)
3313 int i, blocksize = inode->i_sb->s_blocksize;
3314 int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
3315 u16 offset, size, off_change;
3316 struct ocfs2_xattr_entry *xe;
3317 struct ocfs2_xattr_block *xb =
3318 (struct ocfs2_xattr_block *)xb_bh->b_data;
3319 struct ocfs2_xattr_header *xb_xh = &xb->xb_attrs.xb_header;
3320 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
3321 u16 count = le16_to_cpu(xb_xh->xh_count);
3322 char *src = xb_bh->b_data;
3323 char *target = bucket_block(bucket, blks - 1);
3325 mlog(0, "cp xattr from block %llu to bucket %llu\n",
3326 (unsigned long long)xb_bh->b_blocknr,
3327 (unsigned long long)bucket_blkno(bucket));
3329 for (i = 0; i < blks; i++)
3330 memset(bucket_block(bucket, i), 0, blocksize);
3333 * Since the xe_name_offset is based on ocfs2_xattr_header,
3334 * there is a offset change corresponding to the change of
3335 * ocfs2_xattr_header's position.
3337 off_change = offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3338 xe = &xb_xh->xh_entries[count - 1];
3339 offset = le16_to_cpu(xe->xe_name_offset) + off_change;
3340 size = blocksize - offset;
3342 /* copy all the names and values. */
3343 memcpy(target + offset, src + offset, size);
3345 /* Init new header now. */
3346 xh->xh_count = xb_xh->xh_count;
3347 xh->xh_num_buckets = cpu_to_le16(1);
3348 xh->xh_name_value_len = cpu_to_le16(size);
3349 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE - size);
3351 /* copy all the entries. */
3352 target = bucket_block(bucket, 0);
3353 offset = offsetof(struct ocfs2_xattr_header, xh_entries);
3354 size = count * sizeof(struct ocfs2_xattr_entry);
3355 memcpy(target + offset, (char *)xb_xh + offset, size);
3357 /* Change the xe offset for all the xe because of the move. */
3358 off_change = OCFS2_XATTR_BUCKET_SIZE - blocksize +
3359 offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3360 for (i = 0; i < count; i++)
3361 le16_add_cpu(&xh->xh_entries[i].xe_name_offset, off_change);
3363 mlog(0, "copy entry: start = %u, size = %u, offset_change = %u\n",
3364 offset, size, off_change);
3366 sort(target + offset, count, sizeof(struct ocfs2_xattr_entry),
3371 * After we move xattr from block to index btree, we have to
3372 * update ocfs2_xattr_search to the new xe and base.
3374 * When the entry is in xattr block, xattr_bh indicates the storage place.
3375 * While if the entry is in index b-tree, "bucket" indicates the
3376 * real place of the xattr.
3378 static void ocfs2_xattr_update_xattr_search(struct inode *inode,
3379 struct ocfs2_xattr_search *xs,
3380 struct buffer_head *old_bh)
3382 char *buf = old_bh->b_data;
3383 struct ocfs2_xattr_block *old_xb = (struct ocfs2_xattr_block *)buf;
3384 struct ocfs2_xattr_header *old_xh = &old_xb->xb_attrs.xb_header;
3387 xs->header = bucket_xh(xs->bucket);
3388 xs->base = bucket_block(xs->bucket, 0);
3389 xs->end = xs->base + inode->i_sb->s_blocksize;
3394 i = xs->here - old_xh->xh_entries;
3395 xs->here = &xs->header->xh_entries[i];
3398 static int ocfs2_xattr_create_index_block(struct inode *inode,
3399 struct ocfs2_xattr_search *xs,
3400 struct ocfs2_xattr_set_ctxt *ctxt)
3405 handle_t *handle = ctxt->handle;
3406 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3407 struct ocfs2_inode_info *oi = OCFS2_I(inode);
3408 struct buffer_head *xb_bh = xs->xattr_bh;
3409 struct ocfs2_xattr_block *xb =
3410 (struct ocfs2_xattr_block *)xb_bh->b_data;
3411 struct ocfs2_xattr_tree_root *xr;
3412 u16 xb_flags = le16_to_cpu(xb->xb_flags);
3414 mlog(0, "create xattr index block for %llu\n",
3415 (unsigned long long)xb_bh->b_blocknr);
3417 BUG_ON(xb_flags & OCFS2_XATTR_INDEXED);
3418 BUG_ON(!xs->bucket);
3422 * We can use this lock for now, and maybe move to a dedicated mutex
3423 * if performance becomes a problem later.
3425 down_write(&oi->ip_alloc_sem);
3427 ret = ocfs2_journal_access_xb(handle, inode, xb_bh,
3428 OCFS2_JOURNAL_ACCESS_WRITE);
3434 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac,
3435 1, 1, &bit_off, &len);
3442 * The bucket may spread in many blocks, and
3443 * we will only touch the 1st block and the last block
3444 * in the whole bucket(one for entry and one for data).
3446 blkno = ocfs2_clusters_to_blocks(inode->i_sb, bit_off);
3448 mlog(0, "allocate 1 cluster from %llu to xattr block\n",
3449 (unsigned long long)blkno);
3451 ret = ocfs2_init_xattr_bucket(xs->bucket, blkno);
3457 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
3458 OCFS2_JOURNAL_ACCESS_CREATE);
3464 ocfs2_cp_xattr_block_to_bucket(inode, xb_bh, xs->bucket);
3465 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
3467 ocfs2_xattr_update_xattr_search(inode, xs, xb_bh);
3469 /* Change from ocfs2_xattr_header to ocfs2_xattr_tree_root */
3470 memset(&xb->xb_attrs, 0, inode->i_sb->s_blocksize -
3471 offsetof(struct ocfs2_xattr_block, xb_attrs));
3473 xr = &xb->xb_attrs.xb_root;
3474 xr->xt_clusters = cpu_to_le32(1);
3475 xr->xt_last_eb_blk = 0;
3476 xr->xt_list.l_tree_depth = 0;
3477 xr->xt_list.l_count = cpu_to_le16(ocfs2_xattr_recs_per_xb(inode->i_sb));
3478 xr->xt_list.l_next_free_rec = cpu_to_le16(1);
3480 xr->xt_list.l_recs[0].e_cpos = 0;
3481 xr->xt_list.l_recs[0].e_blkno = cpu_to_le64(blkno);
3482 xr->xt_list.l_recs[0].e_leaf_clusters = cpu_to_le16(1);
3484 xb->xb_flags = cpu_to_le16(xb_flags | OCFS2_XATTR_INDEXED);
3486 ocfs2_journal_dirty(handle, xb_bh);
3489 up_write(&oi->ip_alloc_sem);
3494 static int cmp_xe_offset(const void *a, const void *b)
3496 const struct ocfs2_xattr_entry *l = a, *r = b;
3497 u32 l_name_offset = le16_to_cpu(l->xe_name_offset);
3498 u32 r_name_offset = le16_to_cpu(r->xe_name_offset);
3500 if (l_name_offset < r_name_offset)
3502 if (l_name_offset > r_name_offset)
3508 * defrag a xattr bucket if we find that the bucket has some
3509 * holes beteen name/value pairs.
3510 * We will move all the name/value pairs to the end of the bucket
3511 * so that we can spare some space for insertion.
3513 static int ocfs2_defrag_xattr_bucket(struct inode *inode,
3515 struct ocfs2_xattr_bucket *bucket)
3518 size_t end, offset, len, value_len;
3519 struct ocfs2_xattr_header *xh;
3520 char *entries, *buf, *bucket_buf = NULL;
3521 u64 blkno = bucket_blkno(bucket);
3523 size_t blocksize = inode->i_sb->s_blocksize;
3524 struct ocfs2_xattr_entry *xe;
3527 * In order to make the operation more efficient and generic,
3528 * we copy all the blocks into a contiguous memory and do the
3529 * defragment there, so if anything is error, we will not touch
3532 bucket_buf = kmalloc(OCFS2_XATTR_BUCKET_SIZE, GFP_NOFS);
3539 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3540 memcpy(buf, bucket_block(bucket, i), blocksize);
3542 ret = ocfs2_xattr_bucket_journal_access(handle, bucket,
3543 OCFS2_JOURNAL_ACCESS_WRITE);
3549 xh = (struct ocfs2_xattr_header *)bucket_buf;
3550 entries = (char *)xh->xh_entries;
3551 xh_free_start = le16_to_cpu(xh->xh_free_start);
3553 mlog(0, "adjust xattr bucket in %llu, count = %u, "
3554 "xh_free_start = %u, xh_name_value_len = %u.\n",
3555 (unsigned long long)blkno, le16_to_cpu(xh->xh_count),
3556 xh_free_start, le16_to_cpu(xh->xh_name_value_len));
3559 * sort all the entries by their offset.
3560 * the largest will be the first, so that we can
3561 * move them to the end one by one.
3563 sort(entries, le16_to_cpu(xh->xh_count),
3564 sizeof(struct ocfs2_xattr_entry),
3565 cmp_xe_offset, swap_xe);
3567 /* Move all name/values to the end of the bucket. */
3568 xe = xh->xh_entries;
3569 end = OCFS2_XATTR_BUCKET_SIZE;
3570 for (i = 0; i < le16_to_cpu(xh->xh_count); i++, xe++) {
3571 offset = le16_to_cpu(xe->xe_name_offset);
3572 if (ocfs2_xattr_is_local(xe))
3573 value_len = OCFS2_XATTR_SIZE(
3574 le64_to_cpu(xe->xe_value_size));
3576 value_len = OCFS2_XATTR_ROOT_SIZE;
3577 len = OCFS2_XATTR_SIZE(xe->xe_name_len) + value_len;
3580 * We must make sure that the name/value pair
3581 * exist in the same block. So adjust end to
3582 * the previous block end if needed.
3584 if (((end - len) / blocksize !=
3585 (end - 1) / blocksize))
3586 end = end - end % blocksize;
3588 if (end > offset + len) {
3589 memmove(bucket_buf + end - len,
3590 bucket_buf + offset, len);
3591 xe->xe_name_offset = cpu_to_le16(end - len);
3594 mlog_bug_on_msg(end < offset + len, "Defrag check failed for "
3595 "bucket %llu\n", (unsigned long long)blkno);
3600 mlog_bug_on_msg(xh_free_start > end, "Defrag check failed for "
3601 "bucket %llu\n", (unsigned long long)blkno);
3603 if (xh_free_start == end)
3606 memset(bucket_buf + xh_free_start, 0, end - xh_free_start);
3607 xh->xh_free_start = cpu_to_le16(end);
3609 /* sort the entries by their name_hash. */
3610 sort(entries, le16_to_cpu(xh->xh_count),
3611 sizeof(struct ocfs2_xattr_entry),
3615 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3616 memcpy(bucket_block(bucket, i), buf, blocksize);
3617 ocfs2_xattr_bucket_journal_dirty(handle, bucket);
3625 * prev_blkno points to the start of an existing extent. new_blkno
3626 * points to a newly allocated extent. Because we know each of our
3627 * clusters contains more than bucket, we can easily split one cluster
3628 * at a bucket boundary. So we take the last cluster of the existing
3629 * extent and split it down the middle. We move the last half of the
3630 * buckets in the last cluster of the existing extent over to the new
3633 * first_bh is the buffer at prev_blkno so we can update the existing
3634 * extent's bucket count. header_bh is the bucket were we were hoping
3635 * to insert our xattr. If the bucket move places the target in the new
3636 * extent, we'll update first_bh and header_bh after modifying the old
3639 * first_hash will be set as the 1st xe's name_hash in the new extent.
3641 static int ocfs2_mv_xattr_bucket_cross_cluster(struct inode *inode,
3643 struct ocfs2_xattr_bucket *first,
3644 struct ocfs2_xattr_bucket *target,
3650 struct super_block *sb = inode->i_sb;
3651 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(sb);
3652 int num_buckets = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(sb));
3653 int to_move = num_buckets / 2;
3655 u64 last_cluster_blkno = bucket_blkno(first) +
3656 ((num_clusters - 1) * ocfs2_clusters_to_blocks(sb, 1));
3658 BUG_ON(le16_to_cpu(bucket_xh(first)->xh_num_buckets) < num_buckets);
3659 BUG_ON(OCFS2_XATTR_BUCKET_SIZE == OCFS2_SB(sb)->s_clustersize);
3661 mlog(0, "move half of xattrs in cluster %llu to %llu\n",
3662 (unsigned long long)last_cluster_blkno, (unsigned long long)new_blkno);
3664 ret = ocfs2_mv_xattr_buckets(inode, handle, bucket_blkno(first),
3665 last_cluster_blkno, new_blkno,
3666 to_move, first_hash);
3672 /* This is the first bucket that got moved */
3673 src_blkno = last_cluster_blkno + (to_move * blks_per_bucket);
3676 * If the target bucket was part of the moved buckets, we need to
3677 * update first and target.
3679 if (bucket_blkno(target) >= src_blkno) {
3680 /* Find the block for the new target bucket */
3681 src_blkno = new_blkno +
3682 (bucket_blkno(target) - src_blkno);
3684 ocfs2_xattr_bucket_relse(first);
3685 ocfs2_xattr_bucket_relse(target);
3688 * These shouldn't fail - the buffers are in the
3689 * journal from ocfs2_cp_xattr_bucket().
3691 ret = ocfs2_read_xattr_bucket(first, new_blkno);
3696 ret = ocfs2_read_xattr_bucket(target, src_blkno);
3707 * Find the suitable pos when we divide a bucket into 2.
3708 * We have to make sure the xattrs with the same hash value exist
3709 * in the same bucket.
3711 * If this ocfs2_xattr_header covers more than one hash value, find a
3712 * place where the hash value changes. Try to find the most even split.
3713 * The most common case is that all entries have different hash values,
3714 * and the first check we make will find a place to split.
3716 static int ocfs2_xattr_find_divide_pos(struct ocfs2_xattr_header *xh)
3718 struct ocfs2_xattr_entry *entries = xh->xh_entries;
3719 int count = le16_to_cpu(xh->xh_count);
3720 int delta, middle = count / 2;
3723 * We start at the middle. Each step gets farther away in both
3724 * directions. We therefore hit the change in hash value
3725 * nearest to the middle. Note that this loop does not execute for
3728 for (delta = 0; delta < middle; delta++) {
3729 /* Let's check delta earlier than middle */
3730 if (cmp_xe(&entries[middle - delta - 1],
3731 &entries[middle - delta]))
3732 return middle - delta;
3734 /* For even counts, don't walk off the end */
3735 if ((middle + delta + 1) == count)
3738 /* Now try delta past middle */
3739 if (cmp_xe(&entries[middle + delta],
3740 &entries[middle + delta + 1]))
3741 return middle + delta + 1;
3744 /* Every entry had the same hash */
3749 * Move some xattrs in old bucket(blk) to new bucket(new_blk).
3750 * first_hash will record the 1st hash of the new bucket.
3752 * Normally half of the xattrs will be moved. But we have to make
3753 * sure that the xattrs with the same hash value are stored in the
3754 * same bucket. If all the xattrs in this bucket have the same hash
3755 * value, the new bucket will be initialized as an empty one and the
3756 * first_hash will be initialized as (hash_value+1).
3758 static int ocfs2_divide_xattr_bucket(struct inode *inode,
3763 int new_bucket_head)
3766 int count, start, len, name_value_len = 0, xe_len, name_offset = 0;
3767 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
3768 struct ocfs2_xattr_header *xh;
3769 struct ocfs2_xattr_entry *xe;
3770 int blocksize = inode->i_sb->s_blocksize;
3772 mlog(0, "move some of xattrs from bucket %llu to %llu\n",
3773 (unsigned long long)blk, (unsigned long long)new_blk);
3775 s_bucket = ocfs2_xattr_bucket_new(inode);
3776 t_bucket = ocfs2_xattr_bucket_new(inode);
3777 if (!s_bucket || !t_bucket) {
3783 ret = ocfs2_read_xattr_bucket(s_bucket, blk);
3789 ret = ocfs2_xattr_bucket_journal_access(handle, s_bucket,
3790 OCFS2_JOURNAL_ACCESS_WRITE);
3797 * Even if !new_bucket_head, we're overwriting t_bucket. Thus,
3798 * there's no need to read it.
3800 ret = ocfs2_init_xattr_bucket(t_bucket, new_blk);
3807 * Hey, if we're overwriting t_bucket, what difference does
3808 * ACCESS_CREATE vs ACCESS_WRITE make? See the comment in the
3809 * same part of ocfs2_cp_xattr_bucket().
3811 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
3813 OCFS2_JOURNAL_ACCESS_CREATE :
3814 OCFS2_JOURNAL_ACCESS_WRITE);
3820 xh = bucket_xh(s_bucket);
3821 count = le16_to_cpu(xh->xh_count);
3822 start = ocfs2_xattr_find_divide_pos(xh);
3824 if (start == count) {
3825 xe = &xh->xh_entries[start-1];
3828 * initialized a new empty bucket here.
3829 * The hash value is set as one larger than
3830 * that of the last entry in the previous bucket.
3832 for (i = 0; i < t_bucket->bu_blocks; i++)
3833 memset(bucket_block(t_bucket, i), 0, blocksize);
3835 xh = bucket_xh(t_bucket);
3836 xh->xh_free_start = cpu_to_le16(blocksize);
3837 xh->xh_entries[0].xe_name_hash = xe->xe_name_hash;
3838 le32_add_cpu(&xh->xh_entries[0].xe_name_hash, 1);
3840 goto set_num_buckets;
3843 /* copy the whole bucket to the new first. */
3844 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
3846 /* update the new bucket. */
3847 xh = bucket_xh(t_bucket);
3850 * Calculate the total name/value len and xh_free_start for
3851 * the old bucket first.
3853 name_offset = OCFS2_XATTR_BUCKET_SIZE;
3855 for (i = 0; i < start; i++) {
3856 xe = &xh->xh_entries[i];
3857 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3858 if (ocfs2_xattr_is_local(xe))
3860 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3862 xe_len += OCFS2_XATTR_ROOT_SIZE;
3863 name_value_len += xe_len;
3864 if (le16_to_cpu(xe->xe_name_offset) < name_offset)
3865 name_offset = le16_to_cpu(xe->xe_name_offset);
3869 * Now begin the modification to the new bucket.
3871 * In the new bucket, We just move the xattr entry to the beginning
3872 * and don't touch the name/value. So there will be some holes in the
3873 * bucket, and they will be removed when ocfs2_defrag_xattr_bucket is
3876 xe = &xh->xh_entries[start];
3877 len = sizeof(struct ocfs2_xattr_entry) * (count - start);
3878 mlog(0, "mv xattr entry len %d from %d to %d\n", len,
3879 (int)((char *)xe - (char *)xh),
3880 (int)((char *)xh->xh_entries - (char *)xh));
3881 memmove((char *)xh->xh_entries, (char *)xe, len);
3882 xe = &xh->xh_entries[count - start];
3883 len = sizeof(struct ocfs2_xattr_entry) * start;
3884 memset((char *)xe, 0, len);
3886 le16_add_cpu(&xh->xh_count, -start);
3887 le16_add_cpu(&xh->xh_name_value_len, -name_value_len);
3889 /* Calculate xh_free_start for the new bucket. */
3890 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
3891 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
3892 xe = &xh->xh_entries[i];
3893 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3894 if (ocfs2_xattr_is_local(xe))
3896 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3898 xe_len += OCFS2_XATTR_ROOT_SIZE;
3899 if (le16_to_cpu(xe->xe_name_offset) <
3900 le16_to_cpu(xh->xh_free_start))
3901 xh->xh_free_start = xe->xe_name_offset;
3905 /* set xh->xh_num_buckets for the new xh. */
3906 if (new_bucket_head)
3907 xh->xh_num_buckets = cpu_to_le16(1);
3909 xh->xh_num_buckets = 0;
3911 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
3913 /* store the first_hash of the new bucket. */
3915 *first_hash = le32_to_cpu(xh->xh_entries[0].xe_name_hash);
3918 * Now only update the 1st block of the old bucket. If we
3919 * just added a new empty bucket, there is no need to modify
3925 xh = bucket_xh(s_bucket);
3926 memset(&xh->xh_entries[start], 0,
3927 sizeof(struct ocfs2_xattr_entry) * (count - start));
3928 xh->xh_count = cpu_to_le16(start);
3929 xh->xh_free_start = cpu_to_le16(name_offset);
3930 xh->xh_name_value_len = cpu_to_le16(name_value_len);
3932 ocfs2_xattr_bucket_journal_dirty(handle, s_bucket);
3935 ocfs2_xattr_bucket_free(s_bucket);
3936 ocfs2_xattr_bucket_free(t_bucket);
3942 * Copy xattr from one bucket to another bucket.
3944 * The caller must make sure that the journal transaction
3945 * has enough space for journaling.
3947 static int ocfs2_cp_xattr_bucket(struct inode *inode,
3954 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
3956 BUG_ON(s_blkno == t_blkno);
3958 mlog(0, "cp bucket %llu to %llu, target is %d\n",
3959 (unsigned long long)s_blkno, (unsigned long long)t_blkno,
3962 s_bucket = ocfs2_xattr_bucket_new(inode);
3963 t_bucket = ocfs2_xattr_bucket_new(inode);
3964 if (!s_bucket || !t_bucket) {
3970 ret = ocfs2_read_xattr_bucket(s_bucket, s_blkno);
3975 * Even if !t_is_new, we're overwriting t_bucket. Thus,
3976 * there's no need to read it.
3978 ret = ocfs2_init_xattr_bucket(t_bucket, t_blkno);
3983 * Hey, if we're overwriting t_bucket, what difference does
3984 * ACCESS_CREATE vs ACCESS_WRITE make? Well, if we allocated a new
3985 * cluster to fill, we came here from
3986 * ocfs2_mv_xattr_buckets(), and it is really new -
3987 * ACCESS_CREATE is required. But we also might have moved data
3988 * out of t_bucket before extending back into it.
3989 * ocfs2_add_new_xattr_bucket() can do this - its call to
3990 * ocfs2_add_new_xattr_cluster() may have created a new extent
3991 * and copied out the end of the old extent. Then it re-extends
3992 * the old extent back to create space for new xattrs. That's
3993 * how we get here, and the bucket isn't really new.
3995 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
3997 OCFS2_JOURNAL_ACCESS_CREATE :
3998 OCFS2_JOURNAL_ACCESS_WRITE);
4002 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
4003 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
4006 ocfs2_xattr_bucket_free(t_bucket);
4007 ocfs2_xattr_bucket_free(s_bucket);
4013 * src_blk points to the start of an existing extent. last_blk points to
4014 * last cluster in that extent. to_blk points to a newly allocated
4015 * extent. We copy the buckets from the cluster at last_blk to the new
4016 * extent. If start_bucket is non-zero, we skip that many buckets before
4017 * we start copying. The new extent's xh_num_buckets gets set to the
4018 * number of buckets we copied. The old extent's xh_num_buckets shrinks
4019 * by the same amount.
4021 static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
4022 u64 src_blk, u64 last_blk, u64 to_blk,
4023 unsigned int start_bucket,
4026 int i, ret, credits;
4027 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4028 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
4029 int num_buckets = ocfs2_xattr_buckets_per_cluster(osb);
4030 struct ocfs2_xattr_bucket *old_first, *new_first;
4032 mlog(0, "mv xattrs from cluster %llu to %llu\n",
4033 (unsigned long long)last_blk, (unsigned long long)to_blk);
4035 BUG_ON(start_bucket >= num_buckets);
4037 num_buckets -= start_bucket;
4038 last_blk += (start_bucket * blks_per_bucket);
4041 /* The first bucket of the original extent */
4042 old_first = ocfs2_xattr_bucket_new(inode);
4043 /* The first bucket of the new extent */
4044 new_first = ocfs2_xattr_bucket_new(inode);
4045 if (!old_first || !new_first) {
4051 ret = ocfs2_read_xattr_bucket(old_first, src_blk);
4058 * We need to update the first bucket of the old extent and all
4059 * the buckets going to the new extent.
4061 credits = ((num_buckets + 1) * blks_per_bucket) +
4062 handle->h_buffer_credits;
4063 ret = ocfs2_extend_trans(handle, credits);
4069 ret = ocfs2_xattr_bucket_journal_access(handle, old_first,
4070 OCFS2_JOURNAL_ACCESS_WRITE);
4076 for (i = 0; i < num_buckets; i++) {
4077 ret = ocfs2_cp_xattr_bucket(inode, handle,
4078 last_blk + (i * blks_per_bucket),
4079 to_blk + (i * blks_per_bucket),
4088 * Get the new bucket ready before we dirty anything
4089 * (This actually shouldn't fail, because we already dirtied
4090 * it once in ocfs2_cp_xattr_bucket()).
4092 ret = ocfs2_read_xattr_bucket(new_first, to_blk);
4097 ret = ocfs2_xattr_bucket_journal_access(handle, new_first,
4098 OCFS2_JOURNAL_ACCESS_WRITE);
4104 /* Now update the headers */
4105 le16_add_cpu(&bucket_xh(old_first)->xh_num_buckets, -num_buckets);
4106 ocfs2_xattr_bucket_journal_dirty(handle, old_first);
4108 bucket_xh(new_first)->xh_num_buckets = cpu_to_le16(num_buckets);
4109 ocfs2_xattr_bucket_journal_dirty(handle, new_first);
4112 *first_hash = le32_to_cpu(bucket_xh(new_first)->xh_entries[0].xe_name_hash);
4115 ocfs2_xattr_bucket_free(new_first);
4116 ocfs2_xattr_bucket_free(old_first);
4121 * Move some xattrs in this cluster to the new cluster.
4122 * This function should only be called when bucket size == cluster size.
4123 * Otherwise ocfs2_mv_xattr_bucket_cross_cluster should be used instead.
4125 static int ocfs2_divide_xattr_cluster(struct inode *inode,
4131 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
4132 int ret, credits = 2 * blk_per_bucket + handle->h_buffer_credits;
4134 BUG_ON(OCFS2_XATTR_BUCKET_SIZE < OCFS2_SB(inode->i_sb)->s_clustersize);
4136 ret = ocfs2_extend_trans(handle, credits);
4142 /* Move half of the xattr in start_blk to the next bucket. */
4143 return ocfs2_divide_xattr_bucket(inode, handle, prev_blk,
4144 new_blk, first_hash, 1);
4148 * Move some xattrs from the old cluster to the new one since they are not
4149 * contiguous in ocfs2 xattr tree.
4151 * new_blk starts a new separate cluster, and we will move some xattrs from
4152 * prev_blk to it. v_start will be set as the first name hash value in this
4153 * new cluster so that it can be used as e_cpos during tree insertion and
4154 * don't collide with our original b-tree operations. first_bh and header_bh
4155 * will also be updated since they will be used in ocfs2_extend_xattr_bucket
4156 * to extend the insert bucket.
4158 * The problem is how much xattr should we move to the new one and when should
4159 * we update first_bh and header_bh?
4160 * 1. If cluster size > bucket size, that means the previous cluster has more
4161 * than 1 bucket, so just move half nums of bucket into the new cluster and
4162 * update the first_bh and header_bh if the insert bucket has been moved
4163 * to the new cluster.
4164 * 2. If cluster_size == bucket_size:
4165 * a) If the previous extent rec has more than one cluster and the insert
4166 * place isn't in the last cluster, copy the entire last cluster to the
4167 * new one. This time, we don't need to upate the first_bh and header_bh
4168 * since they will not be moved into the new cluster.
4169 * b) Otherwise, move the bottom half of the xattrs in the last cluster into
4170 * the new one. And we set the extend flag to zero if the insert place is
4171 * moved into the new allocated cluster since no extend is needed.
4173 static int ocfs2_adjust_xattr_cross_cluster(struct inode *inode,
4175 struct ocfs2_xattr_bucket *first,
4176 struct ocfs2_xattr_bucket *target,
4184 mlog(0, "adjust xattrs from cluster %llu len %u to %llu\n",
4185 (unsigned long long)bucket_blkno(first), prev_clusters,
4186 (unsigned long long)new_blk);
4188 if (ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb)) > 1) {
4189 ret = ocfs2_mv_xattr_bucket_cross_cluster(inode,
4198 /* The start of the last cluster in the first extent */
4199 u64 last_blk = bucket_blkno(first) +
4200 ((prev_clusters - 1) *
4201 ocfs2_clusters_to_blocks(inode->i_sb, 1));
4203 if (prev_clusters > 1 && bucket_blkno(target) != last_blk) {
4204 ret = ocfs2_mv_xattr_buckets(inode, handle,
4205 bucket_blkno(first),
4206 last_blk, new_blk, 0,
4211 ret = ocfs2_divide_xattr_cluster(inode, handle,
4217 if ((bucket_blkno(target) == last_blk) && extend)
4226 * Add a new cluster for xattr storage.
4228 * If the new cluster is contiguous with the previous one, it will be
4229 * appended to the same extent record, and num_clusters will be updated.
4230 * If not, we will insert a new extent for it and move some xattrs in
4231 * the last cluster into the new allocated one.
4232 * We also need to limit the maximum size of a btree leaf, otherwise we'll
4233 * lose the benefits of hashing because we'll have to search large leaves.
4234 * So now the maximum size is OCFS2_MAX_XATTR_TREE_LEAF_SIZE(or clustersize,
4237 * first_bh is the first block of the previous extent rec and header_bh
4238 * indicates the bucket we will insert the new xattrs. They will be updated
4239 * when the header_bh is moved into the new cluster.
4241 static int ocfs2_add_new_xattr_cluster(struct inode *inode,
4242 struct buffer_head *root_bh,
4243 struct ocfs2_xattr_bucket *first,
4244 struct ocfs2_xattr_bucket *target,
4248 struct ocfs2_xattr_set_ctxt *ctxt)
4251 u16 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
4252 u32 prev_clusters = *num_clusters;
4253 u32 clusters_to_add = 1, bit_off, num_bits, v_start = 0;
4255 handle_t *handle = ctxt->handle;
4256 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4257 struct ocfs2_extent_tree et;
4259 mlog(0, "Add new xattr cluster for %llu, previous xattr hash = %u, "
4260 "previous xattr blkno = %llu\n",
4261 (unsigned long long)OCFS2_I(inode)->ip_blkno,
4262 prev_cpos, (unsigned long long)bucket_blkno(first));
4264 ocfs2_init_xattr_tree_extent_tree(&et, inode, root_bh);
4266 ret = ocfs2_journal_access_xb(handle, inode, root_bh,
4267 OCFS2_JOURNAL_ACCESS_WRITE);
4273 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac, 1,
4274 clusters_to_add, &bit_off, &num_bits);
4281 BUG_ON(num_bits > clusters_to_add);
4283 block = ocfs2_clusters_to_blocks(osb->sb, bit_off);
4284 mlog(0, "Allocating %u clusters at block %u for xattr in inode %llu\n",
4285 num_bits, bit_off, (unsigned long long)OCFS2_I(inode)->ip_blkno);
4287 if (bucket_blkno(first) + (prev_clusters * bpc) == block &&
4288 (prev_clusters + num_bits) << osb->s_clustersize_bits <=
4289 OCFS2_MAX_XATTR_TREE_LEAF_SIZE) {
4291 * If this cluster is contiguous with the old one and
4292 * adding this new cluster, we don't surpass the limit of
4293 * OCFS2_MAX_XATTR_TREE_LEAF_SIZE, cool. We will let it be
4294 * initialized and used like other buckets in the previous
4296 * So add it as a contiguous one. The caller will handle
4299 v_start = prev_cpos + prev_clusters;
4300 *num_clusters = prev_clusters + num_bits;
4301 mlog(0, "Add contiguous %u clusters to previous extent rec.\n",
4304 ret = ocfs2_adjust_xattr_cross_cluster(inode,
4318 mlog(0, "Insert %u clusters at block %llu for xattr at %u\n",
4319 num_bits, (unsigned long long)block, v_start);
4320 ret = ocfs2_insert_extent(osb, handle, inode, &et, v_start, block,
4321 num_bits, 0, ctxt->meta_ac);
4327 ret = ocfs2_journal_dirty(handle, root_bh);
4336 * We are given an extent. 'first' is the bucket at the very front of
4337 * the extent. The extent has space for an additional bucket past
4338 * bucket_xh(first)->xh_num_buckets. 'target_blkno' is the block number
4339 * of the target bucket. We wish to shift every bucket past the target
4340 * down one, filling in that additional space. When we get back to the
4341 * target, we split the target between itself and the now-empty bucket
4342 * at target+1 (aka, target_blkno + blks_per_bucket).
4344 static int ocfs2_extend_xattr_bucket(struct inode *inode,
4346 struct ocfs2_xattr_bucket *first,
4351 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4352 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
4354 u16 new_bucket = le16_to_cpu(bucket_xh(first)->xh_num_buckets);
4356 mlog(0, "extend xattr bucket in %llu, xattr extend rec starting "
4357 "from %llu, len = %u\n", (unsigned long long)target_blk,
4358 (unsigned long long)bucket_blkno(first), num_clusters);
4360 /* The extent must have room for an additional bucket */
4361 BUG_ON(new_bucket >=
4362 (num_clusters * ocfs2_xattr_buckets_per_cluster(osb)));
4364 /* end_blk points to the last existing bucket */
4365 end_blk = bucket_blkno(first) + ((new_bucket - 1) * blk_per_bucket);
4368 * end_blk is the start of the last existing bucket.
4369 * Thus, (end_blk - target_blk) covers the target bucket and
4370 * every bucket after it up to, but not including, the last
4371 * existing bucket. Then we add the last existing bucket, the
4372 * new bucket, and the first bucket (3 * blk_per_bucket).
4374 credits = (end_blk - target_blk) + (3 * blk_per_bucket) +
4375 handle->h_buffer_credits;
4376 ret = ocfs2_extend_trans(handle, credits);
4382 ret = ocfs2_xattr_bucket_journal_access(handle, first,
4383 OCFS2_JOURNAL_ACCESS_WRITE);
4389 while (end_blk != target_blk) {
4390 ret = ocfs2_cp_xattr_bucket(inode, handle, end_blk,
4391 end_blk + blk_per_bucket, 0);
4394 end_blk -= blk_per_bucket;
4397 /* Move half of the xattr in target_blkno to the next bucket. */
4398 ret = ocfs2_divide_xattr_bucket(inode, handle, target_blk,
4399 target_blk + blk_per_bucket, NULL, 0);
4401 le16_add_cpu(&bucket_xh(first)->xh_num_buckets, 1);
4402 ocfs2_xattr_bucket_journal_dirty(handle, first);
4409 * Add new xattr bucket in an extent record and adjust the buckets
4410 * accordingly. xb_bh is the ocfs2_xattr_block, and target is the
4411 * bucket we want to insert into.
4413 * In the easy case, we will move all the buckets after target down by
4414 * one. Half of target's xattrs will be moved to the next bucket.
4416 * If current cluster is full, we'll allocate a new one. This may not
4417 * be contiguous. The underlying calls will make sure that there is
4418 * space for the insert, shifting buckets around if necessary.
4419 * 'target' may be moved by those calls.
4421 static int ocfs2_add_new_xattr_bucket(struct inode *inode,
4422 struct buffer_head *xb_bh,
4423 struct ocfs2_xattr_bucket *target,
4424 struct ocfs2_xattr_set_ctxt *ctxt)
4426 struct ocfs2_xattr_block *xb =
4427 (struct ocfs2_xattr_block *)xb_bh->b_data;
4428 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
4429 struct ocfs2_extent_list *el = &xb_root->xt_list;
4431 le32_to_cpu(bucket_xh(target)->xh_entries[0].xe_name_hash);
4432 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4433 int ret, num_buckets, extend = 1;
4435 u32 e_cpos, num_clusters;
4436 /* The bucket at the front of the extent */
4437 struct ocfs2_xattr_bucket *first;
4439 mlog(0, "Add new xattr bucket starting from %llu\n",
4440 (unsigned long long)bucket_blkno(target));
4442 /* The first bucket of the original extent */
4443 first = ocfs2_xattr_bucket_new(inode);
4450 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &e_cpos,
4457 ret = ocfs2_read_xattr_bucket(first, p_blkno);
4463 num_buckets = ocfs2_xattr_buckets_per_cluster(osb) * num_clusters;
4464 if (num_buckets == le16_to_cpu(bucket_xh(first)->xh_num_buckets)) {
4466 * This can move first+target if the target bucket moves
4467 * to the new extent.
4469 ret = ocfs2_add_new_xattr_cluster(inode,
4484 ret = ocfs2_extend_xattr_bucket(inode,
4487 bucket_blkno(target),
4494 ocfs2_xattr_bucket_free(first);
4499 static inline char *ocfs2_xattr_bucket_get_val(struct inode *inode,
4500 struct ocfs2_xattr_bucket *bucket,
4503 int block_off = offs >> inode->i_sb->s_blocksize_bits;
4505 offs = offs % inode->i_sb->s_blocksize;
4506 return bucket_block(bucket, block_off) + offs;
4510 * Handle the normal xattr set, including replace, delete and new.
4512 * Note: "local" indicates the real data's locality. So we can't
4513 * just its bucket locality by its length.
4515 static void ocfs2_xattr_set_entry_normal(struct inode *inode,
4516 struct ocfs2_xattr_info *xi,
4517 struct ocfs2_xattr_search *xs,
4521 struct ocfs2_xattr_entry *last, *xe;
4522 int name_len = strlen(xi->name);
4523 struct ocfs2_xattr_header *xh = xs->header;
4524 u16 count = le16_to_cpu(xh->xh_count), start;
4525 size_t blocksize = inode->i_sb->s_blocksize;
4527 size_t offs, size, new_size;
4529 last = &xh->xh_entries[count];
4530 if (!xs->not_found) {
4532 offs = le16_to_cpu(xe->xe_name_offset);
4533 if (ocfs2_xattr_is_local(xe))
4534 size = OCFS2_XATTR_SIZE(name_len) +
4535 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
4537 size = OCFS2_XATTR_SIZE(name_len) +
4538 OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
4541 * If the new value will be stored outside, xi->value has been
4542 * initalized as an empty ocfs2_xattr_value_root, and the same
4543 * goes with xi->value_len, so we can set new_size safely here.
4544 * See ocfs2_xattr_set_in_bucket.
4546 new_size = OCFS2_XATTR_SIZE(name_len) +
4547 OCFS2_XATTR_SIZE(xi->value_len);
4549 le16_add_cpu(&xh->xh_name_value_len, -size);
4551 if (new_size > size)
4552 goto set_new_name_value;
4554 /* Now replace the old value with new one. */
4556 xe->xe_value_size = cpu_to_le64(xi->value_len);
4558 xe->xe_value_size = 0;
4560 val = ocfs2_xattr_bucket_get_val(inode,
4562 memset(val + OCFS2_XATTR_SIZE(name_len), 0,
4563 size - OCFS2_XATTR_SIZE(name_len));
4564 if (OCFS2_XATTR_SIZE(xi->value_len) > 0)
4565 memcpy(val + OCFS2_XATTR_SIZE(name_len),
4566 xi->value, xi->value_len);
4568 le16_add_cpu(&xh->xh_name_value_len, new_size);
4569 ocfs2_xattr_set_local(xe, local);
4573 * Remove the old entry if there is more than one.
4574 * We don't remove the last entry so that we can
4575 * use it to indicate the hash value of the empty
4579 le16_add_cpu(&xh->xh_count, -1);
4582 (void *)last - (void *)xe);
4584 sizeof(struct ocfs2_xattr_entry));
4587 cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
4592 /* find a new entry for insert. */
4593 int low = 0, high = count - 1, tmp;
4594 struct ocfs2_xattr_entry *tmp_xe;
4596 while (low <= high && count) {
4597 tmp = (low + high) / 2;
4598 tmp_xe = &xh->xh_entries[tmp];
4600 if (name_hash > le32_to_cpu(tmp_xe->xe_name_hash))
4602 else if (name_hash <
4603 le32_to_cpu(tmp_xe->xe_name_hash))
4611 xe = &xh->xh_entries[low];
4613 memmove(xe + 1, xe, (void *)last - (void *)xe);
4615 le16_add_cpu(&xh->xh_count, 1);
4616 memset(xe, 0, sizeof(struct ocfs2_xattr_entry));
4617 xe->xe_name_hash = cpu_to_le32(name_hash);
4618 xe->xe_name_len = name_len;
4619 ocfs2_xattr_set_type(xe, xi->name_index);
4623 /* Insert the new name+value. */
4624 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(xi->value_len);
4627 * We must make sure that the name/value pair
4628 * exists in the same block.
4630 offs = le16_to_cpu(xh->xh_free_start);
4631 start = offs - size;
4633 if (start >> inode->i_sb->s_blocksize_bits !=
4634 (offs - 1) >> inode->i_sb->s_blocksize_bits) {
4635 offs = offs - offs % blocksize;
4636 xh->xh_free_start = cpu_to_le16(offs);
4639 val = ocfs2_xattr_bucket_get_val(inode, xs->bucket, offs - size);
4640 xe->xe_name_offset = cpu_to_le16(offs - size);
4642 memset(val, 0, size);
4643 memcpy(val, xi->name, name_len);
4644 memcpy(val + OCFS2_XATTR_SIZE(name_len), xi->value, xi->value_len);
4646 xe->xe_value_size = cpu_to_le64(xi->value_len);
4647 ocfs2_xattr_set_local(xe, local);
4649 le16_add_cpu(&xh->xh_free_start, -size);
4650 le16_add_cpu(&xh->xh_name_value_len, size);
4656 * Set the xattr entry in the specified bucket.
4657 * The bucket is indicated by xs->bucket and it should have the enough
4658 * space for the xattr insertion.
4660 static int ocfs2_xattr_set_entry_in_bucket(struct inode *inode,
4662 struct ocfs2_xattr_info *xi,
4663 struct ocfs2_xattr_search *xs,
4670 mlog(0, "Set xattr entry len = %lu index = %d in bucket %llu\n",
4671 (unsigned long)xi->value_len, xi->name_index,
4672 (unsigned long long)bucket_blkno(xs->bucket));
4674 if (!xs->bucket->bu_bhs[1]) {
4675 blkno = bucket_blkno(xs->bucket);
4676 ocfs2_xattr_bucket_relse(xs->bucket);
4677 ret = ocfs2_read_xattr_bucket(xs->bucket, blkno);
4684 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
4685 OCFS2_JOURNAL_ACCESS_WRITE);
4691 ocfs2_xattr_set_entry_normal(inode, xi, xs, name_hash, local);
4692 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
4699 * Truncate the specified xe_off entry in xattr bucket.
4700 * bucket is indicated by header_bh and len is the new length.
4701 * Both the ocfs2_xattr_value_root and the entry will be updated here.
4703 * Copy the new updated xe and xe_value_root to new_xe and new_xv if needed.
4705 static int ocfs2_xattr_bucket_value_truncate(struct inode *inode,
4706 struct ocfs2_xattr_bucket *bucket,
4709 struct ocfs2_xattr_set_ctxt *ctxt)
4713 struct ocfs2_xattr_entry *xe;
4714 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
4715 size_t blocksize = inode->i_sb->s_blocksize;
4716 struct ocfs2_xattr_value_buf vb = {
4717 .vb_access = ocfs2_journal_access,
4720 xe = &xh->xh_entries[xe_off];
4722 BUG_ON(!xe || ocfs2_xattr_is_local(xe));
4724 offset = le16_to_cpu(xe->xe_name_offset) +
4725 OCFS2_XATTR_SIZE(xe->xe_name_len);
4727 value_blk = offset / blocksize;
4729 /* We don't allow ocfs2_xattr_value to be stored in different block. */
4730 BUG_ON(value_blk != (offset + OCFS2_XATTR_ROOT_SIZE - 1) / blocksize);
4732 vb.vb_bh = bucket->bu_bhs[value_blk];
4735 vb.vb_xv = (struct ocfs2_xattr_value_root *)
4736 (vb.vb_bh->b_data + offset % blocksize);
4739 * From here on out we have to dirty the bucket. The generic
4740 * value calls only modify one of the bucket's bhs, but we need
4741 * to send the bucket at once. So if they error, they *could* have
4742 * modified something. We have to assume they did, and dirty
4743 * the whole bucket. This leaves us in a consistent state.
4745 mlog(0, "truncate %u in xattr bucket %llu to %d bytes.\n",
4746 xe_off, (unsigned long long)bucket_blkno(bucket), len);
4747 ret = ocfs2_xattr_value_truncate(inode, &vb, len, ctxt);
4753 ret = ocfs2_xattr_bucket_journal_access(ctxt->handle, bucket,
4754 OCFS2_JOURNAL_ACCESS_WRITE);
4760 xe->xe_value_size = cpu_to_le64(len);
4762 ocfs2_xattr_bucket_journal_dirty(ctxt->handle, bucket);
4768 static int ocfs2_xattr_bucket_value_truncate_xs(struct inode *inode,
4769 struct ocfs2_xattr_search *xs,
4771 struct ocfs2_xattr_set_ctxt *ctxt)
4774 struct ocfs2_xattr_entry *xe = xs->here;
4775 struct ocfs2_xattr_header *xh = (struct ocfs2_xattr_header *)xs->base;
4777 BUG_ON(!xs->bucket->bu_bhs[0] || !xe || ocfs2_xattr_is_local(xe));
4779 offset = xe - xh->xh_entries;
4780 ret = ocfs2_xattr_bucket_value_truncate(inode, xs->bucket,
4788 static int ocfs2_xattr_bucket_set_value_outside(struct inode *inode,
4790 struct ocfs2_xattr_search *xs,
4795 struct ocfs2_xattr_value_root *xv;
4796 struct ocfs2_xattr_entry *xe = xs->here;
4798 BUG_ON(!xs->base || !xe || ocfs2_xattr_is_local(xe));
4800 offset = le16_to_cpu(xe->xe_name_offset) +
4801 OCFS2_XATTR_SIZE(xe->xe_name_len);
4803 xv = (struct ocfs2_xattr_value_root *)(xs->base + offset);
4805 return __ocfs2_xattr_set_value_outside(inode, handle,
4806 xv, val, value_len);
4809 static int ocfs2_rm_xattr_cluster(struct inode *inode,
4810 struct buffer_head *root_bh,
4816 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4817 struct inode *tl_inode = osb->osb_tl_inode;
4819 struct ocfs2_xattr_block *xb =
4820 (struct ocfs2_xattr_block *)root_bh->b_data;
4821 struct ocfs2_alloc_context *meta_ac = NULL;
4822 struct ocfs2_cached_dealloc_ctxt dealloc;
4823 struct ocfs2_extent_tree et;
4825 ocfs2_init_xattr_tree_extent_tree(&et, inode, root_bh);
4827 ocfs2_init_dealloc_ctxt(&dealloc);
4829 mlog(0, "rm xattr extent rec at %u len = %u, start from %llu\n",
4830 cpos, len, (unsigned long long)blkno);
4832 ocfs2_remove_xattr_clusters_from_cache(inode, blkno, len);
4834 ret = ocfs2_lock_allocators(inode, &et, 0, 1, NULL, &meta_ac);
4840 mutex_lock(&tl_inode->i_mutex);
4842 if (ocfs2_truncate_log_needs_flush(osb)) {
4843 ret = __ocfs2_flush_truncate_log(osb);
4850 handle = ocfs2_start_trans(osb, ocfs2_remove_extent_credits(osb->sb));
4851 if (IS_ERR(handle)) {
4857 ret = ocfs2_journal_access_xb(handle, inode, root_bh,
4858 OCFS2_JOURNAL_ACCESS_WRITE);
4864 ret = ocfs2_remove_extent(inode, &et, cpos, len, handle, meta_ac,
4871 le32_add_cpu(&xb->xb_attrs.xb_root.xt_clusters, -len);
4873 ret = ocfs2_journal_dirty(handle, root_bh);
4879 ret = ocfs2_truncate_log_append(osb, handle, blkno, len);
4884 ocfs2_commit_trans(osb, handle);
4886 ocfs2_schedule_truncate_log_flush(osb, 1);
4888 mutex_unlock(&tl_inode->i_mutex);
4891 ocfs2_free_alloc_context(meta_ac);
4893 ocfs2_run_deallocs(osb, &dealloc);
4898 static void ocfs2_xattr_bucket_remove_xs(struct inode *inode,
4900 struct ocfs2_xattr_search *xs)
4902 struct ocfs2_xattr_header *xh = bucket_xh(xs->bucket);
4903 struct ocfs2_xattr_entry *last = &xh->xh_entries[
4904 le16_to_cpu(xh->xh_count) - 1];
4907 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
4908 OCFS2_JOURNAL_ACCESS_WRITE);
4914 /* Remove the old entry. */
4915 memmove(xs->here, xs->here + 1,
4916 (void *)last - (void *)xs->here);
4917 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
4918 le16_add_cpu(&xh->xh_count, -1);
4920 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
4924 * Set the xattr name/value in the bucket specified in xs.
4926 * As the new value in xi may be stored in the bucket or in an outside cluster,
4927 * we divide the whole process into 3 steps:
4928 * 1. insert name/value in the bucket(ocfs2_xattr_set_entry_in_bucket)
4929 * 2. truncate of the outside cluster(ocfs2_xattr_bucket_value_truncate_xs)
4930 * 3. Set the value to the outside cluster(ocfs2_xattr_bucket_set_value_outside)
4931 * 4. If the clusters for the new outside value can't be allocated, we need
4932 * to free the xattr we allocated in set.
4934 static int ocfs2_xattr_set_in_bucket(struct inode *inode,
4935 struct ocfs2_xattr_info *xi,
4936 struct ocfs2_xattr_search *xs,
4937 struct ocfs2_xattr_set_ctxt *ctxt)
4941 char *val = (char *)xi->value;
4942 struct ocfs2_xattr_entry *xe = xs->here;
4943 u32 name_hash = ocfs2_xattr_name_hash(inode, xi->name,
4946 if (!xs->not_found && !ocfs2_xattr_is_local(xe)) {
4948 * We need to truncate the xattr storage first.
4950 * If both the old and new value are stored to
4951 * outside block, we only need to truncate
4952 * the storage and then set the value outside.
4954 * If the new value should be stored within block,
4955 * we should free all the outside block first and
4956 * the modification to the xattr block will be done
4957 * by following steps.
4959 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
4960 value_len = xi->value_len;
4964 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
4971 goto set_value_outside;
4974 value_len = xi->value_len;
4975 /* So we have to handle the inside block change now. */
4976 if (value_len > OCFS2_XATTR_INLINE_SIZE) {
4978 * If the new value will be stored outside of block,
4979 * initalize a new empty value root and insert it first.
4982 xi->value = &def_xv;
4983 xi->value_len = OCFS2_XATTR_ROOT_SIZE;
4986 ret = ocfs2_xattr_set_entry_in_bucket(inode, ctxt->handle, xi, xs,
4993 if (value_len <= OCFS2_XATTR_INLINE_SIZE)
4996 /* allocate the space now for the outside block storage. */
4997 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
5002 if (xs->not_found) {
5004 * We can't allocate enough clusters for outside
5005 * storage and we have allocated xattr already,
5006 * so need to remove it.
5008 ocfs2_xattr_bucket_remove_xs(inode, ctxt->handle, xs);
5014 ret = ocfs2_xattr_bucket_set_value_outside(inode, ctxt->handle,
5015 xs, val, value_len);
5021 * check whether the xattr bucket is filled up with the same hash value.
5022 * If we want to insert the xattr with the same hash, return -ENOSPC.
5023 * If we want to insert a xattr with different hash value, go ahead
5024 * and ocfs2_divide_xattr_bucket will handle this.
5026 static int ocfs2_check_xattr_bucket_collision(struct inode *inode,
5027 struct ocfs2_xattr_bucket *bucket,
5030 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
5031 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
5033 if (name_hash != le32_to_cpu(xh->xh_entries[0].xe_name_hash))
5036 if (xh->xh_entries[le16_to_cpu(xh->xh_count) - 1].xe_name_hash ==
5037 xh->xh_entries[0].xe_name_hash) {
5038 mlog(ML_ERROR, "Too much hash collision in xattr bucket %llu, "
5040 (unsigned long long)bucket_blkno(bucket),
5041 le32_to_cpu(xh->xh_entries[0].xe_name_hash));
5048 static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
5049 struct ocfs2_xattr_info *xi,
5050 struct ocfs2_xattr_search *xs,
5051 struct ocfs2_xattr_set_ctxt *ctxt)
5053 struct ocfs2_xattr_header *xh;
5054 struct ocfs2_xattr_entry *xe;
5055 u16 count, header_size, xh_free_start;
5056 int free, max_free, need, old;
5057 size_t value_size = 0, name_len = strlen(xi->name);
5058 size_t blocksize = inode->i_sb->s_blocksize;
5059 int ret, allocation = 0;
5061 mlog_entry("Set xattr %s in xattr index block\n", xi->name);
5065 count = le16_to_cpu(xh->xh_count);
5066 xh_free_start = le16_to_cpu(xh->xh_free_start);
5067 header_size = sizeof(struct ocfs2_xattr_header) +
5068 count * sizeof(struct ocfs2_xattr_entry);
5069 max_free = OCFS2_XATTR_BUCKET_SIZE - header_size -
5070 le16_to_cpu(xh->xh_name_value_len) - OCFS2_XATTR_HEADER_GAP;
5072 mlog_bug_on_msg(header_size > blocksize, "bucket %llu has header size "
5073 "of %u which exceed block size\n",
5074 (unsigned long long)bucket_blkno(xs->bucket),
5077 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE)
5078 value_size = OCFS2_XATTR_ROOT_SIZE;
5080 value_size = OCFS2_XATTR_SIZE(xi->value_len);
5083 need = sizeof(struct ocfs2_xattr_entry) +
5084 OCFS2_XATTR_SIZE(name_len) + value_size;
5086 need = value_size + OCFS2_XATTR_SIZE(name_len);
5089 * We only replace the old value if the new length is smaller
5090 * than the old one. Otherwise we will allocate new space in the
5091 * bucket to store it.
5094 if (ocfs2_xattr_is_local(xe))
5095 old = OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
5097 old = OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
5099 if (old >= value_size)
5103 free = xh_free_start - header_size - OCFS2_XATTR_HEADER_GAP;
5105 * We need to make sure the new name/value pair
5106 * can exist in the same block.
5108 if (xh_free_start % blocksize < need)
5109 free -= xh_free_start % blocksize;
5111 mlog(0, "xs->not_found = %d, in xattr bucket %llu: free = %d, "
5112 "need = %d, max_free = %d, xh_free_start = %u, xh_name_value_len ="
5113 " %u\n", xs->not_found,
5114 (unsigned long long)bucket_blkno(xs->bucket),
5115 free, need, max_free, le16_to_cpu(xh->xh_free_start),
5116 le16_to_cpu(xh->xh_name_value_len));
5120 count == ocfs2_xattr_max_xe_in_bucket(inode->i_sb))) {
5121 if (need <= max_free &&
5122 count < ocfs2_xattr_max_xe_in_bucket(inode->i_sb)) {
5124 * We can create the space by defragment. Since only the
5125 * name/value will be moved, the xe shouldn't be changed
5128 ret = ocfs2_defrag_xattr_bucket(inode, ctxt->handle,
5135 xh_free_start = le16_to_cpu(xh->xh_free_start);
5136 free = xh_free_start - header_size
5137 - OCFS2_XATTR_HEADER_GAP;
5138 if (xh_free_start % blocksize < need)
5139 free -= xh_free_start % blocksize;
5144 mlog(0, "Can't get enough space for xattr insert by "
5145 "defragment. Need %u bytes, but we have %d, so "
5146 "allocate new bucket for it.\n", need, free);
5150 * We have to add new buckets or clusters and one
5151 * allocation should leave us enough space for insert.
5156 * We do not allow for overlapping ranges between buckets. And
5157 * the maximum number of collisions we will allow for then is
5158 * one bucket's worth, so check it here whether we need to
5159 * add a new bucket for the insert.
5161 ret = ocfs2_check_xattr_bucket_collision(inode,
5169 ret = ocfs2_add_new_xattr_bucket(inode,
5179 * ocfs2_add_new_xattr_bucket() will have updated
5180 * xs->bucket if it moved, but it will not have updated
5181 * any of the other search fields. Thus, we drop it and
5182 * re-search. Everything should be cached, so it'll be
5185 ocfs2_xattr_bucket_relse(xs->bucket);
5186 ret = ocfs2_xattr_index_block_find(inode, xs->xattr_bh,
5189 if (ret && ret != -ENODATA)
5191 xs->not_found = ret;
5197 ret = ocfs2_xattr_set_in_bucket(inode, xi, xs, ctxt);
5203 static int ocfs2_delete_xattr_in_bucket(struct inode *inode,
5204 struct ocfs2_xattr_bucket *bucket,
5208 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
5210 struct ocfs2_xattr_entry *xe;
5211 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5212 struct ocfs2_xattr_set_ctxt ctxt = {NULL, NULL,};
5213 int credits = ocfs2_remove_extent_credits(osb->sb) +
5214 ocfs2_blocks_per_xattr_bucket(inode->i_sb);
5217 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
5219 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
5220 xe = &xh->xh_entries[i];
5221 if (ocfs2_xattr_is_local(xe))
5224 ctxt.handle = ocfs2_start_trans(osb, credits);
5225 if (IS_ERR(ctxt.handle)) {
5226 ret = PTR_ERR(ctxt.handle);
5231 ret = ocfs2_xattr_bucket_value_truncate(inode, bucket,
5234 ocfs2_commit_trans(osb, ctxt.handle);
5241 ocfs2_schedule_truncate_log_flush(osb, 1);
5242 ocfs2_run_deallocs(osb, &ctxt.dealloc);
5246 static int ocfs2_delete_xattr_index_block(struct inode *inode,
5247 struct buffer_head *xb_bh)
5249 struct ocfs2_xattr_block *xb =
5250 (struct ocfs2_xattr_block *)xb_bh->b_data;
5251 struct ocfs2_extent_list *el = &xb->xb_attrs.xb_root.xt_list;
5253 u32 name_hash = UINT_MAX, e_cpos, num_clusters;
5256 if (le16_to_cpu(el->l_next_free_rec) == 0)
5259 while (name_hash > 0) {
5260 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
5261 &e_cpos, &num_clusters, el);
5267 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
5268 ocfs2_delete_xattr_in_bucket,
5275 ret = ocfs2_rm_xattr_cluster(inode, xb_bh,
5276 p_blkno, e_cpos, num_clusters);
5285 name_hash = e_cpos - 1;
5293 * 'security' attributes support
5295 static size_t ocfs2_xattr_security_list(struct inode *inode, char *list,
5296 size_t list_size, const char *name,
5299 const size_t prefix_len = XATTR_SECURITY_PREFIX_LEN;
5300 const size_t total_len = prefix_len + name_len + 1;
5302 if (list && total_len <= list_size) {
5303 memcpy(list, XATTR_SECURITY_PREFIX, prefix_len);
5304 memcpy(list + prefix_len, name, name_len);
5305 list[prefix_len + name_len] = '\0';
5310 static int ocfs2_xattr_security_get(struct inode *inode, const char *name,
5311 void *buffer, size_t size)
5313 if (strcmp(name, "") == 0)
5315 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_SECURITY, name,
5319 static int ocfs2_xattr_security_set(struct inode *inode, const char *name,
5320 const void *value, size_t size, int flags)
5322 if (strcmp(name, "") == 0)
5325 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_SECURITY, name, value,
5329 int ocfs2_init_security_get(struct inode *inode,
5331 struct ocfs2_security_xattr_info *si)
5333 /* check whether ocfs2 support feature xattr */
5334 if (!ocfs2_supports_xattr(OCFS2_SB(dir->i_sb)))
5336 return security_inode_init_security(inode, dir, &si->name, &si->value,
5340 int ocfs2_init_security_set(handle_t *handle,
5341 struct inode *inode,
5342 struct buffer_head *di_bh,
5343 struct ocfs2_security_xattr_info *si,
5344 struct ocfs2_alloc_context *xattr_ac,
5345 struct ocfs2_alloc_context *data_ac)
5347 return ocfs2_xattr_set_handle(handle, inode, di_bh,
5348 OCFS2_XATTR_INDEX_SECURITY,
5349 si->name, si->value, si->value_len, 0,
5353 struct xattr_handler ocfs2_xattr_security_handler = {
5354 .prefix = XATTR_SECURITY_PREFIX,
5355 .list = ocfs2_xattr_security_list,
5356 .get = ocfs2_xattr_security_get,
5357 .set = ocfs2_xattr_security_set,
5361 * 'trusted' attributes support
5363 static size_t ocfs2_xattr_trusted_list(struct inode *inode, char *list,
5364 size_t list_size, const char *name,
5367 const size_t prefix_len = XATTR_TRUSTED_PREFIX_LEN;
5368 const size_t total_len = prefix_len + name_len + 1;
5370 if (list && total_len <= list_size) {
5371 memcpy(list, XATTR_TRUSTED_PREFIX, prefix_len);
5372 memcpy(list + prefix_len, name, name_len);
5373 list[prefix_len + name_len] = '\0';
5378 static int ocfs2_xattr_trusted_get(struct inode *inode, const char *name,
5379 void *buffer, size_t size)
5381 if (strcmp(name, "") == 0)
5383 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_TRUSTED, name,
5387 static int ocfs2_xattr_trusted_set(struct inode *inode, const char *name,
5388 const void *value, size_t size, int flags)
5390 if (strcmp(name, "") == 0)
5393 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_TRUSTED, name, value,
5397 struct xattr_handler ocfs2_xattr_trusted_handler = {
5398 .prefix = XATTR_TRUSTED_PREFIX,
5399 .list = ocfs2_xattr_trusted_list,
5400 .get = ocfs2_xattr_trusted_get,
5401 .set = ocfs2_xattr_trusted_set,
5405 * 'user' attributes support
5407 static size_t ocfs2_xattr_user_list(struct inode *inode, char *list,
5408 size_t list_size, const char *name,
5411 const size_t prefix_len = XATTR_USER_PREFIX_LEN;
5412 const size_t total_len = prefix_len + name_len + 1;
5413 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5415 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5418 if (list && total_len <= list_size) {
5419 memcpy(list, XATTR_USER_PREFIX, prefix_len);
5420 memcpy(list + prefix_len, name, name_len);
5421 list[prefix_len + name_len] = '\0';
5426 static int ocfs2_xattr_user_get(struct inode *inode, const char *name,
5427 void *buffer, size_t size)
5429 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5431 if (strcmp(name, "") == 0)
5433 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5435 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_USER, name,
5439 static int ocfs2_xattr_user_set(struct inode *inode, const char *name,
5440 const void *value, size_t size, int flags)
5442 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5444 if (strcmp(name, "") == 0)
5446 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5449 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_USER, name, value,
5453 struct xattr_handler ocfs2_xattr_user_handler = {
5454 .prefix = XATTR_USER_PREFIX,
5455 .list = ocfs2_xattr_user_list,
5456 .get = ocfs2_xattr_user_get,
5457 .set = ocfs2_xattr_user_set,