blob: 19de5c487242a3043fe5dc5199f618dc977fea4b [file] [log] [blame]
Tao Maf56654c2008-08-18 17:38:48 +08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * xattr.c
5 *
Tiger Yangc3cb6822008-10-23 16:33:03 +08006 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
Tao Maf56654c2008-08-18 17:38:48 +08007 *
Tiger Yangcf1d6c72008-08-18 17:11:00 +08008 * CREDITS:
Tiger Yangc3cb6822008-10-23 16:33:03 +08009 * Lots of code in this file is copy from linux/fs/ext3/xattr.c.
10 * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
Tiger Yangcf1d6c72008-08-18 17:11:00 +080011 *
Tao Maf56654c2008-08-18 17:38:48 +080012 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public
Tiger Yangc3cb6822008-10-23 16:33:03 +080014 * License version 2 as published by the Free Software Foundation.
Tao Maf56654c2008-08-18 17:38:48 +080015 *
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.
Tao Maf56654c2008-08-18 17:38:48 +080020 */
21
Tiger Yangcf1d6c72008-08-18 17:11:00 +080022#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>
Tao Ma01225592008-08-18 17:38:53 +080034#include <linux/sort.h>
Mark Fasheh99219ae2008-10-07 14:52:59 -070035#include <linux/init.h>
36#include <linux/module.h>
37#include <linux/string.h>
Tiger Yang923f7f32008-11-14 11:16:27 +080038#include <linux/security.h>
Tiger Yangcf1d6c72008-08-18 17:11:00 +080039
Tao Maf56654c2008-08-18 17:38:48 +080040#define MLOG_MASK_PREFIX ML_XATTR
41#include <cluster/masklog.h>
42
43#include "ocfs2.h"
44#include "alloc.h"
Joel Beckerd6b32bb2008-10-17 14:55:01 -070045#include "blockcheck.h"
Tao Maf56654c2008-08-18 17:38:48 +080046#include "dlmglue.h"
47#include "file.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080048#include "symlink.h"
49#include "sysfile.h"
Tao Maf56654c2008-08-18 17:38:48 +080050#include "inode.h"
51#include "journal.h"
52#include "ocfs2_fs.h"
53#include "suballoc.h"
54#include "uptodate.h"
55#include "buffer_head_io.h"
Tao Ma0c044f02008-08-18 17:38:50 +080056#include "super.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080057#include "xattr.h"
58
59
60struct ocfs2_xattr_def_value_root {
61 struct ocfs2_xattr_value_root xv;
62 struct ocfs2_extent_rec er;
63};
64
Tao Ma0c044f02008-08-18 17:38:50 +080065struct ocfs2_xattr_bucket {
Joel Beckerba937122008-10-24 19:13:20 -070066 /* The inode these xattrs are associated with */
67 struct inode *bu_inode;
68
69 /* The actual buffers that make up the bucket */
Joel Becker4ac60322008-10-18 19:11:42 -070070 struct buffer_head *bu_bhs[OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET];
Joel Beckerba937122008-10-24 19:13:20 -070071
72 /* How many blocks make up one bucket for this filesystem */
73 int bu_blocks;
Tao Ma0c044f02008-08-18 17:38:50 +080074};
75
Tao Ma78f30c32008-11-12 08:27:00 +080076struct ocfs2_xattr_set_ctxt {
Tao Ma85db90e2008-11-12 08:27:01 +080077 handle_t *handle;
Tao Ma78f30c32008-11-12 08:27:00 +080078 struct ocfs2_alloc_context *meta_ac;
79 struct ocfs2_alloc_context *data_ac;
80 struct ocfs2_cached_dealloc_ctxt dealloc;
81};
82
Tiger Yangcf1d6c72008-08-18 17:11:00 +080083#define OCFS2_XATTR_ROOT_SIZE (sizeof(struct ocfs2_xattr_def_value_root))
84#define OCFS2_XATTR_INLINE_SIZE 80
Tiger Yang4442f512009-02-20 11:11:50 +080085#define OCFS2_XATTR_HEADER_GAP 4
Tiger Yang534eadd2008-11-14 11:16:41 +080086#define OCFS2_XATTR_FREE_IN_IBODY (OCFS2_MIN_XATTR_INLINE_SIZE \
87 - sizeof(struct ocfs2_xattr_header) \
Tiger Yang4442f512009-02-20 11:11:50 +080088 - OCFS2_XATTR_HEADER_GAP)
Tiger Yang89c38bd2008-11-14 11:17:41 +080089#define OCFS2_XATTR_FREE_IN_BLOCK(ptr) ((ptr)->i_sb->s_blocksize \
90 - sizeof(struct ocfs2_xattr_block) \
91 - sizeof(struct ocfs2_xattr_header) \
Tiger Yang4442f512009-02-20 11:11:50 +080092 - OCFS2_XATTR_HEADER_GAP)
Tiger Yangcf1d6c72008-08-18 17:11:00 +080093
94static struct ocfs2_xattr_def_value_root def_xv = {
95 .xv.xr_list.l_count = cpu_to_le16(1),
96};
97
98struct xattr_handler *ocfs2_xattr_handlers[] = {
99 &ocfs2_xattr_user_handler,
Tiger Yang929fb012008-11-14 11:17:04 +0800100#ifdef CONFIG_OCFS2_FS_POSIX_ACL
101 &ocfs2_xattr_acl_access_handler,
102 &ocfs2_xattr_acl_default_handler,
103#endif
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800104 &ocfs2_xattr_trusted_handler,
Tiger Yang923f7f32008-11-14 11:16:27 +0800105 &ocfs2_xattr_security_handler,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800106 NULL
107};
108
Tiger Yangc988fd02008-10-23 16:34:44 +0800109static struct xattr_handler *ocfs2_xattr_handler_map[OCFS2_XATTR_MAX] = {
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800110 [OCFS2_XATTR_INDEX_USER] = &ocfs2_xattr_user_handler,
Tiger Yang929fb012008-11-14 11:17:04 +0800111#ifdef CONFIG_OCFS2_FS_POSIX_ACL
112 [OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS]
113 = &ocfs2_xattr_acl_access_handler,
114 [OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT]
115 = &ocfs2_xattr_acl_default_handler,
116#endif
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800117 [OCFS2_XATTR_INDEX_TRUSTED] = &ocfs2_xattr_trusted_handler,
Tiger Yang923f7f32008-11-14 11:16:27 +0800118 [OCFS2_XATTR_INDEX_SECURITY] = &ocfs2_xattr_security_handler,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800119};
120
121struct ocfs2_xattr_info {
122 int name_index;
123 const char *name;
124 const void *value;
125 size_t value_len;
126};
127
128struct ocfs2_xattr_search {
129 struct buffer_head *inode_bh;
130 /*
131 * xattr_bh point to the block buffer head which has extended attribute
132 * when extended attribute in inode, xattr_bh is equal to inode_bh.
133 */
134 struct buffer_head *xattr_bh;
135 struct ocfs2_xattr_header *header;
Joel Beckerba937122008-10-24 19:13:20 -0700136 struct ocfs2_xattr_bucket *bucket;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800137 void *base;
138 void *end;
139 struct ocfs2_xattr_entry *here;
140 int not_found;
141};
142
Tao Ma589dc262008-08-18 17:38:51 +0800143static int ocfs2_xattr_bucket_get_name_value(struct inode *inode,
144 struct ocfs2_xattr_header *xh,
145 int index,
146 int *block_off,
147 int *new_offset);
148
Joel Becker54f443f2008-10-20 18:43:07 -0700149static int ocfs2_xattr_block_find(struct inode *inode,
150 int name_index,
151 const char *name,
152 struct ocfs2_xattr_search *xs);
Tao Ma589dc262008-08-18 17:38:51 +0800153static int ocfs2_xattr_index_block_find(struct inode *inode,
154 struct buffer_head *root_bh,
155 int name_index,
156 const char *name,
157 struct ocfs2_xattr_search *xs);
158
Tao Ma0c044f02008-08-18 17:38:50 +0800159static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
160 struct ocfs2_xattr_tree_root *xt,
161 char *buffer,
162 size_t buffer_size);
163
Tao Ma01225592008-08-18 17:38:53 +0800164static int ocfs2_xattr_create_index_block(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +0800165 struct ocfs2_xattr_search *xs,
166 struct ocfs2_xattr_set_ctxt *ctxt);
Tao Ma01225592008-08-18 17:38:53 +0800167
168static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
169 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +0800170 struct ocfs2_xattr_search *xs,
171 struct ocfs2_xattr_set_ctxt *ctxt);
Tao Ma01225592008-08-18 17:38:53 +0800172
Tao Maa3944252008-08-18 17:38:54 +0800173static int ocfs2_delete_xattr_index_block(struct inode *inode,
174 struct buffer_head *xb_bh);
Joel Beckerc58b6032008-11-26 13:36:24 -0800175static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
176 u64 src_blk, u64 last_blk, u64 to_blk,
177 unsigned int start_bucket,
178 u32 *first_hash);
Tao Maa3944252008-08-18 17:38:54 +0800179
Tiger Yang0030e002008-10-23 16:33:33 +0800180static inline u16 ocfs2_xattr_buckets_per_cluster(struct ocfs2_super *osb)
181{
182 return (1 << osb->s_clustersize_bits) / OCFS2_XATTR_BUCKET_SIZE;
183}
184
185static inline u16 ocfs2_blocks_per_xattr_bucket(struct super_block *sb)
186{
187 return OCFS2_XATTR_BUCKET_SIZE / (1 << sb->s_blocksize_bits);
188}
189
190static inline u16 ocfs2_xattr_max_xe_in_bucket(struct super_block *sb)
191{
192 u16 len = sb->s_blocksize -
193 offsetof(struct ocfs2_xattr_header, xh_entries);
194
195 return len / sizeof(struct ocfs2_xattr_entry);
196}
197
Joel Becker9c7759a2008-10-24 16:21:03 -0700198#define bucket_blkno(_b) ((_b)->bu_bhs[0]->b_blocknr)
Joel Becker51def392008-10-24 16:57:21 -0700199#define bucket_block(_b, _n) ((_b)->bu_bhs[(_n)]->b_data)
Joel Becker3e632942008-10-24 17:04:49 -0700200#define bucket_xh(_b) ((struct ocfs2_xattr_header *)bucket_block((_b), 0))
Joel Becker9c7759a2008-10-24 16:21:03 -0700201
Joel Beckerba937122008-10-24 19:13:20 -0700202static struct ocfs2_xattr_bucket *ocfs2_xattr_bucket_new(struct inode *inode)
Joel Becker6dde41d2008-10-24 17:16:48 -0700203{
Joel Beckerba937122008-10-24 19:13:20 -0700204 struct ocfs2_xattr_bucket *bucket;
205 int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Joel Becker6dde41d2008-10-24 17:16:48 -0700206
Joel Beckerba937122008-10-24 19:13:20 -0700207 BUG_ON(blks > OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET);
208
209 bucket = kzalloc(sizeof(struct ocfs2_xattr_bucket), GFP_NOFS);
210 if (bucket) {
211 bucket->bu_inode = inode;
212 bucket->bu_blocks = blks;
213 }
214
215 return bucket;
216}
217
218static void ocfs2_xattr_bucket_relse(struct ocfs2_xattr_bucket *bucket)
219{
220 int i;
221
222 for (i = 0; i < bucket->bu_blocks; i++) {
Joel Becker6dde41d2008-10-24 17:16:48 -0700223 brelse(bucket->bu_bhs[i]);
224 bucket->bu_bhs[i] = NULL;
225 }
226}
227
Joel Beckerba937122008-10-24 19:13:20 -0700228static void ocfs2_xattr_bucket_free(struct ocfs2_xattr_bucket *bucket)
229{
230 if (bucket) {
231 ocfs2_xattr_bucket_relse(bucket);
232 bucket->bu_inode = NULL;
233 kfree(bucket);
234 }
235}
236
Joel Becker784b8162008-10-24 17:33:40 -0700237/*
238 * A bucket that has never been written to disk doesn't need to be
239 * read. We just need the buffer_heads. Don't call this for
240 * buckets that are already on disk. ocfs2_read_xattr_bucket() initializes
241 * them fully.
242 */
Joel Beckerba937122008-10-24 19:13:20 -0700243static int ocfs2_init_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
Joel Becker784b8162008-10-24 17:33:40 -0700244 u64 xb_blkno)
245{
246 int i, rc = 0;
Joel Becker784b8162008-10-24 17:33:40 -0700247
Joel Beckerba937122008-10-24 19:13:20 -0700248 for (i = 0; i < bucket->bu_blocks; i++) {
249 bucket->bu_bhs[i] = sb_getblk(bucket->bu_inode->i_sb,
250 xb_blkno + i);
Joel Becker784b8162008-10-24 17:33:40 -0700251 if (!bucket->bu_bhs[i]) {
252 rc = -EIO;
253 mlog_errno(rc);
254 break;
255 }
256
Joel Becker8cb471e2009-02-10 20:00:41 -0800257 if (!ocfs2_buffer_uptodate(INODE_CACHE(bucket->bu_inode),
Tao Ma757055a2008-11-06 08:10:48 +0800258 bucket->bu_bhs[i]))
Joel Becker8cb471e2009-02-10 20:00:41 -0800259 ocfs2_set_new_buffer_uptodate(INODE_CACHE(bucket->bu_inode),
Tao Ma757055a2008-11-06 08:10:48 +0800260 bucket->bu_bhs[i]);
Joel Becker784b8162008-10-24 17:33:40 -0700261 }
262
263 if (rc)
Joel Beckerba937122008-10-24 19:13:20 -0700264 ocfs2_xattr_bucket_relse(bucket);
Joel Becker784b8162008-10-24 17:33:40 -0700265 return rc;
266}
267
268/* Read the xattr bucket at xb_blkno */
Joel Beckerba937122008-10-24 19:13:20 -0700269static int ocfs2_read_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
Joel Becker784b8162008-10-24 17:33:40 -0700270 u64 xb_blkno)
271{
Joel Beckerba937122008-10-24 19:13:20 -0700272 int rc;
Joel Becker784b8162008-10-24 17:33:40 -0700273
Joel Becker8cb471e2009-02-10 20:00:41 -0800274 rc = ocfs2_read_blocks(INODE_CACHE(bucket->bu_inode), xb_blkno,
Joel Becker970e4932008-11-13 14:49:19 -0800275 bucket->bu_blocks, bucket->bu_bhs, 0,
276 NULL);
Joel Becker4d0e2142008-12-05 11:19:37 -0800277 if (!rc) {
Tao Mac8b9cf92009-02-24 17:40:26 -0800278 spin_lock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800279 rc = ocfs2_validate_meta_ecc_bhs(bucket->bu_inode->i_sb,
280 bucket->bu_bhs,
281 bucket->bu_blocks,
282 &bucket_xh(bucket)->xh_check);
Tao Mac8b9cf92009-02-24 17:40:26 -0800283 spin_unlock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800284 if (rc)
285 mlog_errno(rc);
286 }
287
Joel Becker784b8162008-10-24 17:33:40 -0700288 if (rc)
Joel Beckerba937122008-10-24 19:13:20 -0700289 ocfs2_xattr_bucket_relse(bucket);
Joel Becker784b8162008-10-24 17:33:40 -0700290 return rc;
291}
292
Joel Becker1224be02008-10-24 18:47:33 -0700293static int ocfs2_xattr_bucket_journal_access(handle_t *handle,
Joel Becker1224be02008-10-24 18:47:33 -0700294 struct ocfs2_xattr_bucket *bucket,
295 int type)
296{
297 int i, rc = 0;
Joel Becker1224be02008-10-24 18:47:33 -0700298
Joel Beckerba937122008-10-24 19:13:20 -0700299 for (i = 0; i < bucket->bu_blocks; i++) {
300 rc = ocfs2_journal_access(handle, bucket->bu_inode,
Joel Becker1224be02008-10-24 18:47:33 -0700301 bucket->bu_bhs[i], type);
302 if (rc) {
303 mlog_errno(rc);
304 break;
305 }
306 }
307
308 return rc;
309}
310
311static void ocfs2_xattr_bucket_journal_dirty(handle_t *handle,
Joel Becker1224be02008-10-24 18:47:33 -0700312 struct ocfs2_xattr_bucket *bucket)
313{
Joel Beckerba937122008-10-24 19:13:20 -0700314 int i;
Joel Becker1224be02008-10-24 18:47:33 -0700315
Tao Mac8b9cf92009-02-24 17:40:26 -0800316 spin_lock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800317 ocfs2_compute_meta_ecc_bhs(bucket->bu_inode->i_sb,
318 bucket->bu_bhs, bucket->bu_blocks,
319 &bucket_xh(bucket)->xh_check);
Tao Mac8b9cf92009-02-24 17:40:26 -0800320 spin_unlock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800321
Joel Beckerba937122008-10-24 19:13:20 -0700322 for (i = 0; i < bucket->bu_blocks; i++)
Joel Becker1224be02008-10-24 18:47:33 -0700323 ocfs2_journal_dirty(handle, bucket->bu_bhs[i]);
324}
325
Joel Beckerba937122008-10-24 19:13:20 -0700326static void ocfs2_xattr_bucket_copy_data(struct ocfs2_xattr_bucket *dest,
Joel Becker4980c6d2008-10-24 18:54:43 -0700327 struct ocfs2_xattr_bucket *src)
328{
329 int i;
Joel Beckerba937122008-10-24 19:13:20 -0700330 int blocksize = src->bu_inode->i_sb->s_blocksize;
Joel Becker4980c6d2008-10-24 18:54:43 -0700331
Joel Beckerba937122008-10-24 19:13:20 -0700332 BUG_ON(dest->bu_blocks != src->bu_blocks);
333 BUG_ON(dest->bu_inode != src->bu_inode);
334
335 for (i = 0; i < src->bu_blocks; i++) {
Joel Becker4980c6d2008-10-24 18:54:43 -0700336 memcpy(bucket_block(dest, i), bucket_block(src, i),
337 blocksize);
338 }
339}
Joel Becker1224be02008-10-24 18:47:33 -0700340
Joel Becker4ae1d692008-11-13 14:49:18 -0800341static int ocfs2_validate_xattr_block(struct super_block *sb,
342 struct buffer_head *bh)
343{
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700344 int rc;
Joel Becker4ae1d692008-11-13 14:49:18 -0800345 struct ocfs2_xattr_block *xb =
346 (struct ocfs2_xattr_block *)bh->b_data;
347
348 mlog(0, "Validating xattr block %llu\n",
349 (unsigned long long)bh->b_blocknr);
350
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700351 BUG_ON(!buffer_uptodate(bh));
352
353 /*
354 * If the ecc fails, we return the error but otherwise
355 * leave the filesystem running. We know any error is
356 * local to this block.
357 */
358 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &xb->xb_check);
359 if (rc)
360 return rc;
361
362 /*
363 * Errors after here are fatal
364 */
365
Joel Becker4ae1d692008-11-13 14:49:18 -0800366 if (!OCFS2_IS_VALID_XATTR_BLOCK(xb)) {
367 ocfs2_error(sb,
368 "Extended attribute block #%llu has bad "
369 "signature %.*s",
370 (unsigned long long)bh->b_blocknr, 7,
371 xb->xb_signature);
372 return -EINVAL;
373 }
374
375 if (le64_to_cpu(xb->xb_blkno) != bh->b_blocknr) {
376 ocfs2_error(sb,
377 "Extended attribute block #%llu has an "
378 "invalid xb_blkno of %llu",
379 (unsigned long long)bh->b_blocknr,
380 (unsigned long long)le64_to_cpu(xb->xb_blkno));
381 return -EINVAL;
382 }
383
384 if (le32_to_cpu(xb->xb_fs_generation) != OCFS2_SB(sb)->fs_generation) {
385 ocfs2_error(sb,
386 "Extended attribute block #%llu has an invalid "
387 "xb_fs_generation of #%u",
388 (unsigned long long)bh->b_blocknr,
389 le32_to_cpu(xb->xb_fs_generation));
390 return -EINVAL;
391 }
392
393 return 0;
394}
395
396static int ocfs2_read_xattr_block(struct inode *inode, u64 xb_blkno,
397 struct buffer_head **bh)
398{
399 int rc;
400 struct buffer_head *tmp = *bh;
401
Joel Becker8cb471e2009-02-10 20:00:41 -0800402 rc = ocfs2_read_block(INODE_CACHE(inode), xb_blkno, &tmp,
Joel Becker970e4932008-11-13 14:49:19 -0800403 ocfs2_validate_xattr_block);
Joel Becker4ae1d692008-11-13 14:49:18 -0800404
405 /* If ocfs2_read_block() got us a new bh, pass it up. */
406 if (!rc && !*bh)
407 *bh = tmp;
408
409 return rc;
410}
411
Tao Ma936b8832008-10-09 23:06:14 +0800412static inline const char *ocfs2_xattr_prefix(int name_index)
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800413{
414 struct xattr_handler *handler = NULL;
415
416 if (name_index > 0 && name_index < OCFS2_XATTR_MAX)
417 handler = ocfs2_xattr_handler_map[name_index];
418
Tao Ma936b8832008-10-09 23:06:14 +0800419 return handler ? handler->prefix : NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800420}
421
Mark Fasheh40daa162008-10-07 14:31:42 -0700422static u32 ocfs2_xattr_name_hash(struct inode *inode,
Tao Ma2057e5c2008-10-09 23:06:13 +0800423 const char *name,
Mark Fasheh40daa162008-10-07 14:31:42 -0700424 int name_len)
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800425{
426 /* Get hash value of uuid from super block */
427 u32 hash = OCFS2_SB(inode->i_sb)->uuid_hash;
428 int i;
429
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800430 /* hash extended attribute name */
431 for (i = 0; i < name_len; i++) {
432 hash = (hash << OCFS2_HASH_SHIFT) ^
433 (hash >> (8*sizeof(hash) - OCFS2_HASH_SHIFT)) ^
434 *name++;
435 }
436
437 return hash;
438}
439
440/*
441 * ocfs2_xattr_hash_entry()
442 *
443 * Compute the hash of an extended attribute.
444 */
445static void ocfs2_xattr_hash_entry(struct inode *inode,
446 struct ocfs2_xattr_header *header,
447 struct ocfs2_xattr_entry *entry)
448{
449 u32 hash = 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800450 char *name = (char *)header + le16_to_cpu(entry->xe_name_offset);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800451
Tao Ma2057e5c2008-10-09 23:06:13 +0800452 hash = ocfs2_xattr_name_hash(inode, name, entry->xe_name_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800453 entry->xe_name_hash = cpu_to_le32(hash);
454
455 return;
456}
Tao Maf56654c2008-08-18 17:38:48 +0800457
Tiger Yang534eadd2008-11-14 11:16:41 +0800458static int ocfs2_xattr_entry_real_size(int name_len, size_t value_len)
459{
460 int size = 0;
461
462 if (value_len <= OCFS2_XATTR_INLINE_SIZE)
463 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(value_len);
464 else
465 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
466 size += sizeof(struct ocfs2_xattr_entry);
467
468 return size;
469}
470
471int ocfs2_calc_security_init(struct inode *dir,
472 struct ocfs2_security_xattr_info *si,
473 int *want_clusters,
474 int *xattr_credits,
475 struct ocfs2_alloc_context **xattr_ac)
476{
477 int ret = 0;
478 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
479 int s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
480 si->value_len);
481
482 /*
483 * The max space of security xattr taken inline is
484 * 256(name) + 80(value) + 16(entry) = 352 bytes,
485 * So reserve one metadata block for it is ok.
486 */
487 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
488 s_size > OCFS2_XATTR_FREE_IN_IBODY) {
489 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, xattr_ac);
490 if (ret) {
491 mlog_errno(ret);
492 return ret;
493 }
494 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
495 }
496
497 /* reserve clusters for xattr value which will be set in B tree*/
Tiger Yang0e445b62008-12-09 16:42:51 +0800498 if (si->value_len > OCFS2_XATTR_INLINE_SIZE) {
499 int new_clusters = ocfs2_clusters_for_bytes(dir->i_sb,
500 si->value_len);
501
502 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
503 new_clusters);
504 *want_clusters += new_clusters;
505 }
Tiger Yang534eadd2008-11-14 11:16:41 +0800506 return ret;
507}
508
Tiger Yang89c38bd2008-11-14 11:17:41 +0800509int ocfs2_calc_xattr_init(struct inode *dir,
510 struct buffer_head *dir_bh,
511 int mode,
512 struct ocfs2_security_xattr_info *si,
513 int *want_clusters,
514 int *xattr_credits,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800515 int *want_meta)
Tiger Yang89c38bd2008-11-14 11:17:41 +0800516{
517 int ret = 0;
518 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
Tiger Yang0e445b62008-12-09 16:42:51 +0800519 int s_size = 0, a_size = 0, acl_len = 0, new_clusters;
Tiger Yang89c38bd2008-11-14 11:17:41 +0800520
521 if (si->enable)
522 s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
523 si->value_len);
524
525 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) {
526 acl_len = ocfs2_xattr_get_nolock(dir, dir_bh,
527 OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT,
528 "", NULL, 0);
529 if (acl_len > 0) {
530 a_size = ocfs2_xattr_entry_real_size(0, acl_len);
531 if (S_ISDIR(mode))
532 a_size <<= 1;
533 } else if (acl_len != 0 && acl_len != -ENODATA) {
534 mlog_errno(ret);
535 return ret;
536 }
537 }
538
539 if (!(s_size + a_size))
540 return ret;
541
542 /*
543 * The max space of security xattr taken inline is
544 * 256(name) + 80(value) + 16(entry) = 352 bytes,
545 * The max space of acl xattr taken inline is
546 * 80(value) + 16(entry) * 2(if directory) = 192 bytes,
547 * when blocksize = 512, may reserve one more cluser for
548 * xattr bucket, otherwise reserve one metadata block
549 * for them is ok.
Tiger Yang6c9fd1d2009-03-06 10:19:30 +0800550 * If this is a new directory with inline data,
551 * we choose to reserve the entire inline area for
552 * directory contents and force an external xattr block.
Tiger Yang89c38bd2008-11-14 11:17:41 +0800553 */
554 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
Tiger Yang6c9fd1d2009-03-06 10:19:30 +0800555 (S_ISDIR(mode) && ocfs2_supports_inline_data(osb)) ||
Tiger Yang89c38bd2008-11-14 11:17:41 +0800556 (s_size + a_size) > OCFS2_XATTR_FREE_IN_IBODY) {
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800557 *want_meta = *want_meta + 1;
Tiger Yang89c38bd2008-11-14 11:17:41 +0800558 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
559 }
560
561 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE &&
562 (s_size + a_size) > OCFS2_XATTR_FREE_IN_BLOCK(dir)) {
563 *want_clusters += 1;
564 *xattr_credits += ocfs2_blocks_per_xattr_bucket(dir->i_sb);
565 }
566
Tiger Yang0e445b62008-12-09 16:42:51 +0800567 /*
568 * reserve credits and clusters for xattrs which has large value
569 * and have to be set outside
570 */
571 if (si->enable && si->value_len > OCFS2_XATTR_INLINE_SIZE) {
572 new_clusters = ocfs2_clusters_for_bytes(dir->i_sb,
573 si->value_len);
574 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
575 new_clusters);
576 *want_clusters += new_clusters;
577 }
Tiger Yang89c38bd2008-11-14 11:17:41 +0800578 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL &&
579 acl_len > OCFS2_XATTR_INLINE_SIZE) {
Tiger Yang0e445b62008-12-09 16:42:51 +0800580 /* for directory, it has DEFAULT and ACCESS two types of acls */
581 new_clusters = (S_ISDIR(mode) ? 2 : 1) *
582 ocfs2_clusters_for_bytes(dir->i_sb, acl_len);
583 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
584 new_clusters);
585 *want_clusters += new_clusters;
Tiger Yang89c38bd2008-11-14 11:17:41 +0800586 }
587
588 return ret;
589}
590
Tao Maf56654c2008-08-18 17:38:48 +0800591static int ocfs2_xattr_extend_allocation(struct inode *inode,
592 u32 clusters_to_add,
Joel Becker19b801f2008-12-09 14:36:50 -0800593 struct ocfs2_xattr_value_buf *vb,
Tao Ma78f30c32008-11-12 08:27:00 +0800594 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800595{
596 int status = 0;
Tao Ma85db90e2008-11-12 08:27:01 +0800597 handle_t *handle = ctxt->handle;
Tao Maf56654c2008-08-18 17:38:48 +0800598 enum ocfs2_alloc_restarted why;
599 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Becker19b801f2008-12-09 14:36:50 -0800600 u32 prev_clusters, logical_start = le32_to_cpu(vb->vb_xv->xr_clusters);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700601 struct ocfs2_extent_tree et;
Tao Maf56654c2008-08-18 17:38:48 +0800602
603 mlog(0, "(clusters_to_add for xattr= %u)\n", clusters_to_add);
604
Joel Becker19b801f2008-12-09 14:36:50 -0800605 ocfs2_init_xattr_value_extent_tree(&et, inode, vb);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700606
Joel Becker19b801f2008-12-09 14:36:50 -0800607 status = vb->vb_access(handle, inode, vb->vb_bh,
Joel Becker2a50a742008-12-09 14:24:33 -0800608 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Maf56654c2008-08-18 17:38:48 +0800609 if (status < 0) {
610 mlog_errno(status);
611 goto leave;
612 }
613
Joel Becker19b801f2008-12-09 14:36:50 -0800614 prev_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
Tao Maf56654c2008-08-18 17:38:48 +0800615 status = ocfs2_add_clusters_in_btree(osb,
616 inode,
617 &logical_start,
618 clusters_to_add,
619 0,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700620 &et,
Tao Maf56654c2008-08-18 17:38:48 +0800621 handle,
Tao Ma78f30c32008-11-12 08:27:00 +0800622 ctxt->data_ac,
623 ctxt->meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700624 &why);
Tao Ma85db90e2008-11-12 08:27:01 +0800625 if (status < 0) {
626 mlog_errno(status);
Tao Maf56654c2008-08-18 17:38:48 +0800627 goto leave;
628 }
629
Joel Becker19b801f2008-12-09 14:36:50 -0800630 status = ocfs2_journal_dirty(handle, vb->vb_bh);
Tao Maf56654c2008-08-18 17:38:48 +0800631 if (status < 0) {
632 mlog_errno(status);
633 goto leave;
634 }
635
Joel Becker19b801f2008-12-09 14:36:50 -0800636 clusters_to_add -= le32_to_cpu(vb->vb_xv->xr_clusters) - prev_clusters;
Tao Maf56654c2008-08-18 17:38:48 +0800637
Tao Ma85db90e2008-11-12 08:27:01 +0800638 /*
639 * We should have already allocated enough space before the transaction,
640 * so no need to restart.
641 */
642 BUG_ON(why != RESTART_NONE || clusters_to_add);
Tao Maf56654c2008-08-18 17:38:48 +0800643
644leave:
Tao Maf56654c2008-08-18 17:38:48 +0800645
646 return status;
647}
648
649static int __ocfs2_remove_xattr_range(struct inode *inode,
Joel Beckerd72cc722008-12-09 14:30:41 -0800650 struct ocfs2_xattr_value_buf *vb,
Tao Maf56654c2008-08-18 17:38:48 +0800651 u32 cpos, u32 phys_cpos, u32 len,
Tao Ma78f30c32008-11-12 08:27:00 +0800652 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800653{
654 int ret;
655 u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
Tao Ma85db90e2008-11-12 08:27:01 +0800656 handle_t *handle = ctxt->handle;
Joel Beckerf99b9b72008-08-20 19:36:33 -0700657 struct ocfs2_extent_tree et;
Tao Maf56654c2008-08-18 17:38:48 +0800658
Joel Beckerd72cc722008-12-09 14:30:41 -0800659 ocfs2_init_xattr_value_extent_tree(&et, inode, vb);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700660
Joel Beckerd72cc722008-12-09 14:30:41 -0800661 ret = vb->vb_access(handle, inode, vb->vb_bh,
662 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Maf56654c2008-08-18 17:38:48 +0800663 if (ret) {
664 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +0800665 goto out;
Tao Maf56654c2008-08-18 17:38:48 +0800666 }
667
Tao Ma78f30c32008-11-12 08:27:00 +0800668 ret = ocfs2_remove_extent(inode, &et, cpos, len, handle, ctxt->meta_ac,
669 &ctxt->dealloc);
Tao Maf56654c2008-08-18 17:38:48 +0800670 if (ret) {
671 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +0800672 goto out;
Tao Maf56654c2008-08-18 17:38:48 +0800673 }
674
Joel Beckerd72cc722008-12-09 14:30:41 -0800675 le32_add_cpu(&vb->vb_xv->xr_clusters, -len);
Tao Maf56654c2008-08-18 17:38:48 +0800676
Joel Beckerd72cc722008-12-09 14:30:41 -0800677 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tao Maf56654c2008-08-18 17:38:48 +0800678 if (ret) {
679 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +0800680 goto out;
Tao Maf56654c2008-08-18 17:38:48 +0800681 }
682
Tao Ma78f30c32008-11-12 08:27:00 +0800683 ret = ocfs2_cache_cluster_dealloc(&ctxt->dealloc, phys_blkno, len);
Tao Maf56654c2008-08-18 17:38:48 +0800684 if (ret)
685 mlog_errno(ret);
686
Tao Maf56654c2008-08-18 17:38:48 +0800687out:
Tao Maf56654c2008-08-18 17:38:48 +0800688 return ret;
689}
690
691static int ocfs2_xattr_shrink_size(struct inode *inode,
692 u32 old_clusters,
693 u32 new_clusters,
Joel Becker19b801f2008-12-09 14:36:50 -0800694 struct ocfs2_xattr_value_buf *vb,
Tao Ma78f30c32008-11-12 08:27:00 +0800695 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800696{
697 int ret = 0;
698 u32 trunc_len, cpos, phys_cpos, alloc_size;
699 u64 block;
Tao Maf56654c2008-08-18 17:38:48 +0800700
701 if (old_clusters <= new_clusters)
702 return 0;
703
704 cpos = new_clusters;
705 trunc_len = old_clusters - new_clusters;
706 while (trunc_len) {
707 ret = ocfs2_xattr_get_clusters(inode, cpos, &phys_cpos,
Joel Beckerd72cc722008-12-09 14:30:41 -0800708 &alloc_size,
Joel Becker19b801f2008-12-09 14:36:50 -0800709 &vb->vb_xv->xr_list);
Tao Maf56654c2008-08-18 17:38:48 +0800710 if (ret) {
711 mlog_errno(ret);
712 goto out;
713 }
714
715 if (alloc_size > trunc_len)
716 alloc_size = trunc_len;
717
Joel Becker19b801f2008-12-09 14:36:50 -0800718 ret = __ocfs2_remove_xattr_range(inode, vb, cpos,
Tao Maf56654c2008-08-18 17:38:48 +0800719 phys_cpos, alloc_size,
Tao Ma78f30c32008-11-12 08:27:00 +0800720 ctxt);
Tao Maf56654c2008-08-18 17:38:48 +0800721 if (ret) {
722 mlog_errno(ret);
723 goto out;
724 }
725
726 block = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
Joel Becker8cb471e2009-02-10 20:00:41 -0800727 ocfs2_remove_xattr_clusters_from_cache(INODE_CACHE(inode),
728 block, alloc_size);
Tao Maf56654c2008-08-18 17:38:48 +0800729 cpos += alloc_size;
730 trunc_len -= alloc_size;
731 }
732
733out:
Tao Maf56654c2008-08-18 17:38:48 +0800734 return ret;
735}
736
737static int ocfs2_xattr_value_truncate(struct inode *inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -0800738 struct ocfs2_xattr_value_buf *vb,
Tao Ma78f30c32008-11-12 08:27:00 +0800739 int len,
740 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800741{
742 int ret;
743 u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb, len);
Joel Beckerb3e5d372008-12-09 15:01:04 -0800744 u32 old_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
Tao Maf56654c2008-08-18 17:38:48 +0800745
746 if (new_clusters == old_clusters)
747 return 0;
748
749 if (new_clusters > old_clusters)
750 ret = ocfs2_xattr_extend_allocation(inode,
751 new_clusters - old_clusters,
Joel Beckerb3e5d372008-12-09 15:01:04 -0800752 vb, ctxt);
Tao Maf56654c2008-08-18 17:38:48 +0800753 else
754 ret = ocfs2_xattr_shrink_size(inode,
755 old_clusters, new_clusters,
Joel Beckerb3e5d372008-12-09 15:01:04 -0800756 vb, ctxt);
Tao Maf56654c2008-08-18 17:38:48 +0800757
758 return ret;
759}
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800760
Tao Ma936b8832008-10-09 23:06:14 +0800761static int ocfs2_xattr_list_entry(char *buffer, size_t size,
762 size_t *result, const char *prefix,
763 const char *name, int name_len)
764{
765 char *p = buffer + *result;
766 int prefix_len = strlen(prefix);
767 int total_len = prefix_len + name_len + 1;
768
769 *result += total_len;
770
771 /* we are just looking for how big our buffer needs to be */
772 if (!size)
773 return 0;
774
775 if (*result > size)
776 return -ERANGE;
777
778 memcpy(p, prefix, prefix_len);
779 memcpy(p + prefix_len, name, name_len);
780 p[prefix_len + name_len] = '\0';
781
782 return 0;
783}
784
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800785static int ocfs2_xattr_list_entries(struct inode *inode,
786 struct ocfs2_xattr_header *header,
787 char *buffer, size_t buffer_size)
788{
Tao Ma936b8832008-10-09 23:06:14 +0800789 size_t result = 0;
790 int i, type, ret;
791 const char *prefix, *name;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800792
793 for (i = 0 ; i < le16_to_cpu(header->xh_count); i++) {
794 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
Tao Ma936b8832008-10-09 23:06:14 +0800795 type = ocfs2_xattr_get_type(entry);
796 prefix = ocfs2_xattr_prefix(type);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800797
Tao Ma936b8832008-10-09 23:06:14 +0800798 if (prefix) {
799 name = (const char *)header +
800 le16_to_cpu(entry->xe_name_offset);
801
802 ret = ocfs2_xattr_list_entry(buffer, buffer_size,
803 &result, prefix, name,
804 entry->xe_name_len);
805 if (ret)
806 return ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800807 }
808 }
809
Tao Ma936b8832008-10-09 23:06:14 +0800810 return result;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800811}
812
813static int ocfs2_xattr_ibody_list(struct inode *inode,
814 struct ocfs2_dinode *di,
815 char *buffer,
816 size_t buffer_size)
817{
818 struct ocfs2_xattr_header *header = NULL;
819 struct ocfs2_inode_info *oi = OCFS2_I(inode);
820 int ret = 0;
821
822 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
823 return ret;
824
825 header = (struct ocfs2_xattr_header *)
826 ((void *)di + inode->i_sb->s_blocksize -
827 le16_to_cpu(di->i_xattr_inline_size));
828
829 ret = ocfs2_xattr_list_entries(inode, header, buffer, buffer_size);
830
831 return ret;
832}
833
834static int ocfs2_xattr_block_list(struct inode *inode,
835 struct ocfs2_dinode *di,
836 char *buffer,
837 size_t buffer_size)
838{
839 struct buffer_head *blk_bh = NULL;
Tao Ma0c044f02008-08-18 17:38:50 +0800840 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800841 int ret = 0;
842
843 if (!di->i_xattr_loc)
844 return ret;
845
Joel Becker4ae1d692008-11-13 14:49:18 -0800846 ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
847 &blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800848 if (ret < 0) {
849 mlog_errno(ret);
850 return ret;
851 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800852
Tao Ma0c044f02008-08-18 17:38:50 +0800853 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Ma0c044f02008-08-18 17:38:50 +0800854 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
855 struct ocfs2_xattr_header *header = &xb->xb_attrs.xb_header;
856 ret = ocfs2_xattr_list_entries(inode, header,
857 buffer, buffer_size);
858 } else {
859 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root;
860 ret = ocfs2_xattr_tree_list_index_block(inode, xt,
861 buffer, buffer_size);
862 }
Joel Becker4ae1d692008-11-13 14:49:18 -0800863
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800864 brelse(blk_bh);
865
866 return ret;
867}
868
869ssize_t ocfs2_listxattr(struct dentry *dentry,
870 char *buffer,
871 size_t size)
872{
873 int ret = 0, i_ret = 0, b_ret = 0;
874 struct buffer_head *di_bh = NULL;
875 struct ocfs2_dinode *di = NULL;
876 struct ocfs2_inode_info *oi = OCFS2_I(dentry->d_inode);
877
Tiger Yang8154da32008-08-18 17:11:46 +0800878 if (!ocfs2_supports_xattr(OCFS2_SB(dentry->d_sb)))
879 return -EOPNOTSUPP;
880
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800881 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
882 return ret;
883
884 ret = ocfs2_inode_lock(dentry->d_inode, &di_bh, 0);
885 if (ret < 0) {
886 mlog_errno(ret);
887 return ret;
888 }
889
890 di = (struct ocfs2_dinode *)di_bh->b_data;
891
892 down_read(&oi->ip_xattr_sem);
893 i_ret = ocfs2_xattr_ibody_list(dentry->d_inode, di, buffer, size);
894 if (i_ret < 0)
895 b_ret = 0;
896 else {
897 if (buffer) {
898 buffer += i_ret;
899 size -= i_ret;
900 }
901 b_ret = ocfs2_xattr_block_list(dentry->d_inode, di,
902 buffer, size);
903 if (b_ret < 0)
904 i_ret = 0;
905 }
906 up_read(&oi->ip_xattr_sem);
907 ocfs2_inode_unlock(dentry->d_inode, 0);
908
909 brelse(di_bh);
910
911 return i_ret + b_ret;
912}
913
914static int ocfs2_xattr_find_entry(int name_index,
915 const char *name,
916 struct ocfs2_xattr_search *xs)
917{
918 struct ocfs2_xattr_entry *entry;
919 size_t name_len;
920 int i, cmp = 1;
921
922 if (name == NULL)
923 return -EINVAL;
924
925 name_len = strlen(name);
926 entry = xs->here;
927 for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
928 cmp = name_index - ocfs2_xattr_get_type(entry);
929 if (!cmp)
930 cmp = name_len - entry->xe_name_len;
931 if (!cmp)
932 cmp = memcmp(name, (xs->base +
933 le16_to_cpu(entry->xe_name_offset)),
934 name_len);
935 if (cmp == 0)
936 break;
937 entry += 1;
938 }
939 xs->here = entry;
940
941 return cmp ? -ENODATA : 0;
942}
943
944static int ocfs2_xattr_get_value_outside(struct inode *inode,
Tao Ma589dc262008-08-18 17:38:51 +0800945 struct ocfs2_xattr_value_root *xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800946 void *buffer,
947 size_t len)
948{
949 u32 cpos, p_cluster, num_clusters, bpc, clusters;
950 u64 blkno;
951 int i, ret = 0;
952 size_t cplen, blocksize;
953 struct buffer_head *bh = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800954 struct ocfs2_extent_list *el;
955
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800956 el = &xv->xr_list;
957 clusters = le32_to_cpu(xv->xr_clusters);
958 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
959 blocksize = inode->i_sb->s_blocksize;
960
961 cpos = 0;
962 while (cpos < clusters) {
963 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
964 &num_clusters, el);
965 if (ret) {
966 mlog_errno(ret);
967 goto out;
968 }
969
970 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
971 /* Copy ocfs2_xattr_value */
972 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
Joel Becker8cb471e2009-02-10 20:00:41 -0800973 ret = ocfs2_read_block(INODE_CACHE(inode), blkno,
974 &bh, NULL);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800975 if (ret) {
976 mlog_errno(ret);
977 goto out;
978 }
979
980 cplen = len >= blocksize ? blocksize : len;
981 memcpy(buffer, bh->b_data, cplen);
982 len -= cplen;
983 buffer += cplen;
984
985 brelse(bh);
986 bh = NULL;
987 if (len == 0)
988 break;
989 }
990 cpos += num_clusters;
991 }
992out:
993 return ret;
994}
995
996static int ocfs2_xattr_ibody_get(struct inode *inode,
997 int name_index,
998 const char *name,
999 void *buffer,
1000 size_t buffer_size,
1001 struct ocfs2_xattr_search *xs)
1002{
1003 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1004 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
Tao Ma589dc262008-08-18 17:38:51 +08001005 struct ocfs2_xattr_value_root *xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001006 size_t size;
1007 int ret = 0;
1008
1009 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
1010 return -ENODATA;
1011
1012 xs->end = (void *)di + inode->i_sb->s_blocksize;
1013 xs->header = (struct ocfs2_xattr_header *)
1014 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
1015 xs->base = (void *)xs->header;
1016 xs->here = xs->header->xh_entries;
1017
1018 ret = ocfs2_xattr_find_entry(name_index, name, xs);
1019 if (ret)
1020 return ret;
1021 size = le64_to_cpu(xs->here->xe_value_size);
1022 if (buffer) {
1023 if (size > buffer_size)
1024 return -ERANGE;
1025 if (ocfs2_xattr_is_local(xs->here)) {
1026 memcpy(buffer, (void *)xs->base +
1027 le16_to_cpu(xs->here->xe_name_offset) +
1028 OCFS2_XATTR_SIZE(xs->here->xe_name_len), size);
1029 } else {
Tao Ma589dc262008-08-18 17:38:51 +08001030 xv = (struct ocfs2_xattr_value_root *)
1031 (xs->base + le16_to_cpu(
1032 xs->here->xe_name_offset) +
1033 OCFS2_XATTR_SIZE(xs->here->xe_name_len));
1034 ret = ocfs2_xattr_get_value_outside(inode, xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001035 buffer, size);
1036 if (ret < 0) {
1037 mlog_errno(ret);
1038 return ret;
1039 }
1040 }
1041 }
1042
1043 return size;
1044}
1045
1046static int ocfs2_xattr_block_get(struct inode *inode,
1047 int name_index,
1048 const char *name,
1049 void *buffer,
1050 size_t buffer_size,
1051 struct ocfs2_xattr_search *xs)
1052{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001053 struct ocfs2_xattr_block *xb;
Tao Ma589dc262008-08-18 17:38:51 +08001054 struct ocfs2_xattr_value_root *xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001055 size_t size;
Subrata Modak44d8e4e2009-07-14 01:19:31 +05301056 int ret = -ENODATA, name_offset, name_len, i;
1057 int uninitialized_var(block_off);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001058
Joel Beckerba937122008-10-24 19:13:20 -07001059 xs->bucket = ocfs2_xattr_bucket_new(inode);
1060 if (!xs->bucket) {
1061 ret = -ENOMEM;
1062 mlog_errno(ret);
1063 goto cleanup;
1064 }
Tao Ma589dc262008-08-18 17:38:51 +08001065
Joel Becker54f443f2008-10-20 18:43:07 -07001066 ret = ocfs2_xattr_block_find(inode, name_index, name, xs);
1067 if (ret) {
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001068 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001069 goto cleanup;
1070 }
1071
Tiger Yang6c1e1832008-11-02 19:04:21 +08001072 if (xs->not_found) {
1073 ret = -ENODATA;
1074 goto cleanup;
1075 }
1076
Joel Becker54f443f2008-10-20 18:43:07 -07001077 xb = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001078 size = le64_to_cpu(xs->here->xe_value_size);
1079 if (buffer) {
1080 ret = -ERANGE;
1081 if (size > buffer_size)
1082 goto cleanup;
Tao Ma589dc262008-08-18 17:38:51 +08001083
1084 name_offset = le16_to_cpu(xs->here->xe_name_offset);
1085 name_len = OCFS2_XATTR_SIZE(xs->here->xe_name_len);
1086 i = xs->here - xs->header->xh_entries;
1087
1088 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
1089 ret = ocfs2_xattr_bucket_get_name_value(inode,
Joel Beckerba937122008-10-24 19:13:20 -07001090 bucket_xh(xs->bucket),
Tao Ma589dc262008-08-18 17:38:51 +08001091 i,
1092 &block_off,
1093 &name_offset);
Joel Beckerba937122008-10-24 19:13:20 -07001094 xs->base = bucket_block(xs->bucket, block_off);
Tao Ma589dc262008-08-18 17:38:51 +08001095 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001096 if (ocfs2_xattr_is_local(xs->here)) {
1097 memcpy(buffer, (void *)xs->base +
Tao Ma589dc262008-08-18 17:38:51 +08001098 name_offset + name_len, size);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001099 } else {
Tao Ma589dc262008-08-18 17:38:51 +08001100 xv = (struct ocfs2_xattr_value_root *)
1101 (xs->base + name_offset + name_len);
1102 ret = ocfs2_xattr_get_value_outside(inode, xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001103 buffer, size);
1104 if (ret < 0) {
1105 mlog_errno(ret);
1106 goto cleanup;
1107 }
1108 }
1109 }
1110 ret = size;
1111cleanup:
Joel Beckerba937122008-10-24 19:13:20 -07001112 ocfs2_xattr_bucket_free(xs->bucket);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001113
Joel Becker54f443f2008-10-20 18:43:07 -07001114 brelse(xs->xattr_bh);
1115 xs->xattr_bh = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001116 return ret;
1117}
1118
Tiger Yang4e3e9d02008-11-14 11:16:53 +08001119int ocfs2_xattr_get_nolock(struct inode *inode,
1120 struct buffer_head *di_bh,
Tiger Yang0030e002008-10-23 16:33:33 +08001121 int name_index,
1122 const char *name,
1123 void *buffer,
1124 size_t buffer_size)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001125{
1126 int ret;
1127 struct ocfs2_dinode *di = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001128 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1129 struct ocfs2_xattr_search xis = {
1130 .not_found = -ENODATA,
1131 };
1132 struct ocfs2_xattr_search xbs = {
1133 .not_found = -ENODATA,
1134 };
1135
Tiger Yang8154da32008-08-18 17:11:46 +08001136 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1137 return -EOPNOTSUPP;
1138
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001139 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1140 ret = -ENODATA;
1141
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001142 xis.inode_bh = xbs.inode_bh = di_bh;
1143 di = (struct ocfs2_dinode *)di_bh->b_data;
1144
1145 down_read(&oi->ip_xattr_sem);
1146 ret = ocfs2_xattr_ibody_get(inode, name_index, name, buffer,
1147 buffer_size, &xis);
Tiger Yang6c1e1832008-11-02 19:04:21 +08001148 if (ret == -ENODATA && di->i_xattr_loc)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001149 ret = ocfs2_xattr_block_get(inode, name_index, name, buffer,
1150 buffer_size, &xbs);
1151 up_read(&oi->ip_xattr_sem);
Tiger Yang4e3e9d02008-11-14 11:16:53 +08001152
1153 return ret;
1154}
1155
1156/* ocfs2_xattr_get()
1157 *
1158 * Copy an extended attribute into the buffer provided.
1159 * Buffer is NULL to compute the size of buffer required.
1160 */
1161static int ocfs2_xattr_get(struct inode *inode,
1162 int name_index,
1163 const char *name,
1164 void *buffer,
1165 size_t buffer_size)
1166{
1167 int ret;
1168 struct buffer_head *di_bh = NULL;
1169
1170 ret = ocfs2_inode_lock(inode, &di_bh, 0);
1171 if (ret < 0) {
1172 mlog_errno(ret);
1173 return ret;
1174 }
1175 ret = ocfs2_xattr_get_nolock(inode, di_bh, name_index,
1176 name, buffer, buffer_size);
1177
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001178 ocfs2_inode_unlock(inode, 0);
1179
1180 brelse(di_bh);
1181
1182 return ret;
1183}
1184
1185static int __ocfs2_xattr_set_value_outside(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001186 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001187 struct ocfs2_xattr_value_root *xv,
1188 const void *value,
1189 int value_len)
1190{
Tao Ma71d548a2008-12-05 06:20:54 +08001191 int ret = 0, i, cp_len;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001192 u16 blocksize = inode->i_sb->s_blocksize;
1193 u32 p_cluster, num_clusters;
1194 u32 cpos = 0, bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
1195 u32 clusters = ocfs2_clusters_for_bytes(inode->i_sb, value_len);
1196 u64 blkno;
1197 struct buffer_head *bh = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001198
1199 BUG_ON(clusters > le32_to_cpu(xv->xr_clusters));
1200
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001201 while (cpos < clusters) {
1202 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
1203 &num_clusters, &xv->xr_list);
1204 if (ret) {
1205 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001206 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001207 }
1208
1209 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
1210
1211 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
Joel Becker8cb471e2009-02-10 20:00:41 -08001212 ret = ocfs2_read_block(INODE_CACHE(inode), blkno,
1213 &bh, NULL);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001214 if (ret) {
1215 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001216 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001217 }
1218
1219 ret = ocfs2_journal_access(handle,
1220 inode,
1221 bh,
1222 OCFS2_JOURNAL_ACCESS_WRITE);
1223 if (ret < 0) {
1224 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001225 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001226 }
1227
1228 cp_len = value_len > blocksize ? blocksize : value_len;
1229 memcpy(bh->b_data, value, cp_len);
1230 value_len -= cp_len;
1231 value += cp_len;
1232 if (cp_len < blocksize)
1233 memset(bh->b_data + cp_len, 0,
1234 blocksize - cp_len);
1235
1236 ret = ocfs2_journal_dirty(handle, bh);
1237 if (ret < 0) {
1238 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001239 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001240 }
1241 brelse(bh);
1242 bh = NULL;
1243
1244 /*
1245 * XXX: do we need to empty all the following
1246 * blocks in this cluster?
1247 */
1248 if (!value_len)
1249 break;
1250 }
1251 cpos += num_clusters;
1252 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001253out:
1254 brelse(bh);
1255
1256 return ret;
1257}
1258
1259static int ocfs2_xattr_cleanup(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001260 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001261 struct ocfs2_xattr_info *xi,
1262 struct ocfs2_xattr_search *xs,
Joel Becker512620f2008-12-09 15:58:35 -08001263 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001264 size_t offs)
1265{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001266 int ret = 0;
1267 size_t name_len = strlen(xi->name);
1268 void *val = xs->base + offs;
1269 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1270
Joel Becker512620f2008-12-09 15:58:35 -08001271 ret = vb->vb_access(handle, inode, vb->vb_bh,
1272 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001273 if (ret) {
1274 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001275 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001276 }
1277 /* Decrease xattr count */
1278 le16_add_cpu(&xs->header->xh_count, -1);
1279 /* Remove the xattr entry and tree root which has already be set*/
1280 memset((void *)xs->here, 0, sizeof(struct ocfs2_xattr_entry));
1281 memset(val, 0, size);
1282
Joel Becker512620f2008-12-09 15:58:35 -08001283 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001284 if (ret < 0)
1285 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001286out:
1287 return ret;
1288}
1289
1290static int ocfs2_xattr_update_entry(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001291 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001292 struct ocfs2_xattr_info *xi,
1293 struct ocfs2_xattr_search *xs,
Joel Becker0c748e92008-12-09 15:46:15 -08001294 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001295 size_t offs)
1296{
Tao Ma85db90e2008-11-12 08:27:01 +08001297 int ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001298
Joel Becker0c748e92008-12-09 15:46:15 -08001299 ret = vb->vb_access(handle, inode, vb->vb_bh,
1300 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001301 if (ret) {
1302 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001303 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001304 }
1305
1306 xs->here->xe_name_offset = cpu_to_le16(offs);
1307 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1308 if (xi->value_len <= OCFS2_XATTR_INLINE_SIZE)
1309 ocfs2_xattr_set_local(xs->here, 1);
1310 else
1311 ocfs2_xattr_set_local(xs->here, 0);
1312 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1313
Joel Becker0c748e92008-12-09 15:46:15 -08001314 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001315 if (ret < 0)
1316 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001317out:
1318 return ret;
1319}
1320
1321/*
1322 * ocfs2_xattr_set_value_outside()
1323 *
1324 * Set large size value in B tree.
1325 */
1326static int ocfs2_xattr_set_value_outside(struct inode *inode,
1327 struct ocfs2_xattr_info *xi,
1328 struct ocfs2_xattr_search *xs,
Tao Ma78f30c32008-11-12 08:27:00 +08001329 struct ocfs2_xattr_set_ctxt *ctxt,
Joel Becker512620f2008-12-09 15:58:35 -08001330 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001331 size_t offs)
1332{
1333 size_t name_len = strlen(xi->name);
1334 void *val = xs->base + offs;
1335 struct ocfs2_xattr_value_root *xv = NULL;
1336 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1337 int ret = 0;
1338
1339 memset(val, 0, size);
1340 memcpy(val, xi->name, name_len);
1341 xv = (struct ocfs2_xattr_value_root *)
1342 (val + OCFS2_XATTR_SIZE(name_len));
1343 xv->xr_clusters = 0;
1344 xv->xr_last_eb_blk = 0;
1345 xv->xr_list.l_tree_depth = 0;
1346 xv->xr_list.l_count = cpu_to_le16(1);
1347 xv->xr_list.l_next_free_rec = 0;
Joel Becker512620f2008-12-09 15:58:35 -08001348 vb->vb_xv = xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001349
Joel Becker512620f2008-12-09 15:58:35 -08001350 ret = ocfs2_xattr_value_truncate(inode, vb, xi->value_len, ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001351 if (ret < 0) {
1352 mlog_errno(ret);
1353 return ret;
1354 }
Joel Becker512620f2008-12-09 15:58:35 -08001355 ret = ocfs2_xattr_update_entry(inode, ctxt->handle, xi, xs, vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001356 if (ret < 0) {
1357 mlog_errno(ret);
1358 return ret;
1359 }
Joel Becker512620f2008-12-09 15:58:35 -08001360 ret = __ocfs2_xattr_set_value_outside(inode, ctxt->handle, vb->vb_xv,
Tao Ma85db90e2008-11-12 08:27:01 +08001361 xi->value, xi->value_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001362 if (ret < 0)
1363 mlog_errno(ret);
1364
1365 return ret;
1366}
1367
1368/*
1369 * ocfs2_xattr_set_entry_local()
1370 *
1371 * Set, replace or remove extended attribute in local.
1372 */
1373static void ocfs2_xattr_set_entry_local(struct inode *inode,
1374 struct ocfs2_xattr_info *xi,
1375 struct ocfs2_xattr_search *xs,
1376 struct ocfs2_xattr_entry *last,
1377 size_t min_offs)
1378{
1379 size_t name_len = strlen(xi->name);
1380 int i;
1381
1382 if (xi->value && xs->not_found) {
1383 /* Insert the new xattr entry. */
1384 le16_add_cpu(&xs->header->xh_count, 1);
1385 ocfs2_xattr_set_type(last, xi->name_index);
1386 ocfs2_xattr_set_local(last, 1);
1387 last->xe_name_len = name_len;
1388 } else {
1389 void *first_val;
1390 void *val;
1391 size_t offs, size;
1392
1393 first_val = xs->base + min_offs;
1394 offs = le16_to_cpu(xs->here->xe_name_offset);
1395 val = xs->base + offs;
1396
1397 if (le64_to_cpu(xs->here->xe_value_size) >
1398 OCFS2_XATTR_INLINE_SIZE)
1399 size = OCFS2_XATTR_SIZE(name_len) +
1400 OCFS2_XATTR_ROOT_SIZE;
1401 else
1402 size = OCFS2_XATTR_SIZE(name_len) +
1403 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1404
1405 if (xi->value && size == OCFS2_XATTR_SIZE(name_len) +
1406 OCFS2_XATTR_SIZE(xi->value_len)) {
1407 /* The old and the new value have the
1408 same size. Just replace the value. */
1409 ocfs2_xattr_set_local(xs->here, 1);
1410 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1411 /* Clear value bytes. */
1412 memset(val + OCFS2_XATTR_SIZE(name_len),
1413 0,
1414 OCFS2_XATTR_SIZE(xi->value_len));
1415 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1416 xi->value,
1417 xi->value_len);
1418 return;
1419 }
1420 /* Remove the old name+value. */
1421 memmove(first_val + size, first_val, val - first_val);
1422 memset(first_val, 0, size);
1423 xs->here->xe_name_hash = 0;
1424 xs->here->xe_name_offset = 0;
1425 ocfs2_xattr_set_local(xs->here, 1);
1426 xs->here->xe_value_size = 0;
1427
1428 min_offs += size;
1429
1430 /* Adjust all value offsets. */
1431 last = xs->header->xh_entries;
1432 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1433 size_t o = le16_to_cpu(last->xe_name_offset);
1434
1435 if (o < offs)
1436 last->xe_name_offset = cpu_to_le16(o + size);
1437 last += 1;
1438 }
1439
1440 if (!xi->value) {
1441 /* Remove the old entry. */
1442 last -= 1;
1443 memmove(xs->here, xs->here + 1,
1444 (void *)last - (void *)xs->here);
1445 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
1446 le16_add_cpu(&xs->header->xh_count, -1);
1447 }
1448 }
1449 if (xi->value) {
1450 /* Insert the new name+value. */
1451 size_t size = OCFS2_XATTR_SIZE(name_len) +
1452 OCFS2_XATTR_SIZE(xi->value_len);
1453 void *val = xs->base + min_offs - size;
1454
1455 xs->here->xe_name_offset = cpu_to_le16(min_offs - size);
1456 memset(val, 0, size);
1457 memcpy(val, xi->name, name_len);
1458 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1459 xi->value,
1460 xi->value_len);
1461 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1462 ocfs2_xattr_set_local(xs->here, 1);
1463 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1464 }
1465
1466 return;
1467}
1468
1469/*
1470 * ocfs2_xattr_set_entry()
1471 *
1472 * Set extended attribute entry into inode or block.
1473 *
1474 * If extended attribute value size > OCFS2_XATTR_INLINE_SIZE,
1475 * We first insert tree root(ocfs2_xattr_value_root) with set_entry_local(),
1476 * then set value in B tree with set_value_outside().
1477 */
1478static int ocfs2_xattr_set_entry(struct inode *inode,
1479 struct ocfs2_xattr_info *xi,
1480 struct ocfs2_xattr_search *xs,
Tao Ma78f30c32008-11-12 08:27:00 +08001481 struct ocfs2_xattr_set_ctxt *ctxt,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001482 int flag)
1483{
1484 struct ocfs2_xattr_entry *last;
1485 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1486 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1487 size_t min_offs = xs->end - xs->base, name_len = strlen(xi->name);
1488 size_t size_l = 0;
Tao Ma85db90e2008-11-12 08:27:01 +08001489 handle_t *handle = ctxt->handle;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001490 int free, i, ret;
1491 struct ocfs2_xattr_info xi_l = {
1492 .name_index = xi->name_index,
1493 .name = xi->name,
1494 .value = xi->value,
1495 .value_len = xi->value_len,
1496 };
Joel Becker512620f2008-12-09 15:58:35 -08001497 struct ocfs2_xattr_value_buf vb = {
1498 .vb_bh = xs->xattr_bh,
1499 .vb_access = ocfs2_journal_access_di,
1500 };
1501
1502 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1503 BUG_ON(xs->xattr_bh == xs->inode_bh);
1504 vb.vb_access = ocfs2_journal_access_xb;
1505 } else
1506 BUG_ON(xs->xattr_bh != xs->inode_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001507
1508 /* Compute min_offs, last and free space. */
1509 last = xs->header->xh_entries;
1510
1511 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1512 size_t offs = le16_to_cpu(last->xe_name_offset);
1513 if (offs < min_offs)
1514 min_offs = offs;
1515 last += 1;
1516 }
1517
Tiger Yang4442f512009-02-20 11:11:50 +08001518 free = min_offs - ((void *)last - xs->base) - OCFS2_XATTR_HEADER_GAP;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001519 if (free < 0)
Joel Beckerb37c4d82008-10-20 18:24:03 -07001520 return -EIO;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001521
1522 if (!xs->not_found) {
1523 size_t size = 0;
1524 if (ocfs2_xattr_is_local(xs->here))
1525 size = OCFS2_XATTR_SIZE(name_len) +
1526 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1527 else
1528 size = OCFS2_XATTR_SIZE(name_len) +
1529 OCFS2_XATTR_ROOT_SIZE;
1530 free += (size + sizeof(struct ocfs2_xattr_entry));
1531 }
1532 /* Check free space in inode or block */
1533 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1534 if (free < sizeof(struct ocfs2_xattr_entry) +
1535 OCFS2_XATTR_SIZE(name_len) +
1536 OCFS2_XATTR_ROOT_SIZE) {
1537 ret = -ENOSPC;
1538 goto out;
1539 }
1540 size_l = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1541 xi_l.value = (void *)&def_xv;
1542 xi_l.value_len = OCFS2_XATTR_ROOT_SIZE;
1543 } else if (xi->value) {
1544 if (free < sizeof(struct ocfs2_xattr_entry) +
1545 OCFS2_XATTR_SIZE(name_len) +
1546 OCFS2_XATTR_SIZE(xi->value_len)) {
1547 ret = -ENOSPC;
1548 goto out;
1549 }
1550 }
1551
1552 if (!xs->not_found) {
1553 /* For existing extended attribute */
1554 size_t size = OCFS2_XATTR_SIZE(name_len) +
1555 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1556 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
1557 void *val = xs->base + offs;
1558
1559 if (ocfs2_xattr_is_local(xs->here) && size == size_l) {
1560 /* Replace existing local xattr with tree root */
1561 ret = ocfs2_xattr_set_value_outside(inode, xi, xs,
Joel Becker512620f2008-12-09 15:58:35 -08001562 ctxt, &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001563 if (ret < 0)
1564 mlog_errno(ret);
1565 goto out;
1566 } else if (!ocfs2_xattr_is_local(xs->here)) {
1567 /* For existing xattr which has value outside */
Joel Becker512620f2008-12-09 15:58:35 -08001568 vb.vb_xv = (struct ocfs2_xattr_value_root *)
1569 (val + OCFS2_XATTR_SIZE(name_len));
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001570
1571 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1572 /*
1573 * If new value need set outside also,
1574 * first truncate old value to new value,
1575 * then set new value with set_value_outside().
1576 */
1577 ret = ocfs2_xattr_value_truncate(inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001578 &vb,
Tao Ma78f30c32008-11-12 08:27:00 +08001579 xi->value_len,
1580 ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001581 if (ret < 0) {
1582 mlog_errno(ret);
1583 goto out;
1584 }
1585
Tao Ma85db90e2008-11-12 08:27:01 +08001586 ret = ocfs2_xattr_update_entry(inode,
1587 handle,
1588 xi,
1589 xs,
Joel Becker0c748e92008-12-09 15:46:15 -08001590 &vb,
Tao Ma85db90e2008-11-12 08:27:01 +08001591 offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001592 if (ret < 0) {
1593 mlog_errno(ret);
1594 goto out;
1595 }
1596
Tao Ma85db90e2008-11-12 08:27:01 +08001597 ret = __ocfs2_xattr_set_value_outside(inode,
1598 handle,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001599 vb.vb_xv,
Tao Ma85db90e2008-11-12 08:27:01 +08001600 xi->value,
1601 xi->value_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001602 if (ret < 0)
1603 mlog_errno(ret);
1604 goto out;
1605 } else {
1606 /*
1607 * If new value need set in local,
1608 * just trucate old value to zero.
1609 */
1610 ret = ocfs2_xattr_value_truncate(inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001611 &vb,
Tao Ma85db90e2008-11-12 08:27:01 +08001612 0,
1613 ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001614 if (ret < 0)
1615 mlog_errno(ret);
1616 }
1617 }
1618 }
1619
Joel Becker512620f2008-12-09 15:58:35 -08001620 ret = ocfs2_journal_access_di(handle, inode, xs->inode_bh,
1621 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001622 if (ret) {
1623 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001624 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001625 }
1626
1627 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
Joel Becker512620f2008-12-09 15:58:35 -08001628 ret = vb.vb_access(handle, inode, vb.vb_bh,
1629 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001630 if (ret) {
1631 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001632 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001633 }
1634 }
1635
1636 /*
1637 * Set value in local, include set tree root in local.
1638 * This is the first step for value size >INLINE_SIZE.
1639 */
1640 ocfs2_xattr_set_entry_local(inode, &xi_l, xs, last, min_offs);
1641
1642 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1643 ret = ocfs2_journal_dirty(handle, xs->xattr_bh);
1644 if (ret < 0) {
1645 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001646 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001647 }
1648 }
1649
1650 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) &&
1651 (flag & OCFS2_INLINE_XATTR_FL)) {
1652 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1653 unsigned int xattrsize = osb->s_xattr_inline_size;
1654
1655 /*
1656 * Adjust extent record count or inline data size
1657 * to reserve space for extended attribute.
1658 */
1659 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1660 struct ocfs2_inline_data *idata = &di->id2.i_data;
1661 le16_add_cpu(&idata->id_count, -xattrsize);
1662 } else if (!(ocfs2_inode_is_fast_symlink(inode))) {
1663 struct ocfs2_extent_list *el = &di->id2.i_list;
1664 le16_add_cpu(&el->l_count, -(xattrsize /
1665 sizeof(struct ocfs2_extent_rec)));
1666 }
1667 di->i_xattr_inline_size = cpu_to_le16(xattrsize);
1668 }
1669 /* Update xattr flag */
1670 spin_lock(&oi->ip_lock);
1671 oi->ip_dyn_features |= flag;
1672 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1673 spin_unlock(&oi->ip_lock);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001674
1675 ret = ocfs2_journal_dirty(handle, xs->inode_bh);
1676 if (ret < 0)
1677 mlog_errno(ret);
1678
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001679 if (!ret && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1680 /*
1681 * Set value outside in B tree.
1682 * This is the second step for value size > INLINE_SIZE.
1683 */
1684 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
Joel Becker512620f2008-12-09 15:58:35 -08001685 ret = ocfs2_xattr_set_value_outside(inode, xi, xs, ctxt,
1686 &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001687 if (ret < 0) {
1688 int ret2;
1689
1690 mlog_errno(ret);
1691 /*
1692 * If set value outside failed, we have to clean
1693 * the junk tree root we have already set in local.
1694 */
Tao Ma85db90e2008-11-12 08:27:01 +08001695 ret2 = ocfs2_xattr_cleanup(inode, ctxt->handle,
Joel Becker512620f2008-12-09 15:58:35 -08001696 xi, xs, &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001697 if (ret2 < 0)
1698 mlog_errno(ret2);
1699 }
1700 }
1701out:
1702 return ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001703}
1704
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001705static int ocfs2_remove_value_outside(struct inode*inode,
Joel Becker43119012008-12-09 16:24:43 -08001706 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001707 struct ocfs2_xattr_header *header)
1708{
1709 int ret = 0, i;
Tao Ma78f30c32008-11-12 08:27:00 +08001710 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1711 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
1712
1713 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001714
Jan Karaa90714c2008-10-09 19:38:40 +02001715 ctxt.handle = ocfs2_start_trans(osb,
1716 ocfs2_remove_extent_credits(osb->sb));
Tao Ma85db90e2008-11-12 08:27:01 +08001717 if (IS_ERR(ctxt.handle)) {
1718 ret = PTR_ERR(ctxt.handle);
1719 mlog_errno(ret);
1720 goto out;
1721 }
1722
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001723 for (i = 0; i < le16_to_cpu(header->xh_count); i++) {
1724 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
1725
1726 if (!ocfs2_xattr_is_local(entry)) {
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001727 void *val;
1728
1729 val = (void *)header +
1730 le16_to_cpu(entry->xe_name_offset);
Joel Becker43119012008-12-09 16:24:43 -08001731 vb->vb_xv = (struct ocfs2_xattr_value_root *)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001732 (val + OCFS2_XATTR_SIZE(entry->xe_name_len));
Joel Becker43119012008-12-09 16:24:43 -08001733 ret = ocfs2_xattr_value_truncate(inode, vb, 0, &ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001734 if (ret < 0) {
1735 mlog_errno(ret);
Tao Ma78f30c32008-11-12 08:27:00 +08001736 break;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001737 }
1738 }
1739 }
1740
Tao Ma85db90e2008-11-12 08:27:01 +08001741 ocfs2_commit_trans(osb, ctxt.handle);
Tao Ma78f30c32008-11-12 08:27:00 +08001742 ocfs2_schedule_truncate_log_flush(osb, 1);
1743 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tao Ma85db90e2008-11-12 08:27:01 +08001744out:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001745 return ret;
1746}
1747
1748static int ocfs2_xattr_ibody_remove(struct inode *inode,
1749 struct buffer_head *di_bh)
1750{
1751
1752 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1753 struct ocfs2_xattr_header *header;
1754 int ret;
Joel Becker43119012008-12-09 16:24:43 -08001755 struct ocfs2_xattr_value_buf vb = {
1756 .vb_bh = di_bh,
1757 .vb_access = ocfs2_journal_access_di,
1758 };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001759
1760 header = (struct ocfs2_xattr_header *)
1761 ((void *)di + inode->i_sb->s_blocksize -
1762 le16_to_cpu(di->i_xattr_inline_size));
1763
Joel Becker43119012008-12-09 16:24:43 -08001764 ret = ocfs2_remove_value_outside(inode, &vb, header);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001765
1766 return ret;
1767}
1768
1769static int ocfs2_xattr_block_remove(struct inode *inode,
1770 struct buffer_head *blk_bh)
1771{
1772 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001773 int ret = 0;
Joel Becker43119012008-12-09 16:24:43 -08001774 struct ocfs2_xattr_value_buf vb = {
1775 .vb_bh = blk_bh,
1776 .vb_access = ocfs2_journal_access_xb,
1777 };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001778
1779 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Maa3944252008-08-18 17:38:54 +08001780 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
1781 struct ocfs2_xattr_header *header = &(xb->xb_attrs.xb_header);
Joel Becker43119012008-12-09 16:24:43 -08001782 ret = ocfs2_remove_value_outside(inode, &vb, header);
Tao Maa3944252008-08-18 17:38:54 +08001783 } else
1784 ret = ocfs2_delete_xattr_index_block(inode, blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001785
1786 return ret;
1787}
1788
Tao Ma08413892008-08-29 09:00:19 +08001789static int ocfs2_xattr_free_block(struct inode *inode,
1790 u64 block)
1791{
1792 struct inode *xb_alloc_inode;
1793 struct buffer_head *xb_alloc_bh = NULL;
1794 struct buffer_head *blk_bh = NULL;
1795 struct ocfs2_xattr_block *xb;
1796 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1797 handle_t *handle;
1798 int ret = 0;
1799 u64 blk, bg_blkno;
1800 u16 bit;
1801
Joel Becker4ae1d692008-11-13 14:49:18 -08001802 ret = ocfs2_read_xattr_block(inode, block, &blk_bh);
Tao Ma08413892008-08-29 09:00:19 +08001803 if (ret < 0) {
1804 mlog_errno(ret);
1805 goto out;
1806 }
1807
Tao Ma08413892008-08-29 09:00:19 +08001808 ret = ocfs2_xattr_block_remove(inode, blk_bh);
1809 if (ret < 0) {
1810 mlog_errno(ret);
1811 goto out;
1812 }
1813
Joel Becker4ae1d692008-11-13 14:49:18 -08001814 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Ma08413892008-08-29 09:00:19 +08001815 blk = le64_to_cpu(xb->xb_blkno);
1816 bit = le16_to_cpu(xb->xb_suballoc_bit);
1817 bg_blkno = ocfs2_which_suballoc_group(blk, bit);
1818
1819 xb_alloc_inode = ocfs2_get_system_file_inode(osb,
1820 EXTENT_ALLOC_SYSTEM_INODE,
1821 le16_to_cpu(xb->xb_suballoc_slot));
1822 if (!xb_alloc_inode) {
1823 ret = -ENOMEM;
1824 mlog_errno(ret);
1825 goto out;
1826 }
1827 mutex_lock(&xb_alloc_inode->i_mutex);
1828
1829 ret = ocfs2_inode_lock(xb_alloc_inode, &xb_alloc_bh, 1);
1830 if (ret < 0) {
1831 mlog_errno(ret);
1832 goto out_mutex;
1833 }
1834
1835 handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE);
1836 if (IS_ERR(handle)) {
1837 ret = PTR_ERR(handle);
1838 mlog_errno(ret);
1839 goto out_unlock;
1840 }
1841
1842 ret = ocfs2_free_suballoc_bits(handle, xb_alloc_inode, xb_alloc_bh,
1843 bit, bg_blkno, 1);
1844 if (ret < 0)
1845 mlog_errno(ret);
1846
1847 ocfs2_commit_trans(osb, handle);
1848out_unlock:
1849 ocfs2_inode_unlock(xb_alloc_inode, 1);
1850 brelse(xb_alloc_bh);
1851out_mutex:
1852 mutex_unlock(&xb_alloc_inode->i_mutex);
1853 iput(xb_alloc_inode);
1854out:
1855 brelse(blk_bh);
1856 return ret;
1857}
1858
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001859/*
1860 * ocfs2_xattr_remove()
1861 *
1862 * Free extended attribute resources associated with this inode.
1863 */
1864int ocfs2_xattr_remove(struct inode *inode, struct buffer_head *di_bh)
1865{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001866 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1867 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1868 handle_t *handle;
1869 int ret;
1870
Tiger Yang8154da32008-08-18 17:11:46 +08001871 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1872 return 0;
1873
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001874 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1875 return 0;
1876
1877 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
1878 ret = ocfs2_xattr_ibody_remove(inode, di_bh);
1879 if (ret < 0) {
1880 mlog_errno(ret);
1881 goto out;
1882 }
1883 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001884
Tao Ma08413892008-08-29 09:00:19 +08001885 if (di->i_xattr_loc) {
1886 ret = ocfs2_xattr_free_block(inode,
1887 le64_to_cpu(di->i_xattr_loc));
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001888 if (ret < 0) {
1889 mlog_errno(ret);
1890 goto out;
1891 }
1892 }
1893
1894 handle = ocfs2_start_trans((OCFS2_SB(inode->i_sb)),
1895 OCFS2_INODE_UPDATE_CREDITS);
1896 if (IS_ERR(handle)) {
1897 ret = PTR_ERR(handle);
1898 mlog_errno(ret);
1899 goto out;
1900 }
Joel Becker84008972008-12-09 16:11:49 -08001901 ret = ocfs2_journal_access_di(handle, inode, di_bh,
1902 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001903 if (ret) {
1904 mlog_errno(ret);
1905 goto out_commit;
1906 }
1907
Tao Ma08413892008-08-29 09:00:19 +08001908 di->i_xattr_loc = 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001909
1910 spin_lock(&oi->ip_lock);
1911 oi->ip_dyn_features &= ~(OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL);
1912 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1913 spin_unlock(&oi->ip_lock);
1914
1915 ret = ocfs2_journal_dirty(handle, di_bh);
1916 if (ret < 0)
1917 mlog_errno(ret);
1918out_commit:
1919 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
1920out:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001921 return ret;
1922}
1923
1924static int ocfs2_xattr_has_space_inline(struct inode *inode,
1925 struct ocfs2_dinode *di)
1926{
1927 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1928 unsigned int xattrsize = OCFS2_SB(inode->i_sb)->s_xattr_inline_size;
1929 int free;
1930
1931 if (xattrsize < OCFS2_MIN_XATTR_INLINE_SIZE)
1932 return 0;
1933
1934 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1935 struct ocfs2_inline_data *idata = &di->id2.i_data;
1936 free = le16_to_cpu(idata->id_count) - le64_to_cpu(di->i_size);
1937 } else if (ocfs2_inode_is_fast_symlink(inode)) {
1938 free = ocfs2_fast_symlink_chars(inode->i_sb) -
1939 le64_to_cpu(di->i_size);
1940 } else {
1941 struct ocfs2_extent_list *el = &di->id2.i_list;
1942 free = (le16_to_cpu(el->l_count) -
1943 le16_to_cpu(el->l_next_free_rec)) *
1944 sizeof(struct ocfs2_extent_rec);
1945 }
1946 if (free >= xattrsize)
1947 return 1;
1948
1949 return 0;
1950}
1951
1952/*
1953 * ocfs2_xattr_ibody_find()
1954 *
1955 * Find extended attribute in inode block and
1956 * fill search info into struct ocfs2_xattr_search.
1957 */
1958static int ocfs2_xattr_ibody_find(struct inode *inode,
1959 int name_index,
1960 const char *name,
1961 struct ocfs2_xattr_search *xs)
1962{
1963 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1964 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1965 int ret;
1966 int has_space = 0;
1967
1968 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
1969 return 0;
1970
1971 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
1972 down_read(&oi->ip_alloc_sem);
1973 has_space = ocfs2_xattr_has_space_inline(inode, di);
1974 up_read(&oi->ip_alloc_sem);
1975 if (!has_space)
1976 return 0;
1977 }
1978
1979 xs->xattr_bh = xs->inode_bh;
1980 xs->end = (void *)di + inode->i_sb->s_blocksize;
1981 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)
1982 xs->header = (struct ocfs2_xattr_header *)
1983 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
1984 else
1985 xs->header = (struct ocfs2_xattr_header *)
1986 (xs->end - OCFS2_SB(inode->i_sb)->s_xattr_inline_size);
1987 xs->base = (void *)xs->header;
1988 xs->here = xs->header->xh_entries;
1989
1990 /* Find the named attribute. */
1991 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
1992 ret = ocfs2_xattr_find_entry(name_index, name, xs);
1993 if (ret && ret != -ENODATA)
1994 return ret;
1995 xs->not_found = ret;
1996 }
1997
1998 return 0;
1999}
2000
2001/*
2002 * ocfs2_xattr_ibody_set()
2003 *
2004 * Set, replace or remove an extended attribute into inode block.
2005 *
2006 */
2007static int ocfs2_xattr_ibody_set(struct inode *inode,
2008 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08002009 struct ocfs2_xattr_search *xs,
2010 struct ocfs2_xattr_set_ctxt *ctxt)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002011{
2012 struct ocfs2_inode_info *oi = OCFS2_I(inode);
2013 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2014 int ret;
2015
2016 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
2017 return -ENOSPC;
2018
2019 down_write(&oi->ip_alloc_sem);
2020 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
2021 if (!ocfs2_xattr_has_space_inline(inode, di)) {
2022 ret = -ENOSPC;
2023 goto out;
2024 }
2025 }
2026
Tao Ma78f30c32008-11-12 08:27:00 +08002027 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002028 (OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL));
2029out:
2030 up_write(&oi->ip_alloc_sem);
2031
2032 return ret;
2033}
2034
2035/*
2036 * ocfs2_xattr_block_find()
2037 *
2038 * Find extended attribute in external block and
2039 * fill search info into struct ocfs2_xattr_search.
2040 */
2041static int ocfs2_xattr_block_find(struct inode *inode,
2042 int name_index,
2043 const char *name,
2044 struct ocfs2_xattr_search *xs)
2045{
2046 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2047 struct buffer_head *blk_bh = NULL;
Tao Ma589dc262008-08-18 17:38:51 +08002048 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002049 int ret = 0;
2050
2051 if (!di->i_xattr_loc)
2052 return ret;
2053
Joel Becker4ae1d692008-11-13 14:49:18 -08002054 ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
2055 &blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002056 if (ret < 0) {
2057 mlog_errno(ret);
2058 return ret;
2059 }
Joel Beckerf6087fb2008-10-20 18:20:43 -07002060
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002061 xs->xattr_bh = blk_bh;
Joel Becker4ae1d692008-11-13 14:49:18 -08002062 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002063
Tao Ma589dc262008-08-18 17:38:51 +08002064 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
2065 xs->header = &xb->xb_attrs.xb_header;
2066 xs->base = (void *)xs->header;
2067 xs->end = (void *)(blk_bh->b_data) + blk_bh->b_size;
2068 xs->here = xs->header->xh_entries;
2069
2070 ret = ocfs2_xattr_find_entry(name_index, name, xs);
2071 } else
2072 ret = ocfs2_xattr_index_block_find(inode, blk_bh,
2073 name_index,
2074 name, xs);
2075
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002076 if (ret && ret != -ENODATA) {
2077 xs->xattr_bh = NULL;
2078 goto cleanup;
2079 }
2080 xs->not_found = ret;
2081 return 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002082cleanup:
2083 brelse(blk_bh);
2084
2085 return ret;
2086}
2087
2088/*
2089 * ocfs2_xattr_block_set()
2090 *
2091 * Set, replace or remove an extended attribute into external block.
2092 *
2093 */
2094static int ocfs2_xattr_block_set(struct inode *inode,
2095 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08002096 struct ocfs2_xattr_search *xs,
2097 struct ocfs2_xattr_set_ctxt *ctxt)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002098{
2099 struct buffer_head *new_bh = NULL;
2100 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2101 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
Tao Ma85db90e2008-11-12 08:27:01 +08002102 handle_t *handle = ctxt->handle;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002103 struct ocfs2_xattr_block *xblk = NULL;
2104 u16 suballoc_bit_start;
2105 u32 num_got;
2106 u64 first_blkno;
2107 int ret;
2108
2109 if (!xs->xattr_bh) {
Joel Becker84008972008-12-09 16:11:49 -08002110 ret = ocfs2_journal_access_di(handle, inode, xs->inode_bh,
2111 OCFS2_JOURNAL_ACCESS_CREATE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002112 if (ret < 0) {
2113 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002114 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002115 }
2116
Tao Ma78f30c32008-11-12 08:27:00 +08002117 ret = ocfs2_claim_metadata(osb, handle, ctxt->meta_ac, 1,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002118 &suballoc_bit_start, &num_got,
2119 &first_blkno);
2120 if (ret < 0) {
2121 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002122 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002123 }
2124
2125 new_bh = sb_getblk(inode->i_sb, first_blkno);
Joel Becker8cb471e2009-02-10 20:00:41 -08002126 ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), new_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002127
Joel Becker84008972008-12-09 16:11:49 -08002128 ret = ocfs2_journal_access_xb(handle, inode, new_bh,
2129 OCFS2_JOURNAL_ACCESS_CREATE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002130 if (ret < 0) {
2131 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002132 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002133 }
2134
2135 /* Initialize ocfs2_xattr_block */
2136 xs->xattr_bh = new_bh;
2137 xblk = (struct ocfs2_xattr_block *)new_bh->b_data;
2138 memset(xblk, 0, inode->i_sb->s_blocksize);
2139 strcpy((void *)xblk, OCFS2_XATTR_BLOCK_SIGNATURE);
2140 xblk->xb_suballoc_slot = cpu_to_le16(osb->slot_num);
2141 xblk->xb_suballoc_bit = cpu_to_le16(suballoc_bit_start);
2142 xblk->xb_fs_generation = cpu_to_le32(osb->fs_generation);
2143 xblk->xb_blkno = cpu_to_le64(first_blkno);
2144
2145 xs->header = &xblk->xb_attrs.xb_header;
2146 xs->base = (void *)xs->header;
2147 xs->end = (void *)xblk + inode->i_sb->s_blocksize;
2148 xs->here = xs->header->xh_entries;
2149
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002150 ret = ocfs2_journal_dirty(handle, new_bh);
2151 if (ret < 0) {
2152 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002153 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002154 }
2155 di->i_xattr_loc = cpu_to_le64(first_blkno);
Tao Ma85db90e2008-11-12 08:27:01 +08002156 ocfs2_journal_dirty(handle, xs->inode_bh);
Tao Ma01225592008-08-18 17:38:53 +08002157 } else
2158 xblk = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
2159
2160 if (!(le16_to_cpu(xblk->xb_flags) & OCFS2_XATTR_INDEXED)) {
2161 /* Set extended attribute into external block */
Tao Ma78f30c32008-11-12 08:27:00 +08002162 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
2163 OCFS2_HAS_XATTR_FL);
Tao Ma01225592008-08-18 17:38:53 +08002164 if (!ret || ret != -ENOSPC)
2165 goto end;
2166
Tao Ma78f30c32008-11-12 08:27:00 +08002167 ret = ocfs2_xattr_create_index_block(inode, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08002168 if (ret)
2169 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002170 }
2171
Tao Ma78f30c32008-11-12 08:27:00 +08002172 ret = ocfs2_xattr_set_entry_index_block(inode, xi, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08002173
2174end:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002175
2176 return ret;
2177}
2178
Tao Ma78f30c32008-11-12 08:27:00 +08002179/* Check whether the new xattr can be inserted into the inode. */
2180static int ocfs2_xattr_can_be_in_inode(struct inode *inode,
2181 struct ocfs2_xattr_info *xi,
2182 struct ocfs2_xattr_search *xs)
2183{
2184 u64 value_size;
2185 struct ocfs2_xattr_entry *last;
2186 int free, i;
2187 size_t min_offs = xs->end - xs->base;
2188
2189 if (!xs->header)
2190 return 0;
2191
2192 last = xs->header->xh_entries;
2193
2194 for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
2195 size_t offs = le16_to_cpu(last->xe_name_offset);
2196 if (offs < min_offs)
2197 min_offs = offs;
2198 last += 1;
2199 }
2200
Tiger Yang4442f512009-02-20 11:11:50 +08002201 free = min_offs - ((void *)last - xs->base) - OCFS2_XATTR_HEADER_GAP;
Tao Ma78f30c32008-11-12 08:27:00 +08002202 if (free < 0)
2203 return 0;
2204
2205 BUG_ON(!xs->not_found);
2206
2207 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
2208 value_size = OCFS2_XATTR_ROOT_SIZE;
2209 else
2210 value_size = OCFS2_XATTR_SIZE(xi->value_len);
2211
2212 if (free >= sizeof(struct ocfs2_xattr_entry) +
2213 OCFS2_XATTR_SIZE(strlen(xi->name)) + value_size)
2214 return 1;
2215
2216 return 0;
2217}
2218
2219static int ocfs2_calc_xattr_set_need(struct inode *inode,
2220 struct ocfs2_dinode *di,
2221 struct ocfs2_xattr_info *xi,
2222 struct ocfs2_xattr_search *xis,
2223 struct ocfs2_xattr_search *xbs,
2224 int *clusters_need,
Tao Ma85db90e2008-11-12 08:27:01 +08002225 int *meta_need,
2226 int *credits_need)
Tao Ma78f30c32008-11-12 08:27:00 +08002227{
2228 int ret = 0, old_in_xb = 0;
Tao Ma85db90e2008-11-12 08:27:01 +08002229 int clusters_add = 0, meta_add = 0, credits = 0;
Tao Ma78f30c32008-11-12 08:27:00 +08002230 struct buffer_head *bh = NULL;
2231 struct ocfs2_xattr_block *xb = NULL;
2232 struct ocfs2_xattr_entry *xe = NULL;
2233 struct ocfs2_xattr_value_root *xv = NULL;
2234 char *base = NULL;
2235 int name_offset, name_len = 0;
2236 u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2237 xi->value_len);
2238 u64 value_size;
2239
Tao Ma71d548a2008-12-05 06:20:54 +08002240 /*
2241 * Calculate the clusters we need to write.
2242 * No matter whether we replace an old one or add a new one,
2243 * we need this for writing.
2244 */
2245 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
2246 credits += new_clusters *
2247 ocfs2_clusters_to_blocks(inode->i_sb, 1);
2248
Tao Ma78f30c32008-11-12 08:27:00 +08002249 if (xis->not_found && xbs->not_found) {
Tao Ma85db90e2008-11-12 08:27:01 +08002250 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2251
2252 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
Tao Ma78f30c32008-11-12 08:27:00 +08002253 clusters_add += new_clusters;
Tao Ma85db90e2008-11-12 08:27:01 +08002254 credits += ocfs2_calc_extend_credits(inode->i_sb,
2255 &def_xv.xv.xr_list,
2256 new_clusters);
2257 }
Tao Ma78f30c32008-11-12 08:27:00 +08002258
2259 goto meta_guess;
2260 }
2261
2262 if (!xis->not_found) {
2263 xe = xis->here;
2264 name_offset = le16_to_cpu(xe->xe_name_offset);
2265 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2266 base = xis->base;
Tao Ma85db90e2008-11-12 08:27:01 +08002267 credits += OCFS2_INODE_UPDATE_CREDITS;
Tao Ma78f30c32008-11-12 08:27:00 +08002268 } else {
Joel Becker970e4932008-11-13 14:49:19 -08002269 int i, block_off = 0;
Tao Ma78f30c32008-11-12 08:27:00 +08002270 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2271 xe = xbs->here;
2272 name_offset = le16_to_cpu(xe->xe_name_offset);
2273 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2274 i = xbs->here - xbs->header->xh_entries;
2275 old_in_xb = 1;
2276
2277 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
2278 ret = ocfs2_xattr_bucket_get_name_value(inode,
2279 bucket_xh(xbs->bucket),
2280 i, &block_off,
2281 &name_offset);
2282 base = bucket_block(xbs->bucket, block_off);
Tao Ma85db90e2008-11-12 08:27:01 +08002283 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2284 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002285 base = xbs->base;
Tao Ma85db90e2008-11-12 08:27:01 +08002286 credits += OCFS2_XATTR_BLOCK_UPDATE_CREDITS;
2287 }
2288 }
2289
2290 /*
2291 * delete a xattr doesn't need metadata and cluster allocation.
2292 * so just calculate the credits and return.
2293 *
2294 * The credits for removing the value tree will be extended
2295 * by ocfs2_remove_extent itself.
2296 */
2297 if (!xi->value) {
2298 if (!ocfs2_xattr_is_local(xe))
Jan Karaa90714c2008-10-09 19:38:40 +02002299 credits += ocfs2_remove_extent_credits(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08002300
2301 goto out;
Tao Ma78f30c32008-11-12 08:27:00 +08002302 }
2303
2304 /* do cluster allocation guess first. */
2305 value_size = le64_to_cpu(xe->xe_value_size);
2306
2307 if (old_in_xb) {
2308 /*
2309 * In xattr set, we always try to set the xe in inode first,
2310 * so if it can be inserted into inode successfully, the old
2311 * one will be removed from the xattr block, and this xattr
2312 * will be inserted into inode as a new xattr in inode.
2313 */
2314 if (ocfs2_xattr_can_be_in_inode(inode, xi, xis)) {
2315 clusters_add += new_clusters;
Jan Karaa90714c2008-10-09 19:38:40 +02002316 credits += ocfs2_remove_extent_credits(inode->i_sb) +
Tao Ma85db90e2008-11-12 08:27:01 +08002317 OCFS2_INODE_UPDATE_CREDITS;
2318 if (!ocfs2_xattr_is_local(xe))
2319 credits += ocfs2_calc_extend_credits(
2320 inode->i_sb,
2321 &def_xv.xv.xr_list,
2322 new_clusters);
Tao Ma78f30c32008-11-12 08:27:00 +08002323 goto out;
2324 }
2325 }
2326
2327 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
2328 /* the new values will be stored outside. */
2329 u32 old_clusters = 0;
2330
2331 if (!ocfs2_xattr_is_local(xe)) {
2332 old_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2333 value_size);
2334 xv = (struct ocfs2_xattr_value_root *)
2335 (base + name_offset + name_len);
Tao Ma97aff522008-11-19 16:48:41 +08002336 value_size = OCFS2_XATTR_ROOT_SIZE;
Tao Ma78f30c32008-11-12 08:27:00 +08002337 } else
2338 xv = &def_xv.xv;
2339
Tao Ma85db90e2008-11-12 08:27:01 +08002340 if (old_clusters >= new_clusters) {
Jan Karaa90714c2008-10-09 19:38:40 +02002341 credits += ocfs2_remove_extent_credits(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002342 goto out;
Tao Ma85db90e2008-11-12 08:27:01 +08002343 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002344 meta_add += ocfs2_extend_meta_needed(&xv->xr_list);
2345 clusters_add += new_clusters - old_clusters;
Tao Ma85db90e2008-11-12 08:27:01 +08002346 credits += ocfs2_calc_extend_credits(inode->i_sb,
2347 &xv->xr_list,
2348 new_clusters -
2349 old_clusters);
Tao Ma97aff522008-11-19 16:48:41 +08002350 if (value_size >= OCFS2_XATTR_ROOT_SIZE)
2351 goto out;
Tao Ma78f30c32008-11-12 08:27:00 +08002352 }
2353 } else {
2354 /*
2355 * Now the new value will be stored inside. So if the new
2356 * value is smaller than the size of value root or the old
2357 * value, we don't need any allocation, otherwise we have
2358 * to guess metadata allocation.
2359 */
2360 if ((ocfs2_xattr_is_local(xe) && value_size >= xi->value_len) ||
2361 (!ocfs2_xattr_is_local(xe) &&
2362 OCFS2_XATTR_ROOT_SIZE >= xi->value_len))
2363 goto out;
2364 }
2365
2366meta_guess:
2367 /* calculate metadata allocation. */
2368 if (di->i_xattr_loc) {
2369 if (!xbs->xattr_bh) {
Joel Becker4ae1d692008-11-13 14:49:18 -08002370 ret = ocfs2_read_xattr_block(inode,
2371 le64_to_cpu(di->i_xattr_loc),
2372 &bh);
Tao Ma78f30c32008-11-12 08:27:00 +08002373 if (ret) {
2374 mlog_errno(ret);
2375 goto out;
2376 }
2377
2378 xb = (struct ocfs2_xattr_block *)bh->b_data;
2379 } else
2380 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2381
Tao Ma90cb5462008-12-05 06:20:56 +08002382 /*
2383 * If there is already an xattr tree, good, we can calculate
2384 * like other b-trees. Otherwise we may have the chance of
2385 * create a tree, the credit calculation is borrowed from
2386 * ocfs2_calc_extend_credits with root_el = NULL. And the
2387 * new tree will be cluster based, so no meta is needed.
2388 */
Tao Ma78f30c32008-11-12 08:27:00 +08002389 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
2390 struct ocfs2_extent_list *el =
2391 &xb->xb_attrs.xb_root.xt_list;
2392 meta_add += ocfs2_extend_meta_needed(el);
Tao Ma85db90e2008-11-12 08:27:01 +08002393 credits += ocfs2_calc_extend_credits(inode->i_sb,
2394 el, 1);
Tao Ma90cb5462008-12-05 06:20:56 +08002395 } else
2396 credits += OCFS2_SUBALLOC_ALLOC + 1;
Tao Ma78f30c32008-11-12 08:27:00 +08002397
2398 /*
2399 * This cluster will be used either for new bucket or for
2400 * new xattr block.
2401 * If the cluster size is the same as the bucket size, one
2402 * more is needed since we may need to extend the bucket
2403 * also.
2404 */
2405 clusters_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002406 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002407 if (OCFS2_XATTR_BUCKET_SIZE ==
Tao Ma85db90e2008-11-12 08:27:01 +08002408 OCFS2_SB(inode->i_sb)->s_clustersize) {
2409 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002410 clusters_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002411 }
2412 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002413 meta_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002414 credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
2415 }
Tao Ma78f30c32008-11-12 08:27:00 +08002416out:
2417 if (clusters_need)
2418 *clusters_need = clusters_add;
2419 if (meta_need)
2420 *meta_need = meta_add;
Tao Ma85db90e2008-11-12 08:27:01 +08002421 if (credits_need)
2422 *credits_need = credits;
Tao Ma78f30c32008-11-12 08:27:00 +08002423 brelse(bh);
2424 return ret;
2425}
2426
2427static int ocfs2_init_xattr_set_ctxt(struct inode *inode,
2428 struct ocfs2_dinode *di,
2429 struct ocfs2_xattr_info *xi,
2430 struct ocfs2_xattr_search *xis,
2431 struct ocfs2_xattr_search *xbs,
Tao Ma85db90e2008-11-12 08:27:01 +08002432 struct ocfs2_xattr_set_ctxt *ctxt,
2433 int *credits)
Tao Ma78f30c32008-11-12 08:27:00 +08002434{
2435 int clusters_add, meta_add, ret;
2436 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2437
2438 memset(ctxt, 0, sizeof(struct ocfs2_xattr_set_ctxt));
2439
2440 ocfs2_init_dealloc_ctxt(&ctxt->dealloc);
2441
2442 ret = ocfs2_calc_xattr_set_need(inode, di, xi, xis, xbs,
Tao Ma85db90e2008-11-12 08:27:01 +08002443 &clusters_add, &meta_add, credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002444 if (ret) {
2445 mlog_errno(ret);
2446 return ret;
2447 }
2448
Tao Ma85db90e2008-11-12 08:27:01 +08002449 mlog(0, "Set xattr %s, reserve meta blocks = %d, clusters = %d, "
2450 "credits = %d\n", xi->name, meta_add, clusters_add, *credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002451
2452 if (meta_add) {
2453 ret = ocfs2_reserve_new_metadata_blocks(osb, meta_add,
2454 &ctxt->meta_ac);
2455 if (ret) {
2456 mlog_errno(ret);
2457 goto out;
2458 }
2459 }
2460
2461 if (clusters_add) {
2462 ret = ocfs2_reserve_clusters(osb, clusters_add, &ctxt->data_ac);
2463 if (ret)
2464 mlog_errno(ret);
2465 }
2466out:
2467 if (ret) {
2468 if (ctxt->meta_ac) {
2469 ocfs2_free_alloc_context(ctxt->meta_ac);
2470 ctxt->meta_ac = NULL;
2471 }
2472
2473 /*
2474 * We cannot have an error and a non null ctxt->data_ac.
2475 */
2476 }
2477
2478 return ret;
2479}
2480
Tao Ma85db90e2008-11-12 08:27:01 +08002481static int __ocfs2_xattr_set_handle(struct inode *inode,
2482 struct ocfs2_dinode *di,
2483 struct ocfs2_xattr_info *xi,
2484 struct ocfs2_xattr_search *xis,
2485 struct ocfs2_xattr_search *xbs,
2486 struct ocfs2_xattr_set_ctxt *ctxt)
2487{
Tao Ma9f868f12008-11-19 16:48:42 +08002488 int ret = 0, credits, old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002489
2490 if (!xi->value) {
2491 /* Remove existing extended attribute */
2492 if (!xis->not_found)
2493 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2494 else if (!xbs->not_found)
2495 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2496 } else {
2497 /* We always try to set extended attribute into inode first*/
2498 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2499 if (!ret && !xbs->not_found) {
2500 /*
2501 * If succeed and that extended attribute existing in
2502 * external block, then we will remove it.
2503 */
2504 xi->value = NULL;
2505 xi->value_len = 0;
2506
Tao Ma9f868f12008-11-19 16:48:42 +08002507 old_found = xis->not_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002508 xis->not_found = -ENODATA;
2509 ret = ocfs2_calc_xattr_set_need(inode,
2510 di,
2511 xi,
2512 xis,
2513 xbs,
2514 NULL,
2515 NULL,
2516 &credits);
Tao Ma9f868f12008-11-19 16:48:42 +08002517 xis->not_found = old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002518 if (ret) {
2519 mlog_errno(ret);
2520 goto out;
2521 }
2522
2523 ret = ocfs2_extend_trans(ctxt->handle, credits +
2524 ctxt->handle->h_buffer_credits);
2525 if (ret) {
2526 mlog_errno(ret);
2527 goto out;
2528 }
2529 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2530 } else if (ret == -ENOSPC) {
2531 if (di->i_xattr_loc && !xbs->xattr_bh) {
2532 ret = ocfs2_xattr_block_find(inode,
2533 xi->name_index,
2534 xi->name, xbs);
2535 if (ret)
2536 goto out;
2537
Tao Ma9f868f12008-11-19 16:48:42 +08002538 old_found = xis->not_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002539 xis->not_found = -ENODATA;
2540 ret = ocfs2_calc_xattr_set_need(inode,
2541 di,
2542 xi,
2543 xis,
2544 xbs,
2545 NULL,
2546 NULL,
2547 &credits);
Tao Ma9f868f12008-11-19 16:48:42 +08002548 xis->not_found = old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002549 if (ret) {
2550 mlog_errno(ret);
2551 goto out;
2552 }
2553
2554 ret = ocfs2_extend_trans(ctxt->handle, credits +
2555 ctxt->handle->h_buffer_credits);
2556 if (ret) {
2557 mlog_errno(ret);
2558 goto out;
2559 }
2560 }
2561 /*
2562 * If no space in inode, we will set extended attribute
2563 * into external block.
2564 */
2565 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2566 if (ret)
2567 goto out;
2568 if (!xis->not_found) {
2569 /*
2570 * If succeed and that extended attribute
2571 * existing in inode, we will remove it.
2572 */
2573 xi->value = NULL;
2574 xi->value_len = 0;
2575 xbs->not_found = -ENODATA;
2576 ret = ocfs2_calc_xattr_set_need(inode,
2577 di,
2578 xi,
2579 xis,
2580 xbs,
2581 NULL,
2582 NULL,
2583 &credits);
2584 if (ret) {
2585 mlog_errno(ret);
2586 goto out;
2587 }
2588
2589 ret = ocfs2_extend_trans(ctxt->handle, credits +
2590 ctxt->handle->h_buffer_credits);
2591 if (ret) {
2592 mlog_errno(ret);
2593 goto out;
2594 }
2595 ret = ocfs2_xattr_ibody_set(inode, xi,
2596 xis, ctxt);
2597 }
2598 }
2599 }
2600
Tao Ma4b3f6202008-12-05 06:20:55 +08002601 if (!ret) {
2602 /* Update inode ctime. */
Tao Ma89a907a2009-02-17 04:39:28 +08002603 ret = ocfs2_journal_access_di(ctxt->handle, inode,
2604 xis->inode_bh,
2605 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma4b3f6202008-12-05 06:20:55 +08002606 if (ret) {
2607 mlog_errno(ret);
2608 goto out;
2609 }
2610
2611 inode->i_ctime = CURRENT_TIME;
2612 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
2613 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
2614 ocfs2_journal_dirty(ctxt->handle, xis->inode_bh);
2615 }
Tao Ma85db90e2008-11-12 08:27:01 +08002616out:
2617 return ret;
2618}
2619
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002620/*
Tiger Yang6c3faba2008-11-14 11:16:03 +08002621 * This function only called duing creating inode
2622 * for init security/acl xattrs of the new inode.
Tiger Yang008aafa2008-12-09 16:43:08 +08002623 * All transanction credits have been reserved in mknod.
Tiger Yang6c3faba2008-11-14 11:16:03 +08002624 */
2625int ocfs2_xattr_set_handle(handle_t *handle,
2626 struct inode *inode,
2627 struct buffer_head *di_bh,
2628 int name_index,
2629 const char *name,
2630 const void *value,
2631 size_t value_len,
2632 int flags,
2633 struct ocfs2_alloc_context *meta_ac,
2634 struct ocfs2_alloc_context *data_ac)
2635{
2636 struct ocfs2_dinode *di;
2637 int ret;
2638
2639 struct ocfs2_xattr_info xi = {
2640 .name_index = name_index,
2641 .name = name,
2642 .value = value,
2643 .value_len = value_len,
2644 };
2645
2646 struct ocfs2_xattr_search xis = {
2647 .not_found = -ENODATA,
2648 };
2649
2650 struct ocfs2_xattr_search xbs = {
2651 .not_found = -ENODATA,
2652 };
2653
2654 struct ocfs2_xattr_set_ctxt ctxt = {
2655 .handle = handle,
2656 .meta_ac = meta_ac,
2657 .data_ac = data_ac,
2658 };
2659
2660 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2661 return -EOPNOTSUPP;
2662
Tiger Yang008aafa2008-12-09 16:43:08 +08002663 /*
2664 * In extreme situation, may need xattr bucket when
2665 * block size is too small. And we have already reserved
2666 * the credits for bucket in mknod.
2667 */
2668 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE) {
2669 xbs.bucket = ocfs2_xattr_bucket_new(inode);
2670 if (!xbs.bucket) {
2671 mlog_errno(-ENOMEM);
2672 return -ENOMEM;
2673 }
2674 }
2675
Tiger Yang6c3faba2008-11-14 11:16:03 +08002676 xis.inode_bh = xbs.inode_bh = di_bh;
2677 di = (struct ocfs2_dinode *)di_bh->b_data;
2678
2679 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2680
2681 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2682 if (ret)
2683 goto cleanup;
2684 if (xis.not_found) {
2685 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2686 if (ret)
2687 goto cleanup;
2688 }
2689
2690 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2691
2692cleanup:
2693 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2694 brelse(xbs.xattr_bh);
Tiger Yang008aafa2008-12-09 16:43:08 +08002695 ocfs2_xattr_bucket_free(xbs.bucket);
Tiger Yang6c3faba2008-11-14 11:16:03 +08002696
2697 return ret;
2698}
2699
2700/*
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002701 * ocfs2_xattr_set()
2702 *
2703 * Set, replace or remove an extended attribute for this inode.
2704 * value is NULL to remove an existing extended attribute, else either
2705 * create or replace an extended attribute.
2706 */
2707int ocfs2_xattr_set(struct inode *inode,
2708 int name_index,
2709 const char *name,
2710 const void *value,
2711 size_t value_len,
2712 int flags)
2713{
2714 struct buffer_head *di_bh = NULL;
2715 struct ocfs2_dinode *di;
Tao Ma85db90e2008-11-12 08:27:01 +08002716 int ret, credits;
Tao Ma78f30c32008-11-12 08:27:00 +08002717 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08002718 struct inode *tl_inode = osb->osb_tl_inode;
Tao Ma78f30c32008-11-12 08:27:00 +08002719 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002720
2721 struct ocfs2_xattr_info xi = {
2722 .name_index = name_index,
2723 .name = name,
2724 .value = value,
2725 .value_len = value_len,
2726 };
2727
2728 struct ocfs2_xattr_search xis = {
2729 .not_found = -ENODATA,
2730 };
2731
2732 struct ocfs2_xattr_search xbs = {
2733 .not_found = -ENODATA,
2734 };
2735
Tiger Yang8154da32008-08-18 17:11:46 +08002736 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2737 return -EOPNOTSUPP;
2738
Joel Beckerba937122008-10-24 19:13:20 -07002739 /*
2740 * Only xbs will be used on indexed trees. xis doesn't need a
2741 * bucket.
2742 */
2743 xbs.bucket = ocfs2_xattr_bucket_new(inode);
2744 if (!xbs.bucket) {
2745 mlog_errno(-ENOMEM);
2746 return -ENOMEM;
2747 }
2748
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002749 ret = ocfs2_inode_lock(inode, &di_bh, 1);
2750 if (ret < 0) {
2751 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07002752 goto cleanup_nolock;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002753 }
2754 xis.inode_bh = xbs.inode_bh = di_bh;
2755 di = (struct ocfs2_dinode *)di_bh->b_data;
2756
2757 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2758 /*
2759 * Scan inode and external block to find the same name
2760 * extended attribute and collect search infomation.
2761 */
2762 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2763 if (ret)
2764 goto cleanup;
2765 if (xis.not_found) {
2766 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2767 if (ret)
2768 goto cleanup;
2769 }
2770
2771 if (xis.not_found && xbs.not_found) {
2772 ret = -ENODATA;
2773 if (flags & XATTR_REPLACE)
2774 goto cleanup;
2775 ret = 0;
2776 if (!value)
2777 goto cleanup;
2778 } else {
2779 ret = -EEXIST;
2780 if (flags & XATTR_CREATE)
2781 goto cleanup;
2782 }
2783
Tao Ma85db90e2008-11-12 08:27:01 +08002784
2785 mutex_lock(&tl_inode->i_mutex);
2786
2787 if (ocfs2_truncate_log_needs_flush(osb)) {
2788 ret = __ocfs2_flush_truncate_log(osb);
2789 if (ret < 0) {
2790 mutex_unlock(&tl_inode->i_mutex);
2791 mlog_errno(ret);
2792 goto cleanup;
2793 }
2794 }
2795 mutex_unlock(&tl_inode->i_mutex);
2796
2797 ret = ocfs2_init_xattr_set_ctxt(inode, di, &xi, &xis,
2798 &xbs, &ctxt, &credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002799 if (ret) {
2800 mlog_errno(ret);
2801 goto cleanup;
2802 }
2803
Tao Ma4b3f6202008-12-05 06:20:55 +08002804 /* we need to update inode's ctime field, so add credit for it. */
2805 credits += OCFS2_INODE_UPDATE_CREDITS;
Tao Ma85db90e2008-11-12 08:27:01 +08002806 ctxt.handle = ocfs2_start_trans(osb, credits);
2807 if (IS_ERR(ctxt.handle)) {
2808 ret = PTR_ERR(ctxt.handle);
2809 mlog_errno(ret);
2810 goto cleanup;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002811 }
Tao Ma85db90e2008-11-12 08:27:01 +08002812
2813 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2814
2815 ocfs2_commit_trans(osb, ctxt.handle);
2816
Tao Ma78f30c32008-11-12 08:27:00 +08002817 if (ctxt.data_ac)
2818 ocfs2_free_alloc_context(ctxt.data_ac);
2819 if (ctxt.meta_ac)
2820 ocfs2_free_alloc_context(ctxt.meta_ac);
2821 if (ocfs2_dealloc_has_cluster(&ctxt.dealloc))
2822 ocfs2_schedule_truncate_log_flush(osb, 1);
2823 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002824cleanup:
2825 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2826 ocfs2_inode_unlock(inode, 1);
Joel Beckerba937122008-10-24 19:13:20 -07002827cleanup_nolock:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002828 brelse(di_bh);
2829 brelse(xbs.xattr_bh);
Joel Beckerba937122008-10-24 19:13:20 -07002830 ocfs2_xattr_bucket_free(xbs.bucket);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002831
2832 return ret;
2833}
2834
Tao Ma0c044f02008-08-18 17:38:50 +08002835/*
2836 * Find the xattr extent rec which may contains name_hash.
2837 * e_cpos will be the first name hash of the xattr rec.
2838 * el must be the ocfs2_xattr_header.xb_attrs.xb_root.xt_list.
2839 */
2840static int ocfs2_xattr_get_rec(struct inode *inode,
2841 u32 name_hash,
2842 u64 *p_blkno,
2843 u32 *e_cpos,
2844 u32 *num_clusters,
2845 struct ocfs2_extent_list *el)
2846{
2847 int ret = 0, i;
2848 struct buffer_head *eb_bh = NULL;
2849 struct ocfs2_extent_block *eb;
2850 struct ocfs2_extent_rec *rec = NULL;
2851 u64 e_blkno = 0;
2852
2853 if (el->l_tree_depth) {
2854 ret = ocfs2_find_leaf(inode, el, name_hash, &eb_bh);
2855 if (ret) {
2856 mlog_errno(ret);
2857 goto out;
2858 }
2859
2860 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2861 el = &eb->h_list;
2862
2863 if (el->l_tree_depth) {
2864 ocfs2_error(inode->i_sb,
2865 "Inode %lu has non zero tree depth in "
2866 "xattr tree block %llu\n", inode->i_ino,
2867 (unsigned long long)eb_bh->b_blocknr);
2868 ret = -EROFS;
2869 goto out;
2870 }
2871 }
2872
2873 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
2874 rec = &el->l_recs[i];
2875
2876 if (le32_to_cpu(rec->e_cpos) <= name_hash) {
2877 e_blkno = le64_to_cpu(rec->e_blkno);
2878 break;
2879 }
2880 }
2881
2882 if (!e_blkno) {
2883 ocfs2_error(inode->i_sb, "Inode %lu has bad extent "
2884 "record (%u, %u, 0) in xattr", inode->i_ino,
2885 le32_to_cpu(rec->e_cpos),
2886 ocfs2_rec_clusters(el, rec));
2887 ret = -EROFS;
2888 goto out;
2889 }
2890
2891 *p_blkno = le64_to_cpu(rec->e_blkno);
2892 *num_clusters = le16_to_cpu(rec->e_leaf_clusters);
2893 if (e_cpos)
2894 *e_cpos = le32_to_cpu(rec->e_cpos);
2895out:
2896 brelse(eb_bh);
2897 return ret;
2898}
2899
2900typedef int (xattr_bucket_func)(struct inode *inode,
2901 struct ocfs2_xattr_bucket *bucket,
2902 void *para);
2903
Tao Ma589dc262008-08-18 17:38:51 +08002904static int ocfs2_find_xe_in_bucket(struct inode *inode,
Joel Beckere2356a32008-10-27 15:01:54 -07002905 struct ocfs2_xattr_bucket *bucket,
Tao Ma589dc262008-08-18 17:38:51 +08002906 int name_index,
2907 const char *name,
2908 u32 name_hash,
2909 u16 *xe_index,
2910 int *found)
2911{
2912 int i, ret = 0, cmp = 1, block_off, new_offset;
Joel Beckere2356a32008-10-27 15:01:54 -07002913 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma589dc262008-08-18 17:38:51 +08002914 size_t name_len = strlen(name);
2915 struct ocfs2_xattr_entry *xe = NULL;
Tao Ma589dc262008-08-18 17:38:51 +08002916 char *xe_name;
2917
2918 /*
2919 * We don't use binary search in the bucket because there
2920 * may be multiple entries with the same name hash.
2921 */
2922 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
2923 xe = &xh->xh_entries[i];
2924
2925 if (name_hash > le32_to_cpu(xe->xe_name_hash))
2926 continue;
2927 else if (name_hash < le32_to_cpu(xe->xe_name_hash))
2928 break;
2929
2930 cmp = name_index - ocfs2_xattr_get_type(xe);
2931 if (!cmp)
2932 cmp = name_len - xe->xe_name_len;
2933 if (cmp)
2934 continue;
2935
2936 ret = ocfs2_xattr_bucket_get_name_value(inode,
2937 xh,
2938 i,
2939 &block_off,
2940 &new_offset);
2941 if (ret) {
2942 mlog_errno(ret);
2943 break;
2944 }
2945
Joel Becker970e4932008-11-13 14:49:19 -08002946
Joel Beckere2356a32008-10-27 15:01:54 -07002947 xe_name = bucket_block(bucket, block_off) + new_offset;
2948 if (!memcmp(name, xe_name, name_len)) {
Tao Ma589dc262008-08-18 17:38:51 +08002949 *xe_index = i;
2950 *found = 1;
2951 ret = 0;
2952 break;
2953 }
2954 }
2955
2956 return ret;
2957}
2958
2959/*
2960 * Find the specified xattr entry in a series of buckets.
2961 * This series start from p_blkno and last for num_clusters.
2962 * The ocfs2_xattr_header.xh_num_buckets of the first bucket contains
2963 * the num of the valid buckets.
2964 *
2965 * Return the buffer_head this xattr should reside in. And if the xattr's
2966 * hash is in the gap of 2 buckets, return the lower bucket.
2967 */
2968static int ocfs2_xattr_bucket_find(struct inode *inode,
2969 int name_index,
2970 const char *name,
2971 u32 name_hash,
2972 u64 p_blkno,
2973 u32 first_hash,
2974 u32 num_clusters,
2975 struct ocfs2_xattr_search *xs)
2976{
2977 int ret, found = 0;
Tao Ma589dc262008-08-18 17:38:51 +08002978 struct ocfs2_xattr_header *xh = NULL;
2979 struct ocfs2_xattr_entry *xe = NULL;
2980 u16 index = 0;
2981 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2982 int low_bucket = 0, bucket, high_bucket;
Joel Beckere2356a32008-10-27 15:01:54 -07002983 struct ocfs2_xattr_bucket *search;
Tao Ma589dc262008-08-18 17:38:51 +08002984 u32 last_hash;
Joel Beckere2356a32008-10-27 15:01:54 -07002985 u64 blkno, lower_blkno = 0;
Tao Ma589dc262008-08-18 17:38:51 +08002986
Joel Beckere2356a32008-10-27 15:01:54 -07002987 search = ocfs2_xattr_bucket_new(inode);
2988 if (!search) {
2989 ret = -ENOMEM;
2990 mlog_errno(ret);
2991 goto out;
2992 }
2993
2994 ret = ocfs2_read_xattr_bucket(search, p_blkno);
Tao Ma589dc262008-08-18 17:38:51 +08002995 if (ret) {
2996 mlog_errno(ret);
2997 goto out;
2998 }
2999
Joel Beckere2356a32008-10-27 15:01:54 -07003000 xh = bucket_xh(search);
Tao Ma589dc262008-08-18 17:38:51 +08003001 high_bucket = le16_to_cpu(xh->xh_num_buckets) - 1;
Tao Ma589dc262008-08-18 17:38:51 +08003002 while (low_bucket <= high_bucket) {
Joel Beckere2356a32008-10-27 15:01:54 -07003003 ocfs2_xattr_bucket_relse(search);
3004
Tao Ma589dc262008-08-18 17:38:51 +08003005 bucket = (low_bucket + high_bucket) / 2;
Tao Ma589dc262008-08-18 17:38:51 +08003006 blkno = p_blkno + bucket * blk_per_bucket;
Joel Beckere2356a32008-10-27 15:01:54 -07003007 ret = ocfs2_read_xattr_bucket(search, blkno);
Tao Ma589dc262008-08-18 17:38:51 +08003008 if (ret) {
3009 mlog_errno(ret);
3010 goto out;
3011 }
3012
Joel Beckere2356a32008-10-27 15:01:54 -07003013 xh = bucket_xh(search);
Tao Ma589dc262008-08-18 17:38:51 +08003014 xe = &xh->xh_entries[0];
3015 if (name_hash < le32_to_cpu(xe->xe_name_hash)) {
3016 high_bucket = bucket - 1;
3017 continue;
3018 }
3019
3020 /*
3021 * Check whether the hash of the last entry in our
Tao Ma5a095612008-09-19 22:17:41 +08003022 * bucket is larger than the search one. for an empty
3023 * bucket, the last one is also the first one.
Tao Ma589dc262008-08-18 17:38:51 +08003024 */
Tao Ma5a095612008-09-19 22:17:41 +08003025 if (xh->xh_count)
3026 xe = &xh->xh_entries[le16_to_cpu(xh->xh_count) - 1];
3027
Tao Ma589dc262008-08-18 17:38:51 +08003028 last_hash = le32_to_cpu(xe->xe_name_hash);
3029
Joel Beckere2356a32008-10-27 15:01:54 -07003030 /* record lower_blkno which may be the insert place. */
3031 lower_blkno = blkno;
Tao Ma589dc262008-08-18 17:38:51 +08003032
3033 if (name_hash > le32_to_cpu(xe->xe_name_hash)) {
3034 low_bucket = bucket + 1;
3035 continue;
3036 }
3037
3038 /* the searched xattr should reside in this bucket if exists. */
Joel Beckere2356a32008-10-27 15:01:54 -07003039 ret = ocfs2_find_xe_in_bucket(inode, search,
Tao Ma589dc262008-08-18 17:38:51 +08003040 name_index, name, name_hash,
3041 &index, &found);
3042 if (ret) {
3043 mlog_errno(ret);
3044 goto out;
3045 }
3046 break;
3047 }
3048
3049 /*
3050 * Record the bucket we have found.
3051 * When the xattr's hash value is in the gap of 2 buckets, we will
3052 * always set it to the previous bucket.
3053 */
Joel Beckere2356a32008-10-27 15:01:54 -07003054 if (!lower_blkno)
3055 lower_blkno = p_blkno;
3056
3057 /* This should be in cache - we just read it during the search */
3058 ret = ocfs2_read_xattr_bucket(xs->bucket, lower_blkno);
3059 if (ret) {
3060 mlog_errno(ret);
3061 goto out;
Tao Ma589dc262008-08-18 17:38:51 +08003062 }
Tao Ma589dc262008-08-18 17:38:51 +08003063
Joel Beckerba937122008-10-24 19:13:20 -07003064 xs->header = bucket_xh(xs->bucket);
3065 xs->base = bucket_block(xs->bucket, 0);
Tao Ma589dc262008-08-18 17:38:51 +08003066 xs->end = xs->base + inode->i_sb->s_blocksize;
3067
3068 if (found) {
Tao Ma589dc262008-08-18 17:38:51 +08003069 xs->here = &xs->header->xh_entries[index];
3070 mlog(0, "find xattr %s in bucket %llu, entry = %u\n", name,
Joel Beckerba937122008-10-24 19:13:20 -07003071 (unsigned long long)bucket_blkno(xs->bucket), index);
Tao Ma589dc262008-08-18 17:38:51 +08003072 } else
3073 ret = -ENODATA;
3074
3075out:
Joel Beckere2356a32008-10-27 15:01:54 -07003076 ocfs2_xattr_bucket_free(search);
Tao Ma589dc262008-08-18 17:38:51 +08003077 return ret;
3078}
3079
3080static int ocfs2_xattr_index_block_find(struct inode *inode,
3081 struct buffer_head *root_bh,
3082 int name_index,
3083 const char *name,
3084 struct ocfs2_xattr_search *xs)
3085{
3086 int ret;
3087 struct ocfs2_xattr_block *xb =
3088 (struct ocfs2_xattr_block *)root_bh->b_data;
3089 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
3090 struct ocfs2_extent_list *el = &xb_root->xt_list;
3091 u64 p_blkno = 0;
3092 u32 first_hash, num_clusters = 0;
Tao Ma2057e5c2008-10-09 23:06:13 +08003093 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
Tao Ma589dc262008-08-18 17:38:51 +08003094
3095 if (le16_to_cpu(el->l_next_free_rec) == 0)
3096 return -ENODATA;
3097
3098 mlog(0, "find xattr %s, hash = %u, index = %d in xattr tree\n",
3099 name, name_hash, name_index);
3100
3101 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &first_hash,
3102 &num_clusters, el);
3103 if (ret) {
3104 mlog_errno(ret);
3105 goto out;
3106 }
3107
3108 BUG_ON(p_blkno == 0 || num_clusters == 0 || first_hash > name_hash);
3109
3110 mlog(0, "find xattr extent rec %u clusters from %llu, the first hash "
Mark Fashehde29c082008-10-29 14:45:30 -07003111 "in the rec is %u\n", num_clusters, (unsigned long long)p_blkno,
3112 first_hash);
Tao Ma589dc262008-08-18 17:38:51 +08003113
3114 ret = ocfs2_xattr_bucket_find(inode, name_index, name, name_hash,
3115 p_blkno, first_hash, num_clusters, xs);
3116
3117out:
3118 return ret;
3119}
3120
Tao Ma0c044f02008-08-18 17:38:50 +08003121static int ocfs2_iterate_xattr_buckets(struct inode *inode,
3122 u64 blkno,
3123 u32 clusters,
3124 xattr_bucket_func *func,
3125 void *para)
3126{
Joel Becker6dde41d2008-10-24 17:16:48 -07003127 int i, ret = 0;
Tao Ma0c044f02008-08-18 17:38:50 +08003128 u32 bpc = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb));
3129 u32 num_buckets = clusters * bpc;
Joel Beckerba937122008-10-24 19:13:20 -07003130 struct ocfs2_xattr_bucket *bucket;
Tao Ma0c044f02008-08-18 17:38:50 +08003131
Joel Beckerba937122008-10-24 19:13:20 -07003132 bucket = ocfs2_xattr_bucket_new(inode);
3133 if (!bucket) {
3134 mlog_errno(-ENOMEM);
3135 return -ENOMEM;
3136 }
Tao Ma0c044f02008-08-18 17:38:50 +08003137
3138 mlog(0, "iterating xattr buckets in %u clusters starting from %llu\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003139 clusters, (unsigned long long)blkno);
Tao Ma0c044f02008-08-18 17:38:50 +08003140
Joel Beckerba937122008-10-24 19:13:20 -07003141 for (i = 0; i < num_buckets; i++, blkno += bucket->bu_blocks) {
3142 ret = ocfs2_read_xattr_bucket(bucket, blkno);
Tao Ma0c044f02008-08-18 17:38:50 +08003143 if (ret) {
3144 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07003145 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003146 }
3147
Tao Ma0c044f02008-08-18 17:38:50 +08003148 /*
3149 * The real bucket num in this series of blocks is stored
3150 * in the 1st bucket.
3151 */
3152 if (i == 0)
Joel Beckerba937122008-10-24 19:13:20 -07003153 num_buckets = le16_to_cpu(bucket_xh(bucket)->xh_num_buckets);
Tao Ma0c044f02008-08-18 17:38:50 +08003154
Mark Fashehde29c082008-10-29 14:45:30 -07003155 mlog(0, "iterating xattr bucket %llu, first hash %u\n",
3156 (unsigned long long)blkno,
Joel Beckerba937122008-10-24 19:13:20 -07003157 le32_to_cpu(bucket_xh(bucket)->xh_entries[0].xe_name_hash));
Tao Ma0c044f02008-08-18 17:38:50 +08003158 if (func) {
Joel Beckerba937122008-10-24 19:13:20 -07003159 ret = func(inode, bucket, para);
Tao Maa46fa682009-05-04 05:18:09 +08003160 if (ret && ret != -ERANGE)
Tao Ma0c044f02008-08-18 17:38:50 +08003161 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07003162 /* Fall through to bucket_relse() */
Tao Ma0c044f02008-08-18 17:38:50 +08003163 }
3164
Joel Beckerba937122008-10-24 19:13:20 -07003165 ocfs2_xattr_bucket_relse(bucket);
3166 if (ret)
3167 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003168 }
3169
Joel Beckerba937122008-10-24 19:13:20 -07003170 ocfs2_xattr_bucket_free(bucket);
Tao Ma0c044f02008-08-18 17:38:50 +08003171 return ret;
3172}
3173
3174struct ocfs2_xattr_tree_list {
3175 char *buffer;
3176 size_t buffer_size;
Tao Ma936b8832008-10-09 23:06:14 +08003177 size_t result;
Tao Ma0c044f02008-08-18 17:38:50 +08003178};
3179
3180static int ocfs2_xattr_bucket_get_name_value(struct inode *inode,
3181 struct ocfs2_xattr_header *xh,
3182 int index,
3183 int *block_off,
3184 int *new_offset)
3185{
3186 u16 name_offset;
3187
3188 if (index < 0 || index >= le16_to_cpu(xh->xh_count))
3189 return -EINVAL;
3190
3191 name_offset = le16_to_cpu(xh->xh_entries[index].xe_name_offset);
3192
3193 *block_off = name_offset >> inode->i_sb->s_blocksize_bits;
3194 *new_offset = name_offset % inode->i_sb->s_blocksize;
3195
3196 return 0;
3197}
3198
3199static int ocfs2_list_xattr_bucket(struct inode *inode,
3200 struct ocfs2_xattr_bucket *bucket,
3201 void *para)
3202{
Tao Ma936b8832008-10-09 23:06:14 +08003203 int ret = 0, type;
Tao Ma0c044f02008-08-18 17:38:50 +08003204 struct ocfs2_xattr_tree_list *xl = (struct ocfs2_xattr_tree_list *)para;
Tao Ma0c044f02008-08-18 17:38:50 +08003205 int i, block_off, new_offset;
Tao Ma936b8832008-10-09 23:06:14 +08003206 const char *prefix, *name;
Tao Ma0c044f02008-08-18 17:38:50 +08003207
Joel Becker3e632942008-10-24 17:04:49 -07003208 for (i = 0 ; i < le16_to_cpu(bucket_xh(bucket)->xh_count); i++) {
3209 struct ocfs2_xattr_entry *entry = &bucket_xh(bucket)->xh_entries[i];
Tao Ma936b8832008-10-09 23:06:14 +08003210 type = ocfs2_xattr_get_type(entry);
3211 prefix = ocfs2_xattr_prefix(type);
Tao Ma0c044f02008-08-18 17:38:50 +08003212
Tao Ma936b8832008-10-09 23:06:14 +08003213 if (prefix) {
Tao Ma0c044f02008-08-18 17:38:50 +08003214 ret = ocfs2_xattr_bucket_get_name_value(inode,
Joel Becker3e632942008-10-24 17:04:49 -07003215 bucket_xh(bucket),
Tao Ma0c044f02008-08-18 17:38:50 +08003216 i,
3217 &block_off,
3218 &new_offset);
3219 if (ret)
3220 break;
Tao Ma936b8832008-10-09 23:06:14 +08003221
Joel Becker51def392008-10-24 16:57:21 -07003222 name = (const char *)bucket_block(bucket, block_off) +
Tao Ma936b8832008-10-09 23:06:14 +08003223 new_offset;
3224 ret = ocfs2_xattr_list_entry(xl->buffer,
3225 xl->buffer_size,
3226 &xl->result,
3227 prefix, name,
3228 entry->xe_name_len);
3229 if (ret)
3230 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003231 }
3232 }
3233
3234 return ret;
3235}
3236
3237static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
3238 struct ocfs2_xattr_tree_root *xt,
3239 char *buffer,
3240 size_t buffer_size)
3241{
3242 struct ocfs2_extent_list *el = &xt->xt_list;
3243 int ret = 0;
3244 u32 name_hash = UINT_MAX, e_cpos = 0, num_clusters = 0;
3245 u64 p_blkno = 0;
3246 struct ocfs2_xattr_tree_list xl = {
3247 .buffer = buffer,
3248 .buffer_size = buffer_size,
Tao Ma936b8832008-10-09 23:06:14 +08003249 .result = 0,
Tao Ma0c044f02008-08-18 17:38:50 +08003250 };
3251
3252 if (le16_to_cpu(el->l_next_free_rec) == 0)
3253 return 0;
3254
3255 while (name_hash > 0) {
3256 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
3257 &e_cpos, &num_clusters, el);
3258 if (ret) {
3259 mlog_errno(ret);
3260 goto out;
3261 }
3262
3263 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
3264 ocfs2_list_xattr_bucket,
3265 &xl);
3266 if (ret) {
Tao Maa46fa682009-05-04 05:18:09 +08003267 if (ret != -ERANGE)
3268 mlog_errno(ret);
Tao Ma0c044f02008-08-18 17:38:50 +08003269 goto out;
3270 }
3271
3272 if (e_cpos == 0)
3273 break;
3274
3275 name_hash = e_cpos - 1;
3276 }
3277
Tao Ma936b8832008-10-09 23:06:14 +08003278 ret = xl.result;
Tao Ma0c044f02008-08-18 17:38:50 +08003279out:
3280 return ret;
3281}
Tao Ma01225592008-08-18 17:38:53 +08003282
3283static int cmp_xe(const void *a, const void *b)
3284{
3285 const struct ocfs2_xattr_entry *l = a, *r = b;
3286 u32 l_hash = le32_to_cpu(l->xe_name_hash);
3287 u32 r_hash = le32_to_cpu(r->xe_name_hash);
3288
3289 if (l_hash > r_hash)
3290 return 1;
3291 if (l_hash < r_hash)
3292 return -1;
3293 return 0;
3294}
3295
3296static void swap_xe(void *a, void *b, int size)
3297{
3298 struct ocfs2_xattr_entry *l = a, *r = b, tmp;
3299
3300 tmp = *l;
3301 memcpy(l, r, sizeof(struct ocfs2_xattr_entry));
3302 memcpy(r, &tmp, sizeof(struct ocfs2_xattr_entry));
3303}
3304
3305/*
3306 * When the ocfs2_xattr_block is filled up, new bucket will be created
3307 * and all the xattr entries will be moved to the new bucket.
Joel Becker178eeac2008-10-27 15:18:29 -07003308 * The header goes at the start of the bucket, and the names+values are
3309 * filled from the end. This is why *target starts as the last buffer.
Tao Ma01225592008-08-18 17:38:53 +08003310 * Note: we need to sort the entries since they are not saved in order
3311 * in the ocfs2_xattr_block.
3312 */
3313static void ocfs2_cp_xattr_block_to_bucket(struct inode *inode,
3314 struct buffer_head *xb_bh,
Joel Becker178eeac2008-10-27 15:18:29 -07003315 struct ocfs2_xattr_bucket *bucket)
Tao Ma01225592008-08-18 17:38:53 +08003316{
3317 int i, blocksize = inode->i_sb->s_blocksize;
Joel Becker178eeac2008-10-27 15:18:29 -07003318 int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08003319 u16 offset, size, off_change;
3320 struct ocfs2_xattr_entry *xe;
3321 struct ocfs2_xattr_block *xb =
3322 (struct ocfs2_xattr_block *)xb_bh->b_data;
3323 struct ocfs2_xattr_header *xb_xh = &xb->xb_attrs.xb_header;
Joel Becker178eeac2008-10-27 15:18:29 -07003324 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma01225592008-08-18 17:38:53 +08003325 u16 count = le16_to_cpu(xb_xh->xh_count);
Joel Becker178eeac2008-10-27 15:18:29 -07003326 char *src = xb_bh->b_data;
3327 char *target = bucket_block(bucket, blks - 1);
Tao Ma01225592008-08-18 17:38:53 +08003328
3329 mlog(0, "cp xattr from block %llu to bucket %llu\n",
3330 (unsigned long long)xb_bh->b_blocknr,
Joel Becker178eeac2008-10-27 15:18:29 -07003331 (unsigned long long)bucket_blkno(bucket));
Tao Ma01225592008-08-18 17:38:53 +08003332
Joel Becker178eeac2008-10-27 15:18:29 -07003333 for (i = 0; i < blks; i++)
3334 memset(bucket_block(bucket, i), 0, blocksize);
3335
Tao Ma01225592008-08-18 17:38:53 +08003336 /*
3337 * Since the xe_name_offset is based on ocfs2_xattr_header,
3338 * there is a offset change corresponding to the change of
3339 * ocfs2_xattr_header's position.
3340 */
3341 off_change = offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3342 xe = &xb_xh->xh_entries[count - 1];
3343 offset = le16_to_cpu(xe->xe_name_offset) + off_change;
3344 size = blocksize - offset;
3345
3346 /* copy all the names and values. */
Tao Ma01225592008-08-18 17:38:53 +08003347 memcpy(target + offset, src + offset, size);
3348
3349 /* Init new header now. */
3350 xh->xh_count = xb_xh->xh_count;
3351 xh->xh_num_buckets = cpu_to_le16(1);
3352 xh->xh_name_value_len = cpu_to_le16(size);
3353 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE - size);
3354
3355 /* copy all the entries. */
Joel Becker178eeac2008-10-27 15:18:29 -07003356 target = bucket_block(bucket, 0);
Tao Ma01225592008-08-18 17:38:53 +08003357 offset = offsetof(struct ocfs2_xattr_header, xh_entries);
3358 size = count * sizeof(struct ocfs2_xattr_entry);
3359 memcpy(target + offset, (char *)xb_xh + offset, size);
3360
3361 /* Change the xe offset for all the xe because of the move. */
3362 off_change = OCFS2_XATTR_BUCKET_SIZE - blocksize +
3363 offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3364 for (i = 0; i < count; i++)
3365 le16_add_cpu(&xh->xh_entries[i].xe_name_offset, off_change);
3366
3367 mlog(0, "copy entry: start = %u, size = %u, offset_change = %u\n",
3368 offset, size, off_change);
3369
3370 sort(target + offset, count, sizeof(struct ocfs2_xattr_entry),
3371 cmp_xe, swap_xe);
3372}
3373
3374/*
3375 * After we move xattr from block to index btree, we have to
3376 * update ocfs2_xattr_search to the new xe and base.
3377 *
3378 * When the entry is in xattr block, xattr_bh indicates the storage place.
3379 * While if the entry is in index b-tree, "bucket" indicates the
3380 * real place of the xattr.
3381 */
Joel Becker178eeac2008-10-27 15:18:29 -07003382static void ocfs2_xattr_update_xattr_search(struct inode *inode,
3383 struct ocfs2_xattr_search *xs,
3384 struct buffer_head *old_bh)
Tao Ma01225592008-08-18 17:38:53 +08003385{
Tao Ma01225592008-08-18 17:38:53 +08003386 char *buf = old_bh->b_data;
3387 struct ocfs2_xattr_block *old_xb = (struct ocfs2_xattr_block *)buf;
3388 struct ocfs2_xattr_header *old_xh = &old_xb->xb_attrs.xb_header;
Joel Becker178eeac2008-10-27 15:18:29 -07003389 int i;
Tao Ma01225592008-08-18 17:38:53 +08003390
Joel Beckerba937122008-10-24 19:13:20 -07003391 xs->header = bucket_xh(xs->bucket);
Joel Becker178eeac2008-10-27 15:18:29 -07003392 xs->base = bucket_block(xs->bucket, 0);
Tao Ma01225592008-08-18 17:38:53 +08003393 xs->end = xs->base + inode->i_sb->s_blocksize;
3394
Joel Becker178eeac2008-10-27 15:18:29 -07003395 if (xs->not_found)
3396 return;
Tao Ma01225592008-08-18 17:38:53 +08003397
Joel Becker178eeac2008-10-27 15:18:29 -07003398 i = xs->here - old_xh->xh_entries;
3399 xs->here = &xs->header->xh_entries[i];
Tao Ma01225592008-08-18 17:38:53 +08003400}
3401
3402static int ocfs2_xattr_create_index_block(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +08003403 struct ocfs2_xattr_search *xs,
3404 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08003405{
Tao Ma85db90e2008-11-12 08:27:01 +08003406 int ret;
Tao Ma01225592008-08-18 17:38:53 +08003407 u32 bit_off, len;
3408 u64 blkno;
Tao Ma85db90e2008-11-12 08:27:01 +08003409 handle_t *handle = ctxt->handle;
Tao Ma01225592008-08-18 17:38:53 +08003410 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3411 struct ocfs2_inode_info *oi = OCFS2_I(inode);
Tao Ma01225592008-08-18 17:38:53 +08003412 struct buffer_head *xb_bh = xs->xattr_bh;
3413 struct ocfs2_xattr_block *xb =
3414 (struct ocfs2_xattr_block *)xb_bh->b_data;
3415 struct ocfs2_xattr_tree_root *xr;
3416 u16 xb_flags = le16_to_cpu(xb->xb_flags);
Tao Ma01225592008-08-18 17:38:53 +08003417
3418 mlog(0, "create xattr index block for %llu\n",
3419 (unsigned long long)xb_bh->b_blocknr);
3420
3421 BUG_ON(xb_flags & OCFS2_XATTR_INDEXED);
Joel Becker178eeac2008-10-27 15:18:29 -07003422 BUG_ON(!xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08003423
Tao Ma01225592008-08-18 17:38:53 +08003424 /*
3425 * XXX:
3426 * We can use this lock for now, and maybe move to a dedicated mutex
3427 * if performance becomes a problem later.
3428 */
3429 down_write(&oi->ip_alloc_sem);
3430
Joel Becker84008972008-12-09 16:11:49 -08003431 ret = ocfs2_journal_access_xb(handle, inode, xb_bh,
3432 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08003433 if (ret) {
3434 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003435 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003436 }
3437
Tao Ma78f30c32008-11-12 08:27:00 +08003438 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac,
3439 1, 1, &bit_off, &len);
Tao Ma01225592008-08-18 17:38:53 +08003440 if (ret) {
3441 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003442 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003443 }
3444
3445 /*
3446 * The bucket may spread in many blocks, and
3447 * we will only touch the 1st block and the last block
3448 * in the whole bucket(one for entry and one for data).
3449 */
3450 blkno = ocfs2_clusters_to_blocks(inode->i_sb, bit_off);
3451
Mark Fashehde29c082008-10-29 14:45:30 -07003452 mlog(0, "allocate 1 cluster from %llu to xattr block\n",
3453 (unsigned long long)blkno);
Tao Ma01225592008-08-18 17:38:53 +08003454
Joel Becker178eeac2008-10-27 15:18:29 -07003455 ret = ocfs2_init_xattr_bucket(xs->bucket, blkno);
Tao Ma01225592008-08-18 17:38:53 +08003456 if (ret) {
3457 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003458 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003459 }
3460
Joel Becker178eeac2008-10-27 15:18:29 -07003461 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
3462 OCFS2_JOURNAL_ACCESS_CREATE);
Joel Beckerbd60bd32008-10-20 18:25:56 -07003463 if (ret) {
3464 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003465 goto out;
Joel Beckerbd60bd32008-10-20 18:25:56 -07003466 }
Tao Ma01225592008-08-18 17:38:53 +08003467
Joel Becker178eeac2008-10-27 15:18:29 -07003468 ocfs2_cp_xattr_block_to_bucket(inode, xb_bh, xs->bucket);
3469 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
3470
3471 ocfs2_xattr_update_xattr_search(inode, xs, xb_bh);
3472
Tao Ma01225592008-08-18 17:38:53 +08003473 /* Change from ocfs2_xattr_header to ocfs2_xattr_tree_root */
3474 memset(&xb->xb_attrs, 0, inode->i_sb->s_blocksize -
3475 offsetof(struct ocfs2_xattr_block, xb_attrs));
3476
3477 xr = &xb->xb_attrs.xb_root;
3478 xr->xt_clusters = cpu_to_le32(1);
3479 xr->xt_last_eb_blk = 0;
3480 xr->xt_list.l_tree_depth = 0;
3481 xr->xt_list.l_count = cpu_to_le16(ocfs2_xattr_recs_per_xb(inode->i_sb));
3482 xr->xt_list.l_next_free_rec = cpu_to_le16(1);
3483
3484 xr->xt_list.l_recs[0].e_cpos = 0;
3485 xr->xt_list.l_recs[0].e_blkno = cpu_to_le64(blkno);
3486 xr->xt_list.l_recs[0].e_leaf_clusters = cpu_to_le16(1);
3487
3488 xb->xb_flags = cpu_to_le16(xb_flags | OCFS2_XATTR_INDEXED);
3489
Tao Ma85db90e2008-11-12 08:27:01 +08003490 ocfs2_journal_dirty(handle, xb_bh);
Tao Ma01225592008-08-18 17:38:53 +08003491
Tao Ma85db90e2008-11-12 08:27:01 +08003492out:
Tao Ma01225592008-08-18 17:38:53 +08003493 up_write(&oi->ip_alloc_sem);
3494
Tao Ma01225592008-08-18 17:38:53 +08003495 return ret;
3496}
3497
3498static int cmp_xe_offset(const void *a, const void *b)
3499{
3500 const struct ocfs2_xattr_entry *l = a, *r = b;
3501 u32 l_name_offset = le16_to_cpu(l->xe_name_offset);
3502 u32 r_name_offset = le16_to_cpu(r->xe_name_offset);
3503
3504 if (l_name_offset < r_name_offset)
3505 return 1;
3506 if (l_name_offset > r_name_offset)
3507 return -1;
3508 return 0;
3509}
3510
3511/*
3512 * defrag a xattr bucket if we find that the bucket has some
3513 * holes beteen name/value pairs.
3514 * We will move all the name/value pairs to the end of the bucket
3515 * so that we can spare some space for insertion.
3516 */
3517static int ocfs2_defrag_xattr_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08003518 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08003519 struct ocfs2_xattr_bucket *bucket)
3520{
3521 int ret, i;
3522 size_t end, offset, len, value_len;
3523 struct ocfs2_xattr_header *xh;
3524 char *entries, *buf, *bucket_buf = NULL;
Joel Becker9c7759a2008-10-24 16:21:03 -07003525 u64 blkno = bucket_blkno(bucket);
Tao Ma01225592008-08-18 17:38:53 +08003526 u16 xh_free_start;
Tao Ma01225592008-08-18 17:38:53 +08003527 size_t blocksize = inode->i_sb->s_blocksize;
Tao Ma01225592008-08-18 17:38:53 +08003528 struct ocfs2_xattr_entry *xe;
Tao Ma01225592008-08-18 17:38:53 +08003529
3530 /*
3531 * In order to make the operation more efficient and generic,
3532 * we copy all the blocks into a contiguous memory and do the
3533 * defragment there, so if anything is error, we will not touch
3534 * the real block.
3535 */
3536 bucket_buf = kmalloc(OCFS2_XATTR_BUCKET_SIZE, GFP_NOFS);
3537 if (!bucket_buf) {
3538 ret = -EIO;
3539 goto out;
3540 }
3541
Joel Becker161d6f32008-10-27 15:25:18 -07003542 buf = bucket_buf;
Tao Ma1c32a2f2008-11-06 08:10:47 +08003543 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3544 memcpy(buf, bucket_block(bucket, i), blocksize);
Joel Becker161d6f32008-10-27 15:25:18 -07003545
Tao Ma1c32a2f2008-11-06 08:10:47 +08003546 ret = ocfs2_xattr_bucket_journal_access(handle, bucket,
Joel Becker161d6f32008-10-27 15:25:18 -07003547 OCFS2_JOURNAL_ACCESS_WRITE);
3548 if (ret < 0) {
3549 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003550 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003551 }
3552
3553 xh = (struct ocfs2_xattr_header *)bucket_buf;
3554 entries = (char *)xh->xh_entries;
3555 xh_free_start = le16_to_cpu(xh->xh_free_start);
3556
3557 mlog(0, "adjust xattr bucket in %llu, count = %u, "
3558 "xh_free_start = %u, xh_name_value_len = %u.\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003559 (unsigned long long)blkno, le16_to_cpu(xh->xh_count),
3560 xh_free_start, le16_to_cpu(xh->xh_name_value_len));
Tao Ma01225592008-08-18 17:38:53 +08003561
3562 /*
3563 * sort all the entries by their offset.
3564 * the largest will be the first, so that we can
3565 * move them to the end one by one.
3566 */
3567 sort(entries, le16_to_cpu(xh->xh_count),
3568 sizeof(struct ocfs2_xattr_entry),
3569 cmp_xe_offset, swap_xe);
3570
3571 /* Move all name/values to the end of the bucket. */
3572 xe = xh->xh_entries;
3573 end = OCFS2_XATTR_BUCKET_SIZE;
3574 for (i = 0; i < le16_to_cpu(xh->xh_count); i++, xe++) {
3575 offset = le16_to_cpu(xe->xe_name_offset);
3576 if (ocfs2_xattr_is_local(xe))
3577 value_len = OCFS2_XATTR_SIZE(
3578 le64_to_cpu(xe->xe_value_size));
3579 else
3580 value_len = OCFS2_XATTR_ROOT_SIZE;
3581 len = OCFS2_XATTR_SIZE(xe->xe_name_len) + value_len;
3582
3583 /*
3584 * We must make sure that the name/value pair
3585 * exist in the same block. So adjust end to
3586 * the previous block end if needed.
3587 */
3588 if (((end - len) / blocksize !=
3589 (end - 1) / blocksize))
3590 end = end - end % blocksize;
3591
3592 if (end > offset + len) {
3593 memmove(bucket_buf + end - len,
3594 bucket_buf + offset, len);
3595 xe->xe_name_offset = cpu_to_le16(end - len);
3596 }
3597
3598 mlog_bug_on_msg(end < offset + len, "Defrag check failed for "
3599 "bucket %llu\n", (unsigned long long)blkno);
3600
3601 end -= len;
3602 }
3603
3604 mlog_bug_on_msg(xh_free_start > end, "Defrag check failed for "
3605 "bucket %llu\n", (unsigned long long)blkno);
3606
3607 if (xh_free_start == end)
Tao Ma85db90e2008-11-12 08:27:01 +08003608 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003609
3610 memset(bucket_buf + xh_free_start, 0, end - xh_free_start);
3611 xh->xh_free_start = cpu_to_le16(end);
3612
3613 /* sort the entries by their name_hash. */
3614 sort(entries, le16_to_cpu(xh->xh_count),
3615 sizeof(struct ocfs2_xattr_entry),
3616 cmp_xe, swap_xe);
3617
3618 buf = bucket_buf;
Tao Ma1c32a2f2008-11-06 08:10:47 +08003619 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3620 memcpy(bucket_block(bucket, i), buf, blocksize);
3621 ocfs2_xattr_bucket_journal_dirty(handle, bucket);
Tao Ma01225592008-08-18 17:38:53 +08003622
Tao Ma01225592008-08-18 17:38:53 +08003623out:
Tao Ma01225592008-08-18 17:38:53 +08003624 kfree(bucket_buf);
3625 return ret;
3626}
3627
3628/*
Joel Beckerb5c03e72008-11-25 19:58:16 -08003629 * prev_blkno points to the start of an existing extent. new_blkno
3630 * points to a newly allocated extent. Because we know each of our
3631 * clusters contains more than bucket, we can easily split one cluster
3632 * at a bucket boundary. So we take the last cluster of the existing
3633 * extent and split it down the middle. We move the last half of the
3634 * buckets in the last cluster of the existing extent over to the new
3635 * extent.
Tao Ma01225592008-08-18 17:38:53 +08003636 *
Joel Beckerb5c03e72008-11-25 19:58:16 -08003637 * first_bh is the buffer at prev_blkno so we can update the existing
3638 * extent's bucket count. header_bh is the bucket were we were hoping
3639 * to insert our xattr. If the bucket move places the target in the new
3640 * extent, we'll update first_bh and header_bh after modifying the old
3641 * extent.
3642 *
3643 * first_hash will be set as the 1st xe's name_hash in the new extent.
Tao Ma01225592008-08-18 17:38:53 +08003644 */
3645static int ocfs2_mv_xattr_bucket_cross_cluster(struct inode *inode,
3646 handle_t *handle,
Joel Becker41cb8142008-11-26 14:25:21 -08003647 struct ocfs2_xattr_bucket *first,
3648 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08003649 u64 new_blkno,
Tao Ma01225592008-08-18 17:38:53 +08003650 u32 num_clusters,
3651 u32 *first_hash)
3652{
Joel Beckerc58b6032008-11-26 13:36:24 -08003653 int ret;
Joel Becker41cb8142008-11-26 14:25:21 -08003654 struct super_block *sb = inode->i_sb;
3655 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(sb);
3656 int num_buckets = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(sb));
Joel Beckerb5c03e72008-11-25 19:58:16 -08003657 int to_move = num_buckets / 2;
Joel Beckerc58b6032008-11-26 13:36:24 -08003658 u64 src_blkno;
Joel Becker41cb8142008-11-26 14:25:21 -08003659 u64 last_cluster_blkno = bucket_blkno(first) +
3660 ((num_clusters - 1) * ocfs2_clusters_to_blocks(sb, 1));
Tao Ma01225592008-08-18 17:38:53 +08003661
Joel Becker41cb8142008-11-26 14:25:21 -08003662 BUG_ON(le16_to_cpu(bucket_xh(first)->xh_num_buckets) < num_buckets);
3663 BUG_ON(OCFS2_XATTR_BUCKET_SIZE == OCFS2_SB(sb)->s_clustersize);
Tao Ma01225592008-08-18 17:38:53 +08003664
Tao Ma01225592008-08-18 17:38:53 +08003665 mlog(0, "move half of xattrs in cluster %llu to %llu\n",
Joel Beckerc58b6032008-11-26 13:36:24 -08003666 (unsigned long long)last_cluster_blkno, (unsigned long long)new_blkno);
Tao Ma01225592008-08-18 17:38:53 +08003667
Joel Becker41cb8142008-11-26 14:25:21 -08003668 ret = ocfs2_mv_xattr_buckets(inode, handle, bucket_blkno(first),
Joel Beckerc58b6032008-11-26 13:36:24 -08003669 last_cluster_blkno, new_blkno,
3670 to_move, first_hash);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003671 if (ret) {
3672 mlog_errno(ret);
3673 goto out;
3674 }
3675
Joel Beckerc58b6032008-11-26 13:36:24 -08003676 /* This is the first bucket that got moved */
3677 src_blkno = last_cluster_blkno + (to_move * blks_per_bucket);
3678
Tao Ma01225592008-08-18 17:38:53 +08003679 /*
Joel Beckerc58b6032008-11-26 13:36:24 -08003680 * If the target bucket was part of the moved buckets, we need to
Joel Becker41cb8142008-11-26 14:25:21 -08003681 * update first and target.
Joel Beckerb5c03e72008-11-25 19:58:16 -08003682 */
Joel Becker41cb8142008-11-26 14:25:21 -08003683 if (bucket_blkno(target) >= src_blkno) {
Joel Beckerb5c03e72008-11-25 19:58:16 -08003684 /* Find the block for the new target bucket */
3685 src_blkno = new_blkno +
Joel Becker41cb8142008-11-26 14:25:21 -08003686 (bucket_blkno(target) - src_blkno);
3687
3688 ocfs2_xattr_bucket_relse(first);
3689 ocfs2_xattr_bucket_relse(target);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003690
3691 /*
Joel Beckerc58b6032008-11-26 13:36:24 -08003692 * These shouldn't fail - the buffers are in the
Joel Beckerb5c03e72008-11-25 19:58:16 -08003693 * journal from ocfs2_cp_xattr_bucket().
3694 */
Joel Becker41cb8142008-11-26 14:25:21 -08003695 ret = ocfs2_read_xattr_bucket(first, new_blkno);
Joel Beckerc58b6032008-11-26 13:36:24 -08003696 if (ret) {
3697 mlog_errno(ret);
3698 goto out;
3699 }
Joel Becker41cb8142008-11-26 14:25:21 -08003700 ret = ocfs2_read_xattr_bucket(target, src_blkno);
3701 if (ret)
Joel Beckerb5c03e72008-11-25 19:58:16 -08003702 mlog_errno(ret);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003703
Joel Beckerb5c03e72008-11-25 19:58:16 -08003704 }
3705
Tao Ma01225592008-08-18 17:38:53 +08003706out:
Tao Ma01225592008-08-18 17:38:53 +08003707 return ret;
3708}
3709
Tao Ma01225592008-08-18 17:38:53 +08003710/*
Tao Ma80bcaf32008-10-27 06:06:24 +08003711 * Find the suitable pos when we divide a bucket into 2.
3712 * We have to make sure the xattrs with the same hash value exist
3713 * in the same bucket.
3714 *
3715 * If this ocfs2_xattr_header covers more than one hash value, find a
3716 * place where the hash value changes. Try to find the most even split.
3717 * The most common case is that all entries have different hash values,
3718 * and the first check we make will find a place to split.
Tao Ma01225592008-08-18 17:38:53 +08003719 */
Tao Ma80bcaf32008-10-27 06:06:24 +08003720static int ocfs2_xattr_find_divide_pos(struct ocfs2_xattr_header *xh)
3721{
3722 struct ocfs2_xattr_entry *entries = xh->xh_entries;
3723 int count = le16_to_cpu(xh->xh_count);
3724 int delta, middle = count / 2;
3725
3726 /*
3727 * We start at the middle. Each step gets farther away in both
3728 * directions. We therefore hit the change in hash value
3729 * nearest to the middle. Note that this loop does not execute for
3730 * count < 2.
3731 */
3732 for (delta = 0; delta < middle; delta++) {
3733 /* Let's check delta earlier than middle */
3734 if (cmp_xe(&entries[middle - delta - 1],
3735 &entries[middle - delta]))
3736 return middle - delta;
3737
3738 /* For even counts, don't walk off the end */
3739 if ((middle + delta + 1) == count)
3740 continue;
3741
3742 /* Now try delta past middle */
3743 if (cmp_xe(&entries[middle + delta],
3744 &entries[middle + delta + 1]))
3745 return middle + delta + 1;
3746 }
3747
3748 /* Every entry had the same hash */
3749 return count;
3750}
3751
3752/*
3753 * Move some xattrs in old bucket(blk) to new bucket(new_blk).
3754 * first_hash will record the 1st hash of the new bucket.
3755 *
3756 * Normally half of the xattrs will be moved. But we have to make
3757 * sure that the xattrs with the same hash value are stored in the
3758 * same bucket. If all the xattrs in this bucket have the same hash
3759 * value, the new bucket will be initialized as an empty one and the
3760 * first_hash will be initialized as (hash_value+1).
3761 */
3762static int ocfs2_divide_xattr_bucket(struct inode *inode,
3763 handle_t *handle,
3764 u64 blk,
3765 u64 new_blk,
3766 u32 *first_hash,
3767 int new_bucket_head)
Tao Ma01225592008-08-18 17:38:53 +08003768{
3769 int ret, i;
Tao Ma80bcaf32008-10-27 06:06:24 +08003770 int count, start, len, name_value_len = 0, xe_len, name_offset = 0;
Joel Beckerba937122008-10-24 19:13:20 -07003771 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
Tao Ma01225592008-08-18 17:38:53 +08003772 struct ocfs2_xattr_header *xh;
3773 struct ocfs2_xattr_entry *xe;
3774 int blocksize = inode->i_sb->s_blocksize;
3775
Tao Ma80bcaf32008-10-27 06:06:24 +08003776 mlog(0, "move some of xattrs from bucket %llu to %llu\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003777 (unsigned long long)blk, (unsigned long long)new_blk);
Tao Ma01225592008-08-18 17:38:53 +08003778
Joel Beckerba937122008-10-24 19:13:20 -07003779 s_bucket = ocfs2_xattr_bucket_new(inode);
3780 t_bucket = ocfs2_xattr_bucket_new(inode);
3781 if (!s_bucket || !t_bucket) {
3782 ret = -ENOMEM;
3783 mlog_errno(ret);
3784 goto out;
3785 }
Tao Ma01225592008-08-18 17:38:53 +08003786
Joel Beckerba937122008-10-24 19:13:20 -07003787 ret = ocfs2_read_xattr_bucket(s_bucket, blk);
Tao Ma01225592008-08-18 17:38:53 +08003788 if (ret) {
3789 mlog_errno(ret);
3790 goto out;
3791 }
3792
Joel Beckerba937122008-10-24 19:13:20 -07003793 ret = ocfs2_xattr_bucket_journal_access(handle, s_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07003794 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08003795 if (ret) {
3796 mlog_errno(ret);
3797 goto out;
3798 }
3799
Joel Becker784b8162008-10-24 17:33:40 -07003800 /*
3801 * Even if !new_bucket_head, we're overwriting t_bucket. Thus,
3802 * there's no need to read it.
3803 */
Joel Beckerba937122008-10-24 19:13:20 -07003804 ret = ocfs2_init_xattr_bucket(t_bucket, new_blk);
Tao Ma01225592008-08-18 17:38:53 +08003805 if (ret) {
3806 mlog_errno(ret);
3807 goto out;
3808 }
3809
Joel Becker2b656c12008-11-25 19:00:15 -08003810 /*
3811 * Hey, if we're overwriting t_bucket, what difference does
3812 * ACCESS_CREATE vs ACCESS_WRITE make? See the comment in the
3813 * same part of ocfs2_cp_xattr_bucket().
3814 */
Joel Beckerba937122008-10-24 19:13:20 -07003815 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07003816 new_bucket_head ?
3817 OCFS2_JOURNAL_ACCESS_CREATE :
3818 OCFS2_JOURNAL_ACCESS_WRITE);
3819 if (ret) {
3820 mlog_errno(ret);
3821 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003822 }
3823
Joel Beckerba937122008-10-24 19:13:20 -07003824 xh = bucket_xh(s_bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08003825 count = le16_to_cpu(xh->xh_count);
3826 start = ocfs2_xattr_find_divide_pos(xh);
3827
3828 if (start == count) {
3829 xe = &xh->xh_entries[start-1];
3830
3831 /*
3832 * initialized a new empty bucket here.
3833 * The hash value is set as one larger than
3834 * that of the last entry in the previous bucket.
3835 */
Joel Beckerba937122008-10-24 19:13:20 -07003836 for (i = 0; i < t_bucket->bu_blocks; i++)
3837 memset(bucket_block(t_bucket, i), 0, blocksize);
Tao Ma80bcaf32008-10-27 06:06:24 +08003838
Joel Beckerba937122008-10-24 19:13:20 -07003839 xh = bucket_xh(t_bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08003840 xh->xh_free_start = cpu_to_le16(blocksize);
3841 xh->xh_entries[0].xe_name_hash = xe->xe_name_hash;
3842 le32_add_cpu(&xh->xh_entries[0].xe_name_hash, 1);
3843
3844 goto set_num_buckets;
3845 }
3846
Tao Ma01225592008-08-18 17:38:53 +08003847 /* copy the whole bucket to the new first. */
Joel Beckerba937122008-10-24 19:13:20 -07003848 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003849
3850 /* update the new bucket. */
Joel Beckerba937122008-10-24 19:13:20 -07003851 xh = bucket_xh(t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003852
3853 /*
3854 * Calculate the total name/value len and xh_free_start for
3855 * the old bucket first.
3856 */
3857 name_offset = OCFS2_XATTR_BUCKET_SIZE;
3858 name_value_len = 0;
3859 for (i = 0; i < start; i++) {
3860 xe = &xh->xh_entries[i];
3861 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3862 if (ocfs2_xattr_is_local(xe))
3863 xe_len +=
3864 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3865 else
3866 xe_len += OCFS2_XATTR_ROOT_SIZE;
3867 name_value_len += xe_len;
3868 if (le16_to_cpu(xe->xe_name_offset) < name_offset)
3869 name_offset = le16_to_cpu(xe->xe_name_offset);
3870 }
3871
3872 /*
3873 * Now begin the modification to the new bucket.
3874 *
3875 * In the new bucket, We just move the xattr entry to the beginning
3876 * and don't touch the name/value. So there will be some holes in the
3877 * bucket, and they will be removed when ocfs2_defrag_xattr_bucket is
3878 * called.
3879 */
3880 xe = &xh->xh_entries[start];
3881 len = sizeof(struct ocfs2_xattr_entry) * (count - start);
3882 mlog(0, "mv xattr entry len %d from %d to %d\n", len,
Mark Fashehff1ec202008-08-19 10:54:29 -07003883 (int)((char *)xe - (char *)xh),
3884 (int)((char *)xh->xh_entries - (char *)xh));
Tao Ma01225592008-08-18 17:38:53 +08003885 memmove((char *)xh->xh_entries, (char *)xe, len);
3886 xe = &xh->xh_entries[count - start];
3887 len = sizeof(struct ocfs2_xattr_entry) * start;
3888 memset((char *)xe, 0, len);
3889
3890 le16_add_cpu(&xh->xh_count, -start);
3891 le16_add_cpu(&xh->xh_name_value_len, -name_value_len);
3892
3893 /* Calculate xh_free_start for the new bucket. */
3894 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
3895 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
3896 xe = &xh->xh_entries[i];
3897 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3898 if (ocfs2_xattr_is_local(xe))
3899 xe_len +=
3900 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3901 else
3902 xe_len += OCFS2_XATTR_ROOT_SIZE;
3903 if (le16_to_cpu(xe->xe_name_offset) <
3904 le16_to_cpu(xh->xh_free_start))
3905 xh->xh_free_start = xe->xe_name_offset;
3906 }
3907
Tao Ma80bcaf32008-10-27 06:06:24 +08003908set_num_buckets:
Tao Ma01225592008-08-18 17:38:53 +08003909 /* set xh->xh_num_buckets for the new xh. */
3910 if (new_bucket_head)
3911 xh->xh_num_buckets = cpu_to_le16(1);
3912 else
3913 xh->xh_num_buckets = 0;
3914
Joel Beckerba937122008-10-24 19:13:20 -07003915 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003916
3917 /* store the first_hash of the new bucket. */
3918 if (first_hash)
3919 *first_hash = le32_to_cpu(xh->xh_entries[0].xe_name_hash);
3920
3921 /*
Tao Ma80bcaf32008-10-27 06:06:24 +08003922 * Now only update the 1st block of the old bucket. If we
3923 * just added a new empty bucket, there is no need to modify
3924 * it.
Tao Ma01225592008-08-18 17:38:53 +08003925 */
Tao Ma80bcaf32008-10-27 06:06:24 +08003926 if (start == count)
3927 goto out;
3928
Joel Beckerba937122008-10-24 19:13:20 -07003929 xh = bucket_xh(s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003930 memset(&xh->xh_entries[start], 0,
3931 sizeof(struct ocfs2_xattr_entry) * (count - start));
3932 xh->xh_count = cpu_to_le16(start);
3933 xh->xh_free_start = cpu_to_le16(name_offset);
3934 xh->xh_name_value_len = cpu_to_le16(name_value_len);
3935
Joel Beckerba937122008-10-24 19:13:20 -07003936 ocfs2_xattr_bucket_journal_dirty(handle, s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003937
3938out:
Joel Beckerba937122008-10-24 19:13:20 -07003939 ocfs2_xattr_bucket_free(s_bucket);
3940 ocfs2_xattr_bucket_free(t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003941
3942 return ret;
3943}
3944
3945/*
3946 * Copy xattr from one bucket to another bucket.
3947 *
3948 * The caller must make sure that the journal transaction
3949 * has enough space for journaling.
3950 */
3951static int ocfs2_cp_xattr_bucket(struct inode *inode,
3952 handle_t *handle,
3953 u64 s_blkno,
3954 u64 t_blkno,
3955 int t_is_new)
3956{
Joel Becker4980c6d2008-10-24 18:54:43 -07003957 int ret;
Joel Beckerba937122008-10-24 19:13:20 -07003958 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
Tao Ma01225592008-08-18 17:38:53 +08003959
3960 BUG_ON(s_blkno == t_blkno);
3961
3962 mlog(0, "cp bucket %llu to %llu, target is %d\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003963 (unsigned long long)s_blkno, (unsigned long long)t_blkno,
3964 t_is_new);
Tao Ma01225592008-08-18 17:38:53 +08003965
Joel Beckerba937122008-10-24 19:13:20 -07003966 s_bucket = ocfs2_xattr_bucket_new(inode);
3967 t_bucket = ocfs2_xattr_bucket_new(inode);
3968 if (!s_bucket || !t_bucket) {
3969 ret = -ENOMEM;
3970 mlog_errno(ret);
3971 goto out;
3972 }
Joel Becker92de1092008-11-25 17:06:40 -08003973
Joel Beckerba937122008-10-24 19:13:20 -07003974 ret = ocfs2_read_xattr_bucket(s_bucket, s_blkno);
Tao Ma01225592008-08-18 17:38:53 +08003975 if (ret)
3976 goto out;
3977
Joel Becker784b8162008-10-24 17:33:40 -07003978 /*
3979 * Even if !t_is_new, we're overwriting t_bucket. Thus,
3980 * there's no need to read it.
3981 */
Joel Beckerba937122008-10-24 19:13:20 -07003982 ret = ocfs2_init_xattr_bucket(t_bucket, t_blkno);
Tao Ma01225592008-08-18 17:38:53 +08003983 if (ret)
3984 goto out;
3985
Joel Becker2b656c12008-11-25 19:00:15 -08003986 /*
3987 * Hey, if we're overwriting t_bucket, what difference does
3988 * ACCESS_CREATE vs ACCESS_WRITE make? Well, if we allocated a new
Joel Becker874d65a2008-11-26 13:02:18 -08003989 * cluster to fill, we came here from
3990 * ocfs2_mv_xattr_buckets(), and it is really new -
3991 * ACCESS_CREATE is required. But we also might have moved data
3992 * out of t_bucket before extending back into it.
3993 * ocfs2_add_new_xattr_bucket() can do this - its call to
3994 * ocfs2_add_new_xattr_cluster() may have created a new extent
Joel Becker2b656c12008-11-25 19:00:15 -08003995 * and copied out the end of the old extent. Then it re-extends
3996 * the old extent back to create space for new xattrs. That's
3997 * how we get here, and the bucket isn't really new.
3998 */
Joel Beckerba937122008-10-24 19:13:20 -07003999 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07004000 t_is_new ?
4001 OCFS2_JOURNAL_ACCESS_CREATE :
4002 OCFS2_JOURNAL_ACCESS_WRITE);
4003 if (ret)
4004 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004005
Joel Beckerba937122008-10-24 19:13:20 -07004006 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
4007 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004008
4009out:
Joel Beckerba937122008-10-24 19:13:20 -07004010 ocfs2_xattr_bucket_free(t_bucket);
4011 ocfs2_xattr_bucket_free(s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004012
4013 return ret;
4014}
4015
4016/*
Joel Becker874d65a2008-11-26 13:02:18 -08004017 * src_blk points to the start of an existing extent. last_blk points to
4018 * last cluster in that extent. to_blk points to a newly allocated
Joel Becker54ecb6b2008-11-26 13:18:31 -08004019 * extent. We copy the buckets from the cluster at last_blk to the new
4020 * extent. If start_bucket is non-zero, we skip that many buckets before
4021 * we start copying. The new extent's xh_num_buckets gets set to the
4022 * number of buckets we copied. The old extent's xh_num_buckets shrinks
4023 * by the same amount.
Tao Ma01225592008-08-18 17:38:53 +08004024 */
Joel Becker54ecb6b2008-11-26 13:18:31 -08004025static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
4026 u64 src_blk, u64 last_blk, u64 to_blk,
4027 unsigned int start_bucket,
4028 u32 *first_hash)
Tao Ma01225592008-08-18 17:38:53 +08004029{
4030 int i, ret, credits;
4031 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Becker15d60922008-11-25 18:36:42 -08004032 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08004033 int num_buckets = ocfs2_xattr_buckets_per_cluster(osb);
Joel Becker15d60922008-11-25 18:36:42 -08004034 struct ocfs2_xattr_bucket *old_first, *new_first;
Tao Ma01225592008-08-18 17:38:53 +08004035
Joel Becker874d65a2008-11-26 13:02:18 -08004036 mlog(0, "mv xattrs from cluster %llu to %llu\n",
4037 (unsigned long long)last_blk, (unsigned long long)to_blk);
Tao Ma01225592008-08-18 17:38:53 +08004038
Joel Becker54ecb6b2008-11-26 13:18:31 -08004039 BUG_ON(start_bucket >= num_buckets);
4040 if (start_bucket) {
4041 num_buckets -= start_bucket;
4042 last_blk += (start_bucket * blks_per_bucket);
4043 }
4044
Joel Becker15d60922008-11-25 18:36:42 -08004045 /* The first bucket of the original extent */
4046 old_first = ocfs2_xattr_bucket_new(inode);
4047 /* The first bucket of the new extent */
4048 new_first = ocfs2_xattr_bucket_new(inode);
4049 if (!old_first || !new_first) {
4050 ret = -ENOMEM;
4051 mlog_errno(ret);
4052 goto out;
4053 }
4054
Joel Becker874d65a2008-11-26 13:02:18 -08004055 ret = ocfs2_read_xattr_bucket(old_first, src_blk);
Joel Becker15d60922008-11-25 18:36:42 -08004056 if (ret) {
4057 mlog_errno(ret);
4058 goto out;
4059 }
4060
Tao Ma01225592008-08-18 17:38:53 +08004061 /*
Joel Becker54ecb6b2008-11-26 13:18:31 -08004062 * We need to update the first bucket of the old extent and all
4063 * the buckets going to the new extent.
Tao Ma01225592008-08-18 17:38:53 +08004064 */
Joel Becker54ecb6b2008-11-26 13:18:31 -08004065 credits = ((num_buckets + 1) * blks_per_bucket) +
4066 handle->h_buffer_credits;
Tao Ma01225592008-08-18 17:38:53 +08004067 ret = ocfs2_extend_trans(handle, credits);
4068 if (ret) {
4069 mlog_errno(ret);
4070 goto out;
4071 }
4072
Joel Becker15d60922008-11-25 18:36:42 -08004073 ret = ocfs2_xattr_bucket_journal_access(handle, old_first,
4074 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004075 if (ret) {
4076 mlog_errno(ret);
4077 goto out;
4078 }
4079
4080 for (i = 0; i < num_buckets; i++) {
4081 ret = ocfs2_cp_xattr_bucket(inode, handle,
Joel Becker874d65a2008-11-26 13:02:18 -08004082 last_blk + (i * blks_per_bucket),
Joel Becker15d60922008-11-25 18:36:42 -08004083 to_blk + (i * blks_per_bucket),
4084 1);
Tao Ma01225592008-08-18 17:38:53 +08004085 if (ret) {
4086 mlog_errno(ret);
4087 goto out;
4088 }
Tao Ma01225592008-08-18 17:38:53 +08004089 }
4090
Joel Becker15d60922008-11-25 18:36:42 -08004091 /*
4092 * Get the new bucket ready before we dirty anything
4093 * (This actually shouldn't fail, because we already dirtied
4094 * it once in ocfs2_cp_xattr_bucket()).
4095 */
4096 ret = ocfs2_read_xattr_bucket(new_first, to_blk);
4097 if (ret) {
Tao Ma01225592008-08-18 17:38:53 +08004098 mlog_errno(ret);
4099 goto out;
4100 }
Joel Becker15d60922008-11-25 18:36:42 -08004101 ret = ocfs2_xattr_bucket_journal_access(handle, new_first,
4102 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004103 if (ret) {
4104 mlog_errno(ret);
4105 goto out;
4106 }
4107
Joel Becker15d60922008-11-25 18:36:42 -08004108 /* Now update the headers */
4109 le16_add_cpu(&bucket_xh(old_first)->xh_num_buckets, -num_buckets);
4110 ocfs2_xattr_bucket_journal_dirty(handle, old_first);
Tao Ma01225592008-08-18 17:38:53 +08004111
Joel Becker15d60922008-11-25 18:36:42 -08004112 bucket_xh(new_first)->xh_num_buckets = cpu_to_le16(num_buckets);
4113 ocfs2_xattr_bucket_journal_dirty(handle, new_first);
Tao Ma01225592008-08-18 17:38:53 +08004114
4115 if (first_hash)
Joel Becker15d60922008-11-25 18:36:42 -08004116 *first_hash = le32_to_cpu(bucket_xh(new_first)->xh_entries[0].xe_name_hash);
4117
Tao Ma01225592008-08-18 17:38:53 +08004118out:
Joel Becker15d60922008-11-25 18:36:42 -08004119 ocfs2_xattr_bucket_free(new_first);
4120 ocfs2_xattr_bucket_free(old_first);
Tao Ma01225592008-08-18 17:38:53 +08004121 return ret;
4122}
4123
4124/*
Tao Ma80bcaf32008-10-27 06:06:24 +08004125 * Move some xattrs in this cluster to the new cluster.
Tao Ma01225592008-08-18 17:38:53 +08004126 * This function should only be called when bucket size == cluster size.
4127 * Otherwise ocfs2_mv_xattr_bucket_cross_cluster should be used instead.
4128 */
Tao Ma80bcaf32008-10-27 06:06:24 +08004129static int ocfs2_divide_xattr_cluster(struct inode *inode,
4130 handle_t *handle,
4131 u64 prev_blk,
4132 u64 new_blk,
4133 u32 *first_hash)
Tao Ma01225592008-08-18 17:38:53 +08004134{
4135 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08004136 int ret, credits = 2 * blk_per_bucket + handle->h_buffer_credits;
Tao Ma01225592008-08-18 17:38:53 +08004137
4138 BUG_ON(OCFS2_XATTR_BUCKET_SIZE < OCFS2_SB(inode->i_sb)->s_clustersize);
4139
4140 ret = ocfs2_extend_trans(handle, credits);
4141 if (ret) {
4142 mlog_errno(ret);
4143 return ret;
4144 }
4145
4146 /* Move half of the xattr in start_blk to the next bucket. */
Tao Ma80bcaf32008-10-27 06:06:24 +08004147 return ocfs2_divide_xattr_bucket(inode, handle, prev_blk,
4148 new_blk, first_hash, 1);
Tao Ma01225592008-08-18 17:38:53 +08004149}
4150
4151/*
4152 * Move some xattrs from the old cluster to the new one since they are not
4153 * contiguous in ocfs2 xattr tree.
4154 *
4155 * new_blk starts a new separate cluster, and we will move some xattrs from
4156 * prev_blk to it. v_start will be set as the first name hash value in this
4157 * new cluster so that it can be used as e_cpos during tree insertion and
4158 * don't collide with our original b-tree operations. first_bh and header_bh
4159 * will also be updated since they will be used in ocfs2_extend_xattr_bucket
4160 * to extend the insert bucket.
4161 *
4162 * The problem is how much xattr should we move to the new one and when should
4163 * we update first_bh and header_bh?
4164 * 1. If cluster size > bucket size, that means the previous cluster has more
4165 * than 1 bucket, so just move half nums of bucket into the new cluster and
4166 * update the first_bh and header_bh if the insert bucket has been moved
4167 * to the new cluster.
4168 * 2. If cluster_size == bucket_size:
4169 * a) If the previous extent rec has more than one cluster and the insert
4170 * place isn't in the last cluster, copy the entire last cluster to the
4171 * new one. This time, we don't need to upate the first_bh and header_bh
4172 * since they will not be moved into the new cluster.
4173 * b) Otherwise, move the bottom half of the xattrs in the last cluster into
4174 * the new one. And we set the extend flag to zero if the insert place is
4175 * moved into the new allocated cluster since no extend is needed.
4176 */
4177static int ocfs2_adjust_xattr_cross_cluster(struct inode *inode,
4178 handle_t *handle,
Joel Becker012ee912008-11-26 14:43:31 -08004179 struct ocfs2_xattr_bucket *first,
4180 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08004181 u64 new_blk,
Tao Ma01225592008-08-18 17:38:53 +08004182 u32 prev_clusters,
4183 u32 *v_start,
4184 int *extend)
4185{
Joel Becker92cf3ad2008-11-26 14:12:09 -08004186 int ret;
Tao Ma01225592008-08-18 17:38:53 +08004187
4188 mlog(0, "adjust xattrs from cluster %llu len %u to %llu\n",
Joel Becker012ee912008-11-26 14:43:31 -08004189 (unsigned long long)bucket_blkno(first), prev_clusters,
Mark Fashehde29c082008-10-29 14:45:30 -07004190 (unsigned long long)new_blk);
Tao Ma01225592008-08-18 17:38:53 +08004191
Joel Becker41cb8142008-11-26 14:25:21 -08004192 if (ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb)) > 1) {
Tao Ma01225592008-08-18 17:38:53 +08004193 ret = ocfs2_mv_xattr_bucket_cross_cluster(inode,
4194 handle,
Joel Becker41cb8142008-11-26 14:25:21 -08004195 first, target,
Tao Ma01225592008-08-18 17:38:53 +08004196 new_blk,
Tao Ma01225592008-08-18 17:38:53 +08004197 prev_clusters,
4198 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004199 if (ret)
Joel Becker41cb8142008-11-26 14:25:21 -08004200 mlog_errno(ret);
Joel Becker41cb8142008-11-26 14:25:21 -08004201 } else {
Joel Becker92cf3ad2008-11-26 14:12:09 -08004202 /* The start of the last cluster in the first extent */
4203 u64 last_blk = bucket_blkno(first) +
4204 ((prev_clusters - 1) *
4205 ocfs2_clusters_to_blocks(inode->i_sb, 1));
Tao Ma01225592008-08-18 17:38:53 +08004206
Joel Becker012ee912008-11-26 14:43:31 -08004207 if (prev_clusters > 1 && bucket_blkno(target) != last_blk) {
Joel Becker874d65a2008-11-26 13:02:18 -08004208 ret = ocfs2_mv_xattr_buckets(inode, handle,
Joel Becker92cf3ad2008-11-26 14:12:09 -08004209 bucket_blkno(first),
Joel Becker54ecb6b2008-11-26 13:18:31 -08004210 last_blk, new_blk, 0,
Tao Ma01225592008-08-18 17:38:53 +08004211 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004212 if (ret)
4213 mlog_errno(ret);
4214 } else {
Tao Ma80bcaf32008-10-27 06:06:24 +08004215 ret = ocfs2_divide_xattr_cluster(inode, handle,
4216 last_blk, new_blk,
4217 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004218 if (ret)
4219 mlog_errno(ret);
Tao Ma01225592008-08-18 17:38:53 +08004220
Joel Becker92cf3ad2008-11-26 14:12:09 -08004221 if ((bucket_blkno(target) == last_blk) && extend)
Tao Ma01225592008-08-18 17:38:53 +08004222 *extend = 0;
4223 }
4224 }
4225
4226 return ret;
4227}
4228
4229/*
4230 * Add a new cluster for xattr storage.
4231 *
4232 * If the new cluster is contiguous with the previous one, it will be
4233 * appended to the same extent record, and num_clusters will be updated.
4234 * If not, we will insert a new extent for it and move some xattrs in
4235 * the last cluster into the new allocated one.
4236 * We also need to limit the maximum size of a btree leaf, otherwise we'll
4237 * lose the benefits of hashing because we'll have to search large leaves.
4238 * So now the maximum size is OCFS2_MAX_XATTR_TREE_LEAF_SIZE(or clustersize,
4239 * if it's bigger).
4240 *
4241 * first_bh is the first block of the previous extent rec and header_bh
4242 * indicates the bucket we will insert the new xattrs. They will be updated
4243 * when the header_bh is moved into the new cluster.
4244 */
4245static int ocfs2_add_new_xattr_cluster(struct inode *inode,
4246 struct buffer_head *root_bh,
Joel Beckered29c0c2008-11-26 15:08:44 -08004247 struct ocfs2_xattr_bucket *first,
4248 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08004249 u32 *num_clusters,
4250 u32 prev_cpos,
Tao Ma78f30c32008-11-12 08:27:00 +08004251 int *extend,
4252 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004253{
Tao Ma85db90e2008-11-12 08:27:01 +08004254 int ret;
Tao Ma01225592008-08-18 17:38:53 +08004255 u16 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
4256 u32 prev_clusters = *num_clusters;
4257 u32 clusters_to_add = 1, bit_off, num_bits, v_start = 0;
4258 u64 block;
Tao Ma85db90e2008-11-12 08:27:01 +08004259 handle_t *handle = ctxt->handle;
Tao Ma01225592008-08-18 17:38:53 +08004260 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004261 struct ocfs2_extent_tree et;
Tao Ma01225592008-08-18 17:38:53 +08004262
4263 mlog(0, "Add new xattr cluster for %llu, previous xattr hash = %u, "
4264 "previous xattr blkno = %llu\n",
4265 (unsigned long long)OCFS2_I(inode)->ip_blkno,
Joel Beckered29c0c2008-11-26 15:08:44 -08004266 prev_cpos, (unsigned long long)bucket_blkno(first));
Tao Ma01225592008-08-18 17:38:53 +08004267
Joel Becker8d6220d2008-08-22 12:46:09 -07004268 ocfs2_init_xattr_tree_extent_tree(&et, inode, root_bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004269
Joel Becker84008972008-12-09 16:11:49 -08004270 ret = ocfs2_journal_access_xb(handle, inode, root_bh,
4271 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004272 if (ret < 0) {
4273 mlog_errno(ret);
4274 goto leave;
4275 }
4276
Tao Ma78f30c32008-11-12 08:27:00 +08004277 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac, 1,
Tao Ma01225592008-08-18 17:38:53 +08004278 clusters_to_add, &bit_off, &num_bits);
4279 if (ret < 0) {
4280 if (ret != -ENOSPC)
4281 mlog_errno(ret);
4282 goto leave;
4283 }
4284
4285 BUG_ON(num_bits > clusters_to_add);
4286
4287 block = ocfs2_clusters_to_blocks(osb->sb, bit_off);
4288 mlog(0, "Allocating %u clusters at block %u for xattr in inode %llu\n",
4289 num_bits, bit_off, (unsigned long long)OCFS2_I(inode)->ip_blkno);
4290
Joel Beckered29c0c2008-11-26 15:08:44 -08004291 if (bucket_blkno(first) + (prev_clusters * bpc) == block &&
Tao Ma01225592008-08-18 17:38:53 +08004292 (prev_clusters + num_bits) << osb->s_clustersize_bits <=
4293 OCFS2_MAX_XATTR_TREE_LEAF_SIZE) {
4294 /*
4295 * If this cluster is contiguous with the old one and
4296 * adding this new cluster, we don't surpass the limit of
4297 * OCFS2_MAX_XATTR_TREE_LEAF_SIZE, cool. We will let it be
4298 * initialized and used like other buckets in the previous
4299 * cluster.
4300 * So add it as a contiguous one. The caller will handle
4301 * its init process.
4302 */
4303 v_start = prev_cpos + prev_clusters;
4304 *num_clusters = prev_clusters + num_bits;
4305 mlog(0, "Add contiguous %u clusters to previous extent rec.\n",
4306 num_bits);
4307 } else {
4308 ret = ocfs2_adjust_xattr_cross_cluster(inode,
4309 handle,
Joel Becker012ee912008-11-26 14:43:31 -08004310 first,
4311 target,
Tao Ma01225592008-08-18 17:38:53 +08004312 block,
Tao Ma01225592008-08-18 17:38:53 +08004313 prev_clusters,
4314 &v_start,
4315 extend);
4316 if (ret) {
4317 mlog_errno(ret);
4318 goto leave;
4319 }
4320 }
4321
4322 mlog(0, "Insert %u clusters at block %llu for xattr at %u\n",
Mark Fashehde29c082008-10-29 14:45:30 -07004323 num_bits, (unsigned long long)block, v_start);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004324 ret = ocfs2_insert_extent(osb, handle, inode, &et, v_start, block,
Tao Ma78f30c32008-11-12 08:27:00 +08004325 num_bits, 0, ctxt->meta_ac);
Tao Ma01225592008-08-18 17:38:53 +08004326 if (ret < 0) {
4327 mlog_errno(ret);
4328 goto leave;
4329 }
4330
4331 ret = ocfs2_journal_dirty(handle, root_bh);
Tao Ma85db90e2008-11-12 08:27:01 +08004332 if (ret < 0)
Tao Ma01225592008-08-18 17:38:53 +08004333 mlog_errno(ret);
Tao Ma01225592008-08-18 17:38:53 +08004334
4335leave:
Tao Ma01225592008-08-18 17:38:53 +08004336 return ret;
4337}
4338
4339/*
Joel Becker92de1092008-11-25 17:06:40 -08004340 * We are given an extent. 'first' is the bucket at the very front of
4341 * the extent. The extent has space for an additional bucket past
4342 * bucket_xh(first)->xh_num_buckets. 'target_blkno' is the block number
4343 * of the target bucket. We wish to shift every bucket past the target
4344 * down one, filling in that additional space. When we get back to the
4345 * target, we split the target between itself and the now-empty bucket
4346 * at target+1 (aka, target_blkno + blks_per_bucket).
Tao Ma01225592008-08-18 17:38:53 +08004347 */
4348static int ocfs2_extend_xattr_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004349 handle_t *handle,
Joel Becker92de1092008-11-25 17:06:40 -08004350 struct ocfs2_xattr_bucket *first,
4351 u64 target_blk,
Tao Ma01225592008-08-18 17:38:53 +08004352 u32 num_clusters)
4353{
4354 int ret, credits;
4355 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4356 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Joel Becker92de1092008-11-25 17:06:40 -08004357 u64 end_blk;
4358 u16 new_bucket = le16_to_cpu(bucket_xh(first)->xh_num_buckets);
Tao Ma01225592008-08-18 17:38:53 +08004359
4360 mlog(0, "extend xattr bucket in %llu, xattr extend rec starting "
Joel Becker92de1092008-11-25 17:06:40 -08004361 "from %llu, len = %u\n", (unsigned long long)target_blk,
4362 (unsigned long long)bucket_blkno(first), num_clusters);
Tao Ma01225592008-08-18 17:38:53 +08004363
Joel Becker92de1092008-11-25 17:06:40 -08004364 /* The extent must have room for an additional bucket */
4365 BUG_ON(new_bucket >=
4366 (num_clusters * ocfs2_xattr_buckets_per_cluster(osb)));
Tao Ma01225592008-08-18 17:38:53 +08004367
Joel Becker92de1092008-11-25 17:06:40 -08004368 /* end_blk points to the last existing bucket */
4369 end_blk = bucket_blkno(first) + ((new_bucket - 1) * blk_per_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004370
4371 /*
Joel Becker92de1092008-11-25 17:06:40 -08004372 * end_blk is the start of the last existing bucket.
4373 * Thus, (end_blk - target_blk) covers the target bucket and
4374 * every bucket after it up to, but not including, the last
4375 * existing bucket. Then we add the last existing bucket, the
4376 * new bucket, and the first bucket (3 * blk_per_bucket).
Tao Ma01225592008-08-18 17:38:53 +08004377 */
Joel Becker92de1092008-11-25 17:06:40 -08004378 credits = (end_blk - target_blk) + (3 * blk_per_bucket) +
Tao Ma85db90e2008-11-12 08:27:01 +08004379 handle->h_buffer_credits;
4380 ret = ocfs2_extend_trans(handle, credits);
4381 if (ret) {
Tao Ma01225592008-08-18 17:38:53 +08004382 mlog_errno(ret);
4383 goto out;
4384 }
4385
Joel Becker92de1092008-11-25 17:06:40 -08004386 ret = ocfs2_xattr_bucket_journal_access(handle, first,
4387 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004388 if (ret) {
4389 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08004390 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004391 }
4392
Joel Becker92de1092008-11-25 17:06:40 -08004393 while (end_blk != target_blk) {
Tao Ma01225592008-08-18 17:38:53 +08004394 ret = ocfs2_cp_xattr_bucket(inode, handle, end_blk,
4395 end_blk + blk_per_bucket, 0);
4396 if (ret)
Tao Ma85db90e2008-11-12 08:27:01 +08004397 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004398 end_blk -= blk_per_bucket;
4399 }
4400
Joel Becker92de1092008-11-25 17:06:40 -08004401 /* Move half of the xattr in target_blkno to the next bucket. */
4402 ret = ocfs2_divide_xattr_bucket(inode, handle, target_blk,
4403 target_blk + blk_per_bucket, NULL, 0);
Tao Ma01225592008-08-18 17:38:53 +08004404
Joel Becker92de1092008-11-25 17:06:40 -08004405 le16_add_cpu(&bucket_xh(first)->xh_num_buckets, 1);
4406 ocfs2_xattr_bucket_journal_dirty(handle, first);
Tao Ma01225592008-08-18 17:38:53 +08004407
Tao Ma01225592008-08-18 17:38:53 +08004408out:
4409 return ret;
4410}
4411
4412/*
Joel Becker91f20332008-11-26 15:25:41 -08004413 * Add new xattr bucket in an extent record and adjust the buckets
4414 * accordingly. xb_bh is the ocfs2_xattr_block, and target is the
4415 * bucket we want to insert into.
Tao Ma01225592008-08-18 17:38:53 +08004416 *
Joel Becker91f20332008-11-26 15:25:41 -08004417 * In the easy case, we will move all the buckets after target down by
4418 * one. Half of target's xattrs will be moved to the next bucket.
4419 *
4420 * If current cluster is full, we'll allocate a new one. This may not
4421 * be contiguous. The underlying calls will make sure that there is
4422 * space for the insert, shifting buckets around if necessary.
4423 * 'target' may be moved by those calls.
Tao Ma01225592008-08-18 17:38:53 +08004424 */
4425static int ocfs2_add_new_xattr_bucket(struct inode *inode,
4426 struct buffer_head *xb_bh,
Joel Becker91f20332008-11-26 15:25:41 -08004427 struct ocfs2_xattr_bucket *target,
Tao Ma78f30c32008-11-12 08:27:00 +08004428 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004429{
Tao Ma01225592008-08-18 17:38:53 +08004430 struct ocfs2_xattr_block *xb =
4431 (struct ocfs2_xattr_block *)xb_bh->b_data;
4432 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
4433 struct ocfs2_extent_list *el = &xb_root->xt_list;
Joel Becker91f20332008-11-26 15:25:41 -08004434 u32 name_hash =
4435 le32_to_cpu(bucket_xh(target)->xh_entries[0].xe_name_hash);
Joel Beckered29c0c2008-11-26 15:08:44 -08004436 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08004437 int ret, num_buckets, extend = 1;
4438 u64 p_blkno;
4439 u32 e_cpos, num_clusters;
Joel Becker92de1092008-11-25 17:06:40 -08004440 /* The bucket at the front of the extent */
Joel Becker91f20332008-11-26 15:25:41 -08004441 struct ocfs2_xattr_bucket *first;
Tao Ma01225592008-08-18 17:38:53 +08004442
Joel Becker91f20332008-11-26 15:25:41 -08004443 mlog(0, "Add new xattr bucket starting from %llu\n",
4444 (unsigned long long)bucket_blkno(target));
Tao Ma01225592008-08-18 17:38:53 +08004445
Joel Beckered29c0c2008-11-26 15:08:44 -08004446 /* The first bucket of the original extent */
Joel Becker92de1092008-11-25 17:06:40 -08004447 first = ocfs2_xattr_bucket_new(inode);
Joel Becker91f20332008-11-26 15:25:41 -08004448 if (!first) {
Joel Becker92de1092008-11-25 17:06:40 -08004449 ret = -ENOMEM;
4450 mlog_errno(ret);
4451 goto out;
4452 }
4453
Tao Ma01225592008-08-18 17:38:53 +08004454 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &e_cpos,
4455 &num_clusters, el);
4456 if (ret) {
4457 mlog_errno(ret);
4458 goto out;
4459 }
4460
Joel Beckered29c0c2008-11-26 15:08:44 -08004461 ret = ocfs2_read_xattr_bucket(first, p_blkno);
4462 if (ret) {
4463 mlog_errno(ret);
4464 goto out;
4465 }
4466
Tao Ma01225592008-08-18 17:38:53 +08004467 num_buckets = ocfs2_xattr_buckets_per_cluster(osb) * num_clusters;
Joel Beckered29c0c2008-11-26 15:08:44 -08004468 if (num_buckets == le16_to_cpu(bucket_xh(first)->xh_num_buckets)) {
4469 /*
4470 * This can move first+target if the target bucket moves
4471 * to the new extent.
4472 */
Tao Ma01225592008-08-18 17:38:53 +08004473 ret = ocfs2_add_new_xattr_cluster(inode,
4474 xb_bh,
Joel Beckered29c0c2008-11-26 15:08:44 -08004475 first,
4476 target,
Tao Ma01225592008-08-18 17:38:53 +08004477 &num_clusters,
4478 e_cpos,
Tao Ma78f30c32008-11-12 08:27:00 +08004479 &extend,
4480 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004481 if (ret) {
4482 mlog_errno(ret);
4483 goto out;
4484 }
4485 }
4486
Joel Becker92de1092008-11-25 17:06:40 -08004487 if (extend) {
Tao Ma01225592008-08-18 17:38:53 +08004488 ret = ocfs2_extend_xattr_bucket(inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004489 ctxt->handle,
Joel Beckered29c0c2008-11-26 15:08:44 -08004490 first,
4491 bucket_blkno(target),
Tao Ma01225592008-08-18 17:38:53 +08004492 num_clusters);
Joel Becker92de1092008-11-25 17:06:40 -08004493 if (ret)
4494 mlog_errno(ret);
4495 }
4496
Tao Ma01225592008-08-18 17:38:53 +08004497out:
Joel Becker92de1092008-11-25 17:06:40 -08004498 ocfs2_xattr_bucket_free(first);
Joel Beckered29c0c2008-11-26 15:08:44 -08004499
Tao Ma01225592008-08-18 17:38:53 +08004500 return ret;
4501}
4502
4503static inline char *ocfs2_xattr_bucket_get_val(struct inode *inode,
4504 struct ocfs2_xattr_bucket *bucket,
4505 int offs)
4506{
4507 int block_off = offs >> inode->i_sb->s_blocksize_bits;
4508
4509 offs = offs % inode->i_sb->s_blocksize;
Joel Becker51def392008-10-24 16:57:21 -07004510 return bucket_block(bucket, block_off) + offs;
Tao Ma01225592008-08-18 17:38:53 +08004511}
4512
4513/*
4514 * Handle the normal xattr set, including replace, delete and new.
Tao Ma01225592008-08-18 17:38:53 +08004515 *
4516 * Note: "local" indicates the real data's locality. So we can't
4517 * just its bucket locality by its length.
4518 */
4519static void ocfs2_xattr_set_entry_normal(struct inode *inode,
4520 struct ocfs2_xattr_info *xi,
4521 struct ocfs2_xattr_search *xs,
4522 u32 name_hash,
Tao Ma5a095612008-09-19 22:17:41 +08004523 int local)
Tao Ma01225592008-08-18 17:38:53 +08004524{
4525 struct ocfs2_xattr_entry *last, *xe;
4526 int name_len = strlen(xi->name);
4527 struct ocfs2_xattr_header *xh = xs->header;
4528 u16 count = le16_to_cpu(xh->xh_count), start;
4529 size_t blocksize = inode->i_sb->s_blocksize;
4530 char *val;
4531 size_t offs, size, new_size;
4532
4533 last = &xh->xh_entries[count];
4534 if (!xs->not_found) {
4535 xe = xs->here;
4536 offs = le16_to_cpu(xe->xe_name_offset);
4537 if (ocfs2_xattr_is_local(xe))
4538 size = OCFS2_XATTR_SIZE(name_len) +
4539 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
4540 else
4541 size = OCFS2_XATTR_SIZE(name_len) +
4542 OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
4543
4544 /*
4545 * If the new value will be stored outside, xi->value has been
4546 * initalized as an empty ocfs2_xattr_value_root, and the same
4547 * goes with xi->value_len, so we can set new_size safely here.
4548 * See ocfs2_xattr_set_in_bucket.
4549 */
4550 new_size = OCFS2_XATTR_SIZE(name_len) +
4551 OCFS2_XATTR_SIZE(xi->value_len);
4552
4553 le16_add_cpu(&xh->xh_name_value_len, -size);
4554 if (xi->value) {
4555 if (new_size > size)
4556 goto set_new_name_value;
4557
4558 /* Now replace the old value with new one. */
4559 if (local)
4560 xe->xe_value_size = cpu_to_le64(xi->value_len);
4561 else
4562 xe->xe_value_size = 0;
4563
4564 val = ocfs2_xattr_bucket_get_val(inode,
Joel Beckerba937122008-10-24 19:13:20 -07004565 xs->bucket, offs);
Tao Ma01225592008-08-18 17:38:53 +08004566 memset(val + OCFS2_XATTR_SIZE(name_len), 0,
4567 size - OCFS2_XATTR_SIZE(name_len));
4568 if (OCFS2_XATTR_SIZE(xi->value_len) > 0)
4569 memcpy(val + OCFS2_XATTR_SIZE(name_len),
4570 xi->value, xi->value_len);
4571
4572 le16_add_cpu(&xh->xh_name_value_len, new_size);
4573 ocfs2_xattr_set_local(xe, local);
4574 return;
4575 } else {
Tao Ma5a095612008-09-19 22:17:41 +08004576 /*
4577 * Remove the old entry if there is more than one.
4578 * We don't remove the last entry so that we can
4579 * use it to indicate the hash value of the empty
4580 * bucket.
4581 */
Tao Ma01225592008-08-18 17:38:53 +08004582 last -= 1;
Tao Ma01225592008-08-18 17:38:53 +08004583 le16_add_cpu(&xh->xh_count, -1);
Tao Ma5a095612008-09-19 22:17:41 +08004584 if (xh->xh_count) {
4585 memmove(xe, xe + 1,
4586 (void *)last - (void *)xe);
4587 memset(last, 0,
4588 sizeof(struct ocfs2_xattr_entry));
4589 } else
4590 xh->xh_free_start =
4591 cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
4592
Tao Ma01225592008-08-18 17:38:53 +08004593 return;
4594 }
4595 } else {
4596 /* find a new entry for insert. */
4597 int low = 0, high = count - 1, tmp;
4598 struct ocfs2_xattr_entry *tmp_xe;
4599
Tao Ma5a095612008-09-19 22:17:41 +08004600 while (low <= high && count) {
Tao Ma01225592008-08-18 17:38:53 +08004601 tmp = (low + high) / 2;
4602 tmp_xe = &xh->xh_entries[tmp];
4603
4604 if (name_hash > le32_to_cpu(tmp_xe->xe_name_hash))
4605 low = tmp + 1;
4606 else if (name_hash <
4607 le32_to_cpu(tmp_xe->xe_name_hash))
4608 high = tmp - 1;
Tao Ma06b240d2008-09-19 22:16:34 +08004609 else {
4610 low = tmp;
Tao Ma01225592008-08-18 17:38:53 +08004611 break;
Tao Ma06b240d2008-09-19 22:16:34 +08004612 }
Tao Ma01225592008-08-18 17:38:53 +08004613 }
4614
4615 xe = &xh->xh_entries[low];
4616 if (low != count)
4617 memmove(xe + 1, xe, (void *)last - (void *)xe);
4618
4619 le16_add_cpu(&xh->xh_count, 1);
4620 memset(xe, 0, sizeof(struct ocfs2_xattr_entry));
4621 xe->xe_name_hash = cpu_to_le32(name_hash);
4622 xe->xe_name_len = name_len;
4623 ocfs2_xattr_set_type(xe, xi->name_index);
4624 }
4625
4626set_new_name_value:
4627 /* Insert the new name+value. */
4628 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(xi->value_len);
4629
4630 /*
4631 * We must make sure that the name/value pair
4632 * exists in the same block.
4633 */
4634 offs = le16_to_cpu(xh->xh_free_start);
4635 start = offs - size;
4636
4637 if (start >> inode->i_sb->s_blocksize_bits !=
4638 (offs - 1) >> inode->i_sb->s_blocksize_bits) {
4639 offs = offs - offs % blocksize;
4640 xh->xh_free_start = cpu_to_le16(offs);
4641 }
4642
Joel Beckerba937122008-10-24 19:13:20 -07004643 val = ocfs2_xattr_bucket_get_val(inode, xs->bucket, offs - size);
Tao Ma01225592008-08-18 17:38:53 +08004644 xe->xe_name_offset = cpu_to_le16(offs - size);
4645
4646 memset(val, 0, size);
4647 memcpy(val, xi->name, name_len);
4648 memcpy(val + OCFS2_XATTR_SIZE(name_len), xi->value, xi->value_len);
4649
4650 xe->xe_value_size = cpu_to_le64(xi->value_len);
4651 ocfs2_xattr_set_local(xe, local);
4652 xs->here = xe;
4653 le16_add_cpu(&xh->xh_free_start, -size);
4654 le16_add_cpu(&xh->xh_name_value_len, size);
4655
4656 return;
4657}
4658
Tao Ma01225592008-08-18 17:38:53 +08004659/*
4660 * Set the xattr entry in the specified bucket.
4661 * The bucket is indicated by xs->bucket and it should have the enough
4662 * space for the xattr insertion.
4663 */
4664static int ocfs2_xattr_set_entry_in_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004665 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004666 struct ocfs2_xattr_info *xi,
4667 struct ocfs2_xattr_search *xs,
4668 u32 name_hash,
Tao Ma5a095612008-09-19 22:17:41 +08004669 int local)
Tao Ma01225592008-08-18 17:38:53 +08004670{
Joel Becker1224be02008-10-24 18:47:33 -07004671 int ret;
Joel Becker02dbf382008-10-27 18:07:45 -07004672 u64 blkno;
Tao Ma01225592008-08-18 17:38:53 +08004673
Mark Fashehff1ec202008-08-19 10:54:29 -07004674 mlog(0, "Set xattr entry len = %lu index = %d in bucket %llu\n",
4675 (unsigned long)xi->value_len, xi->name_index,
Joel Beckerba937122008-10-24 19:13:20 -07004676 (unsigned long long)bucket_blkno(xs->bucket));
Tao Ma01225592008-08-18 17:38:53 +08004677
Joel Beckerba937122008-10-24 19:13:20 -07004678 if (!xs->bucket->bu_bhs[1]) {
Joel Becker02dbf382008-10-27 18:07:45 -07004679 blkno = bucket_blkno(xs->bucket);
4680 ocfs2_xattr_bucket_relse(xs->bucket);
4681 ret = ocfs2_read_xattr_bucket(xs->bucket, blkno);
Tao Ma01225592008-08-18 17:38:53 +08004682 if (ret) {
4683 mlog_errno(ret);
4684 goto out;
4685 }
4686 }
4687
Joel Beckerba937122008-10-24 19:13:20 -07004688 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
Joel Becker1224be02008-10-24 18:47:33 -07004689 OCFS2_JOURNAL_ACCESS_WRITE);
4690 if (ret < 0) {
4691 mlog_errno(ret);
4692 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004693 }
4694
Tao Ma5a095612008-09-19 22:17:41 +08004695 ocfs2_xattr_set_entry_normal(inode, xi, xs, name_hash, local);
Joel Beckerba937122008-10-24 19:13:20 -07004696 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004697
Tao Ma01225592008-08-18 17:38:53 +08004698out:
Tao Ma01225592008-08-18 17:38:53 +08004699 return ret;
4700}
4701
Tao Ma01225592008-08-18 17:38:53 +08004702/*
4703 * Truncate the specified xe_off entry in xattr bucket.
4704 * bucket is indicated by header_bh and len is the new length.
4705 * Both the ocfs2_xattr_value_root and the entry will be updated here.
4706 *
4707 * Copy the new updated xe and xe_value_root to new_xe and new_xv if needed.
4708 */
4709static int ocfs2_xattr_bucket_value_truncate(struct inode *inode,
Joel Becker548b0f22008-11-24 19:32:13 -08004710 struct ocfs2_xattr_bucket *bucket,
Tao Ma01225592008-08-18 17:38:53 +08004711 int xe_off,
Tao Ma78f30c32008-11-12 08:27:00 +08004712 int len,
4713 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004714{
4715 int ret, offset;
4716 u64 value_blk;
Tao Ma01225592008-08-18 17:38:53 +08004717 struct ocfs2_xattr_entry *xe;
Joel Becker548b0f22008-11-24 19:32:13 -08004718 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma01225592008-08-18 17:38:53 +08004719 size_t blocksize = inode->i_sb->s_blocksize;
Joel Beckerb3e5d372008-12-09 15:01:04 -08004720 struct ocfs2_xattr_value_buf vb = {
4721 .vb_access = ocfs2_journal_access,
4722 };
Tao Ma01225592008-08-18 17:38:53 +08004723
4724 xe = &xh->xh_entries[xe_off];
4725
4726 BUG_ON(!xe || ocfs2_xattr_is_local(xe));
4727
4728 offset = le16_to_cpu(xe->xe_name_offset) +
4729 OCFS2_XATTR_SIZE(xe->xe_name_len);
4730
4731 value_blk = offset / blocksize;
4732
4733 /* We don't allow ocfs2_xattr_value to be stored in different block. */
4734 BUG_ON(value_blk != (offset + OCFS2_XATTR_ROOT_SIZE - 1) / blocksize);
Tao Ma01225592008-08-18 17:38:53 +08004735
Joel Beckerb3e5d372008-12-09 15:01:04 -08004736 vb.vb_bh = bucket->bu_bhs[value_blk];
4737 BUG_ON(!vb.vb_bh);
Tao Ma01225592008-08-18 17:38:53 +08004738
Joel Beckerb3e5d372008-12-09 15:01:04 -08004739 vb.vb_xv = (struct ocfs2_xattr_value_root *)
4740 (vb.vb_bh->b_data + offset % blocksize);
Tao Ma01225592008-08-18 17:38:53 +08004741
Joel Becker548b0f22008-11-24 19:32:13 -08004742 /*
4743 * From here on out we have to dirty the bucket. The generic
4744 * value calls only modify one of the bucket's bhs, but we need
4745 * to send the bucket at once. So if they error, they *could* have
4746 * modified something. We have to assume they did, and dirty
4747 * the whole bucket. This leaves us in a consistent state.
4748 */
Tao Ma01225592008-08-18 17:38:53 +08004749 mlog(0, "truncate %u in xattr bucket %llu to %d bytes.\n",
Joel Becker548b0f22008-11-24 19:32:13 -08004750 xe_off, (unsigned long long)bucket_blkno(bucket), len);
Joel Beckerb3e5d372008-12-09 15:01:04 -08004751 ret = ocfs2_xattr_value_truncate(inode, &vb, len, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004752 if (ret) {
4753 mlog_errno(ret);
Tao Ma554e7f92009-01-08 08:21:43 +08004754 goto out;
4755 }
4756
4757 ret = ocfs2_xattr_bucket_journal_access(ctxt->handle, bucket,
4758 OCFS2_JOURNAL_ACCESS_WRITE);
4759 if (ret) {
4760 mlog_errno(ret);
4761 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004762 }
4763
Joel Becker548b0f22008-11-24 19:32:13 -08004764 xe->xe_value_size = cpu_to_le64(len);
4765
Joel Becker548b0f22008-11-24 19:32:13 -08004766 ocfs2_xattr_bucket_journal_dirty(ctxt->handle, bucket);
Tao Ma01225592008-08-18 17:38:53 +08004767
4768out:
Tao Ma01225592008-08-18 17:38:53 +08004769 return ret;
4770}
4771
4772static int ocfs2_xattr_bucket_value_truncate_xs(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +08004773 struct ocfs2_xattr_search *xs,
4774 int len,
4775 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004776{
4777 int ret, offset;
4778 struct ocfs2_xattr_entry *xe = xs->here;
4779 struct ocfs2_xattr_header *xh = (struct ocfs2_xattr_header *)xs->base;
4780
Joel Beckerba937122008-10-24 19:13:20 -07004781 BUG_ON(!xs->bucket->bu_bhs[0] || !xe || ocfs2_xattr_is_local(xe));
Tao Ma01225592008-08-18 17:38:53 +08004782
4783 offset = xe - xh->xh_entries;
Joel Becker548b0f22008-11-24 19:32:13 -08004784 ret = ocfs2_xattr_bucket_value_truncate(inode, xs->bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08004785 offset, len, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004786 if (ret)
4787 mlog_errno(ret);
4788
4789 return ret;
4790}
4791
4792static int ocfs2_xattr_bucket_set_value_outside(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004793 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004794 struct ocfs2_xattr_search *xs,
4795 char *val,
4796 int value_len)
4797{
Tao Ma712e53e2009-03-12 08:37:34 +08004798 int ret, offset, block_off;
Tao Ma01225592008-08-18 17:38:53 +08004799 struct ocfs2_xattr_value_root *xv;
4800 struct ocfs2_xattr_entry *xe = xs->here;
Tao Ma712e53e2009-03-12 08:37:34 +08004801 struct ocfs2_xattr_header *xh = bucket_xh(xs->bucket);
4802 void *base;
Tao Ma01225592008-08-18 17:38:53 +08004803
4804 BUG_ON(!xs->base || !xe || ocfs2_xattr_is_local(xe));
4805
Tao Ma712e53e2009-03-12 08:37:34 +08004806 ret = ocfs2_xattr_bucket_get_name_value(inode, xh,
4807 xe - xh->xh_entries,
4808 &block_off,
4809 &offset);
4810 if (ret) {
4811 mlog_errno(ret);
4812 goto out;
4813 }
Tao Ma01225592008-08-18 17:38:53 +08004814
Tao Ma712e53e2009-03-12 08:37:34 +08004815 base = bucket_block(xs->bucket, block_off);
4816 xv = (struct ocfs2_xattr_value_root *)(base + offset +
4817 OCFS2_XATTR_SIZE(xe->xe_name_len));
Tao Ma01225592008-08-18 17:38:53 +08004818
Tao Ma712e53e2009-03-12 08:37:34 +08004819 ret = __ocfs2_xattr_set_value_outside(inode, handle,
4820 xv, val, value_len);
4821 if (ret)
4822 mlog_errno(ret);
4823out:
4824 return ret;
Tao Ma01225592008-08-18 17:38:53 +08004825}
4826
Tao Ma01225592008-08-18 17:38:53 +08004827static int ocfs2_rm_xattr_cluster(struct inode *inode,
4828 struct buffer_head *root_bh,
4829 u64 blkno,
4830 u32 cpos,
4831 u32 len)
4832{
4833 int ret;
4834 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4835 struct inode *tl_inode = osb->osb_tl_inode;
4836 handle_t *handle;
4837 struct ocfs2_xattr_block *xb =
4838 (struct ocfs2_xattr_block *)root_bh->b_data;
Tao Ma01225592008-08-18 17:38:53 +08004839 struct ocfs2_alloc_context *meta_ac = NULL;
4840 struct ocfs2_cached_dealloc_ctxt dealloc;
Joel Beckerf99b9b72008-08-20 19:36:33 -07004841 struct ocfs2_extent_tree et;
4842
Joel Becker8d6220d2008-08-22 12:46:09 -07004843 ocfs2_init_xattr_tree_extent_tree(&et, inode, root_bh);
Tao Ma01225592008-08-18 17:38:53 +08004844
4845 ocfs2_init_dealloc_ctxt(&dealloc);
4846
4847 mlog(0, "rm xattr extent rec at %u len = %u, start from %llu\n",
4848 cpos, len, (unsigned long long)blkno);
4849
Joel Becker8cb471e2009-02-10 20:00:41 -08004850 ocfs2_remove_xattr_clusters_from_cache(INODE_CACHE(inode), blkno,
4851 len);
Tao Ma01225592008-08-18 17:38:53 +08004852
Joel Beckerf99b9b72008-08-20 19:36:33 -07004853 ret = ocfs2_lock_allocators(inode, &et, 0, 1, NULL, &meta_ac);
Tao Ma01225592008-08-18 17:38:53 +08004854 if (ret) {
4855 mlog_errno(ret);
4856 return ret;
4857 }
4858
4859 mutex_lock(&tl_inode->i_mutex);
4860
4861 if (ocfs2_truncate_log_needs_flush(osb)) {
4862 ret = __ocfs2_flush_truncate_log(osb);
4863 if (ret < 0) {
4864 mlog_errno(ret);
4865 goto out;
4866 }
4867 }
4868
Jan Karaa90714c2008-10-09 19:38:40 +02004869 handle = ocfs2_start_trans(osb, ocfs2_remove_extent_credits(osb->sb));
Tao Mad3264792008-10-24 07:57:28 +08004870 if (IS_ERR(handle)) {
Tao Ma01225592008-08-18 17:38:53 +08004871 ret = -ENOMEM;
4872 mlog_errno(ret);
4873 goto out;
4874 }
4875
Joel Becker84008972008-12-09 16:11:49 -08004876 ret = ocfs2_journal_access_xb(handle, inode, root_bh,
4877 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004878 if (ret) {
4879 mlog_errno(ret);
4880 goto out_commit;
4881 }
4882
Joel Beckerf99b9b72008-08-20 19:36:33 -07004883 ret = ocfs2_remove_extent(inode, &et, cpos, len, handle, meta_ac,
4884 &dealloc);
Tao Ma01225592008-08-18 17:38:53 +08004885 if (ret) {
4886 mlog_errno(ret);
4887 goto out_commit;
4888 }
4889
4890 le32_add_cpu(&xb->xb_attrs.xb_root.xt_clusters, -len);
4891
4892 ret = ocfs2_journal_dirty(handle, root_bh);
4893 if (ret) {
4894 mlog_errno(ret);
4895 goto out_commit;
4896 }
4897
4898 ret = ocfs2_truncate_log_append(osb, handle, blkno, len);
4899 if (ret)
4900 mlog_errno(ret);
4901
4902out_commit:
4903 ocfs2_commit_trans(osb, handle);
4904out:
4905 ocfs2_schedule_truncate_log_flush(osb, 1);
4906
4907 mutex_unlock(&tl_inode->i_mutex);
4908
4909 if (meta_ac)
4910 ocfs2_free_alloc_context(meta_ac);
4911
4912 ocfs2_run_deallocs(osb, &dealloc);
4913
4914 return ret;
4915}
4916
Tao Ma01225592008-08-18 17:38:53 +08004917static void ocfs2_xattr_bucket_remove_xs(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004918 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004919 struct ocfs2_xattr_search *xs)
4920{
Joel Beckerba937122008-10-24 19:13:20 -07004921 struct ocfs2_xattr_header *xh = bucket_xh(xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004922 struct ocfs2_xattr_entry *last = &xh->xh_entries[
4923 le16_to_cpu(xh->xh_count) - 1];
4924 int ret = 0;
4925
Joel Beckerba937122008-10-24 19:13:20 -07004926 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
Joel Becker1224be02008-10-24 18:47:33 -07004927 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004928 if (ret) {
4929 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08004930 return;
Tao Ma01225592008-08-18 17:38:53 +08004931 }
4932
4933 /* Remove the old entry. */
4934 memmove(xs->here, xs->here + 1,
4935 (void *)last - (void *)xs->here);
4936 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
4937 le16_add_cpu(&xh->xh_count, -1);
4938
Joel Beckerba937122008-10-24 19:13:20 -07004939 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004940}
4941
4942/*
4943 * Set the xattr name/value in the bucket specified in xs.
4944 *
4945 * As the new value in xi may be stored in the bucket or in an outside cluster,
4946 * we divide the whole process into 3 steps:
4947 * 1. insert name/value in the bucket(ocfs2_xattr_set_entry_in_bucket)
4948 * 2. truncate of the outside cluster(ocfs2_xattr_bucket_value_truncate_xs)
4949 * 3. Set the value to the outside cluster(ocfs2_xattr_bucket_set_value_outside)
4950 * 4. If the clusters for the new outside value can't be allocated, we need
4951 * to free the xattr we allocated in set.
4952 */
4953static int ocfs2_xattr_set_in_bucket(struct inode *inode,
4954 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08004955 struct ocfs2_xattr_search *xs,
4956 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004957{
Tao Ma5a095612008-09-19 22:17:41 +08004958 int ret, local = 1;
Tao Ma01225592008-08-18 17:38:53 +08004959 size_t value_len;
4960 char *val = (char *)xi->value;
4961 struct ocfs2_xattr_entry *xe = xs->here;
Tao Ma2057e5c2008-10-09 23:06:13 +08004962 u32 name_hash = ocfs2_xattr_name_hash(inode, xi->name,
4963 strlen(xi->name));
Tao Ma01225592008-08-18 17:38:53 +08004964
4965 if (!xs->not_found && !ocfs2_xattr_is_local(xe)) {
4966 /*
4967 * We need to truncate the xattr storage first.
4968 *
4969 * If both the old and new value are stored to
4970 * outside block, we only need to truncate
4971 * the storage and then set the value outside.
4972 *
4973 * If the new value should be stored within block,
4974 * we should free all the outside block first and
4975 * the modification to the xattr block will be done
4976 * by following steps.
4977 */
4978 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
4979 value_len = xi->value_len;
4980 else
4981 value_len = 0;
4982
4983 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
Tao Ma78f30c32008-11-12 08:27:00 +08004984 value_len,
4985 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004986 if (ret)
4987 goto out;
4988
4989 if (value_len)
4990 goto set_value_outside;
4991 }
4992
4993 value_len = xi->value_len;
4994 /* So we have to handle the inside block change now. */
4995 if (value_len > OCFS2_XATTR_INLINE_SIZE) {
4996 /*
4997 * If the new value will be stored outside of block,
4998 * initalize a new empty value root and insert it first.
4999 */
5000 local = 0;
5001 xi->value = &def_xv;
5002 xi->value_len = OCFS2_XATTR_ROOT_SIZE;
5003 }
5004
Tao Ma85db90e2008-11-12 08:27:01 +08005005 ret = ocfs2_xattr_set_entry_in_bucket(inode, ctxt->handle, xi, xs,
5006 name_hash, local);
Tao Ma01225592008-08-18 17:38:53 +08005007 if (ret) {
5008 mlog_errno(ret);
5009 goto out;
5010 }
5011
Tao Ma5a095612008-09-19 22:17:41 +08005012 if (value_len <= OCFS2_XATTR_INLINE_SIZE)
5013 goto out;
Tao Ma01225592008-08-18 17:38:53 +08005014
Tao Ma5a095612008-09-19 22:17:41 +08005015 /* allocate the space now for the outside block storage. */
5016 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
Tao Ma78f30c32008-11-12 08:27:00 +08005017 value_len, ctxt);
Tao Ma5a095612008-09-19 22:17:41 +08005018 if (ret) {
5019 mlog_errno(ret);
5020
5021 if (xs->not_found) {
5022 /*
5023 * We can't allocate enough clusters for outside
5024 * storage and we have allocated xattr already,
5025 * so need to remove it.
5026 */
Tao Ma85db90e2008-11-12 08:27:01 +08005027 ocfs2_xattr_bucket_remove_xs(inode, ctxt->handle, xs);
Tao Ma01225592008-08-18 17:38:53 +08005028 }
Tao Ma01225592008-08-18 17:38:53 +08005029 goto out;
5030 }
5031
5032set_value_outside:
Tao Ma85db90e2008-11-12 08:27:01 +08005033 ret = ocfs2_xattr_bucket_set_value_outside(inode, ctxt->handle,
5034 xs, val, value_len);
Tao Ma01225592008-08-18 17:38:53 +08005035out:
5036 return ret;
5037}
5038
Tao Ma80bcaf32008-10-27 06:06:24 +08005039/*
5040 * check whether the xattr bucket is filled up with the same hash value.
5041 * If we want to insert the xattr with the same hash, return -ENOSPC.
5042 * If we want to insert a xattr with different hash value, go ahead
5043 * and ocfs2_divide_xattr_bucket will handle this.
5044 */
Tao Ma01225592008-08-18 17:38:53 +08005045static int ocfs2_check_xattr_bucket_collision(struct inode *inode,
Tao Ma80bcaf32008-10-27 06:06:24 +08005046 struct ocfs2_xattr_bucket *bucket,
5047 const char *name)
Tao Ma01225592008-08-18 17:38:53 +08005048{
Joel Becker3e632942008-10-24 17:04:49 -07005049 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08005050 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
5051
5052 if (name_hash != le32_to_cpu(xh->xh_entries[0].xe_name_hash))
5053 return 0;
Tao Ma01225592008-08-18 17:38:53 +08005054
5055 if (xh->xh_entries[le16_to_cpu(xh->xh_count) - 1].xe_name_hash ==
5056 xh->xh_entries[0].xe_name_hash) {
5057 mlog(ML_ERROR, "Too much hash collision in xattr bucket %llu, "
5058 "hash = %u\n",
Joel Becker9c7759a2008-10-24 16:21:03 -07005059 (unsigned long long)bucket_blkno(bucket),
Tao Ma01225592008-08-18 17:38:53 +08005060 le32_to_cpu(xh->xh_entries[0].xe_name_hash));
5061 return -ENOSPC;
5062 }
5063
5064 return 0;
5065}
5066
5067static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
5068 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08005069 struct ocfs2_xattr_search *xs,
5070 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08005071{
5072 struct ocfs2_xattr_header *xh;
5073 struct ocfs2_xattr_entry *xe;
5074 u16 count, header_size, xh_free_start;
Joel Becker6dde41d2008-10-24 17:16:48 -07005075 int free, max_free, need, old;
Tao Ma01225592008-08-18 17:38:53 +08005076 size_t value_size = 0, name_len = strlen(xi->name);
5077 size_t blocksize = inode->i_sb->s_blocksize;
5078 int ret, allocation = 0;
Tao Ma01225592008-08-18 17:38:53 +08005079
5080 mlog_entry("Set xattr %s in xattr index block\n", xi->name);
5081
5082try_again:
5083 xh = xs->header;
5084 count = le16_to_cpu(xh->xh_count);
5085 xh_free_start = le16_to_cpu(xh->xh_free_start);
5086 header_size = sizeof(struct ocfs2_xattr_header) +
5087 count * sizeof(struct ocfs2_xattr_entry);
Tiger Yang4442f512009-02-20 11:11:50 +08005088 max_free = OCFS2_XATTR_BUCKET_SIZE - header_size -
5089 le16_to_cpu(xh->xh_name_value_len) - OCFS2_XATTR_HEADER_GAP;
Tao Ma01225592008-08-18 17:38:53 +08005090
5091 mlog_bug_on_msg(header_size > blocksize, "bucket %llu has header size "
5092 "of %u which exceed block size\n",
Joel Beckerba937122008-10-24 19:13:20 -07005093 (unsigned long long)bucket_blkno(xs->bucket),
Tao Ma01225592008-08-18 17:38:53 +08005094 header_size);
5095
5096 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE)
5097 value_size = OCFS2_XATTR_ROOT_SIZE;
5098 else if (xi->value)
5099 value_size = OCFS2_XATTR_SIZE(xi->value_len);
5100
5101 if (xs->not_found)
5102 need = sizeof(struct ocfs2_xattr_entry) +
5103 OCFS2_XATTR_SIZE(name_len) + value_size;
5104 else {
5105 need = value_size + OCFS2_XATTR_SIZE(name_len);
5106
5107 /*
5108 * We only replace the old value if the new length is smaller
5109 * than the old one. Otherwise we will allocate new space in the
5110 * bucket to store it.
5111 */
5112 xe = xs->here;
5113 if (ocfs2_xattr_is_local(xe))
5114 old = OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
5115 else
5116 old = OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
5117
5118 if (old >= value_size)
5119 need = 0;
5120 }
5121
Tiger Yang4442f512009-02-20 11:11:50 +08005122 free = xh_free_start - header_size - OCFS2_XATTR_HEADER_GAP;
Tao Ma01225592008-08-18 17:38:53 +08005123 /*
5124 * We need to make sure the new name/value pair
5125 * can exist in the same block.
5126 */
5127 if (xh_free_start % blocksize < need)
5128 free -= xh_free_start % blocksize;
5129
5130 mlog(0, "xs->not_found = %d, in xattr bucket %llu: free = %d, "
5131 "need = %d, max_free = %d, xh_free_start = %u, xh_name_value_len ="
5132 " %u\n", xs->not_found,
Joel Beckerba937122008-10-24 19:13:20 -07005133 (unsigned long long)bucket_blkno(xs->bucket),
Tao Ma01225592008-08-18 17:38:53 +08005134 free, need, max_free, le16_to_cpu(xh->xh_free_start),
5135 le16_to_cpu(xh->xh_name_value_len));
5136
Tao Ma976331d2008-11-12 08:26:57 +08005137 if (free < need ||
5138 (xs->not_found &&
5139 count == ocfs2_xattr_max_xe_in_bucket(inode->i_sb))) {
Tao Ma01225592008-08-18 17:38:53 +08005140 if (need <= max_free &&
5141 count < ocfs2_xattr_max_xe_in_bucket(inode->i_sb)) {
5142 /*
5143 * We can create the space by defragment. Since only the
5144 * name/value will be moved, the xe shouldn't be changed
5145 * in xs.
5146 */
Tao Ma85db90e2008-11-12 08:27:01 +08005147 ret = ocfs2_defrag_xattr_bucket(inode, ctxt->handle,
5148 xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08005149 if (ret) {
5150 mlog_errno(ret);
5151 goto out;
5152 }
5153
5154 xh_free_start = le16_to_cpu(xh->xh_free_start);
Tiger Yang4442f512009-02-20 11:11:50 +08005155 free = xh_free_start - header_size
5156 - OCFS2_XATTR_HEADER_GAP;
Tao Ma01225592008-08-18 17:38:53 +08005157 if (xh_free_start % blocksize < need)
5158 free -= xh_free_start % blocksize;
5159
5160 if (free >= need)
5161 goto xattr_set;
5162
5163 mlog(0, "Can't get enough space for xattr insert by "
5164 "defragment. Need %u bytes, but we have %d, so "
5165 "allocate new bucket for it.\n", need, free);
5166 }
5167
5168 /*
5169 * We have to add new buckets or clusters and one
5170 * allocation should leave us enough space for insert.
5171 */
5172 BUG_ON(allocation);
5173
5174 /*
5175 * We do not allow for overlapping ranges between buckets. And
5176 * the maximum number of collisions we will allow for then is
5177 * one bucket's worth, so check it here whether we need to
5178 * add a new bucket for the insert.
5179 */
Tao Ma80bcaf32008-10-27 06:06:24 +08005180 ret = ocfs2_check_xattr_bucket_collision(inode,
Joel Beckerba937122008-10-24 19:13:20 -07005181 xs->bucket,
Tao Ma80bcaf32008-10-27 06:06:24 +08005182 xi->name);
Tao Ma01225592008-08-18 17:38:53 +08005183 if (ret) {
5184 mlog_errno(ret);
5185 goto out;
5186 }
5187
5188 ret = ocfs2_add_new_xattr_bucket(inode,
5189 xs->xattr_bh,
Joel Becker91f20332008-11-26 15:25:41 -08005190 xs->bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08005191 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08005192 if (ret) {
5193 mlog_errno(ret);
5194 goto out;
5195 }
5196
Joel Becker91f20332008-11-26 15:25:41 -08005197 /*
5198 * ocfs2_add_new_xattr_bucket() will have updated
5199 * xs->bucket if it moved, but it will not have updated
5200 * any of the other search fields. Thus, we drop it and
5201 * re-search. Everything should be cached, so it'll be
5202 * quick.
5203 */
Joel Beckerba937122008-10-24 19:13:20 -07005204 ocfs2_xattr_bucket_relse(xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08005205 ret = ocfs2_xattr_index_block_find(inode, xs->xattr_bh,
5206 xi->name_index,
5207 xi->name, xs);
5208 if (ret && ret != -ENODATA)
5209 goto out;
5210 xs->not_found = ret;
5211 allocation = 1;
5212 goto try_again;
5213 }
5214
5215xattr_set:
Tao Ma78f30c32008-11-12 08:27:00 +08005216 ret = ocfs2_xattr_set_in_bucket(inode, xi, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08005217out:
5218 mlog_exit(ret);
5219 return ret;
5220}
Tao Maa3944252008-08-18 17:38:54 +08005221
5222static int ocfs2_delete_xattr_in_bucket(struct inode *inode,
5223 struct ocfs2_xattr_bucket *bucket,
5224 void *para)
5225{
5226 int ret = 0;
Joel Becker3e632942008-10-24 17:04:49 -07005227 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Maa3944252008-08-18 17:38:54 +08005228 u16 i;
5229 struct ocfs2_xattr_entry *xe;
Tao Ma78f30c32008-11-12 08:27:00 +08005230 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5231 struct ocfs2_xattr_set_ctxt ctxt = {NULL, NULL,};
Joel Becker548b0f22008-11-24 19:32:13 -08005232 int credits = ocfs2_remove_extent_credits(osb->sb) +
5233 ocfs2_blocks_per_xattr_bucket(inode->i_sb);
5234
Tao Ma78f30c32008-11-12 08:27:00 +08005235
5236 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
Tao Maa3944252008-08-18 17:38:54 +08005237
5238 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
5239 xe = &xh->xh_entries[i];
5240 if (ocfs2_xattr_is_local(xe))
5241 continue;
5242
Tao Ma88c3b062008-12-11 08:54:11 +08005243 ctxt.handle = ocfs2_start_trans(osb, credits);
5244 if (IS_ERR(ctxt.handle)) {
5245 ret = PTR_ERR(ctxt.handle);
5246 mlog_errno(ret);
5247 break;
5248 }
5249
Joel Becker548b0f22008-11-24 19:32:13 -08005250 ret = ocfs2_xattr_bucket_value_truncate(inode, bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08005251 i, 0, &ctxt);
Tao Ma88c3b062008-12-11 08:54:11 +08005252
5253 ocfs2_commit_trans(osb, ctxt.handle);
Tao Maa3944252008-08-18 17:38:54 +08005254 if (ret) {
5255 mlog_errno(ret);
5256 break;
5257 }
5258 }
5259
Tao Ma78f30c32008-11-12 08:27:00 +08005260 ocfs2_schedule_truncate_log_flush(osb, 1);
5261 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tao Maa3944252008-08-18 17:38:54 +08005262 return ret;
5263}
5264
5265static int ocfs2_delete_xattr_index_block(struct inode *inode,
5266 struct buffer_head *xb_bh)
5267{
5268 struct ocfs2_xattr_block *xb =
5269 (struct ocfs2_xattr_block *)xb_bh->b_data;
5270 struct ocfs2_extent_list *el = &xb->xb_attrs.xb_root.xt_list;
5271 int ret = 0;
5272 u32 name_hash = UINT_MAX, e_cpos, num_clusters;
5273 u64 p_blkno;
5274
5275 if (le16_to_cpu(el->l_next_free_rec) == 0)
5276 return 0;
5277
5278 while (name_hash > 0) {
5279 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
5280 &e_cpos, &num_clusters, el);
5281 if (ret) {
5282 mlog_errno(ret);
5283 goto out;
5284 }
5285
5286 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
5287 ocfs2_delete_xattr_in_bucket,
5288 NULL);
5289 if (ret) {
5290 mlog_errno(ret);
5291 goto out;
5292 }
5293
5294 ret = ocfs2_rm_xattr_cluster(inode, xb_bh,
5295 p_blkno, e_cpos, num_clusters);
5296 if (ret) {
5297 mlog_errno(ret);
5298 break;
5299 }
5300
5301 if (e_cpos == 0)
5302 break;
5303
5304 name_hash = e_cpos - 1;
5305 }
5306
5307out:
5308 return ret;
5309}
Mark Fasheh99219ae2008-10-07 14:52:59 -07005310
5311/*
Tiger Yang923f7f32008-11-14 11:16:27 +08005312 * 'security' attributes support
5313 */
5314static size_t ocfs2_xattr_security_list(struct inode *inode, char *list,
5315 size_t list_size, const char *name,
5316 size_t name_len)
5317{
5318 const size_t prefix_len = XATTR_SECURITY_PREFIX_LEN;
5319 const size_t total_len = prefix_len + name_len + 1;
5320
5321 if (list && total_len <= list_size) {
5322 memcpy(list, XATTR_SECURITY_PREFIX, prefix_len);
5323 memcpy(list + prefix_len, name, name_len);
5324 list[prefix_len + name_len] = '\0';
5325 }
5326 return total_len;
5327}
5328
5329static int ocfs2_xattr_security_get(struct inode *inode, const char *name,
5330 void *buffer, size_t size)
5331{
5332 if (strcmp(name, "") == 0)
5333 return -EINVAL;
5334 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_SECURITY, name,
5335 buffer, size);
5336}
5337
5338static int ocfs2_xattr_security_set(struct inode *inode, const char *name,
5339 const void *value, size_t size, int flags)
5340{
5341 if (strcmp(name, "") == 0)
5342 return -EINVAL;
5343
5344 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_SECURITY, name, value,
5345 size, flags);
5346}
5347
Tiger Yang534eadd2008-11-14 11:16:41 +08005348int ocfs2_init_security_get(struct inode *inode,
5349 struct inode *dir,
5350 struct ocfs2_security_xattr_info *si)
5351{
Tiger Yang38d59ef2008-12-17 10:22:56 +08005352 /* check whether ocfs2 support feature xattr */
5353 if (!ocfs2_supports_xattr(OCFS2_SB(dir->i_sb)))
5354 return -EOPNOTSUPP;
Tiger Yang534eadd2008-11-14 11:16:41 +08005355 return security_inode_init_security(inode, dir, &si->name, &si->value,
5356 &si->value_len);
5357}
5358
5359int ocfs2_init_security_set(handle_t *handle,
5360 struct inode *inode,
5361 struct buffer_head *di_bh,
5362 struct ocfs2_security_xattr_info *si,
5363 struct ocfs2_alloc_context *xattr_ac,
5364 struct ocfs2_alloc_context *data_ac)
5365{
5366 return ocfs2_xattr_set_handle(handle, inode, di_bh,
5367 OCFS2_XATTR_INDEX_SECURITY,
5368 si->name, si->value, si->value_len, 0,
5369 xattr_ac, data_ac);
5370}
5371
Tiger Yang923f7f32008-11-14 11:16:27 +08005372struct xattr_handler ocfs2_xattr_security_handler = {
5373 .prefix = XATTR_SECURITY_PREFIX,
5374 .list = ocfs2_xattr_security_list,
5375 .get = ocfs2_xattr_security_get,
5376 .set = ocfs2_xattr_security_set,
5377};
5378
5379/*
Mark Fasheh99219ae2008-10-07 14:52:59 -07005380 * 'trusted' attributes support
5381 */
Mark Fasheh99219ae2008-10-07 14:52:59 -07005382static size_t ocfs2_xattr_trusted_list(struct inode *inode, char *list,
5383 size_t list_size, const char *name,
5384 size_t name_len)
5385{
Tiger Yangceb1eba2008-10-23 16:34:13 +08005386 const size_t prefix_len = XATTR_TRUSTED_PREFIX_LEN;
Mark Fasheh99219ae2008-10-07 14:52:59 -07005387 const size_t total_len = prefix_len + name_len + 1;
5388
5389 if (list && total_len <= list_size) {
5390 memcpy(list, XATTR_TRUSTED_PREFIX, prefix_len);
5391 memcpy(list + prefix_len, name, name_len);
5392 list[prefix_len + name_len] = '\0';
5393 }
5394 return total_len;
5395}
5396
5397static int ocfs2_xattr_trusted_get(struct inode *inode, const char *name,
5398 void *buffer, size_t size)
5399{
5400 if (strcmp(name, "") == 0)
5401 return -EINVAL;
5402 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_TRUSTED, name,
5403 buffer, size);
5404}
5405
5406static int ocfs2_xattr_trusted_set(struct inode *inode, const char *name,
5407 const void *value, size_t size, int flags)
5408{
5409 if (strcmp(name, "") == 0)
5410 return -EINVAL;
5411
5412 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_TRUSTED, name, value,
5413 size, flags);
5414}
5415
5416struct xattr_handler ocfs2_xattr_trusted_handler = {
5417 .prefix = XATTR_TRUSTED_PREFIX,
5418 .list = ocfs2_xattr_trusted_list,
5419 .get = ocfs2_xattr_trusted_get,
5420 .set = ocfs2_xattr_trusted_set,
5421};
5422
Mark Fasheh99219ae2008-10-07 14:52:59 -07005423/*
5424 * 'user' attributes support
5425 */
Mark Fasheh99219ae2008-10-07 14:52:59 -07005426static size_t ocfs2_xattr_user_list(struct inode *inode, char *list,
5427 size_t list_size, const char *name,
5428 size_t name_len)
5429{
Tiger Yangceb1eba2008-10-23 16:34:13 +08005430 const size_t prefix_len = XATTR_USER_PREFIX_LEN;
Mark Fasheh99219ae2008-10-07 14:52:59 -07005431 const size_t total_len = prefix_len + name_len + 1;
5432 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5433
5434 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5435 return 0;
5436
5437 if (list && total_len <= list_size) {
5438 memcpy(list, XATTR_USER_PREFIX, prefix_len);
5439 memcpy(list + prefix_len, name, name_len);
5440 list[prefix_len + name_len] = '\0';
5441 }
5442 return total_len;
5443}
5444
5445static int ocfs2_xattr_user_get(struct inode *inode, const char *name,
5446 void *buffer, size_t size)
5447{
5448 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5449
5450 if (strcmp(name, "") == 0)
5451 return -EINVAL;
5452 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5453 return -EOPNOTSUPP;
5454 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_USER, name,
5455 buffer, size);
5456}
5457
5458static int ocfs2_xattr_user_set(struct inode *inode, const char *name,
5459 const void *value, size_t size, int flags)
5460{
5461 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5462
5463 if (strcmp(name, "") == 0)
5464 return -EINVAL;
5465 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5466 return -EOPNOTSUPP;
5467
5468 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_USER, name, value,
5469 size, flags);
5470}
5471
5472struct xattr_handler ocfs2_xattr_user_handler = {
5473 .prefix = XATTR_USER_PREFIX,
5474 .list = ocfs2_xattr_user_list,
5475 .get = ocfs2_xattr_user_get,
5476 .set = ocfs2_xattr_user_set,
5477};