Linux Audio

Check our new training course

Embedded Linux training

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