blob: a7c167905c56daf62fa08a81861c0bb2837a7794 [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 Yang534eadd2008-11-14 11:16:41 +080085#define OCFS2_XATTR_FREE_IN_IBODY (OCFS2_MIN_XATTR_INLINE_SIZE \
86 - sizeof(struct ocfs2_xattr_header) \
87 - sizeof(__u32))
Tiger Yang89c38bd2008-11-14 11:17:41 +080088#define OCFS2_XATTR_FREE_IN_BLOCK(ptr) ((ptr)->i_sb->s_blocksize \
89 - sizeof(struct ocfs2_xattr_block) \
90 - sizeof(struct ocfs2_xattr_header) \
91 - sizeof(__u32))
Tiger Yangcf1d6c72008-08-18 17:11:00 +080092
93static struct ocfs2_xattr_def_value_root def_xv = {
94 .xv.xr_list.l_count = cpu_to_le16(1),
95};
96
97struct xattr_handler *ocfs2_xattr_handlers[] = {
98 &ocfs2_xattr_user_handler,
Tiger Yang929fb012008-11-14 11:17:04 +080099#ifdef CONFIG_OCFS2_FS_POSIX_ACL
100 &ocfs2_xattr_acl_access_handler,
101 &ocfs2_xattr_acl_default_handler,
102#endif
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800103 &ocfs2_xattr_trusted_handler,
Tiger Yang923f7f32008-11-14 11:16:27 +0800104 &ocfs2_xattr_security_handler,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800105 NULL
106};
107
Tiger Yangc988fd02008-10-23 16:34:44 +0800108static struct xattr_handler *ocfs2_xattr_handler_map[OCFS2_XATTR_MAX] = {
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800109 [OCFS2_XATTR_INDEX_USER] = &ocfs2_xattr_user_handler,
Tiger Yang929fb012008-11-14 11:17:04 +0800110#ifdef CONFIG_OCFS2_FS_POSIX_ACL
111 [OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS]
112 = &ocfs2_xattr_acl_access_handler,
113 [OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT]
114 = &ocfs2_xattr_acl_default_handler,
115#endif
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800116 [OCFS2_XATTR_INDEX_TRUSTED] = &ocfs2_xattr_trusted_handler,
Tiger Yang923f7f32008-11-14 11:16:27 +0800117 [OCFS2_XATTR_INDEX_SECURITY] = &ocfs2_xattr_security_handler,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800118};
119
120struct ocfs2_xattr_info {
121 int name_index;
122 const char *name;
123 const void *value;
124 size_t value_len;
125};
126
127struct ocfs2_xattr_search {
128 struct buffer_head *inode_bh;
129 /*
130 * xattr_bh point to the block buffer head which has extended attribute
131 * when extended attribute in inode, xattr_bh is equal to inode_bh.
132 */
133 struct buffer_head *xattr_bh;
134 struct ocfs2_xattr_header *header;
Joel Beckerba937122008-10-24 19:13:20 -0700135 struct ocfs2_xattr_bucket *bucket;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800136 void *base;
137 void *end;
138 struct ocfs2_xattr_entry *here;
139 int not_found;
140};
141
Tao Ma589dc262008-08-18 17:38:51 +0800142static int ocfs2_xattr_bucket_get_name_value(struct inode *inode,
143 struct ocfs2_xattr_header *xh,
144 int index,
145 int *block_off,
146 int *new_offset);
147
Joel Becker54f443f2008-10-20 18:43:07 -0700148static int ocfs2_xattr_block_find(struct inode *inode,
149 int name_index,
150 const char *name,
151 struct ocfs2_xattr_search *xs);
Tao Ma589dc262008-08-18 17:38:51 +0800152static int ocfs2_xattr_index_block_find(struct inode *inode,
153 struct buffer_head *root_bh,
154 int name_index,
155 const char *name,
156 struct ocfs2_xattr_search *xs);
157
Tao Ma0c044f02008-08-18 17:38:50 +0800158static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
159 struct ocfs2_xattr_tree_root *xt,
160 char *buffer,
161 size_t buffer_size);
162
Tao Ma01225592008-08-18 17:38:53 +0800163static int ocfs2_xattr_create_index_block(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +0800164 struct ocfs2_xattr_search *xs,
165 struct ocfs2_xattr_set_ctxt *ctxt);
Tao Ma01225592008-08-18 17:38:53 +0800166
167static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
168 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +0800169 struct ocfs2_xattr_search *xs,
170 struct ocfs2_xattr_set_ctxt *ctxt);
Tao Ma01225592008-08-18 17:38:53 +0800171
Tao Maa3944252008-08-18 17:38:54 +0800172static int ocfs2_delete_xattr_index_block(struct inode *inode,
173 struct buffer_head *xb_bh);
Joel Beckerc58b6032008-11-26 13:36:24 -0800174static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
175 u64 src_blk, u64 last_blk, u64 to_blk,
176 unsigned int start_bucket,
177 u32 *first_hash);
Tao Maa3944252008-08-18 17:38:54 +0800178
Tiger Yang0030e002008-10-23 16:33:33 +0800179static inline u16 ocfs2_xattr_buckets_per_cluster(struct ocfs2_super *osb)
180{
181 return (1 << osb->s_clustersize_bits) / OCFS2_XATTR_BUCKET_SIZE;
182}
183
184static inline u16 ocfs2_blocks_per_xattr_bucket(struct super_block *sb)
185{
186 return OCFS2_XATTR_BUCKET_SIZE / (1 << sb->s_blocksize_bits);
187}
188
189static inline u16 ocfs2_xattr_max_xe_in_bucket(struct super_block *sb)
190{
191 u16 len = sb->s_blocksize -
192 offsetof(struct ocfs2_xattr_header, xh_entries);
193
194 return len / sizeof(struct ocfs2_xattr_entry);
195}
196
Joel Becker9c7759a2008-10-24 16:21:03 -0700197#define bucket_blkno(_b) ((_b)->bu_bhs[0]->b_blocknr)
Joel Becker51def392008-10-24 16:57:21 -0700198#define bucket_block(_b, _n) ((_b)->bu_bhs[(_n)]->b_data)
Joel Becker3e632942008-10-24 17:04:49 -0700199#define bucket_xh(_b) ((struct ocfs2_xattr_header *)bucket_block((_b), 0))
Joel Becker9c7759a2008-10-24 16:21:03 -0700200
Joel Beckerba937122008-10-24 19:13:20 -0700201static struct ocfs2_xattr_bucket *ocfs2_xattr_bucket_new(struct inode *inode)
Joel Becker6dde41d2008-10-24 17:16:48 -0700202{
Joel Beckerba937122008-10-24 19:13:20 -0700203 struct ocfs2_xattr_bucket *bucket;
204 int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Joel Becker6dde41d2008-10-24 17:16:48 -0700205
Joel Beckerba937122008-10-24 19:13:20 -0700206 BUG_ON(blks > OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET);
207
208 bucket = kzalloc(sizeof(struct ocfs2_xattr_bucket), GFP_NOFS);
209 if (bucket) {
210 bucket->bu_inode = inode;
211 bucket->bu_blocks = blks;
212 }
213
214 return bucket;
215}
216
217static void ocfs2_xattr_bucket_relse(struct ocfs2_xattr_bucket *bucket)
218{
219 int i;
220
221 for (i = 0; i < bucket->bu_blocks; i++) {
Joel Becker6dde41d2008-10-24 17:16:48 -0700222 brelse(bucket->bu_bhs[i]);
223 bucket->bu_bhs[i] = NULL;
224 }
225}
226
Joel Beckerba937122008-10-24 19:13:20 -0700227static void ocfs2_xattr_bucket_free(struct ocfs2_xattr_bucket *bucket)
228{
229 if (bucket) {
230 ocfs2_xattr_bucket_relse(bucket);
231 bucket->bu_inode = NULL;
232 kfree(bucket);
233 }
234}
235
Joel Becker784b8162008-10-24 17:33:40 -0700236/*
237 * A bucket that has never been written to disk doesn't need to be
238 * read. We just need the buffer_heads. Don't call this for
239 * buckets that are already on disk. ocfs2_read_xattr_bucket() initializes
240 * them fully.
241 */
Joel Beckerba937122008-10-24 19:13:20 -0700242static int ocfs2_init_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
Joel Becker784b8162008-10-24 17:33:40 -0700243 u64 xb_blkno)
244{
245 int i, rc = 0;
Joel Becker784b8162008-10-24 17:33:40 -0700246
Joel Beckerba937122008-10-24 19:13:20 -0700247 for (i = 0; i < bucket->bu_blocks; i++) {
248 bucket->bu_bhs[i] = sb_getblk(bucket->bu_inode->i_sb,
249 xb_blkno + i);
Joel Becker784b8162008-10-24 17:33:40 -0700250 if (!bucket->bu_bhs[i]) {
251 rc = -EIO;
252 mlog_errno(rc);
253 break;
254 }
255
Tao Ma757055a2008-11-06 08:10:48 +0800256 if (!ocfs2_buffer_uptodate(bucket->bu_inode,
257 bucket->bu_bhs[i]))
258 ocfs2_set_new_buffer_uptodate(bucket->bu_inode,
259 bucket->bu_bhs[i]);
Joel Becker784b8162008-10-24 17:33:40 -0700260 }
261
262 if (rc)
Joel Beckerba937122008-10-24 19:13:20 -0700263 ocfs2_xattr_bucket_relse(bucket);
Joel Becker784b8162008-10-24 17:33:40 -0700264 return rc;
265}
266
267/* Read the xattr bucket at xb_blkno */
Joel Beckerba937122008-10-24 19:13:20 -0700268static int ocfs2_read_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
Joel Becker784b8162008-10-24 17:33:40 -0700269 u64 xb_blkno)
270{
Joel Beckerba937122008-10-24 19:13:20 -0700271 int rc;
Joel Becker784b8162008-10-24 17:33:40 -0700272
Joel Beckerba937122008-10-24 19:13:20 -0700273 rc = ocfs2_read_blocks(bucket->bu_inode, xb_blkno,
Joel Becker970e4932008-11-13 14:49:19 -0800274 bucket->bu_blocks, bucket->bu_bhs, 0,
275 NULL);
Joel Becker4d0e2142008-12-05 11:19:37 -0800276 if (!rc) {
Tao Mac8b9cf92009-02-24 17:40:26 -0800277 spin_lock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800278 rc = ocfs2_validate_meta_ecc_bhs(bucket->bu_inode->i_sb,
279 bucket->bu_bhs,
280 bucket->bu_blocks,
281 &bucket_xh(bucket)->xh_check);
Tao Mac8b9cf92009-02-24 17:40:26 -0800282 spin_unlock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800283 if (rc)
284 mlog_errno(rc);
285 }
286
Joel Becker784b8162008-10-24 17:33:40 -0700287 if (rc)
Joel Beckerba937122008-10-24 19:13:20 -0700288 ocfs2_xattr_bucket_relse(bucket);
Joel Becker784b8162008-10-24 17:33:40 -0700289 return rc;
290}
291
Joel Becker1224be02008-10-24 18:47:33 -0700292static int ocfs2_xattr_bucket_journal_access(handle_t *handle,
Joel Becker1224be02008-10-24 18:47:33 -0700293 struct ocfs2_xattr_bucket *bucket,
294 int type)
295{
296 int i, rc = 0;
Joel Becker1224be02008-10-24 18:47:33 -0700297
Joel Beckerba937122008-10-24 19:13:20 -0700298 for (i = 0; i < bucket->bu_blocks; i++) {
299 rc = ocfs2_journal_access(handle, bucket->bu_inode,
Joel Becker1224be02008-10-24 18:47:33 -0700300 bucket->bu_bhs[i], type);
301 if (rc) {
302 mlog_errno(rc);
303 break;
304 }
305 }
306
307 return rc;
308}
309
310static void ocfs2_xattr_bucket_journal_dirty(handle_t *handle,
Joel Becker1224be02008-10-24 18:47:33 -0700311 struct ocfs2_xattr_bucket *bucket)
312{
Joel Beckerba937122008-10-24 19:13:20 -0700313 int i;
Joel Becker1224be02008-10-24 18:47:33 -0700314
Tao Mac8b9cf92009-02-24 17:40:26 -0800315 spin_lock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800316 ocfs2_compute_meta_ecc_bhs(bucket->bu_inode->i_sb,
317 bucket->bu_bhs, bucket->bu_blocks,
318 &bucket_xh(bucket)->xh_check);
Tao Mac8b9cf92009-02-24 17:40:26 -0800319 spin_unlock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800320
Joel Beckerba937122008-10-24 19:13:20 -0700321 for (i = 0; i < bucket->bu_blocks; i++)
Joel Becker1224be02008-10-24 18:47:33 -0700322 ocfs2_journal_dirty(handle, bucket->bu_bhs[i]);
323}
324
Joel Beckerba937122008-10-24 19:13:20 -0700325static void ocfs2_xattr_bucket_copy_data(struct ocfs2_xattr_bucket *dest,
Joel Becker4980c6d2008-10-24 18:54:43 -0700326 struct ocfs2_xattr_bucket *src)
327{
328 int i;
Joel Beckerba937122008-10-24 19:13:20 -0700329 int blocksize = src->bu_inode->i_sb->s_blocksize;
Joel Becker4980c6d2008-10-24 18:54:43 -0700330
Joel Beckerba937122008-10-24 19:13:20 -0700331 BUG_ON(dest->bu_blocks != src->bu_blocks);
332 BUG_ON(dest->bu_inode != src->bu_inode);
333
334 for (i = 0; i < src->bu_blocks; i++) {
Joel Becker4980c6d2008-10-24 18:54:43 -0700335 memcpy(bucket_block(dest, i), bucket_block(src, i),
336 blocksize);
337 }
338}
Joel Becker1224be02008-10-24 18:47:33 -0700339
Joel Becker4ae1d692008-11-13 14:49:18 -0800340static int ocfs2_validate_xattr_block(struct super_block *sb,
341 struct buffer_head *bh)
342{
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700343 int rc;
Joel Becker4ae1d692008-11-13 14:49:18 -0800344 struct ocfs2_xattr_block *xb =
345 (struct ocfs2_xattr_block *)bh->b_data;
346
347 mlog(0, "Validating xattr block %llu\n",
348 (unsigned long long)bh->b_blocknr);
349
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700350 BUG_ON(!buffer_uptodate(bh));
351
352 /*
353 * If the ecc fails, we return the error but otherwise
354 * leave the filesystem running. We know any error is
355 * local to this block.
356 */
357 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &xb->xb_check);
358 if (rc)
359 return rc;
360
361 /*
362 * Errors after here are fatal
363 */
364
Joel Becker4ae1d692008-11-13 14:49:18 -0800365 if (!OCFS2_IS_VALID_XATTR_BLOCK(xb)) {
366 ocfs2_error(sb,
367 "Extended attribute block #%llu has bad "
368 "signature %.*s",
369 (unsigned long long)bh->b_blocknr, 7,
370 xb->xb_signature);
371 return -EINVAL;
372 }
373
374 if (le64_to_cpu(xb->xb_blkno) != bh->b_blocknr) {
375 ocfs2_error(sb,
376 "Extended attribute block #%llu has an "
377 "invalid xb_blkno of %llu",
378 (unsigned long long)bh->b_blocknr,
379 (unsigned long long)le64_to_cpu(xb->xb_blkno));
380 return -EINVAL;
381 }
382
383 if (le32_to_cpu(xb->xb_fs_generation) != OCFS2_SB(sb)->fs_generation) {
384 ocfs2_error(sb,
385 "Extended attribute block #%llu has an invalid "
386 "xb_fs_generation of #%u",
387 (unsigned long long)bh->b_blocknr,
388 le32_to_cpu(xb->xb_fs_generation));
389 return -EINVAL;
390 }
391
392 return 0;
393}
394
395static int ocfs2_read_xattr_block(struct inode *inode, u64 xb_blkno,
396 struct buffer_head **bh)
397{
398 int rc;
399 struct buffer_head *tmp = *bh;
400
Joel Becker970e4932008-11-13 14:49:19 -0800401 rc = ocfs2_read_block(inode, xb_blkno, &tmp,
402 ocfs2_validate_xattr_block);
Joel Becker4ae1d692008-11-13 14:49:18 -0800403
404 /* If ocfs2_read_block() got us a new bh, pass it up. */
405 if (!rc && !*bh)
406 *bh = tmp;
407
408 return rc;
409}
410
Tao Ma936b8832008-10-09 23:06:14 +0800411static inline const char *ocfs2_xattr_prefix(int name_index)
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800412{
413 struct xattr_handler *handler = NULL;
414
415 if (name_index > 0 && name_index < OCFS2_XATTR_MAX)
416 handler = ocfs2_xattr_handler_map[name_index];
417
Tao Ma936b8832008-10-09 23:06:14 +0800418 return handler ? handler->prefix : NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800419}
420
Mark Fasheh40daa162008-10-07 14:31:42 -0700421static u32 ocfs2_xattr_name_hash(struct inode *inode,
Tao Ma2057e5c2008-10-09 23:06:13 +0800422 const char *name,
Mark Fasheh40daa162008-10-07 14:31:42 -0700423 int name_len)
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800424{
425 /* Get hash value of uuid from super block */
426 u32 hash = OCFS2_SB(inode->i_sb)->uuid_hash;
427 int i;
428
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800429 /* hash extended attribute name */
430 for (i = 0; i < name_len; i++) {
431 hash = (hash << OCFS2_HASH_SHIFT) ^
432 (hash >> (8*sizeof(hash) - OCFS2_HASH_SHIFT)) ^
433 *name++;
434 }
435
436 return hash;
437}
438
439/*
440 * ocfs2_xattr_hash_entry()
441 *
442 * Compute the hash of an extended attribute.
443 */
444static void ocfs2_xattr_hash_entry(struct inode *inode,
445 struct ocfs2_xattr_header *header,
446 struct ocfs2_xattr_entry *entry)
447{
448 u32 hash = 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800449 char *name = (char *)header + le16_to_cpu(entry->xe_name_offset);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800450
Tao Ma2057e5c2008-10-09 23:06:13 +0800451 hash = ocfs2_xattr_name_hash(inode, name, entry->xe_name_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800452 entry->xe_name_hash = cpu_to_le32(hash);
453
454 return;
455}
Tao Maf56654c2008-08-18 17:38:48 +0800456
Tiger Yang534eadd2008-11-14 11:16:41 +0800457static int ocfs2_xattr_entry_real_size(int name_len, size_t value_len)
458{
459 int size = 0;
460
461 if (value_len <= OCFS2_XATTR_INLINE_SIZE)
462 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(value_len);
463 else
464 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
465 size += sizeof(struct ocfs2_xattr_entry);
466
467 return size;
468}
469
470int ocfs2_calc_security_init(struct inode *dir,
471 struct ocfs2_security_xattr_info *si,
472 int *want_clusters,
473 int *xattr_credits,
474 struct ocfs2_alloc_context **xattr_ac)
475{
476 int ret = 0;
477 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
478 int s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
479 si->value_len);
480
481 /*
482 * The max space of security xattr taken inline is
483 * 256(name) + 80(value) + 16(entry) = 352 bytes,
484 * So reserve one metadata block for it is ok.
485 */
486 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
487 s_size > OCFS2_XATTR_FREE_IN_IBODY) {
488 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, xattr_ac);
489 if (ret) {
490 mlog_errno(ret);
491 return ret;
492 }
493 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
494 }
495
496 /* reserve clusters for xattr value which will be set in B tree*/
Tiger Yang0e445b62008-12-09 16:42:51 +0800497 if (si->value_len > OCFS2_XATTR_INLINE_SIZE) {
498 int new_clusters = ocfs2_clusters_for_bytes(dir->i_sb,
499 si->value_len);
500
501 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
502 new_clusters);
503 *want_clusters += new_clusters;
504 }
Tiger Yang534eadd2008-11-14 11:16:41 +0800505 return ret;
506}
507
Tiger Yang89c38bd2008-11-14 11:17:41 +0800508int ocfs2_calc_xattr_init(struct inode *dir,
509 struct buffer_head *dir_bh,
510 int mode,
511 struct ocfs2_security_xattr_info *si,
512 int *want_clusters,
513 int *xattr_credits,
514 struct ocfs2_alloc_context **xattr_ac)
515{
516 int ret = 0;
517 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
Tiger Yang0e445b62008-12-09 16:42:51 +0800518 int s_size = 0, a_size = 0, acl_len = 0, new_clusters;
Tiger Yang89c38bd2008-11-14 11:17:41 +0800519
520 if (si->enable)
521 s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
522 si->value_len);
523
524 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) {
525 acl_len = ocfs2_xattr_get_nolock(dir, dir_bh,
526 OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT,
527 "", NULL, 0);
528 if (acl_len > 0) {
529 a_size = ocfs2_xattr_entry_real_size(0, acl_len);
530 if (S_ISDIR(mode))
531 a_size <<= 1;
532 } else if (acl_len != 0 && acl_len != -ENODATA) {
533 mlog_errno(ret);
534 return ret;
535 }
536 }
537
538 if (!(s_size + a_size))
539 return ret;
540
541 /*
542 * The max space of security xattr taken inline is
543 * 256(name) + 80(value) + 16(entry) = 352 bytes,
544 * The max space of acl xattr taken inline is
545 * 80(value) + 16(entry) * 2(if directory) = 192 bytes,
546 * when blocksize = 512, may reserve one more cluser for
547 * xattr bucket, otherwise reserve one metadata block
548 * for them is ok.
549 */
550 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
551 (s_size + a_size) > OCFS2_XATTR_FREE_IN_IBODY) {
552 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, xattr_ac);
553 if (ret) {
554 mlog_errno(ret);
555 return ret;
556 }
557 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
558 }
559
560 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE &&
561 (s_size + a_size) > OCFS2_XATTR_FREE_IN_BLOCK(dir)) {
562 *want_clusters += 1;
563 *xattr_credits += ocfs2_blocks_per_xattr_bucket(dir->i_sb);
564 }
565
Tiger Yang0e445b62008-12-09 16:42:51 +0800566 /*
567 * reserve credits and clusters for xattrs which has large value
568 * and have to be set outside
569 */
570 if (si->enable && si->value_len > OCFS2_XATTR_INLINE_SIZE) {
571 new_clusters = ocfs2_clusters_for_bytes(dir->i_sb,
572 si->value_len);
573 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
574 new_clusters);
575 *want_clusters += new_clusters;
576 }
Tiger Yang89c38bd2008-11-14 11:17:41 +0800577 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL &&
578 acl_len > OCFS2_XATTR_INLINE_SIZE) {
Tiger Yang0e445b62008-12-09 16:42:51 +0800579 /* for directory, it has DEFAULT and ACCESS two types of acls */
580 new_clusters = (S_ISDIR(mode) ? 2 : 1) *
581 ocfs2_clusters_for_bytes(dir->i_sb, acl_len);
582 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
583 new_clusters);
584 *want_clusters += new_clusters;
Tiger Yang89c38bd2008-11-14 11:17:41 +0800585 }
586
587 return ret;
588}
589
Tao Maf56654c2008-08-18 17:38:48 +0800590static int ocfs2_xattr_extend_allocation(struct inode *inode,
591 u32 clusters_to_add,
Joel Becker19b801f2008-12-09 14:36:50 -0800592 struct ocfs2_xattr_value_buf *vb,
Tao Ma78f30c32008-11-12 08:27:00 +0800593 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800594{
595 int status = 0;
Tao Ma85db90e2008-11-12 08:27:01 +0800596 handle_t *handle = ctxt->handle;
Tao Maf56654c2008-08-18 17:38:48 +0800597 enum ocfs2_alloc_restarted why;
598 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Becker19b801f2008-12-09 14:36:50 -0800599 u32 prev_clusters, logical_start = le32_to_cpu(vb->vb_xv->xr_clusters);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700600 struct ocfs2_extent_tree et;
Tao Maf56654c2008-08-18 17:38:48 +0800601
602 mlog(0, "(clusters_to_add for xattr= %u)\n", clusters_to_add);
603
Joel Becker19b801f2008-12-09 14:36:50 -0800604 ocfs2_init_xattr_value_extent_tree(&et, inode, vb);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700605
Joel Becker19b801f2008-12-09 14:36:50 -0800606 status = vb->vb_access(handle, inode, vb->vb_bh,
Joel Becker2a50a742008-12-09 14:24:33 -0800607 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Maf56654c2008-08-18 17:38:48 +0800608 if (status < 0) {
609 mlog_errno(status);
610 goto leave;
611 }
612
Joel Becker19b801f2008-12-09 14:36:50 -0800613 prev_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
Tao Maf56654c2008-08-18 17:38:48 +0800614 status = ocfs2_add_clusters_in_btree(osb,
615 inode,
616 &logical_start,
617 clusters_to_add,
618 0,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700619 &et,
Tao Maf56654c2008-08-18 17:38:48 +0800620 handle,
Tao Ma78f30c32008-11-12 08:27:00 +0800621 ctxt->data_ac,
622 ctxt->meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700623 &why);
Tao Ma85db90e2008-11-12 08:27:01 +0800624 if (status < 0) {
625 mlog_errno(status);
Tao Maf56654c2008-08-18 17:38:48 +0800626 goto leave;
627 }
628
Joel Becker19b801f2008-12-09 14:36:50 -0800629 status = ocfs2_journal_dirty(handle, vb->vb_bh);
Tao Maf56654c2008-08-18 17:38:48 +0800630 if (status < 0) {
631 mlog_errno(status);
632 goto leave;
633 }
634
Joel Becker19b801f2008-12-09 14:36:50 -0800635 clusters_to_add -= le32_to_cpu(vb->vb_xv->xr_clusters) - prev_clusters;
Tao Maf56654c2008-08-18 17:38:48 +0800636
Tao Ma85db90e2008-11-12 08:27:01 +0800637 /*
638 * We should have already allocated enough space before the transaction,
639 * so no need to restart.
640 */
641 BUG_ON(why != RESTART_NONE || clusters_to_add);
Tao Maf56654c2008-08-18 17:38:48 +0800642
643leave:
Tao Maf56654c2008-08-18 17:38:48 +0800644
645 return status;
646}
647
648static int __ocfs2_remove_xattr_range(struct inode *inode,
Joel Beckerd72cc722008-12-09 14:30:41 -0800649 struct ocfs2_xattr_value_buf *vb,
Tao Maf56654c2008-08-18 17:38:48 +0800650 u32 cpos, u32 phys_cpos, u32 len,
Tao Ma78f30c32008-11-12 08:27:00 +0800651 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800652{
653 int ret;
654 u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
Tao Ma85db90e2008-11-12 08:27:01 +0800655 handle_t *handle = ctxt->handle;
Joel Beckerf99b9b72008-08-20 19:36:33 -0700656 struct ocfs2_extent_tree et;
Tao Maf56654c2008-08-18 17:38:48 +0800657
Joel Beckerd72cc722008-12-09 14:30:41 -0800658 ocfs2_init_xattr_value_extent_tree(&et, inode, vb);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700659
Joel Beckerd72cc722008-12-09 14:30:41 -0800660 ret = vb->vb_access(handle, inode, vb->vb_bh,
661 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Maf56654c2008-08-18 17:38:48 +0800662 if (ret) {
663 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +0800664 goto out;
Tao Maf56654c2008-08-18 17:38:48 +0800665 }
666
Tao Ma78f30c32008-11-12 08:27:00 +0800667 ret = ocfs2_remove_extent(inode, &et, cpos, len, handle, ctxt->meta_ac,
668 &ctxt->dealloc);
Tao Maf56654c2008-08-18 17:38:48 +0800669 if (ret) {
670 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +0800671 goto out;
Tao Maf56654c2008-08-18 17:38:48 +0800672 }
673
Joel Beckerd72cc722008-12-09 14:30:41 -0800674 le32_add_cpu(&vb->vb_xv->xr_clusters, -len);
Tao Maf56654c2008-08-18 17:38:48 +0800675
Joel Beckerd72cc722008-12-09 14:30:41 -0800676 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tao Maf56654c2008-08-18 17:38:48 +0800677 if (ret) {
678 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +0800679 goto out;
Tao Maf56654c2008-08-18 17:38:48 +0800680 }
681
Tao Ma78f30c32008-11-12 08:27:00 +0800682 ret = ocfs2_cache_cluster_dealloc(&ctxt->dealloc, phys_blkno, len);
Tao Maf56654c2008-08-18 17:38:48 +0800683 if (ret)
684 mlog_errno(ret);
685
Tao Maf56654c2008-08-18 17:38:48 +0800686out:
Tao Maf56654c2008-08-18 17:38:48 +0800687 return ret;
688}
689
690static int ocfs2_xattr_shrink_size(struct inode *inode,
691 u32 old_clusters,
692 u32 new_clusters,
Joel Becker19b801f2008-12-09 14:36:50 -0800693 struct ocfs2_xattr_value_buf *vb,
Tao Ma78f30c32008-11-12 08:27:00 +0800694 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800695{
696 int ret = 0;
697 u32 trunc_len, cpos, phys_cpos, alloc_size;
698 u64 block;
Tao Maf56654c2008-08-18 17:38:48 +0800699
700 if (old_clusters <= new_clusters)
701 return 0;
702
703 cpos = new_clusters;
704 trunc_len = old_clusters - new_clusters;
705 while (trunc_len) {
706 ret = ocfs2_xattr_get_clusters(inode, cpos, &phys_cpos,
Joel Beckerd72cc722008-12-09 14:30:41 -0800707 &alloc_size,
Joel Becker19b801f2008-12-09 14:36:50 -0800708 &vb->vb_xv->xr_list);
Tao Maf56654c2008-08-18 17:38:48 +0800709 if (ret) {
710 mlog_errno(ret);
711 goto out;
712 }
713
714 if (alloc_size > trunc_len)
715 alloc_size = trunc_len;
716
Joel Becker19b801f2008-12-09 14:36:50 -0800717 ret = __ocfs2_remove_xattr_range(inode, vb, cpos,
Tao Maf56654c2008-08-18 17:38:48 +0800718 phys_cpos, alloc_size,
Tao Ma78f30c32008-11-12 08:27:00 +0800719 ctxt);
Tao Maf56654c2008-08-18 17:38:48 +0800720 if (ret) {
721 mlog_errno(ret);
722 goto out;
723 }
724
725 block = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
726 ocfs2_remove_xattr_clusters_from_cache(inode, block,
727 alloc_size);
728 cpos += alloc_size;
729 trunc_len -= alloc_size;
730 }
731
732out:
Tao Maf56654c2008-08-18 17:38:48 +0800733 return ret;
734}
735
736static int ocfs2_xattr_value_truncate(struct inode *inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -0800737 struct ocfs2_xattr_value_buf *vb,
Tao Ma78f30c32008-11-12 08:27:00 +0800738 int len,
739 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800740{
741 int ret;
742 u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb, len);
Joel Beckerb3e5d372008-12-09 15:01:04 -0800743 u32 old_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
Tao Maf56654c2008-08-18 17:38:48 +0800744
745 if (new_clusters == old_clusters)
746 return 0;
747
748 if (new_clusters > old_clusters)
749 ret = ocfs2_xattr_extend_allocation(inode,
750 new_clusters - old_clusters,
Joel Beckerb3e5d372008-12-09 15:01:04 -0800751 vb, ctxt);
Tao Maf56654c2008-08-18 17:38:48 +0800752 else
753 ret = ocfs2_xattr_shrink_size(inode,
754 old_clusters, new_clusters,
Joel Beckerb3e5d372008-12-09 15:01:04 -0800755 vb, ctxt);
Tao Maf56654c2008-08-18 17:38:48 +0800756
757 return ret;
758}
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800759
Tao Ma936b8832008-10-09 23:06:14 +0800760static int ocfs2_xattr_list_entry(char *buffer, size_t size,
761 size_t *result, const char *prefix,
762 const char *name, int name_len)
763{
764 char *p = buffer + *result;
765 int prefix_len = strlen(prefix);
766 int total_len = prefix_len + name_len + 1;
767
768 *result += total_len;
769
770 /* we are just looking for how big our buffer needs to be */
771 if (!size)
772 return 0;
773
774 if (*result > size)
775 return -ERANGE;
776
777 memcpy(p, prefix, prefix_len);
778 memcpy(p + prefix_len, name, name_len);
779 p[prefix_len + name_len] = '\0';
780
781 return 0;
782}
783
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800784static int ocfs2_xattr_list_entries(struct inode *inode,
785 struct ocfs2_xattr_header *header,
786 char *buffer, size_t buffer_size)
787{
Tao Ma936b8832008-10-09 23:06:14 +0800788 size_t result = 0;
789 int i, type, ret;
790 const char *prefix, *name;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800791
792 for (i = 0 ; i < le16_to_cpu(header->xh_count); i++) {
793 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
Tao Ma936b8832008-10-09 23:06:14 +0800794 type = ocfs2_xattr_get_type(entry);
795 prefix = ocfs2_xattr_prefix(type);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800796
Tao Ma936b8832008-10-09 23:06:14 +0800797 if (prefix) {
798 name = (const char *)header +
799 le16_to_cpu(entry->xe_name_offset);
800
801 ret = ocfs2_xattr_list_entry(buffer, buffer_size,
802 &result, prefix, name,
803 entry->xe_name_len);
804 if (ret)
805 return ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800806 }
807 }
808
Tao Ma936b8832008-10-09 23:06:14 +0800809 return result;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800810}
811
812static int ocfs2_xattr_ibody_list(struct inode *inode,
813 struct ocfs2_dinode *di,
814 char *buffer,
815 size_t buffer_size)
816{
817 struct ocfs2_xattr_header *header = NULL;
818 struct ocfs2_inode_info *oi = OCFS2_I(inode);
819 int ret = 0;
820
821 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
822 return ret;
823
824 header = (struct ocfs2_xattr_header *)
825 ((void *)di + inode->i_sb->s_blocksize -
826 le16_to_cpu(di->i_xattr_inline_size));
827
828 ret = ocfs2_xattr_list_entries(inode, header, buffer, buffer_size);
829
830 return ret;
831}
832
833static int ocfs2_xattr_block_list(struct inode *inode,
834 struct ocfs2_dinode *di,
835 char *buffer,
836 size_t buffer_size)
837{
838 struct buffer_head *blk_bh = NULL;
Tao Ma0c044f02008-08-18 17:38:50 +0800839 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800840 int ret = 0;
841
842 if (!di->i_xattr_loc)
843 return ret;
844
Joel Becker4ae1d692008-11-13 14:49:18 -0800845 ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
846 &blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800847 if (ret < 0) {
848 mlog_errno(ret);
849 return ret;
850 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800851
Tao Ma0c044f02008-08-18 17:38:50 +0800852 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Ma0c044f02008-08-18 17:38:50 +0800853 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
854 struct ocfs2_xattr_header *header = &xb->xb_attrs.xb_header;
855 ret = ocfs2_xattr_list_entries(inode, header,
856 buffer, buffer_size);
857 } else {
858 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root;
859 ret = ocfs2_xattr_tree_list_index_block(inode, xt,
860 buffer, buffer_size);
861 }
Joel Becker4ae1d692008-11-13 14:49:18 -0800862
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800863 brelse(blk_bh);
864
865 return ret;
866}
867
868ssize_t ocfs2_listxattr(struct dentry *dentry,
869 char *buffer,
870 size_t size)
871{
872 int ret = 0, i_ret = 0, b_ret = 0;
873 struct buffer_head *di_bh = NULL;
874 struct ocfs2_dinode *di = NULL;
875 struct ocfs2_inode_info *oi = OCFS2_I(dentry->d_inode);
876
Tiger Yang8154da32008-08-18 17:11:46 +0800877 if (!ocfs2_supports_xattr(OCFS2_SB(dentry->d_sb)))
878 return -EOPNOTSUPP;
879
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800880 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
881 return ret;
882
883 ret = ocfs2_inode_lock(dentry->d_inode, &di_bh, 0);
884 if (ret < 0) {
885 mlog_errno(ret);
886 return ret;
887 }
888
889 di = (struct ocfs2_dinode *)di_bh->b_data;
890
891 down_read(&oi->ip_xattr_sem);
892 i_ret = ocfs2_xattr_ibody_list(dentry->d_inode, di, buffer, size);
893 if (i_ret < 0)
894 b_ret = 0;
895 else {
896 if (buffer) {
897 buffer += i_ret;
898 size -= i_ret;
899 }
900 b_ret = ocfs2_xattr_block_list(dentry->d_inode, di,
901 buffer, size);
902 if (b_ret < 0)
903 i_ret = 0;
904 }
905 up_read(&oi->ip_xattr_sem);
906 ocfs2_inode_unlock(dentry->d_inode, 0);
907
908 brelse(di_bh);
909
910 return i_ret + b_ret;
911}
912
913static int ocfs2_xattr_find_entry(int name_index,
914 const char *name,
915 struct ocfs2_xattr_search *xs)
916{
917 struct ocfs2_xattr_entry *entry;
918 size_t name_len;
919 int i, cmp = 1;
920
921 if (name == NULL)
922 return -EINVAL;
923
924 name_len = strlen(name);
925 entry = xs->here;
926 for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
927 cmp = name_index - ocfs2_xattr_get_type(entry);
928 if (!cmp)
929 cmp = name_len - entry->xe_name_len;
930 if (!cmp)
931 cmp = memcmp(name, (xs->base +
932 le16_to_cpu(entry->xe_name_offset)),
933 name_len);
934 if (cmp == 0)
935 break;
936 entry += 1;
937 }
938 xs->here = entry;
939
940 return cmp ? -ENODATA : 0;
941}
942
943static int ocfs2_xattr_get_value_outside(struct inode *inode,
Tao Ma589dc262008-08-18 17:38:51 +0800944 struct ocfs2_xattr_value_root *xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800945 void *buffer,
946 size_t len)
947{
948 u32 cpos, p_cluster, num_clusters, bpc, clusters;
949 u64 blkno;
950 int i, ret = 0;
951 size_t cplen, blocksize;
952 struct buffer_head *bh = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800953 struct ocfs2_extent_list *el;
954
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800955 el = &xv->xr_list;
956 clusters = le32_to_cpu(xv->xr_clusters);
957 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
958 blocksize = inode->i_sb->s_blocksize;
959
960 cpos = 0;
961 while (cpos < clusters) {
962 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
963 &num_clusters, el);
964 if (ret) {
965 mlog_errno(ret);
966 goto out;
967 }
968
969 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
970 /* Copy ocfs2_xattr_value */
971 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
Joel Becker970e4932008-11-13 14:49:19 -0800972 ret = ocfs2_read_block(inode, blkno, &bh, NULL);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800973 if (ret) {
974 mlog_errno(ret);
975 goto out;
976 }
977
978 cplen = len >= blocksize ? blocksize : len;
979 memcpy(buffer, bh->b_data, cplen);
980 len -= cplen;
981 buffer += cplen;
982
983 brelse(bh);
984 bh = NULL;
985 if (len == 0)
986 break;
987 }
988 cpos += num_clusters;
989 }
990out:
991 return ret;
992}
993
994static int ocfs2_xattr_ibody_get(struct inode *inode,
995 int name_index,
996 const char *name,
997 void *buffer,
998 size_t buffer_size,
999 struct ocfs2_xattr_search *xs)
1000{
1001 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1002 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
Tao Ma589dc262008-08-18 17:38:51 +08001003 struct ocfs2_xattr_value_root *xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001004 size_t size;
1005 int ret = 0;
1006
1007 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
1008 return -ENODATA;
1009
1010 xs->end = (void *)di + inode->i_sb->s_blocksize;
1011 xs->header = (struct ocfs2_xattr_header *)
1012 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
1013 xs->base = (void *)xs->header;
1014 xs->here = xs->header->xh_entries;
1015
1016 ret = ocfs2_xattr_find_entry(name_index, name, xs);
1017 if (ret)
1018 return ret;
1019 size = le64_to_cpu(xs->here->xe_value_size);
1020 if (buffer) {
1021 if (size > buffer_size)
1022 return -ERANGE;
1023 if (ocfs2_xattr_is_local(xs->here)) {
1024 memcpy(buffer, (void *)xs->base +
1025 le16_to_cpu(xs->here->xe_name_offset) +
1026 OCFS2_XATTR_SIZE(xs->here->xe_name_len), size);
1027 } else {
Tao Ma589dc262008-08-18 17:38:51 +08001028 xv = (struct ocfs2_xattr_value_root *)
1029 (xs->base + le16_to_cpu(
1030 xs->here->xe_name_offset) +
1031 OCFS2_XATTR_SIZE(xs->here->xe_name_len));
1032 ret = ocfs2_xattr_get_value_outside(inode, xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001033 buffer, size);
1034 if (ret < 0) {
1035 mlog_errno(ret);
1036 return ret;
1037 }
1038 }
1039 }
1040
1041 return size;
1042}
1043
1044static int ocfs2_xattr_block_get(struct inode *inode,
1045 int name_index,
1046 const char *name,
1047 void *buffer,
1048 size_t buffer_size,
1049 struct ocfs2_xattr_search *xs)
1050{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001051 struct ocfs2_xattr_block *xb;
Tao Ma589dc262008-08-18 17:38:51 +08001052 struct ocfs2_xattr_value_root *xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001053 size_t size;
Tao Ma589dc262008-08-18 17:38:51 +08001054 int ret = -ENODATA, name_offset, name_len, block_off, i;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001055
Joel Beckerba937122008-10-24 19:13:20 -07001056 xs->bucket = ocfs2_xattr_bucket_new(inode);
1057 if (!xs->bucket) {
1058 ret = -ENOMEM;
1059 mlog_errno(ret);
1060 goto cleanup;
1061 }
Tao Ma589dc262008-08-18 17:38:51 +08001062
Joel Becker54f443f2008-10-20 18:43:07 -07001063 ret = ocfs2_xattr_block_find(inode, name_index, name, xs);
1064 if (ret) {
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001065 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001066 goto cleanup;
1067 }
1068
Tiger Yang6c1e1832008-11-02 19:04:21 +08001069 if (xs->not_found) {
1070 ret = -ENODATA;
1071 goto cleanup;
1072 }
1073
Joel Becker54f443f2008-10-20 18:43:07 -07001074 xb = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001075 size = le64_to_cpu(xs->here->xe_value_size);
1076 if (buffer) {
1077 ret = -ERANGE;
1078 if (size > buffer_size)
1079 goto cleanup;
Tao Ma589dc262008-08-18 17:38:51 +08001080
1081 name_offset = le16_to_cpu(xs->here->xe_name_offset);
1082 name_len = OCFS2_XATTR_SIZE(xs->here->xe_name_len);
1083 i = xs->here - xs->header->xh_entries;
1084
1085 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
1086 ret = ocfs2_xattr_bucket_get_name_value(inode,
Joel Beckerba937122008-10-24 19:13:20 -07001087 bucket_xh(xs->bucket),
Tao Ma589dc262008-08-18 17:38:51 +08001088 i,
1089 &block_off,
1090 &name_offset);
Joel Beckerba937122008-10-24 19:13:20 -07001091 xs->base = bucket_block(xs->bucket, block_off);
Tao Ma589dc262008-08-18 17:38:51 +08001092 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001093 if (ocfs2_xattr_is_local(xs->here)) {
1094 memcpy(buffer, (void *)xs->base +
Tao Ma589dc262008-08-18 17:38:51 +08001095 name_offset + name_len, size);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001096 } else {
Tao Ma589dc262008-08-18 17:38:51 +08001097 xv = (struct ocfs2_xattr_value_root *)
1098 (xs->base + name_offset + name_len);
1099 ret = ocfs2_xattr_get_value_outside(inode, xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001100 buffer, size);
1101 if (ret < 0) {
1102 mlog_errno(ret);
1103 goto cleanup;
1104 }
1105 }
1106 }
1107 ret = size;
1108cleanup:
Joel Beckerba937122008-10-24 19:13:20 -07001109 ocfs2_xattr_bucket_free(xs->bucket);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001110
Joel Becker54f443f2008-10-20 18:43:07 -07001111 brelse(xs->xattr_bh);
1112 xs->xattr_bh = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001113 return ret;
1114}
1115
Tiger Yang4e3e9d02008-11-14 11:16:53 +08001116int ocfs2_xattr_get_nolock(struct inode *inode,
1117 struct buffer_head *di_bh,
Tiger Yang0030e002008-10-23 16:33:33 +08001118 int name_index,
1119 const char *name,
1120 void *buffer,
1121 size_t buffer_size)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001122{
1123 int ret;
1124 struct ocfs2_dinode *di = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001125 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1126 struct ocfs2_xattr_search xis = {
1127 .not_found = -ENODATA,
1128 };
1129 struct ocfs2_xattr_search xbs = {
1130 .not_found = -ENODATA,
1131 };
1132
Tiger Yang8154da32008-08-18 17:11:46 +08001133 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1134 return -EOPNOTSUPP;
1135
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001136 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1137 ret = -ENODATA;
1138
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001139 xis.inode_bh = xbs.inode_bh = di_bh;
1140 di = (struct ocfs2_dinode *)di_bh->b_data;
1141
1142 down_read(&oi->ip_xattr_sem);
1143 ret = ocfs2_xattr_ibody_get(inode, name_index, name, buffer,
1144 buffer_size, &xis);
Tiger Yang6c1e1832008-11-02 19:04:21 +08001145 if (ret == -ENODATA && di->i_xattr_loc)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001146 ret = ocfs2_xattr_block_get(inode, name_index, name, buffer,
1147 buffer_size, &xbs);
1148 up_read(&oi->ip_xattr_sem);
Tiger Yang4e3e9d02008-11-14 11:16:53 +08001149
1150 return ret;
1151}
1152
1153/* ocfs2_xattr_get()
1154 *
1155 * Copy an extended attribute into the buffer provided.
1156 * Buffer is NULL to compute the size of buffer required.
1157 */
1158static int ocfs2_xattr_get(struct inode *inode,
1159 int name_index,
1160 const char *name,
1161 void *buffer,
1162 size_t buffer_size)
1163{
1164 int ret;
1165 struct buffer_head *di_bh = NULL;
1166
1167 ret = ocfs2_inode_lock(inode, &di_bh, 0);
1168 if (ret < 0) {
1169 mlog_errno(ret);
1170 return ret;
1171 }
1172 ret = ocfs2_xattr_get_nolock(inode, di_bh, name_index,
1173 name, buffer, buffer_size);
1174
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001175 ocfs2_inode_unlock(inode, 0);
1176
1177 brelse(di_bh);
1178
1179 return ret;
1180}
1181
1182static int __ocfs2_xattr_set_value_outside(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001183 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001184 struct ocfs2_xattr_value_root *xv,
1185 const void *value,
1186 int value_len)
1187{
Tao Ma71d548a2008-12-05 06:20:54 +08001188 int ret = 0, i, cp_len;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001189 u16 blocksize = inode->i_sb->s_blocksize;
1190 u32 p_cluster, num_clusters;
1191 u32 cpos = 0, bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
1192 u32 clusters = ocfs2_clusters_for_bytes(inode->i_sb, value_len);
1193 u64 blkno;
1194 struct buffer_head *bh = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001195
1196 BUG_ON(clusters > le32_to_cpu(xv->xr_clusters));
1197
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001198 while (cpos < clusters) {
1199 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
1200 &num_clusters, &xv->xr_list);
1201 if (ret) {
1202 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001203 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001204 }
1205
1206 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
1207
1208 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
Joel Becker970e4932008-11-13 14:49:19 -08001209 ret = ocfs2_read_block(inode, blkno, &bh, NULL);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001210 if (ret) {
1211 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001212 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001213 }
1214
1215 ret = ocfs2_journal_access(handle,
1216 inode,
1217 bh,
1218 OCFS2_JOURNAL_ACCESS_WRITE);
1219 if (ret < 0) {
1220 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001221 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001222 }
1223
1224 cp_len = value_len > blocksize ? blocksize : value_len;
1225 memcpy(bh->b_data, value, cp_len);
1226 value_len -= cp_len;
1227 value += cp_len;
1228 if (cp_len < blocksize)
1229 memset(bh->b_data + cp_len, 0,
1230 blocksize - cp_len);
1231
1232 ret = ocfs2_journal_dirty(handle, bh);
1233 if (ret < 0) {
1234 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001235 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001236 }
1237 brelse(bh);
1238 bh = NULL;
1239
1240 /*
1241 * XXX: do we need to empty all the following
1242 * blocks in this cluster?
1243 */
1244 if (!value_len)
1245 break;
1246 }
1247 cpos += num_clusters;
1248 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001249out:
1250 brelse(bh);
1251
1252 return ret;
1253}
1254
1255static int ocfs2_xattr_cleanup(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001256 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001257 struct ocfs2_xattr_info *xi,
1258 struct ocfs2_xattr_search *xs,
Joel Becker512620f2008-12-09 15:58:35 -08001259 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001260 size_t offs)
1261{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001262 int ret = 0;
1263 size_t name_len = strlen(xi->name);
1264 void *val = xs->base + offs;
1265 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1266
Joel Becker512620f2008-12-09 15:58:35 -08001267 ret = vb->vb_access(handle, inode, vb->vb_bh,
1268 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001269 if (ret) {
1270 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001271 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001272 }
1273 /* Decrease xattr count */
1274 le16_add_cpu(&xs->header->xh_count, -1);
1275 /* Remove the xattr entry and tree root which has already be set*/
1276 memset((void *)xs->here, 0, sizeof(struct ocfs2_xattr_entry));
1277 memset(val, 0, size);
1278
Joel Becker512620f2008-12-09 15:58:35 -08001279 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001280 if (ret < 0)
1281 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001282out:
1283 return ret;
1284}
1285
1286static int ocfs2_xattr_update_entry(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001287 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001288 struct ocfs2_xattr_info *xi,
1289 struct ocfs2_xattr_search *xs,
Joel Becker0c748e92008-12-09 15:46:15 -08001290 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001291 size_t offs)
1292{
Tao Ma85db90e2008-11-12 08:27:01 +08001293 int ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001294
Joel Becker0c748e92008-12-09 15:46:15 -08001295 ret = vb->vb_access(handle, inode, vb->vb_bh,
1296 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001297 if (ret) {
1298 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001299 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001300 }
1301
1302 xs->here->xe_name_offset = cpu_to_le16(offs);
1303 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1304 if (xi->value_len <= OCFS2_XATTR_INLINE_SIZE)
1305 ocfs2_xattr_set_local(xs->here, 1);
1306 else
1307 ocfs2_xattr_set_local(xs->here, 0);
1308 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1309
Joel Becker0c748e92008-12-09 15:46:15 -08001310 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001311 if (ret < 0)
1312 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001313out:
1314 return ret;
1315}
1316
1317/*
1318 * ocfs2_xattr_set_value_outside()
1319 *
1320 * Set large size value in B tree.
1321 */
1322static int ocfs2_xattr_set_value_outside(struct inode *inode,
1323 struct ocfs2_xattr_info *xi,
1324 struct ocfs2_xattr_search *xs,
Tao Ma78f30c32008-11-12 08:27:00 +08001325 struct ocfs2_xattr_set_ctxt *ctxt,
Joel Becker512620f2008-12-09 15:58:35 -08001326 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001327 size_t offs)
1328{
1329 size_t name_len = strlen(xi->name);
1330 void *val = xs->base + offs;
1331 struct ocfs2_xattr_value_root *xv = NULL;
1332 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1333 int ret = 0;
1334
1335 memset(val, 0, size);
1336 memcpy(val, xi->name, name_len);
1337 xv = (struct ocfs2_xattr_value_root *)
1338 (val + OCFS2_XATTR_SIZE(name_len));
1339 xv->xr_clusters = 0;
1340 xv->xr_last_eb_blk = 0;
1341 xv->xr_list.l_tree_depth = 0;
1342 xv->xr_list.l_count = cpu_to_le16(1);
1343 xv->xr_list.l_next_free_rec = 0;
Joel Becker512620f2008-12-09 15:58:35 -08001344 vb->vb_xv = xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001345
Joel Becker512620f2008-12-09 15:58:35 -08001346 ret = ocfs2_xattr_value_truncate(inode, vb, xi->value_len, ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001347 if (ret < 0) {
1348 mlog_errno(ret);
1349 return ret;
1350 }
Joel Becker512620f2008-12-09 15:58:35 -08001351 ret = ocfs2_xattr_update_entry(inode, ctxt->handle, xi, xs, vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001352 if (ret < 0) {
1353 mlog_errno(ret);
1354 return ret;
1355 }
Joel Becker512620f2008-12-09 15:58:35 -08001356 ret = __ocfs2_xattr_set_value_outside(inode, ctxt->handle, vb->vb_xv,
Tao Ma85db90e2008-11-12 08:27:01 +08001357 xi->value, xi->value_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001358 if (ret < 0)
1359 mlog_errno(ret);
1360
1361 return ret;
1362}
1363
1364/*
1365 * ocfs2_xattr_set_entry_local()
1366 *
1367 * Set, replace or remove extended attribute in local.
1368 */
1369static void ocfs2_xattr_set_entry_local(struct inode *inode,
1370 struct ocfs2_xattr_info *xi,
1371 struct ocfs2_xattr_search *xs,
1372 struct ocfs2_xattr_entry *last,
1373 size_t min_offs)
1374{
1375 size_t name_len = strlen(xi->name);
1376 int i;
1377
1378 if (xi->value && xs->not_found) {
1379 /* Insert the new xattr entry. */
1380 le16_add_cpu(&xs->header->xh_count, 1);
1381 ocfs2_xattr_set_type(last, xi->name_index);
1382 ocfs2_xattr_set_local(last, 1);
1383 last->xe_name_len = name_len;
1384 } else {
1385 void *first_val;
1386 void *val;
1387 size_t offs, size;
1388
1389 first_val = xs->base + min_offs;
1390 offs = le16_to_cpu(xs->here->xe_name_offset);
1391 val = xs->base + offs;
1392
1393 if (le64_to_cpu(xs->here->xe_value_size) >
1394 OCFS2_XATTR_INLINE_SIZE)
1395 size = OCFS2_XATTR_SIZE(name_len) +
1396 OCFS2_XATTR_ROOT_SIZE;
1397 else
1398 size = OCFS2_XATTR_SIZE(name_len) +
1399 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1400
1401 if (xi->value && size == OCFS2_XATTR_SIZE(name_len) +
1402 OCFS2_XATTR_SIZE(xi->value_len)) {
1403 /* The old and the new value have the
1404 same size. Just replace the value. */
1405 ocfs2_xattr_set_local(xs->here, 1);
1406 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1407 /* Clear value bytes. */
1408 memset(val + OCFS2_XATTR_SIZE(name_len),
1409 0,
1410 OCFS2_XATTR_SIZE(xi->value_len));
1411 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1412 xi->value,
1413 xi->value_len);
1414 return;
1415 }
1416 /* Remove the old name+value. */
1417 memmove(first_val + size, first_val, val - first_val);
1418 memset(first_val, 0, size);
1419 xs->here->xe_name_hash = 0;
1420 xs->here->xe_name_offset = 0;
1421 ocfs2_xattr_set_local(xs->here, 1);
1422 xs->here->xe_value_size = 0;
1423
1424 min_offs += size;
1425
1426 /* Adjust all value offsets. */
1427 last = xs->header->xh_entries;
1428 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1429 size_t o = le16_to_cpu(last->xe_name_offset);
1430
1431 if (o < offs)
1432 last->xe_name_offset = cpu_to_le16(o + size);
1433 last += 1;
1434 }
1435
1436 if (!xi->value) {
1437 /* Remove the old entry. */
1438 last -= 1;
1439 memmove(xs->here, xs->here + 1,
1440 (void *)last - (void *)xs->here);
1441 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
1442 le16_add_cpu(&xs->header->xh_count, -1);
1443 }
1444 }
1445 if (xi->value) {
1446 /* Insert the new name+value. */
1447 size_t size = OCFS2_XATTR_SIZE(name_len) +
1448 OCFS2_XATTR_SIZE(xi->value_len);
1449 void *val = xs->base + min_offs - size;
1450
1451 xs->here->xe_name_offset = cpu_to_le16(min_offs - size);
1452 memset(val, 0, size);
1453 memcpy(val, xi->name, name_len);
1454 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1455 xi->value,
1456 xi->value_len);
1457 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1458 ocfs2_xattr_set_local(xs->here, 1);
1459 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1460 }
1461
1462 return;
1463}
1464
1465/*
1466 * ocfs2_xattr_set_entry()
1467 *
1468 * Set extended attribute entry into inode or block.
1469 *
1470 * If extended attribute value size > OCFS2_XATTR_INLINE_SIZE,
1471 * We first insert tree root(ocfs2_xattr_value_root) with set_entry_local(),
1472 * then set value in B tree with set_value_outside().
1473 */
1474static int ocfs2_xattr_set_entry(struct inode *inode,
1475 struct ocfs2_xattr_info *xi,
1476 struct ocfs2_xattr_search *xs,
Tao Ma78f30c32008-11-12 08:27:00 +08001477 struct ocfs2_xattr_set_ctxt *ctxt,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001478 int flag)
1479{
1480 struct ocfs2_xattr_entry *last;
1481 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1482 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1483 size_t min_offs = xs->end - xs->base, name_len = strlen(xi->name);
1484 size_t size_l = 0;
Tao Ma85db90e2008-11-12 08:27:01 +08001485 handle_t *handle = ctxt->handle;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001486 int free, i, ret;
1487 struct ocfs2_xattr_info xi_l = {
1488 .name_index = xi->name_index,
1489 .name = xi->name,
1490 .value = xi->value,
1491 .value_len = xi->value_len,
1492 };
Joel Becker512620f2008-12-09 15:58:35 -08001493 struct ocfs2_xattr_value_buf vb = {
1494 .vb_bh = xs->xattr_bh,
1495 .vb_access = ocfs2_journal_access_di,
1496 };
1497
1498 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1499 BUG_ON(xs->xattr_bh == xs->inode_bh);
1500 vb.vb_access = ocfs2_journal_access_xb;
1501 } else
1502 BUG_ON(xs->xattr_bh != xs->inode_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001503
1504 /* Compute min_offs, last and free space. */
1505 last = xs->header->xh_entries;
1506
1507 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1508 size_t offs = le16_to_cpu(last->xe_name_offset);
1509 if (offs < min_offs)
1510 min_offs = offs;
1511 last += 1;
1512 }
1513
1514 free = min_offs - ((void *)last - xs->base) - sizeof(__u32);
1515 if (free < 0)
Joel Beckerb37c4d82008-10-20 18:24:03 -07001516 return -EIO;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001517
1518 if (!xs->not_found) {
1519 size_t size = 0;
1520 if (ocfs2_xattr_is_local(xs->here))
1521 size = OCFS2_XATTR_SIZE(name_len) +
1522 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1523 else
1524 size = OCFS2_XATTR_SIZE(name_len) +
1525 OCFS2_XATTR_ROOT_SIZE;
1526 free += (size + sizeof(struct ocfs2_xattr_entry));
1527 }
1528 /* Check free space in inode or block */
1529 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1530 if (free < sizeof(struct ocfs2_xattr_entry) +
1531 OCFS2_XATTR_SIZE(name_len) +
1532 OCFS2_XATTR_ROOT_SIZE) {
1533 ret = -ENOSPC;
1534 goto out;
1535 }
1536 size_l = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1537 xi_l.value = (void *)&def_xv;
1538 xi_l.value_len = OCFS2_XATTR_ROOT_SIZE;
1539 } else if (xi->value) {
1540 if (free < sizeof(struct ocfs2_xattr_entry) +
1541 OCFS2_XATTR_SIZE(name_len) +
1542 OCFS2_XATTR_SIZE(xi->value_len)) {
1543 ret = -ENOSPC;
1544 goto out;
1545 }
1546 }
1547
1548 if (!xs->not_found) {
1549 /* For existing extended attribute */
1550 size_t size = OCFS2_XATTR_SIZE(name_len) +
1551 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1552 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
1553 void *val = xs->base + offs;
1554
1555 if (ocfs2_xattr_is_local(xs->here) && size == size_l) {
1556 /* Replace existing local xattr with tree root */
1557 ret = ocfs2_xattr_set_value_outside(inode, xi, xs,
Joel Becker512620f2008-12-09 15:58:35 -08001558 ctxt, &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001559 if (ret < 0)
1560 mlog_errno(ret);
1561 goto out;
1562 } else if (!ocfs2_xattr_is_local(xs->here)) {
1563 /* For existing xattr which has value outside */
Joel Becker512620f2008-12-09 15:58:35 -08001564 vb.vb_xv = (struct ocfs2_xattr_value_root *)
1565 (val + OCFS2_XATTR_SIZE(name_len));
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001566
1567 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1568 /*
1569 * If new value need set outside also,
1570 * first truncate old value to new value,
1571 * then set new value with set_value_outside().
1572 */
1573 ret = ocfs2_xattr_value_truncate(inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001574 &vb,
Tao Ma78f30c32008-11-12 08:27:00 +08001575 xi->value_len,
1576 ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001577 if (ret < 0) {
1578 mlog_errno(ret);
1579 goto out;
1580 }
1581
Tao Ma85db90e2008-11-12 08:27:01 +08001582 ret = ocfs2_xattr_update_entry(inode,
1583 handle,
1584 xi,
1585 xs,
Joel Becker0c748e92008-12-09 15:46:15 -08001586 &vb,
Tao Ma85db90e2008-11-12 08:27:01 +08001587 offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001588 if (ret < 0) {
1589 mlog_errno(ret);
1590 goto out;
1591 }
1592
Tao Ma85db90e2008-11-12 08:27:01 +08001593 ret = __ocfs2_xattr_set_value_outside(inode,
1594 handle,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001595 vb.vb_xv,
Tao Ma85db90e2008-11-12 08:27:01 +08001596 xi->value,
1597 xi->value_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001598 if (ret < 0)
1599 mlog_errno(ret);
1600 goto out;
1601 } else {
1602 /*
1603 * If new value need set in local,
1604 * just trucate old value to zero.
1605 */
1606 ret = ocfs2_xattr_value_truncate(inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001607 &vb,
Tao Ma85db90e2008-11-12 08:27:01 +08001608 0,
1609 ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001610 if (ret < 0)
1611 mlog_errno(ret);
1612 }
1613 }
1614 }
1615
Joel Becker512620f2008-12-09 15:58:35 -08001616 ret = ocfs2_journal_access_di(handle, inode, xs->inode_bh,
1617 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001618 if (ret) {
1619 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001620 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001621 }
1622
1623 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
Joel Becker512620f2008-12-09 15:58:35 -08001624 ret = vb.vb_access(handle, inode, vb.vb_bh,
1625 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001626 if (ret) {
1627 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001628 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001629 }
1630 }
1631
1632 /*
1633 * Set value in local, include set tree root in local.
1634 * This is the first step for value size >INLINE_SIZE.
1635 */
1636 ocfs2_xattr_set_entry_local(inode, &xi_l, xs, last, min_offs);
1637
1638 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1639 ret = ocfs2_journal_dirty(handle, xs->xattr_bh);
1640 if (ret < 0) {
1641 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001642 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001643 }
1644 }
1645
1646 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) &&
1647 (flag & OCFS2_INLINE_XATTR_FL)) {
1648 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1649 unsigned int xattrsize = osb->s_xattr_inline_size;
1650
1651 /*
1652 * Adjust extent record count or inline data size
1653 * to reserve space for extended attribute.
1654 */
1655 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1656 struct ocfs2_inline_data *idata = &di->id2.i_data;
1657 le16_add_cpu(&idata->id_count, -xattrsize);
1658 } else if (!(ocfs2_inode_is_fast_symlink(inode))) {
1659 struct ocfs2_extent_list *el = &di->id2.i_list;
1660 le16_add_cpu(&el->l_count, -(xattrsize /
1661 sizeof(struct ocfs2_extent_rec)));
1662 }
1663 di->i_xattr_inline_size = cpu_to_le16(xattrsize);
1664 }
1665 /* Update xattr flag */
1666 spin_lock(&oi->ip_lock);
1667 oi->ip_dyn_features |= flag;
1668 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1669 spin_unlock(&oi->ip_lock);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001670
1671 ret = ocfs2_journal_dirty(handle, xs->inode_bh);
1672 if (ret < 0)
1673 mlog_errno(ret);
1674
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001675 if (!ret && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1676 /*
1677 * Set value outside in B tree.
1678 * This is the second step for value size > INLINE_SIZE.
1679 */
1680 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
Joel Becker512620f2008-12-09 15:58:35 -08001681 ret = ocfs2_xattr_set_value_outside(inode, xi, xs, ctxt,
1682 &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001683 if (ret < 0) {
1684 int ret2;
1685
1686 mlog_errno(ret);
1687 /*
1688 * If set value outside failed, we have to clean
1689 * the junk tree root we have already set in local.
1690 */
Tao Ma85db90e2008-11-12 08:27:01 +08001691 ret2 = ocfs2_xattr_cleanup(inode, ctxt->handle,
Joel Becker512620f2008-12-09 15:58:35 -08001692 xi, xs, &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001693 if (ret2 < 0)
1694 mlog_errno(ret2);
1695 }
1696 }
1697out:
1698 return ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001699}
1700
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001701static int ocfs2_remove_value_outside(struct inode*inode,
Joel Becker43119012008-12-09 16:24:43 -08001702 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001703 struct ocfs2_xattr_header *header)
1704{
1705 int ret = 0, i;
Tao Ma78f30c32008-11-12 08:27:00 +08001706 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1707 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
1708
1709 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001710
Jan Karaa90714c2008-10-09 19:38:40 +02001711 ctxt.handle = ocfs2_start_trans(osb,
1712 ocfs2_remove_extent_credits(osb->sb));
Tao Ma85db90e2008-11-12 08:27:01 +08001713 if (IS_ERR(ctxt.handle)) {
1714 ret = PTR_ERR(ctxt.handle);
1715 mlog_errno(ret);
1716 goto out;
1717 }
1718
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001719 for (i = 0; i < le16_to_cpu(header->xh_count); i++) {
1720 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
1721
1722 if (!ocfs2_xattr_is_local(entry)) {
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001723 void *val;
1724
1725 val = (void *)header +
1726 le16_to_cpu(entry->xe_name_offset);
Joel Becker43119012008-12-09 16:24:43 -08001727 vb->vb_xv = (struct ocfs2_xattr_value_root *)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001728 (val + OCFS2_XATTR_SIZE(entry->xe_name_len));
Joel Becker43119012008-12-09 16:24:43 -08001729 ret = ocfs2_xattr_value_truncate(inode, vb, 0, &ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001730 if (ret < 0) {
1731 mlog_errno(ret);
Tao Ma78f30c32008-11-12 08:27:00 +08001732 break;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001733 }
1734 }
1735 }
1736
Tao Ma85db90e2008-11-12 08:27:01 +08001737 ocfs2_commit_trans(osb, ctxt.handle);
Tao Ma78f30c32008-11-12 08:27:00 +08001738 ocfs2_schedule_truncate_log_flush(osb, 1);
1739 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tao Ma85db90e2008-11-12 08:27:01 +08001740out:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001741 return ret;
1742}
1743
1744static int ocfs2_xattr_ibody_remove(struct inode *inode,
1745 struct buffer_head *di_bh)
1746{
1747
1748 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1749 struct ocfs2_xattr_header *header;
1750 int ret;
Joel Becker43119012008-12-09 16:24:43 -08001751 struct ocfs2_xattr_value_buf vb = {
1752 .vb_bh = di_bh,
1753 .vb_access = ocfs2_journal_access_di,
1754 };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001755
1756 header = (struct ocfs2_xattr_header *)
1757 ((void *)di + inode->i_sb->s_blocksize -
1758 le16_to_cpu(di->i_xattr_inline_size));
1759
Joel Becker43119012008-12-09 16:24:43 -08001760 ret = ocfs2_remove_value_outside(inode, &vb, header);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001761
1762 return ret;
1763}
1764
1765static int ocfs2_xattr_block_remove(struct inode *inode,
1766 struct buffer_head *blk_bh)
1767{
1768 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001769 int ret = 0;
Joel Becker43119012008-12-09 16:24:43 -08001770 struct ocfs2_xattr_value_buf vb = {
1771 .vb_bh = blk_bh,
1772 .vb_access = ocfs2_journal_access_xb,
1773 };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001774
1775 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Maa3944252008-08-18 17:38:54 +08001776 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
1777 struct ocfs2_xattr_header *header = &(xb->xb_attrs.xb_header);
Joel Becker43119012008-12-09 16:24:43 -08001778 ret = ocfs2_remove_value_outside(inode, &vb, header);
Tao Maa3944252008-08-18 17:38:54 +08001779 } else
1780 ret = ocfs2_delete_xattr_index_block(inode, blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001781
1782 return ret;
1783}
1784
Tao Ma08413892008-08-29 09:00:19 +08001785static int ocfs2_xattr_free_block(struct inode *inode,
1786 u64 block)
1787{
1788 struct inode *xb_alloc_inode;
1789 struct buffer_head *xb_alloc_bh = NULL;
1790 struct buffer_head *blk_bh = NULL;
1791 struct ocfs2_xattr_block *xb;
1792 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1793 handle_t *handle;
1794 int ret = 0;
1795 u64 blk, bg_blkno;
1796 u16 bit;
1797
Joel Becker4ae1d692008-11-13 14:49:18 -08001798 ret = ocfs2_read_xattr_block(inode, block, &blk_bh);
Tao Ma08413892008-08-29 09:00:19 +08001799 if (ret < 0) {
1800 mlog_errno(ret);
1801 goto out;
1802 }
1803
Tao Ma08413892008-08-29 09:00:19 +08001804 ret = ocfs2_xattr_block_remove(inode, blk_bh);
1805 if (ret < 0) {
1806 mlog_errno(ret);
1807 goto out;
1808 }
1809
Joel Becker4ae1d692008-11-13 14:49:18 -08001810 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Ma08413892008-08-29 09:00:19 +08001811 blk = le64_to_cpu(xb->xb_blkno);
1812 bit = le16_to_cpu(xb->xb_suballoc_bit);
1813 bg_blkno = ocfs2_which_suballoc_group(blk, bit);
1814
1815 xb_alloc_inode = ocfs2_get_system_file_inode(osb,
1816 EXTENT_ALLOC_SYSTEM_INODE,
1817 le16_to_cpu(xb->xb_suballoc_slot));
1818 if (!xb_alloc_inode) {
1819 ret = -ENOMEM;
1820 mlog_errno(ret);
1821 goto out;
1822 }
1823 mutex_lock(&xb_alloc_inode->i_mutex);
1824
1825 ret = ocfs2_inode_lock(xb_alloc_inode, &xb_alloc_bh, 1);
1826 if (ret < 0) {
1827 mlog_errno(ret);
1828 goto out_mutex;
1829 }
1830
1831 handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE);
1832 if (IS_ERR(handle)) {
1833 ret = PTR_ERR(handle);
1834 mlog_errno(ret);
1835 goto out_unlock;
1836 }
1837
1838 ret = ocfs2_free_suballoc_bits(handle, xb_alloc_inode, xb_alloc_bh,
1839 bit, bg_blkno, 1);
1840 if (ret < 0)
1841 mlog_errno(ret);
1842
1843 ocfs2_commit_trans(osb, handle);
1844out_unlock:
1845 ocfs2_inode_unlock(xb_alloc_inode, 1);
1846 brelse(xb_alloc_bh);
1847out_mutex:
1848 mutex_unlock(&xb_alloc_inode->i_mutex);
1849 iput(xb_alloc_inode);
1850out:
1851 brelse(blk_bh);
1852 return ret;
1853}
1854
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001855/*
1856 * ocfs2_xattr_remove()
1857 *
1858 * Free extended attribute resources associated with this inode.
1859 */
1860int ocfs2_xattr_remove(struct inode *inode, struct buffer_head *di_bh)
1861{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001862 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1863 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1864 handle_t *handle;
1865 int ret;
1866
Tiger Yang8154da32008-08-18 17:11:46 +08001867 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1868 return 0;
1869
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001870 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1871 return 0;
1872
1873 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
1874 ret = ocfs2_xattr_ibody_remove(inode, di_bh);
1875 if (ret < 0) {
1876 mlog_errno(ret);
1877 goto out;
1878 }
1879 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001880
Tao Ma08413892008-08-29 09:00:19 +08001881 if (di->i_xattr_loc) {
1882 ret = ocfs2_xattr_free_block(inode,
1883 le64_to_cpu(di->i_xattr_loc));
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001884 if (ret < 0) {
1885 mlog_errno(ret);
1886 goto out;
1887 }
1888 }
1889
1890 handle = ocfs2_start_trans((OCFS2_SB(inode->i_sb)),
1891 OCFS2_INODE_UPDATE_CREDITS);
1892 if (IS_ERR(handle)) {
1893 ret = PTR_ERR(handle);
1894 mlog_errno(ret);
1895 goto out;
1896 }
Joel Becker84008972008-12-09 16:11:49 -08001897 ret = ocfs2_journal_access_di(handle, inode, di_bh,
1898 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001899 if (ret) {
1900 mlog_errno(ret);
1901 goto out_commit;
1902 }
1903
Tao Ma08413892008-08-29 09:00:19 +08001904 di->i_xattr_loc = 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001905
1906 spin_lock(&oi->ip_lock);
1907 oi->ip_dyn_features &= ~(OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL);
1908 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1909 spin_unlock(&oi->ip_lock);
1910
1911 ret = ocfs2_journal_dirty(handle, di_bh);
1912 if (ret < 0)
1913 mlog_errno(ret);
1914out_commit:
1915 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
1916out:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001917 return ret;
1918}
1919
1920static int ocfs2_xattr_has_space_inline(struct inode *inode,
1921 struct ocfs2_dinode *di)
1922{
1923 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1924 unsigned int xattrsize = OCFS2_SB(inode->i_sb)->s_xattr_inline_size;
1925 int free;
1926
1927 if (xattrsize < OCFS2_MIN_XATTR_INLINE_SIZE)
1928 return 0;
1929
1930 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1931 struct ocfs2_inline_data *idata = &di->id2.i_data;
1932 free = le16_to_cpu(idata->id_count) - le64_to_cpu(di->i_size);
1933 } else if (ocfs2_inode_is_fast_symlink(inode)) {
1934 free = ocfs2_fast_symlink_chars(inode->i_sb) -
1935 le64_to_cpu(di->i_size);
1936 } else {
1937 struct ocfs2_extent_list *el = &di->id2.i_list;
1938 free = (le16_to_cpu(el->l_count) -
1939 le16_to_cpu(el->l_next_free_rec)) *
1940 sizeof(struct ocfs2_extent_rec);
1941 }
1942 if (free >= xattrsize)
1943 return 1;
1944
1945 return 0;
1946}
1947
1948/*
1949 * ocfs2_xattr_ibody_find()
1950 *
1951 * Find extended attribute in inode block and
1952 * fill search info into struct ocfs2_xattr_search.
1953 */
1954static int ocfs2_xattr_ibody_find(struct inode *inode,
1955 int name_index,
1956 const char *name,
1957 struct ocfs2_xattr_search *xs)
1958{
1959 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1960 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1961 int ret;
1962 int has_space = 0;
1963
1964 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
1965 return 0;
1966
1967 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
1968 down_read(&oi->ip_alloc_sem);
1969 has_space = ocfs2_xattr_has_space_inline(inode, di);
1970 up_read(&oi->ip_alloc_sem);
1971 if (!has_space)
1972 return 0;
1973 }
1974
1975 xs->xattr_bh = xs->inode_bh;
1976 xs->end = (void *)di + inode->i_sb->s_blocksize;
1977 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)
1978 xs->header = (struct ocfs2_xattr_header *)
1979 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
1980 else
1981 xs->header = (struct ocfs2_xattr_header *)
1982 (xs->end - OCFS2_SB(inode->i_sb)->s_xattr_inline_size);
1983 xs->base = (void *)xs->header;
1984 xs->here = xs->header->xh_entries;
1985
1986 /* Find the named attribute. */
1987 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
1988 ret = ocfs2_xattr_find_entry(name_index, name, xs);
1989 if (ret && ret != -ENODATA)
1990 return ret;
1991 xs->not_found = ret;
1992 }
1993
1994 return 0;
1995}
1996
1997/*
1998 * ocfs2_xattr_ibody_set()
1999 *
2000 * Set, replace or remove an extended attribute into inode block.
2001 *
2002 */
2003static int ocfs2_xattr_ibody_set(struct inode *inode,
2004 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08002005 struct ocfs2_xattr_search *xs,
2006 struct ocfs2_xattr_set_ctxt *ctxt)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002007{
2008 struct ocfs2_inode_info *oi = OCFS2_I(inode);
2009 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2010 int ret;
2011
2012 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
2013 return -ENOSPC;
2014
2015 down_write(&oi->ip_alloc_sem);
2016 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
2017 if (!ocfs2_xattr_has_space_inline(inode, di)) {
2018 ret = -ENOSPC;
2019 goto out;
2020 }
2021 }
2022
Tao Ma78f30c32008-11-12 08:27:00 +08002023 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002024 (OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL));
2025out:
2026 up_write(&oi->ip_alloc_sem);
2027
2028 return ret;
2029}
2030
2031/*
2032 * ocfs2_xattr_block_find()
2033 *
2034 * Find extended attribute in external block and
2035 * fill search info into struct ocfs2_xattr_search.
2036 */
2037static int ocfs2_xattr_block_find(struct inode *inode,
2038 int name_index,
2039 const char *name,
2040 struct ocfs2_xattr_search *xs)
2041{
2042 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2043 struct buffer_head *blk_bh = NULL;
Tao Ma589dc262008-08-18 17:38:51 +08002044 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002045 int ret = 0;
2046
2047 if (!di->i_xattr_loc)
2048 return ret;
2049
Joel Becker4ae1d692008-11-13 14:49:18 -08002050 ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
2051 &blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002052 if (ret < 0) {
2053 mlog_errno(ret);
2054 return ret;
2055 }
Joel Beckerf6087fb2008-10-20 18:20:43 -07002056
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002057 xs->xattr_bh = blk_bh;
Joel Becker4ae1d692008-11-13 14:49:18 -08002058 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002059
Tao Ma589dc262008-08-18 17:38:51 +08002060 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
2061 xs->header = &xb->xb_attrs.xb_header;
2062 xs->base = (void *)xs->header;
2063 xs->end = (void *)(blk_bh->b_data) + blk_bh->b_size;
2064 xs->here = xs->header->xh_entries;
2065
2066 ret = ocfs2_xattr_find_entry(name_index, name, xs);
2067 } else
2068 ret = ocfs2_xattr_index_block_find(inode, blk_bh,
2069 name_index,
2070 name, xs);
2071
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002072 if (ret && ret != -ENODATA) {
2073 xs->xattr_bh = NULL;
2074 goto cleanup;
2075 }
2076 xs->not_found = ret;
2077 return 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002078cleanup:
2079 brelse(blk_bh);
2080
2081 return ret;
2082}
2083
2084/*
2085 * ocfs2_xattr_block_set()
2086 *
2087 * Set, replace or remove an extended attribute into external block.
2088 *
2089 */
2090static int ocfs2_xattr_block_set(struct inode *inode,
2091 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08002092 struct ocfs2_xattr_search *xs,
2093 struct ocfs2_xattr_set_ctxt *ctxt)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002094{
2095 struct buffer_head *new_bh = NULL;
2096 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2097 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
Tao Ma85db90e2008-11-12 08:27:01 +08002098 handle_t *handle = ctxt->handle;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002099 struct ocfs2_xattr_block *xblk = NULL;
2100 u16 suballoc_bit_start;
2101 u32 num_got;
2102 u64 first_blkno;
2103 int ret;
2104
2105 if (!xs->xattr_bh) {
Joel Becker84008972008-12-09 16:11:49 -08002106 ret = ocfs2_journal_access_di(handle, inode, xs->inode_bh,
2107 OCFS2_JOURNAL_ACCESS_CREATE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002108 if (ret < 0) {
2109 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002110 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002111 }
2112
Tao Ma78f30c32008-11-12 08:27:00 +08002113 ret = ocfs2_claim_metadata(osb, handle, ctxt->meta_ac, 1,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002114 &suballoc_bit_start, &num_got,
2115 &first_blkno);
2116 if (ret < 0) {
2117 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002118 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002119 }
2120
2121 new_bh = sb_getblk(inode->i_sb, first_blkno);
2122 ocfs2_set_new_buffer_uptodate(inode, new_bh);
2123
Joel Becker84008972008-12-09 16:11:49 -08002124 ret = ocfs2_journal_access_xb(handle, inode, new_bh,
2125 OCFS2_JOURNAL_ACCESS_CREATE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002126 if (ret < 0) {
2127 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002128 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002129 }
2130
2131 /* Initialize ocfs2_xattr_block */
2132 xs->xattr_bh = new_bh;
2133 xblk = (struct ocfs2_xattr_block *)new_bh->b_data;
2134 memset(xblk, 0, inode->i_sb->s_blocksize);
2135 strcpy((void *)xblk, OCFS2_XATTR_BLOCK_SIGNATURE);
2136 xblk->xb_suballoc_slot = cpu_to_le16(osb->slot_num);
2137 xblk->xb_suballoc_bit = cpu_to_le16(suballoc_bit_start);
2138 xblk->xb_fs_generation = cpu_to_le32(osb->fs_generation);
2139 xblk->xb_blkno = cpu_to_le64(first_blkno);
2140
2141 xs->header = &xblk->xb_attrs.xb_header;
2142 xs->base = (void *)xs->header;
2143 xs->end = (void *)xblk + inode->i_sb->s_blocksize;
2144 xs->here = xs->header->xh_entries;
2145
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002146 ret = ocfs2_journal_dirty(handle, new_bh);
2147 if (ret < 0) {
2148 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002149 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002150 }
2151 di->i_xattr_loc = cpu_to_le64(first_blkno);
Tao Ma85db90e2008-11-12 08:27:01 +08002152 ocfs2_journal_dirty(handle, xs->inode_bh);
Tao Ma01225592008-08-18 17:38:53 +08002153 } else
2154 xblk = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
2155
2156 if (!(le16_to_cpu(xblk->xb_flags) & OCFS2_XATTR_INDEXED)) {
2157 /* Set extended attribute into external block */
Tao Ma78f30c32008-11-12 08:27:00 +08002158 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
2159 OCFS2_HAS_XATTR_FL);
Tao Ma01225592008-08-18 17:38:53 +08002160 if (!ret || ret != -ENOSPC)
2161 goto end;
2162
Tao Ma78f30c32008-11-12 08:27:00 +08002163 ret = ocfs2_xattr_create_index_block(inode, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08002164 if (ret)
2165 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002166 }
2167
Tao Ma78f30c32008-11-12 08:27:00 +08002168 ret = ocfs2_xattr_set_entry_index_block(inode, xi, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08002169
2170end:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002171
2172 return ret;
2173}
2174
Tao Ma78f30c32008-11-12 08:27:00 +08002175/* Check whether the new xattr can be inserted into the inode. */
2176static int ocfs2_xattr_can_be_in_inode(struct inode *inode,
2177 struct ocfs2_xattr_info *xi,
2178 struct ocfs2_xattr_search *xs)
2179{
2180 u64 value_size;
2181 struct ocfs2_xattr_entry *last;
2182 int free, i;
2183 size_t min_offs = xs->end - xs->base;
2184
2185 if (!xs->header)
2186 return 0;
2187
2188 last = xs->header->xh_entries;
2189
2190 for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
2191 size_t offs = le16_to_cpu(last->xe_name_offset);
2192 if (offs < min_offs)
2193 min_offs = offs;
2194 last += 1;
2195 }
2196
2197 free = min_offs - ((void *)last - xs->base) - sizeof(__u32);
2198 if (free < 0)
2199 return 0;
2200
2201 BUG_ON(!xs->not_found);
2202
2203 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
2204 value_size = OCFS2_XATTR_ROOT_SIZE;
2205 else
2206 value_size = OCFS2_XATTR_SIZE(xi->value_len);
2207
2208 if (free >= sizeof(struct ocfs2_xattr_entry) +
2209 OCFS2_XATTR_SIZE(strlen(xi->name)) + value_size)
2210 return 1;
2211
2212 return 0;
2213}
2214
2215static int ocfs2_calc_xattr_set_need(struct inode *inode,
2216 struct ocfs2_dinode *di,
2217 struct ocfs2_xattr_info *xi,
2218 struct ocfs2_xattr_search *xis,
2219 struct ocfs2_xattr_search *xbs,
2220 int *clusters_need,
Tao Ma85db90e2008-11-12 08:27:01 +08002221 int *meta_need,
2222 int *credits_need)
Tao Ma78f30c32008-11-12 08:27:00 +08002223{
2224 int ret = 0, old_in_xb = 0;
Tao Ma85db90e2008-11-12 08:27:01 +08002225 int clusters_add = 0, meta_add = 0, credits = 0;
Tao Ma78f30c32008-11-12 08:27:00 +08002226 struct buffer_head *bh = NULL;
2227 struct ocfs2_xattr_block *xb = NULL;
2228 struct ocfs2_xattr_entry *xe = NULL;
2229 struct ocfs2_xattr_value_root *xv = NULL;
2230 char *base = NULL;
2231 int name_offset, name_len = 0;
2232 u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2233 xi->value_len);
2234 u64 value_size;
2235
Tao Ma71d548a2008-12-05 06:20:54 +08002236 /*
2237 * Calculate the clusters we need to write.
2238 * No matter whether we replace an old one or add a new one,
2239 * we need this for writing.
2240 */
2241 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
2242 credits += new_clusters *
2243 ocfs2_clusters_to_blocks(inode->i_sb, 1);
2244
Tao Ma78f30c32008-11-12 08:27:00 +08002245 if (xis->not_found && xbs->not_found) {
Tao Ma85db90e2008-11-12 08:27:01 +08002246 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2247
2248 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
Tao Ma78f30c32008-11-12 08:27:00 +08002249 clusters_add += new_clusters;
Tao Ma85db90e2008-11-12 08:27:01 +08002250 credits += ocfs2_calc_extend_credits(inode->i_sb,
2251 &def_xv.xv.xr_list,
2252 new_clusters);
2253 }
Tao Ma78f30c32008-11-12 08:27:00 +08002254
2255 goto meta_guess;
2256 }
2257
2258 if (!xis->not_found) {
2259 xe = xis->here;
2260 name_offset = le16_to_cpu(xe->xe_name_offset);
2261 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2262 base = xis->base;
Tao Ma85db90e2008-11-12 08:27:01 +08002263 credits += OCFS2_INODE_UPDATE_CREDITS;
Tao Ma78f30c32008-11-12 08:27:00 +08002264 } else {
Joel Becker970e4932008-11-13 14:49:19 -08002265 int i, block_off = 0;
Tao Ma78f30c32008-11-12 08:27:00 +08002266 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2267 xe = xbs->here;
2268 name_offset = le16_to_cpu(xe->xe_name_offset);
2269 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2270 i = xbs->here - xbs->header->xh_entries;
2271 old_in_xb = 1;
2272
2273 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
2274 ret = ocfs2_xattr_bucket_get_name_value(inode,
2275 bucket_xh(xbs->bucket),
2276 i, &block_off,
2277 &name_offset);
2278 base = bucket_block(xbs->bucket, block_off);
Tao Ma85db90e2008-11-12 08:27:01 +08002279 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2280 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002281 base = xbs->base;
Tao Ma85db90e2008-11-12 08:27:01 +08002282 credits += OCFS2_XATTR_BLOCK_UPDATE_CREDITS;
2283 }
2284 }
2285
2286 /*
2287 * delete a xattr doesn't need metadata and cluster allocation.
2288 * so just calculate the credits and return.
2289 *
2290 * The credits for removing the value tree will be extended
2291 * by ocfs2_remove_extent itself.
2292 */
2293 if (!xi->value) {
2294 if (!ocfs2_xattr_is_local(xe))
Jan Karaa90714c2008-10-09 19:38:40 +02002295 credits += ocfs2_remove_extent_credits(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08002296
2297 goto out;
Tao Ma78f30c32008-11-12 08:27:00 +08002298 }
2299
2300 /* do cluster allocation guess first. */
2301 value_size = le64_to_cpu(xe->xe_value_size);
2302
2303 if (old_in_xb) {
2304 /*
2305 * In xattr set, we always try to set the xe in inode first,
2306 * so if it can be inserted into inode successfully, the old
2307 * one will be removed from the xattr block, and this xattr
2308 * will be inserted into inode as a new xattr in inode.
2309 */
2310 if (ocfs2_xattr_can_be_in_inode(inode, xi, xis)) {
2311 clusters_add += new_clusters;
Jan Karaa90714c2008-10-09 19:38:40 +02002312 credits += ocfs2_remove_extent_credits(inode->i_sb) +
Tao Ma85db90e2008-11-12 08:27:01 +08002313 OCFS2_INODE_UPDATE_CREDITS;
2314 if (!ocfs2_xattr_is_local(xe))
2315 credits += ocfs2_calc_extend_credits(
2316 inode->i_sb,
2317 &def_xv.xv.xr_list,
2318 new_clusters);
Tao Ma78f30c32008-11-12 08:27:00 +08002319 goto out;
2320 }
2321 }
2322
2323 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
2324 /* the new values will be stored outside. */
2325 u32 old_clusters = 0;
2326
2327 if (!ocfs2_xattr_is_local(xe)) {
2328 old_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2329 value_size);
2330 xv = (struct ocfs2_xattr_value_root *)
2331 (base + name_offset + name_len);
Tao Ma97aff522008-11-19 16:48:41 +08002332 value_size = OCFS2_XATTR_ROOT_SIZE;
Tao Ma78f30c32008-11-12 08:27:00 +08002333 } else
2334 xv = &def_xv.xv;
2335
Tao Ma85db90e2008-11-12 08:27:01 +08002336 if (old_clusters >= new_clusters) {
Jan Karaa90714c2008-10-09 19:38:40 +02002337 credits += ocfs2_remove_extent_credits(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002338 goto out;
Tao Ma85db90e2008-11-12 08:27:01 +08002339 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002340 meta_add += ocfs2_extend_meta_needed(&xv->xr_list);
2341 clusters_add += new_clusters - old_clusters;
Tao Ma85db90e2008-11-12 08:27:01 +08002342 credits += ocfs2_calc_extend_credits(inode->i_sb,
2343 &xv->xr_list,
2344 new_clusters -
2345 old_clusters);
Tao Ma97aff522008-11-19 16:48:41 +08002346 if (value_size >= OCFS2_XATTR_ROOT_SIZE)
2347 goto out;
Tao Ma78f30c32008-11-12 08:27:00 +08002348 }
2349 } else {
2350 /*
2351 * Now the new value will be stored inside. So if the new
2352 * value is smaller than the size of value root or the old
2353 * value, we don't need any allocation, otherwise we have
2354 * to guess metadata allocation.
2355 */
2356 if ((ocfs2_xattr_is_local(xe) && value_size >= xi->value_len) ||
2357 (!ocfs2_xattr_is_local(xe) &&
2358 OCFS2_XATTR_ROOT_SIZE >= xi->value_len))
2359 goto out;
2360 }
2361
2362meta_guess:
2363 /* calculate metadata allocation. */
2364 if (di->i_xattr_loc) {
2365 if (!xbs->xattr_bh) {
Joel Becker4ae1d692008-11-13 14:49:18 -08002366 ret = ocfs2_read_xattr_block(inode,
2367 le64_to_cpu(di->i_xattr_loc),
2368 &bh);
Tao Ma78f30c32008-11-12 08:27:00 +08002369 if (ret) {
2370 mlog_errno(ret);
2371 goto out;
2372 }
2373
2374 xb = (struct ocfs2_xattr_block *)bh->b_data;
2375 } else
2376 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2377
Tao Ma90cb5462008-12-05 06:20:56 +08002378 /*
2379 * If there is already an xattr tree, good, we can calculate
2380 * like other b-trees. Otherwise we may have the chance of
2381 * create a tree, the credit calculation is borrowed from
2382 * ocfs2_calc_extend_credits with root_el = NULL. And the
2383 * new tree will be cluster based, so no meta is needed.
2384 */
Tao Ma78f30c32008-11-12 08:27:00 +08002385 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
2386 struct ocfs2_extent_list *el =
2387 &xb->xb_attrs.xb_root.xt_list;
2388 meta_add += ocfs2_extend_meta_needed(el);
Tao Ma85db90e2008-11-12 08:27:01 +08002389 credits += ocfs2_calc_extend_credits(inode->i_sb,
2390 el, 1);
Tao Ma90cb5462008-12-05 06:20:56 +08002391 } else
2392 credits += OCFS2_SUBALLOC_ALLOC + 1;
Tao Ma78f30c32008-11-12 08:27:00 +08002393
2394 /*
2395 * This cluster will be used either for new bucket or for
2396 * new xattr block.
2397 * If the cluster size is the same as the bucket size, one
2398 * more is needed since we may need to extend the bucket
2399 * also.
2400 */
2401 clusters_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002402 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002403 if (OCFS2_XATTR_BUCKET_SIZE ==
Tao Ma85db90e2008-11-12 08:27:01 +08002404 OCFS2_SB(inode->i_sb)->s_clustersize) {
2405 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002406 clusters_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002407 }
2408 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002409 meta_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002410 credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
2411 }
Tao Ma78f30c32008-11-12 08:27:00 +08002412out:
2413 if (clusters_need)
2414 *clusters_need = clusters_add;
2415 if (meta_need)
2416 *meta_need = meta_add;
Tao Ma85db90e2008-11-12 08:27:01 +08002417 if (credits_need)
2418 *credits_need = credits;
Tao Ma78f30c32008-11-12 08:27:00 +08002419 brelse(bh);
2420 return ret;
2421}
2422
2423static int ocfs2_init_xattr_set_ctxt(struct inode *inode,
2424 struct ocfs2_dinode *di,
2425 struct ocfs2_xattr_info *xi,
2426 struct ocfs2_xattr_search *xis,
2427 struct ocfs2_xattr_search *xbs,
Tao Ma85db90e2008-11-12 08:27:01 +08002428 struct ocfs2_xattr_set_ctxt *ctxt,
2429 int *credits)
Tao Ma78f30c32008-11-12 08:27:00 +08002430{
2431 int clusters_add, meta_add, ret;
2432 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2433
2434 memset(ctxt, 0, sizeof(struct ocfs2_xattr_set_ctxt));
2435
2436 ocfs2_init_dealloc_ctxt(&ctxt->dealloc);
2437
2438 ret = ocfs2_calc_xattr_set_need(inode, di, xi, xis, xbs,
Tao Ma85db90e2008-11-12 08:27:01 +08002439 &clusters_add, &meta_add, credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002440 if (ret) {
2441 mlog_errno(ret);
2442 return ret;
2443 }
2444
Tao Ma85db90e2008-11-12 08:27:01 +08002445 mlog(0, "Set xattr %s, reserve meta blocks = %d, clusters = %d, "
2446 "credits = %d\n", xi->name, meta_add, clusters_add, *credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002447
2448 if (meta_add) {
2449 ret = ocfs2_reserve_new_metadata_blocks(osb, meta_add,
2450 &ctxt->meta_ac);
2451 if (ret) {
2452 mlog_errno(ret);
2453 goto out;
2454 }
2455 }
2456
2457 if (clusters_add) {
2458 ret = ocfs2_reserve_clusters(osb, clusters_add, &ctxt->data_ac);
2459 if (ret)
2460 mlog_errno(ret);
2461 }
2462out:
2463 if (ret) {
2464 if (ctxt->meta_ac) {
2465 ocfs2_free_alloc_context(ctxt->meta_ac);
2466 ctxt->meta_ac = NULL;
2467 }
2468
2469 /*
2470 * We cannot have an error and a non null ctxt->data_ac.
2471 */
2472 }
2473
2474 return ret;
2475}
2476
Tao Ma85db90e2008-11-12 08:27:01 +08002477static int __ocfs2_xattr_set_handle(struct inode *inode,
2478 struct ocfs2_dinode *di,
2479 struct ocfs2_xattr_info *xi,
2480 struct ocfs2_xattr_search *xis,
2481 struct ocfs2_xattr_search *xbs,
2482 struct ocfs2_xattr_set_ctxt *ctxt)
2483{
Tao Ma9f868f12008-11-19 16:48:42 +08002484 int ret = 0, credits, old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002485
2486 if (!xi->value) {
2487 /* Remove existing extended attribute */
2488 if (!xis->not_found)
2489 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2490 else if (!xbs->not_found)
2491 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2492 } else {
2493 /* We always try to set extended attribute into inode first*/
2494 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2495 if (!ret && !xbs->not_found) {
2496 /*
2497 * If succeed and that extended attribute existing in
2498 * external block, then we will remove it.
2499 */
2500 xi->value = NULL;
2501 xi->value_len = 0;
2502
Tao Ma9f868f12008-11-19 16:48:42 +08002503 old_found = xis->not_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002504 xis->not_found = -ENODATA;
2505 ret = ocfs2_calc_xattr_set_need(inode,
2506 di,
2507 xi,
2508 xis,
2509 xbs,
2510 NULL,
2511 NULL,
2512 &credits);
Tao Ma9f868f12008-11-19 16:48:42 +08002513 xis->not_found = old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002514 if (ret) {
2515 mlog_errno(ret);
2516 goto out;
2517 }
2518
2519 ret = ocfs2_extend_trans(ctxt->handle, credits +
2520 ctxt->handle->h_buffer_credits);
2521 if (ret) {
2522 mlog_errno(ret);
2523 goto out;
2524 }
2525 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2526 } else if (ret == -ENOSPC) {
2527 if (di->i_xattr_loc && !xbs->xattr_bh) {
2528 ret = ocfs2_xattr_block_find(inode,
2529 xi->name_index,
2530 xi->name, xbs);
2531 if (ret)
2532 goto out;
2533
Tao Ma9f868f12008-11-19 16:48:42 +08002534 old_found = xis->not_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002535 xis->not_found = -ENODATA;
2536 ret = ocfs2_calc_xattr_set_need(inode,
2537 di,
2538 xi,
2539 xis,
2540 xbs,
2541 NULL,
2542 NULL,
2543 &credits);
Tao Ma9f868f12008-11-19 16:48:42 +08002544 xis->not_found = old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002545 if (ret) {
2546 mlog_errno(ret);
2547 goto out;
2548 }
2549
2550 ret = ocfs2_extend_trans(ctxt->handle, credits +
2551 ctxt->handle->h_buffer_credits);
2552 if (ret) {
2553 mlog_errno(ret);
2554 goto out;
2555 }
2556 }
2557 /*
2558 * If no space in inode, we will set extended attribute
2559 * into external block.
2560 */
2561 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2562 if (ret)
2563 goto out;
2564 if (!xis->not_found) {
2565 /*
2566 * If succeed and that extended attribute
2567 * existing in inode, we will remove it.
2568 */
2569 xi->value = NULL;
2570 xi->value_len = 0;
2571 xbs->not_found = -ENODATA;
2572 ret = ocfs2_calc_xattr_set_need(inode,
2573 di,
2574 xi,
2575 xis,
2576 xbs,
2577 NULL,
2578 NULL,
2579 &credits);
2580 if (ret) {
2581 mlog_errno(ret);
2582 goto out;
2583 }
2584
2585 ret = ocfs2_extend_trans(ctxt->handle, credits +
2586 ctxt->handle->h_buffer_credits);
2587 if (ret) {
2588 mlog_errno(ret);
2589 goto out;
2590 }
2591 ret = ocfs2_xattr_ibody_set(inode, xi,
2592 xis, ctxt);
2593 }
2594 }
2595 }
2596
Tao Ma4b3f6202008-12-05 06:20:55 +08002597 if (!ret) {
2598 /* Update inode ctime. */
Tao Ma89a907a2009-02-17 04:39:28 +08002599 ret = ocfs2_journal_access_di(ctxt->handle, inode,
2600 xis->inode_bh,
2601 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma4b3f6202008-12-05 06:20:55 +08002602 if (ret) {
2603 mlog_errno(ret);
2604 goto out;
2605 }
2606
2607 inode->i_ctime = CURRENT_TIME;
2608 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
2609 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
2610 ocfs2_journal_dirty(ctxt->handle, xis->inode_bh);
2611 }
Tao Ma85db90e2008-11-12 08:27:01 +08002612out:
2613 return ret;
2614}
2615
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002616/*
Tiger Yang6c3faba2008-11-14 11:16:03 +08002617 * This function only called duing creating inode
2618 * for init security/acl xattrs of the new inode.
Tiger Yang008aafa2008-12-09 16:43:08 +08002619 * All transanction credits have been reserved in mknod.
Tiger Yang6c3faba2008-11-14 11:16:03 +08002620 */
2621int ocfs2_xattr_set_handle(handle_t *handle,
2622 struct inode *inode,
2623 struct buffer_head *di_bh,
2624 int name_index,
2625 const char *name,
2626 const void *value,
2627 size_t value_len,
2628 int flags,
2629 struct ocfs2_alloc_context *meta_ac,
2630 struct ocfs2_alloc_context *data_ac)
2631{
2632 struct ocfs2_dinode *di;
2633 int ret;
2634
2635 struct ocfs2_xattr_info xi = {
2636 .name_index = name_index,
2637 .name = name,
2638 .value = value,
2639 .value_len = value_len,
2640 };
2641
2642 struct ocfs2_xattr_search xis = {
2643 .not_found = -ENODATA,
2644 };
2645
2646 struct ocfs2_xattr_search xbs = {
2647 .not_found = -ENODATA,
2648 };
2649
2650 struct ocfs2_xattr_set_ctxt ctxt = {
2651 .handle = handle,
2652 .meta_ac = meta_ac,
2653 .data_ac = data_ac,
2654 };
2655
2656 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2657 return -EOPNOTSUPP;
2658
Tiger Yang008aafa2008-12-09 16:43:08 +08002659 /*
2660 * In extreme situation, may need xattr bucket when
2661 * block size is too small. And we have already reserved
2662 * the credits for bucket in mknod.
2663 */
2664 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE) {
2665 xbs.bucket = ocfs2_xattr_bucket_new(inode);
2666 if (!xbs.bucket) {
2667 mlog_errno(-ENOMEM);
2668 return -ENOMEM;
2669 }
2670 }
2671
Tiger Yang6c3faba2008-11-14 11:16:03 +08002672 xis.inode_bh = xbs.inode_bh = di_bh;
2673 di = (struct ocfs2_dinode *)di_bh->b_data;
2674
2675 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2676
2677 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2678 if (ret)
2679 goto cleanup;
2680 if (xis.not_found) {
2681 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2682 if (ret)
2683 goto cleanup;
2684 }
2685
2686 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2687
2688cleanup:
2689 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2690 brelse(xbs.xattr_bh);
Tiger Yang008aafa2008-12-09 16:43:08 +08002691 ocfs2_xattr_bucket_free(xbs.bucket);
Tiger Yang6c3faba2008-11-14 11:16:03 +08002692
2693 return ret;
2694}
2695
2696/*
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002697 * ocfs2_xattr_set()
2698 *
2699 * Set, replace or remove an extended attribute for this inode.
2700 * value is NULL to remove an existing extended attribute, else either
2701 * create or replace an extended attribute.
2702 */
2703int ocfs2_xattr_set(struct inode *inode,
2704 int name_index,
2705 const char *name,
2706 const void *value,
2707 size_t value_len,
2708 int flags)
2709{
2710 struct buffer_head *di_bh = NULL;
2711 struct ocfs2_dinode *di;
Tao Ma85db90e2008-11-12 08:27:01 +08002712 int ret, credits;
Tao Ma78f30c32008-11-12 08:27:00 +08002713 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08002714 struct inode *tl_inode = osb->osb_tl_inode;
Tao Ma78f30c32008-11-12 08:27:00 +08002715 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002716
2717 struct ocfs2_xattr_info xi = {
2718 .name_index = name_index,
2719 .name = name,
2720 .value = value,
2721 .value_len = value_len,
2722 };
2723
2724 struct ocfs2_xattr_search xis = {
2725 .not_found = -ENODATA,
2726 };
2727
2728 struct ocfs2_xattr_search xbs = {
2729 .not_found = -ENODATA,
2730 };
2731
Tiger Yang8154da32008-08-18 17:11:46 +08002732 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2733 return -EOPNOTSUPP;
2734
Joel Beckerba937122008-10-24 19:13:20 -07002735 /*
2736 * Only xbs will be used on indexed trees. xis doesn't need a
2737 * bucket.
2738 */
2739 xbs.bucket = ocfs2_xattr_bucket_new(inode);
2740 if (!xbs.bucket) {
2741 mlog_errno(-ENOMEM);
2742 return -ENOMEM;
2743 }
2744
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002745 ret = ocfs2_inode_lock(inode, &di_bh, 1);
2746 if (ret < 0) {
2747 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07002748 goto cleanup_nolock;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002749 }
2750 xis.inode_bh = xbs.inode_bh = di_bh;
2751 di = (struct ocfs2_dinode *)di_bh->b_data;
2752
2753 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2754 /*
2755 * Scan inode and external block to find the same name
2756 * extended attribute and collect search infomation.
2757 */
2758 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2759 if (ret)
2760 goto cleanup;
2761 if (xis.not_found) {
2762 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2763 if (ret)
2764 goto cleanup;
2765 }
2766
2767 if (xis.not_found && xbs.not_found) {
2768 ret = -ENODATA;
2769 if (flags & XATTR_REPLACE)
2770 goto cleanup;
2771 ret = 0;
2772 if (!value)
2773 goto cleanup;
2774 } else {
2775 ret = -EEXIST;
2776 if (flags & XATTR_CREATE)
2777 goto cleanup;
2778 }
2779
Tao Ma85db90e2008-11-12 08:27:01 +08002780
2781 mutex_lock(&tl_inode->i_mutex);
2782
2783 if (ocfs2_truncate_log_needs_flush(osb)) {
2784 ret = __ocfs2_flush_truncate_log(osb);
2785 if (ret < 0) {
2786 mutex_unlock(&tl_inode->i_mutex);
2787 mlog_errno(ret);
2788 goto cleanup;
2789 }
2790 }
2791 mutex_unlock(&tl_inode->i_mutex);
2792
2793 ret = ocfs2_init_xattr_set_ctxt(inode, di, &xi, &xis,
2794 &xbs, &ctxt, &credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002795 if (ret) {
2796 mlog_errno(ret);
2797 goto cleanup;
2798 }
2799
Tao Ma4b3f6202008-12-05 06:20:55 +08002800 /* we need to update inode's ctime field, so add credit for it. */
2801 credits += OCFS2_INODE_UPDATE_CREDITS;
Tao Ma85db90e2008-11-12 08:27:01 +08002802 ctxt.handle = ocfs2_start_trans(osb, credits);
2803 if (IS_ERR(ctxt.handle)) {
2804 ret = PTR_ERR(ctxt.handle);
2805 mlog_errno(ret);
2806 goto cleanup;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002807 }
Tao Ma85db90e2008-11-12 08:27:01 +08002808
2809 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2810
2811 ocfs2_commit_trans(osb, ctxt.handle);
2812
Tao Ma78f30c32008-11-12 08:27:00 +08002813 if (ctxt.data_ac)
2814 ocfs2_free_alloc_context(ctxt.data_ac);
2815 if (ctxt.meta_ac)
2816 ocfs2_free_alloc_context(ctxt.meta_ac);
2817 if (ocfs2_dealloc_has_cluster(&ctxt.dealloc))
2818 ocfs2_schedule_truncate_log_flush(osb, 1);
2819 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002820cleanup:
2821 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2822 ocfs2_inode_unlock(inode, 1);
Joel Beckerba937122008-10-24 19:13:20 -07002823cleanup_nolock:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002824 brelse(di_bh);
2825 brelse(xbs.xattr_bh);
Joel Beckerba937122008-10-24 19:13:20 -07002826 ocfs2_xattr_bucket_free(xbs.bucket);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002827
2828 return ret;
2829}
2830
Tao Ma0c044f02008-08-18 17:38:50 +08002831/*
2832 * Find the xattr extent rec which may contains name_hash.
2833 * e_cpos will be the first name hash of the xattr rec.
2834 * el must be the ocfs2_xattr_header.xb_attrs.xb_root.xt_list.
2835 */
2836static int ocfs2_xattr_get_rec(struct inode *inode,
2837 u32 name_hash,
2838 u64 *p_blkno,
2839 u32 *e_cpos,
2840 u32 *num_clusters,
2841 struct ocfs2_extent_list *el)
2842{
2843 int ret = 0, i;
2844 struct buffer_head *eb_bh = NULL;
2845 struct ocfs2_extent_block *eb;
2846 struct ocfs2_extent_rec *rec = NULL;
2847 u64 e_blkno = 0;
2848
2849 if (el->l_tree_depth) {
2850 ret = ocfs2_find_leaf(inode, el, name_hash, &eb_bh);
2851 if (ret) {
2852 mlog_errno(ret);
2853 goto out;
2854 }
2855
2856 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2857 el = &eb->h_list;
2858
2859 if (el->l_tree_depth) {
2860 ocfs2_error(inode->i_sb,
2861 "Inode %lu has non zero tree depth in "
2862 "xattr tree block %llu\n", inode->i_ino,
2863 (unsigned long long)eb_bh->b_blocknr);
2864 ret = -EROFS;
2865 goto out;
2866 }
2867 }
2868
2869 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
2870 rec = &el->l_recs[i];
2871
2872 if (le32_to_cpu(rec->e_cpos) <= name_hash) {
2873 e_blkno = le64_to_cpu(rec->e_blkno);
2874 break;
2875 }
2876 }
2877
2878 if (!e_blkno) {
2879 ocfs2_error(inode->i_sb, "Inode %lu has bad extent "
2880 "record (%u, %u, 0) in xattr", inode->i_ino,
2881 le32_to_cpu(rec->e_cpos),
2882 ocfs2_rec_clusters(el, rec));
2883 ret = -EROFS;
2884 goto out;
2885 }
2886
2887 *p_blkno = le64_to_cpu(rec->e_blkno);
2888 *num_clusters = le16_to_cpu(rec->e_leaf_clusters);
2889 if (e_cpos)
2890 *e_cpos = le32_to_cpu(rec->e_cpos);
2891out:
2892 brelse(eb_bh);
2893 return ret;
2894}
2895
2896typedef int (xattr_bucket_func)(struct inode *inode,
2897 struct ocfs2_xattr_bucket *bucket,
2898 void *para);
2899
Tao Ma589dc262008-08-18 17:38:51 +08002900static int ocfs2_find_xe_in_bucket(struct inode *inode,
Joel Beckere2356a32008-10-27 15:01:54 -07002901 struct ocfs2_xattr_bucket *bucket,
Tao Ma589dc262008-08-18 17:38:51 +08002902 int name_index,
2903 const char *name,
2904 u32 name_hash,
2905 u16 *xe_index,
2906 int *found)
2907{
2908 int i, ret = 0, cmp = 1, block_off, new_offset;
Joel Beckere2356a32008-10-27 15:01:54 -07002909 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma589dc262008-08-18 17:38:51 +08002910 size_t name_len = strlen(name);
2911 struct ocfs2_xattr_entry *xe = NULL;
Tao Ma589dc262008-08-18 17:38:51 +08002912 char *xe_name;
2913
2914 /*
2915 * We don't use binary search in the bucket because there
2916 * may be multiple entries with the same name hash.
2917 */
2918 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
2919 xe = &xh->xh_entries[i];
2920
2921 if (name_hash > le32_to_cpu(xe->xe_name_hash))
2922 continue;
2923 else if (name_hash < le32_to_cpu(xe->xe_name_hash))
2924 break;
2925
2926 cmp = name_index - ocfs2_xattr_get_type(xe);
2927 if (!cmp)
2928 cmp = name_len - xe->xe_name_len;
2929 if (cmp)
2930 continue;
2931
2932 ret = ocfs2_xattr_bucket_get_name_value(inode,
2933 xh,
2934 i,
2935 &block_off,
2936 &new_offset);
2937 if (ret) {
2938 mlog_errno(ret);
2939 break;
2940 }
2941
Joel Becker970e4932008-11-13 14:49:19 -08002942
Joel Beckere2356a32008-10-27 15:01:54 -07002943 xe_name = bucket_block(bucket, block_off) + new_offset;
2944 if (!memcmp(name, xe_name, name_len)) {
Tao Ma589dc262008-08-18 17:38:51 +08002945 *xe_index = i;
2946 *found = 1;
2947 ret = 0;
2948 break;
2949 }
2950 }
2951
2952 return ret;
2953}
2954
2955/*
2956 * Find the specified xattr entry in a series of buckets.
2957 * This series start from p_blkno and last for num_clusters.
2958 * The ocfs2_xattr_header.xh_num_buckets of the first bucket contains
2959 * the num of the valid buckets.
2960 *
2961 * Return the buffer_head this xattr should reside in. And if the xattr's
2962 * hash is in the gap of 2 buckets, return the lower bucket.
2963 */
2964static int ocfs2_xattr_bucket_find(struct inode *inode,
2965 int name_index,
2966 const char *name,
2967 u32 name_hash,
2968 u64 p_blkno,
2969 u32 first_hash,
2970 u32 num_clusters,
2971 struct ocfs2_xattr_search *xs)
2972{
2973 int ret, found = 0;
Tao Ma589dc262008-08-18 17:38:51 +08002974 struct ocfs2_xattr_header *xh = NULL;
2975 struct ocfs2_xattr_entry *xe = NULL;
2976 u16 index = 0;
2977 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2978 int low_bucket = 0, bucket, high_bucket;
Joel Beckere2356a32008-10-27 15:01:54 -07002979 struct ocfs2_xattr_bucket *search;
Tao Ma589dc262008-08-18 17:38:51 +08002980 u32 last_hash;
Joel Beckere2356a32008-10-27 15:01:54 -07002981 u64 blkno, lower_blkno = 0;
Tao Ma589dc262008-08-18 17:38:51 +08002982
Joel Beckere2356a32008-10-27 15:01:54 -07002983 search = ocfs2_xattr_bucket_new(inode);
2984 if (!search) {
2985 ret = -ENOMEM;
2986 mlog_errno(ret);
2987 goto out;
2988 }
2989
2990 ret = ocfs2_read_xattr_bucket(search, p_blkno);
Tao Ma589dc262008-08-18 17:38:51 +08002991 if (ret) {
2992 mlog_errno(ret);
2993 goto out;
2994 }
2995
Joel Beckere2356a32008-10-27 15:01:54 -07002996 xh = bucket_xh(search);
Tao Ma589dc262008-08-18 17:38:51 +08002997 high_bucket = le16_to_cpu(xh->xh_num_buckets) - 1;
Tao Ma589dc262008-08-18 17:38:51 +08002998 while (low_bucket <= high_bucket) {
Joel Beckere2356a32008-10-27 15:01:54 -07002999 ocfs2_xattr_bucket_relse(search);
3000
Tao Ma589dc262008-08-18 17:38:51 +08003001 bucket = (low_bucket + high_bucket) / 2;
Tao Ma589dc262008-08-18 17:38:51 +08003002 blkno = p_blkno + bucket * blk_per_bucket;
Joel Beckere2356a32008-10-27 15:01:54 -07003003 ret = ocfs2_read_xattr_bucket(search, blkno);
Tao Ma589dc262008-08-18 17:38:51 +08003004 if (ret) {
3005 mlog_errno(ret);
3006 goto out;
3007 }
3008
Joel Beckere2356a32008-10-27 15:01:54 -07003009 xh = bucket_xh(search);
Tao Ma589dc262008-08-18 17:38:51 +08003010 xe = &xh->xh_entries[0];
3011 if (name_hash < le32_to_cpu(xe->xe_name_hash)) {
3012 high_bucket = bucket - 1;
3013 continue;
3014 }
3015
3016 /*
3017 * Check whether the hash of the last entry in our
Tao Ma5a095612008-09-19 22:17:41 +08003018 * bucket is larger than the search one. for an empty
3019 * bucket, the last one is also the first one.
Tao Ma589dc262008-08-18 17:38:51 +08003020 */
Tao Ma5a095612008-09-19 22:17:41 +08003021 if (xh->xh_count)
3022 xe = &xh->xh_entries[le16_to_cpu(xh->xh_count) - 1];
3023
Tao Ma589dc262008-08-18 17:38:51 +08003024 last_hash = le32_to_cpu(xe->xe_name_hash);
3025
Joel Beckere2356a32008-10-27 15:01:54 -07003026 /* record lower_blkno which may be the insert place. */
3027 lower_blkno = blkno;
Tao Ma589dc262008-08-18 17:38:51 +08003028
3029 if (name_hash > le32_to_cpu(xe->xe_name_hash)) {
3030 low_bucket = bucket + 1;
3031 continue;
3032 }
3033
3034 /* the searched xattr should reside in this bucket if exists. */
Joel Beckere2356a32008-10-27 15:01:54 -07003035 ret = ocfs2_find_xe_in_bucket(inode, search,
Tao Ma589dc262008-08-18 17:38:51 +08003036 name_index, name, name_hash,
3037 &index, &found);
3038 if (ret) {
3039 mlog_errno(ret);
3040 goto out;
3041 }
3042 break;
3043 }
3044
3045 /*
3046 * Record the bucket we have found.
3047 * When the xattr's hash value is in the gap of 2 buckets, we will
3048 * always set it to the previous bucket.
3049 */
Joel Beckere2356a32008-10-27 15:01:54 -07003050 if (!lower_blkno)
3051 lower_blkno = p_blkno;
3052
3053 /* This should be in cache - we just read it during the search */
3054 ret = ocfs2_read_xattr_bucket(xs->bucket, lower_blkno);
3055 if (ret) {
3056 mlog_errno(ret);
3057 goto out;
Tao Ma589dc262008-08-18 17:38:51 +08003058 }
Tao Ma589dc262008-08-18 17:38:51 +08003059
Joel Beckerba937122008-10-24 19:13:20 -07003060 xs->header = bucket_xh(xs->bucket);
3061 xs->base = bucket_block(xs->bucket, 0);
Tao Ma589dc262008-08-18 17:38:51 +08003062 xs->end = xs->base + inode->i_sb->s_blocksize;
3063
3064 if (found) {
Tao Ma589dc262008-08-18 17:38:51 +08003065 xs->here = &xs->header->xh_entries[index];
3066 mlog(0, "find xattr %s in bucket %llu, entry = %u\n", name,
Joel Beckerba937122008-10-24 19:13:20 -07003067 (unsigned long long)bucket_blkno(xs->bucket), index);
Tao Ma589dc262008-08-18 17:38:51 +08003068 } else
3069 ret = -ENODATA;
3070
3071out:
Joel Beckere2356a32008-10-27 15:01:54 -07003072 ocfs2_xattr_bucket_free(search);
Tao Ma589dc262008-08-18 17:38:51 +08003073 return ret;
3074}
3075
3076static int ocfs2_xattr_index_block_find(struct inode *inode,
3077 struct buffer_head *root_bh,
3078 int name_index,
3079 const char *name,
3080 struct ocfs2_xattr_search *xs)
3081{
3082 int ret;
3083 struct ocfs2_xattr_block *xb =
3084 (struct ocfs2_xattr_block *)root_bh->b_data;
3085 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
3086 struct ocfs2_extent_list *el = &xb_root->xt_list;
3087 u64 p_blkno = 0;
3088 u32 first_hash, num_clusters = 0;
Tao Ma2057e5c2008-10-09 23:06:13 +08003089 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
Tao Ma589dc262008-08-18 17:38:51 +08003090
3091 if (le16_to_cpu(el->l_next_free_rec) == 0)
3092 return -ENODATA;
3093
3094 mlog(0, "find xattr %s, hash = %u, index = %d in xattr tree\n",
3095 name, name_hash, name_index);
3096
3097 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &first_hash,
3098 &num_clusters, el);
3099 if (ret) {
3100 mlog_errno(ret);
3101 goto out;
3102 }
3103
3104 BUG_ON(p_blkno == 0 || num_clusters == 0 || first_hash > name_hash);
3105
3106 mlog(0, "find xattr extent rec %u clusters from %llu, the first hash "
Mark Fashehde29c082008-10-29 14:45:30 -07003107 "in the rec is %u\n", num_clusters, (unsigned long long)p_blkno,
3108 first_hash);
Tao Ma589dc262008-08-18 17:38:51 +08003109
3110 ret = ocfs2_xattr_bucket_find(inode, name_index, name, name_hash,
3111 p_blkno, first_hash, num_clusters, xs);
3112
3113out:
3114 return ret;
3115}
3116
Tao Ma0c044f02008-08-18 17:38:50 +08003117static int ocfs2_iterate_xattr_buckets(struct inode *inode,
3118 u64 blkno,
3119 u32 clusters,
3120 xattr_bucket_func *func,
3121 void *para)
3122{
Joel Becker6dde41d2008-10-24 17:16:48 -07003123 int i, ret = 0;
Tao Ma0c044f02008-08-18 17:38:50 +08003124 u32 bpc = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb));
3125 u32 num_buckets = clusters * bpc;
Joel Beckerba937122008-10-24 19:13:20 -07003126 struct ocfs2_xattr_bucket *bucket;
Tao Ma0c044f02008-08-18 17:38:50 +08003127
Joel Beckerba937122008-10-24 19:13:20 -07003128 bucket = ocfs2_xattr_bucket_new(inode);
3129 if (!bucket) {
3130 mlog_errno(-ENOMEM);
3131 return -ENOMEM;
3132 }
Tao Ma0c044f02008-08-18 17:38:50 +08003133
3134 mlog(0, "iterating xattr buckets in %u clusters starting from %llu\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003135 clusters, (unsigned long long)blkno);
Tao Ma0c044f02008-08-18 17:38:50 +08003136
Joel Beckerba937122008-10-24 19:13:20 -07003137 for (i = 0; i < num_buckets; i++, blkno += bucket->bu_blocks) {
3138 ret = ocfs2_read_xattr_bucket(bucket, blkno);
Tao Ma0c044f02008-08-18 17:38:50 +08003139 if (ret) {
3140 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07003141 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003142 }
3143
Tao Ma0c044f02008-08-18 17:38:50 +08003144 /*
3145 * The real bucket num in this series of blocks is stored
3146 * in the 1st bucket.
3147 */
3148 if (i == 0)
Joel Beckerba937122008-10-24 19:13:20 -07003149 num_buckets = le16_to_cpu(bucket_xh(bucket)->xh_num_buckets);
Tao Ma0c044f02008-08-18 17:38:50 +08003150
Mark Fashehde29c082008-10-29 14:45:30 -07003151 mlog(0, "iterating xattr bucket %llu, first hash %u\n",
3152 (unsigned long long)blkno,
Joel Beckerba937122008-10-24 19:13:20 -07003153 le32_to_cpu(bucket_xh(bucket)->xh_entries[0].xe_name_hash));
Tao Ma0c044f02008-08-18 17:38:50 +08003154 if (func) {
Joel Beckerba937122008-10-24 19:13:20 -07003155 ret = func(inode, bucket, para);
3156 if (ret)
Tao Ma0c044f02008-08-18 17:38:50 +08003157 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07003158 /* Fall through to bucket_relse() */
Tao Ma0c044f02008-08-18 17:38:50 +08003159 }
3160
Joel Beckerba937122008-10-24 19:13:20 -07003161 ocfs2_xattr_bucket_relse(bucket);
3162 if (ret)
3163 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003164 }
3165
Joel Beckerba937122008-10-24 19:13:20 -07003166 ocfs2_xattr_bucket_free(bucket);
Tao Ma0c044f02008-08-18 17:38:50 +08003167 return ret;
3168}
3169
3170struct ocfs2_xattr_tree_list {
3171 char *buffer;
3172 size_t buffer_size;
Tao Ma936b8832008-10-09 23:06:14 +08003173 size_t result;
Tao Ma0c044f02008-08-18 17:38:50 +08003174};
3175
3176static int ocfs2_xattr_bucket_get_name_value(struct inode *inode,
3177 struct ocfs2_xattr_header *xh,
3178 int index,
3179 int *block_off,
3180 int *new_offset)
3181{
3182 u16 name_offset;
3183
3184 if (index < 0 || index >= le16_to_cpu(xh->xh_count))
3185 return -EINVAL;
3186
3187 name_offset = le16_to_cpu(xh->xh_entries[index].xe_name_offset);
3188
3189 *block_off = name_offset >> inode->i_sb->s_blocksize_bits;
3190 *new_offset = name_offset % inode->i_sb->s_blocksize;
3191
3192 return 0;
3193}
3194
3195static int ocfs2_list_xattr_bucket(struct inode *inode,
3196 struct ocfs2_xattr_bucket *bucket,
3197 void *para)
3198{
Tao Ma936b8832008-10-09 23:06:14 +08003199 int ret = 0, type;
Tao Ma0c044f02008-08-18 17:38:50 +08003200 struct ocfs2_xattr_tree_list *xl = (struct ocfs2_xattr_tree_list *)para;
Tao Ma0c044f02008-08-18 17:38:50 +08003201 int i, block_off, new_offset;
Tao Ma936b8832008-10-09 23:06:14 +08003202 const char *prefix, *name;
Tao Ma0c044f02008-08-18 17:38:50 +08003203
Joel Becker3e632942008-10-24 17:04:49 -07003204 for (i = 0 ; i < le16_to_cpu(bucket_xh(bucket)->xh_count); i++) {
3205 struct ocfs2_xattr_entry *entry = &bucket_xh(bucket)->xh_entries[i];
Tao Ma936b8832008-10-09 23:06:14 +08003206 type = ocfs2_xattr_get_type(entry);
3207 prefix = ocfs2_xattr_prefix(type);
Tao Ma0c044f02008-08-18 17:38:50 +08003208
Tao Ma936b8832008-10-09 23:06:14 +08003209 if (prefix) {
Tao Ma0c044f02008-08-18 17:38:50 +08003210 ret = ocfs2_xattr_bucket_get_name_value(inode,
Joel Becker3e632942008-10-24 17:04:49 -07003211 bucket_xh(bucket),
Tao Ma0c044f02008-08-18 17:38:50 +08003212 i,
3213 &block_off,
3214 &new_offset);
3215 if (ret)
3216 break;
Tao Ma936b8832008-10-09 23:06:14 +08003217
Joel Becker51def392008-10-24 16:57:21 -07003218 name = (const char *)bucket_block(bucket, block_off) +
Tao Ma936b8832008-10-09 23:06:14 +08003219 new_offset;
3220 ret = ocfs2_xattr_list_entry(xl->buffer,
3221 xl->buffer_size,
3222 &xl->result,
3223 prefix, name,
3224 entry->xe_name_len);
3225 if (ret)
3226 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003227 }
3228 }
3229
3230 return ret;
3231}
3232
3233static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
3234 struct ocfs2_xattr_tree_root *xt,
3235 char *buffer,
3236 size_t buffer_size)
3237{
3238 struct ocfs2_extent_list *el = &xt->xt_list;
3239 int ret = 0;
3240 u32 name_hash = UINT_MAX, e_cpos = 0, num_clusters = 0;
3241 u64 p_blkno = 0;
3242 struct ocfs2_xattr_tree_list xl = {
3243 .buffer = buffer,
3244 .buffer_size = buffer_size,
Tao Ma936b8832008-10-09 23:06:14 +08003245 .result = 0,
Tao Ma0c044f02008-08-18 17:38:50 +08003246 };
3247
3248 if (le16_to_cpu(el->l_next_free_rec) == 0)
3249 return 0;
3250
3251 while (name_hash > 0) {
3252 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
3253 &e_cpos, &num_clusters, el);
3254 if (ret) {
3255 mlog_errno(ret);
3256 goto out;
3257 }
3258
3259 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
3260 ocfs2_list_xattr_bucket,
3261 &xl);
3262 if (ret) {
3263 mlog_errno(ret);
3264 goto out;
3265 }
3266
3267 if (e_cpos == 0)
3268 break;
3269
3270 name_hash = e_cpos - 1;
3271 }
3272
Tao Ma936b8832008-10-09 23:06:14 +08003273 ret = xl.result;
Tao Ma0c044f02008-08-18 17:38:50 +08003274out:
3275 return ret;
3276}
Tao Ma01225592008-08-18 17:38:53 +08003277
3278static int cmp_xe(const void *a, const void *b)
3279{
3280 const struct ocfs2_xattr_entry *l = a, *r = b;
3281 u32 l_hash = le32_to_cpu(l->xe_name_hash);
3282 u32 r_hash = le32_to_cpu(r->xe_name_hash);
3283
3284 if (l_hash > r_hash)
3285 return 1;
3286 if (l_hash < r_hash)
3287 return -1;
3288 return 0;
3289}
3290
3291static void swap_xe(void *a, void *b, int size)
3292{
3293 struct ocfs2_xattr_entry *l = a, *r = b, tmp;
3294
3295 tmp = *l;
3296 memcpy(l, r, sizeof(struct ocfs2_xattr_entry));
3297 memcpy(r, &tmp, sizeof(struct ocfs2_xattr_entry));
3298}
3299
3300/*
3301 * When the ocfs2_xattr_block is filled up, new bucket will be created
3302 * and all the xattr entries will be moved to the new bucket.
Joel Becker178eeac2008-10-27 15:18:29 -07003303 * The header goes at the start of the bucket, and the names+values are
3304 * filled from the end. This is why *target starts as the last buffer.
Tao Ma01225592008-08-18 17:38:53 +08003305 * Note: we need to sort the entries since they are not saved in order
3306 * in the ocfs2_xattr_block.
3307 */
3308static void ocfs2_cp_xattr_block_to_bucket(struct inode *inode,
3309 struct buffer_head *xb_bh,
Joel Becker178eeac2008-10-27 15:18:29 -07003310 struct ocfs2_xattr_bucket *bucket)
Tao Ma01225592008-08-18 17:38:53 +08003311{
3312 int i, blocksize = inode->i_sb->s_blocksize;
Joel Becker178eeac2008-10-27 15:18:29 -07003313 int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08003314 u16 offset, size, off_change;
3315 struct ocfs2_xattr_entry *xe;
3316 struct ocfs2_xattr_block *xb =
3317 (struct ocfs2_xattr_block *)xb_bh->b_data;
3318 struct ocfs2_xattr_header *xb_xh = &xb->xb_attrs.xb_header;
Joel Becker178eeac2008-10-27 15:18:29 -07003319 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma01225592008-08-18 17:38:53 +08003320 u16 count = le16_to_cpu(xb_xh->xh_count);
Joel Becker178eeac2008-10-27 15:18:29 -07003321 char *src = xb_bh->b_data;
3322 char *target = bucket_block(bucket, blks - 1);
Tao Ma01225592008-08-18 17:38:53 +08003323
3324 mlog(0, "cp xattr from block %llu to bucket %llu\n",
3325 (unsigned long long)xb_bh->b_blocknr,
Joel Becker178eeac2008-10-27 15:18:29 -07003326 (unsigned long long)bucket_blkno(bucket));
Tao Ma01225592008-08-18 17:38:53 +08003327
Joel Becker178eeac2008-10-27 15:18:29 -07003328 for (i = 0; i < blks; i++)
3329 memset(bucket_block(bucket, i), 0, blocksize);
3330
Tao Ma01225592008-08-18 17:38:53 +08003331 /*
3332 * Since the xe_name_offset is based on ocfs2_xattr_header,
3333 * there is a offset change corresponding to the change of
3334 * ocfs2_xattr_header's position.
3335 */
3336 off_change = offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3337 xe = &xb_xh->xh_entries[count - 1];
3338 offset = le16_to_cpu(xe->xe_name_offset) + off_change;
3339 size = blocksize - offset;
3340
3341 /* copy all the names and values. */
Tao Ma01225592008-08-18 17:38:53 +08003342 memcpy(target + offset, src + offset, size);
3343
3344 /* Init new header now. */
3345 xh->xh_count = xb_xh->xh_count;
3346 xh->xh_num_buckets = cpu_to_le16(1);
3347 xh->xh_name_value_len = cpu_to_le16(size);
3348 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE - size);
3349
3350 /* copy all the entries. */
Joel Becker178eeac2008-10-27 15:18:29 -07003351 target = bucket_block(bucket, 0);
Tao Ma01225592008-08-18 17:38:53 +08003352 offset = offsetof(struct ocfs2_xattr_header, xh_entries);
3353 size = count * sizeof(struct ocfs2_xattr_entry);
3354 memcpy(target + offset, (char *)xb_xh + offset, size);
3355
3356 /* Change the xe offset for all the xe because of the move. */
3357 off_change = OCFS2_XATTR_BUCKET_SIZE - blocksize +
3358 offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3359 for (i = 0; i < count; i++)
3360 le16_add_cpu(&xh->xh_entries[i].xe_name_offset, off_change);
3361
3362 mlog(0, "copy entry: start = %u, size = %u, offset_change = %u\n",
3363 offset, size, off_change);
3364
3365 sort(target + offset, count, sizeof(struct ocfs2_xattr_entry),
3366 cmp_xe, swap_xe);
3367}
3368
3369/*
3370 * After we move xattr from block to index btree, we have to
3371 * update ocfs2_xattr_search to the new xe and base.
3372 *
3373 * When the entry is in xattr block, xattr_bh indicates the storage place.
3374 * While if the entry is in index b-tree, "bucket" indicates the
3375 * real place of the xattr.
3376 */
Joel Becker178eeac2008-10-27 15:18:29 -07003377static void ocfs2_xattr_update_xattr_search(struct inode *inode,
3378 struct ocfs2_xattr_search *xs,
3379 struct buffer_head *old_bh)
Tao Ma01225592008-08-18 17:38:53 +08003380{
Tao Ma01225592008-08-18 17:38:53 +08003381 char *buf = old_bh->b_data;
3382 struct ocfs2_xattr_block *old_xb = (struct ocfs2_xattr_block *)buf;
3383 struct ocfs2_xattr_header *old_xh = &old_xb->xb_attrs.xb_header;
Joel Becker178eeac2008-10-27 15:18:29 -07003384 int i;
Tao Ma01225592008-08-18 17:38:53 +08003385
Joel Beckerba937122008-10-24 19:13:20 -07003386 xs->header = bucket_xh(xs->bucket);
Joel Becker178eeac2008-10-27 15:18:29 -07003387 xs->base = bucket_block(xs->bucket, 0);
Tao Ma01225592008-08-18 17:38:53 +08003388 xs->end = xs->base + inode->i_sb->s_blocksize;
3389
Joel Becker178eeac2008-10-27 15:18:29 -07003390 if (xs->not_found)
3391 return;
Tao Ma01225592008-08-18 17:38:53 +08003392
Joel Becker178eeac2008-10-27 15:18:29 -07003393 i = xs->here - old_xh->xh_entries;
3394 xs->here = &xs->header->xh_entries[i];
Tao Ma01225592008-08-18 17:38:53 +08003395}
3396
3397static int ocfs2_xattr_create_index_block(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +08003398 struct ocfs2_xattr_search *xs,
3399 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08003400{
Tao Ma85db90e2008-11-12 08:27:01 +08003401 int ret;
Tao Ma01225592008-08-18 17:38:53 +08003402 u32 bit_off, len;
3403 u64 blkno;
Tao Ma85db90e2008-11-12 08:27:01 +08003404 handle_t *handle = ctxt->handle;
Tao Ma01225592008-08-18 17:38:53 +08003405 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3406 struct ocfs2_inode_info *oi = OCFS2_I(inode);
Tao Ma01225592008-08-18 17:38:53 +08003407 struct buffer_head *xb_bh = xs->xattr_bh;
3408 struct ocfs2_xattr_block *xb =
3409 (struct ocfs2_xattr_block *)xb_bh->b_data;
3410 struct ocfs2_xattr_tree_root *xr;
3411 u16 xb_flags = le16_to_cpu(xb->xb_flags);
Tao Ma01225592008-08-18 17:38:53 +08003412
3413 mlog(0, "create xattr index block for %llu\n",
3414 (unsigned long long)xb_bh->b_blocknr);
3415
3416 BUG_ON(xb_flags & OCFS2_XATTR_INDEXED);
Joel Becker178eeac2008-10-27 15:18:29 -07003417 BUG_ON(!xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08003418
Tao Ma01225592008-08-18 17:38:53 +08003419 /*
3420 * XXX:
3421 * We can use this lock for now, and maybe move to a dedicated mutex
3422 * if performance becomes a problem later.
3423 */
3424 down_write(&oi->ip_alloc_sem);
3425
Joel Becker84008972008-12-09 16:11:49 -08003426 ret = ocfs2_journal_access_xb(handle, inode, xb_bh,
3427 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08003428 if (ret) {
3429 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003430 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003431 }
3432
Tao Ma78f30c32008-11-12 08:27:00 +08003433 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac,
3434 1, 1, &bit_off, &len);
Tao Ma01225592008-08-18 17:38:53 +08003435 if (ret) {
3436 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003437 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003438 }
3439
3440 /*
3441 * The bucket may spread in many blocks, and
3442 * we will only touch the 1st block and the last block
3443 * in the whole bucket(one for entry and one for data).
3444 */
3445 blkno = ocfs2_clusters_to_blocks(inode->i_sb, bit_off);
3446
Mark Fashehde29c082008-10-29 14:45:30 -07003447 mlog(0, "allocate 1 cluster from %llu to xattr block\n",
3448 (unsigned long long)blkno);
Tao Ma01225592008-08-18 17:38:53 +08003449
Joel Becker178eeac2008-10-27 15:18:29 -07003450 ret = ocfs2_init_xattr_bucket(xs->bucket, blkno);
Tao Ma01225592008-08-18 17:38:53 +08003451 if (ret) {
3452 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003453 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003454 }
3455
Joel Becker178eeac2008-10-27 15:18:29 -07003456 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
3457 OCFS2_JOURNAL_ACCESS_CREATE);
Joel Beckerbd60bd32008-10-20 18:25:56 -07003458 if (ret) {
3459 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003460 goto out;
Joel Beckerbd60bd32008-10-20 18:25:56 -07003461 }
Tao Ma01225592008-08-18 17:38:53 +08003462
Joel Becker178eeac2008-10-27 15:18:29 -07003463 ocfs2_cp_xattr_block_to_bucket(inode, xb_bh, xs->bucket);
3464 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
3465
3466 ocfs2_xattr_update_xattr_search(inode, xs, xb_bh);
3467
Tao Ma01225592008-08-18 17:38:53 +08003468 /* Change from ocfs2_xattr_header to ocfs2_xattr_tree_root */
3469 memset(&xb->xb_attrs, 0, inode->i_sb->s_blocksize -
3470 offsetof(struct ocfs2_xattr_block, xb_attrs));
3471
3472 xr = &xb->xb_attrs.xb_root;
3473 xr->xt_clusters = cpu_to_le32(1);
3474 xr->xt_last_eb_blk = 0;
3475 xr->xt_list.l_tree_depth = 0;
3476 xr->xt_list.l_count = cpu_to_le16(ocfs2_xattr_recs_per_xb(inode->i_sb));
3477 xr->xt_list.l_next_free_rec = cpu_to_le16(1);
3478
3479 xr->xt_list.l_recs[0].e_cpos = 0;
3480 xr->xt_list.l_recs[0].e_blkno = cpu_to_le64(blkno);
3481 xr->xt_list.l_recs[0].e_leaf_clusters = cpu_to_le16(1);
3482
3483 xb->xb_flags = cpu_to_le16(xb_flags | OCFS2_XATTR_INDEXED);
3484
Tao Ma85db90e2008-11-12 08:27:01 +08003485 ocfs2_journal_dirty(handle, xb_bh);
Tao Ma01225592008-08-18 17:38:53 +08003486
Tao Ma85db90e2008-11-12 08:27:01 +08003487out:
Tao Ma01225592008-08-18 17:38:53 +08003488 up_write(&oi->ip_alloc_sem);
3489
Tao Ma01225592008-08-18 17:38:53 +08003490 return ret;
3491}
3492
3493static int cmp_xe_offset(const void *a, const void *b)
3494{
3495 const struct ocfs2_xattr_entry *l = a, *r = b;
3496 u32 l_name_offset = le16_to_cpu(l->xe_name_offset);
3497 u32 r_name_offset = le16_to_cpu(r->xe_name_offset);
3498
3499 if (l_name_offset < r_name_offset)
3500 return 1;
3501 if (l_name_offset > r_name_offset)
3502 return -1;
3503 return 0;
3504}
3505
3506/*
3507 * defrag a xattr bucket if we find that the bucket has some
3508 * holes beteen name/value pairs.
3509 * We will move all the name/value pairs to the end of the bucket
3510 * so that we can spare some space for insertion.
3511 */
3512static int ocfs2_defrag_xattr_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08003513 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08003514 struct ocfs2_xattr_bucket *bucket)
3515{
3516 int ret, i;
3517 size_t end, offset, len, value_len;
3518 struct ocfs2_xattr_header *xh;
3519 char *entries, *buf, *bucket_buf = NULL;
Joel Becker9c7759a2008-10-24 16:21:03 -07003520 u64 blkno = bucket_blkno(bucket);
Tao Ma01225592008-08-18 17:38:53 +08003521 u16 xh_free_start;
Tao Ma01225592008-08-18 17:38:53 +08003522 size_t blocksize = inode->i_sb->s_blocksize;
Tao Ma01225592008-08-18 17:38:53 +08003523 struct ocfs2_xattr_entry *xe;
Tao Ma01225592008-08-18 17:38:53 +08003524
3525 /*
3526 * In order to make the operation more efficient and generic,
3527 * we copy all the blocks into a contiguous memory and do the
3528 * defragment there, so if anything is error, we will not touch
3529 * the real block.
3530 */
3531 bucket_buf = kmalloc(OCFS2_XATTR_BUCKET_SIZE, GFP_NOFS);
3532 if (!bucket_buf) {
3533 ret = -EIO;
3534 goto out;
3535 }
3536
Joel Becker161d6f32008-10-27 15:25:18 -07003537 buf = bucket_buf;
Tao Ma1c32a2f2008-11-06 08:10:47 +08003538 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3539 memcpy(buf, bucket_block(bucket, i), blocksize);
Joel Becker161d6f32008-10-27 15:25:18 -07003540
Tao Ma1c32a2f2008-11-06 08:10:47 +08003541 ret = ocfs2_xattr_bucket_journal_access(handle, bucket,
Joel Becker161d6f32008-10-27 15:25:18 -07003542 OCFS2_JOURNAL_ACCESS_WRITE);
3543 if (ret < 0) {
3544 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003545 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003546 }
3547
3548 xh = (struct ocfs2_xattr_header *)bucket_buf;
3549 entries = (char *)xh->xh_entries;
3550 xh_free_start = le16_to_cpu(xh->xh_free_start);
3551
3552 mlog(0, "adjust xattr bucket in %llu, count = %u, "
3553 "xh_free_start = %u, xh_name_value_len = %u.\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003554 (unsigned long long)blkno, le16_to_cpu(xh->xh_count),
3555 xh_free_start, le16_to_cpu(xh->xh_name_value_len));
Tao Ma01225592008-08-18 17:38:53 +08003556
3557 /*
3558 * sort all the entries by their offset.
3559 * the largest will be the first, so that we can
3560 * move them to the end one by one.
3561 */
3562 sort(entries, le16_to_cpu(xh->xh_count),
3563 sizeof(struct ocfs2_xattr_entry),
3564 cmp_xe_offset, swap_xe);
3565
3566 /* Move all name/values to the end of the bucket. */
3567 xe = xh->xh_entries;
3568 end = OCFS2_XATTR_BUCKET_SIZE;
3569 for (i = 0; i < le16_to_cpu(xh->xh_count); i++, xe++) {
3570 offset = le16_to_cpu(xe->xe_name_offset);
3571 if (ocfs2_xattr_is_local(xe))
3572 value_len = OCFS2_XATTR_SIZE(
3573 le64_to_cpu(xe->xe_value_size));
3574 else
3575 value_len = OCFS2_XATTR_ROOT_SIZE;
3576 len = OCFS2_XATTR_SIZE(xe->xe_name_len) + value_len;
3577
3578 /*
3579 * We must make sure that the name/value pair
3580 * exist in the same block. So adjust end to
3581 * the previous block end if needed.
3582 */
3583 if (((end - len) / blocksize !=
3584 (end - 1) / blocksize))
3585 end = end - end % blocksize;
3586
3587 if (end > offset + len) {
3588 memmove(bucket_buf + end - len,
3589 bucket_buf + offset, len);
3590 xe->xe_name_offset = cpu_to_le16(end - len);
3591 }
3592
3593 mlog_bug_on_msg(end < offset + len, "Defrag check failed for "
3594 "bucket %llu\n", (unsigned long long)blkno);
3595
3596 end -= len;
3597 }
3598
3599 mlog_bug_on_msg(xh_free_start > end, "Defrag check failed for "
3600 "bucket %llu\n", (unsigned long long)blkno);
3601
3602 if (xh_free_start == end)
Tao Ma85db90e2008-11-12 08:27:01 +08003603 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003604
3605 memset(bucket_buf + xh_free_start, 0, end - xh_free_start);
3606 xh->xh_free_start = cpu_to_le16(end);
3607
3608 /* sort the entries by their name_hash. */
3609 sort(entries, le16_to_cpu(xh->xh_count),
3610 sizeof(struct ocfs2_xattr_entry),
3611 cmp_xe, swap_xe);
3612
3613 buf = bucket_buf;
Tao Ma1c32a2f2008-11-06 08:10:47 +08003614 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3615 memcpy(bucket_block(bucket, i), buf, blocksize);
3616 ocfs2_xattr_bucket_journal_dirty(handle, bucket);
Tao Ma01225592008-08-18 17:38:53 +08003617
Tao Ma01225592008-08-18 17:38:53 +08003618out:
Tao Ma01225592008-08-18 17:38:53 +08003619 kfree(bucket_buf);
3620 return ret;
3621}
3622
3623/*
Joel Beckerb5c03e72008-11-25 19:58:16 -08003624 * prev_blkno points to the start of an existing extent. new_blkno
3625 * points to a newly allocated extent. Because we know each of our
3626 * clusters contains more than bucket, we can easily split one cluster
3627 * at a bucket boundary. So we take the last cluster of the existing
3628 * extent and split it down the middle. We move the last half of the
3629 * buckets in the last cluster of the existing extent over to the new
3630 * extent.
Tao Ma01225592008-08-18 17:38:53 +08003631 *
Joel Beckerb5c03e72008-11-25 19:58:16 -08003632 * first_bh is the buffer at prev_blkno so we can update the existing
3633 * extent's bucket count. header_bh is the bucket were we were hoping
3634 * to insert our xattr. If the bucket move places the target in the new
3635 * extent, we'll update first_bh and header_bh after modifying the old
3636 * extent.
3637 *
3638 * first_hash will be set as the 1st xe's name_hash in the new extent.
Tao Ma01225592008-08-18 17:38:53 +08003639 */
3640static int ocfs2_mv_xattr_bucket_cross_cluster(struct inode *inode,
3641 handle_t *handle,
Joel Becker41cb8142008-11-26 14:25:21 -08003642 struct ocfs2_xattr_bucket *first,
3643 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08003644 u64 new_blkno,
Tao Ma01225592008-08-18 17:38:53 +08003645 u32 num_clusters,
3646 u32 *first_hash)
3647{
Joel Beckerc58b6032008-11-26 13:36:24 -08003648 int ret;
Joel Becker41cb8142008-11-26 14:25:21 -08003649 struct super_block *sb = inode->i_sb;
3650 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(sb);
3651 int num_buckets = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(sb));
Joel Beckerb5c03e72008-11-25 19:58:16 -08003652 int to_move = num_buckets / 2;
Joel Beckerc58b6032008-11-26 13:36:24 -08003653 u64 src_blkno;
Joel Becker41cb8142008-11-26 14:25:21 -08003654 u64 last_cluster_blkno = bucket_blkno(first) +
3655 ((num_clusters - 1) * ocfs2_clusters_to_blocks(sb, 1));
Tao Ma01225592008-08-18 17:38:53 +08003656
Joel Becker41cb8142008-11-26 14:25:21 -08003657 BUG_ON(le16_to_cpu(bucket_xh(first)->xh_num_buckets) < num_buckets);
3658 BUG_ON(OCFS2_XATTR_BUCKET_SIZE == OCFS2_SB(sb)->s_clustersize);
Tao Ma01225592008-08-18 17:38:53 +08003659
Tao Ma01225592008-08-18 17:38:53 +08003660 mlog(0, "move half of xattrs in cluster %llu to %llu\n",
Joel Beckerc58b6032008-11-26 13:36:24 -08003661 (unsigned long long)last_cluster_blkno, (unsigned long long)new_blkno);
Tao Ma01225592008-08-18 17:38:53 +08003662
Joel Becker41cb8142008-11-26 14:25:21 -08003663 ret = ocfs2_mv_xattr_buckets(inode, handle, bucket_blkno(first),
Joel Beckerc58b6032008-11-26 13:36:24 -08003664 last_cluster_blkno, new_blkno,
3665 to_move, first_hash);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003666 if (ret) {
3667 mlog_errno(ret);
3668 goto out;
3669 }
3670
Joel Beckerc58b6032008-11-26 13:36:24 -08003671 /* This is the first bucket that got moved */
3672 src_blkno = last_cluster_blkno + (to_move * blks_per_bucket);
3673
Tao Ma01225592008-08-18 17:38:53 +08003674 /*
Joel Beckerc58b6032008-11-26 13:36:24 -08003675 * If the target bucket was part of the moved buckets, we need to
Joel Becker41cb8142008-11-26 14:25:21 -08003676 * update first and target.
Joel Beckerb5c03e72008-11-25 19:58:16 -08003677 */
Joel Becker41cb8142008-11-26 14:25:21 -08003678 if (bucket_blkno(target) >= src_blkno) {
Joel Beckerb5c03e72008-11-25 19:58:16 -08003679 /* Find the block for the new target bucket */
3680 src_blkno = new_blkno +
Joel Becker41cb8142008-11-26 14:25:21 -08003681 (bucket_blkno(target) - src_blkno);
3682
3683 ocfs2_xattr_bucket_relse(first);
3684 ocfs2_xattr_bucket_relse(target);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003685
3686 /*
Joel Beckerc58b6032008-11-26 13:36:24 -08003687 * These shouldn't fail - the buffers are in the
Joel Beckerb5c03e72008-11-25 19:58:16 -08003688 * journal from ocfs2_cp_xattr_bucket().
3689 */
Joel Becker41cb8142008-11-26 14:25:21 -08003690 ret = ocfs2_read_xattr_bucket(first, new_blkno);
Joel Beckerc58b6032008-11-26 13:36:24 -08003691 if (ret) {
3692 mlog_errno(ret);
3693 goto out;
3694 }
Joel Becker41cb8142008-11-26 14:25:21 -08003695 ret = ocfs2_read_xattr_bucket(target, src_blkno);
3696 if (ret)
Joel Beckerb5c03e72008-11-25 19:58:16 -08003697 mlog_errno(ret);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003698
Joel Beckerb5c03e72008-11-25 19:58:16 -08003699 }
3700
Tao Ma01225592008-08-18 17:38:53 +08003701out:
Tao Ma01225592008-08-18 17:38:53 +08003702 return ret;
3703}
3704
Tao Ma01225592008-08-18 17:38:53 +08003705/*
Tao Ma80bcaf32008-10-27 06:06:24 +08003706 * Find the suitable pos when we divide a bucket into 2.
3707 * We have to make sure the xattrs with the same hash value exist
3708 * in the same bucket.
3709 *
3710 * If this ocfs2_xattr_header covers more than one hash value, find a
3711 * place where the hash value changes. Try to find the most even split.
3712 * The most common case is that all entries have different hash values,
3713 * and the first check we make will find a place to split.
Tao Ma01225592008-08-18 17:38:53 +08003714 */
Tao Ma80bcaf32008-10-27 06:06:24 +08003715static int ocfs2_xattr_find_divide_pos(struct ocfs2_xattr_header *xh)
3716{
3717 struct ocfs2_xattr_entry *entries = xh->xh_entries;
3718 int count = le16_to_cpu(xh->xh_count);
3719 int delta, middle = count / 2;
3720
3721 /*
3722 * We start at the middle. Each step gets farther away in both
3723 * directions. We therefore hit the change in hash value
3724 * nearest to the middle. Note that this loop does not execute for
3725 * count < 2.
3726 */
3727 for (delta = 0; delta < middle; delta++) {
3728 /* Let's check delta earlier than middle */
3729 if (cmp_xe(&entries[middle - delta - 1],
3730 &entries[middle - delta]))
3731 return middle - delta;
3732
3733 /* For even counts, don't walk off the end */
3734 if ((middle + delta + 1) == count)
3735 continue;
3736
3737 /* Now try delta past middle */
3738 if (cmp_xe(&entries[middle + delta],
3739 &entries[middle + delta + 1]))
3740 return middle + delta + 1;
3741 }
3742
3743 /* Every entry had the same hash */
3744 return count;
3745}
3746
3747/*
3748 * Move some xattrs in old bucket(blk) to new bucket(new_blk).
3749 * first_hash will record the 1st hash of the new bucket.
3750 *
3751 * Normally half of the xattrs will be moved. But we have to make
3752 * sure that the xattrs with the same hash value are stored in the
3753 * same bucket. If all the xattrs in this bucket have the same hash
3754 * value, the new bucket will be initialized as an empty one and the
3755 * first_hash will be initialized as (hash_value+1).
3756 */
3757static int ocfs2_divide_xattr_bucket(struct inode *inode,
3758 handle_t *handle,
3759 u64 blk,
3760 u64 new_blk,
3761 u32 *first_hash,
3762 int new_bucket_head)
Tao Ma01225592008-08-18 17:38:53 +08003763{
3764 int ret, i;
Tao Ma80bcaf32008-10-27 06:06:24 +08003765 int count, start, len, name_value_len = 0, xe_len, name_offset = 0;
Joel Beckerba937122008-10-24 19:13:20 -07003766 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
Tao Ma01225592008-08-18 17:38:53 +08003767 struct ocfs2_xattr_header *xh;
3768 struct ocfs2_xattr_entry *xe;
3769 int blocksize = inode->i_sb->s_blocksize;
3770
Tao Ma80bcaf32008-10-27 06:06:24 +08003771 mlog(0, "move some of xattrs from bucket %llu to %llu\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003772 (unsigned long long)blk, (unsigned long long)new_blk);
Tao Ma01225592008-08-18 17:38:53 +08003773
Joel Beckerba937122008-10-24 19:13:20 -07003774 s_bucket = ocfs2_xattr_bucket_new(inode);
3775 t_bucket = ocfs2_xattr_bucket_new(inode);
3776 if (!s_bucket || !t_bucket) {
3777 ret = -ENOMEM;
3778 mlog_errno(ret);
3779 goto out;
3780 }
Tao Ma01225592008-08-18 17:38:53 +08003781
Joel Beckerba937122008-10-24 19:13:20 -07003782 ret = ocfs2_read_xattr_bucket(s_bucket, blk);
Tao Ma01225592008-08-18 17:38:53 +08003783 if (ret) {
3784 mlog_errno(ret);
3785 goto out;
3786 }
3787
Joel Beckerba937122008-10-24 19:13:20 -07003788 ret = ocfs2_xattr_bucket_journal_access(handle, s_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07003789 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08003790 if (ret) {
3791 mlog_errno(ret);
3792 goto out;
3793 }
3794
Joel Becker784b8162008-10-24 17:33:40 -07003795 /*
3796 * Even if !new_bucket_head, we're overwriting t_bucket. Thus,
3797 * there's no need to read it.
3798 */
Joel Beckerba937122008-10-24 19:13:20 -07003799 ret = ocfs2_init_xattr_bucket(t_bucket, new_blk);
Tao Ma01225592008-08-18 17:38:53 +08003800 if (ret) {
3801 mlog_errno(ret);
3802 goto out;
3803 }
3804
Joel Becker2b656c12008-11-25 19:00:15 -08003805 /*
3806 * Hey, if we're overwriting t_bucket, what difference does
3807 * ACCESS_CREATE vs ACCESS_WRITE make? See the comment in the
3808 * same part of ocfs2_cp_xattr_bucket().
3809 */
Joel Beckerba937122008-10-24 19:13:20 -07003810 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07003811 new_bucket_head ?
3812 OCFS2_JOURNAL_ACCESS_CREATE :
3813 OCFS2_JOURNAL_ACCESS_WRITE);
3814 if (ret) {
3815 mlog_errno(ret);
3816 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003817 }
3818
Joel Beckerba937122008-10-24 19:13:20 -07003819 xh = bucket_xh(s_bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08003820 count = le16_to_cpu(xh->xh_count);
3821 start = ocfs2_xattr_find_divide_pos(xh);
3822
3823 if (start == count) {
3824 xe = &xh->xh_entries[start-1];
3825
3826 /*
3827 * initialized a new empty bucket here.
3828 * The hash value is set as one larger than
3829 * that of the last entry in the previous bucket.
3830 */
Joel Beckerba937122008-10-24 19:13:20 -07003831 for (i = 0; i < t_bucket->bu_blocks; i++)
3832 memset(bucket_block(t_bucket, i), 0, blocksize);
Tao Ma80bcaf32008-10-27 06:06:24 +08003833
Joel Beckerba937122008-10-24 19:13:20 -07003834 xh = bucket_xh(t_bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08003835 xh->xh_free_start = cpu_to_le16(blocksize);
3836 xh->xh_entries[0].xe_name_hash = xe->xe_name_hash;
3837 le32_add_cpu(&xh->xh_entries[0].xe_name_hash, 1);
3838
3839 goto set_num_buckets;
3840 }
3841
Tao Ma01225592008-08-18 17:38:53 +08003842 /* copy the whole bucket to the new first. */
Joel Beckerba937122008-10-24 19:13:20 -07003843 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003844
3845 /* update the new bucket. */
Joel Beckerba937122008-10-24 19:13:20 -07003846 xh = bucket_xh(t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003847
3848 /*
3849 * Calculate the total name/value len and xh_free_start for
3850 * the old bucket first.
3851 */
3852 name_offset = OCFS2_XATTR_BUCKET_SIZE;
3853 name_value_len = 0;
3854 for (i = 0; i < start; i++) {
3855 xe = &xh->xh_entries[i];
3856 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3857 if (ocfs2_xattr_is_local(xe))
3858 xe_len +=
3859 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3860 else
3861 xe_len += OCFS2_XATTR_ROOT_SIZE;
3862 name_value_len += xe_len;
3863 if (le16_to_cpu(xe->xe_name_offset) < name_offset)
3864 name_offset = le16_to_cpu(xe->xe_name_offset);
3865 }
3866
3867 /*
3868 * Now begin the modification to the new bucket.
3869 *
3870 * In the new bucket, We just move the xattr entry to the beginning
3871 * and don't touch the name/value. So there will be some holes in the
3872 * bucket, and they will be removed when ocfs2_defrag_xattr_bucket is
3873 * called.
3874 */
3875 xe = &xh->xh_entries[start];
3876 len = sizeof(struct ocfs2_xattr_entry) * (count - start);
3877 mlog(0, "mv xattr entry len %d from %d to %d\n", len,
Mark Fashehff1ec202008-08-19 10:54:29 -07003878 (int)((char *)xe - (char *)xh),
3879 (int)((char *)xh->xh_entries - (char *)xh));
Tao Ma01225592008-08-18 17:38:53 +08003880 memmove((char *)xh->xh_entries, (char *)xe, len);
3881 xe = &xh->xh_entries[count - start];
3882 len = sizeof(struct ocfs2_xattr_entry) * start;
3883 memset((char *)xe, 0, len);
3884
3885 le16_add_cpu(&xh->xh_count, -start);
3886 le16_add_cpu(&xh->xh_name_value_len, -name_value_len);
3887
3888 /* Calculate xh_free_start for the new bucket. */
3889 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
3890 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
3891 xe = &xh->xh_entries[i];
3892 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3893 if (ocfs2_xattr_is_local(xe))
3894 xe_len +=
3895 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3896 else
3897 xe_len += OCFS2_XATTR_ROOT_SIZE;
3898 if (le16_to_cpu(xe->xe_name_offset) <
3899 le16_to_cpu(xh->xh_free_start))
3900 xh->xh_free_start = xe->xe_name_offset;
3901 }
3902
Tao Ma80bcaf32008-10-27 06:06:24 +08003903set_num_buckets:
Tao Ma01225592008-08-18 17:38:53 +08003904 /* set xh->xh_num_buckets for the new xh. */
3905 if (new_bucket_head)
3906 xh->xh_num_buckets = cpu_to_le16(1);
3907 else
3908 xh->xh_num_buckets = 0;
3909
Joel Beckerba937122008-10-24 19:13:20 -07003910 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003911
3912 /* store the first_hash of the new bucket. */
3913 if (first_hash)
3914 *first_hash = le32_to_cpu(xh->xh_entries[0].xe_name_hash);
3915
3916 /*
Tao Ma80bcaf32008-10-27 06:06:24 +08003917 * Now only update the 1st block of the old bucket. If we
3918 * just added a new empty bucket, there is no need to modify
3919 * it.
Tao Ma01225592008-08-18 17:38:53 +08003920 */
Tao Ma80bcaf32008-10-27 06:06:24 +08003921 if (start == count)
3922 goto out;
3923
Joel Beckerba937122008-10-24 19:13:20 -07003924 xh = bucket_xh(s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003925 memset(&xh->xh_entries[start], 0,
3926 sizeof(struct ocfs2_xattr_entry) * (count - start));
3927 xh->xh_count = cpu_to_le16(start);
3928 xh->xh_free_start = cpu_to_le16(name_offset);
3929 xh->xh_name_value_len = cpu_to_le16(name_value_len);
3930
Joel Beckerba937122008-10-24 19:13:20 -07003931 ocfs2_xattr_bucket_journal_dirty(handle, s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003932
3933out:
Joel Beckerba937122008-10-24 19:13:20 -07003934 ocfs2_xattr_bucket_free(s_bucket);
3935 ocfs2_xattr_bucket_free(t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003936
3937 return ret;
3938}
3939
3940/*
3941 * Copy xattr from one bucket to another bucket.
3942 *
3943 * The caller must make sure that the journal transaction
3944 * has enough space for journaling.
3945 */
3946static int ocfs2_cp_xattr_bucket(struct inode *inode,
3947 handle_t *handle,
3948 u64 s_blkno,
3949 u64 t_blkno,
3950 int t_is_new)
3951{
Joel Becker4980c6d2008-10-24 18:54:43 -07003952 int ret;
Joel Beckerba937122008-10-24 19:13:20 -07003953 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
Tao Ma01225592008-08-18 17:38:53 +08003954
3955 BUG_ON(s_blkno == t_blkno);
3956
3957 mlog(0, "cp bucket %llu to %llu, target is %d\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003958 (unsigned long long)s_blkno, (unsigned long long)t_blkno,
3959 t_is_new);
Tao Ma01225592008-08-18 17:38:53 +08003960
Joel Beckerba937122008-10-24 19:13:20 -07003961 s_bucket = ocfs2_xattr_bucket_new(inode);
3962 t_bucket = ocfs2_xattr_bucket_new(inode);
3963 if (!s_bucket || !t_bucket) {
3964 ret = -ENOMEM;
3965 mlog_errno(ret);
3966 goto out;
3967 }
Joel Becker92de1092008-11-25 17:06:40 -08003968
Joel Beckerba937122008-10-24 19:13:20 -07003969 ret = ocfs2_read_xattr_bucket(s_bucket, s_blkno);
Tao Ma01225592008-08-18 17:38:53 +08003970 if (ret)
3971 goto out;
3972
Joel Becker784b8162008-10-24 17:33:40 -07003973 /*
3974 * Even if !t_is_new, we're overwriting t_bucket. Thus,
3975 * there's no need to read it.
3976 */
Joel Beckerba937122008-10-24 19:13:20 -07003977 ret = ocfs2_init_xattr_bucket(t_bucket, t_blkno);
Tao Ma01225592008-08-18 17:38:53 +08003978 if (ret)
3979 goto out;
3980
Joel Becker2b656c12008-11-25 19:00:15 -08003981 /*
3982 * Hey, if we're overwriting t_bucket, what difference does
3983 * ACCESS_CREATE vs ACCESS_WRITE make? Well, if we allocated a new
Joel Becker874d65a2008-11-26 13:02:18 -08003984 * cluster to fill, we came here from
3985 * ocfs2_mv_xattr_buckets(), and it is really new -
3986 * ACCESS_CREATE is required. But we also might have moved data
3987 * out of t_bucket before extending back into it.
3988 * ocfs2_add_new_xattr_bucket() can do this - its call to
3989 * ocfs2_add_new_xattr_cluster() may have created a new extent
Joel Becker2b656c12008-11-25 19:00:15 -08003990 * and copied out the end of the old extent. Then it re-extends
3991 * the old extent back to create space for new xattrs. That's
3992 * how we get here, and the bucket isn't really new.
3993 */
Joel Beckerba937122008-10-24 19:13:20 -07003994 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07003995 t_is_new ?
3996 OCFS2_JOURNAL_ACCESS_CREATE :
3997 OCFS2_JOURNAL_ACCESS_WRITE);
3998 if (ret)
3999 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004000
Joel Beckerba937122008-10-24 19:13:20 -07004001 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
4002 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004003
4004out:
Joel Beckerba937122008-10-24 19:13:20 -07004005 ocfs2_xattr_bucket_free(t_bucket);
4006 ocfs2_xattr_bucket_free(s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004007
4008 return ret;
4009}
4010
4011/*
Joel Becker874d65a2008-11-26 13:02:18 -08004012 * src_blk points to the start of an existing extent. last_blk points to
4013 * last cluster in that extent. to_blk points to a newly allocated
Joel Becker54ecb6b2008-11-26 13:18:31 -08004014 * extent. We copy the buckets from the cluster at last_blk to the new
4015 * extent. If start_bucket is non-zero, we skip that many buckets before
4016 * we start copying. The new extent's xh_num_buckets gets set to the
4017 * number of buckets we copied. The old extent's xh_num_buckets shrinks
4018 * by the same amount.
Tao Ma01225592008-08-18 17:38:53 +08004019 */
Joel Becker54ecb6b2008-11-26 13:18:31 -08004020static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
4021 u64 src_blk, u64 last_blk, u64 to_blk,
4022 unsigned int start_bucket,
4023 u32 *first_hash)
Tao Ma01225592008-08-18 17:38:53 +08004024{
4025 int i, ret, credits;
4026 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Becker15d60922008-11-25 18:36:42 -08004027 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08004028 int num_buckets = ocfs2_xattr_buckets_per_cluster(osb);
Joel Becker15d60922008-11-25 18:36:42 -08004029 struct ocfs2_xattr_bucket *old_first, *new_first;
Tao Ma01225592008-08-18 17:38:53 +08004030
Joel Becker874d65a2008-11-26 13:02:18 -08004031 mlog(0, "mv xattrs from cluster %llu to %llu\n",
4032 (unsigned long long)last_blk, (unsigned long long)to_blk);
Tao Ma01225592008-08-18 17:38:53 +08004033
Joel Becker54ecb6b2008-11-26 13:18:31 -08004034 BUG_ON(start_bucket >= num_buckets);
4035 if (start_bucket) {
4036 num_buckets -= start_bucket;
4037 last_blk += (start_bucket * blks_per_bucket);
4038 }
4039
Joel Becker15d60922008-11-25 18:36:42 -08004040 /* The first bucket of the original extent */
4041 old_first = ocfs2_xattr_bucket_new(inode);
4042 /* The first bucket of the new extent */
4043 new_first = ocfs2_xattr_bucket_new(inode);
4044 if (!old_first || !new_first) {
4045 ret = -ENOMEM;
4046 mlog_errno(ret);
4047 goto out;
4048 }
4049
Joel Becker874d65a2008-11-26 13:02:18 -08004050 ret = ocfs2_read_xattr_bucket(old_first, src_blk);
Joel Becker15d60922008-11-25 18:36:42 -08004051 if (ret) {
4052 mlog_errno(ret);
4053 goto out;
4054 }
4055
Tao Ma01225592008-08-18 17:38:53 +08004056 /*
Joel Becker54ecb6b2008-11-26 13:18:31 -08004057 * We need to update the first bucket of the old extent and all
4058 * the buckets going to the new extent.
Tao Ma01225592008-08-18 17:38:53 +08004059 */
Joel Becker54ecb6b2008-11-26 13:18:31 -08004060 credits = ((num_buckets + 1) * blks_per_bucket) +
4061 handle->h_buffer_credits;
Tao Ma01225592008-08-18 17:38:53 +08004062 ret = ocfs2_extend_trans(handle, credits);
4063 if (ret) {
4064 mlog_errno(ret);
4065 goto out;
4066 }
4067
Joel Becker15d60922008-11-25 18:36:42 -08004068 ret = ocfs2_xattr_bucket_journal_access(handle, old_first,
4069 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004070 if (ret) {
4071 mlog_errno(ret);
4072 goto out;
4073 }
4074
4075 for (i = 0; i < num_buckets; i++) {
4076 ret = ocfs2_cp_xattr_bucket(inode, handle,
Joel Becker874d65a2008-11-26 13:02:18 -08004077 last_blk + (i * blks_per_bucket),
Joel Becker15d60922008-11-25 18:36:42 -08004078 to_blk + (i * blks_per_bucket),
4079 1);
Tao Ma01225592008-08-18 17:38:53 +08004080 if (ret) {
4081 mlog_errno(ret);
4082 goto out;
4083 }
Tao Ma01225592008-08-18 17:38:53 +08004084 }
4085
Joel Becker15d60922008-11-25 18:36:42 -08004086 /*
4087 * Get the new bucket ready before we dirty anything
4088 * (This actually shouldn't fail, because we already dirtied
4089 * it once in ocfs2_cp_xattr_bucket()).
4090 */
4091 ret = ocfs2_read_xattr_bucket(new_first, to_blk);
4092 if (ret) {
Tao Ma01225592008-08-18 17:38:53 +08004093 mlog_errno(ret);
4094 goto out;
4095 }
Joel Becker15d60922008-11-25 18:36:42 -08004096 ret = ocfs2_xattr_bucket_journal_access(handle, new_first,
4097 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004098 if (ret) {
4099 mlog_errno(ret);
4100 goto out;
4101 }
4102
Joel Becker15d60922008-11-25 18:36:42 -08004103 /* Now update the headers */
4104 le16_add_cpu(&bucket_xh(old_first)->xh_num_buckets, -num_buckets);
4105 ocfs2_xattr_bucket_journal_dirty(handle, old_first);
Tao Ma01225592008-08-18 17:38:53 +08004106
Joel Becker15d60922008-11-25 18:36:42 -08004107 bucket_xh(new_first)->xh_num_buckets = cpu_to_le16(num_buckets);
4108 ocfs2_xattr_bucket_journal_dirty(handle, new_first);
Tao Ma01225592008-08-18 17:38:53 +08004109
4110 if (first_hash)
Joel Becker15d60922008-11-25 18:36:42 -08004111 *first_hash = le32_to_cpu(bucket_xh(new_first)->xh_entries[0].xe_name_hash);
4112
Tao Ma01225592008-08-18 17:38:53 +08004113out:
Joel Becker15d60922008-11-25 18:36:42 -08004114 ocfs2_xattr_bucket_free(new_first);
4115 ocfs2_xattr_bucket_free(old_first);
Tao Ma01225592008-08-18 17:38:53 +08004116 return ret;
4117}
4118
4119/*
Tao Ma80bcaf32008-10-27 06:06:24 +08004120 * Move some xattrs in this cluster to the new cluster.
Tao Ma01225592008-08-18 17:38:53 +08004121 * This function should only be called when bucket size == cluster size.
4122 * Otherwise ocfs2_mv_xattr_bucket_cross_cluster should be used instead.
4123 */
Tao Ma80bcaf32008-10-27 06:06:24 +08004124static int ocfs2_divide_xattr_cluster(struct inode *inode,
4125 handle_t *handle,
4126 u64 prev_blk,
4127 u64 new_blk,
4128 u32 *first_hash)
Tao Ma01225592008-08-18 17:38:53 +08004129{
4130 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08004131 int ret, credits = 2 * blk_per_bucket + handle->h_buffer_credits;
Tao Ma01225592008-08-18 17:38:53 +08004132
4133 BUG_ON(OCFS2_XATTR_BUCKET_SIZE < OCFS2_SB(inode->i_sb)->s_clustersize);
4134
4135 ret = ocfs2_extend_trans(handle, credits);
4136 if (ret) {
4137 mlog_errno(ret);
4138 return ret;
4139 }
4140
4141 /* Move half of the xattr in start_blk to the next bucket. */
Tao Ma80bcaf32008-10-27 06:06:24 +08004142 return ocfs2_divide_xattr_bucket(inode, handle, prev_blk,
4143 new_blk, first_hash, 1);
Tao Ma01225592008-08-18 17:38:53 +08004144}
4145
4146/*
4147 * Move some xattrs from the old cluster to the new one since they are not
4148 * contiguous in ocfs2 xattr tree.
4149 *
4150 * new_blk starts a new separate cluster, and we will move some xattrs from
4151 * prev_blk to it. v_start will be set as the first name hash value in this
4152 * new cluster so that it can be used as e_cpos during tree insertion and
4153 * don't collide with our original b-tree operations. first_bh and header_bh
4154 * will also be updated since they will be used in ocfs2_extend_xattr_bucket
4155 * to extend the insert bucket.
4156 *
4157 * The problem is how much xattr should we move to the new one and when should
4158 * we update first_bh and header_bh?
4159 * 1. If cluster size > bucket size, that means the previous cluster has more
4160 * than 1 bucket, so just move half nums of bucket into the new cluster and
4161 * update the first_bh and header_bh if the insert bucket has been moved
4162 * to the new cluster.
4163 * 2. If cluster_size == bucket_size:
4164 * a) If the previous extent rec has more than one cluster and the insert
4165 * place isn't in the last cluster, copy the entire last cluster to the
4166 * new one. This time, we don't need to upate the first_bh and header_bh
4167 * since they will not be moved into the new cluster.
4168 * b) Otherwise, move the bottom half of the xattrs in the last cluster into
4169 * the new one. And we set the extend flag to zero if the insert place is
4170 * moved into the new allocated cluster since no extend is needed.
4171 */
4172static int ocfs2_adjust_xattr_cross_cluster(struct inode *inode,
4173 handle_t *handle,
Joel Becker012ee912008-11-26 14:43:31 -08004174 struct ocfs2_xattr_bucket *first,
4175 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08004176 u64 new_blk,
Tao Ma01225592008-08-18 17:38:53 +08004177 u32 prev_clusters,
4178 u32 *v_start,
4179 int *extend)
4180{
Joel Becker92cf3ad2008-11-26 14:12:09 -08004181 int ret;
Tao Ma01225592008-08-18 17:38:53 +08004182
4183 mlog(0, "adjust xattrs from cluster %llu len %u to %llu\n",
Joel Becker012ee912008-11-26 14:43:31 -08004184 (unsigned long long)bucket_blkno(first), prev_clusters,
Mark Fashehde29c082008-10-29 14:45:30 -07004185 (unsigned long long)new_blk);
Tao Ma01225592008-08-18 17:38:53 +08004186
Joel Becker41cb8142008-11-26 14:25:21 -08004187 if (ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb)) > 1) {
Tao Ma01225592008-08-18 17:38:53 +08004188 ret = ocfs2_mv_xattr_bucket_cross_cluster(inode,
4189 handle,
Joel Becker41cb8142008-11-26 14:25:21 -08004190 first, target,
Tao Ma01225592008-08-18 17:38:53 +08004191 new_blk,
Tao Ma01225592008-08-18 17:38:53 +08004192 prev_clusters,
4193 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004194 if (ret)
Joel Becker41cb8142008-11-26 14:25:21 -08004195 mlog_errno(ret);
Joel Becker41cb8142008-11-26 14:25:21 -08004196 } else {
Joel Becker92cf3ad2008-11-26 14:12:09 -08004197 /* The start of the last cluster in the first extent */
4198 u64 last_blk = bucket_blkno(first) +
4199 ((prev_clusters - 1) *
4200 ocfs2_clusters_to_blocks(inode->i_sb, 1));
Tao Ma01225592008-08-18 17:38:53 +08004201
Joel Becker012ee912008-11-26 14:43:31 -08004202 if (prev_clusters > 1 && bucket_blkno(target) != last_blk) {
Joel Becker874d65a2008-11-26 13:02:18 -08004203 ret = ocfs2_mv_xattr_buckets(inode, handle,
Joel Becker92cf3ad2008-11-26 14:12:09 -08004204 bucket_blkno(first),
Joel Becker54ecb6b2008-11-26 13:18:31 -08004205 last_blk, new_blk, 0,
Tao Ma01225592008-08-18 17:38:53 +08004206 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004207 if (ret)
4208 mlog_errno(ret);
4209 } else {
Tao Ma80bcaf32008-10-27 06:06:24 +08004210 ret = ocfs2_divide_xattr_cluster(inode, handle,
4211 last_blk, new_blk,
4212 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004213 if (ret)
4214 mlog_errno(ret);
Tao Ma01225592008-08-18 17:38:53 +08004215
Joel Becker92cf3ad2008-11-26 14:12:09 -08004216 if ((bucket_blkno(target) == last_blk) && extend)
Tao Ma01225592008-08-18 17:38:53 +08004217 *extend = 0;
4218 }
4219 }
4220
4221 return ret;
4222}
4223
4224/*
4225 * Add a new cluster for xattr storage.
4226 *
4227 * If the new cluster is contiguous with the previous one, it will be
4228 * appended to the same extent record, and num_clusters will be updated.
4229 * If not, we will insert a new extent for it and move some xattrs in
4230 * the last cluster into the new allocated one.
4231 * We also need to limit the maximum size of a btree leaf, otherwise we'll
4232 * lose the benefits of hashing because we'll have to search large leaves.
4233 * So now the maximum size is OCFS2_MAX_XATTR_TREE_LEAF_SIZE(or clustersize,
4234 * if it's bigger).
4235 *
4236 * first_bh is the first block of the previous extent rec and header_bh
4237 * indicates the bucket we will insert the new xattrs. They will be updated
4238 * when the header_bh is moved into the new cluster.
4239 */
4240static int ocfs2_add_new_xattr_cluster(struct inode *inode,
4241 struct buffer_head *root_bh,
Joel Beckered29c0c2008-11-26 15:08:44 -08004242 struct ocfs2_xattr_bucket *first,
4243 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08004244 u32 *num_clusters,
4245 u32 prev_cpos,
Tao Ma78f30c32008-11-12 08:27:00 +08004246 int *extend,
4247 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004248{
Tao Ma85db90e2008-11-12 08:27:01 +08004249 int ret;
Tao Ma01225592008-08-18 17:38:53 +08004250 u16 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
4251 u32 prev_clusters = *num_clusters;
4252 u32 clusters_to_add = 1, bit_off, num_bits, v_start = 0;
4253 u64 block;
Tao Ma85db90e2008-11-12 08:27:01 +08004254 handle_t *handle = ctxt->handle;
Tao Ma01225592008-08-18 17:38:53 +08004255 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004256 struct ocfs2_extent_tree et;
Tao Ma01225592008-08-18 17:38:53 +08004257
4258 mlog(0, "Add new xattr cluster for %llu, previous xattr hash = %u, "
4259 "previous xattr blkno = %llu\n",
4260 (unsigned long long)OCFS2_I(inode)->ip_blkno,
Joel Beckered29c0c2008-11-26 15:08:44 -08004261 prev_cpos, (unsigned long long)bucket_blkno(first));
Tao Ma01225592008-08-18 17:38:53 +08004262
Joel Becker8d6220d2008-08-22 12:46:09 -07004263 ocfs2_init_xattr_tree_extent_tree(&et, inode, root_bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004264
Joel Becker84008972008-12-09 16:11:49 -08004265 ret = ocfs2_journal_access_xb(handle, inode, root_bh,
4266 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004267 if (ret < 0) {
4268 mlog_errno(ret);
4269 goto leave;
4270 }
4271
Tao Ma78f30c32008-11-12 08:27:00 +08004272 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac, 1,
Tao Ma01225592008-08-18 17:38:53 +08004273 clusters_to_add, &bit_off, &num_bits);
4274 if (ret < 0) {
4275 if (ret != -ENOSPC)
4276 mlog_errno(ret);
4277 goto leave;
4278 }
4279
4280 BUG_ON(num_bits > clusters_to_add);
4281
4282 block = ocfs2_clusters_to_blocks(osb->sb, bit_off);
4283 mlog(0, "Allocating %u clusters at block %u for xattr in inode %llu\n",
4284 num_bits, bit_off, (unsigned long long)OCFS2_I(inode)->ip_blkno);
4285
Joel Beckered29c0c2008-11-26 15:08:44 -08004286 if (bucket_blkno(first) + (prev_clusters * bpc) == block &&
Tao Ma01225592008-08-18 17:38:53 +08004287 (prev_clusters + num_bits) << osb->s_clustersize_bits <=
4288 OCFS2_MAX_XATTR_TREE_LEAF_SIZE) {
4289 /*
4290 * If this cluster is contiguous with the old one and
4291 * adding this new cluster, we don't surpass the limit of
4292 * OCFS2_MAX_XATTR_TREE_LEAF_SIZE, cool. We will let it be
4293 * initialized and used like other buckets in the previous
4294 * cluster.
4295 * So add it as a contiguous one. The caller will handle
4296 * its init process.
4297 */
4298 v_start = prev_cpos + prev_clusters;
4299 *num_clusters = prev_clusters + num_bits;
4300 mlog(0, "Add contiguous %u clusters to previous extent rec.\n",
4301 num_bits);
4302 } else {
4303 ret = ocfs2_adjust_xattr_cross_cluster(inode,
4304 handle,
Joel Becker012ee912008-11-26 14:43:31 -08004305 first,
4306 target,
Tao Ma01225592008-08-18 17:38:53 +08004307 block,
Tao Ma01225592008-08-18 17:38:53 +08004308 prev_clusters,
4309 &v_start,
4310 extend);
4311 if (ret) {
4312 mlog_errno(ret);
4313 goto leave;
4314 }
4315 }
4316
4317 mlog(0, "Insert %u clusters at block %llu for xattr at %u\n",
Mark Fashehde29c082008-10-29 14:45:30 -07004318 num_bits, (unsigned long long)block, v_start);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004319 ret = ocfs2_insert_extent(osb, handle, inode, &et, v_start, block,
Tao Ma78f30c32008-11-12 08:27:00 +08004320 num_bits, 0, ctxt->meta_ac);
Tao Ma01225592008-08-18 17:38:53 +08004321 if (ret < 0) {
4322 mlog_errno(ret);
4323 goto leave;
4324 }
4325
4326 ret = ocfs2_journal_dirty(handle, root_bh);
Tao Ma85db90e2008-11-12 08:27:01 +08004327 if (ret < 0)
Tao Ma01225592008-08-18 17:38:53 +08004328 mlog_errno(ret);
Tao Ma01225592008-08-18 17:38:53 +08004329
4330leave:
Tao Ma01225592008-08-18 17:38:53 +08004331 return ret;
4332}
4333
4334/*
Joel Becker92de1092008-11-25 17:06:40 -08004335 * We are given an extent. 'first' is the bucket at the very front of
4336 * the extent. The extent has space for an additional bucket past
4337 * bucket_xh(first)->xh_num_buckets. 'target_blkno' is the block number
4338 * of the target bucket. We wish to shift every bucket past the target
4339 * down one, filling in that additional space. When we get back to the
4340 * target, we split the target between itself and the now-empty bucket
4341 * at target+1 (aka, target_blkno + blks_per_bucket).
Tao Ma01225592008-08-18 17:38:53 +08004342 */
4343static int ocfs2_extend_xattr_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004344 handle_t *handle,
Joel Becker92de1092008-11-25 17:06:40 -08004345 struct ocfs2_xattr_bucket *first,
4346 u64 target_blk,
Tao Ma01225592008-08-18 17:38:53 +08004347 u32 num_clusters)
4348{
4349 int ret, credits;
4350 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4351 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Joel Becker92de1092008-11-25 17:06:40 -08004352 u64 end_blk;
4353 u16 new_bucket = le16_to_cpu(bucket_xh(first)->xh_num_buckets);
Tao Ma01225592008-08-18 17:38:53 +08004354
4355 mlog(0, "extend xattr bucket in %llu, xattr extend rec starting "
Joel Becker92de1092008-11-25 17:06:40 -08004356 "from %llu, len = %u\n", (unsigned long long)target_blk,
4357 (unsigned long long)bucket_blkno(first), num_clusters);
Tao Ma01225592008-08-18 17:38:53 +08004358
Joel Becker92de1092008-11-25 17:06:40 -08004359 /* The extent must have room for an additional bucket */
4360 BUG_ON(new_bucket >=
4361 (num_clusters * ocfs2_xattr_buckets_per_cluster(osb)));
Tao Ma01225592008-08-18 17:38:53 +08004362
Joel Becker92de1092008-11-25 17:06:40 -08004363 /* end_blk points to the last existing bucket */
4364 end_blk = bucket_blkno(first) + ((new_bucket - 1) * blk_per_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004365
4366 /*
Joel Becker92de1092008-11-25 17:06:40 -08004367 * end_blk is the start of the last existing bucket.
4368 * Thus, (end_blk - target_blk) covers the target bucket and
4369 * every bucket after it up to, but not including, the last
4370 * existing bucket. Then we add the last existing bucket, the
4371 * new bucket, and the first bucket (3 * blk_per_bucket).
Tao Ma01225592008-08-18 17:38:53 +08004372 */
Joel Becker92de1092008-11-25 17:06:40 -08004373 credits = (end_blk - target_blk) + (3 * blk_per_bucket) +
Tao Ma85db90e2008-11-12 08:27:01 +08004374 handle->h_buffer_credits;
4375 ret = ocfs2_extend_trans(handle, credits);
4376 if (ret) {
Tao Ma01225592008-08-18 17:38:53 +08004377 mlog_errno(ret);
4378 goto out;
4379 }
4380
Joel Becker92de1092008-11-25 17:06:40 -08004381 ret = ocfs2_xattr_bucket_journal_access(handle, first,
4382 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004383 if (ret) {
4384 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08004385 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004386 }
4387
Joel Becker92de1092008-11-25 17:06:40 -08004388 while (end_blk != target_blk) {
Tao Ma01225592008-08-18 17:38:53 +08004389 ret = ocfs2_cp_xattr_bucket(inode, handle, end_blk,
4390 end_blk + blk_per_bucket, 0);
4391 if (ret)
Tao Ma85db90e2008-11-12 08:27:01 +08004392 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004393 end_blk -= blk_per_bucket;
4394 }
4395
Joel Becker92de1092008-11-25 17:06:40 -08004396 /* Move half of the xattr in target_blkno to the next bucket. */
4397 ret = ocfs2_divide_xattr_bucket(inode, handle, target_blk,
4398 target_blk + blk_per_bucket, NULL, 0);
Tao Ma01225592008-08-18 17:38:53 +08004399
Joel Becker92de1092008-11-25 17:06:40 -08004400 le16_add_cpu(&bucket_xh(first)->xh_num_buckets, 1);
4401 ocfs2_xattr_bucket_journal_dirty(handle, first);
Tao Ma01225592008-08-18 17:38:53 +08004402
Tao Ma01225592008-08-18 17:38:53 +08004403out:
4404 return ret;
4405}
4406
4407/*
Joel Becker91f20332008-11-26 15:25:41 -08004408 * Add new xattr bucket in an extent record and adjust the buckets
4409 * accordingly. xb_bh is the ocfs2_xattr_block, and target is the
4410 * bucket we want to insert into.
Tao Ma01225592008-08-18 17:38:53 +08004411 *
Joel Becker91f20332008-11-26 15:25:41 -08004412 * In the easy case, we will move all the buckets after target down by
4413 * one. Half of target's xattrs will be moved to the next bucket.
4414 *
4415 * If current cluster is full, we'll allocate a new one. This may not
4416 * be contiguous. The underlying calls will make sure that there is
4417 * space for the insert, shifting buckets around if necessary.
4418 * 'target' may be moved by those calls.
Tao Ma01225592008-08-18 17:38:53 +08004419 */
4420static int ocfs2_add_new_xattr_bucket(struct inode *inode,
4421 struct buffer_head *xb_bh,
Joel Becker91f20332008-11-26 15:25:41 -08004422 struct ocfs2_xattr_bucket *target,
Tao Ma78f30c32008-11-12 08:27:00 +08004423 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004424{
Tao Ma01225592008-08-18 17:38:53 +08004425 struct ocfs2_xattr_block *xb =
4426 (struct ocfs2_xattr_block *)xb_bh->b_data;
4427 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
4428 struct ocfs2_extent_list *el = &xb_root->xt_list;
Joel Becker91f20332008-11-26 15:25:41 -08004429 u32 name_hash =
4430 le32_to_cpu(bucket_xh(target)->xh_entries[0].xe_name_hash);
Joel Beckered29c0c2008-11-26 15:08:44 -08004431 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08004432 int ret, num_buckets, extend = 1;
4433 u64 p_blkno;
4434 u32 e_cpos, num_clusters;
Joel Becker92de1092008-11-25 17:06:40 -08004435 /* The bucket at the front of the extent */
Joel Becker91f20332008-11-26 15:25:41 -08004436 struct ocfs2_xattr_bucket *first;
Tao Ma01225592008-08-18 17:38:53 +08004437
Joel Becker91f20332008-11-26 15:25:41 -08004438 mlog(0, "Add new xattr bucket starting from %llu\n",
4439 (unsigned long long)bucket_blkno(target));
Tao Ma01225592008-08-18 17:38:53 +08004440
Joel Beckered29c0c2008-11-26 15:08:44 -08004441 /* The first bucket of the original extent */
Joel Becker92de1092008-11-25 17:06:40 -08004442 first = ocfs2_xattr_bucket_new(inode);
Joel Becker91f20332008-11-26 15:25:41 -08004443 if (!first) {
Joel Becker92de1092008-11-25 17:06:40 -08004444 ret = -ENOMEM;
4445 mlog_errno(ret);
4446 goto out;
4447 }
4448
Tao Ma01225592008-08-18 17:38:53 +08004449 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &e_cpos,
4450 &num_clusters, el);
4451 if (ret) {
4452 mlog_errno(ret);
4453 goto out;
4454 }
4455
Joel Beckered29c0c2008-11-26 15:08:44 -08004456 ret = ocfs2_read_xattr_bucket(first, p_blkno);
4457 if (ret) {
4458 mlog_errno(ret);
4459 goto out;
4460 }
4461
Tao Ma01225592008-08-18 17:38:53 +08004462 num_buckets = ocfs2_xattr_buckets_per_cluster(osb) * num_clusters;
Joel Beckered29c0c2008-11-26 15:08:44 -08004463 if (num_buckets == le16_to_cpu(bucket_xh(first)->xh_num_buckets)) {
4464 /*
4465 * This can move first+target if the target bucket moves
4466 * to the new extent.
4467 */
Tao Ma01225592008-08-18 17:38:53 +08004468 ret = ocfs2_add_new_xattr_cluster(inode,
4469 xb_bh,
Joel Beckered29c0c2008-11-26 15:08:44 -08004470 first,
4471 target,
Tao Ma01225592008-08-18 17:38:53 +08004472 &num_clusters,
4473 e_cpos,
Tao Ma78f30c32008-11-12 08:27:00 +08004474 &extend,
4475 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004476 if (ret) {
4477 mlog_errno(ret);
4478 goto out;
4479 }
4480 }
4481
Joel Becker92de1092008-11-25 17:06:40 -08004482 if (extend) {
Tao Ma01225592008-08-18 17:38:53 +08004483 ret = ocfs2_extend_xattr_bucket(inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004484 ctxt->handle,
Joel Beckered29c0c2008-11-26 15:08:44 -08004485 first,
4486 bucket_blkno(target),
Tao Ma01225592008-08-18 17:38:53 +08004487 num_clusters);
Joel Becker92de1092008-11-25 17:06:40 -08004488 if (ret)
4489 mlog_errno(ret);
4490 }
4491
Tao Ma01225592008-08-18 17:38:53 +08004492out:
Joel Becker92de1092008-11-25 17:06:40 -08004493 ocfs2_xattr_bucket_free(first);
Joel Beckered29c0c2008-11-26 15:08:44 -08004494
Tao Ma01225592008-08-18 17:38:53 +08004495 return ret;
4496}
4497
4498static inline char *ocfs2_xattr_bucket_get_val(struct inode *inode,
4499 struct ocfs2_xattr_bucket *bucket,
4500 int offs)
4501{
4502 int block_off = offs >> inode->i_sb->s_blocksize_bits;
4503
4504 offs = offs % inode->i_sb->s_blocksize;
Joel Becker51def392008-10-24 16:57:21 -07004505 return bucket_block(bucket, block_off) + offs;
Tao Ma01225592008-08-18 17:38:53 +08004506}
4507
4508/*
4509 * Handle the normal xattr set, including replace, delete and new.
Tao Ma01225592008-08-18 17:38:53 +08004510 *
4511 * Note: "local" indicates the real data's locality. So we can't
4512 * just its bucket locality by its length.
4513 */
4514static void ocfs2_xattr_set_entry_normal(struct inode *inode,
4515 struct ocfs2_xattr_info *xi,
4516 struct ocfs2_xattr_search *xs,
4517 u32 name_hash,
Tao Ma5a095612008-09-19 22:17:41 +08004518 int local)
Tao Ma01225592008-08-18 17:38:53 +08004519{
4520 struct ocfs2_xattr_entry *last, *xe;
4521 int name_len = strlen(xi->name);
4522 struct ocfs2_xattr_header *xh = xs->header;
4523 u16 count = le16_to_cpu(xh->xh_count), start;
4524 size_t blocksize = inode->i_sb->s_blocksize;
4525 char *val;
4526 size_t offs, size, new_size;
4527
4528 last = &xh->xh_entries[count];
4529 if (!xs->not_found) {
4530 xe = xs->here;
4531 offs = le16_to_cpu(xe->xe_name_offset);
4532 if (ocfs2_xattr_is_local(xe))
4533 size = OCFS2_XATTR_SIZE(name_len) +
4534 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
4535 else
4536 size = OCFS2_XATTR_SIZE(name_len) +
4537 OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
4538
4539 /*
4540 * If the new value will be stored outside, xi->value has been
4541 * initalized as an empty ocfs2_xattr_value_root, and the same
4542 * goes with xi->value_len, so we can set new_size safely here.
4543 * See ocfs2_xattr_set_in_bucket.
4544 */
4545 new_size = OCFS2_XATTR_SIZE(name_len) +
4546 OCFS2_XATTR_SIZE(xi->value_len);
4547
4548 le16_add_cpu(&xh->xh_name_value_len, -size);
4549 if (xi->value) {
4550 if (new_size > size)
4551 goto set_new_name_value;
4552
4553 /* Now replace the old value with new one. */
4554 if (local)
4555 xe->xe_value_size = cpu_to_le64(xi->value_len);
4556 else
4557 xe->xe_value_size = 0;
4558
4559 val = ocfs2_xattr_bucket_get_val(inode,
Joel Beckerba937122008-10-24 19:13:20 -07004560 xs->bucket, offs);
Tao Ma01225592008-08-18 17:38:53 +08004561 memset(val + OCFS2_XATTR_SIZE(name_len), 0,
4562 size - OCFS2_XATTR_SIZE(name_len));
4563 if (OCFS2_XATTR_SIZE(xi->value_len) > 0)
4564 memcpy(val + OCFS2_XATTR_SIZE(name_len),
4565 xi->value, xi->value_len);
4566
4567 le16_add_cpu(&xh->xh_name_value_len, new_size);
4568 ocfs2_xattr_set_local(xe, local);
4569 return;
4570 } else {
Tao Ma5a095612008-09-19 22:17:41 +08004571 /*
4572 * Remove the old entry if there is more than one.
4573 * We don't remove the last entry so that we can
4574 * use it to indicate the hash value of the empty
4575 * bucket.
4576 */
Tao Ma01225592008-08-18 17:38:53 +08004577 last -= 1;
Tao Ma01225592008-08-18 17:38:53 +08004578 le16_add_cpu(&xh->xh_count, -1);
Tao Ma5a095612008-09-19 22:17:41 +08004579 if (xh->xh_count) {
4580 memmove(xe, xe + 1,
4581 (void *)last - (void *)xe);
4582 memset(last, 0,
4583 sizeof(struct ocfs2_xattr_entry));
4584 } else
4585 xh->xh_free_start =
4586 cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
4587
Tao Ma01225592008-08-18 17:38:53 +08004588 return;
4589 }
4590 } else {
4591 /* find a new entry for insert. */
4592 int low = 0, high = count - 1, tmp;
4593 struct ocfs2_xattr_entry *tmp_xe;
4594
Tao Ma5a095612008-09-19 22:17:41 +08004595 while (low <= high && count) {
Tao Ma01225592008-08-18 17:38:53 +08004596 tmp = (low + high) / 2;
4597 tmp_xe = &xh->xh_entries[tmp];
4598
4599 if (name_hash > le32_to_cpu(tmp_xe->xe_name_hash))
4600 low = tmp + 1;
4601 else if (name_hash <
4602 le32_to_cpu(tmp_xe->xe_name_hash))
4603 high = tmp - 1;
Tao Ma06b240d2008-09-19 22:16:34 +08004604 else {
4605 low = tmp;
Tao Ma01225592008-08-18 17:38:53 +08004606 break;
Tao Ma06b240d2008-09-19 22:16:34 +08004607 }
Tao Ma01225592008-08-18 17:38:53 +08004608 }
4609
4610 xe = &xh->xh_entries[low];
4611 if (low != count)
4612 memmove(xe + 1, xe, (void *)last - (void *)xe);
4613
4614 le16_add_cpu(&xh->xh_count, 1);
4615 memset(xe, 0, sizeof(struct ocfs2_xattr_entry));
4616 xe->xe_name_hash = cpu_to_le32(name_hash);
4617 xe->xe_name_len = name_len;
4618 ocfs2_xattr_set_type(xe, xi->name_index);
4619 }
4620
4621set_new_name_value:
4622 /* Insert the new name+value. */
4623 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(xi->value_len);
4624
4625 /*
4626 * We must make sure that the name/value pair
4627 * exists in the same block.
4628 */
4629 offs = le16_to_cpu(xh->xh_free_start);
4630 start = offs - size;
4631
4632 if (start >> inode->i_sb->s_blocksize_bits !=
4633 (offs - 1) >> inode->i_sb->s_blocksize_bits) {
4634 offs = offs - offs % blocksize;
4635 xh->xh_free_start = cpu_to_le16(offs);
4636 }
4637
Joel Beckerba937122008-10-24 19:13:20 -07004638 val = ocfs2_xattr_bucket_get_val(inode, xs->bucket, offs - size);
Tao Ma01225592008-08-18 17:38:53 +08004639 xe->xe_name_offset = cpu_to_le16(offs - size);
4640
4641 memset(val, 0, size);
4642 memcpy(val, xi->name, name_len);
4643 memcpy(val + OCFS2_XATTR_SIZE(name_len), xi->value, xi->value_len);
4644
4645 xe->xe_value_size = cpu_to_le64(xi->value_len);
4646 ocfs2_xattr_set_local(xe, local);
4647 xs->here = xe;
4648 le16_add_cpu(&xh->xh_free_start, -size);
4649 le16_add_cpu(&xh->xh_name_value_len, size);
4650
4651 return;
4652}
4653
Tao Ma01225592008-08-18 17:38:53 +08004654/*
4655 * Set the xattr entry in the specified bucket.
4656 * The bucket is indicated by xs->bucket and it should have the enough
4657 * space for the xattr insertion.
4658 */
4659static int ocfs2_xattr_set_entry_in_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004660 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004661 struct ocfs2_xattr_info *xi,
4662 struct ocfs2_xattr_search *xs,
4663 u32 name_hash,
Tao Ma5a095612008-09-19 22:17:41 +08004664 int local)
Tao Ma01225592008-08-18 17:38:53 +08004665{
Joel Becker1224be02008-10-24 18:47:33 -07004666 int ret;
Joel Becker02dbf382008-10-27 18:07:45 -07004667 u64 blkno;
Tao Ma01225592008-08-18 17:38:53 +08004668
Mark Fashehff1ec202008-08-19 10:54:29 -07004669 mlog(0, "Set xattr entry len = %lu index = %d in bucket %llu\n",
4670 (unsigned long)xi->value_len, xi->name_index,
Joel Beckerba937122008-10-24 19:13:20 -07004671 (unsigned long long)bucket_blkno(xs->bucket));
Tao Ma01225592008-08-18 17:38:53 +08004672
Joel Beckerba937122008-10-24 19:13:20 -07004673 if (!xs->bucket->bu_bhs[1]) {
Joel Becker02dbf382008-10-27 18:07:45 -07004674 blkno = bucket_blkno(xs->bucket);
4675 ocfs2_xattr_bucket_relse(xs->bucket);
4676 ret = ocfs2_read_xattr_bucket(xs->bucket, blkno);
Tao Ma01225592008-08-18 17:38:53 +08004677 if (ret) {
4678 mlog_errno(ret);
4679 goto out;
4680 }
4681 }
4682
Joel Beckerba937122008-10-24 19:13:20 -07004683 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
Joel Becker1224be02008-10-24 18:47:33 -07004684 OCFS2_JOURNAL_ACCESS_WRITE);
4685 if (ret < 0) {
4686 mlog_errno(ret);
4687 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004688 }
4689
Tao Ma5a095612008-09-19 22:17:41 +08004690 ocfs2_xattr_set_entry_normal(inode, xi, xs, name_hash, local);
Joel Beckerba937122008-10-24 19:13:20 -07004691 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004692
Tao Ma01225592008-08-18 17:38:53 +08004693out:
Tao Ma01225592008-08-18 17:38:53 +08004694 return ret;
4695}
4696
Tao Ma01225592008-08-18 17:38:53 +08004697/*
4698 * Truncate the specified xe_off entry in xattr bucket.
4699 * bucket is indicated by header_bh and len is the new length.
4700 * Both the ocfs2_xattr_value_root and the entry will be updated here.
4701 *
4702 * Copy the new updated xe and xe_value_root to new_xe and new_xv if needed.
4703 */
4704static int ocfs2_xattr_bucket_value_truncate(struct inode *inode,
Joel Becker548b0f22008-11-24 19:32:13 -08004705 struct ocfs2_xattr_bucket *bucket,
Tao Ma01225592008-08-18 17:38:53 +08004706 int xe_off,
Tao Ma78f30c32008-11-12 08:27:00 +08004707 int len,
4708 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004709{
4710 int ret, offset;
4711 u64 value_blk;
Tao Ma01225592008-08-18 17:38:53 +08004712 struct ocfs2_xattr_entry *xe;
Joel Becker548b0f22008-11-24 19:32:13 -08004713 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma01225592008-08-18 17:38:53 +08004714 size_t blocksize = inode->i_sb->s_blocksize;
Joel Beckerb3e5d372008-12-09 15:01:04 -08004715 struct ocfs2_xattr_value_buf vb = {
4716 .vb_access = ocfs2_journal_access,
4717 };
Tao Ma01225592008-08-18 17:38:53 +08004718
4719 xe = &xh->xh_entries[xe_off];
4720
4721 BUG_ON(!xe || ocfs2_xattr_is_local(xe));
4722
4723 offset = le16_to_cpu(xe->xe_name_offset) +
4724 OCFS2_XATTR_SIZE(xe->xe_name_len);
4725
4726 value_blk = offset / blocksize;
4727
4728 /* We don't allow ocfs2_xattr_value to be stored in different block. */
4729 BUG_ON(value_blk != (offset + OCFS2_XATTR_ROOT_SIZE - 1) / blocksize);
Tao Ma01225592008-08-18 17:38:53 +08004730
Joel Beckerb3e5d372008-12-09 15:01:04 -08004731 vb.vb_bh = bucket->bu_bhs[value_blk];
4732 BUG_ON(!vb.vb_bh);
Tao Ma01225592008-08-18 17:38:53 +08004733
Joel Beckerb3e5d372008-12-09 15:01:04 -08004734 vb.vb_xv = (struct ocfs2_xattr_value_root *)
4735 (vb.vb_bh->b_data + offset % blocksize);
Tao Ma01225592008-08-18 17:38:53 +08004736
Joel Becker548b0f22008-11-24 19:32:13 -08004737 /*
4738 * From here on out we have to dirty the bucket. The generic
4739 * value calls only modify one of the bucket's bhs, but we need
4740 * to send the bucket at once. So if they error, they *could* have
4741 * modified something. We have to assume they did, and dirty
4742 * the whole bucket. This leaves us in a consistent state.
4743 */
Tao Ma01225592008-08-18 17:38:53 +08004744 mlog(0, "truncate %u in xattr bucket %llu to %d bytes.\n",
Joel Becker548b0f22008-11-24 19:32:13 -08004745 xe_off, (unsigned long long)bucket_blkno(bucket), len);
Joel Beckerb3e5d372008-12-09 15:01:04 -08004746 ret = ocfs2_xattr_value_truncate(inode, &vb, len, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004747 if (ret) {
4748 mlog_errno(ret);
Tao Ma554e7f92009-01-08 08:21:43 +08004749 goto out;
4750 }
4751
4752 ret = ocfs2_xattr_bucket_journal_access(ctxt->handle, bucket,
4753 OCFS2_JOURNAL_ACCESS_WRITE);
4754 if (ret) {
4755 mlog_errno(ret);
4756 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004757 }
4758
Joel Becker548b0f22008-11-24 19:32:13 -08004759 xe->xe_value_size = cpu_to_le64(len);
4760
Joel Becker548b0f22008-11-24 19:32:13 -08004761 ocfs2_xattr_bucket_journal_dirty(ctxt->handle, bucket);
Tao Ma01225592008-08-18 17:38:53 +08004762
4763out:
Tao Ma01225592008-08-18 17:38:53 +08004764 return ret;
4765}
4766
4767static int ocfs2_xattr_bucket_value_truncate_xs(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +08004768 struct ocfs2_xattr_search *xs,
4769 int len,
4770 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004771{
4772 int ret, offset;
4773 struct ocfs2_xattr_entry *xe = xs->here;
4774 struct ocfs2_xattr_header *xh = (struct ocfs2_xattr_header *)xs->base;
4775
Joel Beckerba937122008-10-24 19:13:20 -07004776 BUG_ON(!xs->bucket->bu_bhs[0] || !xe || ocfs2_xattr_is_local(xe));
Tao Ma01225592008-08-18 17:38:53 +08004777
4778 offset = xe - xh->xh_entries;
Joel Becker548b0f22008-11-24 19:32:13 -08004779 ret = ocfs2_xattr_bucket_value_truncate(inode, xs->bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08004780 offset, len, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004781 if (ret)
4782 mlog_errno(ret);
4783
4784 return ret;
4785}
4786
4787static int ocfs2_xattr_bucket_set_value_outside(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004788 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004789 struct ocfs2_xattr_search *xs,
4790 char *val,
4791 int value_len)
4792{
4793 int offset;
4794 struct ocfs2_xattr_value_root *xv;
4795 struct ocfs2_xattr_entry *xe = xs->here;
4796
4797 BUG_ON(!xs->base || !xe || ocfs2_xattr_is_local(xe));
4798
4799 offset = le16_to_cpu(xe->xe_name_offset) +
4800 OCFS2_XATTR_SIZE(xe->xe_name_len);
4801
4802 xv = (struct ocfs2_xattr_value_root *)(xs->base + offset);
4803
Tao Ma85db90e2008-11-12 08:27:01 +08004804 return __ocfs2_xattr_set_value_outside(inode, handle,
4805 xv, val, value_len);
Tao Ma01225592008-08-18 17:38:53 +08004806}
4807
Tao Ma01225592008-08-18 17:38:53 +08004808static int ocfs2_rm_xattr_cluster(struct inode *inode,
4809 struct buffer_head *root_bh,
4810 u64 blkno,
4811 u32 cpos,
4812 u32 len)
4813{
4814 int ret;
4815 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4816 struct inode *tl_inode = osb->osb_tl_inode;
4817 handle_t *handle;
4818 struct ocfs2_xattr_block *xb =
4819 (struct ocfs2_xattr_block *)root_bh->b_data;
Tao Ma01225592008-08-18 17:38:53 +08004820 struct ocfs2_alloc_context *meta_ac = NULL;
4821 struct ocfs2_cached_dealloc_ctxt dealloc;
Joel Beckerf99b9b72008-08-20 19:36:33 -07004822 struct ocfs2_extent_tree et;
4823
Joel Becker8d6220d2008-08-22 12:46:09 -07004824 ocfs2_init_xattr_tree_extent_tree(&et, inode, root_bh);
Tao Ma01225592008-08-18 17:38:53 +08004825
4826 ocfs2_init_dealloc_ctxt(&dealloc);
4827
4828 mlog(0, "rm xattr extent rec at %u len = %u, start from %llu\n",
4829 cpos, len, (unsigned long long)blkno);
4830
4831 ocfs2_remove_xattr_clusters_from_cache(inode, blkno, len);
4832
Joel Beckerf99b9b72008-08-20 19:36:33 -07004833 ret = ocfs2_lock_allocators(inode, &et, 0, 1, NULL, &meta_ac);
Tao Ma01225592008-08-18 17:38:53 +08004834 if (ret) {
4835 mlog_errno(ret);
4836 return ret;
4837 }
4838
4839 mutex_lock(&tl_inode->i_mutex);
4840
4841 if (ocfs2_truncate_log_needs_flush(osb)) {
4842 ret = __ocfs2_flush_truncate_log(osb);
4843 if (ret < 0) {
4844 mlog_errno(ret);
4845 goto out;
4846 }
4847 }
4848
Jan Karaa90714c2008-10-09 19:38:40 +02004849 handle = ocfs2_start_trans(osb, ocfs2_remove_extent_credits(osb->sb));
Tao Mad3264792008-10-24 07:57:28 +08004850 if (IS_ERR(handle)) {
Tao Ma01225592008-08-18 17:38:53 +08004851 ret = -ENOMEM;
4852 mlog_errno(ret);
4853 goto out;
4854 }
4855
Joel Becker84008972008-12-09 16:11:49 -08004856 ret = ocfs2_journal_access_xb(handle, inode, root_bh,
4857 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004858 if (ret) {
4859 mlog_errno(ret);
4860 goto out_commit;
4861 }
4862
Joel Beckerf99b9b72008-08-20 19:36:33 -07004863 ret = ocfs2_remove_extent(inode, &et, cpos, len, handle, meta_ac,
4864 &dealloc);
Tao Ma01225592008-08-18 17:38:53 +08004865 if (ret) {
4866 mlog_errno(ret);
4867 goto out_commit;
4868 }
4869
4870 le32_add_cpu(&xb->xb_attrs.xb_root.xt_clusters, -len);
4871
4872 ret = ocfs2_journal_dirty(handle, root_bh);
4873 if (ret) {
4874 mlog_errno(ret);
4875 goto out_commit;
4876 }
4877
4878 ret = ocfs2_truncate_log_append(osb, handle, blkno, len);
4879 if (ret)
4880 mlog_errno(ret);
4881
4882out_commit:
4883 ocfs2_commit_trans(osb, handle);
4884out:
4885 ocfs2_schedule_truncate_log_flush(osb, 1);
4886
4887 mutex_unlock(&tl_inode->i_mutex);
4888
4889 if (meta_ac)
4890 ocfs2_free_alloc_context(meta_ac);
4891
4892 ocfs2_run_deallocs(osb, &dealloc);
4893
4894 return ret;
4895}
4896
Tao Ma01225592008-08-18 17:38:53 +08004897static void ocfs2_xattr_bucket_remove_xs(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004898 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004899 struct ocfs2_xattr_search *xs)
4900{
Joel Beckerba937122008-10-24 19:13:20 -07004901 struct ocfs2_xattr_header *xh = bucket_xh(xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004902 struct ocfs2_xattr_entry *last = &xh->xh_entries[
4903 le16_to_cpu(xh->xh_count) - 1];
4904 int ret = 0;
4905
Joel Beckerba937122008-10-24 19:13:20 -07004906 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
Joel Becker1224be02008-10-24 18:47:33 -07004907 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004908 if (ret) {
4909 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08004910 return;
Tao Ma01225592008-08-18 17:38:53 +08004911 }
4912
4913 /* Remove the old entry. */
4914 memmove(xs->here, xs->here + 1,
4915 (void *)last - (void *)xs->here);
4916 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
4917 le16_add_cpu(&xh->xh_count, -1);
4918
Joel Beckerba937122008-10-24 19:13:20 -07004919 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004920}
4921
4922/*
4923 * Set the xattr name/value in the bucket specified in xs.
4924 *
4925 * As the new value in xi may be stored in the bucket or in an outside cluster,
4926 * we divide the whole process into 3 steps:
4927 * 1. insert name/value in the bucket(ocfs2_xattr_set_entry_in_bucket)
4928 * 2. truncate of the outside cluster(ocfs2_xattr_bucket_value_truncate_xs)
4929 * 3. Set the value to the outside cluster(ocfs2_xattr_bucket_set_value_outside)
4930 * 4. If the clusters for the new outside value can't be allocated, we need
4931 * to free the xattr we allocated in set.
4932 */
4933static int ocfs2_xattr_set_in_bucket(struct inode *inode,
4934 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08004935 struct ocfs2_xattr_search *xs,
4936 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004937{
Tao Ma5a095612008-09-19 22:17:41 +08004938 int ret, local = 1;
Tao Ma01225592008-08-18 17:38:53 +08004939 size_t value_len;
4940 char *val = (char *)xi->value;
4941 struct ocfs2_xattr_entry *xe = xs->here;
Tao Ma2057e5c2008-10-09 23:06:13 +08004942 u32 name_hash = ocfs2_xattr_name_hash(inode, xi->name,
4943 strlen(xi->name));
Tao Ma01225592008-08-18 17:38:53 +08004944
4945 if (!xs->not_found && !ocfs2_xattr_is_local(xe)) {
4946 /*
4947 * We need to truncate the xattr storage first.
4948 *
4949 * If both the old and new value are stored to
4950 * outside block, we only need to truncate
4951 * the storage and then set the value outside.
4952 *
4953 * If the new value should be stored within block,
4954 * we should free all the outside block first and
4955 * the modification to the xattr block will be done
4956 * by following steps.
4957 */
4958 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
4959 value_len = xi->value_len;
4960 else
4961 value_len = 0;
4962
4963 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
Tao Ma78f30c32008-11-12 08:27:00 +08004964 value_len,
4965 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004966 if (ret)
4967 goto out;
4968
4969 if (value_len)
4970 goto set_value_outside;
4971 }
4972
4973 value_len = xi->value_len;
4974 /* So we have to handle the inside block change now. */
4975 if (value_len > OCFS2_XATTR_INLINE_SIZE) {
4976 /*
4977 * If the new value will be stored outside of block,
4978 * initalize a new empty value root and insert it first.
4979 */
4980 local = 0;
4981 xi->value = &def_xv;
4982 xi->value_len = OCFS2_XATTR_ROOT_SIZE;
4983 }
4984
Tao Ma85db90e2008-11-12 08:27:01 +08004985 ret = ocfs2_xattr_set_entry_in_bucket(inode, ctxt->handle, xi, xs,
4986 name_hash, local);
Tao Ma01225592008-08-18 17:38:53 +08004987 if (ret) {
4988 mlog_errno(ret);
4989 goto out;
4990 }
4991
Tao Ma5a095612008-09-19 22:17:41 +08004992 if (value_len <= OCFS2_XATTR_INLINE_SIZE)
4993 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004994
Tao Ma5a095612008-09-19 22:17:41 +08004995 /* allocate the space now for the outside block storage. */
4996 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
Tao Ma78f30c32008-11-12 08:27:00 +08004997 value_len, ctxt);
Tao Ma5a095612008-09-19 22:17:41 +08004998 if (ret) {
4999 mlog_errno(ret);
5000
5001 if (xs->not_found) {
5002 /*
5003 * We can't allocate enough clusters for outside
5004 * storage and we have allocated xattr already,
5005 * so need to remove it.
5006 */
Tao Ma85db90e2008-11-12 08:27:01 +08005007 ocfs2_xattr_bucket_remove_xs(inode, ctxt->handle, xs);
Tao Ma01225592008-08-18 17:38:53 +08005008 }
Tao Ma01225592008-08-18 17:38:53 +08005009 goto out;
5010 }
5011
5012set_value_outside:
Tao Ma85db90e2008-11-12 08:27:01 +08005013 ret = ocfs2_xattr_bucket_set_value_outside(inode, ctxt->handle,
5014 xs, val, value_len);
Tao Ma01225592008-08-18 17:38:53 +08005015out:
5016 return ret;
5017}
5018
Tao Ma80bcaf32008-10-27 06:06:24 +08005019/*
5020 * check whether the xattr bucket is filled up with the same hash value.
5021 * If we want to insert the xattr with the same hash, return -ENOSPC.
5022 * If we want to insert a xattr with different hash value, go ahead
5023 * and ocfs2_divide_xattr_bucket will handle this.
5024 */
Tao Ma01225592008-08-18 17:38:53 +08005025static int ocfs2_check_xattr_bucket_collision(struct inode *inode,
Tao Ma80bcaf32008-10-27 06:06:24 +08005026 struct ocfs2_xattr_bucket *bucket,
5027 const char *name)
Tao Ma01225592008-08-18 17:38:53 +08005028{
Joel Becker3e632942008-10-24 17:04:49 -07005029 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08005030 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
5031
5032 if (name_hash != le32_to_cpu(xh->xh_entries[0].xe_name_hash))
5033 return 0;
Tao Ma01225592008-08-18 17:38:53 +08005034
5035 if (xh->xh_entries[le16_to_cpu(xh->xh_count) - 1].xe_name_hash ==
5036 xh->xh_entries[0].xe_name_hash) {
5037 mlog(ML_ERROR, "Too much hash collision in xattr bucket %llu, "
5038 "hash = %u\n",
Joel Becker9c7759a2008-10-24 16:21:03 -07005039 (unsigned long long)bucket_blkno(bucket),
Tao Ma01225592008-08-18 17:38:53 +08005040 le32_to_cpu(xh->xh_entries[0].xe_name_hash));
5041 return -ENOSPC;
5042 }
5043
5044 return 0;
5045}
5046
5047static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
5048 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08005049 struct ocfs2_xattr_search *xs,
5050 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08005051{
5052 struct ocfs2_xattr_header *xh;
5053 struct ocfs2_xattr_entry *xe;
5054 u16 count, header_size, xh_free_start;
Joel Becker6dde41d2008-10-24 17:16:48 -07005055 int free, max_free, need, old;
Tao Ma01225592008-08-18 17:38:53 +08005056 size_t value_size = 0, name_len = strlen(xi->name);
5057 size_t blocksize = inode->i_sb->s_blocksize;
5058 int ret, allocation = 0;
Tao Ma01225592008-08-18 17:38:53 +08005059
5060 mlog_entry("Set xattr %s in xattr index block\n", xi->name);
5061
5062try_again:
5063 xh = xs->header;
5064 count = le16_to_cpu(xh->xh_count);
5065 xh_free_start = le16_to_cpu(xh->xh_free_start);
5066 header_size = sizeof(struct ocfs2_xattr_header) +
5067 count * sizeof(struct ocfs2_xattr_entry);
5068 max_free = OCFS2_XATTR_BUCKET_SIZE -
5069 le16_to_cpu(xh->xh_name_value_len) - header_size;
5070
5071 mlog_bug_on_msg(header_size > blocksize, "bucket %llu has header size "
5072 "of %u which exceed block size\n",
Joel Beckerba937122008-10-24 19:13:20 -07005073 (unsigned long long)bucket_blkno(xs->bucket),
Tao Ma01225592008-08-18 17:38:53 +08005074 header_size);
5075
5076 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE)
5077 value_size = OCFS2_XATTR_ROOT_SIZE;
5078 else if (xi->value)
5079 value_size = OCFS2_XATTR_SIZE(xi->value_len);
5080
5081 if (xs->not_found)
5082 need = sizeof(struct ocfs2_xattr_entry) +
5083 OCFS2_XATTR_SIZE(name_len) + value_size;
5084 else {
5085 need = value_size + OCFS2_XATTR_SIZE(name_len);
5086
5087 /*
5088 * We only replace the old value if the new length is smaller
5089 * than the old one. Otherwise we will allocate new space in the
5090 * bucket to store it.
5091 */
5092 xe = xs->here;
5093 if (ocfs2_xattr_is_local(xe))
5094 old = OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
5095 else
5096 old = OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
5097
5098 if (old >= value_size)
5099 need = 0;
5100 }
5101
5102 free = xh_free_start - header_size;
5103 /*
5104 * We need to make sure the new name/value pair
5105 * can exist in the same block.
5106 */
5107 if (xh_free_start % blocksize < need)
5108 free -= xh_free_start % blocksize;
5109
5110 mlog(0, "xs->not_found = %d, in xattr bucket %llu: free = %d, "
5111 "need = %d, max_free = %d, xh_free_start = %u, xh_name_value_len ="
5112 " %u\n", xs->not_found,
Joel Beckerba937122008-10-24 19:13:20 -07005113 (unsigned long long)bucket_blkno(xs->bucket),
Tao Ma01225592008-08-18 17:38:53 +08005114 free, need, max_free, le16_to_cpu(xh->xh_free_start),
5115 le16_to_cpu(xh->xh_name_value_len));
5116
Tao Ma976331d2008-11-12 08:26:57 +08005117 if (free < need ||
5118 (xs->not_found &&
5119 count == ocfs2_xattr_max_xe_in_bucket(inode->i_sb))) {
Tao Ma01225592008-08-18 17:38:53 +08005120 if (need <= max_free &&
5121 count < ocfs2_xattr_max_xe_in_bucket(inode->i_sb)) {
5122 /*
5123 * We can create the space by defragment. Since only the
5124 * name/value will be moved, the xe shouldn't be changed
5125 * in xs.
5126 */
Tao Ma85db90e2008-11-12 08:27:01 +08005127 ret = ocfs2_defrag_xattr_bucket(inode, ctxt->handle,
5128 xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08005129 if (ret) {
5130 mlog_errno(ret);
5131 goto out;
5132 }
5133
5134 xh_free_start = le16_to_cpu(xh->xh_free_start);
5135 free = xh_free_start - header_size;
5136 if (xh_free_start % blocksize < need)
5137 free -= xh_free_start % blocksize;
5138
5139 if (free >= need)
5140 goto xattr_set;
5141
5142 mlog(0, "Can't get enough space for xattr insert by "
5143 "defragment. Need %u bytes, but we have %d, so "
5144 "allocate new bucket for it.\n", need, free);
5145 }
5146
5147 /*
5148 * We have to add new buckets or clusters and one
5149 * allocation should leave us enough space for insert.
5150 */
5151 BUG_ON(allocation);
5152
5153 /*
5154 * We do not allow for overlapping ranges between buckets. And
5155 * the maximum number of collisions we will allow for then is
5156 * one bucket's worth, so check it here whether we need to
5157 * add a new bucket for the insert.
5158 */
Tao Ma80bcaf32008-10-27 06:06:24 +08005159 ret = ocfs2_check_xattr_bucket_collision(inode,
Joel Beckerba937122008-10-24 19:13:20 -07005160 xs->bucket,
Tao Ma80bcaf32008-10-27 06:06:24 +08005161 xi->name);
Tao Ma01225592008-08-18 17:38:53 +08005162 if (ret) {
5163 mlog_errno(ret);
5164 goto out;
5165 }
5166
5167 ret = ocfs2_add_new_xattr_bucket(inode,
5168 xs->xattr_bh,
Joel Becker91f20332008-11-26 15:25:41 -08005169 xs->bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08005170 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08005171 if (ret) {
5172 mlog_errno(ret);
5173 goto out;
5174 }
5175
Joel Becker91f20332008-11-26 15:25:41 -08005176 /*
5177 * ocfs2_add_new_xattr_bucket() will have updated
5178 * xs->bucket if it moved, but it will not have updated
5179 * any of the other search fields. Thus, we drop it and
5180 * re-search. Everything should be cached, so it'll be
5181 * quick.
5182 */
Joel Beckerba937122008-10-24 19:13:20 -07005183 ocfs2_xattr_bucket_relse(xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08005184 ret = ocfs2_xattr_index_block_find(inode, xs->xattr_bh,
5185 xi->name_index,
5186 xi->name, xs);
5187 if (ret && ret != -ENODATA)
5188 goto out;
5189 xs->not_found = ret;
5190 allocation = 1;
5191 goto try_again;
5192 }
5193
5194xattr_set:
Tao Ma78f30c32008-11-12 08:27:00 +08005195 ret = ocfs2_xattr_set_in_bucket(inode, xi, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08005196out:
5197 mlog_exit(ret);
5198 return ret;
5199}
Tao Maa3944252008-08-18 17:38:54 +08005200
5201static int ocfs2_delete_xattr_in_bucket(struct inode *inode,
5202 struct ocfs2_xattr_bucket *bucket,
5203 void *para)
5204{
5205 int ret = 0;
Joel Becker3e632942008-10-24 17:04:49 -07005206 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Maa3944252008-08-18 17:38:54 +08005207 u16 i;
5208 struct ocfs2_xattr_entry *xe;
Tao Ma78f30c32008-11-12 08:27:00 +08005209 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5210 struct ocfs2_xattr_set_ctxt ctxt = {NULL, NULL,};
Joel Becker548b0f22008-11-24 19:32:13 -08005211 int credits = ocfs2_remove_extent_credits(osb->sb) +
5212 ocfs2_blocks_per_xattr_bucket(inode->i_sb);
5213
Tao Ma78f30c32008-11-12 08:27:00 +08005214
5215 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
Tao Maa3944252008-08-18 17:38:54 +08005216
5217 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
5218 xe = &xh->xh_entries[i];
5219 if (ocfs2_xattr_is_local(xe))
5220 continue;
5221
Tao Ma88c3b062008-12-11 08:54:11 +08005222 ctxt.handle = ocfs2_start_trans(osb, credits);
5223 if (IS_ERR(ctxt.handle)) {
5224 ret = PTR_ERR(ctxt.handle);
5225 mlog_errno(ret);
5226 break;
5227 }
5228
Joel Becker548b0f22008-11-24 19:32:13 -08005229 ret = ocfs2_xattr_bucket_value_truncate(inode, bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08005230 i, 0, &ctxt);
Tao Ma88c3b062008-12-11 08:54:11 +08005231
5232 ocfs2_commit_trans(osb, ctxt.handle);
Tao Maa3944252008-08-18 17:38:54 +08005233 if (ret) {
5234 mlog_errno(ret);
5235 break;
5236 }
5237 }
5238
Tao Ma78f30c32008-11-12 08:27:00 +08005239 ocfs2_schedule_truncate_log_flush(osb, 1);
5240 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tao Maa3944252008-08-18 17:38:54 +08005241 return ret;
5242}
5243
5244static int ocfs2_delete_xattr_index_block(struct inode *inode,
5245 struct buffer_head *xb_bh)
5246{
5247 struct ocfs2_xattr_block *xb =
5248 (struct ocfs2_xattr_block *)xb_bh->b_data;
5249 struct ocfs2_extent_list *el = &xb->xb_attrs.xb_root.xt_list;
5250 int ret = 0;
5251 u32 name_hash = UINT_MAX, e_cpos, num_clusters;
5252 u64 p_blkno;
5253
5254 if (le16_to_cpu(el->l_next_free_rec) == 0)
5255 return 0;
5256
5257 while (name_hash > 0) {
5258 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
5259 &e_cpos, &num_clusters, el);
5260 if (ret) {
5261 mlog_errno(ret);
5262 goto out;
5263 }
5264
5265 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
5266 ocfs2_delete_xattr_in_bucket,
5267 NULL);
5268 if (ret) {
5269 mlog_errno(ret);
5270 goto out;
5271 }
5272
5273 ret = ocfs2_rm_xattr_cluster(inode, xb_bh,
5274 p_blkno, e_cpos, num_clusters);
5275 if (ret) {
5276 mlog_errno(ret);
5277 break;
5278 }
5279
5280 if (e_cpos == 0)
5281 break;
5282
5283 name_hash = e_cpos - 1;
5284 }
5285
5286out:
5287 return ret;
5288}
Mark Fasheh99219ae2008-10-07 14:52:59 -07005289
5290/*
Tiger Yang923f7f32008-11-14 11:16:27 +08005291 * 'security' attributes support
5292 */
5293static size_t ocfs2_xattr_security_list(struct inode *inode, char *list,
5294 size_t list_size, const char *name,
5295 size_t name_len)
5296{
5297 const size_t prefix_len = XATTR_SECURITY_PREFIX_LEN;
5298 const size_t total_len = prefix_len + name_len + 1;
5299
5300 if (list && total_len <= list_size) {
5301 memcpy(list, XATTR_SECURITY_PREFIX, prefix_len);
5302 memcpy(list + prefix_len, name, name_len);
5303 list[prefix_len + name_len] = '\0';
5304 }
5305 return total_len;
5306}
5307
5308static int ocfs2_xattr_security_get(struct inode *inode, const char *name,
5309 void *buffer, size_t size)
5310{
5311 if (strcmp(name, "") == 0)
5312 return -EINVAL;
5313 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_SECURITY, name,
5314 buffer, size);
5315}
5316
5317static int ocfs2_xattr_security_set(struct inode *inode, const char *name,
5318 const void *value, size_t size, int flags)
5319{
5320 if (strcmp(name, "") == 0)
5321 return -EINVAL;
5322
5323 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_SECURITY, name, value,
5324 size, flags);
5325}
5326
Tiger Yang534eadd2008-11-14 11:16:41 +08005327int ocfs2_init_security_get(struct inode *inode,
5328 struct inode *dir,
5329 struct ocfs2_security_xattr_info *si)
5330{
Tiger Yang38d59ef2008-12-17 10:22:56 +08005331 /* check whether ocfs2 support feature xattr */
5332 if (!ocfs2_supports_xattr(OCFS2_SB(dir->i_sb)))
5333 return -EOPNOTSUPP;
Tiger Yang534eadd2008-11-14 11:16:41 +08005334 return security_inode_init_security(inode, dir, &si->name, &si->value,
5335 &si->value_len);
5336}
5337
5338int ocfs2_init_security_set(handle_t *handle,
5339 struct inode *inode,
5340 struct buffer_head *di_bh,
5341 struct ocfs2_security_xattr_info *si,
5342 struct ocfs2_alloc_context *xattr_ac,
5343 struct ocfs2_alloc_context *data_ac)
5344{
5345 return ocfs2_xattr_set_handle(handle, inode, di_bh,
5346 OCFS2_XATTR_INDEX_SECURITY,
5347 si->name, si->value, si->value_len, 0,
5348 xattr_ac, data_ac);
5349}
5350
Tiger Yang923f7f32008-11-14 11:16:27 +08005351struct xattr_handler ocfs2_xattr_security_handler = {
5352 .prefix = XATTR_SECURITY_PREFIX,
5353 .list = ocfs2_xattr_security_list,
5354 .get = ocfs2_xattr_security_get,
5355 .set = ocfs2_xattr_security_set,
5356};
5357
5358/*
Mark Fasheh99219ae2008-10-07 14:52:59 -07005359 * 'trusted' attributes support
5360 */
Mark Fasheh99219ae2008-10-07 14:52:59 -07005361static size_t ocfs2_xattr_trusted_list(struct inode *inode, char *list,
5362 size_t list_size, const char *name,
5363 size_t name_len)
5364{
Tiger Yangceb1eba2008-10-23 16:34:13 +08005365 const size_t prefix_len = XATTR_TRUSTED_PREFIX_LEN;
Mark Fasheh99219ae2008-10-07 14:52:59 -07005366 const size_t total_len = prefix_len + name_len + 1;
5367
5368 if (list && total_len <= list_size) {
5369 memcpy(list, XATTR_TRUSTED_PREFIX, prefix_len);
5370 memcpy(list + prefix_len, name, name_len);
5371 list[prefix_len + name_len] = '\0';
5372 }
5373 return total_len;
5374}
5375
5376static int ocfs2_xattr_trusted_get(struct inode *inode, const char *name,
5377 void *buffer, size_t size)
5378{
5379 if (strcmp(name, "") == 0)
5380 return -EINVAL;
5381 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_TRUSTED, name,
5382 buffer, size);
5383}
5384
5385static int ocfs2_xattr_trusted_set(struct inode *inode, const char *name,
5386 const void *value, size_t size, int flags)
5387{
5388 if (strcmp(name, "") == 0)
5389 return -EINVAL;
5390
5391 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_TRUSTED, name, value,
5392 size, flags);
5393}
5394
5395struct xattr_handler ocfs2_xattr_trusted_handler = {
5396 .prefix = XATTR_TRUSTED_PREFIX,
5397 .list = ocfs2_xattr_trusted_list,
5398 .get = ocfs2_xattr_trusted_get,
5399 .set = ocfs2_xattr_trusted_set,
5400};
5401
Mark Fasheh99219ae2008-10-07 14:52:59 -07005402/*
5403 * 'user' attributes support
5404 */
Mark Fasheh99219ae2008-10-07 14:52:59 -07005405static size_t ocfs2_xattr_user_list(struct inode *inode, char *list,
5406 size_t list_size, const char *name,
5407 size_t name_len)
5408{
Tiger Yangceb1eba2008-10-23 16:34:13 +08005409 const size_t prefix_len = XATTR_USER_PREFIX_LEN;
Mark Fasheh99219ae2008-10-07 14:52:59 -07005410 const size_t total_len = prefix_len + name_len + 1;
5411 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5412
5413 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5414 return 0;
5415
5416 if (list && total_len <= list_size) {
5417 memcpy(list, XATTR_USER_PREFIX, prefix_len);
5418 memcpy(list + prefix_len, name, name_len);
5419 list[prefix_len + name_len] = '\0';
5420 }
5421 return total_len;
5422}
5423
5424static int ocfs2_xattr_user_get(struct inode *inode, const char *name,
5425 void *buffer, size_t size)
5426{
5427 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5428
5429 if (strcmp(name, "") == 0)
5430 return -EINVAL;
5431 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5432 return -EOPNOTSUPP;
5433 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_USER, name,
5434 buffer, size);
5435}
5436
5437static int ocfs2_xattr_user_set(struct inode *inode, const char *name,
5438 const void *value, size_t size, int flags)
5439{
5440 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5441
5442 if (strcmp(name, "") == 0)
5443 return -EINVAL;
5444 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5445 return -EOPNOTSUPP;
5446
5447 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_USER, name, value,
5448 size, flags);
5449}
5450
5451struct xattr_handler ocfs2_xattr_user_handler = {
5452 .prefix = XATTR_USER_PREFIX,
5453 .list = ocfs2_xattr_user_list,
5454 .get = ocfs2_xattr_user_get,
5455 .set = ocfs2_xattr_user_set,
5456};