blob: 15631019dc634561838919310b2566e263f1d8dc [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
Tao Ma757055a2008-11-06 08:10:48 +0800257 if (!ocfs2_buffer_uptodate(bucket->bu_inode,
258 bucket->bu_bhs[i]))
259 ocfs2_set_new_buffer_uptodate(bucket->bu_inode,
260 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 Beckerba937122008-10-24 19:13:20 -0700274 rc = ocfs2_read_blocks(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 Becker970e4932008-11-13 14:49:19 -0800402 rc = ocfs2_read_block(inode, xb_blkno, &tmp,
403 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);
727 ocfs2_remove_xattr_clusters_from_cache(inode, block,
728 alloc_size);
729 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 Becker970e4932008-11-13 14:49:19 -0800973 ret = ocfs2_read_block(inode, blkno, &bh, NULL);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800974 if (ret) {
975 mlog_errno(ret);
976 goto out;
977 }
978
979 cplen = len >= blocksize ? blocksize : len;
980 memcpy(buffer, bh->b_data, cplen);
981 len -= cplen;
982 buffer += cplen;
983
984 brelse(bh);
985 bh = NULL;
986 if (len == 0)
987 break;
988 }
989 cpos += num_clusters;
990 }
991out:
992 return ret;
993}
994
995static int ocfs2_xattr_ibody_get(struct inode *inode,
996 int name_index,
997 const char *name,
998 void *buffer,
999 size_t buffer_size,
1000 struct ocfs2_xattr_search *xs)
1001{
1002 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1003 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
Tao Ma589dc262008-08-18 17:38:51 +08001004 struct ocfs2_xattr_value_root *xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001005 size_t size;
1006 int ret = 0;
1007
1008 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
1009 return -ENODATA;
1010
1011 xs->end = (void *)di + inode->i_sb->s_blocksize;
1012 xs->header = (struct ocfs2_xattr_header *)
1013 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
1014 xs->base = (void *)xs->header;
1015 xs->here = xs->header->xh_entries;
1016
1017 ret = ocfs2_xattr_find_entry(name_index, name, xs);
1018 if (ret)
1019 return ret;
1020 size = le64_to_cpu(xs->here->xe_value_size);
1021 if (buffer) {
1022 if (size > buffer_size)
1023 return -ERANGE;
1024 if (ocfs2_xattr_is_local(xs->here)) {
1025 memcpy(buffer, (void *)xs->base +
1026 le16_to_cpu(xs->here->xe_name_offset) +
1027 OCFS2_XATTR_SIZE(xs->here->xe_name_len), size);
1028 } else {
Tao Ma589dc262008-08-18 17:38:51 +08001029 xv = (struct ocfs2_xattr_value_root *)
1030 (xs->base + le16_to_cpu(
1031 xs->here->xe_name_offset) +
1032 OCFS2_XATTR_SIZE(xs->here->xe_name_len));
1033 ret = ocfs2_xattr_get_value_outside(inode, xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001034 buffer, size);
1035 if (ret < 0) {
1036 mlog_errno(ret);
1037 return ret;
1038 }
1039 }
1040 }
1041
1042 return size;
1043}
1044
1045static int ocfs2_xattr_block_get(struct inode *inode,
1046 int name_index,
1047 const char *name,
1048 void *buffer,
1049 size_t buffer_size,
1050 struct ocfs2_xattr_search *xs)
1051{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001052 struct ocfs2_xattr_block *xb;
Tao Ma589dc262008-08-18 17:38:51 +08001053 struct ocfs2_xattr_value_root *xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001054 size_t size;
Tao Ma589dc262008-08-18 17:38:51 +08001055 int ret = -ENODATA, name_offset, name_len, block_off, i;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001056
Joel Beckerba937122008-10-24 19:13:20 -07001057 xs->bucket = ocfs2_xattr_bucket_new(inode);
1058 if (!xs->bucket) {
1059 ret = -ENOMEM;
1060 mlog_errno(ret);
1061 goto cleanup;
1062 }
Tao Ma589dc262008-08-18 17:38:51 +08001063
Joel Becker54f443f2008-10-20 18:43:07 -07001064 ret = ocfs2_xattr_block_find(inode, name_index, name, xs);
1065 if (ret) {
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001066 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001067 goto cleanup;
1068 }
1069
Tiger Yang6c1e1832008-11-02 19:04:21 +08001070 if (xs->not_found) {
1071 ret = -ENODATA;
1072 goto cleanup;
1073 }
1074
Joel Becker54f443f2008-10-20 18:43:07 -07001075 xb = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001076 size = le64_to_cpu(xs->here->xe_value_size);
1077 if (buffer) {
1078 ret = -ERANGE;
1079 if (size > buffer_size)
1080 goto cleanup;
Tao Ma589dc262008-08-18 17:38:51 +08001081
1082 name_offset = le16_to_cpu(xs->here->xe_name_offset);
1083 name_len = OCFS2_XATTR_SIZE(xs->here->xe_name_len);
1084 i = xs->here - xs->header->xh_entries;
1085
1086 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
1087 ret = ocfs2_xattr_bucket_get_name_value(inode,
Joel Beckerba937122008-10-24 19:13:20 -07001088 bucket_xh(xs->bucket),
Tao Ma589dc262008-08-18 17:38:51 +08001089 i,
1090 &block_off,
1091 &name_offset);
Joel Beckerba937122008-10-24 19:13:20 -07001092 xs->base = bucket_block(xs->bucket, block_off);
Tao Ma589dc262008-08-18 17:38:51 +08001093 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001094 if (ocfs2_xattr_is_local(xs->here)) {
1095 memcpy(buffer, (void *)xs->base +
Tao Ma589dc262008-08-18 17:38:51 +08001096 name_offset + name_len, size);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001097 } else {
Tao Ma589dc262008-08-18 17:38:51 +08001098 xv = (struct ocfs2_xattr_value_root *)
1099 (xs->base + name_offset + name_len);
1100 ret = ocfs2_xattr_get_value_outside(inode, xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001101 buffer, size);
1102 if (ret < 0) {
1103 mlog_errno(ret);
1104 goto cleanup;
1105 }
1106 }
1107 }
1108 ret = size;
1109cleanup:
Joel Beckerba937122008-10-24 19:13:20 -07001110 ocfs2_xattr_bucket_free(xs->bucket);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001111
Joel Becker54f443f2008-10-20 18:43:07 -07001112 brelse(xs->xattr_bh);
1113 xs->xattr_bh = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001114 return ret;
1115}
1116
Tiger Yang4e3e9d02008-11-14 11:16:53 +08001117int ocfs2_xattr_get_nolock(struct inode *inode,
1118 struct buffer_head *di_bh,
Tiger Yang0030e002008-10-23 16:33:33 +08001119 int name_index,
1120 const char *name,
1121 void *buffer,
1122 size_t buffer_size)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001123{
1124 int ret;
1125 struct ocfs2_dinode *di = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001126 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1127 struct ocfs2_xattr_search xis = {
1128 .not_found = -ENODATA,
1129 };
1130 struct ocfs2_xattr_search xbs = {
1131 .not_found = -ENODATA,
1132 };
1133
Tiger Yang8154da32008-08-18 17:11:46 +08001134 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1135 return -EOPNOTSUPP;
1136
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001137 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1138 ret = -ENODATA;
1139
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001140 xis.inode_bh = xbs.inode_bh = di_bh;
1141 di = (struct ocfs2_dinode *)di_bh->b_data;
1142
1143 down_read(&oi->ip_xattr_sem);
1144 ret = ocfs2_xattr_ibody_get(inode, name_index, name, buffer,
1145 buffer_size, &xis);
Tiger Yang6c1e1832008-11-02 19:04:21 +08001146 if (ret == -ENODATA && di->i_xattr_loc)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001147 ret = ocfs2_xattr_block_get(inode, name_index, name, buffer,
1148 buffer_size, &xbs);
1149 up_read(&oi->ip_xattr_sem);
Tiger Yang4e3e9d02008-11-14 11:16:53 +08001150
1151 return ret;
1152}
1153
1154/* ocfs2_xattr_get()
1155 *
1156 * Copy an extended attribute into the buffer provided.
1157 * Buffer is NULL to compute the size of buffer required.
1158 */
1159static int ocfs2_xattr_get(struct inode *inode,
1160 int name_index,
1161 const char *name,
1162 void *buffer,
1163 size_t buffer_size)
1164{
1165 int ret;
1166 struct buffer_head *di_bh = NULL;
1167
1168 ret = ocfs2_inode_lock(inode, &di_bh, 0);
1169 if (ret < 0) {
1170 mlog_errno(ret);
1171 return ret;
1172 }
1173 ret = ocfs2_xattr_get_nolock(inode, di_bh, name_index,
1174 name, buffer, buffer_size);
1175
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001176 ocfs2_inode_unlock(inode, 0);
1177
1178 brelse(di_bh);
1179
1180 return ret;
1181}
1182
1183static int __ocfs2_xattr_set_value_outside(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001184 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001185 struct ocfs2_xattr_value_root *xv,
1186 const void *value,
1187 int value_len)
1188{
Tao Ma71d548a2008-12-05 06:20:54 +08001189 int ret = 0, i, cp_len;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001190 u16 blocksize = inode->i_sb->s_blocksize;
1191 u32 p_cluster, num_clusters;
1192 u32 cpos = 0, bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
1193 u32 clusters = ocfs2_clusters_for_bytes(inode->i_sb, value_len);
1194 u64 blkno;
1195 struct buffer_head *bh = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001196
1197 BUG_ON(clusters > le32_to_cpu(xv->xr_clusters));
1198
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001199 while (cpos < clusters) {
1200 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
1201 &num_clusters, &xv->xr_list);
1202 if (ret) {
1203 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001204 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001205 }
1206
1207 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
1208
1209 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
Joel Becker970e4932008-11-13 14:49:19 -08001210 ret = ocfs2_read_block(inode, blkno, &bh, NULL);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001211 if (ret) {
1212 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001213 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001214 }
1215
1216 ret = ocfs2_journal_access(handle,
1217 inode,
1218 bh,
1219 OCFS2_JOURNAL_ACCESS_WRITE);
1220 if (ret < 0) {
1221 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001222 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001223 }
1224
1225 cp_len = value_len > blocksize ? blocksize : value_len;
1226 memcpy(bh->b_data, value, cp_len);
1227 value_len -= cp_len;
1228 value += cp_len;
1229 if (cp_len < blocksize)
1230 memset(bh->b_data + cp_len, 0,
1231 blocksize - cp_len);
1232
1233 ret = ocfs2_journal_dirty(handle, bh);
1234 if (ret < 0) {
1235 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001236 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001237 }
1238 brelse(bh);
1239 bh = NULL;
1240
1241 /*
1242 * XXX: do we need to empty all the following
1243 * blocks in this cluster?
1244 */
1245 if (!value_len)
1246 break;
1247 }
1248 cpos += num_clusters;
1249 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001250out:
1251 brelse(bh);
1252
1253 return ret;
1254}
1255
1256static int ocfs2_xattr_cleanup(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001257 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001258 struct ocfs2_xattr_info *xi,
1259 struct ocfs2_xattr_search *xs,
Joel Becker512620f2008-12-09 15:58:35 -08001260 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001261 size_t offs)
1262{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001263 int ret = 0;
1264 size_t name_len = strlen(xi->name);
1265 void *val = xs->base + offs;
1266 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1267
Joel Becker512620f2008-12-09 15:58:35 -08001268 ret = vb->vb_access(handle, inode, vb->vb_bh,
1269 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001270 if (ret) {
1271 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001272 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001273 }
1274 /* Decrease xattr count */
1275 le16_add_cpu(&xs->header->xh_count, -1);
1276 /* Remove the xattr entry and tree root which has already be set*/
1277 memset((void *)xs->here, 0, sizeof(struct ocfs2_xattr_entry));
1278 memset(val, 0, size);
1279
Joel Becker512620f2008-12-09 15:58:35 -08001280 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001281 if (ret < 0)
1282 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001283out:
1284 return ret;
1285}
1286
1287static int ocfs2_xattr_update_entry(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001288 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001289 struct ocfs2_xattr_info *xi,
1290 struct ocfs2_xattr_search *xs,
Joel Becker0c748e92008-12-09 15:46:15 -08001291 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001292 size_t offs)
1293{
Tao Ma85db90e2008-11-12 08:27:01 +08001294 int ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001295
Joel Becker0c748e92008-12-09 15:46:15 -08001296 ret = vb->vb_access(handle, inode, vb->vb_bh,
1297 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001298 if (ret) {
1299 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001300 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001301 }
1302
1303 xs->here->xe_name_offset = cpu_to_le16(offs);
1304 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1305 if (xi->value_len <= OCFS2_XATTR_INLINE_SIZE)
1306 ocfs2_xattr_set_local(xs->here, 1);
1307 else
1308 ocfs2_xattr_set_local(xs->here, 0);
1309 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1310
Joel Becker0c748e92008-12-09 15:46:15 -08001311 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001312 if (ret < 0)
1313 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001314out:
1315 return ret;
1316}
1317
1318/*
1319 * ocfs2_xattr_set_value_outside()
1320 *
1321 * Set large size value in B tree.
1322 */
1323static int ocfs2_xattr_set_value_outside(struct inode *inode,
1324 struct ocfs2_xattr_info *xi,
1325 struct ocfs2_xattr_search *xs,
Tao Ma78f30c32008-11-12 08:27:00 +08001326 struct ocfs2_xattr_set_ctxt *ctxt,
Joel Becker512620f2008-12-09 15:58:35 -08001327 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001328 size_t offs)
1329{
1330 size_t name_len = strlen(xi->name);
1331 void *val = xs->base + offs;
1332 struct ocfs2_xattr_value_root *xv = NULL;
1333 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1334 int ret = 0;
1335
1336 memset(val, 0, size);
1337 memcpy(val, xi->name, name_len);
1338 xv = (struct ocfs2_xattr_value_root *)
1339 (val + OCFS2_XATTR_SIZE(name_len));
1340 xv->xr_clusters = 0;
1341 xv->xr_last_eb_blk = 0;
1342 xv->xr_list.l_tree_depth = 0;
1343 xv->xr_list.l_count = cpu_to_le16(1);
1344 xv->xr_list.l_next_free_rec = 0;
Joel Becker512620f2008-12-09 15:58:35 -08001345 vb->vb_xv = xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001346
Joel Becker512620f2008-12-09 15:58:35 -08001347 ret = ocfs2_xattr_value_truncate(inode, vb, xi->value_len, ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001348 if (ret < 0) {
1349 mlog_errno(ret);
1350 return ret;
1351 }
Joel Becker512620f2008-12-09 15:58:35 -08001352 ret = ocfs2_xattr_update_entry(inode, ctxt->handle, xi, xs, vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001353 if (ret < 0) {
1354 mlog_errno(ret);
1355 return ret;
1356 }
Joel Becker512620f2008-12-09 15:58:35 -08001357 ret = __ocfs2_xattr_set_value_outside(inode, ctxt->handle, vb->vb_xv,
Tao Ma85db90e2008-11-12 08:27:01 +08001358 xi->value, xi->value_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001359 if (ret < 0)
1360 mlog_errno(ret);
1361
1362 return ret;
1363}
1364
1365/*
1366 * ocfs2_xattr_set_entry_local()
1367 *
1368 * Set, replace or remove extended attribute in local.
1369 */
1370static void ocfs2_xattr_set_entry_local(struct inode *inode,
1371 struct ocfs2_xattr_info *xi,
1372 struct ocfs2_xattr_search *xs,
1373 struct ocfs2_xattr_entry *last,
1374 size_t min_offs)
1375{
1376 size_t name_len = strlen(xi->name);
1377 int i;
1378
1379 if (xi->value && xs->not_found) {
1380 /* Insert the new xattr entry. */
1381 le16_add_cpu(&xs->header->xh_count, 1);
1382 ocfs2_xattr_set_type(last, xi->name_index);
1383 ocfs2_xattr_set_local(last, 1);
1384 last->xe_name_len = name_len;
1385 } else {
1386 void *first_val;
1387 void *val;
1388 size_t offs, size;
1389
1390 first_val = xs->base + min_offs;
1391 offs = le16_to_cpu(xs->here->xe_name_offset);
1392 val = xs->base + offs;
1393
1394 if (le64_to_cpu(xs->here->xe_value_size) >
1395 OCFS2_XATTR_INLINE_SIZE)
1396 size = OCFS2_XATTR_SIZE(name_len) +
1397 OCFS2_XATTR_ROOT_SIZE;
1398 else
1399 size = OCFS2_XATTR_SIZE(name_len) +
1400 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1401
1402 if (xi->value && size == OCFS2_XATTR_SIZE(name_len) +
1403 OCFS2_XATTR_SIZE(xi->value_len)) {
1404 /* The old and the new value have the
1405 same size. Just replace the value. */
1406 ocfs2_xattr_set_local(xs->here, 1);
1407 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1408 /* Clear value bytes. */
1409 memset(val + OCFS2_XATTR_SIZE(name_len),
1410 0,
1411 OCFS2_XATTR_SIZE(xi->value_len));
1412 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1413 xi->value,
1414 xi->value_len);
1415 return;
1416 }
1417 /* Remove the old name+value. */
1418 memmove(first_val + size, first_val, val - first_val);
1419 memset(first_val, 0, size);
1420 xs->here->xe_name_hash = 0;
1421 xs->here->xe_name_offset = 0;
1422 ocfs2_xattr_set_local(xs->here, 1);
1423 xs->here->xe_value_size = 0;
1424
1425 min_offs += size;
1426
1427 /* Adjust all value offsets. */
1428 last = xs->header->xh_entries;
1429 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1430 size_t o = le16_to_cpu(last->xe_name_offset);
1431
1432 if (o < offs)
1433 last->xe_name_offset = cpu_to_le16(o + size);
1434 last += 1;
1435 }
1436
1437 if (!xi->value) {
1438 /* Remove the old entry. */
1439 last -= 1;
1440 memmove(xs->here, xs->here + 1,
1441 (void *)last - (void *)xs->here);
1442 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
1443 le16_add_cpu(&xs->header->xh_count, -1);
1444 }
1445 }
1446 if (xi->value) {
1447 /* Insert the new name+value. */
1448 size_t size = OCFS2_XATTR_SIZE(name_len) +
1449 OCFS2_XATTR_SIZE(xi->value_len);
1450 void *val = xs->base + min_offs - size;
1451
1452 xs->here->xe_name_offset = cpu_to_le16(min_offs - size);
1453 memset(val, 0, size);
1454 memcpy(val, xi->name, name_len);
1455 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1456 xi->value,
1457 xi->value_len);
1458 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1459 ocfs2_xattr_set_local(xs->here, 1);
1460 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1461 }
1462
1463 return;
1464}
1465
1466/*
1467 * ocfs2_xattr_set_entry()
1468 *
1469 * Set extended attribute entry into inode or block.
1470 *
1471 * If extended attribute value size > OCFS2_XATTR_INLINE_SIZE,
1472 * We first insert tree root(ocfs2_xattr_value_root) with set_entry_local(),
1473 * then set value in B tree with set_value_outside().
1474 */
1475static int ocfs2_xattr_set_entry(struct inode *inode,
1476 struct ocfs2_xattr_info *xi,
1477 struct ocfs2_xattr_search *xs,
Tao Ma78f30c32008-11-12 08:27:00 +08001478 struct ocfs2_xattr_set_ctxt *ctxt,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001479 int flag)
1480{
1481 struct ocfs2_xattr_entry *last;
1482 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1483 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1484 size_t min_offs = xs->end - xs->base, name_len = strlen(xi->name);
1485 size_t size_l = 0;
Tao Ma85db90e2008-11-12 08:27:01 +08001486 handle_t *handle = ctxt->handle;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001487 int free, i, ret;
1488 struct ocfs2_xattr_info xi_l = {
1489 .name_index = xi->name_index,
1490 .name = xi->name,
1491 .value = xi->value,
1492 .value_len = xi->value_len,
1493 };
Joel Becker512620f2008-12-09 15:58:35 -08001494 struct ocfs2_xattr_value_buf vb = {
1495 .vb_bh = xs->xattr_bh,
1496 .vb_access = ocfs2_journal_access_di,
1497 };
1498
1499 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1500 BUG_ON(xs->xattr_bh == xs->inode_bh);
1501 vb.vb_access = ocfs2_journal_access_xb;
1502 } else
1503 BUG_ON(xs->xattr_bh != xs->inode_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001504
1505 /* Compute min_offs, last and free space. */
1506 last = xs->header->xh_entries;
1507
1508 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1509 size_t offs = le16_to_cpu(last->xe_name_offset);
1510 if (offs < min_offs)
1511 min_offs = offs;
1512 last += 1;
1513 }
1514
Tiger Yang4442f512009-02-20 11:11:50 +08001515 free = min_offs - ((void *)last - xs->base) - OCFS2_XATTR_HEADER_GAP;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001516 if (free < 0)
Joel Beckerb37c4d82008-10-20 18:24:03 -07001517 return -EIO;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001518
1519 if (!xs->not_found) {
1520 size_t size = 0;
1521 if (ocfs2_xattr_is_local(xs->here))
1522 size = OCFS2_XATTR_SIZE(name_len) +
1523 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1524 else
1525 size = OCFS2_XATTR_SIZE(name_len) +
1526 OCFS2_XATTR_ROOT_SIZE;
1527 free += (size + sizeof(struct ocfs2_xattr_entry));
1528 }
1529 /* Check free space in inode or block */
1530 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1531 if (free < sizeof(struct ocfs2_xattr_entry) +
1532 OCFS2_XATTR_SIZE(name_len) +
1533 OCFS2_XATTR_ROOT_SIZE) {
1534 ret = -ENOSPC;
1535 goto out;
1536 }
1537 size_l = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1538 xi_l.value = (void *)&def_xv;
1539 xi_l.value_len = OCFS2_XATTR_ROOT_SIZE;
1540 } else if (xi->value) {
1541 if (free < sizeof(struct ocfs2_xattr_entry) +
1542 OCFS2_XATTR_SIZE(name_len) +
1543 OCFS2_XATTR_SIZE(xi->value_len)) {
1544 ret = -ENOSPC;
1545 goto out;
1546 }
1547 }
1548
1549 if (!xs->not_found) {
1550 /* For existing extended attribute */
1551 size_t size = OCFS2_XATTR_SIZE(name_len) +
1552 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1553 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
1554 void *val = xs->base + offs;
1555
1556 if (ocfs2_xattr_is_local(xs->here) && size == size_l) {
1557 /* Replace existing local xattr with tree root */
1558 ret = ocfs2_xattr_set_value_outside(inode, xi, xs,
Joel Becker512620f2008-12-09 15:58:35 -08001559 ctxt, &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001560 if (ret < 0)
1561 mlog_errno(ret);
1562 goto out;
1563 } else if (!ocfs2_xattr_is_local(xs->here)) {
1564 /* For existing xattr which has value outside */
Joel Becker512620f2008-12-09 15:58:35 -08001565 vb.vb_xv = (struct ocfs2_xattr_value_root *)
1566 (val + OCFS2_XATTR_SIZE(name_len));
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001567
1568 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1569 /*
1570 * If new value need set outside also,
1571 * first truncate old value to new value,
1572 * then set new value with set_value_outside().
1573 */
1574 ret = ocfs2_xattr_value_truncate(inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001575 &vb,
Tao Ma78f30c32008-11-12 08:27:00 +08001576 xi->value_len,
1577 ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001578 if (ret < 0) {
1579 mlog_errno(ret);
1580 goto out;
1581 }
1582
Tao Ma85db90e2008-11-12 08:27:01 +08001583 ret = ocfs2_xattr_update_entry(inode,
1584 handle,
1585 xi,
1586 xs,
Joel Becker0c748e92008-12-09 15:46:15 -08001587 &vb,
Tao Ma85db90e2008-11-12 08:27:01 +08001588 offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001589 if (ret < 0) {
1590 mlog_errno(ret);
1591 goto out;
1592 }
1593
Tao Ma85db90e2008-11-12 08:27:01 +08001594 ret = __ocfs2_xattr_set_value_outside(inode,
1595 handle,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001596 vb.vb_xv,
Tao Ma85db90e2008-11-12 08:27:01 +08001597 xi->value,
1598 xi->value_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001599 if (ret < 0)
1600 mlog_errno(ret);
1601 goto out;
1602 } else {
1603 /*
1604 * If new value need set in local,
1605 * just trucate old value to zero.
1606 */
1607 ret = ocfs2_xattr_value_truncate(inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001608 &vb,
Tao Ma85db90e2008-11-12 08:27:01 +08001609 0,
1610 ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001611 if (ret < 0)
1612 mlog_errno(ret);
1613 }
1614 }
1615 }
1616
Joel Becker512620f2008-12-09 15:58:35 -08001617 ret = ocfs2_journal_access_di(handle, inode, xs->inode_bh,
1618 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001619 if (ret) {
1620 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001621 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001622 }
1623
1624 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
Joel Becker512620f2008-12-09 15:58:35 -08001625 ret = vb.vb_access(handle, inode, vb.vb_bh,
1626 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001627 if (ret) {
1628 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001629 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001630 }
1631 }
1632
1633 /*
1634 * Set value in local, include set tree root in local.
1635 * This is the first step for value size >INLINE_SIZE.
1636 */
1637 ocfs2_xattr_set_entry_local(inode, &xi_l, xs, last, min_offs);
1638
1639 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1640 ret = ocfs2_journal_dirty(handle, xs->xattr_bh);
1641 if (ret < 0) {
1642 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001643 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001644 }
1645 }
1646
1647 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) &&
1648 (flag & OCFS2_INLINE_XATTR_FL)) {
1649 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1650 unsigned int xattrsize = osb->s_xattr_inline_size;
1651
1652 /*
1653 * Adjust extent record count or inline data size
1654 * to reserve space for extended attribute.
1655 */
1656 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1657 struct ocfs2_inline_data *idata = &di->id2.i_data;
1658 le16_add_cpu(&idata->id_count, -xattrsize);
1659 } else if (!(ocfs2_inode_is_fast_symlink(inode))) {
1660 struct ocfs2_extent_list *el = &di->id2.i_list;
1661 le16_add_cpu(&el->l_count, -(xattrsize /
1662 sizeof(struct ocfs2_extent_rec)));
1663 }
1664 di->i_xattr_inline_size = cpu_to_le16(xattrsize);
1665 }
1666 /* Update xattr flag */
1667 spin_lock(&oi->ip_lock);
1668 oi->ip_dyn_features |= flag;
1669 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1670 spin_unlock(&oi->ip_lock);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001671
1672 ret = ocfs2_journal_dirty(handle, xs->inode_bh);
1673 if (ret < 0)
1674 mlog_errno(ret);
1675
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001676 if (!ret && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1677 /*
1678 * Set value outside in B tree.
1679 * This is the second step for value size > INLINE_SIZE.
1680 */
1681 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
Joel Becker512620f2008-12-09 15:58:35 -08001682 ret = ocfs2_xattr_set_value_outside(inode, xi, xs, ctxt,
1683 &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001684 if (ret < 0) {
1685 int ret2;
1686
1687 mlog_errno(ret);
1688 /*
1689 * If set value outside failed, we have to clean
1690 * the junk tree root we have already set in local.
1691 */
Tao Ma85db90e2008-11-12 08:27:01 +08001692 ret2 = ocfs2_xattr_cleanup(inode, ctxt->handle,
Joel Becker512620f2008-12-09 15:58:35 -08001693 xi, xs, &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001694 if (ret2 < 0)
1695 mlog_errno(ret2);
1696 }
1697 }
1698out:
1699 return ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001700}
1701
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001702static int ocfs2_remove_value_outside(struct inode*inode,
Joel Becker43119012008-12-09 16:24:43 -08001703 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001704 struct ocfs2_xattr_header *header)
1705{
1706 int ret = 0, i;
Tao Ma78f30c32008-11-12 08:27:00 +08001707 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1708 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
1709
1710 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001711
Jan Karaa90714c2008-10-09 19:38:40 +02001712 ctxt.handle = ocfs2_start_trans(osb,
1713 ocfs2_remove_extent_credits(osb->sb));
Tao Ma85db90e2008-11-12 08:27:01 +08001714 if (IS_ERR(ctxt.handle)) {
1715 ret = PTR_ERR(ctxt.handle);
1716 mlog_errno(ret);
1717 goto out;
1718 }
1719
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001720 for (i = 0; i < le16_to_cpu(header->xh_count); i++) {
1721 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
1722
1723 if (!ocfs2_xattr_is_local(entry)) {
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001724 void *val;
1725
1726 val = (void *)header +
1727 le16_to_cpu(entry->xe_name_offset);
Joel Becker43119012008-12-09 16:24:43 -08001728 vb->vb_xv = (struct ocfs2_xattr_value_root *)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001729 (val + OCFS2_XATTR_SIZE(entry->xe_name_len));
Joel Becker43119012008-12-09 16:24:43 -08001730 ret = ocfs2_xattr_value_truncate(inode, vb, 0, &ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001731 if (ret < 0) {
1732 mlog_errno(ret);
Tao Ma78f30c32008-11-12 08:27:00 +08001733 break;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001734 }
1735 }
1736 }
1737
Tao Ma85db90e2008-11-12 08:27:01 +08001738 ocfs2_commit_trans(osb, ctxt.handle);
Tao Ma78f30c32008-11-12 08:27:00 +08001739 ocfs2_schedule_truncate_log_flush(osb, 1);
1740 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tao Ma85db90e2008-11-12 08:27:01 +08001741out:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001742 return ret;
1743}
1744
1745static int ocfs2_xattr_ibody_remove(struct inode *inode,
1746 struct buffer_head *di_bh)
1747{
1748
1749 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1750 struct ocfs2_xattr_header *header;
1751 int ret;
Joel Becker43119012008-12-09 16:24:43 -08001752 struct ocfs2_xattr_value_buf vb = {
1753 .vb_bh = di_bh,
1754 .vb_access = ocfs2_journal_access_di,
1755 };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001756
1757 header = (struct ocfs2_xattr_header *)
1758 ((void *)di + inode->i_sb->s_blocksize -
1759 le16_to_cpu(di->i_xattr_inline_size));
1760
Joel Becker43119012008-12-09 16:24:43 -08001761 ret = ocfs2_remove_value_outside(inode, &vb, header);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001762
1763 return ret;
1764}
1765
1766static int ocfs2_xattr_block_remove(struct inode *inode,
1767 struct buffer_head *blk_bh)
1768{
1769 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001770 int ret = 0;
Joel Becker43119012008-12-09 16:24:43 -08001771 struct ocfs2_xattr_value_buf vb = {
1772 .vb_bh = blk_bh,
1773 .vb_access = ocfs2_journal_access_xb,
1774 };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001775
1776 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Maa3944252008-08-18 17:38:54 +08001777 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
1778 struct ocfs2_xattr_header *header = &(xb->xb_attrs.xb_header);
Joel Becker43119012008-12-09 16:24:43 -08001779 ret = ocfs2_remove_value_outside(inode, &vb, header);
Tao Maa3944252008-08-18 17:38:54 +08001780 } else
1781 ret = ocfs2_delete_xattr_index_block(inode, blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001782
1783 return ret;
1784}
1785
Tao Ma08413892008-08-29 09:00:19 +08001786static int ocfs2_xattr_free_block(struct inode *inode,
1787 u64 block)
1788{
1789 struct inode *xb_alloc_inode;
1790 struct buffer_head *xb_alloc_bh = NULL;
1791 struct buffer_head *blk_bh = NULL;
1792 struct ocfs2_xattr_block *xb;
1793 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1794 handle_t *handle;
1795 int ret = 0;
1796 u64 blk, bg_blkno;
1797 u16 bit;
1798
Joel Becker4ae1d692008-11-13 14:49:18 -08001799 ret = ocfs2_read_xattr_block(inode, block, &blk_bh);
Tao Ma08413892008-08-29 09:00:19 +08001800 if (ret < 0) {
1801 mlog_errno(ret);
1802 goto out;
1803 }
1804
Tao Ma08413892008-08-29 09:00:19 +08001805 ret = ocfs2_xattr_block_remove(inode, blk_bh);
1806 if (ret < 0) {
1807 mlog_errno(ret);
1808 goto out;
1809 }
1810
Joel Becker4ae1d692008-11-13 14:49:18 -08001811 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Ma08413892008-08-29 09:00:19 +08001812 blk = le64_to_cpu(xb->xb_blkno);
1813 bit = le16_to_cpu(xb->xb_suballoc_bit);
1814 bg_blkno = ocfs2_which_suballoc_group(blk, bit);
1815
1816 xb_alloc_inode = ocfs2_get_system_file_inode(osb,
1817 EXTENT_ALLOC_SYSTEM_INODE,
1818 le16_to_cpu(xb->xb_suballoc_slot));
1819 if (!xb_alloc_inode) {
1820 ret = -ENOMEM;
1821 mlog_errno(ret);
1822 goto out;
1823 }
1824 mutex_lock(&xb_alloc_inode->i_mutex);
1825
1826 ret = ocfs2_inode_lock(xb_alloc_inode, &xb_alloc_bh, 1);
1827 if (ret < 0) {
1828 mlog_errno(ret);
1829 goto out_mutex;
1830 }
1831
1832 handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE);
1833 if (IS_ERR(handle)) {
1834 ret = PTR_ERR(handle);
1835 mlog_errno(ret);
1836 goto out_unlock;
1837 }
1838
1839 ret = ocfs2_free_suballoc_bits(handle, xb_alloc_inode, xb_alloc_bh,
1840 bit, bg_blkno, 1);
1841 if (ret < 0)
1842 mlog_errno(ret);
1843
1844 ocfs2_commit_trans(osb, handle);
1845out_unlock:
1846 ocfs2_inode_unlock(xb_alloc_inode, 1);
1847 brelse(xb_alloc_bh);
1848out_mutex:
1849 mutex_unlock(&xb_alloc_inode->i_mutex);
1850 iput(xb_alloc_inode);
1851out:
1852 brelse(blk_bh);
1853 return ret;
1854}
1855
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001856/*
1857 * ocfs2_xattr_remove()
1858 *
1859 * Free extended attribute resources associated with this inode.
1860 */
1861int ocfs2_xattr_remove(struct inode *inode, struct buffer_head *di_bh)
1862{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001863 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1864 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1865 handle_t *handle;
1866 int ret;
1867
Tiger Yang8154da32008-08-18 17:11:46 +08001868 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1869 return 0;
1870
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001871 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1872 return 0;
1873
1874 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
1875 ret = ocfs2_xattr_ibody_remove(inode, di_bh);
1876 if (ret < 0) {
1877 mlog_errno(ret);
1878 goto out;
1879 }
1880 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001881
Tao Ma08413892008-08-29 09:00:19 +08001882 if (di->i_xattr_loc) {
1883 ret = ocfs2_xattr_free_block(inode,
1884 le64_to_cpu(di->i_xattr_loc));
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001885 if (ret < 0) {
1886 mlog_errno(ret);
1887 goto out;
1888 }
1889 }
1890
1891 handle = ocfs2_start_trans((OCFS2_SB(inode->i_sb)),
1892 OCFS2_INODE_UPDATE_CREDITS);
1893 if (IS_ERR(handle)) {
1894 ret = PTR_ERR(handle);
1895 mlog_errno(ret);
1896 goto out;
1897 }
Joel Becker84008972008-12-09 16:11:49 -08001898 ret = ocfs2_journal_access_di(handle, inode, di_bh,
1899 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001900 if (ret) {
1901 mlog_errno(ret);
1902 goto out_commit;
1903 }
1904
Tao Ma08413892008-08-29 09:00:19 +08001905 di->i_xattr_loc = 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001906
1907 spin_lock(&oi->ip_lock);
1908 oi->ip_dyn_features &= ~(OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL);
1909 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1910 spin_unlock(&oi->ip_lock);
1911
1912 ret = ocfs2_journal_dirty(handle, di_bh);
1913 if (ret < 0)
1914 mlog_errno(ret);
1915out_commit:
1916 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
1917out:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001918 return ret;
1919}
1920
1921static int ocfs2_xattr_has_space_inline(struct inode *inode,
1922 struct ocfs2_dinode *di)
1923{
1924 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1925 unsigned int xattrsize = OCFS2_SB(inode->i_sb)->s_xattr_inline_size;
1926 int free;
1927
1928 if (xattrsize < OCFS2_MIN_XATTR_INLINE_SIZE)
1929 return 0;
1930
1931 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1932 struct ocfs2_inline_data *idata = &di->id2.i_data;
1933 free = le16_to_cpu(idata->id_count) - le64_to_cpu(di->i_size);
1934 } else if (ocfs2_inode_is_fast_symlink(inode)) {
1935 free = ocfs2_fast_symlink_chars(inode->i_sb) -
1936 le64_to_cpu(di->i_size);
1937 } else {
1938 struct ocfs2_extent_list *el = &di->id2.i_list;
1939 free = (le16_to_cpu(el->l_count) -
1940 le16_to_cpu(el->l_next_free_rec)) *
1941 sizeof(struct ocfs2_extent_rec);
1942 }
1943 if (free >= xattrsize)
1944 return 1;
1945
1946 return 0;
1947}
1948
1949/*
1950 * ocfs2_xattr_ibody_find()
1951 *
1952 * Find extended attribute in inode block and
1953 * fill search info into struct ocfs2_xattr_search.
1954 */
1955static int ocfs2_xattr_ibody_find(struct inode *inode,
1956 int name_index,
1957 const char *name,
1958 struct ocfs2_xattr_search *xs)
1959{
1960 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1961 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1962 int ret;
1963 int has_space = 0;
1964
1965 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
1966 return 0;
1967
1968 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
1969 down_read(&oi->ip_alloc_sem);
1970 has_space = ocfs2_xattr_has_space_inline(inode, di);
1971 up_read(&oi->ip_alloc_sem);
1972 if (!has_space)
1973 return 0;
1974 }
1975
1976 xs->xattr_bh = xs->inode_bh;
1977 xs->end = (void *)di + inode->i_sb->s_blocksize;
1978 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)
1979 xs->header = (struct ocfs2_xattr_header *)
1980 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
1981 else
1982 xs->header = (struct ocfs2_xattr_header *)
1983 (xs->end - OCFS2_SB(inode->i_sb)->s_xattr_inline_size);
1984 xs->base = (void *)xs->header;
1985 xs->here = xs->header->xh_entries;
1986
1987 /* Find the named attribute. */
1988 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
1989 ret = ocfs2_xattr_find_entry(name_index, name, xs);
1990 if (ret && ret != -ENODATA)
1991 return ret;
1992 xs->not_found = ret;
1993 }
1994
1995 return 0;
1996}
1997
1998/*
1999 * ocfs2_xattr_ibody_set()
2000 *
2001 * Set, replace or remove an extended attribute into inode block.
2002 *
2003 */
2004static int ocfs2_xattr_ibody_set(struct inode *inode,
2005 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08002006 struct ocfs2_xattr_search *xs,
2007 struct ocfs2_xattr_set_ctxt *ctxt)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002008{
2009 struct ocfs2_inode_info *oi = OCFS2_I(inode);
2010 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2011 int ret;
2012
2013 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
2014 return -ENOSPC;
2015
2016 down_write(&oi->ip_alloc_sem);
2017 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
2018 if (!ocfs2_xattr_has_space_inline(inode, di)) {
2019 ret = -ENOSPC;
2020 goto out;
2021 }
2022 }
2023
Tao Ma78f30c32008-11-12 08:27:00 +08002024 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002025 (OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL));
2026out:
2027 up_write(&oi->ip_alloc_sem);
2028
2029 return ret;
2030}
2031
2032/*
2033 * ocfs2_xattr_block_find()
2034 *
2035 * Find extended attribute in external block and
2036 * fill search info into struct ocfs2_xattr_search.
2037 */
2038static int ocfs2_xattr_block_find(struct inode *inode,
2039 int name_index,
2040 const char *name,
2041 struct ocfs2_xattr_search *xs)
2042{
2043 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2044 struct buffer_head *blk_bh = NULL;
Tao Ma589dc262008-08-18 17:38:51 +08002045 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002046 int ret = 0;
2047
2048 if (!di->i_xattr_loc)
2049 return ret;
2050
Joel Becker4ae1d692008-11-13 14:49:18 -08002051 ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
2052 &blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002053 if (ret < 0) {
2054 mlog_errno(ret);
2055 return ret;
2056 }
Joel Beckerf6087fb2008-10-20 18:20:43 -07002057
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002058 xs->xattr_bh = blk_bh;
Joel Becker4ae1d692008-11-13 14:49:18 -08002059 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002060
Tao Ma589dc262008-08-18 17:38:51 +08002061 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
2062 xs->header = &xb->xb_attrs.xb_header;
2063 xs->base = (void *)xs->header;
2064 xs->end = (void *)(blk_bh->b_data) + blk_bh->b_size;
2065 xs->here = xs->header->xh_entries;
2066
2067 ret = ocfs2_xattr_find_entry(name_index, name, xs);
2068 } else
2069 ret = ocfs2_xattr_index_block_find(inode, blk_bh,
2070 name_index,
2071 name, xs);
2072
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002073 if (ret && ret != -ENODATA) {
2074 xs->xattr_bh = NULL;
2075 goto cleanup;
2076 }
2077 xs->not_found = ret;
2078 return 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002079cleanup:
2080 brelse(blk_bh);
2081
2082 return ret;
2083}
2084
2085/*
2086 * ocfs2_xattr_block_set()
2087 *
2088 * Set, replace or remove an extended attribute into external block.
2089 *
2090 */
2091static int ocfs2_xattr_block_set(struct inode *inode,
2092 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08002093 struct ocfs2_xattr_search *xs,
2094 struct ocfs2_xattr_set_ctxt *ctxt)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002095{
2096 struct buffer_head *new_bh = NULL;
2097 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2098 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
Tao Ma85db90e2008-11-12 08:27:01 +08002099 handle_t *handle = ctxt->handle;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002100 struct ocfs2_xattr_block *xblk = NULL;
2101 u16 suballoc_bit_start;
2102 u32 num_got;
2103 u64 first_blkno;
2104 int ret;
2105
2106 if (!xs->xattr_bh) {
Joel Becker84008972008-12-09 16:11:49 -08002107 ret = ocfs2_journal_access_di(handle, inode, xs->inode_bh,
2108 OCFS2_JOURNAL_ACCESS_CREATE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002109 if (ret < 0) {
2110 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002111 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002112 }
2113
Tao Ma78f30c32008-11-12 08:27:00 +08002114 ret = ocfs2_claim_metadata(osb, handle, ctxt->meta_ac, 1,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002115 &suballoc_bit_start, &num_got,
2116 &first_blkno);
2117 if (ret < 0) {
2118 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002119 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002120 }
2121
2122 new_bh = sb_getblk(inode->i_sb, first_blkno);
2123 ocfs2_set_new_buffer_uptodate(inode, new_bh);
2124
Joel Becker84008972008-12-09 16:11:49 -08002125 ret = ocfs2_journal_access_xb(handle, inode, new_bh,
2126 OCFS2_JOURNAL_ACCESS_CREATE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002127 if (ret < 0) {
2128 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002129 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002130 }
2131
2132 /* Initialize ocfs2_xattr_block */
2133 xs->xattr_bh = new_bh;
2134 xblk = (struct ocfs2_xattr_block *)new_bh->b_data;
2135 memset(xblk, 0, inode->i_sb->s_blocksize);
2136 strcpy((void *)xblk, OCFS2_XATTR_BLOCK_SIGNATURE);
2137 xblk->xb_suballoc_slot = cpu_to_le16(osb->slot_num);
2138 xblk->xb_suballoc_bit = cpu_to_le16(suballoc_bit_start);
2139 xblk->xb_fs_generation = cpu_to_le32(osb->fs_generation);
2140 xblk->xb_blkno = cpu_to_le64(first_blkno);
2141
2142 xs->header = &xblk->xb_attrs.xb_header;
2143 xs->base = (void *)xs->header;
2144 xs->end = (void *)xblk + inode->i_sb->s_blocksize;
2145 xs->here = xs->header->xh_entries;
2146
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002147 ret = ocfs2_journal_dirty(handle, new_bh);
2148 if (ret < 0) {
2149 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002150 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002151 }
2152 di->i_xattr_loc = cpu_to_le64(first_blkno);
Tao Ma85db90e2008-11-12 08:27:01 +08002153 ocfs2_journal_dirty(handle, xs->inode_bh);
Tao Ma01225592008-08-18 17:38:53 +08002154 } else
2155 xblk = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
2156
2157 if (!(le16_to_cpu(xblk->xb_flags) & OCFS2_XATTR_INDEXED)) {
2158 /* Set extended attribute into external block */
Tao Ma78f30c32008-11-12 08:27:00 +08002159 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
2160 OCFS2_HAS_XATTR_FL);
Tao Ma01225592008-08-18 17:38:53 +08002161 if (!ret || ret != -ENOSPC)
2162 goto end;
2163
Tao Ma78f30c32008-11-12 08:27:00 +08002164 ret = ocfs2_xattr_create_index_block(inode, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08002165 if (ret)
2166 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002167 }
2168
Tao Ma78f30c32008-11-12 08:27:00 +08002169 ret = ocfs2_xattr_set_entry_index_block(inode, xi, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08002170
2171end:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002172
2173 return ret;
2174}
2175
Tao Ma78f30c32008-11-12 08:27:00 +08002176/* Check whether the new xattr can be inserted into the inode. */
2177static int ocfs2_xattr_can_be_in_inode(struct inode *inode,
2178 struct ocfs2_xattr_info *xi,
2179 struct ocfs2_xattr_search *xs)
2180{
2181 u64 value_size;
2182 struct ocfs2_xattr_entry *last;
2183 int free, i;
2184 size_t min_offs = xs->end - xs->base;
2185
2186 if (!xs->header)
2187 return 0;
2188
2189 last = xs->header->xh_entries;
2190
2191 for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
2192 size_t offs = le16_to_cpu(last->xe_name_offset);
2193 if (offs < min_offs)
2194 min_offs = offs;
2195 last += 1;
2196 }
2197
Tiger Yang4442f512009-02-20 11:11:50 +08002198 free = min_offs - ((void *)last - xs->base) - OCFS2_XATTR_HEADER_GAP;
Tao Ma78f30c32008-11-12 08:27:00 +08002199 if (free < 0)
2200 return 0;
2201
2202 BUG_ON(!xs->not_found);
2203
2204 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
2205 value_size = OCFS2_XATTR_ROOT_SIZE;
2206 else
2207 value_size = OCFS2_XATTR_SIZE(xi->value_len);
2208
2209 if (free >= sizeof(struct ocfs2_xattr_entry) +
2210 OCFS2_XATTR_SIZE(strlen(xi->name)) + value_size)
2211 return 1;
2212
2213 return 0;
2214}
2215
2216static int ocfs2_calc_xattr_set_need(struct inode *inode,
2217 struct ocfs2_dinode *di,
2218 struct ocfs2_xattr_info *xi,
2219 struct ocfs2_xattr_search *xis,
2220 struct ocfs2_xattr_search *xbs,
2221 int *clusters_need,
Tao Ma85db90e2008-11-12 08:27:01 +08002222 int *meta_need,
2223 int *credits_need)
Tao Ma78f30c32008-11-12 08:27:00 +08002224{
2225 int ret = 0, old_in_xb = 0;
Tao Ma85db90e2008-11-12 08:27:01 +08002226 int clusters_add = 0, meta_add = 0, credits = 0;
Tao Ma78f30c32008-11-12 08:27:00 +08002227 struct buffer_head *bh = NULL;
2228 struct ocfs2_xattr_block *xb = NULL;
2229 struct ocfs2_xattr_entry *xe = NULL;
2230 struct ocfs2_xattr_value_root *xv = NULL;
2231 char *base = NULL;
2232 int name_offset, name_len = 0;
2233 u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2234 xi->value_len);
2235 u64 value_size;
2236
Tao Ma71d548a2008-12-05 06:20:54 +08002237 /*
2238 * Calculate the clusters we need to write.
2239 * No matter whether we replace an old one or add a new one,
2240 * we need this for writing.
2241 */
2242 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
2243 credits += new_clusters *
2244 ocfs2_clusters_to_blocks(inode->i_sb, 1);
2245
Tao Ma78f30c32008-11-12 08:27:00 +08002246 if (xis->not_found && xbs->not_found) {
Tao Ma85db90e2008-11-12 08:27:01 +08002247 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2248
2249 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
Tao Ma78f30c32008-11-12 08:27:00 +08002250 clusters_add += new_clusters;
Tao Ma85db90e2008-11-12 08:27:01 +08002251 credits += ocfs2_calc_extend_credits(inode->i_sb,
2252 &def_xv.xv.xr_list,
2253 new_clusters);
2254 }
Tao Ma78f30c32008-11-12 08:27:00 +08002255
2256 goto meta_guess;
2257 }
2258
2259 if (!xis->not_found) {
2260 xe = xis->here;
2261 name_offset = le16_to_cpu(xe->xe_name_offset);
2262 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2263 base = xis->base;
Tao Ma85db90e2008-11-12 08:27:01 +08002264 credits += OCFS2_INODE_UPDATE_CREDITS;
Tao Ma78f30c32008-11-12 08:27:00 +08002265 } else {
Joel Becker970e4932008-11-13 14:49:19 -08002266 int i, block_off = 0;
Tao Ma78f30c32008-11-12 08:27:00 +08002267 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2268 xe = xbs->here;
2269 name_offset = le16_to_cpu(xe->xe_name_offset);
2270 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2271 i = xbs->here - xbs->header->xh_entries;
2272 old_in_xb = 1;
2273
2274 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
2275 ret = ocfs2_xattr_bucket_get_name_value(inode,
2276 bucket_xh(xbs->bucket),
2277 i, &block_off,
2278 &name_offset);
2279 base = bucket_block(xbs->bucket, block_off);
Tao Ma85db90e2008-11-12 08:27:01 +08002280 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2281 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002282 base = xbs->base;
Tao Ma85db90e2008-11-12 08:27:01 +08002283 credits += OCFS2_XATTR_BLOCK_UPDATE_CREDITS;
2284 }
2285 }
2286
2287 /*
2288 * delete a xattr doesn't need metadata and cluster allocation.
2289 * so just calculate the credits and return.
2290 *
2291 * The credits for removing the value tree will be extended
2292 * by ocfs2_remove_extent itself.
2293 */
2294 if (!xi->value) {
2295 if (!ocfs2_xattr_is_local(xe))
Jan Karaa90714c2008-10-09 19:38:40 +02002296 credits += ocfs2_remove_extent_credits(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08002297
2298 goto out;
Tao Ma78f30c32008-11-12 08:27:00 +08002299 }
2300
2301 /* do cluster allocation guess first. */
2302 value_size = le64_to_cpu(xe->xe_value_size);
2303
2304 if (old_in_xb) {
2305 /*
2306 * In xattr set, we always try to set the xe in inode first,
2307 * so if it can be inserted into inode successfully, the old
2308 * one will be removed from the xattr block, and this xattr
2309 * will be inserted into inode as a new xattr in inode.
2310 */
2311 if (ocfs2_xattr_can_be_in_inode(inode, xi, xis)) {
2312 clusters_add += new_clusters;
Jan Karaa90714c2008-10-09 19:38:40 +02002313 credits += ocfs2_remove_extent_credits(inode->i_sb) +
Tao Ma85db90e2008-11-12 08:27:01 +08002314 OCFS2_INODE_UPDATE_CREDITS;
2315 if (!ocfs2_xattr_is_local(xe))
2316 credits += ocfs2_calc_extend_credits(
2317 inode->i_sb,
2318 &def_xv.xv.xr_list,
2319 new_clusters);
Tao Ma78f30c32008-11-12 08:27:00 +08002320 goto out;
2321 }
2322 }
2323
2324 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
2325 /* the new values will be stored outside. */
2326 u32 old_clusters = 0;
2327
2328 if (!ocfs2_xattr_is_local(xe)) {
2329 old_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2330 value_size);
2331 xv = (struct ocfs2_xattr_value_root *)
2332 (base + name_offset + name_len);
Tao Ma97aff522008-11-19 16:48:41 +08002333 value_size = OCFS2_XATTR_ROOT_SIZE;
Tao Ma78f30c32008-11-12 08:27:00 +08002334 } else
2335 xv = &def_xv.xv;
2336
Tao Ma85db90e2008-11-12 08:27:01 +08002337 if (old_clusters >= new_clusters) {
Jan Karaa90714c2008-10-09 19:38:40 +02002338 credits += ocfs2_remove_extent_credits(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002339 goto out;
Tao Ma85db90e2008-11-12 08:27:01 +08002340 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002341 meta_add += ocfs2_extend_meta_needed(&xv->xr_list);
2342 clusters_add += new_clusters - old_clusters;
Tao Ma85db90e2008-11-12 08:27:01 +08002343 credits += ocfs2_calc_extend_credits(inode->i_sb,
2344 &xv->xr_list,
2345 new_clusters -
2346 old_clusters);
Tao Ma97aff522008-11-19 16:48:41 +08002347 if (value_size >= OCFS2_XATTR_ROOT_SIZE)
2348 goto out;
Tao Ma78f30c32008-11-12 08:27:00 +08002349 }
2350 } else {
2351 /*
2352 * Now the new value will be stored inside. So if the new
2353 * value is smaller than the size of value root or the old
2354 * value, we don't need any allocation, otherwise we have
2355 * to guess metadata allocation.
2356 */
2357 if ((ocfs2_xattr_is_local(xe) && value_size >= xi->value_len) ||
2358 (!ocfs2_xattr_is_local(xe) &&
2359 OCFS2_XATTR_ROOT_SIZE >= xi->value_len))
2360 goto out;
2361 }
2362
2363meta_guess:
2364 /* calculate metadata allocation. */
2365 if (di->i_xattr_loc) {
2366 if (!xbs->xattr_bh) {
Joel Becker4ae1d692008-11-13 14:49:18 -08002367 ret = ocfs2_read_xattr_block(inode,
2368 le64_to_cpu(di->i_xattr_loc),
2369 &bh);
Tao Ma78f30c32008-11-12 08:27:00 +08002370 if (ret) {
2371 mlog_errno(ret);
2372 goto out;
2373 }
2374
2375 xb = (struct ocfs2_xattr_block *)bh->b_data;
2376 } else
2377 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2378
Tao Ma90cb5462008-12-05 06:20:56 +08002379 /*
2380 * If there is already an xattr tree, good, we can calculate
2381 * like other b-trees. Otherwise we may have the chance of
2382 * create a tree, the credit calculation is borrowed from
2383 * ocfs2_calc_extend_credits with root_el = NULL. And the
2384 * new tree will be cluster based, so no meta is needed.
2385 */
Tao Ma78f30c32008-11-12 08:27:00 +08002386 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
2387 struct ocfs2_extent_list *el =
2388 &xb->xb_attrs.xb_root.xt_list;
2389 meta_add += ocfs2_extend_meta_needed(el);
Tao Ma85db90e2008-11-12 08:27:01 +08002390 credits += ocfs2_calc_extend_credits(inode->i_sb,
2391 el, 1);
Tao Ma90cb5462008-12-05 06:20:56 +08002392 } else
2393 credits += OCFS2_SUBALLOC_ALLOC + 1;
Tao Ma78f30c32008-11-12 08:27:00 +08002394
2395 /*
2396 * This cluster will be used either for new bucket or for
2397 * new xattr block.
2398 * If the cluster size is the same as the bucket size, one
2399 * more is needed since we may need to extend the bucket
2400 * also.
2401 */
2402 clusters_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002403 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002404 if (OCFS2_XATTR_BUCKET_SIZE ==
Tao Ma85db90e2008-11-12 08:27:01 +08002405 OCFS2_SB(inode->i_sb)->s_clustersize) {
2406 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002407 clusters_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002408 }
2409 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002410 meta_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002411 credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
2412 }
Tao Ma78f30c32008-11-12 08:27:00 +08002413out:
2414 if (clusters_need)
2415 *clusters_need = clusters_add;
2416 if (meta_need)
2417 *meta_need = meta_add;
Tao Ma85db90e2008-11-12 08:27:01 +08002418 if (credits_need)
2419 *credits_need = credits;
Tao Ma78f30c32008-11-12 08:27:00 +08002420 brelse(bh);
2421 return ret;
2422}
2423
2424static int ocfs2_init_xattr_set_ctxt(struct inode *inode,
2425 struct ocfs2_dinode *di,
2426 struct ocfs2_xattr_info *xi,
2427 struct ocfs2_xattr_search *xis,
2428 struct ocfs2_xattr_search *xbs,
Tao Ma85db90e2008-11-12 08:27:01 +08002429 struct ocfs2_xattr_set_ctxt *ctxt,
2430 int *credits)
Tao Ma78f30c32008-11-12 08:27:00 +08002431{
2432 int clusters_add, meta_add, ret;
2433 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2434
2435 memset(ctxt, 0, sizeof(struct ocfs2_xattr_set_ctxt));
2436
2437 ocfs2_init_dealloc_ctxt(&ctxt->dealloc);
2438
2439 ret = ocfs2_calc_xattr_set_need(inode, di, xi, xis, xbs,
Tao Ma85db90e2008-11-12 08:27:01 +08002440 &clusters_add, &meta_add, credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002441 if (ret) {
2442 mlog_errno(ret);
2443 return ret;
2444 }
2445
Tao Ma85db90e2008-11-12 08:27:01 +08002446 mlog(0, "Set xattr %s, reserve meta blocks = %d, clusters = %d, "
2447 "credits = %d\n", xi->name, meta_add, clusters_add, *credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002448
2449 if (meta_add) {
2450 ret = ocfs2_reserve_new_metadata_blocks(osb, meta_add,
2451 &ctxt->meta_ac);
2452 if (ret) {
2453 mlog_errno(ret);
2454 goto out;
2455 }
2456 }
2457
2458 if (clusters_add) {
2459 ret = ocfs2_reserve_clusters(osb, clusters_add, &ctxt->data_ac);
2460 if (ret)
2461 mlog_errno(ret);
2462 }
2463out:
2464 if (ret) {
2465 if (ctxt->meta_ac) {
2466 ocfs2_free_alloc_context(ctxt->meta_ac);
2467 ctxt->meta_ac = NULL;
2468 }
2469
2470 /*
2471 * We cannot have an error and a non null ctxt->data_ac.
2472 */
2473 }
2474
2475 return ret;
2476}
2477
Tao Ma85db90e2008-11-12 08:27:01 +08002478static int __ocfs2_xattr_set_handle(struct inode *inode,
2479 struct ocfs2_dinode *di,
2480 struct ocfs2_xattr_info *xi,
2481 struct ocfs2_xattr_search *xis,
2482 struct ocfs2_xattr_search *xbs,
2483 struct ocfs2_xattr_set_ctxt *ctxt)
2484{
Tao Ma9f868f12008-11-19 16:48:42 +08002485 int ret = 0, credits, old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002486
2487 if (!xi->value) {
2488 /* Remove existing extended attribute */
2489 if (!xis->not_found)
2490 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2491 else if (!xbs->not_found)
2492 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2493 } else {
2494 /* We always try to set extended attribute into inode first*/
2495 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2496 if (!ret && !xbs->not_found) {
2497 /*
2498 * If succeed and that extended attribute existing in
2499 * external block, then we will remove it.
2500 */
2501 xi->value = NULL;
2502 xi->value_len = 0;
2503
Tao Ma9f868f12008-11-19 16:48:42 +08002504 old_found = xis->not_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002505 xis->not_found = -ENODATA;
2506 ret = ocfs2_calc_xattr_set_need(inode,
2507 di,
2508 xi,
2509 xis,
2510 xbs,
2511 NULL,
2512 NULL,
2513 &credits);
Tao Ma9f868f12008-11-19 16:48:42 +08002514 xis->not_found = old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002515 if (ret) {
2516 mlog_errno(ret);
2517 goto out;
2518 }
2519
2520 ret = ocfs2_extend_trans(ctxt->handle, credits +
2521 ctxt->handle->h_buffer_credits);
2522 if (ret) {
2523 mlog_errno(ret);
2524 goto out;
2525 }
2526 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2527 } else if (ret == -ENOSPC) {
2528 if (di->i_xattr_loc && !xbs->xattr_bh) {
2529 ret = ocfs2_xattr_block_find(inode,
2530 xi->name_index,
2531 xi->name, xbs);
2532 if (ret)
2533 goto out;
2534
Tao Ma9f868f12008-11-19 16:48:42 +08002535 old_found = xis->not_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002536 xis->not_found = -ENODATA;
2537 ret = ocfs2_calc_xattr_set_need(inode,
2538 di,
2539 xi,
2540 xis,
2541 xbs,
2542 NULL,
2543 NULL,
2544 &credits);
Tao Ma9f868f12008-11-19 16:48:42 +08002545 xis->not_found = old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002546 if (ret) {
2547 mlog_errno(ret);
2548 goto out;
2549 }
2550
2551 ret = ocfs2_extend_trans(ctxt->handle, credits +
2552 ctxt->handle->h_buffer_credits);
2553 if (ret) {
2554 mlog_errno(ret);
2555 goto out;
2556 }
2557 }
2558 /*
2559 * If no space in inode, we will set extended attribute
2560 * into external block.
2561 */
2562 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2563 if (ret)
2564 goto out;
2565 if (!xis->not_found) {
2566 /*
2567 * If succeed and that extended attribute
2568 * existing in inode, we will remove it.
2569 */
2570 xi->value = NULL;
2571 xi->value_len = 0;
2572 xbs->not_found = -ENODATA;
2573 ret = ocfs2_calc_xattr_set_need(inode,
2574 di,
2575 xi,
2576 xis,
2577 xbs,
2578 NULL,
2579 NULL,
2580 &credits);
2581 if (ret) {
2582 mlog_errno(ret);
2583 goto out;
2584 }
2585
2586 ret = ocfs2_extend_trans(ctxt->handle, credits +
2587 ctxt->handle->h_buffer_credits);
2588 if (ret) {
2589 mlog_errno(ret);
2590 goto out;
2591 }
2592 ret = ocfs2_xattr_ibody_set(inode, xi,
2593 xis, ctxt);
2594 }
2595 }
2596 }
2597
Tao Ma4b3f6202008-12-05 06:20:55 +08002598 if (!ret) {
2599 /* Update inode ctime. */
Tao Ma89a907a2009-02-17 04:39:28 +08002600 ret = ocfs2_journal_access_di(ctxt->handle, inode,
2601 xis->inode_bh,
2602 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma4b3f6202008-12-05 06:20:55 +08002603 if (ret) {
2604 mlog_errno(ret);
2605 goto out;
2606 }
2607
2608 inode->i_ctime = CURRENT_TIME;
2609 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
2610 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
2611 ocfs2_journal_dirty(ctxt->handle, xis->inode_bh);
2612 }
Tao Ma85db90e2008-11-12 08:27:01 +08002613out:
2614 return ret;
2615}
2616
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002617/*
Tiger Yang6c3faba2008-11-14 11:16:03 +08002618 * This function only called duing creating inode
2619 * for init security/acl xattrs of the new inode.
Tiger Yang008aafa2008-12-09 16:43:08 +08002620 * All transanction credits have been reserved in mknod.
Tiger Yang6c3faba2008-11-14 11:16:03 +08002621 */
2622int ocfs2_xattr_set_handle(handle_t *handle,
2623 struct inode *inode,
2624 struct buffer_head *di_bh,
2625 int name_index,
2626 const char *name,
2627 const void *value,
2628 size_t value_len,
2629 int flags,
2630 struct ocfs2_alloc_context *meta_ac,
2631 struct ocfs2_alloc_context *data_ac)
2632{
2633 struct ocfs2_dinode *di;
2634 int ret;
2635
2636 struct ocfs2_xattr_info xi = {
2637 .name_index = name_index,
2638 .name = name,
2639 .value = value,
2640 .value_len = value_len,
2641 };
2642
2643 struct ocfs2_xattr_search xis = {
2644 .not_found = -ENODATA,
2645 };
2646
2647 struct ocfs2_xattr_search xbs = {
2648 .not_found = -ENODATA,
2649 };
2650
2651 struct ocfs2_xattr_set_ctxt ctxt = {
2652 .handle = handle,
2653 .meta_ac = meta_ac,
2654 .data_ac = data_ac,
2655 };
2656
2657 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2658 return -EOPNOTSUPP;
2659
Tiger Yang008aafa2008-12-09 16:43:08 +08002660 /*
2661 * In extreme situation, may need xattr bucket when
2662 * block size is too small. And we have already reserved
2663 * the credits for bucket in mknod.
2664 */
2665 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE) {
2666 xbs.bucket = ocfs2_xattr_bucket_new(inode);
2667 if (!xbs.bucket) {
2668 mlog_errno(-ENOMEM);
2669 return -ENOMEM;
2670 }
2671 }
2672
Tiger Yang6c3faba2008-11-14 11:16:03 +08002673 xis.inode_bh = xbs.inode_bh = di_bh;
2674 di = (struct ocfs2_dinode *)di_bh->b_data;
2675
2676 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2677
2678 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2679 if (ret)
2680 goto cleanup;
2681 if (xis.not_found) {
2682 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2683 if (ret)
2684 goto cleanup;
2685 }
2686
2687 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2688
2689cleanup:
2690 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2691 brelse(xbs.xattr_bh);
Tiger Yang008aafa2008-12-09 16:43:08 +08002692 ocfs2_xattr_bucket_free(xbs.bucket);
Tiger Yang6c3faba2008-11-14 11:16:03 +08002693
2694 return ret;
2695}
2696
2697/*
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002698 * ocfs2_xattr_set()
2699 *
2700 * Set, replace or remove an extended attribute for this inode.
2701 * value is NULL to remove an existing extended attribute, else either
2702 * create or replace an extended attribute.
2703 */
2704int ocfs2_xattr_set(struct inode *inode,
2705 int name_index,
2706 const char *name,
2707 const void *value,
2708 size_t value_len,
2709 int flags)
2710{
2711 struct buffer_head *di_bh = NULL;
2712 struct ocfs2_dinode *di;
Tao Ma85db90e2008-11-12 08:27:01 +08002713 int ret, credits;
Tao Ma78f30c32008-11-12 08:27:00 +08002714 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08002715 struct inode *tl_inode = osb->osb_tl_inode;
Tao Ma78f30c32008-11-12 08:27:00 +08002716 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002717
2718 struct ocfs2_xattr_info xi = {
2719 .name_index = name_index,
2720 .name = name,
2721 .value = value,
2722 .value_len = value_len,
2723 };
2724
2725 struct ocfs2_xattr_search xis = {
2726 .not_found = -ENODATA,
2727 };
2728
2729 struct ocfs2_xattr_search xbs = {
2730 .not_found = -ENODATA,
2731 };
2732
Tiger Yang8154da32008-08-18 17:11:46 +08002733 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2734 return -EOPNOTSUPP;
2735
Joel Beckerba937122008-10-24 19:13:20 -07002736 /*
2737 * Only xbs will be used on indexed trees. xis doesn't need a
2738 * bucket.
2739 */
2740 xbs.bucket = ocfs2_xattr_bucket_new(inode);
2741 if (!xbs.bucket) {
2742 mlog_errno(-ENOMEM);
2743 return -ENOMEM;
2744 }
2745
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002746 ret = ocfs2_inode_lock(inode, &di_bh, 1);
2747 if (ret < 0) {
2748 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07002749 goto cleanup_nolock;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002750 }
2751 xis.inode_bh = xbs.inode_bh = di_bh;
2752 di = (struct ocfs2_dinode *)di_bh->b_data;
2753
2754 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2755 /*
2756 * Scan inode and external block to find the same name
2757 * extended attribute and collect search infomation.
2758 */
2759 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2760 if (ret)
2761 goto cleanup;
2762 if (xis.not_found) {
2763 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2764 if (ret)
2765 goto cleanup;
2766 }
2767
2768 if (xis.not_found && xbs.not_found) {
2769 ret = -ENODATA;
2770 if (flags & XATTR_REPLACE)
2771 goto cleanup;
2772 ret = 0;
2773 if (!value)
2774 goto cleanup;
2775 } else {
2776 ret = -EEXIST;
2777 if (flags & XATTR_CREATE)
2778 goto cleanup;
2779 }
2780
Tao Ma85db90e2008-11-12 08:27:01 +08002781
2782 mutex_lock(&tl_inode->i_mutex);
2783
2784 if (ocfs2_truncate_log_needs_flush(osb)) {
2785 ret = __ocfs2_flush_truncate_log(osb);
2786 if (ret < 0) {
2787 mutex_unlock(&tl_inode->i_mutex);
2788 mlog_errno(ret);
2789 goto cleanup;
2790 }
2791 }
2792 mutex_unlock(&tl_inode->i_mutex);
2793
2794 ret = ocfs2_init_xattr_set_ctxt(inode, di, &xi, &xis,
2795 &xbs, &ctxt, &credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002796 if (ret) {
2797 mlog_errno(ret);
2798 goto cleanup;
2799 }
2800
Tao Ma4b3f6202008-12-05 06:20:55 +08002801 /* we need to update inode's ctime field, so add credit for it. */
2802 credits += OCFS2_INODE_UPDATE_CREDITS;
Tao Ma85db90e2008-11-12 08:27:01 +08002803 ctxt.handle = ocfs2_start_trans(osb, credits);
2804 if (IS_ERR(ctxt.handle)) {
2805 ret = PTR_ERR(ctxt.handle);
2806 mlog_errno(ret);
2807 goto cleanup;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002808 }
Tao Ma85db90e2008-11-12 08:27:01 +08002809
2810 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2811
2812 ocfs2_commit_trans(osb, ctxt.handle);
2813
Tao Ma78f30c32008-11-12 08:27:00 +08002814 if (ctxt.data_ac)
2815 ocfs2_free_alloc_context(ctxt.data_ac);
2816 if (ctxt.meta_ac)
2817 ocfs2_free_alloc_context(ctxt.meta_ac);
2818 if (ocfs2_dealloc_has_cluster(&ctxt.dealloc))
2819 ocfs2_schedule_truncate_log_flush(osb, 1);
2820 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002821cleanup:
2822 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2823 ocfs2_inode_unlock(inode, 1);
Joel Beckerba937122008-10-24 19:13:20 -07002824cleanup_nolock:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002825 brelse(di_bh);
2826 brelse(xbs.xattr_bh);
Joel Beckerba937122008-10-24 19:13:20 -07002827 ocfs2_xattr_bucket_free(xbs.bucket);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002828
2829 return ret;
2830}
2831
Tao Ma0c044f02008-08-18 17:38:50 +08002832/*
2833 * Find the xattr extent rec which may contains name_hash.
2834 * e_cpos will be the first name hash of the xattr rec.
2835 * el must be the ocfs2_xattr_header.xb_attrs.xb_root.xt_list.
2836 */
2837static int ocfs2_xattr_get_rec(struct inode *inode,
2838 u32 name_hash,
2839 u64 *p_blkno,
2840 u32 *e_cpos,
2841 u32 *num_clusters,
2842 struct ocfs2_extent_list *el)
2843{
2844 int ret = 0, i;
2845 struct buffer_head *eb_bh = NULL;
2846 struct ocfs2_extent_block *eb;
2847 struct ocfs2_extent_rec *rec = NULL;
2848 u64 e_blkno = 0;
2849
2850 if (el->l_tree_depth) {
2851 ret = ocfs2_find_leaf(inode, el, name_hash, &eb_bh);
2852 if (ret) {
2853 mlog_errno(ret);
2854 goto out;
2855 }
2856
2857 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2858 el = &eb->h_list;
2859
2860 if (el->l_tree_depth) {
2861 ocfs2_error(inode->i_sb,
2862 "Inode %lu has non zero tree depth in "
2863 "xattr tree block %llu\n", inode->i_ino,
2864 (unsigned long long)eb_bh->b_blocknr);
2865 ret = -EROFS;
2866 goto out;
2867 }
2868 }
2869
2870 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
2871 rec = &el->l_recs[i];
2872
2873 if (le32_to_cpu(rec->e_cpos) <= name_hash) {
2874 e_blkno = le64_to_cpu(rec->e_blkno);
2875 break;
2876 }
2877 }
2878
2879 if (!e_blkno) {
2880 ocfs2_error(inode->i_sb, "Inode %lu has bad extent "
2881 "record (%u, %u, 0) in xattr", inode->i_ino,
2882 le32_to_cpu(rec->e_cpos),
2883 ocfs2_rec_clusters(el, rec));
2884 ret = -EROFS;
2885 goto out;
2886 }
2887
2888 *p_blkno = le64_to_cpu(rec->e_blkno);
2889 *num_clusters = le16_to_cpu(rec->e_leaf_clusters);
2890 if (e_cpos)
2891 *e_cpos = le32_to_cpu(rec->e_cpos);
2892out:
2893 brelse(eb_bh);
2894 return ret;
2895}
2896
2897typedef int (xattr_bucket_func)(struct inode *inode,
2898 struct ocfs2_xattr_bucket *bucket,
2899 void *para);
2900
Tao Ma589dc262008-08-18 17:38:51 +08002901static int ocfs2_find_xe_in_bucket(struct inode *inode,
Joel Beckere2356a32008-10-27 15:01:54 -07002902 struct ocfs2_xattr_bucket *bucket,
Tao Ma589dc262008-08-18 17:38:51 +08002903 int name_index,
2904 const char *name,
2905 u32 name_hash,
2906 u16 *xe_index,
2907 int *found)
2908{
2909 int i, ret = 0, cmp = 1, block_off, new_offset;
Joel Beckere2356a32008-10-27 15:01:54 -07002910 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma589dc262008-08-18 17:38:51 +08002911 size_t name_len = strlen(name);
2912 struct ocfs2_xattr_entry *xe = NULL;
Tao Ma589dc262008-08-18 17:38:51 +08002913 char *xe_name;
2914
2915 /*
2916 * We don't use binary search in the bucket because there
2917 * may be multiple entries with the same name hash.
2918 */
2919 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
2920 xe = &xh->xh_entries[i];
2921
2922 if (name_hash > le32_to_cpu(xe->xe_name_hash))
2923 continue;
2924 else if (name_hash < le32_to_cpu(xe->xe_name_hash))
2925 break;
2926
2927 cmp = name_index - ocfs2_xattr_get_type(xe);
2928 if (!cmp)
2929 cmp = name_len - xe->xe_name_len;
2930 if (cmp)
2931 continue;
2932
2933 ret = ocfs2_xattr_bucket_get_name_value(inode,
2934 xh,
2935 i,
2936 &block_off,
2937 &new_offset);
2938 if (ret) {
2939 mlog_errno(ret);
2940 break;
2941 }
2942
Joel Becker970e4932008-11-13 14:49:19 -08002943
Joel Beckere2356a32008-10-27 15:01:54 -07002944 xe_name = bucket_block(bucket, block_off) + new_offset;
2945 if (!memcmp(name, xe_name, name_len)) {
Tao Ma589dc262008-08-18 17:38:51 +08002946 *xe_index = i;
2947 *found = 1;
2948 ret = 0;
2949 break;
2950 }
2951 }
2952
2953 return ret;
2954}
2955
2956/*
2957 * Find the specified xattr entry in a series of buckets.
2958 * This series start from p_blkno and last for num_clusters.
2959 * The ocfs2_xattr_header.xh_num_buckets of the first bucket contains
2960 * the num of the valid buckets.
2961 *
2962 * Return the buffer_head this xattr should reside in. And if the xattr's
2963 * hash is in the gap of 2 buckets, return the lower bucket.
2964 */
2965static int ocfs2_xattr_bucket_find(struct inode *inode,
2966 int name_index,
2967 const char *name,
2968 u32 name_hash,
2969 u64 p_blkno,
2970 u32 first_hash,
2971 u32 num_clusters,
2972 struct ocfs2_xattr_search *xs)
2973{
2974 int ret, found = 0;
Tao Ma589dc262008-08-18 17:38:51 +08002975 struct ocfs2_xattr_header *xh = NULL;
2976 struct ocfs2_xattr_entry *xe = NULL;
2977 u16 index = 0;
2978 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2979 int low_bucket = 0, bucket, high_bucket;
Joel Beckere2356a32008-10-27 15:01:54 -07002980 struct ocfs2_xattr_bucket *search;
Tao Ma589dc262008-08-18 17:38:51 +08002981 u32 last_hash;
Joel Beckere2356a32008-10-27 15:01:54 -07002982 u64 blkno, lower_blkno = 0;
Tao Ma589dc262008-08-18 17:38:51 +08002983
Joel Beckere2356a32008-10-27 15:01:54 -07002984 search = ocfs2_xattr_bucket_new(inode);
2985 if (!search) {
2986 ret = -ENOMEM;
2987 mlog_errno(ret);
2988 goto out;
2989 }
2990
2991 ret = ocfs2_read_xattr_bucket(search, p_blkno);
Tao Ma589dc262008-08-18 17:38:51 +08002992 if (ret) {
2993 mlog_errno(ret);
2994 goto out;
2995 }
2996
Joel Beckere2356a32008-10-27 15:01:54 -07002997 xh = bucket_xh(search);
Tao Ma589dc262008-08-18 17:38:51 +08002998 high_bucket = le16_to_cpu(xh->xh_num_buckets) - 1;
Tao Ma589dc262008-08-18 17:38:51 +08002999 while (low_bucket <= high_bucket) {
Joel Beckere2356a32008-10-27 15:01:54 -07003000 ocfs2_xattr_bucket_relse(search);
3001
Tao Ma589dc262008-08-18 17:38:51 +08003002 bucket = (low_bucket + high_bucket) / 2;
Tao Ma589dc262008-08-18 17:38:51 +08003003 blkno = p_blkno + bucket * blk_per_bucket;
Joel Beckere2356a32008-10-27 15:01:54 -07003004 ret = ocfs2_read_xattr_bucket(search, blkno);
Tao Ma589dc262008-08-18 17:38:51 +08003005 if (ret) {
3006 mlog_errno(ret);
3007 goto out;
3008 }
3009
Joel Beckere2356a32008-10-27 15:01:54 -07003010 xh = bucket_xh(search);
Tao Ma589dc262008-08-18 17:38:51 +08003011 xe = &xh->xh_entries[0];
3012 if (name_hash < le32_to_cpu(xe->xe_name_hash)) {
3013 high_bucket = bucket - 1;
3014 continue;
3015 }
3016
3017 /*
3018 * Check whether the hash of the last entry in our
Tao Ma5a095612008-09-19 22:17:41 +08003019 * bucket is larger than the search one. for an empty
3020 * bucket, the last one is also the first one.
Tao Ma589dc262008-08-18 17:38:51 +08003021 */
Tao Ma5a095612008-09-19 22:17:41 +08003022 if (xh->xh_count)
3023 xe = &xh->xh_entries[le16_to_cpu(xh->xh_count) - 1];
3024
Tao Ma589dc262008-08-18 17:38:51 +08003025 last_hash = le32_to_cpu(xe->xe_name_hash);
3026
Joel Beckere2356a32008-10-27 15:01:54 -07003027 /* record lower_blkno which may be the insert place. */
3028 lower_blkno = blkno;
Tao Ma589dc262008-08-18 17:38:51 +08003029
3030 if (name_hash > le32_to_cpu(xe->xe_name_hash)) {
3031 low_bucket = bucket + 1;
3032 continue;
3033 }
3034
3035 /* the searched xattr should reside in this bucket if exists. */
Joel Beckere2356a32008-10-27 15:01:54 -07003036 ret = ocfs2_find_xe_in_bucket(inode, search,
Tao Ma589dc262008-08-18 17:38:51 +08003037 name_index, name, name_hash,
3038 &index, &found);
3039 if (ret) {
3040 mlog_errno(ret);
3041 goto out;
3042 }
3043 break;
3044 }
3045
3046 /*
3047 * Record the bucket we have found.
3048 * When the xattr's hash value is in the gap of 2 buckets, we will
3049 * always set it to the previous bucket.
3050 */
Joel Beckere2356a32008-10-27 15:01:54 -07003051 if (!lower_blkno)
3052 lower_blkno = p_blkno;
3053
3054 /* This should be in cache - we just read it during the search */
3055 ret = ocfs2_read_xattr_bucket(xs->bucket, lower_blkno);
3056 if (ret) {
3057 mlog_errno(ret);
3058 goto out;
Tao Ma589dc262008-08-18 17:38:51 +08003059 }
Tao Ma589dc262008-08-18 17:38:51 +08003060
Joel Beckerba937122008-10-24 19:13:20 -07003061 xs->header = bucket_xh(xs->bucket);
3062 xs->base = bucket_block(xs->bucket, 0);
Tao Ma589dc262008-08-18 17:38:51 +08003063 xs->end = xs->base + inode->i_sb->s_blocksize;
3064
3065 if (found) {
Tao Ma589dc262008-08-18 17:38:51 +08003066 xs->here = &xs->header->xh_entries[index];
3067 mlog(0, "find xattr %s in bucket %llu, entry = %u\n", name,
Joel Beckerba937122008-10-24 19:13:20 -07003068 (unsigned long long)bucket_blkno(xs->bucket), index);
Tao Ma589dc262008-08-18 17:38:51 +08003069 } else
3070 ret = -ENODATA;
3071
3072out:
Joel Beckere2356a32008-10-27 15:01:54 -07003073 ocfs2_xattr_bucket_free(search);
Tao Ma589dc262008-08-18 17:38:51 +08003074 return ret;
3075}
3076
3077static int ocfs2_xattr_index_block_find(struct inode *inode,
3078 struct buffer_head *root_bh,
3079 int name_index,
3080 const char *name,
3081 struct ocfs2_xattr_search *xs)
3082{
3083 int ret;
3084 struct ocfs2_xattr_block *xb =
3085 (struct ocfs2_xattr_block *)root_bh->b_data;
3086 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
3087 struct ocfs2_extent_list *el = &xb_root->xt_list;
3088 u64 p_blkno = 0;
3089 u32 first_hash, num_clusters = 0;
Tao Ma2057e5c2008-10-09 23:06:13 +08003090 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
Tao Ma589dc262008-08-18 17:38:51 +08003091
3092 if (le16_to_cpu(el->l_next_free_rec) == 0)
3093 return -ENODATA;
3094
3095 mlog(0, "find xattr %s, hash = %u, index = %d in xattr tree\n",
3096 name, name_hash, name_index);
3097
3098 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &first_hash,
3099 &num_clusters, el);
3100 if (ret) {
3101 mlog_errno(ret);
3102 goto out;
3103 }
3104
3105 BUG_ON(p_blkno == 0 || num_clusters == 0 || first_hash > name_hash);
3106
3107 mlog(0, "find xattr extent rec %u clusters from %llu, the first hash "
Mark Fashehde29c082008-10-29 14:45:30 -07003108 "in the rec is %u\n", num_clusters, (unsigned long long)p_blkno,
3109 first_hash);
Tao Ma589dc262008-08-18 17:38:51 +08003110
3111 ret = ocfs2_xattr_bucket_find(inode, name_index, name, name_hash,
3112 p_blkno, first_hash, num_clusters, xs);
3113
3114out:
3115 return ret;
3116}
3117
Tao Ma0c044f02008-08-18 17:38:50 +08003118static int ocfs2_iterate_xattr_buckets(struct inode *inode,
3119 u64 blkno,
3120 u32 clusters,
3121 xattr_bucket_func *func,
3122 void *para)
3123{
Joel Becker6dde41d2008-10-24 17:16:48 -07003124 int i, ret = 0;
Tao Ma0c044f02008-08-18 17:38:50 +08003125 u32 bpc = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb));
3126 u32 num_buckets = clusters * bpc;
Joel Beckerba937122008-10-24 19:13:20 -07003127 struct ocfs2_xattr_bucket *bucket;
Tao Ma0c044f02008-08-18 17:38:50 +08003128
Joel Beckerba937122008-10-24 19:13:20 -07003129 bucket = ocfs2_xattr_bucket_new(inode);
3130 if (!bucket) {
3131 mlog_errno(-ENOMEM);
3132 return -ENOMEM;
3133 }
Tao Ma0c044f02008-08-18 17:38:50 +08003134
3135 mlog(0, "iterating xattr buckets in %u clusters starting from %llu\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003136 clusters, (unsigned long long)blkno);
Tao Ma0c044f02008-08-18 17:38:50 +08003137
Joel Beckerba937122008-10-24 19:13:20 -07003138 for (i = 0; i < num_buckets; i++, blkno += bucket->bu_blocks) {
3139 ret = ocfs2_read_xattr_bucket(bucket, blkno);
Tao Ma0c044f02008-08-18 17:38:50 +08003140 if (ret) {
3141 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07003142 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003143 }
3144
Tao Ma0c044f02008-08-18 17:38:50 +08003145 /*
3146 * The real bucket num in this series of blocks is stored
3147 * in the 1st bucket.
3148 */
3149 if (i == 0)
Joel Beckerba937122008-10-24 19:13:20 -07003150 num_buckets = le16_to_cpu(bucket_xh(bucket)->xh_num_buckets);
Tao Ma0c044f02008-08-18 17:38:50 +08003151
Mark Fashehde29c082008-10-29 14:45:30 -07003152 mlog(0, "iterating xattr bucket %llu, first hash %u\n",
3153 (unsigned long long)blkno,
Joel Beckerba937122008-10-24 19:13:20 -07003154 le32_to_cpu(bucket_xh(bucket)->xh_entries[0].xe_name_hash));
Tao Ma0c044f02008-08-18 17:38:50 +08003155 if (func) {
Joel Beckerba937122008-10-24 19:13:20 -07003156 ret = func(inode, bucket, para);
3157 if (ret)
Tao Ma0c044f02008-08-18 17:38:50 +08003158 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07003159 /* Fall through to bucket_relse() */
Tao Ma0c044f02008-08-18 17:38:50 +08003160 }
3161
Joel Beckerba937122008-10-24 19:13:20 -07003162 ocfs2_xattr_bucket_relse(bucket);
3163 if (ret)
3164 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003165 }
3166
Joel Beckerba937122008-10-24 19:13:20 -07003167 ocfs2_xattr_bucket_free(bucket);
Tao Ma0c044f02008-08-18 17:38:50 +08003168 return ret;
3169}
3170
3171struct ocfs2_xattr_tree_list {
3172 char *buffer;
3173 size_t buffer_size;
Tao Ma936b8832008-10-09 23:06:14 +08003174 size_t result;
Tao Ma0c044f02008-08-18 17:38:50 +08003175};
3176
3177static int ocfs2_xattr_bucket_get_name_value(struct inode *inode,
3178 struct ocfs2_xattr_header *xh,
3179 int index,
3180 int *block_off,
3181 int *new_offset)
3182{
3183 u16 name_offset;
3184
3185 if (index < 0 || index >= le16_to_cpu(xh->xh_count))
3186 return -EINVAL;
3187
3188 name_offset = le16_to_cpu(xh->xh_entries[index].xe_name_offset);
3189
3190 *block_off = name_offset >> inode->i_sb->s_blocksize_bits;
3191 *new_offset = name_offset % inode->i_sb->s_blocksize;
3192
3193 return 0;
3194}
3195
3196static int ocfs2_list_xattr_bucket(struct inode *inode,
3197 struct ocfs2_xattr_bucket *bucket,
3198 void *para)
3199{
Tao Ma936b8832008-10-09 23:06:14 +08003200 int ret = 0, type;
Tao Ma0c044f02008-08-18 17:38:50 +08003201 struct ocfs2_xattr_tree_list *xl = (struct ocfs2_xattr_tree_list *)para;
Tao Ma0c044f02008-08-18 17:38:50 +08003202 int i, block_off, new_offset;
Tao Ma936b8832008-10-09 23:06:14 +08003203 const char *prefix, *name;
Tao Ma0c044f02008-08-18 17:38:50 +08003204
Joel Becker3e632942008-10-24 17:04:49 -07003205 for (i = 0 ; i < le16_to_cpu(bucket_xh(bucket)->xh_count); i++) {
3206 struct ocfs2_xattr_entry *entry = &bucket_xh(bucket)->xh_entries[i];
Tao Ma936b8832008-10-09 23:06:14 +08003207 type = ocfs2_xattr_get_type(entry);
3208 prefix = ocfs2_xattr_prefix(type);
Tao Ma0c044f02008-08-18 17:38:50 +08003209
Tao Ma936b8832008-10-09 23:06:14 +08003210 if (prefix) {
Tao Ma0c044f02008-08-18 17:38:50 +08003211 ret = ocfs2_xattr_bucket_get_name_value(inode,
Joel Becker3e632942008-10-24 17:04:49 -07003212 bucket_xh(bucket),
Tao Ma0c044f02008-08-18 17:38:50 +08003213 i,
3214 &block_off,
3215 &new_offset);
3216 if (ret)
3217 break;
Tao Ma936b8832008-10-09 23:06:14 +08003218
Joel Becker51def392008-10-24 16:57:21 -07003219 name = (const char *)bucket_block(bucket, block_off) +
Tao Ma936b8832008-10-09 23:06:14 +08003220 new_offset;
3221 ret = ocfs2_xattr_list_entry(xl->buffer,
3222 xl->buffer_size,
3223 &xl->result,
3224 prefix, name,
3225 entry->xe_name_len);
3226 if (ret)
3227 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003228 }
3229 }
3230
3231 return ret;
3232}
3233
3234static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
3235 struct ocfs2_xattr_tree_root *xt,
3236 char *buffer,
3237 size_t buffer_size)
3238{
3239 struct ocfs2_extent_list *el = &xt->xt_list;
3240 int ret = 0;
3241 u32 name_hash = UINT_MAX, e_cpos = 0, num_clusters = 0;
3242 u64 p_blkno = 0;
3243 struct ocfs2_xattr_tree_list xl = {
3244 .buffer = buffer,
3245 .buffer_size = buffer_size,
Tao Ma936b8832008-10-09 23:06:14 +08003246 .result = 0,
Tao Ma0c044f02008-08-18 17:38:50 +08003247 };
3248
3249 if (le16_to_cpu(el->l_next_free_rec) == 0)
3250 return 0;
3251
3252 while (name_hash > 0) {
3253 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
3254 &e_cpos, &num_clusters, el);
3255 if (ret) {
3256 mlog_errno(ret);
3257 goto out;
3258 }
3259
3260 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
3261 ocfs2_list_xattr_bucket,
3262 &xl);
3263 if (ret) {
3264 mlog_errno(ret);
3265 goto out;
3266 }
3267
3268 if (e_cpos == 0)
3269 break;
3270
3271 name_hash = e_cpos - 1;
3272 }
3273
Tao Ma936b8832008-10-09 23:06:14 +08003274 ret = xl.result;
Tao Ma0c044f02008-08-18 17:38:50 +08003275out:
3276 return ret;
3277}
Tao Ma01225592008-08-18 17:38:53 +08003278
3279static int cmp_xe(const void *a, const void *b)
3280{
3281 const struct ocfs2_xattr_entry *l = a, *r = b;
3282 u32 l_hash = le32_to_cpu(l->xe_name_hash);
3283 u32 r_hash = le32_to_cpu(r->xe_name_hash);
3284
3285 if (l_hash > r_hash)
3286 return 1;
3287 if (l_hash < r_hash)
3288 return -1;
3289 return 0;
3290}
3291
3292static void swap_xe(void *a, void *b, int size)
3293{
3294 struct ocfs2_xattr_entry *l = a, *r = b, tmp;
3295
3296 tmp = *l;
3297 memcpy(l, r, sizeof(struct ocfs2_xattr_entry));
3298 memcpy(r, &tmp, sizeof(struct ocfs2_xattr_entry));
3299}
3300
3301/*
3302 * When the ocfs2_xattr_block is filled up, new bucket will be created
3303 * and all the xattr entries will be moved to the new bucket.
Joel Becker178eeac2008-10-27 15:18:29 -07003304 * The header goes at the start of the bucket, and the names+values are
3305 * filled from the end. This is why *target starts as the last buffer.
Tao Ma01225592008-08-18 17:38:53 +08003306 * Note: we need to sort the entries since they are not saved in order
3307 * in the ocfs2_xattr_block.
3308 */
3309static void ocfs2_cp_xattr_block_to_bucket(struct inode *inode,
3310 struct buffer_head *xb_bh,
Joel Becker178eeac2008-10-27 15:18:29 -07003311 struct ocfs2_xattr_bucket *bucket)
Tao Ma01225592008-08-18 17:38:53 +08003312{
3313 int i, blocksize = inode->i_sb->s_blocksize;
Joel Becker178eeac2008-10-27 15:18:29 -07003314 int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08003315 u16 offset, size, off_change;
3316 struct ocfs2_xattr_entry *xe;
3317 struct ocfs2_xattr_block *xb =
3318 (struct ocfs2_xattr_block *)xb_bh->b_data;
3319 struct ocfs2_xattr_header *xb_xh = &xb->xb_attrs.xb_header;
Joel Becker178eeac2008-10-27 15:18:29 -07003320 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma01225592008-08-18 17:38:53 +08003321 u16 count = le16_to_cpu(xb_xh->xh_count);
Joel Becker178eeac2008-10-27 15:18:29 -07003322 char *src = xb_bh->b_data;
3323 char *target = bucket_block(bucket, blks - 1);
Tao Ma01225592008-08-18 17:38:53 +08003324
3325 mlog(0, "cp xattr from block %llu to bucket %llu\n",
3326 (unsigned long long)xb_bh->b_blocknr,
Joel Becker178eeac2008-10-27 15:18:29 -07003327 (unsigned long long)bucket_blkno(bucket));
Tao Ma01225592008-08-18 17:38:53 +08003328
Joel Becker178eeac2008-10-27 15:18:29 -07003329 for (i = 0; i < blks; i++)
3330 memset(bucket_block(bucket, i), 0, blocksize);
3331
Tao Ma01225592008-08-18 17:38:53 +08003332 /*
3333 * Since the xe_name_offset is based on ocfs2_xattr_header,
3334 * there is a offset change corresponding to the change of
3335 * ocfs2_xattr_header's position.
3336 */
3337 off_change = offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3338 xe = &xb_xh->xh_entries[count - 1];
3339 offset = le16_to_cpu(xe->xe_name_offset) + off_change;
3340 size = blocksize - offset;
3341
3342 /* copy all the names and values. */
Tao Ma01225592008-08-18 17:38:53 +08003343 memcpy(target + offset, src + offset, size);
3344
3345 /* Init new header now. */
3346 xh->xh_count = xb_xh->xh_count;
3347 xh->xh_num_buckets = cpu_to_le16(1);
3348 xh->xh_name_value_len = cpu_to_le16(size);
3349 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE - size);
3350
3351 /* copy all the entries. */
Joel Becker178eeac2008-10-27 15:18:29 -07003352 target = bucket_block(bucket, 0);
Tao Ma01225592008-08-18 17:38:53 +08003353 offset = offsetof(struct ocfs2_xattr_header, xh_entries);
3354 size = count * sizeof(struct ocfs2_xattr_entry);
3355 memcpy(target + offset, (char *)xb_xh + offset, size);
3356
3357 /* Change the xe offset for all the xe because of the move. */
3358 off_change = OCFS2_XATTR_BUCKET_SIZE - blocksize +
3359 offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3360 for (i = 0; i < count; i++)
3361 le16_add_cpu(&xh->xh_entries[i].xe_name_offset, off_change);
3362
3363 mlog(0, "copy entry: start = %u, size = %u, offset_change = %u\n",
3364 offset, size, off_change);
3365
3366 sort(target + offset, count, sizeof(struct ocfs2_xattr_entry),
3367 cmp_xe, swap_xe);
3368}
3369
3370/*
3371 * After we move xattr from block to index btree, we have to
3372 * update ocfs2_xattr_search to the new xe and base.
3373 *
3374 * When the entry is in xattr block, xattr_bh indicates the storage place.
3375 * While if the entry is in index b-tree, "bucket" indicates the
3376 * real place of the xattr.
3377 */
Joel Becker178eeac2008-10-27 15:18:29 -07003378static void ocfs2_xattr_update_xattr_search(struct inode *inode,
3379 struct ocfs2_xattr_search *xs,
3380 struct buffer_head *old_bh)
Tao Ma01225592008-08-18 17:38:53 +08003381{
Tao Ma01225592008-08-18 17:38:53 +08003382 char *buf = old_bh->b_data;
3383 struct ocfs2_xattr_block *old_xb = (struct ocfs2_xattr_block *)buf;
3384 struct ocfs2_xattr_header *old_xh = &old_xb->xb_attrs.xb_header;
Joel Becker178eeac2008-10-27 15:18:29 -07003385 int i;
Tao Ma01225592008-08-18 17:38:53 +08003386
Joel Beckerba937122008-10-24 19:13:20 -07003387 xs->header = bucket_xh(xs->bucket);
Joel Becker178eeac2008-10-27 15:18:29 -07003388 xs->base = bucket_block(xs->bucket, 0);
Tao Ma01225592008-08-18 17:38:53 +08003389 xs->end = xs->base + inode->i_sb->s_blocksize;
3390
Joel Becker178eeac2008-10-27 15:18:29 -07003391 if (xs->not_found)
3392 return;
Tao Ma01225592008-08-18 17:38:53 +08003393
Joel Becker178eeac2008-10-27 15:18:29 -07003394 i = xs->here - old_xh->xh_entries;
3395 xs->here = &xs->header->xh_entries[i];
Tao Ma01225592008-08-18 17:38:53 +08003396}
3397
3398static int ocfs2_xattr_create_index_block(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +08003399 struct ocfs2_xattr_search *xs,
3400 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08003401{
Tao Ma85db90e2008-11-12 08:27:01 +08003402 int ret;
Tao Ma01225592008-08-18 17:38:53 +08003403 u32 bit_off, len;
3404 u64 blkno;
Tao Ma85db90e2008-11-12 08:27:01 +08003405 handle_t *handle = ctxt->handle;
Tao Ma01225592008-08-18 17:38:53 +08003406 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3407 struct ocfs2_inode_info *oi = OCFS2_I(inode);
Tao Ma01225592008-08-18 17:38:53 +08003408 struct buffer_head *xb_bh = xs->xattr_bh;
3409 struct ocfs2_xattr_block *xb =
3410 (struct ocfs2_xattr_block *)xb_bh->b_data;
3411 struct ocfs2_xattr_tree_root *xr;
3412 u16 xb_flags = le16_to_cpu(xb->xb_flags);
Tao Ma01225592008-08-18 17:38:53 +08003413
3414 mlog(0, "create xattr index block for %llu\n",
3415 (unsigned long long)xb_bh->b_blocknr);
3416
3417 BUG_ON(xb_flags & OCFS2_XATTR_INDEXED);
Joel Becker178eeac2008-10-27 15:18:29 -07003418 BUG_ON(!xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08003419
Tao Ma01225592008-08-18 17:38:53 +08003420 /*
3421 * XXX:
3422 * We can use this lock for now, and maybe move to a dedicated mutex
3423 * if performance becomes a problem later.
3424 */
3425 down_write(&oi->ip_alloc_sem);
3426
Joel Becker84008972008-12-09 16:11:49 -08003427 ret = ocfs2_journal_access_xb(handle, inode, xb_bh,
3428 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08003429 if (ret) {
3430 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003431 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003432 }
3433
Tao Ma78f30c32008-11-12 08:27:00 +08003434 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac,
3435 1, 1, &bit_off, &len);
Tao Ma01225592008-08-18 17:38:53 +08003436 if (ret) {
3437 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003438 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003439 }
3440
3441 /*
3442 * The bucket may spread in many blocks, and
3443 * we will only touch the 1st block and the last block
3444 * in the whole bucket(one for entry and one for data).
3445 */
3446 blkno = ocfs2_clusters_to_blocks(inode->i_sb, bit_off);
3447
Mark Fashehde29c082008-10-29 14:45:30 -07003448 mlog(0, "allocate 1 cluster from %llu to xattr block\n",
3449 (unsigned long long)blkno);
Tao Ma01225592008-08-18 17:38:53 +08003450
Joel Becker178eeac2008-10-27 15:18:29 -07003451 ret = ocfs2_init_xattr_bucket(xs->bucket, blkno);
Tao Ma01225592008-08-18 17:38:53 +08003452 if (ret) {
3453 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003454 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003455 }
3456
Joel Becker178eeac2008-10-27 15:18:29 -07003457 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
3458 OCFS2_JOURNAL_ACCESS_CREATE);
Joel Beckerbd60bd32008-10-20 18:25:56 -07003459 if (ret) {
3460 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003461 goto out;
Joel Beckerbd60bd32008-10-20 18:25:56 -07003462 }
Tao Ma01225592008-08-18 17:38:53 +08003463
Joel Becker178eeac2008-10-27 15:18:29 -07003464 ocfs2_cp_xattr_block_to_bucket(inode, xb_bh, xs->bucket);
3465 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
3466
3467 ocfs2_xattr_update_xattr_search(inode, xs, xb_bh);
3468
Tao Ma01225592008-08-18 17:38:53 +08003469 /* Change from ocfs2_xattr_header to ocfs2_xattr_tree_root */
3470 memset(&xb->xb_attrs, 0, inode->i_sb->s_blocksize -
3471 offsetof(struct ocfs2_xattr_block, xb_attrs));
3472
3473 xr = &xb->xb_attrs.xb_root;
3474 xr->xt_clusters = cpu_to_le32(1);
3475 xr->xt_last_eb_blk = 0;
3476 xr->xt_list.l_tree_depth = 0;
3477 xr->xt_list.l_count = cpu_to_le16(ocfs2_xattr_recs_per_xb(inode->i_sb));
3478 xr->xt_list.l_next_free_rec = cpu_to_le16(1);
3479
3480 xr->xt_list.l_recs[0].e_cpos = 0;
3481 xr->xt_list.l_recs[0].e_blkno = cpu_to_le64(blkno);
3482 xr->xt_list.l_recs[0].e_leaf_clusters = cpu_to_le16(1);
3483
3484 xb->xb_flags = cpu_to_le16(xb_flags | OCFS2_XATTR_INDEXED);
3485
Tao Ma85db90e2008-11-12 08:27:01 +08003486 ocfs2_journal_dirty(handle, xb_bh);
Tao Ma01225592008-08-18 17:38:53 +08003487
Tao Ma85db90e2008-11-12 08:27:01 +08003488out:
Tao Ma01225592008-08-18 17:38:53 +08003489 up_write(&oi->ip_alloc_sem);
3490
Tao Ma01225592008-08-18 17:38:53 +08003491 return ret;
3492}
3493
3494static int cmp_xe_offset(const void *a, const void *b)
3495{
3496 const struct ocfs2_xattr_entry *l = a, *r = b;
3497 u32 l_name_offset = le16_to_cpu(l->xe_name_offset);
3498 u32 r_name_offset = le16_to_cpu(r->xe_name_offset);
3499
3500 if (l_name_offset < r_name_offset)
3501 return 1;
3502 if (l_name_offset > r_name_offset)
3503 return -1;
3504 return 0;
3505}
3506
3507/*
3508 * defrag a xattr bucket if we find that the bucket has some
3509 * holes beteen name/value pairs.
3510 * We will move all the name/value pairs to the end of the bucket
3511 * so that we can spare some space for insertion.
3512 */
3513static int ocfs2_defrag_xattr_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08003514 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08003515 struct ocfs2_xattr_bucket *bucket)
3516{
3517 int ret, i;
3518 size_t end, offset, len, value_len;
3519 struct ocfs2_xattr_header *xh;
3520 char *entries, *buf, *bucket_buf = NULL;
Joel Becker9c7759a2008-10-24 16:21:03 -07003521 u64 blkno = bucket_blkno(bucket);
Tao Ma01225592008-08-18 17:38:53 +08003522 u16 xh_free_start;
Tao Ma01225592008-08-18 17:38:53 +08003523 size_t blocksize = inode->i_sb->s_blocksize;
Tao Ma01225592008-08-18 17:38:53 +08003524 struct ocfs2_xattr_entry *xe;
Tao Ma01225592008-08-18 17:38:53 +08003525
3526 /*
3527 * In order to make the operation more efficient and generic,
3528 * we copy all the blocks into a contiguous memory and do the
3529 * defragment there, so if anything is error, we will not touch
3530 * the real block.
3531 */
3532 bucket_buf = kmalloc(OCFS2_XATTR_BUCKET_SIZE, GFP_NOFS);
3533 if (!bucket_buf) {
3534 ret = -EIO;
3535 goto out;
3536 }
3537
Joel Becker161d6f32008-10-27 15:25:18 -07003538 buf = bucket_buf;
Tao Ma1c32a2f2008-11-06 08:10:47 +08003539 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3540 memcpy(buf, bucket_block(bucket, i), blocksize);
Joel Becker161d6f32008-10-27 15:25:18 -07003541
Tao Ma1c32a2f2008-11-06 08:10:47 +08003542 ret = ocfs2_xattr_bucket_journal_access(handle, bucket,
Joel Becker161d6f32008-10-27 15:25:18 -07003543 OCFS2_JOURNAL_ACCESS_WRITE);
3544 if (ret < 0) {
3545 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003546 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003547 }
3548
3549 xh = (struct ocfs2_xattr_header *)bucket_buf;
3550 entries = (char *)xh->xh_entries;
3551 xh_free_start = le16_to_cpu(xh->xh_free_start);
3552
3553 mlog(0, "adjust xattr bucket in %llu, count = %u, "
3554 "xh_free_start = %u, xh_name_value_len = %u.\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003555 (unsigned long long)blkno, le16_to_cpu(xh->xh_count),
3556 xh_free_start, le16_to_cpu(xh->xh_name_value_len));
Tao Ma01225592008-08-18 17:38:53 +08003557
3558 /*
3559 * sort all the entries by their offset.
3560 * the largest will be the first, so that we can
3561 * move them to the end one by one.
3562 */
3563 sort(entries, le16_to_cpu(xh->xh_count),
3564 sizeof(struct ocfs2_xattr_entry),
3565 cmp_xe_offset, swap_xe);
3566
3567 /* Move all name/values to the end of the bucket. */
3568 xe = xh->xh_entries;
3569 end = OCFS2_XATTR_BUCKET_SIZE;
3570 for (i = 0; i < le16_to_cpu(xh->xh_count); i++, xe++) {
3571 offset = le16_to_cpu(xe->xe_name_offset);
3572 if (ocfs2_xattr_is_local(xe))
3573 value_len = OCFS2_XATTR_SIZE(
3574 le64_to_cpu(xe->xe_value_size));
3575 else
3576 value_len = OCFS2_XATTR_ROOT_SIZE;
3577 len = OCFS2_XATTR_SIZE(xe->xe_name_len) + value_len;
3578
3579 /*
3580 * We must make sure that the name/value pair
3581 * exist in the same block. So adjust end to
3582 * the previous block end if needed.
3583 */
3584 if (((end - len) / blocksize !=
3585 (end - 1) / blocksize))
3586 end = end - end % blocksize;
3587
3588 if (end > offset + len) {
3589 memmove(bucket_buf + end - len,
3590 bucket_buf + offset, len);
3591 xe->xe_name_offset = cpu_to_le16(end - len);
3592 }
3593
3594 mlog_bug_on_msg(end < offset + len, "Defrag check failed for "
3595 "bucket %llu\n", (unsigned long long)blkno);
3596
3597 end -= len;
3598 }
3599
3600 mlog_bug_on_msg(xh_free_start > end, "Defrag check failed for "
3601 "bucket %llu\n", (unsigned long long)blkno);
3602
3603 if (xh_free_start == end)
Tao Ma85db90e2008-11-12 08:27:01 +08003604 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003605
3606 memset(bucket_buf + xh_free_start, 0, end - xh_free_start);
3607 xh->xh_free_start = cpu_to_le16(end);
3608
3609 /* sort the entries by their name_hash. */
3610 sort(entries, le16_to_cpu(xh->xh_count),
3611 sizeof(struct ocfs2_xattr_entry),
3612 cmp_xe, swap_xe);
3613
3614 buf = bucket_buf;
Tao Ma1c32a2f2008-11-06 08:10:47 +08003615 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3616 memcpy(bucket_block(bucket, i), buf, blocksize);
3617 ocfs2_xattr_bucket_journal_dirty(handle, bucket);
Tao Ma01225592008-08-18 17:38:53 +08003618
Tao Ma01225592008-08-18 17:38:53 +08003619out:
Tao Ma01225592008-08-18 17:38:53 +08003620 kfree(bucket_buf);
3621 return ret;
3622}
3623
3624/*
Joel Beckerb5c03e72008-11-25 19:58:16 -08003625 * prev_blkno points to the start of an existing extent. new_blkno
3626 * points to a newly allocated extent. Because we know each of our
3627 * clusters contains more than bucket, we can easily split one cluster
3628 * at a bucket boundary. So we take the last cluster of the existing
3629 * extent and split it down the middle. We move the last half of the
3630 * buckets in the last cluster of the existing extent over to the new
3631 * extent.
Tao Ma01225592008-08-18 17:38:53 +08003632 *
Joel Beckerb5c03e72008-11-25 19:58:16 -08003633 * first_bh is the buffer at prev_blkno so we can update the existing
3634 * extent's bucket count. header_bh is the bucket were we were hoping
3635 * to insert our xattr. If the bucket move places the target in the new
3636 * extent, we'll update first_bh and header_bh after modifying the old
3637 * extent.
3638 *
3639 * first_hash will be set as the 1st xe's name_hash in the new extent.
Tao Ma01225592008-08-18 17:38:53 +08003640 */
3641static int ocfs2_mv_xattr_bucket_cross_cluster(struct inode *inode,
3642 handle_t *handle,
Joel Becker41cb8142008-11-26 14:25:21 -08003643 struct ocfs2_xattr_bucket *first,
3644 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08003645 u64 new_blkno,
Tao Ma01225592008-08-18 17:38:53 +08003646 u32 num_clusters,
3647 u32 *first_hash)
3648{
Joel Beckerc58b6032008-11-26 13:36:24 -08003649 int ret;
Joel Becker41cb8142008-11-26 14:25:21 -08003650 struct super_block *sb = inode->i_sb;
3651 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(sb);
3652 int num_buckets = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(sb));
Joel Beckerb5c03e72008-11-25 19:58:16 -08003653 int to_move = num_buckets / 2;
Joel Beckerc58b6032008-11-26 13:36:24 -08003654 u64 src_blkno;
Joel Becker41cb8142008-11-26 14:25:21 -08003655 u64 last_cluster_blkno = bucket_blkno(first) +
3656 ((num_clusters - 1) * ocfs2_clusters_to_blocks(sb, 1));
Tao Ma01225592008-08-18 17:38:53 +08003657
Joel Becker41cb8142008-11-26 14:25:21 -08003658 BUG_ON(le16_to_cpu(bucket_xh(first)->xh_num_buckets) < num_buckets);
3659 BUG_ON(OCFS2_XATTR_BUCKET_SIZE == OCFS2_SB(sb)->s_clustersize);
Tao Ma01225592008-08-18 17:38:53 +08003660
Tao Ma01225592008-08-18 17:38:53 +08003661 mlog(0, "move half of xattrs in cluster %llu to %llu\n",
Joel Beckerc58b6032008-11-26 13:36:24 -08003662 (unsigned long long)last_cluster_blkno, (unsigned long long)new_blkno);
Tao Ma01225592008-08-18 17:38:53 +08003663
Joel Becker41cb8142008-11-26 14:25:21 -08003664 ret = ocfs2_mv_xattr_buckets(inode, handle, bucket_blkno(first),
Joel Beckerc58b6032008-11-26 13:36:24 -08003665 last_cluster_blkno, new_blkno,
3666 to_move, first_hash);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003667 if (ret) {
3668 mlog_errno(ret);
3669 goto out;
3670 }
3671
Joel Beckerc58b6032008-11-26 13:36:24 -08003672 /* This is the first bucket that got moved */
3673 src_blkno = last_cluster_blkno + (to_move * blks_per_bucket);
3674
Tao Ma01225592008-08-18 17:38:53 +08003675 /*
Joel Beckerc58b6032008-11-26 13:36:24 -08003676 * If the target bucket was part of the moved buckets, we need to
Joel Becker41cb8142008-11-26 14:25:21 -08003677 * update first and target.
Joel Beckerb5c03e72008-11-25 19:58:16 -08003678 */
Joel Becker41cb8142008-11-26 14:25:21 -08003679 if (bucket_blkno(target) >= src_blkno) {
Joel Beckerb5c03e72008-11-25 19:58:16 -08003680 /* Find the block for the new target bucket */
3681 src_blkno = new_blkno +
Joel Becker41cb8142008-11-26 14:25:21 -08003682 (bucket_blkno(target) - src_blkno);
3683
3684 ocfs2_xattr_bucket_relse(first);
3685 ocfs2_xattr_bucket_relse(target);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003686
3687 /*
Joel Beckerc58b6032008-11-26 13:36:24 -08003688 * These shouldn't fail - the buffers are in the
Joel Beckerb5c03e72008-11-25 19:58:16 -08003689 * journal from ocfs2_cp_xattr_bucket().
3690 */
Joel Becker41cb8142008-11-26 14:25:21 -08003691 ret = ocfs2_read_xattr_bucket(first, new_blkno);
Joel Beckerc58b6032008-11-26 13:36:24 -08003692 if (ret) {
3693 mlog_errno(ret);
3694 goto out;
3695 }
Joel Becker41cb8142008-11-26 14:25:21 -08003696 ret = ocfs2_read_xattr_bucket(target, src_blkno);
3697 if (ret)
Joel Beckerb5c03e72008-11-25 19:58:16 -08003698 mlog_errno(ret);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003699
Joel Beckerb5c03e72008-11-25 19:58:16 -08003700 }
3701
Tao Ma01225592008-08-18 17:38:53 +08003702out:
Tao Ma01225592008-08-18 17:38:53 +08003703 return ret;
3704}
3705
Tao Ma01225592008-08-18 17:38:53 +08003706/*
Tao Ma80bcaf32008-10-27 06:06:24 +08003707 * Find the suitable pos when we divide a bucket into 2.
3708 * We have to make sure the xattrs with the same hash value exist
3709 * in the same bucket.
3710 *
3711 * If this ocfs2_xattr_header covers more than one hash value, find a
3712 * place where the hash value changes. Try to find the most even split.
3713 * The most common case is that all entries have different hash values,
3714 * and the first check we make will find a place to split.
Tao Ma01225592008-08-18 17:38:53 +08003715 */
Tao Ma80bcaf32008-10-27 06:06:24 +08003716static int ocfs2_xattr_find_divide_pos(struct ocfs2_xattr_header *xh)
3717{
3718 struct ocfs2_xattr_entry *entries = xh->xh_entries;
3719 int count = le16_to_cpu(xh->xh_count);
3720 int delta, middle = count / 2;
3721
3722 /*
3723 * We start at the middle. Each step gets farther away in both
3724 * directions. We therefore hit the change in hash value
3725 * nearest to the middle. Note that this loop does not execute for
3726 * count < 2.
3727 */
3728 for (delta = 0; delta < middle; delta++) {
3729 /* Let's check delta earlier than middle */
3730 if (cmp_xe(&entries[middle - delta - 1],
3731 &entries[middle - delta]))
3732 return middle - delta;
3733
3734 /* For even counts, don't walk off the end */
3735 if ((middle + delta + 1) == count)
3736 continue;
3737
3738 /* Now try delta past middle */
3739 if (cmp_xe(&entries[middle + delta],
3740 &entries[middle + delta + 1]))
3741 return middle + delta + 1;
3742 }
3743
3744 /* Every entry had the same hash */
3745 return count;
3746}
3747
3748/*
3749 * Move some xattrs in old bucket(blk) to new bucket(new_blk).
3750 * first_hash will record the 1st hash of the new bucket.
3751 *
3752 * Normally half of the xattrs will be moved. But we have to make
3753 * sure that the xattrs with the same hash value are stored in the
3754 * same bucket. If all the xattrs in this bucket have the same hash
3755 * value, the new bucket will be initialized as an empty one and the
3756 * first_hash will be initialized as (hash_value+1).
3757 */
3758static int ocfs2_divide_xattr_bucket(struct inode *inode,
3759 handle_t *handle,
3760 u64 blk,
3761 u64 new_blk,
3762 u32 *first_hash,
3763 int new_bucket_head)
Tao Ma01225592008-08-18 17:38:53 +08003764{
3765 int ret, i;
Tao Ma80bcaf32008-10-27 06:06:24 +08003766 int count, start, len, name_value_len = 0, xe_len, name_offset = 0;
Joel Beckerba937122008-10-24 19:13:20 -07003767 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
Tao Ma01225592008-08-18 17:38:53 +08003768 struct ocfs2_xattr_header *xh;
3769 struct ocfs2_xattr_entry *xe;
3770 int blocksize = inode->i_sb->s_blocksize;
3771
Tao Ma80bcaf32008-10-27 06:06:24 +08003772 mlog(0, "move some of xattrs from bucket %llu to %llu\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003773 (unsigned long long)blk, (unsigned long long)new_blk);
Tao Ma01225592008-08-18 17:38:53 +08003774
Joel Beckerba937122008-10-24 19:13:20 -07003775 s_bucket = ocfs2_xattr_bucket_new(inode);
3776 t_bucket = ocfs2_xattr_bucket_new(inode);
3777 if (!s_bucket || !t_bucket) {
3778 ret = -ENOMEM;
3779 mlog_errno(ret);
3780 goto out;
3781 }
Tao Ma01225592008-08-18 17:38:53 +08003782
Joel Beckerba937122008-10-24 19:13:20 -07003783 ret = ocfs2_read_xattr_bucket(s_bucket, blk);
Tao Ma01225592008-08-18 17:38:53 +08003784 if (ret) {
3785 mlog_errno(ret);
3786 goto out;
3787 }
3788
Joel Beckerba937122008-10-24 19:13:20 -07003789 ret = ocfs2_xattr_bucket_journal_access(handle, s_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07003790 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08003791 if (ret) {
3792 mlog_errno(ret);
3793 goto out;
3794 }
3795
Joel Becker784b8162008-10-24 17:33:40 -07003796 /*
3797 * Even if !new_bucket_head, we're overwriting t_bucket. Thus,
3798 * there's no need to read it.
3799 */
Joel Beckerba937122008-10-24 19:13:20 -07003800 ret = ocfs2_init_xattr_bucket(t_bucket, new_blk);
Tao Ma01225592008-08-18 17:38:53 +08003801 if (ret) {
3802 mlog_errno(ret);
3803 goto out;
3804 }
3805
Joel Becker2b656c12008-11-25 19:00:15 -08003806 /*
3807 * Hey, if we're overwriting t_bucket, what difference does
3808 * ACCESS_CREATE vs ACCESS_WRITE make? See the comment in the
3809 * same part of ocfs2_cp_xattr_bucket().
3810 */
Joel Beckerba937122008-10-24 19:13:20 -07003811 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07003812 new_bucket_head ?
3813 OCFS2_JOURNAL_ACCESS_CREATE :
3814 OCFS2_JOURNAL_ACCESS_WRITE);
3815 if (ret) {
3816 mlog_errno(ret);
3817 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003818 }
3819
Joel Beckerba937122008-10-24 19:13:20 -07003820 xh = bucket_xh(s_bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08003821 count = le16_to_cpu(xh->xh_count);
3822 start = ocfs2_xattr_find_divide_pos(xh);
3823
3824 if (start == count) {
3825 xe = &xh->xh_entries[start-1];
3826
3827 /*
3828 * initialized a new empty bucket here.
3829 * The hash value is set as one larger than
3830 * that of the last entry in the previous bucket.
3831 */
Joel Beckerba937122008-10-24 19:13:20 -07003832 for (i = 0; i < t_bucket->bu_blocks; i++)
3833 memset(bucket_block(t_bucket, i), 0, blocksize);
Tao Ma80bcaf32008-10-27 06:06:24 +08003834
Joel Beckerba937122008-10-24 19:13:20 -07003835 xh = bucket_xh(t_bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08003836 xh->xh_free_start = cpu_to_le16(blocksize);
3837 xh->xh_entries[0].xe_name_hash = xe->xe_name_hash;
3838 le32_add_cpu(&xh->xh_entries[0].xe_name_hash, 1);
3839
3840 goto set_num_buckets;
3841 }
3842
Tao Ma01225592008-08-18 17:38:53 +08003843 /* copy the whole bucket to the new first. */
Joel Beckerba937122008-10-24 19:13:20 -07003844 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003845
3846 /* update the new bucket. */
Joel Beckerba937122008-10-24 19:13:20 -07003847 xh = bucket_xh(t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003848
3849 /*
3850 * Calculate the total name/value len and xh_free_start for
3851 * the old bucket first.
3852 */
3853 name_offset = OCFS2_XATTR_BUCKET_SIZE;
3854 name_value_len = 0;
3855 for (i = 0; i < start; i++) {
3856 xe = &xh->xh_entries[i];
3857 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3858 if (ocfs2_xattr_is_local(xe))
3859 xe_len +=
3860 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3861 else
3862 xe_len += OCFS2_XATTR_ROOT_SIZE;
3863 name_value_len += xe_len;
3864 if (le16_to_cpu(xe->xe_name_offset) < name_offset)
3865 name_offset = le16_to_cpu(xe->xe_name_offset);
3866 }
3867
3868 /*
3869 * Now begin the modification to the new bucket.
3870 *
3871 * In the new bucket, We just move the xattr entry to the beginning
3872 * and don't touch the name/value. So there will be some holes in the
3873 * bucket, and they will be removed when ocfs2_defrag_xattr_bucket is
3874 * called.
3875 */
3876 xe = &xh->xh_entries[start];
3877 len = sizeof(struct ocfs2_xattr_entry) * (count - start);
3878 mlog(0, "mv xattr entry len %d from %d to %d\n", len,
Mark Fashehff1ec202008-08-19 10:54:29 -07003879 (int)((char *)xe - (char *)xh),
3880 (int)((char *)xh->xh_entries - (char *)xh));
Tao Ma01225592008-08-18 17:38:53 +08003881 memmove((char *)xh->xh_entries, (char *)xe, len);
3882 xe = &xh->xh_entries[count - start];
3883 len = sizeof(struct ocfs2_xattr_entry) * start;
3884 memset((char *)xe, 0, len);
3885
3886 le16_add_cpu(&xh->xh_count, -start);
3887 le16_add_cpu(&xh->xh_name_value_len, -name_value_len);
3888
3889 /* Calculate xh_free_start for the new bucket. */
3890 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
3891 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
3892 xe = &xh->xh_entries[i];
3893 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3894 if (ocfs2_xattr_is_local(xe))
3895 xe_len +=
3896 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3897 else
3898 xe_len += OCFS2_XATTR_ROOT_SIZE;
3899 if (le16_to_cpu(xe->xe_name_offset) <
3900 le16_to_cpu(xh->xh_free_start))
3901 xh->xh_free_start = xe->xe_name_offset;
3902 }
3903
Tao Ma80bcaf32008-10-27 06:06:24 +08003904set_num_buckets:
Tao Ma01225592008-08-18 17:38:53 +08003905 /* set xh->xh_num_buckets for the new xh. */
3906 if (new_bucket_head)
3907 xh->xh_num_buckets = cpu_to_le16(1);
3908 else
3909 xh->xh_num_buckets = 0;
3910
Joel Beckerba937122008-10-24 19:13:20 -07003911 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003912
3913 /* store the first_hash of the new bucket. */
3914 if (first_hash)
3915 *first_hash = le32_to_cpu(xh->xh_entries[0].xe_name_hash);
3916
3917 /*
Tao Ma80bcaf32008-10-27 06:06:24 +08003918 * Now only update the 1st block of the old bucket. If we
3919 * just added a new empty bucket, there is no need to modify
3920 * it.
Tao Ma01225592008-08-18 17:38:53 +08003921 */
Tao Ma80bcaf32008-10-27 06:06:24 +08003922 if (start == count)
3923 goto out;
3924
Joel Beckerba937122008-10-24 19:13:20 -07003925 xh = bucket_xh(s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003926 memset(&xh->xh_entries[start], 0,
3927 sizeof(struct ocfs2_xattr_entry) * (count - start));
3928 xh->xh_count = cpu_to_le16(start);
3929 xh->xh_free_start = cpu_to_le16(name_offset);
3930 xh->xh_name_value_len = cpu_to_le16(name_value_len);
3931
Joel Beckerba937122008-10-24 19:13:20 -07003932 ocfs2_xattr_bucket_journal_dirty(handle, s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003933
3934out:
Joel Beckerba937122008-10-24 19:13:20 -07003935 ocfs2_xattr_bucket_free(s_bucket);
3936 ocfs2_xattr_bucket_free(t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003937
3938 return ret;
3939}
3940
3941/*
3942 * Copy xattr from one bucket to another bucket.
3943 *
3944 * The caller must make sure that the journal transaction
3945 * has enough space for journaling.
3946 */
3947static int ocfs2_cp_xattr_bucket(struct inode *inode,
3948 handle_t *handle,
3949 u64 s_blkno,
3950 u64 t_blkno,
3951 int t_is_new)
3952{
Joel Becker4980c6d2008-10-24 18:54:43 -07003953 int ret;
Joel Beckerba937122008-10-24 19:13:20 -07003954 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
Tao Ma01225592008-08-18 17:38:53 +08003955
3956 BUG_ON(s_blkno == t_blkno);
3957
3958 mlog(0, "cp bucket %llu to %llu, target is %d\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003959 (unsigned long long)s_blkno, (unsigned long long)t_blkno,
3960 t_is_new);
Tao Ma01225592008-08-18 17:38:53 +08003961
Joel Beckerba937122008-10-24 19:13:20 -07003962 s_bucket = ocfs2_xattr_bucket_new(inode);
3963 t_bucket = ocfs2_xattr_bucket_new(inode);
3964 if (!s_bucket || !t_bucket) {
3965 ret = -ENOMEM;
3966 mlog_errno(ret);
3967 goto out;
3968 }
Joel Becker92de1092008-11-25 17:06:40 -08003969
Joel Beckerba937122008-10-24 19:13:20 -07003970 ret = ocfs2_read_xattr_bucket(s_bucket, s_blkno);
Tao Ma01225592008-08-18 17:38:53 +08003971 if (ret)
3972 goto out;
3973
Joel Becker784b8162008-10-24 17:33:40 -07003974 /*
3975 * Even if !t_is_new, we're overwriting t_bucket. Thus,
3976 * there's no need to read it.
3977 */
Joel Beckerba937122008-10-24 19:13:20 -07003978 ret = ocfs2_init_xattr_bucket(t_bucket, t_blkno);
Tao Ma01225592008-08-18 17:38:53 +08003979 if (ret)
3980 goto out;
3981
Joel Becker2b656c12008-11-25 19:00:15 -08003982 /*
3983 * Hey, if we're overwriting t_bucket, what difference does
3984 * ACCESS_CREATE vs ACCESS_WRITE make? Well, if we allocated a new
Joel Becker874d65a2008-11-26 13:02:18 -08003985 * cluster to fill, we came here from
3986 * ocfs2_mv_xattr_buckets(), and it is really new -
3987 * ACCESS_CREATE is required. But we also might have moved data
3988 * out of t_bucket before extending back into it.
3989 * ocfs2_add_new_xattr_bucket() can do this - its call to
3990 * ocfs2_add_new_xattr_cluster() may have created a new extent
Joel Becker2b656c12008-11-25 19:00:15 -08003991 * and copied out the end of the old extent. Then it re-extends
3992 * the old extent back to create space for new xattrs. That's
3993 * how we get here, and the bucket isn't really new.
3994 */
Joel Beckerba937122008-10-24 19:13:20 -07003995 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07003996 t_is_new ?
3997 OCFS2_JOURNAL_ACCESS_CREATE :
3998 OCFS2_JOURNAL_ACCESS_WRITE);
3999 if (ret)
4000 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004001
Joel Beckerba937122008-10-24 19:13:20 -07004002 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
4003 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004004
4005out:
Joel Beckerba937122008-10-24 19:13:20 -07004006 ocfs2_xattr_bucket_free(t_bucket);
4007 ocfs2_xattr_bucket_free(s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004008
4009 return ret;
4010}
4011
4012/*
Joel Becker874d65a2008-11-26 13:02:18 -08004013 * src_blk points to the start of an existing extent. last_blk points to
4014 * last cluster in that extent. to_blk points to a newly allocated
Joel Becker54ecb6b2008-11-26 13:18:31 -08004015 * extent. We copy the buckets from the cluster at last_blk to the new
4016 * extent. If start_bucket is non-zero, we skip that many buckets before
4017 * we start copying. The new extent's xh_num_buckets gets set to the
4018 * number of buckets we copied. The old extent's xh_num_buckets shrinks
4019 * by the same amount.
Tao Ma01225592008-08-18 17:38:53 +08004020 */
Joel Becker54ecb6b2008-11-26 13:18:31 -08004021static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
4022 u64 src_blk, u64 last_blk, u64 to_blk,
4023 unsigned int start_bucket,
4024 u32 *first_hash)
Tao Ma01225592008-08-18 17:38:53 +08004025{
4026 int i, ret, credits;
4027 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Becker15d60922008-11-25 18:36:42 -08004028 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08004029 int num_buckets = ocfs2_xattr_buckets_per_cluster(osb);
Joel Becker15d60922008-11-25 18:36:42 -08004030 struct ocfs2_xattr_bucket *old_first, *new_first;
Tao Ma01225592008-08-18 17:38:53 +08004031
Joel Becker874d65a2008-11-26 13:02:18 -08004032 mlog(0, "mv xattrs from cluster %llu to %llu\n",
4033 (unsigned long long)last_blk, (unsigned long long)to_blk);
Tao Ma01225592008-08-18 17:38:53 +08004034
Joel Becker54ecb6b2008-11-26 13:18:31 -08004035 BUG_ON(start_bucket >= num_buckets);
4036 if (start_bucket) {
4037 num_buckets -= start_bucket;
4038 last_blk += (start_bucket * blks_per_bucket);
4039 }
4040
Joel Becker15d60922008-11-25 18:36:42 -08004041 /* The first bucket of the original extent */
4042 old_first = ocfs2_xattr_bucket_new(inode);
4043 /* The first bucket of the new extent */
4044 new_first = ocfs2_xattr_bucket_new(inode);
4045 if (!old_first || !new_first) {
4046 ret = -ENOMEM;
4047 mlog_errno(ret);
4048 goto out;
4049 }
4050
Joel Becker874d65a2008-11-26 13:02:18 -08004051 ret = ocfs2_read_xattr_bucket(old_first, src_blk);
Joel Becker15d60922008-11-25 18:36:42 -08004052 if (ret) {
4053 mlog_errno(ret);
4054 goto out;
4055 }
4056
Tao Ma01225592008-08-18 17:38:53 +08004057 /*
Joel Becker54ecb6b2008-11-26 13:18:31 -08004058 * We need to update the first bucket of the old extent and all
4059 * the buckets going to the new extent.
Tao Ma01225592008-08-18 17:38:53 +08004060 */
Joel Becker54ecb6b2008-11-26 13:18:31 -08004061 credits = ((num_buckets + 1) * blks_per_bucket) +
4062 handle->h_buffer_credits;
Tao Ma01225592008-08-18 17:38:53 +08004063 ret = ocfs2_extend_trans(handle, credits);
4064 if (ret) {
4065 mlog_errno(ret);
4066 goto out;
4067 }
4068
Joel Becker15d60922008-11-25 18:36:42 -08004069 ret = ocfs2_xattr_bucket_journal_access(handle, old_first,
4070 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004071 if (ret) {
4072 mlog_errno(ret);
4073 goto out;
4074 }
4075
4076 for (i = 0; i < num_buckets; i++) {
4077 ret = ocfs2_cp_xattr_bucket(inode, handle,
Joel Becker874d65a2008-11-26 13:02:18 -08004078 last_blk + (i * blks_per_bucket),
Joel Becker15d60922008-11-25 18:36:42 -08004079 to_blk + (i * blks_per_bucket),
4080 1);
Tao Ma01225592008-08-18 17:38:53 +08004081 if (ret) {
4082 mlog_errno(ret);
4083 goto out;
4084 }
Tao Ma01225592008-08-18 17:38:53 +08004085 }
4086
Joel Becker15d60922008-11-25 18:36:42 -08004087 /*
4088 * Get the new bucket ready before we dirty anything
4089 * (This actually shouldn't fail, because we already dirtied
4090 * it once in ocfs2_cp_xattr_bucket()).
4091 */
4092 ret = ocfs2_read_xattr_bucket(new_first, to_blk);
4093 if (ret) {
Tao Ma01225592008-08-18 17:38:53 +08004094 mlog_errno(ret);
4095 goto out;
4096 }
Joel Becker15d60922008-11-25 18:36:42 -08004097 ret = ocfs2_xattr_bucket_journal_access(handle, new_first,
4098 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004099 if (ret) {
4100 mlog_errno(ret);
4101 goto out;
4102 }
4103
Joel Becker15d60922008-11-25 18:36:42 -08004104 /* Now update the headers */
4105 le16_add_cpu(&bucket_xh(old_first)->xh_num_buckets, -num_buckets);
4106 ocfs2_xattr_bucket_journal_dirty(handle, old_first);
Tao Ma01225592008-08-18 17:38:53 +08004107
Joel Becker15d60922008-11-25 18:36:42 -08004108 bucket_xh(new_first)->xh_num_buckets = cpu_to_le16(num_buckets);
4109 ocfs2_xattr_bucket_journal_dirty(handle, new_first);
Tao Ma01225592008-08-18 17:38:53 +08004110
4111 if (first_hash)
Joel Becker15d60922008-11-25 18:36:42 -08004112 *first_hash = le32_to_cpu(bucket_xh(new_first)->xh_entries[0].xe_name_hash);
4113
Tao Ma01225592008-08-18 17:38:53 +08004114out:
Joel Becker15d60922008-11-25 18:36:42 -08004115 ocfs2_xattr_bucket_free(new_first);
4116 ocfs2_xattr_bucket_free(old_first);
Tao Ma01225592008-08-18 17:38:53 +08004117 return ret;
4118}
4119
4120/*
Tao Ma80bcaf32008-10-27 06:06:24 +08004121 * Move some xattrs in this cluster to the new cluster.
Tao Ma01225592008-08-18 17:38:53 +08004122 * This function should only be called when bucket size == cluster size.
4123 * Otherwise ocfs2_mv_xattr_bucket_cross_cluster should be used instead.
4124 */
Tao Ma80bcaf32008-10-27 06:06:24 +08004125static int ocfs2_divide_xattr_cluster(struct inode *inode,
4126 handle_t *handle,
4127 u64 prev_blk,
4128 u64 new_blk,
4129 u32 *first_hash)
Tao Ma01225592008-08-18 17:38:53 +08004130{
4131 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08004132 int ret, credits = 2 * blk_per_bucket + handle->h_buffer_credits;
Tao Ma01225592008-08-18 17:38:53 +08004133
4134 BUG_ON(OCFS2_XATTR_BUCKET_SIZE < OCFS2_SB(inode->i_sb)->s_clustersize);
4135
4136 ret = ocfs2_extend_trans(handle, credits);
4137 if (ret) {
4138 mlog_errno(ret);
4139 return ret;
4140 }
4141
4142 /* Move half of the xattr in start_blk to the next bucket. */
Tao Ma80bcaf32008-10-27 06:06:24 +08004143 return ocfs2_divide_xattr_bucket(inode, handle, prev_blk,
4144 new_blk, first_hash, 1);
Tao Ma01225592008-08-18 17:38:53 +08004145}
4146
4147/*
4148 * Move some xattrs from the old cluster to the new one since they are not
4149 * contiguous in ocfs2 xattr tree.
4150 *
4151 * new_blk starts a new separate cluster, and we will move some xattrs from
4152 * prev_blk to it. v_start will be set as the first name hash value in this
4153 * new cluster so that it can be used as e_cpos during tree insertion and
4154 * don't collide with our original b-tree operations. first_bh and header_bh
4155 * will also be updated since they will be used in ocfs2_extend_xattr_bucket
4156 * to extend the insert bucket.
4157 *
4158 * The problem is how much xattr should we move to the new one and when should
4159 * we update first_bh and header_bh?
4160 * 1. If cluster size > bucket size, that means the previous cluster has more
4161 * than 1 bucket, so just move half nums of bucket into the new cluster and
4162 * update the first_bh and header_bh if the insert bucket has been moved
4163 * to the new cluster.
4164 * 2. If cluster_size == bucket_size:
4165 * a) If the previous extent rec has more than one cluster and the insert
4166 * place isn't in the last cluster, copy the entire last cluster to the
4167 * new one. This time, we don't need to upate the first_bh and header_bh
4168 * since they will not be moved into the new cluster.
4169 * b) Otherwise, move the bottom half of the xattrs in the last cluster into
4170 * the new one. And we set the extend flag to zero if the insert place is
4171 * moved into the new allocated cluster since no extend is needed.
4172 */
4173static int ocfs2_adjust_xattr_cross_cluster(struct inode *inode,
4174 handle_t *handle,
Joel Becker012ee912008-11-26 14:43:31 -08004175 struct ocfs2_xattr_bucket *first,
4176 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08004177 u64 new_blk,
Tao Ma01225592008-08-18 17:38:53 +08004178 u32 prev_clusters,
4179 u32 *v_start,
4180 int *extend)
4181{
Joel Becker92cf3ad2008-11-26 14:12:09 -08004182 int ret;
Tao Ma01225592008-08-18 17:38:53 +08004183
4184 mlog(0, "adjust xattrs from cluster %llu len %u to %llu\n",
Joel Becker012ee912008-11-26 14:43:31 -08004185 (unsigned long long)bucket_blkno(first), prev_clusters,
Mark Fashehde29c082008-10-29 14:45:30 -07004186 (unsigned long long)new_blk);
Tao Ma01225592008-08-18 17:38:53 +08004187
Joel Becker41cb8142008-11-26 14:25:21 -08004188 if (ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb)) > 1) {
Tao Ma01225592008-08-18 17:38:53 +08004189 ret = ocfs2_mv_xattr_bucket_cross_cluster(inode,
4190 handle,
Joel Becker41cb8142008-11-26 14:25:21 -08004191 first, target,
Tao Ma01225592008-08-18 17:38:53 +08004192 new_blk,
Tao Ma01225592008-08-18 17:38:53 +08004193 prev_clusters,
4194 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004195 if (ret)
Joel Becker41cb8142008-11-26 14:25:21 -08004196 mlog_errno(ret);
Joel Becker41cb8142008-11-26 14:25:21 -08004197 } else {
Joel Becker92cf3ad2008-11-26 14:12:09 -08004198 /* The start of the last cluster in the first extent */
4199 u64 last_blk = bucket_blkno(first) +
4200 ((prev_clusters - 1) *
4201 ocfs2_clusters_to_blocks(inode->i_sb, 1));
Tao Ma01225592008-08-18 17:38:53 +08004202
Joel Becker012ee912008-11-26 14:43:31 -08004203 if (prev_clusters > 1 && bucket_blkno(target) != last_blk) {
Joel Becker874d65a2008-11-26 13:02:18 -08004204 ret = ocfs2_mv_xattr_buckets(inode, handle,
Joel Becker92cf3ad2008-11-26 14:12:09 -08004205 bucket_blkno(first),
Joel Becker54ecb6b2008-11-26 13:18:31 -08004206 last_blk, new_blk, 0,
Tao Ma01225592008-08-18 17:38:53 +08004207 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004208 if (ret)
4209 mlog_errno(ret);
4210 } else {
Tao Ma80bcaf32008-10-27 06:06:24 +08004211 ret = ocfs2_divide_xattr_cluster(inode, handle,
4212 last_blk, new_blk,
4213 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004214 if (ret)
4215 mlog_errno(ret);
Tao Ma01225592008-08-18 17:38:53 +08004216
Joel Becker92cf3ad2008-11-26 14:12:09 -08004217 if ((bucket_blkno(target) == last_blk) && extend)
Tao Ma01225592008-08-18 17:38:53 +08004218 *extend = 0;
4219 }
4220 }
4221
4222 return ret;
4223}
4224
4225/*
4226 * Add a new cluster for xattr storage.
4227 *
4228 * If the new cluster is contiguous with the previous one, it will be
4229 * appended to the same extent record, and num_clusters will be updated.
4230 * If not, we will insert a new extent for it and move some xattrs in
4231 * the last cluster into the new allocated one.
4232 * We also need to limit the maximum size of a btree leaf, otherwise we'll
4233 * lose the benefits of hashing because we'll have to search large leaves.
4234 * So now the maximum size is OCFS2_MAX_XATTR_TREE_LEAF_SIZE(or clustersize,
4235 * if it's bigger).
4236 *
4237 * first_bh is the first block of the previous extent rec and header_bh
4238 * indicates the bucket we will insert the new xattrs. They will be updated
4239 * when the header_bh is moved into the new cluster.
4240 */
4241static int ocfs2_add_new_xattr_cluster(struct inode *inode,
4242 struct buffer_head *root_bh,
Joel Beckered29c0c2008-11-26 15:08:44 -08004243 struct ocfs2_xattr_bucket *first,
4244 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08004245 u32 *num_clusters,
4246 u32 prev_cpos,
Tao Ma78f30c32008-11-12 08:27:00 +08004247 int *extend,
4248 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004249{
Tao Ma85db90e2008-11-12 08:27:01 +08004250 int ret;
Tao Ma01225592008-08-18 17:38:53 +08004251 u16 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
4252 u32 prev_clusters = *num_clusters;
4253 u32 clusters_to_add = 1, bit_off, num_bits, v_start = 0;
4254 u64 block;
Tao Ma85db90e2008-11-12 08:27:01 +08004255 handle_t *handle = ctxt->handle;
Tao Ma01225592008-08-18 17:38:53 +08004256 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004257 struct ocfs2_extent_tree et;
Tao Ma01225592008-08-18 17:38:53 +08004258
4259 mlog(0, "Add new xattr cluster for %llu, previous xattr hash = %u, "
4260 "previous xattr blkno = %llu\n",
4261 (unsigned long long)OCFS2_I(inode)->ip_blkno,
Joel Beckered29c0c2008-11-26 15:08:44 -08004262 prev_cpos, (unsigned long long)bucket_blkno(first));
Tao Ma01225592008-08-18 17:38:53 +08004263
Joel Becker8d6220d2008-08-22 12:46:09 -07004264 ocfs2_init_xattr_tree_extent_tree(&et, inode, root_bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004265
Joel Becker84008972008-12-09 16:11:49 -08004266 ret = ocfs2_journal_access_xb(handle, inode, root_bh,
4267 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004268 if (ret < 0) {
4269 mlog_errno(ret);
4270 goto leave;
4271 }
4272
Tao Ma78f30c32008-11-12 08:27:00 +08004273 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac, 1,
Tao Ma01225592008-08-18 17:38:53 +08004274 clusters_to_add, &bit_off, &num_bits);
4275 if (ret < 0) {
4276 if (ret != -ENOSPC)
4277 mlog_errno(ret);
4278 goto leave;
4279 }
4280
4281 BUG_ON(num_bits > clusters_to_add);
4282
4283 block = ocfs2_clusters_to_blocks(osb->sb, bit_off);
4284 mlog(0, "Allocating %u clusters at block %u for xattr in inode %llu\n",
4285 num_bits, bit_off, (unsigned long long)OCFS2_I(inode)->ip_blkno);
4286
Joel Beckered29c0c2008-11-26 15:08:44 -08004287 if (bucket_blkno(first) + (prev_clusters * bpc) == block &&
Tao Ma01225592008-08-18 17:38:53 +08004288 (prev_clusters + num_bits) << osb->s_clustersize_bits <=
4289 OCFS2_MAX_XATTR_TREE_LEAF_SIZE) {
4290 /*
4291 * If this cluster is contiguous with the old one and
4292 * adding this new cluster, we don't surpass the limit of
4293 * OCFS2_MAX_XATTR_TREE_LEAF_SIZE, cool. We will let it be
4294 * initialized and used like other buckets in the previous
4295 * cluster.
4296 * So add it as a contiguous one. The caller will handle
4297 * its init process.
4298 */
4299 v_start = prev_cpos + prev_clusters;
4300 *num_clusters = prev_clusters + num_bits;
4301 mlog(0, "Add contiguous %u clusters to previous extent rec.\n",
4302 num_bits);
4303 } else {
4304 ret = ocfs2_adjust_xattr_cross_cluster(inode,
4305 handle,
Joel Becker012ee912008-11-26 14:43:31 -08004306 first,
4307 target,
Tao Ma01225592008-08-18 17:38:53 +08004308 block,
Tao Ma01225592008-08-18 17:38:53 +08004309 prev_clusters,
4310 &v_start,
4311 extend);
4312 if (ret) {
4313 mlog_errno(ret);
4314 goto leave;
4315 }
4316 }
4317
4318 mlog(0, "Insert %u clusters at block %llu for xattr at %u\n",
Mark Fashehde29c082008-10-29 14:45:30 -07004319 num_bits, (unsigned long long)block, v_start);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004320 ret = ocfs2_insert_extent(osb, handle, inode, &et, v_start, block,
Tao Ma78f30c32008-11-12 08:27:00 +08004321 num_bits, 0, ctxt->meta_ac);
Tao Ma01225592008-08-18 17:38:53 +08004322 if (ret < 0) {
4323 mlog_errno(ret);
4324 goto leave;
4325 }
4326
4327 ret = ocfs2_journal_dirty(handle, root_bh);
Tao Ma85db90e2008-11-12 08:27:01 +08004328 if (ret < 0)
Tao Ma01225592008-08-18 17:38:53 +08004329 mlog_errno(ret);
Tao Ma01225592008-08-18 17:38:53 +08004330
4331leave:
Tao Ma01225592008-08-18 17:38:53 +08004332 return ret;
4333}
4334
4335/*
Joel Becker92de1092008-11-25 17:06:40 -08004336 * We are given an extent. 'first' is the bucket at the very front of
4337 * the extent. The extent has space for an additional bucket past
4338 * bucket_xh(first)->xh_num_buckets. 'target_blkno' is the block number
4339 * of the target bucket. We wish to shift every bucket past the target
4340 * down one, filling in that additional space. When we get back to the
4341 * target, we split the target between itself and the now-empty bucket
4342 * at target+1 (aka, target_blkno + blks_per_bucket).
Tao Ma01225592008-08-18 17:38:53 +08004343 */
4344static int ocfs2_extend_xattr_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004345 handle_t *handle,
Joel Becker92de1092008-11-25 17:06:40 -08004346 struct ocfs2_xattr_bucket *first,
4347 u64 target_blk,
Tao Ma01225592008-08-18 17:38:53 +08004348 u32 num_clusters)
4349{
4350 int ret, credits;
4351 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4352 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Joel Becker92de1092008-11-25 17:06:40 -08004353 u64 end_blk;
4354 u16 new_bucket = le16_to_cpu(bucket_xh(first)->xh_num_buckets);
Tao Ma01225592008-08-18 17:38:53 +08004355
4356 mlog(0, "extend xattr bucket in %llu, xattr extend rec starting "
Joel Becker92de1092008-11-25 17:06:40 -08004357 "from %llu, len = %u\n", (unsigned long long)target_blk,
4358 (unsigned long long)bucket_blkno(first), num_clusters);
Tao Ma01225592008-08-18 17:38:53 +08004359
Joel Becker92de1092008-11-25 17:06:40 -08004360 /* The extent must have room for an additional bucket */
4361 BUG_ON(new_bucket >=
4362 (num_clusters * ocfs2_xattr_buckets_per_cluster(osb)));
Tao Ma01225592008-08-18 17:38:53 +08004363
Joel Becker92de1092008-11-25 17:06:40 -08004364 /* end_blk points to the last existing bucket */
4365 end_blk = bucket_blkno(first) + ((new_bucket - 1) * blk_per_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004366
4367 /*
Joel Becker92de1092008-11-25 17:06:40 -08004368 * end_blk is the start of the last existing bucket.
4369 * Thus, (end_blk - target_blk) covers the target bucket and
4370 * every bucket after it up to, but not including, the last
4371 * existing bucket. Then we add the last existing bucket, the
4372 * new bucket, and the first bucket (3 * blk_per_bucket).
Tao Ma01225592008-08-18 17:38:53 +08004373 */
Joel Becker92de1092008-11-25 17:06:40 -08004374 credits = (end_blk - target_blk) + (3 * blk_per_bucket) +
Tao Ma85db90e2008-11-12 08:27:01 +08004375 handle->h_buffer_credits;
4376 ret = ocfs2_extend_trans(handle, credits);
4377 if (ret) {
Tao Ma01225592008-08-18 17:38:53 +08004378 mlog_errno(ret);
4379 goto out;
4380 }
4381
Joel Becker92de1092008-11-25 17:06:40 -08004382 ret = ocfs2_xattr_bucket_journal_access(handle, first,
4383 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004384 if (ret) {
4385 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08004386 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004387 }
4388
Joel Becker92de1092008-11-25 17:06:40 -08004389 while (end_blk != target_blk) {
Tao Ma01225592008-08-18 17:38:53 +08004390 ret = ocfs2_cp_xattr_bucket(inode, handle, end_blk,
4391 end_blk + blk_per_bucket, 0);
4392 if (ret)
Tao Ma85db90e2008-11-12 08:27:01 +08004393 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004394 end_blk -= blk_per_bucket;
4395 }
4396
Joel Becker92de1092008-11-25 17:06:40 -08004397 /* Move half of the xattr in target_blkno to the next bucket. */
4398 ret = ocfs2_divide_xattr_bucket(inode, handle, target_blk,
4399 target_blk + blk_per_bucket, NULL, 0);
Tao Ma01225592008-08-18 17:38:53 +08004400
Joel Becker92de1092008-11-25 17:06:40 -08004401 le16_add_cpu(&bucket_xh(first)->xh_num_buckets, 1);
4402 ocfs2_xattr_bucket_journal_dirty(handle, first);
Tao Ma01225592008-08-18 17:38:53 +08004403
Tao Ma01225592008-08-18 17:38:53 +08004404out:
4405 return ret;
4406}
4407
4408/*
Joel Becker91f20332008-11-26 15:25:41 -08004409 * Add new xattr bucket in an extent record and adjust the buckets
4410 * accordingly. xb_bh is the ocfs2_xattr_block, and target is the
4411 * bucket we want to insert into.
Tao Ma01225592008-08-18 17:38:53 +08004412 *
Joel Becker91f20332008-11-26 15:25:41 -08004413 * In the easy case, we will move all the buckets after target down by
4414 * one. Half of target's xattrs will be moved to the next bucket.
4415 *
4416 * If current cluster is full, we'll allocate a new one. This may not
4417 * be contiguous. The underlying calls will make sure that there is
4418 * space for the insert, shifting buckets around if necessary.
4419 * 'target' may be moved by those calls.
Tao Ma01225592008-08-18 17:38:53 +08004420 */
4421static int ocfs2_add_new_xattr_bucket(struct inode *inode,
4422 struct buffer_head *xb_bh,
Joel Becker91f20332008-11-26 15:25:41 -08004423 struct ocfs2_xattr_bucket *target,
Tao Ma78f30c32008-11-12 08:27:00 +08004424 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004425{
Tao Ma01225592008-08-18 17:38:53 +08004426 struct ocfs2_xattr_block *xb =
4427 (struct ocfs2_xattr_block *)xb_bh->b_data;
4428 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
4429 struct ocfs2_extent_list *el = &xb_root->xt_list;
Joel Becker91f20332008-11-26 15:25:41 -08004430 u32 name_hash =
4431 le32_to_cpu(bucket_xh(target)->xh_entries[0].xe_name_hash);
Joel Beckered29c0c2008-11-26 15:08:44 -08004432 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08004433 int ret, num_buckets, extend = 1;
4434 u64 p_blkno;
4435 u32 e_cpos, num_clusters;
Joel Becker92de1092008-11-25 17:06:40 -08004436 /* The bucket at the front of the extent */
Joel Becker91f20332008-11-26 15:25:41 -08004437 struct ocfs2_xattr_bucket *first;
Tao Ma01225592008-08-18 17:38:53 +08004438
Joel Becker91f20332008-11-26 15:25:41 -08004439 mlog(0, "Add new xattr bucket starting from %llu\n",
4440 (unsigned long long)bucket_blkno(target));
Tao Ma01225592008-08-18 17:38:53 +08004441
Joel Beckered29c0c2008-11-26 15:08:44 -08004442 /* The first bucket of the original extent */
Joel Becker92de1092008-11-25 17:06:40 -08004443 first = ocfs2_xattr_bucket_new(inode);
Joel Becker91f20332008-11-26 15:25:41 -08004444 if (!first) {
Joel Becker92de1092008-11-25 17:06:40 -08004445 ret = -ENOMEM;
4446 mlog_errno(ret);
4447 goto out;
4448 }
4449
Tao Ma01225592008-08-18 17:38:53 +08004450 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &e_cpos,
4451 &num_clusters, el);
4452 if (ret) {
4453 mlog_errno(ret);
4454 goto out;
4455 }
4456
Joel Beckered29c0c2008-11-26 15:08:44 -08004457 ret = ocfs2_read_xattr_bucket(first, p_blkno);
4458 if (ret) {
4459 mlog_errno(ret);
4460 goto out;
4461 }
4462
Tao Ma01225592008-08-18 17:38:53 +08004463 num_buckets = ocfs2_xattr_buckets_per_cluster(osb) * num_clusters;
Joel Beckered29c0c2008-11-26 15:08:44 -08004464 if (num_buckets == le16_to_cpu(bucket_xh(first)->xh_num_buckets)) {
4465 /*
4466 * This can move first+target if the target bucket moves
4467 * to the new extent.
4468 */
Tao Ma01225592008-08-18 17:38:53 +08004469 ret = ocfs2_add_new_xattr_cluster(inode,
4470 xb_bh,
Joel Beckered29c0c2008-11-26 15:08:44 -08004471 first,
4472 target,
Tao Ma01225592008-08-18 17:38:53 +08004473 &num_clusters,
4474 e_cpos,
Tao Ma78f30c32008-11-12 08:27:00 +08004475 &extend,
4476 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004477 if (ret) {
4478 mlog_errno(ret);
4479 goto out;
4480 }
4481 }
4482
Joel Becker92de1092008-11-25 17:06:40 -08004483 if (extend) {
Tao Ma01225592008-08-18 17:38:53 +08004484 ret = ocfs2_extend_xattr_bucket(inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004485 ctxt->handle,
Joel Beckered29c0c2008-11-26 15:08:44 -08004486 first,
4487 bucket_blkno(target),
Tao Ma01225592008-08-18 17:38:53 +08004488 num_clusters);
Joel Becker92de1092008-11-25 17:06:40 -08004489 if (ret)
4490 mlog_errno(ret);
4491 }
4492
Tao Ma01225592008-08-18 17:38:53 +08004493out:
Joel Becker92de1092008-11-25 17:06:40 -08004494 ocfs2_xattr_bucket_free(first);
Joel Beckered29c0c2008-11-26 15:08:44 -08004495
Tao Ma01225592008-08-18 17:38:53 +08004496 return ret;
4497}
4498
4499static inline char *ocfs2_xattr_bucket_get_val(struct inode *inode,
4500 struct ocfs2_xattr_bucket *bucket,
4501 int offs)
4502{
4503 int block_off = offs >> inode->i_sb->s_blocksize_bits;
4504
4505 offs = offs % inode->i_sb->s_blocksize;
Joel Becker51def392008-10-24 16:57:21 -07004506 return bucket_block(bucket, block_off) + offs;
Tao Ma01225592008-08-18 17:38:53 +08004507}
4508
4509/*
4510 * Handle the normal xattr set, including replace, delete and new.
Tao Ma01225592008-08-18 17:38:53 +08004511 *
4512 * Note: "local" indicates the real data's locality. So we can't
4513 * just its bucket locality by its length.
4514 */
4515static void ocfs2_xattr_set_entry_normal(struct inode *inode,
4516 struct ocfs2_xattr_info *xi,
4517 struct ocfs2_xattr_search *xs,
4518 u32 name_hash,
Tao Ma5a095612008-09-19 22:17:41 +08004519 int local)
Tao Ma01225592008-08-18 17:38:53 +08004520{
4521 struct ocfs2_xattr_entry *last, *xe;
4522 int name_len = strlen(xi->name);
4523 struct ocfs2_xattr_header *xh = xs->header;
4524 u16 count = le16_to_cpu(xh->xh_count), start;
4525 size_t blocksize = inode->i_sb->s_blocksize;
4526 char *val;
4527 size_t offs, size, new_size;
4528
4529 last = &xh->xh_entries[count];
4530 if (!xs->not_found) {
4531 xe = xs->here;
4532 offs = le16_to_cpu(xe->xe_name_offset);
4533 if (ocfs2_xattr_is_local(xe))
4534 size = OCFS2_XATTR_SIZE(name_len) +
4535 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
4536 else
4537 size = OCFS2_XATTR_SIZE(name_len) +
4538 OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
4539
4540 /*
4541 * If the new value will be stored outside, xi->value has been
4542 * initalized as an empty ocfs2_xattr_value_root, and the same
4543 * goes with xi->value_len, so we can set new_size safely here.
4544 * See ocfs2_xattr_set_in_bucket.
4545 */
4546 new_size = OCFS2_XATTR_SIZE(name_len) +
4547 OCFS2_XATTR_SIZE(xi->value_len);
4548
4549 le16_add_cpu(&xh->xh_name_value_len, -size);
4550 if (xi->value) {
4551 if (new_size > size)
4552 goto set_new_name_value;
4553
4554 /* Now replace the old value with new one. */
4555 if (local)
4556 xe->xe_value_size = cpu_to_le64(xi->value_len);
4557 else
4558 xe->xe_value_size = 0;
4559
4560 val = ocfs2_xattr_bucket_get_val(inode,
Joel Beckerba937122008-10-24 19:13:20 -07004561 xs->bucket, offs);
Tao Ma01225592008-08-18 17:38:53 +08004562 memset(val + OCFS2_XATTR_SIZE(name_len), 0,
4563 size - OCFS2_XATTR_SIZE(name_len));
4564 if (OCFS2_XATTR_SIZE(xi->value_len) > 0)
4565 memcpy(val + OCFS2_XATTR_SIZE(name_len),
4566 xi->value, xi->value_len);
4567
4568 le16_add_cpu(&xh->xh_name_value_len, new_size);
4569 ocfs2_xattr_set_local(xe, local);
4570 return;
4571 } else {
Tao Ma5a095612008-09-19 22:17:41 +08004572 /*
4573 * Remove the old entry if there is more than one.
4574 * We don't remove the last entry so that we can
4575 * use it to indicate the hash value of the empty
4576 * bucket.
4577 */
Tao Ma01225592008-08-18 17:38:53 +08004578 last -= 1;
Tao Ma01225592008-08-18 17:38:53 +08004579 le16_add_cpu(&xh->xh_count, -1);
Tao Ma5a095612008-09-19 22:17:41 +08004580 if (xh->xh_count) {
4581 memmove(xe, xe + 1,
4582 (void *)last - (void *)xe);
4583 memset(last, 0,
4584 sizeof(struct ocfs2_xattr_entry));
4585 } else
4586 xh->xh_free_start =
4587 cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
4588
Tao Ma01225592008-08-18 17:38:53 +08004589 return;
4590 }
4591 } else {
4592 /* find a new entry for insert. */
4593 int low = 0, high = count - 1, tmp;
4594 struct ocfs2_xattr_entry *tmp_xe;
4595
Tao Ma5a095612008-09-19 22:17:41 +08004596 while (low <= high && count) {
Tao Ma01225592008-08-18 17:38:53 +08004597 tmp = (low + high) / 2;
4598 tmp_xe = &xh->xh_entries[tmp];
4599
4600 if (name_hash > le32_to_cpu(tmp_xe->xe_name_hash))
4601 low = tmp + 1;
4602 else if (name_hash <
4603 le32_to_cpu(tmp_xe->xe_name_hash))
4604 high = tmp - 1;
Tao Ma06b240d2008-09-19 22:16:34 +08004605 else {
4606 low = tmp;
Tao Ma01225592008-08-18 17:38:53 +08004607 break;
Tao Ma06b240d2008-09-19 22:16:34 +08004608 }
Tao Ma01225592008-08-18 17:38:53 +08004609 }
4610
4611 xe = &xh->xh_entries[low];
4612 if (low != count)
4613 memmove(xe + 1, xe, (void *)last - (void *)xe);
4614
4615 le16_add_cpu(&xh->xh_count, 1);
4616 memset(xe, 0, sizeof(struct ocfs2_xattr_entry));
4617 xe->xe_name_hash = cpu_to_le32(name_hash);
4618 xe->xe_name_len = name_len;
4619 ocfs2_xattr_set_type(xe, xi->name_index);
4620 }
4621
4622set_new_name_value:
4623 /* Insert the new name+value. */
4624 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(xi->value_len);
4625
4626 /*
4627 * We must make sure that the name/value pair
4628 * exists in the same block.
4629 */
4630 offs = le16_to_cpu(xh->xh_free_start);
4631 start = offs - size;
4632
4633 if (start >> inode->i_sb->s_blocksize_bits !=
4634 (offs - 1) >> inode->i_sb->s_blocksize_bits) {
4635 offs = offs - offs % blocksize;
4636 xh->xh_free_start = cpu_to_le16(offs);
4637 }
4638
Joel Beckerba937122008-10-24 19:13:20 -07004639 val = ocfs2_xattr_bucket_get_val(inode, xs->bucket, offs - size);
Tao Ma01225592008-08-18 17:38:53 +08004640 xe->xe_name_offset = cpu_to_le16(offs - size);
4641
4642 memset(val, 0, size);
4643 memcpy(val, xi->name, name_len);
4644 memcpy(val + OCFS2_XATTR_SIZE(name_len), xi->value, xi->value_len);
4645
4646 xe->xe_value_size = cpu_to_le64(xi->value_len);
4647 ocfs2_xattr_set_local(xe, local);
4648 xs->here = xe;
4649 le16_add_cpu(&xh->xh_free_start, -size);
4650 le16_add_cpu(&xh->xh_name_value_len, size);
4651
4652 return;
4653}
4654
Tao Ma01225592008-08-18 17:38:53 +08004655/*
4656 * Set the xattr entry in the specified bucket.
4657 * The bucket is indicated by xs->bucket and it should have the enough
4658 * space for the xattr insertion.
4659 */
4660static int ocfs2_xattr_set_entry_in_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004661 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004662 struct ocfs2_xattr_info *xi,
4663 struct ocfs2_xattr_search *xs,
4664 u32 name_hash,
Tao Ma5a095612008-09-19 22:17:41 +08004665 int local)
Tao Ma01225592008-08-18 17:38:53 +08004666{
Joel Becker1224be02008-10-24 18:47:33 -07004667 int ret;
Joel Becker02dbf382008-10-27 18:07:45 -07004668 u64 blkno;
Tao Ma01225592008-08-18 17:38:53 +08004669
Mark Fashehff1ec202008-08-19 10:54:29 -07004670 mlog(0, "Set xattr entry len = %lu index = %d in bucket %llu\n",
4671 (unsigned long)xi->value_len, xi->name_index,
Joel Beckerba937122008-10-24 19:13:20 -07004672 (unsigned long long)bucket_blkno(xs->bucket));
Tao Ma01225592008-08-18 17:38:53 +08004673
Joel Beckerba937122008-10-24 19:13:20 -07004674 if (!xs->bucket->bu_bhs[1]) {
Joel Becker02dbf382008-10-27 18:07:45 -07004675 blkno = bucket_blkno(xs->bucket);
4676 ocfs2_xattr_bucket_relse(xs->bucket);
4677 ret = ocfs2_read_xattr_bucket(xs->bucket, blkno);
Tao Ma01225592008-08-18 17:38:53 +08004678 if (ret) {
4679 mlog_errno(ret);
4680 goto out;
4681 }
4682 }
4683
Joel Beckerba937122008-10-24 19:13:20 -07004684 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
Joel Becker1224be02008-10-24 18:47:33 -07004685 OCFS2_JOURNAL_ACCESS_WRITE);
4686 if (ret < 0) {
4687 mlog_errno(ret);
4688 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004689 }
4690
Tao Ma5a095612008-09-19 22:17:41 +08004691 ocfs2_xattr_set_entry_normal(inode, xi, xs, name_hash, local);
Joel Beckerba937122008-10-24 19:13:20 -07004692 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004693
Tao Ma01225592008-08-18 17:38:53 +08004694out:
Tao Ma01225592008-08-18 17:38:53 +08004695 return ret;
4696}
4697
Tao Ma01225592008-08-18 17:38:53 +08004698/*
4699 * Truncate the specified xe_off entry in xattr bucket.
4700 * bucket is indicated by header_bh and len is the new length.
4701 * Both the ocfs2_xattr_value_root and the entry will be updated here.
4702 *
4703 * Copy the new updated xe and xe_value_root to new_xe and new_xv if needed.
4704 */
4705static int ocfs2_xattr_bucket_value_truncate(struct inode *inode,
Joel Becker548b0f22008-11-24 19:32:13 -08004706 struct ocfs2_xattr_bucket *bucket,
Tao Ma01225592008-08-18 17:38:53 +08004707 int xe_off,
Tao Ma78f30c32008-11-12 08:27:00 +08004708 int len,
4709 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004710{
4711 int ret, offset;
4712 u64 value_blk;
Tao Ma01225592008-08-18 17:38:53 +08004713 struct ocfs2_xattr_entry *xe;
Joel Becker548b0f22008-11-24 19:32:13 -08004714 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma01225592008-08-18 17:38:53 +08004715 size_t blocksize = inode->i_sb->s_blocksize;
Joel Beckerb3e5d372008-12-09 15:01:04 -08004716 struct ocfs2_xattr_value_buf vb = {
4717 .vb_access = ocfs2_journal_access,
4718 };
Tao Ma01225592008-08-18 17:38:53 +08004719
4720 xe = &xh->xh_entries[xe_off];
4721
4722 BUG_ON(!xe || ocfs2_xattr_is_local(xe));
4723
4724 offset = le16_to_cpu(xe->xe_name_offset) +
4725 OCFS2_XATTR_SIZE(xe->xe_name_len);
4726
4727 value_blk = offset / blocksize;
4728
4729 /* We don't allow ocfs2_xattr_value to be stored in different block. */
4730 BUG_ON(value_blk != (offset + OCFS2_XATTR_ROOT_SIZE - 1) / blocksize);
Tao Ma01225592008-08-18 17:38:53 +08004731
Joel Beckerb3e5d372008-12-09 15:01:04 -08004732 vb.vb_bh = bucket->bu_bhs[value_blk];
4733 BUG_ON(!vb.vb_bh);
Tao Ma01225592008-08-18 17:38:53 +08004734
Joel Beckerb3e5d372008-12-09 15:01:04 -08004735 vb.vb_xv = (struct ocfs2_xattr_value_root *)
4736 (vb.vb_bh->b_data + offset % blocksize);
Tao Ma01225592008-08-18 17:38:53 +08004737
Joel Becker548b0f22008-11-24 19:32:13 -08004738 /*
4739 * From here on out we have to dirty the bucket. The generic
4740 * value calls only modify one of the bucket's bhs, but we need
4741 * to send the bucket at once. So if they error, they *could* have
4742 * modified something. We have to assume they did, and dirty
4743 * the whole bucket. This leaves us in a consistent state.
4744 */
Tao Ma01225592008-08-18 17:38:53 +08004745 mlog(0, "truncate %u in xattr bucket %llu to %d bytes.\n",
Joel Becker548b0f22008-11-24 19:32:13 -08004746 xe_off, (unsigned long long)bucket_blkno(bucket), len);
Joel Beckerb3e5d372008-12-09 15:01:04 -08004747 ret = ocfs2_xattr_value_truncate(inode, &vb, len, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004748 if (ret) {
4749 mlog_errno(ret);
Tao Ma554e7f92009-01-08 08:21:43 +08004750 goto out;
4751 }
4752
4753 ret = ocfs2_xattr_bucket_journal_access(ctxt->handle, bucket,
4754 OCFS2_JOURNAL_ACCESS_WRITE);
4755 if (ret) {
4756 mlog_errno(ret);
4757 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004758 }
4759
Joel Becker548b0f22008-11-24 19:32:13 -08004760 xe->xe_value_size = cpu_to_le64(len);
4761
Joel Becker548b0f22008-11-24 19:32:13 -08004762 ocfs2_xattr_bucket_journal_dirty(ctxt->handle, bucket);
Tao Ma01225592008-08-18 17:38:53 +08004763
4764out:
Tao Ma01225592008-08-18 17:38:53 +08004765 return ret;
4766}
4767
4768static int ocfs2_xattr_bucket_value_truncate_xs(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +08004769 struct ocfs2_xattr_search *xs,
4770 int len,
4771 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004772{
4773 int ret, offset;
4774 struct ocfs2_xattr_entry *xe = xs->here;
4775 struct ocfs2_xattr_header *xh = (struct ocfs2_xattr_header *)xs->base;
4776
Joel Beckerba937122008-10-24 19:13:20 -07004777 BUG_ON(!xs->bucket->bu_bhs[0] || !xe || ocfs2_xattr_is_local(xe));
Tao Ma01225592008-08-18 17:38:53 +08004778
4779 offset = xe - xh->xh_entries;
Joel Becker548b0f22008-11-24 19:32:13 -08004780 ret = ocfs2_xattr_bucket_value_truncate(inode, xs->bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08004781 offset, len, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004782 if (ret)
4783 mlog_errno(ret);
4784
4785 return ret;
4786}
4787
4788static int ocfs2_xattr_bucket_set_value_outside(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004789 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004790 struct ocfs2_xattr_search *xs,
4791 char *val,
4792 int value_len)
4793{
Tao Ma712e53e2009-03-12 08:37:34 +08004794 int ret, offset, block_off;
Tao Ma01225592008-08-18 17:38:53 +08004795 struct ocfs2_xattr_value_root *xv;
4796 struct ocfs2_xattr_entry *xe = xs->here;
Tao Ma712e53e2009-03-12 08:37:34 +08004797 struct ocfs2_xattr_header *xh = bucket_xh(xs->bucket);
4798 void *base;
Tao Ma01225592008-08-18 17:38:53 +08004799
4800 BUG_ON(!xs->base || !xe || ocfs2_xattr_is_local(xe));
4801
Tao Ma712e53e2009-03-12 08:37:34 +08004802 ret = ocfs2_xattr_bucket_get_name_value(inode, xh,
4803 xe - xh->xh_entries,
4804 &block_off,
4805 &offset);
4806 if (ret) {
4807 mlog_errno(ret);
4808 goto out;
4809 }
Tao Ma01225592008-08-18 17:38:53 +08004810
Tao Ma712e53e2009-03-12 08:37:34 +08004811 base = bucket_block(xs->bucket, block_off);
4812 xv = (struct ocfs2_xattr_value_root *)(base + offset +
4813 OCFS2_XATTR_SIZE(xe->xe_name_len));
Tao Ma01225592008-08-18 17:38:53 +08004814
Tao Ma712e53e2009-03-12 08:37:34 +08004815 ret = __ocfs2_xattr_set_value_outside(inode, handle,
4816 xv, val, value_len);
4817 if (ret)
4818 mlog_errno(ret);
4819out:
4820 return ret;
Tao Ma01225592008-08-18 17:38:53 +08004821}
4822
Tao Ma01225592008-08-18 17:38:53 +08004823static int ocfs2_rm_xattr_cluster(struct inode *inode,
4824 struct buffer_head *root_bh,
4825 u64 blkno,
4826 u32 cpos,
4827 u32 len)
4828{
4829 int ret;
4830 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4831 struct inode *tl_inode = osb->osb_tl_inode;
4832 handle_t *handle;
4833 struct ocfs2_xattr_block *xb =
4834 (struct ocfs2_xattr_block *)root_bh->b_data;
Tao Ma01225592008-08-18 17:38:53 +08004835 struct ocfs2_alloc_context *meta_ac = NULL;
4836 struct ocfs2_cached_dealloc_ctxt dealloc;
Joel Beckerf99b9b72008-08-20 19:36:33 -07004837 struct ocfs2_extent_tree et;
4838
Joel Becker8d6220d2008-08-22 12:46:09 -07004839 ocfs2_init_xattr_tree_extent_tree(&et, inode, root_bh);
Tao Ma01225592008-08-18 17:38:53 +08004840
4841 ocfs2_init_dealloc_ctxt(&dealloc);
4842
4843 mlog(0, "rm xattr extent rec at %u len = %u, start from %llu\n",
4844 cpos, len, (unsigned long long)blkno);
4845
4846 ocfs2_remove_xattr_clusters_from_cache(inode, blkno, len);
4847
Joel Beckerf99b9b72008-08-20 19:36:33 -07004848 ret = ocfs2_lock_allocators(inode, &et, 0, 1, NULL, &meta_ac);
Tao Ma01225592008-08-18 17:38:53 +08004849 if (ret) {
4850 mlog_errno(ret);
4851 return ret;
4852 }
4853
4854 mutex_lock(&tl_inode->i_mutex);
4855
4856 if (ocfs2_truncate_log_needs_flush(osb)) {
4857 ret = __ocfs2_flush_truncate_log(osb);
4858 if (ret < 0) {
4859 mlog_errno(ret);
4860 goto out;
4861 }
4862 }
4863
Jan Karaa90714c2008-10-09 19:38:40 +02004864 handle = ocfs2_start_trans(osb, ocfs2_remove_extent_credits(osb->sb));
Tao Mad3264792008-10-24 07:57:28 +08004865 if (IS_ERR(handle)) {
Tao Ma01225592008-08-18 17:38:53 +08004866 ret = -ENOMEM;
4867 mlog_errno(ret);
4868 goto out;
4869 }
4870
Joel Becker84008972008-12-09 16:11:49 -08004871 ret = ocfs2_journal_access_xb(handle, inode, root_bh,
4872 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004873 if (ret) {
4874 mlog_errno(ret);
4875 goto out_commit;
4876 }
4877
Joel Beckerf99b9b72008-08-20 19:36:33 -07004878 ret = ocfs2_remove_extent(inode, &et, cpos, len, handle, meta_ac,
4879 &dealloc);
Tao Ma01225592008-08-18 17:38:53 +08004880 if (ret) {
4881 mlog_errno(ret);
4882 goto out_commit;
4883 }
4884
4885 le32_add_cpu(&xb->xb_attrs.xb_root.xt_clusters, -len);
4886
4887 ret = ocfs2_journal_dirty(handle, root_bh);
4888 if (ret) {
4889 mlog_errno(ret);
4890 goto out_commit;
4891 }
4892
4893 ret = ocfs2_truncate_log_append(osb, handle, blkno, len);
4894 if (ret)
4895 mlog_errno(ret);
4896
4897out_commit:
4898 ocfs2_commit_trans(osb, handle);
4899out:
4900 ocfs2_schedule_truncate_log_flush(osb, 1);
4901
4902 mutex_unlock(&tl_inode->i_mutex);
4903
4904 if (meta_ac)
4905 ocfs2_free_alloc_context(meta_ac);
4906
4907 ocfs2_run_deallocs(osb, &dealloc);
4908
4909 return ret;
4910}
4911
Tao Ma01225592008-08-18 17:38:53 +08004912static void ocfs2_xattr_bucket_remove_xs(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004913 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004914 struct ocfs2_xattr_search *xs)
4915{
Joel Beckerba937122008-10-24 19:13:20 -07004916 struct ocfs2_xattr_header *xh = bucket_xh(xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004917 struct ocfs2_xattr_entry *last = &xh->xh_entries[
4918 le16_to_cpu(xh->xh_count) - 1];
4919 int ret = 0;
4920
Joel Beckerba937122008-10-24 19:13:20 -07004921 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
Joel Becker1224be02008-10-24 18:47:33 -07004922 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004923 if (ret) {
4924 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08004925 return;
Tao Ma01225592008-08-18 17:38:53 +08004926 }
4927
4928 /* Remove the old entry. */
4929 memmove(xs->here, xs->here + 1,
4930 (void *)last - (void *)xs->here);
4931 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
4932 le16_add_cpu(&xh->xh_count, -1);
4933
Joel Beckerba937122008-10-24 19:13:20 -07004934 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004935}
4936
4937/*
4938 * Set the xattr name/value in the bucket specified in xs.
4939 *
4940 * As the new value in xi may be stored in the bucket or in an outside cluster,
4941 * we divide the whole process into 3 steps:
4942 * 1. insert name/value in the bucket(ocfs2_xattr_set_entry_in_bucket)
4943 * 2. truncate of the outside cluster(ocfs2_xattr_bucket_value_truncate_xs)
4944 * 3. Set the value to the outside cluster(ocfs2_xattr_bucket_set_value_outside)
4945 * 4. If the clusters for the new outside value can't be allocated, we need
4946 * to free the xattr we allocated in set.
4947 */
4948static int ocfs2_xattr_set_in_bucket(struct inode *inode,
4949 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08004950 struct ocfs2_xattr_search *xs,
4951 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004952{
Tao Ma5a095612008-09-19 22:17:41 +08004953 int ret, local = 1;
Tao Ma01225592008-08-18 17:38:53 +08004954 size_t value_len;
4955 char *val = (char *)xi->value;
4956 struct ocfs2_xattr_entry *xe = xs->here;
Tao Ma2057e5c2008-10-09 23:06:13 +08004957 u32 name_hash = ocfs2_xattr_name_hash(inode, xi->name,
4958 strlen(xi->name));
Tao Ma01225592008-08-18 17:38:53 +08004959
4960 if (!xs->not_found && !ocfs2_xattr_is_local(xe)) {
4961 /*
4962 * We need to truncate the xattr storage first.
4963 *
4964 * If both the old and new value are stored to
4965 * outside block, we only need to truncate
4966 * the storage and then set the value outside.
4967 *
4968 * If the new value should be stored within block,
4969 * we should free all the outside block first and
4970 * the modification to the xattr block will be done
4971 * by following steps.
4972 */
4973 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
4974 value_len = xi->value_len;
4975 else
4976 value_len = 0;
4977
4978 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
Tao Ma78f30c32008-11-12 08:27:00 +08004979 value_len,
4980 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004981 if (ret)
4982 goto out;
4983
4984 if (value_len)
4985 goto set_value_outside;
4986 }
4987
4988 value_len = xi->value_len;
4989 /* So we have to handle the inside block change now. */
4990 if (value_len > OCFS2_XATTR_INLINE_SIZE) {
4991 /*
4992 * If the new value will be stored outside of block,
4993 * initalize a new empty value root and insert it first.
4994 */
4995 local = 0;
4996 xi->value = &def_xv;
4997 xi->value_len = OCFS2_XATTR_ROOT_SIZE;
4998 }
4999
Tao Ma85db90e2008-11-12 08:27:01 +08005000 ret = ocfs2_xattr_set_entry_in_bucket(inode, ctxt->handle, xi, xs,
5001 name_hash, local);
Tao Ma01225592008-08-18 17:38:53 +08005002 if (ret) {
5003 mlog_errno(ret);
5004 goto out;
5005 }
5006
Tao Ma5a095612008-09-19 22:17:41 +08005007 if (value_len <= OCFS2_XATTR_INLINE_SIZE)
5008 goto out;
Tao Ma01225592008-08-18 17:38:53 +08005009
Tao Ma5a095612008-09-19 22:17:41 +08005010 /* allocate the space now for the outside block storage. */
5011 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
Tao Ma78f30c32008-11-12 08:27:00 +08005012 value_len, ctxt);
Tao Ma5a095612008-09-19 22:17:41 +08005013 if (ret) {
5014 mlog_errno(ret);
5015
5016 if (xs->not_found) {
5017 /*
5018 * We can't allocate enough clusters for outside
5019 * storage and we have allocated xattr already,
5020 * so need to remove it.
5021 */
Tao Ma85db90e2008-11-12 08:27:01 +08005022 ocfs2_xattr_bucket_remove_xs(inode, ctxt->handle, xs);
Tao Ma01225592008-08-18 17:38:53 +08005023 }
Tao Ma01225592008-08-18 17:38:53 +08005024 goto out;
5025 }
5026
5027set_value_outside:
Tao Ma85db90e2008-11-12 08:27:01 +08005028 ret = ocfs2_xattr_bucket_set_value_outside(inode, ctxt->handle,
5029 xs, val, value_len);
Tao Ma01225592008-08-18 17:38:53 +08005030out:
5031 return ret;
5032}
5033
Tao Ma80bcaf32008-10-27 06:06:24 +08005034/*
5035 * check whether the xattr bucket is filled up with the same hash value.
5036 * If we want to insert the xattr with the same hash, return -ENOSPC.
5037 * If we want to insert a xattr with different hash value, go ahead
5038 * and ocfs2_divide_xattr_bucket will handle this.
5039 */
Tao Ma01225592008-08-18 17:38:53 +08005040static int ocfs2_check_xattr_bucket_collision(struct inode *inode,
Tao Ma80bcaf32008-10-27 06:06:24 +08005041 struct ocfs2_xattr_bucket *bucket,
5042 const char *name)
Tao Ma01225592008-08-18 17:38:53 +08005043{
Joel Becker3e632942008-10-24 17:04:49 -07005044 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08005045 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
5046
5047 if (name_hash != le32_to_cpu(xh->xh_entries[0].xe_name_hash))
5048 return 0;
Tao Ma01225592008-08-18 17:38:53 +08005049
5050 if (xh->xh_entries[le16_to_cpu(xh->xh_count) - 1].xe_name_hash ==
5051 xh->xh_entries[0].xe_name_hash) {
5052 mlog(ML_ERROR, "Too much hash collision in xattr bucket %llu, "
5053 "hash = %u\n",
Joel Becker9c7759a2008-10-24 16:21:03 -07005054 (unsigned long long)bucket_blkno(bucket),
Tao Ma01225592008-08-18 17:38:53 +08005055 le32_to_cpu(xh->xh_entries[0].xe_name_hash));
5056 return -ENOSPC;
5057 }
5058
5059 return 0;
5060}
5061
5062static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
5063 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08005064 struct ocfs2_xattr_search *xs,
5065 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08005066{
5067 struct ocfs2_xattr_header *xh;
5068 struct ocfs2_xattr_entry *xe;
5069 u16 count, header_size, xh_free_start;
Joel Becker6dde41d2008-10-24 17:16:48 -07005070 int free, max_free, need, old;
Tao Ma01225592008-08-18 17:38:53 +08005071 size_t value_size = 0, name_len = strlen(xi->name);
5072 size_t blocksize = inode->i_sb->s_blocksize;
5073 int ret, allocation = 0;
Tao Ma01225592008-08-18 17:38:53 +08005074
5075 mlog_entry("Set xattr %s in xattr index block\n", xi->name);
5076
5077try_again:
5078 xh = xs->header;
5079 count = le16_to_cpu(xh->xh_count);
5080 xh_free_start = le16_to_cpu(xh->xh_free_start);
5081 header_size = sizeof(struct ocfs2_xattr_header) +
5082 count * sizeof(struct ocfs2_xattr_entry);
Tiger Yang4442f512009-02-20 11:11:50 +08005083 max_free = OCFS2_XATTR_BUCKET_SIZE - header_size -
5084 le16_to_cpu(xh->xh_name_value_len) - OCFS2_XATTR_HEADER_GAP;
Tao Ma01225592008-08-18 17:38:53 +08005085
5086 mlog_bug_on_msg(header_size > blocksize, "bucket %llu has header size "
5087 "of %u which exceed block size\n",
Joel Beckerba937122008-10-24 19:13:20 -07005088 (unsigned long long)bucket_blkno(xs->bucket),
Tao Ma01225592008-08-18 17:38:53 +08005089 header_size);
5090
5091 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE)
5092 value_size = OCFS2_XATTR_ROOT_SIZE;
5093 else if (xi->value)
5094 value_size = OCFS2_XATTR_SIZE(xi->value_len);
5095
5096 if (xs->not_found)
5097 need = sizeof(struct ocfs2_xattr_entry) +
5098 OCFS2_XATTR_SIZE(name_len) + value_size;
5099 else {
5100 need = value_size + OCFS2_XATTR_SIZE(name_len);
5101
5102 /*
5103 * We only replace the old value if the new length is smaller
5104 * than the old one. Otherwise we will allocate new space in the
5105 * bucket to store it.
5106 */
5107 xe = xs->here;
5108 if (ocfs2_xattr_is_local(xe))
5109 old = OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
5110 else
5111 old = OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
5112
5113 if (old >= value_size)
5114 need = 0;
5115 }
5116
Tiger Yang4442f512009-02-20 11:11:50 +08005117 free = xh_free_start - header_size - OCFS2_XATTR_HEADER_GAP;
Tao Ma01225592008-08-18 17:38:53 +08005118 /*
5119 * We need to make sure the new name/value pair
5120 * can exist in the same block.
5121 */
5122 if (xh_free_start % blocksize < need)
5123 free -= xh_free_start % blocksize;
5124
5125 mlog(0, "xs->not_found = %d, in xattr bucket %llu: free = %d, "
5126 "need = %d, max_free = %d, xh_free_start = %u, xh_name_value_len ="
5127 " %u\n", xs->not_found,
Joel Beckerba937122008-10-24 19:13:20 -07005128 (unsigned long long)bucket_blkno(xs->bucket),
Tao Ma01225592008-08-18 17:38:53 +08005129 free, need, max_free, le16_to_cpu(xh->xh_free_start),
5130 le16_to_cpu(xh->xh_name_value_len));
5131
Tao Ma976331d2008-11-12 08:26:57 +08005132 if (free < need ||
5133 (xs->not_found &&
5134 count == ocfs2_xattr_max_xe_in_bucket(inode->i_sb))) {
Tao Ma01225592008-08-18 17:38:53 +08005135 if (need <= max_free &&
5136 count < ocfs2_xattr_max_xe_in_bucket(inode->i_sb)) {
5137 /*
5138 * We can create the space by defragment. Since only the
5139 * name/value will be moved, the xe shouldn't be changed
5140 * in xs.
5141 */
Tao Ma85db90e2008-11-12 08:27:01 +08005142 ret = ocfs2_defrag_xattr_bucket(inode, ctxt->handle,
5143 xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08005144 if (ret) {
5145 mlog_errno(ret);
5146 goto out;
5147 }
5148
5149 xh_free_start = le16_to_cpu(xh->xh_free_start);
Tiger Yang4442f512009-02-20 11:11:50 +08005150 free = xh_free_start - header_size
5151 - OCFS2_XATTR_HEADER_GAP;
Tao Ma01225592008-08-18 17:38:53 +08005152 if (xh_free_start % blocksize < need)
5153 free -= xh_free_start % blocksize;
5154
5155 if (free >= need)
5156 goto xattr_set;
5157
5158 mlog(0, "Can't get enough space for xattr insert by "
5159 "defragment. Need %u bytes, but we have %d, so "
5160 "allocate new bucket for it.\n", need, free);
5161 }
5162
5163 /*
5164 * We have to add new buckets or clusters and one
5165 * allocation should leave us enough space for insert.
5166 */
5167 BUG_ON(allocation);
5168
5169 /*
5170 * We do not allow for overlapping ranges between buckets. And
5171 * the maximum number of collisions we will allow for then is
5172 * one bucket's worth, so check it here whether we need to
5173 * add a new bucket for the insert.
5174 */
Tao Ma80bcaf32008-10-27 06:06:24 +08005175 ret = ocfs2_check_xattr_bucket_collision(inode,
Joel Beckerba937122008-10-24 19:13:20 -07005176 xs->bucket,
Tao Ma80bcaf32008-10-27 06:06:24 +08005177 xi->name);
Tao Ma01225592008-08-18 17:38:53 +08005178 if (ret) {
5179 mlog_errno(ret);
5180 goto out;
5181 }
5182
5183 ret = ocfs2_add_new_xattr_bucket(inode,
5184 xs->xattr_bh,
Joel Becker91f20332008-11-26 15:25:41 -08005185 xs->bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08005186 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08005187 if (ret) {
5188 mlog_errno(ret);
5189 goto out;
5190 }
5191
Joel Becker91f20332008-11-26 15:25:41 -08005192 /*
5193 * ocfs2_add_new_xattr_bucket() will have updated
5194 * xs->bucket if it moved, but it will not have updated
5195 * any of the other search fields. Thus, we drop it and
5196 * re-search. Everything should be cached, so it'll be
5197 * quick.
5198 */
Joel Beckerba937122008-10-24 19:13:20 -07005199 ocfs2_xattr_bucket_relse(xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08005200 ret = ocfs2_xattr_index_block_find(inode, xs->xattr_bh,
5201 xi->name_index,
5202 xi->name, xs);
5203 if (ret && ret != -ENODATA)
5204 goto out;
5205 xs->not_found = ret;
5206 allocation = 1;
5207 goto try_again;
5208 }
5209
5210xattr_set:
Tao Ma78f30c32008-11-12 08:27:00 +08005211 ret = ocfs2_xattr_set_in_bucket(inode, xi, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08005212out:
5213 mlog_exit(ret);
5214 return ret;
5215}
Tao Maa3944252008-08-18 17:38:54 +08005216
5217static int ocfs2_delete_xattr_in_bucket(struct inode *inode,
5218 struct ocfs2_xattr_bucket *bucket,
5219 void *para)
5220{
5221 int ret = 0;
Joel Becker3e632942008-10-24 17:04:49 -07005222 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Maa3944252008-08-18 17:38:54 +08005223 u16 i;
5224 struct ocfs2_xattr_entry *xe;
Tao Ma78f30c32008-11-12 08:27:00 +08005225 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5226 struct ocfs2_xattr_set_ctxt ctxt = {NULL, NULL,};
Joel Becker548b0f22008-11-24 19:32:13 -08005227 int credits = ocfs2_remove_extent_credits(osb->sb) +
5228 ocfs2_blocks_per_xattr_bucket(inode->i_sb);
5229
Tao Ma78f30c32008-11-12 08:27:00 +08005230
5231 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
Tao Maa3944252008-08-18 17:38:54 +08005232
5233 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
5234 xe = &xh->xh_entries[i];
5235 if (ocfs2_xattr_is_local(xe))
5236 continue;
5237
Tao Ma88c3b062008-12-11 08:54:11 +08005238 ctxt.handle = ocfs2_start_trans(osb, credits);
5239 if (IS_ERR(ctxt.handle)) {
5240 ret = PTR_ERR(ctxt.handle);
5241 mlog_errno(ret);
5242 break;
5243 }
5244
Joel Becker548b0f22008-11-24 19:32:13 -08005245 ret = ocfs2_xattr_bucket_value_truncate(inode, bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08005246 i, 0, &ctxt);
Tao Ma88c3b062008-12-11 08:54:11 +08005247
5248 ocfs2_commit_trans(osb, ctxt.handle);
Tao Maa3944252008-08-18 17:38:54 +08005249 if (ret) {
5250 mlog_errno(ret);
5251 break;
5252 }
5253 }
5254
Tao Ma78f30c32008-11-12 08:27:00 +08005255 ocfs2_schedule_truncate_log_flush(osb, 1);
5256 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tao Maa3944252008-08-18 17:38:54 +08005257 return ret;
5258}
5259
5260static int ocfs2_delete_xattr_index_block(struct inode *inode,
5261 struct buffer_head *xb_bh)
5262{
5263 struct ocfs2_xattr_block *xb =
5264 (struct ocfs2_xattr_block *)xb_bh->b_data;
5265 struct ocfs2_extent_list *el = &xb->xb_attrs.xb_root.xt_list;
5266 int ret = 0;
5267 u32 name_hash = UINT_MAX, e_cpos, num_clusters;
5268 u64 p_blkno;
5269
5270 if (le16_to_cpu(el->l_next_free_rec) == 0)
5271 return 0;
5272
5273 while (name_hash > 0) {
5274 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
5275 &e_cpos, &num_clusters, el);
5276 if (ret) {
5277 mlog_errno(ret);
5278 goto out;
5279 }
5280
5281 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
5282 ocfs2_delete_xattr_in_bucket,
5283 NULL);
5284 if (ret) {
5285 mlog_errno(ret);
5286 goto out;
5287 }
5288
5289 ret = ocfs2_rm_xattr_cluster(inode, xb_bh,
5290 p_blkno, e_cpos, num_clusters);
5291 if (ret) {
5292 mlog_errno(ret);
5293 break;
5294 }
5295
5296 if (e_cpos == 0)
5297 break;
5298
5299 name_hash = e_cpos - 1;
5300 }
5301
5302out:
5303 return ret;
5304}
Mark Fasheh99219ae2008-10-07 14:52:59 -07005305
5306/*
Tiger Yang923f7f32008-11-14 11:16:27 +08005307 * 'security' attributes support
5308 */
5309static size_t ocfs2_xattr_security_list(struct inode *inode, char *list,
5310 size_t list_size, const char *name,
5311 size_t name_len)
5312{
5313 const size_t prefix_len = XATTR_SECURITY_PREFIX_LEN;
5314 const size_t total_len = prefix_len + name_len + 1;
5315
5316 if (list && total_len <= list_size) {
5317 memcpy(list, XATTR_SECURITY_PREFIX, prefix_len);
5318 memcpy(list + prefix_len, name, name_len);
5319 list[prefix_len + name_len] = '\0';
5320 }
5321 return total_len;
5322}
5323
5324static int ocfs2_xattr_security_get(struct inode *inode, const char *name,
5325 void *buffer, size_t size)
5326{
5327 if (strcmp(name, "") == 0)
5328 return -EINVAL;
5329 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_SECURITY, name,
5330 buffer, size);
5331}
5332
5333static int ocfs2_xattr_security_set(struct inode *inode, const char *name,
5334 const void *value, size_t size, int flags)
5335{
5336 if (strcmp(name, "") == 0)
5337 return -EINVAL;
5338
5339 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_SECURITY, name, value,
5340 size, flags);
5341}
5342
Tiger Yang534eadd2008-11-14 11:16:41 +08005343int ocfs2_init_security_get(struct inode *inode,
5344 struct inode *dir,
5345 struct ocfs2_security_xattr_info *si)
5346{
Tiger Yang38d59ef2008-12-17 10:22:56 +08005347 /* check whether ocfs2 support feature xattr */
5348 if (!ocfs2_supports_xattr(OCFS2_SB(dir->i_sb)))
5349 return -EOPNOTSUPP;
Tiger Yang534eadd2008-11-14 11:16:41 +08005350 return security_inode_init_security(inode, dir, &si->name, &si->value,
5351 &si->value_len);
5352}
5353
5354int ocfs2_init_security_set(handle_t *handle,
5355 struct inode *inode,
5356 struct buffer_head *di_bh,
5357 struct ocfs2_security_xattr_info *si,
5358 struct ocfs2_alloc_context *xattr_ac,
5359 struct ocfs2_alloc_context *data_ac)
5360{
5361 return ocfs2_xattr_set_handle(handle, inode, di_bh,
5362 OCFS2_XATTR_INDEX_SECURITY,
5363 si->name, si->value, si->value_len, 0,
5364 xattr_ac, data_ac);
5365}
5366
Tiger Yang923f7f32008-11-14 11:16:27 +08005367struct xattr_handler ocfs2_xattr_security_handler = {
5368 .prefix = XATTR_SECURITY_PREFIX,
5369 .list = ocfs2_xattr_security_list,
5370 .get = ocfs2_xattr_security_get,
5371 .set = ocfs2_xattr_security_set,
5372};
5373
5374/*
Mark Fasheh99219ae2008-10-07 14:52:59 -07005375 * 'trusted' attributes support
5376 */
Mark Fasheh99219ae2008-10-07 14:52:59 -07005377static size_t ocfs2_xattr_trusted_list(struct inode *inode, char *list,
5378 size_t list_size, const char *name,
5379 size_t name_len)
5380{
Tiger Yangceb1eba2008-10-23 16:34:13 +08005381 const size_t prefix_len = XATTR_TRUSTED_PREFIX_LEN;
Mark Fasheh99219ae2008-10-07 14:52:59 -07005382 const size_t total_len = prefix_len + name_len + 1;
5383
5384 if (list && total_len <= list_size) {
5385 memcpy(list, XATTR_TRUSTED_PREFIX, prefix_len);
5386 memcpy(list + prefix_len, name, name_len);
5387 list[prefix_len + name_len] = '\0';
5388 }
5389 return total_len;
5390}
5391
5392static int ocfs2_xattr_trusted_get(struct inode *inode, const char *name,
5393 void *buffer, size_t size)
5394{
5395 if (strcmp(name, "") == 0)
5396 return -EINVAL;
5397 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_TRUSTED, name,
5398 buffer, size);
5399}
5400
5401static int ocfs2_xattr_trusted_set(struct inode *inode, const char *name,
5402 const void *value, size_t size, int flags)
5403{
5404 if (strcmp(name, "") == 0)
5405 return -EINVAL;
5406
5407 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_TRUSTED, name, value,
5408 size, flags);
5409}
5410
5411struct xattr_handler ocfs2_xattr_trusted_handler = {
5412 .prefix = XATTR_TRUSTED_PREFIX,
5413 .list = ocfs2_xattr_trusted_list,
5414 .get = ocfs2_xattr_trusted_get,
5415 .set = ocfs2_xattr_trusted_set,
5416};
5417
Mark Fasheh99219ae2008-10-07 14:52:59 -07005418/*
5419 * 'user' attributes support
5420 */
Mark Fasheh99219ae2008-10-07 14:52:59 -07005421static size_t ocfs2_xattr_user_list(struct inode *inode, char *list,
5422 size_t list_size, const char *name,
5423 size_t name_len)
5424{
Tiger Yangceb1eba2008-10-23 16:34:13 +08005425 const size_t prefix_len = XATTR_USER_PREFIX_LEN;
Mark Fasheh99219ae2008-10-07 14:52:59 -07005426 const size_t total_len = prefix_len + name_len + 1;
5427 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5428
5429 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5430 return 0;
5431
5432 if (list && total_len <= list_size) {
5433 memcpy(list, XATTR_USER_PREFIX, prefix_len);
5434 memcpy(list + prefix_len, name, name_len);
5435 list[prefix_len + name_len] = '\0';
5436 }
5437 return total_len;
5438}
5439
5440static int ocfs2_xattr_user_get(struct inode *inode, const char *name,
5441 void *buffer, size_t size)
5442{
5443 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5444
5445 if (strcmp(name, "") == 0)
5446 return -EINVAL;
5447 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5448 return -EOPNOTSUPP;
5449 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_USER, name,
5450 buffer, size);
5451}
5452
5453static int ocfs2_xattr_user_set(struct inode *inode, const char *name,
5454 const void *value, size_t size, int flags)
5455{
5456 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5457
5458 if (strcmp(name, "") == 0)
5459 return -EINVAL;
5460 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5461 return -EOPNOTSUPP;
5462
5463 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_USER, name, value,
5464 size, flags);
5465}
5466
5467struct xattr_handler ocfs2_xattr_user_handler = {
5468 .prefix = XATTR_USER_PREFIX,
5469 .list = ocfs2_xattr_user_list,
5470 .get = ocfs2_xattr_user_get,
5471 .set = ocfs2_xattr_user_set,
5472};