blob: eeb5b7caf1959d8ad1d3a39a573c558c608de8e4 [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"
Tao Ma492a8a32009-08-18 11:43:17 +080058#include "refcounttree.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080059
60struct ocfs2_xattr_def_value_root {
61 struct ocfs2_xattr_value_root xv;
62 struct ocfs2_extent_rec er;
63};
64
Tao Ma0c044f02008-08-18 17:38:50 +080065struct ocfs2_xattr_bucket {
Joel Beckerba937122008-10-24 19:13:20 -070066 /* The inode these xattrs are associated with */
67 struct inode *bu_inode;
68
69 /* The actual buffers that make up the bucket */
Joel Becker4ac60322008-10-18 19:11:42 -070070 struct buffer_head *bu_bhs[OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET];
Joel Beckerba937122008-10-24 19:13:20 -070071
72 /* How many blocks make up one bucket for this filesystem */
73 int bu_blocks;
Tao Ma0c044f02008-08-18 17:38:50 +080074};
75
Tao Ma78f30c32008-11-12 08:27:00 +080076struct ocfs2_xattr_set_ctxt {
Tao Ma85db90e2008-11-12 08:27:01 +080077 handle_t *handle;
Tao Ma78f30c32008-11-12 08:27:00 +080078 struct ocfs2_alloc_context *meta_ac;
79 struct ocfs2_alloc_context *data_ac;
80 struct ocfs2_cached_dealloc_ctxt dealloc;
81};
82
Tiger Yangcf1d6c72008-08-18 17:11:00 +080083#define OCFS2_XATTR_ROOT_SIZE (sizeof(struct ocfs2_xattr_def_value_root))
84#define OCFS2_XATTR_INLINE_SIZE 80
Tiger Yang4442f512009-02-20 11:11:50 +080085#define OCFS2_XATTR_HEADER_GAP 4
Tiger Yang534eadd2008-11-14 11:16:41 +080086#define OCFS2_XATTR_FREE_IN_IBODY (OCFS2_MIN_XATTR_INLINE_SIZE \
87 - sizeof(struct ocfs2_xattr_header) \
Tiger Yang4442f512009-02-20 11:11:50 +080088 - OCFS2_XATTR_HEADER_GAP)
Tiger Yang89c38bd2008-11-14 11:17:41 +080089#define OCFS2_XATTR_FREE_IN_BLOCK(ptr) ((ptr)->i_sb->s_blocksize \
90 - sizeof(struct ocfs2_xattr_block) \
91 - sizeof(struct ocfs2_xattr_header) \
Tiger Yang4442f512009-02-20 11:11:50 +080092 - OCFS2_XATTR_HEADER_GAP)
Tiger Yangcf1d6c72008-08-18 17:11:00 +080093
94static struct ocfs2_xattr_def_value_root def_xv = {
95 .xv.xr_list.l_count = cpu_to_le16(1),
96};
97
98struct xattr_handler *ocfs2_xattr_handlers[] = {
99 &ocfs2_xattr_user_handler,
Tiger Yang929fb012008-11-14 11:17:04 +0800100#ifdef CONFIG_OCFS2_FS_POSIX_ACL
101 &ocfs2_xattr_acl_access_handler,
102 &ocfs2_xattr_acl_default_handler,
103#endif
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800104 &ocfs2_xattr_trusted_handler,
Tiger Yang923f7f32008-11-14 11:16:27 +0800105 &ocfs2_xattr_security_handler,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800106 NULL
107};
108
Tiger Yangc988fd02008-10-23 16:34:44 +0800109static struct xattr_handler *ocfs2_xattr_handler_map[OCFS2_XATTR_MAX] = {
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800110 [OCFS2_XATTR_INDEX_USER] = &ocfs2_xattr_user_handler,
Tiger Yang929fb012008-11-14 11:17:04 +0800111#ifdef CONFIG_OCFS2_FS_POSIX_ACL
112 [OCFS2_XATTR_INDEX_POSIX_ACL_ACCESS]
113 = &ocfs2_xattr_acl_access_handler,
114 [OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT]
115 = &ocfs2_xattr_acl_default_handler,
116#endif
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800117 [OCFS2_XATTR_INDEX_TRUSTED] = &ocfs2_xattr_trusted_handler,
Tiger Yang923f7f32008-11-14 11:16:27 +0800118 [OCFS2_XATTR_INDEX_SECURITY] = &ocfs2_xattr_security_handler,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800119};
120
121struct ocfs2_xattr_info {
122 int name_index;
123 const char *name;
124 const void *value;
125 size_t value_len;
126};
127
128struct ocfs2_xattr_search {
129 struct buffer_head *inode_bh;
130 /*
131 * xattr_bh point to the block buffer head which has extended attribute
132 * when extended attribute in inode, xattr_bh is equal to inode_bh.
133 */
134 struct buffer_head *xattr_bh;
135 struct ocfs2_xattr_header *header;
Joel Beckerba937122008-10-24 19:13:20 -0700136 struct ocfs2_xattr_bucket *bucket;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800137 void *base;
138 void *end;
139 struct ocfs2_xattr_entry *here;
140 int not_found;
141};
142
Tao Mafd68a892009-08-18 11:43:21 +0800143static int ocfs2_xattr_bucket_get_name_value(struct super_block *sb,
Tao Ma589dc262008-08-18 17:38:51 +0800144 struct ocfs2_xattr_header *xh,
145 int index,
146 int *block_off,
147 int *new_offset);
148
Joel Becker54f443f2008-10-20 18:43:07 -0700149static int ocfs2_xattr_block_find(struct inode *inode,
150 int name_index,
151 const char *name,
152 struct ocfs2_xattr_search *xs);
Tao Ma589dc262008-08-18 17:38:51 +0800153static int ocfs2_xattr_index_block_find(struct inode *inode,
154 struct buffer_head *root_bh,
155 int name_index,
156 const char *name,
157 struct ocfs2_xattr_search *xs);
158
Tao Ma0c044f02008-08-18 17:38:50 +0800159static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
160 struct ocfs2_xattr_tree_root *xt,
161 char *buffer,
162 size_t buffer_size);
163
Tao Ma01225592008-08-18 17:38:53 +0800164static int ocfs2_xattr_create_index_block(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +0800165 struct ocfs2_xattr_search *xs,
166 struct ocfs2_xattr_set_ctxt *ctxt);
Tao Ma01225592008-08-18 17:38:53 +0800167
168static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
169 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +0800170 struct ocfs2_xattr_search *xs,
171 struct ocfs2_xattr_set_ctxt *ctxt);
Tao Ma01225592008-08-18 17:38:53 +0800172
Tao Maa3944252008-08-18 17:38:54 +0800173static int ocfs2_delete_xattr_index_block(struct inode *inode,
174 struct buffer_head *xb_bh);
Joel Beckerc58b6032008-11-26 13:36:24 -0800175static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
176 u64 src_blk, u64 last_blk, u64 to_blk,
177 unsigned int start_bucket,
178 u32 *first_hash);
Tao Ma492a8a32009-08-18 11:43:17 +0800179static int ocfs2_prepare_refcount_xattr(struct inode *inode,
180 struct ocfs2_dinode *di,
181 struct ocfs2_xattr_info *xi,
182 struct ocfs2_xattr_search *xis,
183 struct ocfs2_xattr_search *xbs,
184 struct ocfs2_refcount_tree **ref_tree,
185 int *meta_need,
186 int *credits);
Tao Maa3944252008-08-18 17:38:54 +0800187
Tiger Yang0030e002008-10-23 16:33:33 +0800188static inline u16 ocfs2_xattr_buckets_per_cluster(struct ocfs2_super *osb)
189{
190 return (1 << osb->s_clustersize_bits) / OCFS2_XATTR_BUCKET_SIZE;
191}
192
193static inline u16 ocfs2_blocks_per_xattr_bucket(struct super_block *sb)
194{
195 return OCFS2_XATTR_BUCKET_SIZE / (1 << sb->s_blocksize_bits);
196}
197
198static inline u16 ocfs2_xattr_max_xe_in_bucket(struct super_block *sb)
199{
200 u16 len = sb->s_blocksize -
201 offsetof(struct ocfs2_xattr_header, xh_entries);
202
203 return len / sizeof(struct ocfs2_xattr_entry);
204}
205
Joel Becker9c7759a2008-10-24 16:21:03 -0700206#define bucket_blkno(_b) ((_b)->bu_bhs[0]->b_blocknr)
Joel Becker51def392008-10-24 16:57:21 -0700207#define bucket_block(_b, _n) ((_b)->bu_bhs[(_n)]->b_data)
Joel Becker3e632942008-10-24 17:04:49 -0700208#define bucket_xh(_b) ((struct ocfs2_xattr_header *)bucket_block((_b), 0))
Joel Becker9c7759a2008-10-24 16:21:03 -0700209
Joel Beckerba937122008-10-24 19:13:20 -0700210static struct ocfs2_xattr_bucket *ocfs2_xattr_bucket_new(struct inode *inode)
Joel Becker6dde41d2008-10-24 17:16:48 -0700211{
Joel Beckerba937122008-10-24 19:13:20 -0700212 struct ocfs2_xattr_bucket *bucket;
213 int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Joel Becker6dde41d2008-10-24 17:16:48 -0700214
Joel Beckerba937122008-10-24 19:13:20 -0700215 BUG_ON(blks > OCFS2_XATTR_MAX_BLOCKS_PER_BUCKET);
216
217 bucket = kzalloc(sizeof(struct ocfs2_xattr_bucket), GFP_NOFS);
218 if (bucket) {
219 bucket->bu_inode = inode;
220 bucket->bu_blocks = blks;
221 }
222
223 return bucket;
224}
225
226static void ocfs2_xattr_bucket_relse(struct ocfs2_xattr_bucket *bucket)
227{
228 int i;
229
230 for (i = 0; i < bucket->bu_blocks; i++) {
Joel Becker6dde41d2008-10-24 17:16:48 -0700231 brelse(bucket->bu_bhs[i]);
232 bucket->bu_bhs[i] = NULL;
233 }
234}
235
Joel Beckerba937122008-10-24 19:13:20 -0700236static void ocfs2_xattr_bucket_free(struct ocfs2_xattr_bucket *bucket)
237{
238 if (bucket) {
239 ocfs2_xattr_bucket_relse(bucket);
240 bucket->bu_inode = NULL;
241 kfree(bucket);
242 }
243}
244
Joel Becker784b8162008-10-24 17:33:40 -0700245/*
246 * A bucket that has never been written to disk doesn't need to be
247 * read. We just need the buffer_heads. Don't call this for
248 * buckets that are already on disk. ocfs2_read_xattr_bucket() initializes
249 * them fully.
250 */
Joel Beckerba937122008-10-24 19:13:20 -0700251static int ocfs2_init_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
Joel Becker784b8162008-10-24 17:33:40 -0700252 u64 xb_blkno)
253{
254 int i, rc = 0;
Joel Becker784b8162008-10-24 17:33:40 -0700255
Joel Beckerba937122008-10-24 19:13:20 -0700256 for (i = 0; i < bucket->bu_blocks; i++) {
257 bucket->bu_bhs[i] = sb_getblk(bucket->bu_inode->i_sb,
258 xb_blkno + i);
Joel Becker784b8162008-10-24 17:33:40 -0700259 if (!bucket->bu_bhs[i]) {
260 rc = -EIO;
261 mlog_errno(rc);
262 break;
263 }
264
Joel Becker8cb471e2009-02-10 20:00:41 -0800265 if (!ocfs2_buffer_uptodate(INODE_CACHE(bucket->bu_inode),
Tao Ma757055a2008-11-06 08:10:48 +0800266 bucket->bu_bhs[i]))
Joel Becker8cb471e2009-02-10 20:00:41 -0800267 ocfs2_set_new_buffer_uptodate(INODE_CACHE(bucket->bu_inode),
Tao Ma757055a2008-11-06 08:10:48 +0800268 bucket->bu_bhs[i]);
Joel Becker784b8162008-10-24 17:33:40 -0700269 }
270
271 if (rc)
Joel Beckerba937122008-10-24 19:13:20 -0700272 ocfs2_xattr_bucket_relse(bucket);
Joel Becker784b8162008-10-24 17:33:40 -0700273 return rc;
274}
275
276/* Read the xattr bucket at xb_blkno */
Joel Beckerba937122008-10-24 19:13:20 -0700277static int ocfs2_read_xattr_bucket(struct ocfs2_xattr_bucket *bucket,
Joel Becker784b8162008-10-24 17:33:40 -0700278 u64 xb_blkno)
279{
Joel Beckerba937122008-10-24 19:13:20 -0700280 int rc;
Joel Becker784b8162008-10-24 17:33:40 -0700281
Joel Becker8cb471e2009-02-10 20:00:41 -0800282 rc = ocfs2_read_blocks(INODE_CACHE(bucket->bu_inode), xb_blkno,
Joel Becker970e4932008-11-13 14:49:19 -0800283 bucket->bu_blocks, bucket->bu_bhs, 0,
284 NULL);
Joel Becker4d0e2142008-12-05 11:19:37 -0800285 if (!rc) {
Tao Mac8b9cf92009-02-24 17:40:26 -0800286 spin_lock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800287 rc = ocfs2_validate_meta_ecc_bhs(bucket->bu_inode->i_sb,
288 bucket->bu_bhs,
289 bucket->bu_blocks,
290 &bucket_xh(bucket)->xh_check);
Tao Mac8b9cf92009-02-24 17:40:26 -0800291 spin_unlock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800292 if (rc)
293 mlog_errno(rc);
294 }
295
Joel Becker784b8162008-10-24 17:33:40 -0700296 if (rc)
Joel Beckerba937122008-10-24 19:13:20 -0700297 ocfs2_xattr_bucket_relse(bucket);
Joel Becker784b8162008-10-24 17:33:40 -0700298 return rc;
299}
300
Joel Becker1224be02008-10-24 18:47:33 -0700301static int ocfs2_xattr_bucket_journal_access(handle_t *handle,
Joel Becker1224be02008-10-24 18:47:33 -0700302 struct ocfs2_xattr_bucket *bucket,
303 int type)
304{
305 int i, rc = 0;
Joel Becker1224be02008-10-24 18:47:33 -0700306
Joel Beckerba937122008-10-24 19:13:20 -0700307 for (i = 0; i < bucket->bu_blocks; i++) {
Joel Becker0cf2f762009-02-12 16:41:25 -0800308 rc = ocfs2_journal_access(handle,
309 INODE_CACHE(bucket->bu_inode),
Joel Becker1224be02008-10-24 18:47:33 -0700310 bucket->bu_bhs[i], type);
311 if (rc) {
312 mlog_errno(rc);
313 break;
314 }
315 }
316
317 return rc;
318}
319
320static void ocfs2_xattr_bucket_journal_dirty(handle_t *handle,
Joel Becker1224be02008-10-24 18:47:33 -0700321 struct ocfs2_xattr_bucket *bucket)
322{
Joel Beckerba937122008-10-24 19:13:20 -0700323 int i;
Joel Becker1224be02008-10-24 18:47:33 -0700324
Tao Mac8b9cf92009-02-24 17:40:26 -0800325 spin_lock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800326 ocfs2_compute_meta_ecc_bhs(bucket->bu_inode->i_sb,
327 bucket->bu_bhs, bucket->bu_blocks,
328 &bucket_xh(bucket)->xh_check);
Tao Mac8b9cf92009-02-24 17:40:26 -0800329 spin_unlock(&OCFS2_SB(bucket->bu_inode->i_sb)->osb_xattr_lock);
Joel Becker4d0e2142008-12-05 11:19:37 -0800330
Joel Beckerba937122008-10-24 19:13:20 -0700331 for (i = 0; i < bucket->bu_blocks; i++)
Joel Becker1224be02008-10-24 18:47:33 -0700332 ocfs2_journal_dirty(handle, bucket->bu_bhs[i]);
333}
334
Joel Beckerba937122008-10-24 19:13:20 -0700335static void ocfs2_xattr_bucket_copy_data(struct ocfs2_xattr_bucket *dest,
Joel Becker4980c6d2008-10-24 18:54:43 -0700336 struct ocfs2_xattr_bucket *src)
337{
338 int i;
Joel Beckerba937122008-10-24 19:13:20 -0700339 int blocksize = src->bu_inode->i_sb->s_blocksize;
Joel Becker4980c6d2008-10-24 18:54:43 -0700340
Joel Beckerba937122008-10-24 19:13:20 -0700341 BUG_ON(dest->bu_blocks != src->bu_blocks);
342 BUG_ON(dest->bu_inode != src->bu_inode);
343
344 for (i = 0; i < src->bu_blocks; i++) {
Joel Becker4980c6d2008-10-24 18:54:43 -0700345 memcpy(bucket_block(dest, i), bucket_block(src, i),
346 blocksize);
347 }
348}
Joel Becker1224be02008-10-24 18:47:33 -0700349
Joel Becker4ae1d692008-11-13 14:49:18 -0800350static int ocfs2_validate_xattr_block(struct super_block *sb,
351 struct buffer_head *bh)
352{
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700353 int rc;
Joel Becker4ae1d692008-11-13 14:49:18 -0800354 struct ocfs2_xattr_block *xb =
355 (struct ocfs2_xattr_block *)bh->b_data;
356
357 mlog(0, "Validating xattr block %llu\n",
358 (unsigned long long)bh->b_blocknr);
359
Joel Beckerd6b32bb2008-10-17 14:55:01 -0700360 BUG_ON(!buffer_uptodate(bh));
361
362 /*
363 * If the ecc fails, we return the error but otherwise
364 * leave the filesystem running. We know any error is
365 * local to this block.
366 */
367 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &xb->xb_check);
368 if (rc)
369 return rc;
370
371 /*
372 * Errors after here are fatal
373 */
374
Joel Becker4ae1d692008-11-13 14:49:18 -0800375 if (!OCFS2_IS_VALID_XATTR_BLOCK(xb)) {
376 ocfs2_error(sb,
377 "Extended attribute block #%llu has bad "
378 "signature %.*s",
379 (unsigned long long)bh->b_blocknr, 7,
380 xb->xb_signature);
381 return -EINVAL;
382 }
383
384 if (le64_to_cpu(xb->xb_blkno) != bh->b_blocknr) {
385 ocfs2_error(sb,
386 "Extended attribute block #%llu has an "
387 "invalid xb_blkno of %llu",
388 (unsigned long long)bh->b_blocknr,
389 (unsigned long long)le64_to_cpu(xb->xb_blkno));
390 return -EINVAL;
391 }
392
393 if (le32_to_cpu(xb->xb_fs_generation) != OCFS2_SB(sb)->fs_generation) {
394 ocfs2_error(sb,
395 "Extended attribute block #%llu has an invalid "
396 "xb_fs_generation of #%u",
397 (unsigned long long)bh->b_blocknr,
398 le32_to_cpu(xb->xb_fs_generation));
399 return -EINVAL;
400 }
401
402 return 0;
403}
404
405static int ocfs2_read_xattr_block(struct inode *inode, u64 xb_blkno,
406 struct buffer_head **bh)
407{
408 int rc;
409 struct buffer_head *tmp = *bh;
410
Joel Becker8cb471e2009-02-10 20:00:41 -0800411 rc = ocfs2_read_block(INODE_CACHE(inode), xb_blkno, &tmp,
Joel Becker970e4932008-11-13 14:49:19 -0800412 ocfs2_validate_xattr_block);
Joel Becker4ae1d692008-11-13 14:49:18 -0800413
414 /* If ocfs2_read_block() got us a new bh, pass it up. */
415 if (!rc && !*bh)
416 *bh = tmp;
417
418 return rc;
419}
420
Tao Ma936b8832008-10-09 23:06:14 +0800421static inline const char *ocfs2_xattr_prefix(int name_index)
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800422{
423 struct xattr_handler *handler = NULL;
424
425 if (name_index > 0 && name_index < OCFS2_XATTR_MAX)
426 handler = ocfs2_xattr_handler_map[name_index];
427
Tao Ma936b8832008-10-09 23:06:14 +0800428 return handler ? handler->prefix : NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800429}
430
Mark Fasheh40daa162008-10-07 14:31:42 -0700431static u32 ocfs2_xattr_name_hash(struct inode *inode,
Tao Ma2057e5c2008-10-09 23:06:13 +0800432 const char *name,
Mark Fasheh40daa162008-10-07 14:31:42 -0700433 int name_len)
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800434{
435 /* Get hash value of uuid from super block */
436 u32 hash = OCFS2_SB(inode->i_sb)->uuid_hash;
437 int i;
438
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800439 /* hash extended attribute name */
440 for (i = 0; i < name_len; i++) {
441 hash = (hash << OCFS2_HASH_SHIFT) ^
442 (hash >> (8*sizeof(hash) - OCFS2_HASH_SHIFT)) ^
443 *name++;
444 }
445
446 return hash;
447}
448
449/*
450 * ocfs2_xattr_hash_entry()
451 *
452 * Compute the hash of an extended attribute.
453 */
454static void ocfs2_xattr_hash_entry(struct inode *inode,
455 struct ocfs2_xattr_header *header,
456 struct ocfs2_xattr_entry *entry)
457{
458 u32 hash = 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800459 char *name = (char *)header + le16_to_cpu(entry->xe_name_offset);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800460
Tao Ma2057e5c2008-10-09 23:06:13 +0800461 hash = ocfs2_xattr_name_hash(inode, name, entry->xe_name_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800462 entry->xe_name_hash = cpu_to_le32(hash);
463
464 return;
465}
Tao Maf56654c2008-08-18 17:38:48 +0800466
Tiger Yang534eadd2008-11-14 11:16:41 +0800467static int ocfs2_xattr_entry_real_size(int name_len, size_t value_len)
468{
469 int size = 0;
470
471 if (value_len <= OCFS2_XATTR_INLINE_SIZE)
472 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(value_len);
473 else
474 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
475 size += sizeof(struct ocfs2_xattr_entry);
476
477 return size;
478}
479
480int ocfs2_calc_security_init(struct inode *dir,
481 struct ocfs2_security_xattr_info *si,
482 int *want_clusters,
483 int *xattr_credits,
484 struct ocfs2_alloc_context **xattr_ac)
485{
486 int ret = 0;
487 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
488 int s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
489 si->value_len);
490
491 /*
492 * The max space of security xattr taken inline is
493 * 256(name) + 80(value) + 16(entry) = 352 bytes,
494 * So reserve one metadata block for it is ok.
495 */
496 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
497 s_size > OCFS2_XATTR_FREE_IN_IBODY) {
498 ret = ocfs2_reserve_new_metadata_blocks(osb, 1, xattr_ac);
499 if (ret) {
500 mlog_errno(ret);
501 return ret;
502 }
503 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
504 }
505
506 /* reserve clusters for xattr value which will be set in B tree*/
Tiger Yang0e445b62008-12-09 16:42:51 +0800507 if (si->value_len > OCFS2_XATTR_INLINE_SIZE) {
508 int new_clusters = ocfs2_clusters_for_bytes(dir->i_sb,
509 si->value_len);
510
511 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
512 new_clusters);
513 *want_clusters += new_clusters;
514 }
Tiger Yang534eadd2008-11-14 11:16:41 +0800515 return ret;
516}
517
Tiger Yang89c38bd2008-11-14 11:17:41 +0800518int ocfs2_calc_xattr_init(struct inode *dir,
519 struct buffer_head *dir_bh,
520 int mode,
521 struct ocfs2_security_xattr_info *si,
522 int *want_clusters,
523 int *xattr_credits,
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800524 int *want_meta)
Tiger Yang89c38bd2008-11-14 11:17:41 +0800525{
526 int ret = 0;
527 struct ocfs2_super *osb = OCFS2_SB(dir->i_sb);
Tiger Yang0e445b62008-12-09 16:42:51 +0800528 int s_size = 0, a_size = 0, acl_len = 0, new_clusters;
Tiger Yang89c38bd2008-11-14 11:17:41 +0800529
530 if (si->enable)
531 s_size = ocfs2_xattr_entry_real_size(strlen(si->name),
532 si->value_len);
533
534 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) {
535 acl_len = ocfs2_xattr_get_nolock(dir, dir_bh,
536 OCFS2_XATTR_INDEX_POSIX_ACL_DEFAULT,
537 "", NULL, 0);
538 if (acl_len > 0) {
539 a_size = ocfs2_xattr_entry_real_size(0, acl_len);
540 if (S_ISDIR(mode))
541 a_size <<= 1;
542 } else if (acl_len != 0 && acl_len != -ENODATA) {
543 mlog_errno(ret);
544 return ret;
545 }
546 }
547
548 if (!(s_size + a_size))
549 return ret;
550
551 /*
552 * The max space of security xattr taken inline is
553 * 256(name) + 80(value) + 16(entry) = 352 bytes,
554 * The max space of acl xattr taken inline is
555 * 80(value) + 16(entry) * 2(if directory) = 192 bytes,
556 * when blocksize = 512, may reserve one more cluser for
557 * xattr bucket, otherwise reserve one metadata block
558 * for them is ok.
Tiger Yang6c9fd1d2009-03-06 10:19:30 +0800559 * If this is a new directory with inline data,
560 * we choose to reserve the entire inline area for
561 * directory contents and force an external xattr block.
Tiger Yang89c38bd2008-11-14 11:17:41 +0800562 */
563 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE ||
Tiger Yang6c9fd1d2009-03-06 10:19:30 +0800564 (S_ISDIR(mode) && ocfs2_supports_inline_data(osb)) ||
Tiger Yang89c38bd2008-11-14 11:17:41 +0800565 (s_size + a_size) > OCFS2_XATTR_FREE_IN_IBODY) {
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800566 *want_meta = *want_meta + 1;
Tiger Yang89c38bd2008-11-14 11:17:41 +0800567 *xattr_credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
568 }
569
570 if (dir->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE &&
571 (s_size + a_size) > OCFS2_XATTR_FREE_IN_BLOCK(dir)) {
572 *want_clusters += 1;
573 *xattr_credits += ocfs2_blocks_per_xattr_bucket(dir->i_sb);
574 }
575
Tiger Yang0e445b62008-12-09 16:42:51 +0800576 /*
577 * reserve credits and clusters for xattrs which has large value
578 * and have to be set outside
579 */
580 if (si->enable && si->value_len > OCFS2_XATTR_INLINE_SIZE) {
581 new_clusters = ocfs2_clusters_for_bytes(dir->i_sb,
582 si->value_len);
583 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
584 new_clusters);
585 *want_clusters += new_clusters;
586 }
Tiger Yang89c38bd2008-11-14 11:17:41 +0800587 if (osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL &&
588 acl_len > OCFS2_XATTR_INLINE_SIZE) {
Tiger Yang0e445b62008-12-09 16:42:51 +0800589 /* for directory, it has DEFAULT and ACCESS two types of acls */
590 new_clusters = (S_ISDIR(mode) ? 2 : 1) *
591 ocfs2_clusters_for_bytes(dir->i_sb, acl_len);
592 *xattr_credits += ocfs2_clusters_to_blocks(dir->i_sb,
593 new_clusters);
594 *want_clusters += new_clusters;
Tiger Yang89c38bd2008-11-14 11:17:41 +0800595 }
596
597 return ret;
598}
599
Tao Maf56654c2008-08-18 17:38:48 +0800600static int ocfs2_xattr_extend_allocation(struct inode *inode,
601 u32 clusters_to_add,
Joel Becker19b801f2008-12-09 14:36:50 -0800602 struct ocfs2_xattr_value_buf *vb,
Tao Ma78f30c32008-11-12 08:27:00 +0800603 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800604{
605 int status = 0;
Tao Ma85db90e2008-11-12 08:27:01 +0800606 handle_t *handle = ctxt->handle;
Tao Maf56654c2008-08-18 17:38:48 +0800607 enum ocfs2_alloc_restarted why;
Joel Becker19b801f2008-12-09 14:36:50 -0800608 u32 prev_clusters, logical_start = le32_to_cpu(vb->vb_xv->xr_clusters);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700609 struct ocfs2_extent_tree et;
Tao Maf56654c2008-08-18 17:38:48 +0800610
611 mlog(0, "(clusters_to_add for xattr= %u)\n", clusters_to_add);
612
Joel Becker5e404e92009-02-13 03:54:22 -0800613 ocfs2_init_xattr_value_extent_tree(&et, INODE_CACHE(inode), vb);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700614
Joel Becker0cf2f762009-02-12 16:41:25 -0800615 status = vb->vb_access(handle, INODE_CACHE(inode), vb->vb_bh,
Joel Becker2a50a742008-12-09 14:24:33 -0800616 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Maf56654c2008-08-18 17:38:48 +0800617 if (status < 0) {
618 mlog_errno(status);
619 goto leave;
620 }
621
Joel Becker19b801f2008-12-09 14:36:50 -0800622 prev_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
Joel Beckercbee7e12009-02-13 03:34:15 -0800623 status = ocfs2_add_clusters_in_btree(handle,
624 &et,
Tao Maf56654c2008-08-18 17:38:48 +0800625 &logical_start,
626 clusters_to_add,
627 0,
Tao Ma78f30c32008-11-12 08:27:00 +0800628 ctxt->data_ac,
629 ctxt->meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -0700630 &why);
Tao Ma85db90e2008-11-12 08:27:01 +0800631 if (status < 0) {
632 mlog_errno(status);
Tao Maf56654c2008-08-18 17:38:48 +0800633 goto leave;
634 }
635
Joel Becker19b801f2008-12-09 14:36:50 -0800636 status = ocfs2_journal_dirty(handle, vb->vb_bh);
Tao Maf56654c2008-08-18 17:38:48 +0800637 if (status < 0) {
638 mlog_errno(status);
639 goto leave;
640 }
641
Joel Becker19b801f2008-12-09 14:36:50 -0800642 clusters_to_add -= le32_to_cpu(vb->vb_xv->xr_clusters) - prev_clusters;
Tao Maf56654c2008-08-18 17:38:48 +0800643
Tao Ma85db90e2008-11-12 08:27:01 +0800644 /*
645 * We should have already allocated enough space before the transaction,
646 * so no need to restart.
647 */
648 BUG_ON(why != RESTART_NONE || clusters_to_add);
Tao Maf56654c2008-08-18 17:38:48 +0800649
650leave:
Tao Maf56654c2008-08-18 17:38:48 +0800651
652 return status;
653}
654
655static int __ocfs2_remove_xattr_range(struct inode *inode,
Joel Beckerd72cc722008-12-09 14:30:41 -0800656 struct ocfs2_xattr_value_buf *vb,
Tao Maf56654c2008-08-18 17:38:48 +0800657 u32 cpos, u32 phys_cpos, u32 len,
Tao Ma492a8a32009-08-18 11:43:17 +0800658 unsigned int ext_flags,
Tao Ma78f30c32008-11-12 08:27:00 +0800659 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800660{
661 int ret;
662 u64 phys_blkno = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
Tao Ma85db90e2008-11-12 08:27:01 +0800663 handle_t *handle = ctxt->handle;
Joel Beckerf99b9b72008-08-20 19:36:33 -0700664 struct ocfs2_extent_tree et;
Tao Maf56654c2008-08-18 17:38:48 +0800665
Joel Becker5e404e92009-02-13 03:54:22 -0800666 ocfs2_init_xattr_value_extent_tree(&et, INODE_CACHE(inode), vb);
Joel Beckerf99b9b72008-08-20 19:36:33 -0700667
Joel Becker0cf2f762009-02-12 16:41:25 -0800668 ret = vb->vb_access(handle, INODE_CACHE(inode), vb->vb_bh,
Joel Beckerd72cc722008-12-09 14:30:41 -0800669 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Maf56654c2008-08-18 17:38:48 +0800670 if (ret) {
671 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +0800672 goto out;
Tao Maf56654c2008-08-18 17:38:48 +0800673 }
674
Joel Beckerdbdcf6a2009-02-13 03:41:26 -0800675 ret = ocfs2_remove_extent(handle, &et, cpos, len, ctxt->meta_ac,
Tao Ma78f30c32008-11-12 08:27:00 +0800676 &ctxt->dealloc);
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
Joel Beckerd72cc722008-12-09 14:30:41 -0800682 le32_add_cpu(&vb->vb_xv->xr_clusters, -len);
Tao Maf56654c2008-08-18 17:38:48 +0800683
Joel Beckerd72cc722008-12-09 14:30:41 -0800684 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tao Maf56654c2008-08-18 17:38:48 +0800685 if (ret) {
686 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +0800687 goto out;
Tao Maf56654c2008-08-18 17:38:48 +0800688 }
689
Tao Ma492a8a32009-08-18 11:43:17 +0800690 if (ext_flags & OCFS2_EXT_REFCOUNTED)
691 ret = ocfs2_decrease_refcount(inode, handle,
692 ocfs2_blocks_to_clusters(inode->i_sb,
693 phys_blkno),
694 len, ctxt->meta_ac, &ctxt->dealloc, 1);
695 else
696 ret = ocfs2_cache_cluster_dealloc(&ctxt->dealloc,
697 phys_blkno, len);
Tao Maf56654c2008-08-18 17:38:48 +0800698 if (ret)
699 mlog_errno(ret);
700
Tao Maf56654c2008-08-18 17:38:48 +0800701out:
Tao Maf56654c2008-08-18 17:38:48 +0800702 return ret;
703}
704
705static int ocfs2_xattr_shrink_size(struct inode *inode,
706 u32 old_clusters,
707 u32 new_clusters,
Joel Becker19b801f2008-12-09 14:36:50 -0800708 struct ocfs2_xattr_value_buf *vb,
Tao Ma78f30c32008-11-12 08:27:00 +0800709 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800710{
711 int ret = 0;
Tao Ma492a8a32009-08-18 11:43:17 +0800712 unsigned int ext_flags;
Tao Maf56654c2008-08-18 17:38:48 +0800713 u32 trunc_len, cpos, phys_cpos, alloc_size;
714 u64 block;
Tao Maf56654c2008-08-18 17:38:48 +0800715
716 if (old_clusters <= new_clusters)
717 return 0;
718
719 cpos = new_clusters;
720 trunc_len = old_clusters - new_clusters;
721 while (trunc_len) {
722 ret = ocfs2_xattr_get_clusters(inode, cpos, &phys_cpos,
Joel Beckerd72cc722008-12-09 14:30:41 -0800723 &alloc_size,
Tao Ma492a8a32009-08-18 11:43:17 +0800724 &vb->vb_xv->xr_list, &ext_flags);
Tao Maf56654c2008-08-18 17:38:48 +0800725 if (ret) {
726 mlog_errno(ret);
727 goto out;
728 }
729
730 if (alloc_size > trunc_len)
731 alloc_size = trunc_len;
732
Joel Becker19b801f2008-12-09 14:36:50 -0800733 ret = __ocfs2_remove_xattr_range(inode, vb, cpos,
Tao Maf56654c2008-08-18 17:38:48 +0800734 phys_cpos, alloc_size,
Tao Ma492a8a32009-08-18 11:43:17 +0800735 ext_flags, ctxt);
Tao Maf56654c2008-08-18 17:38:48 +0800736 if (ret) {
737 mlog_errno(ret);
738 goto out;
739 }
740
741 block = ocfs2_clusters_to_blocks(inode->i_sb, phys_cpos);
Joel Becker8cb471e2009-02-10 20:00:41 -0800742 ocfs2_remove_xattr_clusters_from_cache(INODE_CACHE(inode),
743 block, alloc_size);
Tao Maf56654c2008-08-18 17:38:48 +0800744 cpos += alloc_size;
745 trunc_len -= alloc_size;
746 }
747
748out:
Tao Maf56654c2008-08-18 17:38:48 +0800749 return ret;
750}
751
752static int ocfs2_xattr_value_truncate(struct inode *inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -0800753 struct ocfs2_xattr_value_buf *vb,
Tao Ma78f30c32008-11-12 08:27:00 +0800754 int len,
755 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Maf56654c2008-08-18 17:38:48 +0800756{
757 int ret;
758 u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb, len);
Joel Beckerb3e5d372008-12-09 15:01:04 -0800759 u32 old_clusters = le32_to_cpu(vb->vb_xv->xr_clusters);
Tao Maf56654c2008-08-18 17:38:48 +0800760
761 if (new_clusters == old_clusters)
762 return 0;
763
764 if (new_clusters > old_clusters)
765 ret = ocfs2_xattr_extend_allocation(inode,
766 new_clusters - old_clusters,
Joel Beckerb3e5d372008-12-09 15:01:04 -0800767 vb, ctxt);
Tao Maf56654c2008-08-18 17:38:48 +0800768 else
769 ret = ocfs2_xattr_shrink_size(inode,
770 old_clusters, new_clusters,
Joel Beckerb3e5d372008-12-09 15:01:04 -0800771 vb, ctxt);
Tao Maf56654c2008-08-18 17:38:48 +0800772
773 return ret;
774}
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800775
Tao Ma936b8832008-10-09 23:06:14 +0800776static int ocfs2_xattr_list_entry(char *buffer, size_t size,
777 size_t *result, const char *prefix,
778 const char *name, int name_len)
779{
780 char *p = buffer + *result;
781 int prefix_len = strlen(prefix);
782 int total_len = prefix_len + name_len + 1;
783
784 *result += total_len;
785
786 /* we are just looking for how big our buffer needs to be */
787 if (!size)
788 return 0;
789
790 if (*result > size)
791 return -ERANGE;
792
793 memcpy(p, prefix, prefix_len);
794 memcpy(p + prefix_len, name, name_len);
795 p[prefix_len + name_len] = '\0';
796
797 return 0;
798}
799
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800800static int ocfs2_xattr_list_entries(struct inode *inode,
801 struct ocfs2_xattr_header *header,
802 char *buffer, size_t buffer_size)
803{
Tao Ma936b8832008-10-09 23:06:14 +0800804 size_t result = 0;
805 int i, type, ret;
806 const char *prefix, *name;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800807
808 for (i = 0 ; i < le16_to_cpu(header->xh_count); i++) {
809 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
Tao Ma936b8832008-10-09 23:06:14 +0800810 type = ocfs2_xattr_get_type(entry);
811 prefix = ocfs2_xattr_prefix(type);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800812
Tao Ma936b8832008-10-09 23:06:14 +0800813 if (prefix) {
814 name = (const char *)header +
815 le16_to_cpu(entry->xe_name_offset);
816
817 ret = ocfs2_xattr_list_entry(buffer, buffer_size,
818 &result, prefix, name,
819 entry->xe_name_len);
820 if (ret)
821 return ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800822 }
823 }
824
Tao Ma936b8832008-10-09 23:06:14 +0800825 return result;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800826}
827
828static int ocfs2_xattr_ibody_list(struct inode *inode,
829 struct ocfs2_dinode *di,
830 char *buffer,
831 size_t buffer_size)
832{
833 struct ocfs2_xattr_header *header = NULL;
834 struct ocfs2_inode_info *oi = OCFS2_I(inode);
835 int ret = 0;
836
837 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
838 return ret;
839
840 header = (struct ocfs2_xattr_header *)
841 ((void *)di + inode->i_sb->s_blocksize -
842 le16_to_cpu(di->i_xattr_inline_size));
843
844 ret = ocfs2_xattr_list_entries(inode, header, buffer, buffer_size);
845
846 return ret;
847}
848
849static int ocfs2_xattr_block_list(struct inode *inode,
850 struct ocfs2_dinode *di,
851 char *buffer,
852 size_t buffer_size)
853{
854 struct buffer_head *blk_bh = NULL;
Tao Ma0c044f02008-08-18 17:38:50 +0800855 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800856 int ret = 0;
857
858 if (!di->i_xattr_loc)
859 return ret;
860
Joel Becker4ae1d692008-11-13 14:49:18 -0800861 ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
862 &blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800863 if (ret < 0) {
864 mlog_errno(ret);
865 return ret;
866 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800867
Tao Ma0c044f02008-08-18 17:38:50 +0800868 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Ma0c044f02008-08-18 17:38:50 +0800869 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
870 struct ocfs2_xattr_header *header = &xb->xb_attrs.xb_header;
871 ret = ocfs2_xattr_list_entries(inode, header,
872 buffer, buffer_size);
873 } else {
874 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root;
875 ret = ocfs2_xattr_tree_list_index_block(inode, xt,
876 buffer, buffer_size);
877 }
Joel Becker4ae1d692008-11-13 14:49:18 -0800878
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800879 brelse(blk_bh);
880
881 return ret;
882}
883
884ssize_t ocfs2_listxattr(struct dentry *dentry,
885 char *buffer,
886 size_t size)
887{
888 int ret = 0, i_ret = 0, b_ret = 0;
889 struct buffer_head *di_bh = NULL;
890 struct ocfs2_dinode *di = NULL;
891 struct ocfs2_inode_info *oi = OCFS2_I(dentry->d_inode);
892
Tiger Yang8154da32008-08-18 17:11:46 +0800893 if (!ocfs2_supports_xattr(OCFS2_SB(dentry->d_sb)))
894 return -EOPNOTSUPP;
895
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800896 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
897 return ret;
898
899 ret = ocfs2_inode_lock(dentry->d_inode, &di_bh, 0);
900 if (ret < 0) {
901 mlog_errno(ret);
902 return ret;
903 }
904
905 di = (struct ocfs2_dinode *)di_bh->b_data;
906
907 down_read(&oi->ip_xattr_sem);
908 i_ret = ocfs2_xattr_ibody_list(dentry->d_inode, di, buffer, size);
909 if (i_ret < 0)
910 b_ret = 0;
911 else {
912 if (buffer) {
913 buffer += i_ret;
914 size -= i_ret;
915 }
916 b_ret = ocfs2_xattr_block_list(dentry->d_inode, di,
917 buffer, size);
918 if (b_ret < 0)
919 i_ret = 0;
920 }
921 up_read(&oi->ip_xattr_sem);
922 ocfs2_inode_unlock(dentry->d_inode, 0);
923
924 brelse(di_bh);
925
926 return i_ret + b_ret;
927}
928
929static int ocfs2_xattr_find_entry(int name_index,
930 const char *name,
931 struct ocfs2_xattr_search *xs)
932{
933 struct ocfs2_xattr_entry *entry;
934 size_t name_len;
935 int i, cmp = 1;
936
937 if (name == NULL)
938 return -EINVAL;
939
940 name_len = strlen(name);
941 entry = xs->here;
942 for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
943 cmp = name_index - ocfs2_xattr_get_type(entry);
944 if (!cmp)
945 cmp = name_len - entry->xe_name_len;
946 if (!cmp)
947 cmp = memcmp(name, (xs->base +
948 le16_to_cpu(entry->xe_name_offset)),
949 name_len);
950 if (cmp == 0)
951 break;
952 entry += 1;
953 }
954 xs->here = entry;
955
956 return cmp ? -ENODATA : 0;
957}
958
959static int ocfs2_xattr_get_value_outside(struct inode *inode,
Tao Ma589dc262008-08-18 17:38:51 +0800960 struct ocfs2_xattr_value_root *xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800961 void *buffer,
962 size_t len)
963{
964 u32 cpos, p_cluster, num_clusters, bpc, clusters;
965 u64 blkno;
966 int i, ret = 0;
967 size_t cplen, blocksize;
968 struct buffer_head *bh = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800969 struct ocfs2_extent_list *el;
970
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800971 el = &xv->xr_list;
972 clusters = le32_to_cpu(xv->xr_clusters);
973 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
974 blocksize = inode->i_sb->s_blocksize;
975
976 cpos = 0;
977 while (cpos < clusters) {
978 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
Tao Ma1061f9c2009-08-18 11:41:57 +0800979 &num_clusters, el, NULL);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800980 if (ret) {
981 mlog_errno(ret);
982 goto out;
983 }
984
985 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
986 /* Copy ocfs2_xattr_value */
987 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
Joel Becker8cb471e2009-02-10 20:00:41 -0800988 ret = ocfs2_read_block(INODE_CACHE(inode), blkno,
989 &bh, NULL);
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800990 if (ret) {
991 mlog_errno(ret);
992 goto out;
993 }
994
995 cplen = len >= blocksize ? blocksize : len;
996 memcpy(buffer, bh->b_data, cplen);
997 len -= cplen;
998 buffer += cplen;
999
1000 brelse(bh);
1001 bh = NULL;
1002 if (len == 0)
1003 break;
1004 }
1005 cpos += num_clusters;
1006 }
1007out:
1008 return ret;
1009}
1010
1011static int ocfs2_xattr_ibody_get(struct inode *inode,
1012 int name_index,
1013 const char *name,
1014 void *buffer,
1015 size_t buffer_size,
1016 struct ocfs2_xattr_search *xs)
1017{
1018 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1019 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
Tao Ma589dc262008-08-18 17:38:51 +08001020 struct ocfs2_xattr_value_root *xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001021 size_t size;
1022 int ret = 0;
1023
1024 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL))
1025 return -ENODATA;
1026
1027 xs->end = (void *)di + inode->i_sb->s_blocksize;
1028 xs->header = (struct ocfs2_xattr_header *)
1029 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
1030 xs->base = (void *)xs->header;
1031 xs->here = xs->header->xh_entries;
1032
1033 ret = ocfs2_xattr_find_entry(name_index, name, xs);
1034 if (ret)
1035 return ret;
1036 size = le64_to_cpu(xs->here->xe_value_size);
1037 if (buffer) {
1038 if (size > buffer_size)
1039 return -ERANGE;
1040 if (ocfs2_xattr_is_local(xs->here)) {
1041 memcpy(buffer, (void *)xs->base +
1042 le16_to_cpu(xs->here->xe_name_offset) +
1043 OCFS2_XATTR_SIZE(xs->here->xe_name_len), size);
1044 } else {
Tao Ma589dc262008-08-18 17:38:51 +08001045 xv = (struct ocfs2_xattr_value_root *)
1046 (xs->base + le16_to_cpu(
1047 xs->here->xe_name_offset) +
1048 OCFS2_XATTR_SIZE(xs->here->xe_name_len));
1049 ret = ocfs2_xattr_get_value_outside(inode, xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001050 buffer, size);
1051 if (ret < 0) {
1052 mlog_errno(ret);
1053 return ret;
1054 }
1055 }
1056 }
1057
1058 return size;
1059}
1060
1061static int ocfs2_xattr_block_get(struct inode *inode,
1062 int name_index,
1063 const char *name,
1064 void *buffer,
1065 size_t buffer_size,
1066 struct ocfs2_xattr_search *xs)
1067{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001068 struct ocfs2_xattr_block *xb;
Tao Ma589dc262008-08-18 17:38:51 +08001069 struct ocfs2_xattr_value_root *xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001070 size_t size;
Subrata Modak44d8e4e2009-07-14 01:19:31 +05301071 int ret = -ENODATA, name_offset, name_len, i;
1072 int uninitialized_var(block_off);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001073
Joel Beckerba937122008-10-24 19:13:20 -07001074 xs->bucket = ocfs2_xattr_bucket_new(inode);
1075 if (!xs->bucket) {
1076 ret = -ENOMEM;
1077 mlog_errno(ret);
1078 goto cleanup;
1079 }
Tao Ma589dc262008-08-18 17:38:51 +08001080
Joel Becker54f443f2008-10-20 18:43:07 -07001081 ret = ocfs2_xattr_block_find(inode, name_index, name, xs);
1082 if (ret) {
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001083 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001084 goto cleanup;
1085 }
1086
Tiger Yang6c1e1832008-11-02 19:04:21 +08001087 if (xs->not_found) {
1088 ret = -ENODATA;
1089 goto cleanup;
1090 }
1091
Joel Becker54f443f2008-10-20 18:43:07 -07001092 xb = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001093 size = le64_to_cpu(xs->here->xe_value_size);
1094 if (buffer) {
1095 ret = -ERANGE;
1096 if (size > buffer_size)
1097 goto cleanup;
Tao Ma589dc262008-08-18 17:38:51 +08001098
1099 name_offset = le16_to_cpu(xs->here->xe_name_offset);
1100 name_len = OCFS2_XATTR_SIZE(xs->here->xe_name_len);
1101 i = xs->here - xs->header->xh_entries;
1102
1103 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
Tao Mafd68a892009-08-18 11:43:21 +08001104 ret = ocfs2_xattr_bucket_get_name_value(inode->i_sb,
Joel Beckerba937122008-10-24 19:13:20 -07001105 bucket_xh(xs->bucket),
Tao Ma589dc262008-08-18 17:38:51 +08001106 i,
1107 &block_off,
1108 &name_offset);
Joel Beckerba937122008-10-24 19:13:20 -07001109 xs->base = bucket_block(xs->bucket, block_off);
Tao Ma589dc262008-08-18 17:38:51 +08001110 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001111 if (ocfs2_xattr_is_local(xs->here)) {
1112 memcpy(buffer, (void *)xs->base +
Tao Ma589dc262008-08-18 17:38:51 +08001113 name_offset + name_len, size);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001114 } else {
Tao Ma589dc262008-08-18 17:38:51 +08001115 xv = (struct ocfs2_xattr_value_root *)
1116 (xs->base + name_offset + name_len);
1117 ret = ocfs2_xattr_get_value_outside(inode, xv,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001118 buffer, size);
1119 if (ret < 0) {
1120 mlog_errno(ret);
1121 goto cleanup;
1122 }
1123 }
1124 }
1125 ret = size;
1126cleanup:
Joel Beckerba937122008-10-24 19:13:20 -07001127 ocfs2_xattr_bucket_free(xs->bucket);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001128
Joel Becker54f443f2008-10-20 18:43:07 -07001129 brelse(xs->xattr_bh);
1130 xs->xattr_bh = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001131 return ret;
1132}
1133
Tiger Yang4e3e9d02008-11-14 11:16:53 +08001134int ocfs2_xattr_get_nolock(struct inode *inode,
1135 struct buffer_head *di_bh,
Tiger Yang0030e002008-10-23 16:33:33 +08001136 int name_index,
1137 const char *name,
1138 void *buffer,
1139 size_t buffer_size)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001140{
1141 int ret;
1142 struct ocfs2_dinode *di = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001143 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1144 struct ocfs2_xattr_search xis = {
1145 .not_found = -ENODATA,
1146 };
1147 struct ocfs2_xattr_search xbs = {
1148 .not_found = -ENODATA,
1149 };
1150
Tiger Yang8154da32008-08-18 17:11:46 +08001151 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1152 return -EOPNOTSUPP;
1153
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001154 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1155 ret = -ENODATA;
1156
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001157 xis.inode_bh = xbs.inode_bh = di_bh;
1158 di = (struct ocfs2_dinode *)di_bh->b_data;
1159
1160 down_read(&oi->ip_xattr_sem);
1161 ret = ocfs2_xattr_ibody_get(inode, name_index, name, buffer,
1162 buffer_size, &xis);
Tiger Yang6c1e1832008-11-02 19:04:21 +08001163 if (ret == -ENODATA && di->i_xattr_loc)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001164 ret = ocfs2_xattr_block_get(inode, name_index, name, buffer,
1165 buffer_size, &xbs);
1166 up_read(&oi->ip_xattr_sem);
Tiger Yang4e3e9d02008-11-14 11:16:53 +08001167
1168 return ret;
1169}
1170
1171/* ocfs2_xattr_get()
1172 *
1173 * Copy an extended attribute into the buffer provided.
1174 * Buffer is NULL to compute the size of buffer required.
1175 */
1176static int ocfs2_xattr_get(struct inode *inode,
1177 int name_index,
1178 const char *name,
1179 void *buffer,
1180 size_t buffer_size)
1181{
1182 int ret;
1183 struct buffer_head *di_bh = NULL;
1184
1185 ret = ocfs2_inode_lock(inode, &di_bh, 0);
1186 if (ret < 0) {
1187 mlog_errno(ret);
1188 return ret;
1189 }
1190 ret = ocfs2_xattr_get_nolock(inode, di_bh, name_index,
1191 name, buffer, buffer_size);
1192
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001193 ocfs2_inode_unlock(inode, 0);
1194
1195 brelse(di_bh);
1196
1197 return ret;
1198}
1199
1200static int __ocfs2_xattr_set_value_outside(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001201 handle_t *handle,
Tao Ma492a8a32009-08-18 11:43:17 +08001202 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001203 const void *value,
1204 int value_len)
1205{
Tao Ma71d548a2008-12-05 06:20:54 +08001206 int ret = 0, i, cp_len;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001207 u16 blocksize = inode->i_sb->s_blocksize;
1208 u32 p_cluster, num_clusters;
1209 u32 cpos = 0, bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
1210 u32 clusters = ocfs2_clusters_for_bytes(inode->i_sb, value_len);
1211 u64 blkno;
1212 struct buffer_head *bh = NULL;
Tao Ma492a8a32009-08-18 11:43:17 +08001213 unsigned int ext_flags;
1214 struct ocfs2_xattr_value_root *xv = vb->vb_xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001215
1216 BUG_ON(clusters > le32_to_cpu(xv->xr_clusters));
1217
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001218 while (cpos < clusters) {
1219 ret = ocfs2_xattr_get_clusters(inode, cpos, &p_cluster,
Tao Ma1061f9c2009-08-18 11:41:57 +08001220 &num_clusters, &xv->xr_list,
Tao Ma492a8a32009-08-18 11:43:17 +08001221 &ext_flags);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001222 if (ret) {
1223 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001224 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001225 }
1226
Tao Ma492a8a32009-08-18 11:43:17 +08001227 BUG_ON(ext_flags & OCFS2_EXT_REFCOUNTED);
1228
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001229 blkno = ocfs2_clusters_to_blocks(inode->i_sb, p_cluster);
1230
1231 for (i = 0; i < num_clusters * bpc; i++, blkno++) {
Joel Becker8cb471e2009-02-10 20:00:41 -08001232 ret = ocfs2_read_block(INODE_CACHE(inode), blkno,
1233 &bh, NULL);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001234 if (ret) {
1235 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001236 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001237 }
1238
1239 ret = ocfs2_journal_access(handle,
Joel Becker0cf2f762009-02-12 16:41:25 -08001240 INODE_CACHE(inode),
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001241 bh,
1242 OCFS2_JOURNAL_ACCESS_WRITE);
1243 if (ret < 0) {
1244 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001245 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001246 }
1247
1248 cp_len = value_len > blocksize ? blocksize : value_len;
1249 memcpy(bh->b_data, value, cp_len);
1250 value_len -= cp_len;
1251 value += cp_len;
1252 if (cp_len < blocksize)
1253 memset(bh->b_data + cp_len, 0,
1254 blocksize - cp_len);
1255
1256 ret = ocfs2_journal_dirty(handle, bh);
1257 if (ret < 0) {
1258 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001259 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001260 }
1261 brelse(bh);
1262 bh = NULL;
1263
1264 /*
1265 * XXX: do we need to empty all the following
1266 * blocks in this cluster?
1267 */
1268 if (!value_len)
1269 break;
1270 }
1271 cpos += num_clusters;
1272 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001273out:
1274 brelse(bh);
1275
1276 return ret;
1277}
1278
1279static int ocfs2_xattr_cleanup(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001280 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001281 struct ocfs2_xattr_info *xi,
1282 struct ocfs2_xattr_search *xs,
Joel Becker512620f2008-12-09 15:58:35 -08001283 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001284 size_t offs)
1285{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001286 int ret = 0;
1287 size_t name_len = strlen(xi->name);
1288 void *val = xs->base + offs;
1289 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1290
Joel Becker0cf2f762009-02-12 16:41:25 -08001291 ret = vb->vb_access(handle, INODE_CACHE(inode), vb->vb_bh,
Joel Becker512620f2008-12-09 15:58:35 -08001292 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001293 if (ret) {
1294 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001295 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001296 }
1297 /* Decrease xattr count */
1298 le16_add_cpu(&xs->header->xh_count, -1);
1299 /* Remove the xattr entry and tree root which has already be set*/
1300 memset((void *)xs->here, 0, sizeof(struct ocfs2_xattr_entry));
1301 memset(val, 0, size);
1302
Joel Becker512620f2008-12-09 15:58:35 -08001303 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001304 if (ret < 0)
1305 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001306out:
1307 return ret;
1308}
1309
1310static int ocfs2_xattr_update_entry(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08001311 handle_t *handle,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001312 struct ocfs2_xattr_info *xi,
1313 struct ocfs2_xattr_search *xs,
Joel Becker0c748e92008-12-09 15:46:15 -08001314 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001315 size_t offs)
1316{
Tao Ma85db90e2008-11-12 08:27:01 +08001317 int ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001318
Joel Becker0cf2f762009-02-12 16:41:25 -08001319 ret = vb->vb_access(handle, INODE_CACHE(inode), vb->vb_bh,
Joel Becker0c748e92008-12-09 15:46:15 -08001320 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001321 if (ret) {
1322 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001323 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001324 }
1325
1326 xs->here->xe_name_offset = cpu_to_le16(offs);
1327 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1328 if (xi->value_len <= OCFS2_XATTR_INLINE_SIZE)
1329 ocfs2_xattr_set_local(xs->here, 1);
1330 else
1331 ocfs2_xattr_set_local(xs->here, 0);
1332 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1333
Joel Becker0c748e92008-12-09 15:46:15 -08001334 ret = ocfs2_journal_dirty(handle, vb->vb_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001335 if (ret < 0)
1336 mlog_errno(ret);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001337out:
1338 return ret;
1339}
1340
1341/*
1342 * ocfs2_xattr_set_value_outside()
1343 *
1344 * Set large size value in B tree.
1345 */
1346static int ocfs2_xattr_set_value_outside(struct inode *inode,
1347 struct ocfs2_xattr_info *xi,
1348 struct ocfs2_xattr_search *xs,
Tao Ma78f30c32008-11-12 08:27:00 +08001349 struct ocfs2_xattr_set_ctxt *ctxt,
Joel Becker512620f2008-12-09 15:58:35 -08001350 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001351 size_t offs)
1352{
1353 size_t name_len = strlen(xi->name);
1354 void *val = xs->base + offs;
1355 struct ocfs2_xattr_value_root *xv = NULL;
1356 size_t size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1357 int ret = 0;
1358
1359 memset(val, 0, size);
1360 memcpy(val, xi->name, name_len);
1361 xv = (struct ocfs2_xattr_value_root *)
1362 (val + OCFS2_XATTR_SIZE(name_len));
1363 xv->xr_clusters = 0;
1364 xv->xr_last_eb_blk = 0;
1365 xv->xr_list.l_tree_depth = 0;
1366 xv->xr_list.l_count = cpu_to_le16(1);
1367 xv->xr_list.l_next_free_rec = 0;
Joel Becker512620f2008-12-09 15:58:35 -08001368 vb->vb_xv = xv;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001369
Joel Becker512620f2008-12-09 15:58:35 -08001370 ret = ocfs2_xattr_value_truncate(inode, vb, xi->value_len, ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001371 if (ret < 0) {
1372 mlog_errno(ret);
1373 return ret;
1374 }
Joel Becker512620f2008-12-09 15:58:35 -08001375 ret = ocfs2_xattr_update_entry(inode, ctxt->handle, xi, xs, vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001376 if (ret < 0) {
1377 mlog_errno(ret);
1378 return ret;
1379 }
Tao Ma492a8a32009-08-18 11:43:17 +08001380 ret = __ocfs2_xattr_set_value_outside(inode, ctxt->handle, vb,
Tao Ma85db90e2008-11-12 08:27:01 +08001381 xi->value, xi->value_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001382 if (ret < 0)
1383 mlog_errno(ret);
1384
1385 return ret;
1386}
1387
1388/*
1389 * ocfs2_xattr_set_entry_local()
1390 *
1391 * Set, replace or remove extended attribute in local.
1392 */
1393static void ocfs2_xattr_set_entry_local(struct inode *inode,
1394 struct ocfs2_xattr_info *xi,
1395 struct ocfs2_xattr_search *xs,
1396 struct ocfs2_xattr_entry *last,
1397 size_t min_offs)
1398{
1399 size_t name_len = strlen(xi->name);
1400 int i;
1401
1402 if (xi->value && xs->not_found) {
1403 /* Insert the new xattr entry. */
1404 le16_add_cpu(&xs->header->xh_count, 1);
1405 ocfs2_xattr_set_type(last, xi->name_index);
1406 ocfs2_xattr_set_local(last, 1);
1407 last->xe_name_len = name_len;
1408 } else {
1409 void *first_val;
1410 void *val;
1411 size_t offs, size;
1412
1413 first_val = xs->base + min_offs;
1414 offs = le16_to_cpu(xs->here->xe_name_offset);
1415 val = xs->base + offs;
1416
1417 if (le64_to_cpu(xs->here->xe_value_size) >
1418 OCFS2_XATTR_INLINE_SIZE)
1419 size = OCFS2_XATTR_SIZE(name_len) +
1420 OCFS2_XATTR_ROOT_SIZE;
1421 else
1422 size = OCFS2_XATTR_SIZE(name_len) +
1423 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1424
1425 if (xi->value && size == OCFS2_XATTR_SIZE(name_len) +
1426 OCFS2_XATTR_SIZE(xi->value_len)) {
1427 /* The old and the new value have the
1428 same size. Just replace the value. */
1429 ocfs2_xattr_set_local(xs->here, 1);
1430 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1431 /* Clear value bytes. */
1432 memset(val + OCFS2_XATTR_SIZE(name_len),
1433 0,
1434 OCFS2_XATTR_SIZE(xi->value_len));
1435 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1436 xi->value,
1437 xi->value_len);
1438 return;
1439 }
1440 /* Remove the old name+value. */
1441 memmove(first_val + size, first_val, val - first_val);
1442 memset(first_val, 0, size);
1443 xs->here->xe_name_hash = 0;
1444 xs->here->xe_name_offset = 0;
1445 ocfs2_xattr_set_local(xs->here, 1);
1446 xs->here->xe_value_size = 0;
1447
1448 min_offs += size;
1449
1450 /* Adjust all value offsets. */
1451 last = xs->header->xh_entries;
1452 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1453 size_t o = le16_to_cpu(last->xe_name_offset);
1454
1455 if (o < offs)
1456 last->xe_name_offset = cpu_to_le16(o + size);
1457 last += 1;
1458 }
1459
1460 if (!xi->value) {
1461 /* Remove the old entry. */
1462 last -= 1;
1463 memmove(xs->here, xs->here + 1,
1464 (void *)last - (void *)xs->here);
1465 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
1466 le16_add_cpu(&xs->header->xh_count, -1);
1467 }
1468 }
1469 if (xi->value) {
1470 /* Insert the new name+value. */
1471 size_t size = OCFS2_XATTR_SIZE(name_len) +
1472 OCFS2_XATTR_SIZE(xi->value_len);
1473 void *val = xs->base + min_offs - size;
1474
1475 xs->here->xe_name_offset = cpu_to_le16(min_offs - size);
1476 memset(val, 0, size);
1477 memcpy(val, xi->name, name_len);
1478 memcpy(val + OCFS2_XATTR_SIZE(name_len),
1479 xi->value,
1480 xi->value_len);
1481 xs->here->xe_value_size = cpu_to_le64(xi->value_len);
1482 ocfs2_xattr_set_local(xs->here, 1);
1483 ocfs2_xattr_hash_entry(inode, xs->header, xs->here);
1484 }
1485
1486 return;
1487}
1488
1489/*
1490 * ocfs2_xattr_set_entry()
1491 *
1492 * Set extended attribute entry into inode or block.
1493 *
1494 * If extended attribute value size > OCFS2_XATTR_INLINE_SIZE,
1495 * We first insert tree root(ocfs2_xattr_value_root) with set_entry_local(),
1496 * then set value in B tree with set_value_outside().
1497 */
1498static int ocfs2_xattr_set_entry(struct inode *inode,
1499 struct ocfs2_xattr_info *xi,
1500 struct ocfs2_xattr_search *xs,
Tao Ma78f30c32008-11-12 08:27:00 +08001501 struct ocfs2_xattr_set_ctxt *ctxt,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001502 int flag)
1503{
1504 struct ocfs2_xattr_entry *last;
1505 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1506 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1507 size_t min_offs = xs->end - xs->base, name_len = strlen(xi->name);
1508 size_t size_l = 0;
Tao Ma85db90e2008-11-12 08:27:01 +08001509 handle_t *handle = ctxt->handle;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001510 int free, i, ret;
1511 struct ocfs2_xattr_info xi_l = {
1512 .name_index = xi->name_index,
1513 .name = xi->name,
1514 .value = xi->value,
1515 .value_len = xi->value_len,
1516 };
Joel Becker512620f2008-12-09 15:58:35 -08001517 struct ocfs2_xattr_value_buf vb = {
1518 .vb_bh = xs->xattr_bh,
1519 .vb_access = ocfs2_journal_access_di,
1520 };
1521
1522 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1523 BUG_ON(xs->xattr_bh == xs->inode_bh);
1524 vb.vb_access = ocfs2_journal_access_xb;
1525 } else
1526 BUG_ON(xs->xattr_bh != xs->inode_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001527
1528 /* Compute min_offs, last and free space. */
1529 last = xs->header->xh_entries;
1530
1531 for (i = 0 ; i < le16_to_cpu(xs->header->xh_count); i++) {
1532 size_t offs = le16_to_cpu(last->xe_name_offset);
1533 if (offs < min_offs)
1534 min_offs = offs;
1535 last += 1;
1536 }
1537
Tiger Yang4442f512009-02-20 11:11:50 +08001538 free = min_offs - ((void *)last - xs->base) - OCFS2_XATTR_HEADER_GAP;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001539 if (free < 0)
Joel Beckerb37c4d82008-10-20 18:24:03 -07001540 return -EIO;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001541
1542 if (!xs->not_found) {
1543 size_t size = 0;
1544 if (ocfs2_xattr_is_local(xs->here))
1545 size = OCFS2_XATTR_SIZE(name_len) +
1546 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1547 else
1548 size = OCFS2_XATTR_SIZE(name_len) +
1549 OCFS2_XATTR_ROOT_SIZE;
1550 free += (size + sizeof(struct ocfs2_xattr_entry));
1551 }
1552 /* Check free space in inode or block */
1553 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1554 if (free < sizeof(struct ocfs2_xattr_entry) +
1555 OCFS2_XATTR_SIZE(name_len) +
1556 OCFS2_XATTR_ROOT_SIZE) {
1557 ret = -ENOSPC;
1558 goto out;
1559 }
1560 size_l = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_ROOT_SIZE;
1561 xi_l.value = (void *)&def_xv;
1562 xi_l.value_len = OCFS2_XATTR_ROOT_SIZE;
1563 } else if (xi->value) {
1564 if (free < sizeof(struct ocfs2_xattr_entry) +
1565 OCFS2_XATTR_SIZE(name_len) +
1566 OCFS2_XATTR_SIZE(xi->value_len)) {
1567 ret = -ENOSPC;
1568 goto out;
1569 }
1570 }
1571
1572 if (!xs->not_found) {
1573 /* For existing extended attribute */
1574 size_t size = OCFS2_XATTR_SIZE(name_len) +
1575 OCFS2_XATTR_SIZE(le64_to_cpu(xs->here->xe_value_size));
1576 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
1577 void *val = xs->base + offs;
1578
1579 if (ocfs2_xattr_is_local(xs->here) && size == size_l) {
1580 /* Replace existing local xattr with tree root */
1581 ret = ocfs2_xattr_set_value_outside(inode, xi, xs,
Joel Becker512620f2008-12-09 15:58:35 -08001582 ctxt, &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001583 if (ret < 0)
1584 mlog_errno(ret);
1585 goto out;
1586 } else if (!ocfs2_xattr_is_local(xs->here)) {
1587 /* For existing xattr which has value outside */
Joel Becker512620f2008-12-09 15:58:35 -08001588 vb.vb_xv = (struct ocfs2_xattr_value_root *)
1589 (val + OCFS2_XATTR_SIZE(name_len));
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001590
1591 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1592 /*
1593 * If new value need set outside also,
1594 * first truncate old value to new value,
1595 * then set new value with set_value_outside().
1596 */
1597 ret = ocfs2_xattr_value_truncate(inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001598 &vb,
Tao Ma78f30c32008-11-12 08:27:00 +08001599 xi->value_len,
1600 ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001601 if (ret < 0) {
1602 mlog_errno(ret);
1603 goto out;
1604 }
1605
Tao Ma85db90e2008-11-12 08:27:01 +08001606 ret = ocfs2_xattr_update_entry(inode,
1607 handle,
1608 xi,
1609 xs,
Joel Becker0c748e92008-12-09 15:46:15 -08001610 &vb,
Tao Ma85db90e2008-11-12 08:27:01 +08001611 offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001612 if (ret < 0) {
1613 mlog_errno(ret);
1614 goto out;
1615 }
1616
Tao Ma85db90e2008-11-12 08:27:01 +08001617 ret = __ocfs2_xattr_set_value_outside(inode,
1618 handle,
Tao Ma492a8a32009-08-18 11:43:17 +08001619 &vb,
Tao Ma85db90e2008-11-12 08:27:01 +08001620 xi->value,
1621 xi->value_len);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001622 if (ret < 0)
1623 mlog_errno(ret);
1624 goto out;
1625 } else {
1626 /*
1627 * If new value need set in local,
1628 * just trucate old value to zero.
1629 */
1630 ret = ocfs2_xattr_value_truncate(inode,
Joel Beckerb3e5d372008-12-09 15:01:04 -08001631 &vb,
Tao Ma85db90e2008-11-12 08:27:01 +08001632 0,
1633 ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001634 if (ret < 0)
1635 mlog_errno(ret);
1636 }
1637 }
1638 }
1639
Joel Becker0cf2f762009-02-12 16:41:25 -08001640 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), xs->inode_bh,
Joel Becker512620f2008-12-09 15:58:35 -08001641 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001642 if (ret) {
1643 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001644 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001645 }
1646
1647 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
Joel Becker0cf2f762009-02-12 16:41:25 -08001648 ret = vb.vb_access(handle, INODE_CACHE(inode), vb.vb_bh,
Joel Becker512620f2008-12-09 15:58:35 -08001649 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001650 if (ret) {
1651 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001652 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001653 }
1654 }
1655
1656 /*
1657 * Set value in local, include set tree root in local.
1658 * This is the first step for value size >INLINE_SIZE.
1659 */
1660 ocfs2_xattr_set_entry_local(inode, &xi_l, xs, last, min_offs);
1661
1662 if (!(flag & OCFS2_INLINE_XATTR_FL)) {
1663 ret = ocfs2_journal_dirty(handle, xs->xattr_bh);
1664 if (ret < 0) {
1665 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08001666 goto out;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001667 }
1668 }
1669
1670 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) &&
1671 (flag & OCFS2_INLINE_XATTR_FL)) {
1672 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1673 unsigned int xattrsize = osb->s_xattr_inline_size;
1674
1675 /*
1676 * Adjust extent record count or inline data size
1677 * to reserve space for extended attribute.
1678 */
1679 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1680 struct ocfs2_inline_data *idata = &di->id2.i_data;
1681 le16_add_cpu(&idata->id_count, -xattrsize);
1682 } else if (!(ocfs2_inode_is_fast_symlink(inode))) {
1683 struct ocfs2_extent_list *el = &di->id2.i_list;
1684 le16_add_cpu(&el->l_count, -(xattrsize /
1685 sizeof(struct ocfs2_extent_rec)));
1686 }
1687 di->i_xattr_inline_size = cpu_to_le16(xattrsize);
1688 }
1689 /* Update xattr flag */
1690 spin_lock(&oi->ip_lock);
1691 oi->ip_dyn_features |= flag;
1692 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1693 spin_unlock(&oi->ip_lock);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001694
1695 ret = ocfs2_journal_dirty(handle, xs->inode_bh);
1696 if (ret < 0)
1697 mlog_errno(ret);
1698
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001699 if (!ret && xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
1700 /*
1701 * Set value outside in B tree.
1702 * This is the second step for value size > INLINE_SIZE.
1703 */
1704 size_t offs = le16_to_cpu(xs->here->xe_name_offset);
Joel Becker512620f2008-12-09 15:58:35 -08001705 ret = ocfs2_xattr_set_value_outside(inode, xi, xs, ctxt,
1706 &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001707 if (ret < 0) {
1708 int ret2;
1709
1710 mlog_errno(ret);
1711 /*
1712 * If set value outside failed, we have to clean
1713 * the junk tree root we have already set in local.
1714 */
Tao Ma85db90e2008-11-12 08:27:01 +08001715 ret2 = ocfs2_xattr_cleanup(inode, ctxt->handle,
Joel Becker512620f2008-12-09 15:58:35 -08001716 xi, xs, &vb, offs);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001717 if (ret2 < 0)
1718 mlog_errno(ret2);
1719 }
1720 }
1721out:
1722 return ret;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001723}
1724
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001725static int ocfs2_remove_value_outside(struct inode*inode,
Joel Becker43119012008-12-09 16:24:43 -08001726 struct ocfs2_xattr_value_buf *vb,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001727 struct ocfs2_xattr_header *header)
1728{
1729 int ret = 0, i;
Tao Ma78f30c32008-11-12 08:27:00 +08001730 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1731 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
1732
1733 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001734
Jan Karaa90714c2008-10-09 19:38:40 +02001735 ctxt.handle = ocfs2_start_trans(osb,
1736 ocfs2_remove_extent_credits(osb->sb));
Tao Ma85db90e2008-11-12 08:27:01 +08001737 if (IS_ERR(ctxt.handle)) {
1738 ret = PTR_ERR(ctxt.handle);
1739 mlog_errno(ret);
1740 goto out;
1741 }
1742
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001743 for (i = 0; i < le16_to_cpu(header->xh_count); i++) {
1744 struct ocfs2_xattr_entry *entry = &header->xh_entries[i];
1745
1746 if (!ocfs2_xattr_is_local(entry)) {
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001747 void *val;
1748
1749 val = (void *)header +
1750 le16_to_cpu(entry->xe_name_offset);
Joel Becker43119012008-12-09 16:24:43 -08001751 vb->vb_xv = (struct ocfs2_xattr_value_root *)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001752 (val + OCFS2_XATTR_SIZE(entry->xe_name_len));
Joel Becker43119012008-12-09 16:24:43 -08001753 ret = ocfs2_xattr_value_truncate(inode, vb, 0, &ctxt);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001754 if (ret < 0) {
1755 mlog_errno(ret);
Tao Ma78f30c32008-11-12 08:27:00 +08001756 break;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001757 }
1758 }
1759 }
1760
Tao Ma85db90e2008-11-12 08:27:01 +08001761 ocfs2_commit_trans(osb, ctxt.handle);
Tao Ma78f30c32008-11-12 08:27:00 +08001762 ocfs2_schedule_truncate_log_flush(osb, 1);
1763 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tao Ma85db90e2008-11-12 08:27:01 +08001764out:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001765 return ret;
1766}
1767
1768static int ocfs2_xattr_ibody_remove(struct inode *inode,
1769 struct buffer_head *di_bh)
1770{
1771
1772 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1773 struct ocfs2_xattr_header *header;
1774 int ret;
Joel Becker43119012008-12-09 16:24:43 -08001775 struct ocfs2_xattr_value_buf vb = {
1776 .vb_bh = di_bh,
1777 .vb_access = ocfs2_journal_access_di,
1778 };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001779
1780 header = (struct ocfs2_xattr_header *)
1781 ((void *)di + inode->i_sb->s_blocksize -
1782 le16_to_cpu(di->i_xattr_inline_size));
1783
Joel Becker43119012008-12-09 16:24:43 -08001784 ret = ocfs2_remove_value_outside(inode, &vb, header);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001785
1786 return ret;
1787}
1788
1789static int ocfs2_xattr_block_remove(struct inode *inode,
1790 struct buffer_head *blk_bh)
1791{
1792 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001793 int ret = 0;
Joel Becker43119012008-12-09 16:24:43 -08001794 struct ocfs2_xattr_value_buf vb = {
1795 .vb_bh = blk_bh,
1796 .vb_access = ocfs2_journal_access_xb,
1797 };
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001798
1799 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Maa3944252008-08-18 17:38:54 +08001800 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
1801 struct ocfs2_xattr_header *header = &(xb->xb_attrs.xb_header);
Joel Becker43119012008-12-09 16:24:43 -08001802 ret = ocfs2_remove_value_outside(inode, &vb, header);
Tao Maa3944252008-08-18 17:38:54 +08001803 } else
1804 ret = ocfs2_delete_xattr_index_block(inode, blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001805
1806 return ret;
1807}
1808
Tao Ma08413892008-08-29 09:00:19 +08001809static int ocfs2_xattr_free_block(struct inode *inode,
1810 u64 block)
1811{
1812 struct inode *xb_alloc_inode;
1813 struct buffer_head *xb_alloc_bh = NULL;
1814 struct buffer_head *blk_bh = NULL;
1815 struct ocfs2_xattr_block *xb;
1816 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1817 handle_t *handle;
1818 int ret = 0;
1819 u64 blk, bg_blkno;
1820 u16 bit;
1821
Joel Becker4ae1d692008-11-13 14:49:18 -08001822 ret = ocfs2_read_xattr_block(inode, block, &blk_bh);
Tao Ma08413892008-08-29 09:00:19 +08001823 if (ret < 0) {
1824 mlog_errno(ret);
1825 goto out;
1826 }
1827
Tao Ma08413892008-08-29 09:00:19 +08001828 ret = ocfs2_xattr_block_remove(inode, blk_bh);
1829 if (ret < 0) {
1830 mlog_errno(ret);
1831 goto out;
1832 }
1833
Joel Becker4ae1d692008-11-13 14:49:18 -08001834 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tao Ma08413892008-08-29 09:00:19 +08001835 blk = le64_to_cpu(xb->xb_blkno);
1836 bit = le16_to_cpu(xb->xb_suballoc_bit);
1837 bg_blkno = ocfs2_which_suballoc_group(blk, bit);
1838
1839 xb_alloc_inode = ocfs2_get_system_file_inode(osb,
1840 EXTENT_ALLOC_SYSTEM_INODE,
1841 le16_to_cpu(xb->xb_suballoc_slot));
1842 if (!xb_alloc_inode) {
1843 ret = -ENOMEM;
1844 mlog_errno(ret);
1845 goto out;
1846 }
1847 mutex_lock(&xb_alloc_inode->i_mutex);
1848
1849 ret = ocfs2_inode_lock(xb_alloc_inode, &xb_alloc_bh, 1);
1850 if (ret < 0) {
1851 mlog_errno(ret);
1852 goto out_mutex;
1853 }
1854
1855 handle = ocfs2_start_trans(osb, OCFS2_SUBALLOC_FREE);
1856 if (IS_ERR(handle)) {
1857 ret = PTR_ERR(handle);
1858 mlog_errno(ret);
1859 goto out_unlock;
1860 }
1861
1862 ret = ocfs2_free_suballoc_bits(handle, xb_alloc_inode, xb_alloc_bh,
1863 bit, bg_blkno, 1);
1864 if (ret < 0)
1865 mlog_errno(ret);
1866
1867 ocfs2_commit_trans(osb, handle);
1868out_unlock:
1869 ocfs2_inode_unlock(xb_alloc_inode, 1);
1870 brelse(xb_alloc_bh);
1871out_mutex:
1872 mutex_unlock(&xb_alloc_inode->i_mutex);
1873 iput(xb_alloc_inode);
1874out:
1875 brelse(blk_bh);
1876 return ret;
1877}
1878
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001879/*
1880 * ocfs2_xattr_remove()
1881 *
1882 * Free extended attribute resources associated with this inode.
1883 */
1884int ocfs2_xattr_remove(struct inode *inode, struct buffer_head *di_bh)
1885{
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001886 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1887 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1888 handle_t *handle;
1889 int ret;
1890
Tiger Yang8154da32008-08-18 17:11:46 +08001891 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
1892 return 0;
1893
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001894 if (!(oi->ip_dyn_features & OCFS2_HAS_XATTR_FL))
1895 return 0;
1896
1897 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
1898 ret = ocfs2_xattr_ibody_remove(inode, di_bh);
1899 if (ret < 0) {
1900 mlog_errno(ret);
1901 goto out;
1902 }
1903 }
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001904
Tao Ma08413892008-08-29 09:00:19 +08001905 if (di->i_xattr_loc) {
1906 ret = ocfs2_xattr_free_block(inode,
1907 le64_to_cpu(di->i_xattr_loc));
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001908 if (ret < 0) {
1909 mlog_errno(ret);
1910 goto out;
1911 }
1912 }
1913
1914 handle = ocfs2_start_trans((OCFS2_SB(inode->i_sb)),
1915 OCFS2_INODE_UPDATE_CREDITS);
1916 if (IS_ERR(handle)) {
1917 ret = PTR_ERR(handle);
1918 mlog_errno(ret);
1919 goto out;
1920 }
Joel Becker0cf2f762009-02-12 16:41:25 -08001921 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
Joel Becker84008972008-12-09 16:11:49 -08001922 OCFS2_JOURNAL_ACCESS_WRITE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001923 if (ret) {
1924 mlog_errno(ret);
1925 goto out_commit;
1926 }
1927
Tao Ma08413892008-08-29 09:00:19 +08001928 di->i_xattr_loc = 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001929
1930 spin_lock(&oi->ip_lock);
1931 oi->ip_dyn_features &= ~(OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL);
1932 di->i_dyn_features = cpu_to_le16(oi->ip_dyn_features);
1933 spin_unlock(&oi->ip_lock);
1934
1935 ret = ocfs2_journal_dirty(handle, di_bh);
1936 if (ret < 0)
1937 mlog_errno(ret);
1938out_commit:
1939 ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle);
1940out:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001941 return ret;
1942}
1943
1944static int ocfs2_xattr_has_space_inline(struct inode *inode,
1945 struct ocfs2_dinode *di)
1946{
1947 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1948 unsigned int xattrsize = OCFS2_SB(inode->i_sb)->s_xattr_inline_size;
1949 int free;
1950
1951 if (xattrsize < OCFS2_MIN_XATTR_INLINE_SIZE)
1952 return 0;
1953
1954 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1955 struct ocfs2_inline_data *idata = &di->id2.i_data;
1956 free = le16_to_cpu(idata->id_count) - le64_to_cpu(di->i_size);
1957 } else if (ocfs2_inode_is_fast_symlink(inode)) {
1958 free = ocfs2_fast_symlink_chars(inode->i_sb) -
1959 le64_to_cpu(di->i_size);
1960 } else {
1961 struct ocfs2_extent_list *el = &di->id2.i_list;
1962 free = (le16_to_cpu(el->l_count) -
1963 le16_to_cpu(el->l_next_free_rec)) *
1964 sizeof(struct ocfs2_extent_rec);
1965 }
1966 if (free >= xattrsize)
1967 return 1;
1968
1969 return 0;
1970}
1971
1972/*
1973 * ocfs2_xattr_ibody_find()
1974 *
1975 * Find extended attribute in inode block and
1976 * fill search info into struct ocfs2_xattr_search.
1977 */
1978static int ocfs2_xattr_ibody_find(struct inode *inode,
1979 int name_index,
1980 const char *name,
1981 struct ocfs2_xattr_search *xs)
1982{
1983 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1984 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
1985 int ret;
1986 int has_space = 0;
1987
1988 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
1989 return 0;
1990
1991 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
1992 down_read(&oi->ip_alloc_sem);
1993 has_space = ocfs2_xattr_has_space_inline(inode, di);
1994 up_read(&oi->ip_alloc_sem);
1995 if (!has_space)
1996 return 0;
1997 }
1998
1999 xs->xattr_bh = xs->inode_bh;
2000 xs->end = (void *)di + inode->i_sb->s_blocksize;
2001 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)
2002 xs->header = (struct ocfs2_xattr_header *)
2003 (xs->end - le16_to_cpu(di->i_xattr_inline_size));
2004 else
2005 xs->header = (struct ocfs2_xattr_header *)
2006 (xs->end - OCFS2_SB(inode->i_sb)->s_xattr_inline_size);
2007 xs->base = (void *)xs->header;
2008 xs->here = xs->header->xh_entries;
2009
2010 /* Find the named attribute. */
2011 if (oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL) {
2012 ret = ocfs2_xattr_find_entry(name_index, name, xs);
2013 if (ret && ret != -ENODATA)
2014 return ret;
2015 xs->not_found = ret;
2016 }
2017
2018 return 0;
2019}
2020
2021/*
2022 * ocfs2_xattr_ibody_set()
2023 *
2024 * Set, replace or remove an extended attribute into inode block.
2025 *
2026 */
2027static int ocfs2_xattr_ibody_set(struct inode *inode,
2028 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08002029 struct ocfs2_xattr_search *xs,
2030 struct ocfs2_xattr_set_ctxt *ctxt)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002031{
2032 struct ocfs2_inode_info *oi = OCFS2_I(inode);
2033 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2034 int ret;
2035
2036 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE)
2037 return -ENOSPC;
2038
2039 down_write(&oi->ip_alloc_sem);
2040 if (!(oi->ip_dyn_features & OCFS2_INLINE_XATTR_FL)) {
2041 if (!ocfs2_xattr_has_space_inline(inode, di)) {
2042 ret = -ENOSPC;
2043 goto out;
2044 }
2045 }
2046
Tao Ma78f30c32008-11-12 08:27:00 +08002047 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002048 (OCFS2_INLINE_XATTR_FL | OCFS2_HAS_XATTR_FL));
2049out:
2050 up_write(&oi->ip_alloc_sem);
2051
2052 return ret;
2053}
2054
2055/*
2056 * ocfs2_xattr_block_find()
2057 *
2058 * Find extended attribute in external block and
2059 * fill search info into struct ocfs2_xattr_search.
2060 */
2061static int ocfs2_xattr_block_find(struct inode *inode,
2062 int name_index,
2063 const char *name,
2064 struct ocfs2_xattr_search *xs)
2065{
2066 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
2067 struct buffer_head *blk_bh = NULL;
Tao Ma589dc262008-08-18 17:38:51 +08002068 struct ocfs2_xattr_block *xb;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002069 int ret = 0;
2070
2071 if (!di->i_xattr_loc)
2072 return ret;
2073
Joel Becker4ae1d692008-11-13 14:49:18 -08002074 ret = ocfs2_read_xattr_block(inode, le64_to_cpu(di->i_xattr_loc),
2075 &blk_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002076 if (ret < 0) {
2077 mlog_errno(ret);
2078 return ret;
2079 }
Joel Beckerf6087fb2008-10-20 18:20:43 -07002080
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002081 xs->xattr_bh = blk_bh;
Joel Becker4ae1d692008-11-13 14:49:18 -08002082 xb = (struct ocfs2_xattr_block *)blk_bh->b_data;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002083
Tao Ma589dc262008-08-18 17:38:51 +08002084 if (!(le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED)) {
2085 xs->header = &xb->xb_attrs.xb_header;
2086 xs->base = (void *)xs->header;
2087 xs->end = (void *)(blk_bh->b_data) + blk_bh->b_size;
2088 xs->here = xs->header->xh_entries;
2089
2090 ret = ocfs2_xattr_find_entry(name_index, name, xs);
2091 } else
2092 ret = ocfs2_xattr_index_block_find(inode, blk_bh,
2093 name_index,
2094 name, xs);
2095
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002096 if (ret && ret != -ENODATA) {
2097 xs->xattr_bh = NULL;
2098 goto cleanup;
2099 }
2100 xs->not_found = ret;
2101 return 0;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002102cleanup:
2103 brelse(blk_bh);
2104
2105 return ret;
2106}
2107
2108/*
2109 * ocfs2_xattr_block_set()
2110 *
2111 * Set, replace or remove an extended attribute into external block.
2112 *
2113 */
2114static int ocfs2_xattr_block_set(struct inode *inode,
2115 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08002116 struct ocfs2_xattr_search *xs,
2117 struct ocfs2_xattr_set_ctxt *ctxt)
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002118{
2119 struct buffer_head *new_bh = NULL;
2120 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2121 struct ocfs2_dinode *di = (struct ocfs2_dinode *)xs->inode_bh->b_data;
Tao Ma85db90e2008-11-12 08:27:01 +08002122 handle_t *handle = ctxt->handle;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002123 struct ocfs2_xattr_block *xblk = NULL;
2124 u16 suballoc_bit_start;
2125 u32 num_got;
2126 u64 first_blkno;
2127 int ret;
2128
2129 if (!xs->xattr_bh) {
Joel Becker0cf2f762009-02-12 16:41:25 -08002130 ret = ocfs2_journal_access_di(handle, INODE_CACHE(inode),
2131 xs->inode_bh,
Joel Becker84008972008-12-09 16:11:49 -08002132 OCFS2_JOURNAL_ACCESS_CREATE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002133 if (ret < 0) {
2134 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002135 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002136 }
2137
Tao Ma78f30c32008-11-12 08:27:00 +08002138 ret = ocfs2_claim_metadata(osb, handle, ctxt->meta_ac, 1,
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002139 &suballoc_bit_start, &num_got,
2140 &first_blkno);
2141 if (ret < 0) {
2142 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002143 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002144 }
2145
2146 new_bh = sb_getblk(inode->i_sb, first_blkno);
Joel Becker8cb471e2009-02-10 20:00:41 -08002147 ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), new_bh);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002148
Joel Becker0cf2f762009-02-12 16:41:25 -08002149 ret = ocfs2_journal_access_xb(handle, INODE_CACHE(inode),
2150 new_bh,
Joel Becker84008972008-12-09 16:11:49 -08002151 OCFS2_JOURNAL_ACCESS_CREATE);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002152 if (ret < 0) {
2153 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002154 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002155 }
2156
2157 /* Initialize ocfs2_xattr_block */
2158 xs->xattr_bh = new_bh;
2159 xblk = (struct ocfs2_xattr_block *)new_bh->b_data;
2160 memset(xblk, 0, inode->i_sb->s_blocksize);
2161 strcpy((void *)xblk, OCFS2_XATTR_BLOCK_SIGNATURE);
2162 xblk->xb_suballoc_slot = cpu_to_le16(osb->slot_num);
2163 xblk->xb_suballoc_bit = cpu_to_le16(suballoc_bit_start);
2164 xblk->xb_fs_generation = cpu_to_le32(osb->fs_generation);
2165 xblk->xb_blkno = cpu_to_le64(first_blkno);
2166
2167 xs->header = &xblk->xb_attrs.xb_header;
2168 xs->base = (void *)xs->header;
2169 xs->end = (void *)xblk + inode->i_sb->s_blocksize;
2170 xs->here = xs->header->xh_entries;
2171
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002172 ret = ocfs2_journal_dirty(handle, new_bh);
2173 if (ret < 0) {
2174 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08002175 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002176 }
2177 di->i_xattr_loc = cpu_to_le64(first_blkno);
Tao Ma85db90e2008-11-12 08:27:01 +08002178 ocfs2_journal_dirty(handle, xs->inode_bh);
Tao Ma01225592008-08-18 17:38:53 +08002179 } else
2180 xblk = (struct ocfs2_xattr_block *)xs->xattr_bh->b_data;
2181
2182 if (!(le16_to_cpu(xblk->xb_flags) & OCFS2_XATTR_INDEXED)) {
2183 /* Set extended attribute into external block */
Tao Ma78f30c32008-11-12 08:27:00 +08002184 ret = ocfs2_xattr_set_entry(inode, xi, xs, ctxt,
2185 OCFS2_HAS_XATTR_FL);
Tao Ma01225592008-08-18 17:38:53 +08002186 if (!ret || ret != -ENOSPC)
2187 goto end;
2188
Tao Ma78f30c32008-11-12 08:27:00 +08002189 ret = ocfs2_xattr_create_index_block(inode, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08002190 if (ret)
2191 goto end;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002192 }
2193
Tao Ma78f30c32008-11-12 08:27:00 +08002194 ret = ocfs2_xattr_set_entry_index_block(inode, xi, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08002195
2196end:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002197
2198 return ret;
2199}
2200
Tao Ma78f30c32008-11-12 08:27:00 +08002201/* Check whether the new xattr can be inserted into the inode. */
2202static int ocfs2_xattr_can_be_in_inode(struct inode *inode,
2203 struct ocfs2_xattr_info *xi,
2204 struct ocfs2_xattr_search *xs)
2205{
2206 u64 value_size;
2207 struct ocfs2_xattr_entry *last;
2208 int free, i;
2209 size_t min_offs = xs->end - xs->base;
2210
2211 if (!xs->header)
2212 return 0;
2213
2214 last = xs->header->xh_entries;
2215
2216 for (i = 0; i < le16_to_cpu(xs->header->xh_count); i++) {
2217 size_t offs = le16_to_cpu(last->xe_name_offset);
2218 if (offs < min_offs)
2219 min_offs = offs;
2220 last += 1;
2221 }
2222
Tiger Yang4442f512009-02-20 11:11:50 +08002223 free = min_offs - ((void *)last - xs->base) - OCFS2_XATTR_HEADER_GAP;
Tao Ma78f30c32008-11-12 08:27:00 +08002224 if (free < 0)
2225 return 0;
2226
2227 BUG_ON(!xs->not_found);
2228
2229 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
2230 value_size = OCFS2_XATTR_ROOT_SIZE;
2231 else
2232 value_size = OCFS2_XATTR_SIZE(xi->value_len);
2233
2234 if (free >= sizeof(struct ocfs2_xattr_entry) +
2235 OCFS2_XATTR_SIZE(strlen(xi->name)) + value_size)
2236 return 1;
2237
2238 return 0;
2239}
2240
2241static int ocfs2_calc_xattr_set_need(struct inode *inode,
2242 struct ocfs2_dinode *di,
2243 struct ocfs2_xattr_info *xi,
2244 struct ocfs2_xattr_search *xis,
2245 struct ocfs2_xattr_search *xbs,
2246 int *clusters_need,
Tao Ma85db90e2008-11-12 08:27:01 +08002247 int *meta_need,
2248 int *credits_need)
Tao Ma78f30c32008-11-12 08:27:00 +08002249{
2250 int ret = 0, old_in_xb = 0;
Tao Ma85db90e2008-11-12 08:27:01 +08002251 int clusters_add = 0, meta_add = 0, credits = 0;
Tao Ma78f30c32008-11-12 08:27:00 +08002252 struct buffer_head *bh = NULL;
2253 struct ocfs2_xattr_block *xb = NULL;
2254 struct ocfs2_xattr_entry *xe = NULL;
2255 struct ocfs2_xattr_value_root *xv = NULL;
2256 char *base = NULL;
2257 int name_offset, name_len = 0;
2258 u32 new_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2259 xi->value_len);
2260 u64 value_size;
2261
Tao Ma71d548a2008-12-05 06:20:54 +08002262 /*
2263 * Calculate the clusters we need to write.
2264 * No matter whether we replace an old one or add a new one,
2265 * we need this for writing.
2266 */
2267 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
2268 credits += new_clusters *
2269 ocfs2_clusters_to_blocks(inode->i_sb, 1);
2270
Tao Ma78f30c32008-11-12 08:27:00 +08002271 if (xis->not_found && xbs->not_found) {
Tao Ma85db90e2008-11-12 08:27:01 +08002272 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2273
2274 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
Tao Ma78f30c32008-11-12 08:27:00 +08002275 clusters_add += new_clusters;
Tao Ma85db90e2008-11-12 08:27:01 +08002276 credits += ocfs2_calc_extend_credits(inode->i_sb,
2277 &def_xv.xv.xr_list,
2278 new_clusters);
2279 }
Tao Ma78f30c32008-11-12 08:27:00 +08002280
2281 goto meta_guess;
2282 }
2283
2284 if (!xis->not_found) {
2285 xe = xis->here;
2286 name_offset = le16_to_cpu(xe->xe_name_offset);
2287 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2288 base = xis->base;
Tao Ma85db90e2008-11-12 08:27:01 +08002289 credits += OCFS2_INODE_UPDATE_CREDITS;
Tao Ma78f30c32008-11-12 08:27:00 +08002290 } else {
Joel Becker970e4932008-11-13 14:49:19 -08002291 int i, block_off = 0;
Tao Ma78f30c32008-11-12 08:27:00 +08002292 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2293 xe = xbs->here;
2294 name_offset = le16_to_cpu(xe->xe_name_offset);
2295 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
2296 i = xbs->here - xbs->header->xh_entries;
2297 old_in_xb = 1;
2298
2299 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
Tao Mafd68a892009-08-18 11:43:21 +08002300 ret = ocfs2_xattr_bucket_get_name_value(inode->i_sb,
Tao Ma78f30c32008-11-12 08:27:00 +08002301 bucket_xh(xbs->bucket),
2302 i, &block_off,
2303 &name_offset);
2304 base = bucket_block(xbs->bucket, block_off);
Tao Ma85db90e2008-11-12 08:27:01 +08002305 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
2306 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002307 base = xbs->base;
Tao Ma85db90e2008-11-12 08:27:01 +08002308 credits += OCFS2_XATTR_BLOCK_UPDATE_CREDITS;
2309 }
2310 }
2311
2312 /*
2313 * delete a xattr doesn't need metadata and cluster allocation.
2314 * so just calculate the credits and return.
2315 *
2316 * The credits for removing the value tree will be extended
2317 * by ocfs2_remove_extent itself.
2318 */
2319 if (!xi->value) {
2320 if (!ocfs2_xattr_is_local(xe))
Jan Karaa90714c2008-10-09 19:38:40 +02002321 credits += ocfs2_remove_extent_credits(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08002322
2323 goto out;
Tao Ma78f30c32008-11-12 08:27:00 +08002324 }
2325
2326 /* do cluster allocation guess first. */
2327 value_size = le64_to_cpu(xe->xe_value_size);
2328
2329 if (old_in_xb) {
2330 /*
2331 * In xattr set, we always try to set the xe in inode first,
2332 * so if it can be inserted into inode successfully, the old
2333 * one will be removed from the xattr block, and this xattr
2334 * will be inserted into inode as a new xattr in inode.
2335 */
2336 if (ocfs2_xattr_can_be_in_inode(inode, xi, xis)) {
2337 clusters_add += new_clusters;
Jan Karaa90714c2008-10-09 19:38:40 +02002338 credits += ocfs2_remove_extent_credits(inode->i_sb) +
Tao Ma85db90e2008-11-12 08:27:01 +08002339 OCFS2_INODE_UPDATE_CREDITS;
2340 if (!ocfs2_xattr_is_local(xe))
2341 credits += ocfs2_calc_extend_credits(
2342 inode->i_sb,
2343 &def_xv.xv.xr_list,
2344 new_clusters);
Tao Ma78f30c32008-11-12 08:27:00 +08002345 goto out;
2346 }
2347 }
2348
2349 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE) {
2350 /* the new values will be stored outside. */
2351 u32 old_clusters = 0;
2352
2353 if (!ocfs2_xattr_is_local(xe)) {
2354 old_clusters = ocfs2_clusters_for_bytes(inode->i_sb,
2355 value_size);
2356 xv = (struct ocfs2_xattr_value_root *)
2357 (base + name_offset + name_len);
Tao Ma97aff522008-11-19 16:48:41 +08002358 value_size = OCFS2_XATTR_ROOT_SIZE;
Tao Ma78f30c32008-11-12 08:27:00 +08002359 } else
2360 xv = &def_xv.xv;
2361
Tao Ma85db90e2008-11-12 08:27:01 +08002362 if (old_clusters >= new_clusters) {
Jan Karaa90714c2008-10-09 19:38:40 +02002363 credits += ocfs2_remove_extent_credits(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002364 goto out;
Tao Ma85db90e2008-11-12 08:27:01 +08002365 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002366 meta_add += ocfs2_extend_meta_needed(&xv->xr_list);
2367 clusters_add += new_clusters - old_clusters;
Tao Ma85db90e2008-11-12 08:27:01 +08002368 credits += ocfs2_calc_extend_credits(inode->i_sb,
2369 &xv->xr_list,
2370 new_clusters -
2371 old_clusters);
Tao Ma97aff522008-11-19 16:48:41 +08002372 if (value_size >= OCFS2_XATTR_ROOT_SIZE)
2373 goto out;
Tao Ma78f30c32008-11-12 08:27:00 +08002374 }
2375 } else {
2376 /*
2377 * Now the new value will be stored inside. So if the new
2378 * value is smaller than the size of value root or the old
2379 * value, we don't need any allocation, otherwise we have
2380 * to guess metadata allocation.
2381 */
2382 if ((ocfs2_xattr_is_local(xe) && value_size >= xi->value_len) ||
2383 (!ocfs2_xattr_is_local(xe) &&
2384 OCFS2_XATTR_ROOT_SIZE >= xi->value_len))
2385 goto out;
2386 }
2387
2388meta_guess:
2389 /* calculate metadata allocation. */
2390 if (di->i_xattr_loc) {
2391 if (!xbs->xattr_bh) {
Joel Becker4ae1d692008-11-13 14:49:18 -08002392 ret = ocfs2_read_xattr_block(inode,
2393 le64_to_cpu(di->i_xattr_loc),
2394 &bh);
Tao Ma78f30c32008-11-12 08:27:00 +08002395 if (ret) {
2396 mlog_errno(ret);
2397 goto out;
2398 }
2399
2400 xb = (struct ocfs2_xattr_block *)bh->b_data;
2401 } else
2402 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
2403
Tao Ma90cb5462008-12-05 06:20:56 +08002404 /*
2405 * If there is already an xattr tree, good, we can calculate
2406 * like other b-trees. Otherwise we may have the chance of
2407 * create a tree, the credit calculation is borrowed from
2408 * ocfs2_calc_extend_credits with root_el = NULL. And the
2409 * new tree will be cluster based, so no meta is needed.
2410 */
Tao Ma78f30c32008-11-12 08:27:00 +08002411 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
2412 struct ocfs2_extent_list *el =
2413 &xb->xb_attrs.xb_root.xt_list;
2414 meta_add += ocfs2_extend_meta_needed(el);
Tao Ma85db90e2008-11-12 08:27:01 +08002415 credits += ocfs2_calc_extend_credits(inode->i_sb,
2416 el, 1);
Tao Ma90cb5462008-12-05 06:20:56 +08002417 } else
2418 credits += OCFS2_SUBALLOC_ALLOC + 1;
Tao Ma78f30c32008-11-12 08:27:00 +08002419
2420 /*
2421 * This cluster will be used either for new bucket or for
2422 * new xattr block.
2423 * If the cluster size is the same as the bucket size, one
2424 * more is needed since we may need to extend the bucket
2425 * also.
2426 */
2427 clusters_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002428 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002429 if (OCFS2_XATTR_BUCKET_SIZE ==
Tao Ma85db90e2008-11-12 08:27:01 +08002430 OCFS2_SB(inode->i_sb)->s_clustersize) {
2431 credits += ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma78f30c32008-11-12 08:27:00 +08002432 clusters_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002433 }
2434 } else {
Tao Ma78f30c32008-11-12 08:27:00 +08002435 meta_add += 1;
Tao Ma85db90e2008-11-12 08:27:01 +08002436 credits += OCFS2_XATTR_BLOCK_CREATE_CREDITS;
2437 }
Tao Ma78f30c32008-11-12 08:27:00 +08002438out:
2439 if (clusters_need)
2440 *clusters_need = clusters_add;
2441 if (meta_need)
2442 *meta_need = meta_add;
Tao Ma85db90e2008-11-12 08:27:01 +08002443 if (credits_need)
2444 *credits_need = credits;
Tao Ma78f30c32008-11-12 08:27:00 +08002445 brelse(bh);
2446 return ret;
2447}
2448
2449static int ocfs2_init_xattr_set_ctxt(struct inode *inode,
2450 struct ocfs2_dinode *di,
2451 struct ocfs2_xattr_info *xi,
2452 struct ocfs2_xattr_search *xis,
2453 struct ocfs2_xattr_search *xbs,
Tao Ma85db90e2008-11-12 08:27:01 +08002454 struct ocfs2_xattr_set_ctxt *ctxt,
Tao Ma492a8a32009-08-18 11:43:17 +08002455 int extra_meta,
Tao Ma85db90e2008-11-12 08:27:01 +08002456 int *credits)
Tao Ma78f30c32008-11-12 08:27:00 +08002457{
2458 int clusters_add, meta_add, ret;
2459 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
2460
2461 memset(ctxt, 0, sizeof(struct ocfs2_xattr_set_ctxt));
2462
2463 ocfs2_init_dealloc_ctxt(&ctxt->dealloc);
2464
2465 ret = ocfs2_calc_xattr_set_need(inode, di, xi, xis, xbs,
Tao Ma85db90e2008-11-12 08:27:01 +08002466 &clusters_add, &meta_add, credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002467 if (ret) {
2468 mlog_errno(ret);
2469 return ret;
2470 }
2471
Tao Ma492a8a32009-08-18 11:43:17 +08002472 meta_add += extra_meta;
Tao Ma85db90e2008-11-12 08:27:01 +08002473 mlog(0, "Set xattr %s, reserve meta blocks = %d, clusters = %d, "
2474 "credits = %d\n", xi->name, meta_add, clusters_add, *credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002475
2476 if (meta_add) {
2477 ret = ocfs2_reserve_new_metadata_blocks(osb, meta_add,
2478 &ctxt->meta_ac);
2479 if (ret) {
2480 mlog_errno(ret);
2481 goto out;
2482 }
2483 }
2484
2485 if (clusters_add) {
2486 ret = ocfs2_reserve_clusters(osb, clusters_add, &ctxt->data_ac);
2487 if (ret)
2488 mlog_errno(ret);
2489 }
2490out:
2491 if (ret) {
2492 if (ctxt->meta_ac) {
2493 ocfs2_free_alloc_context(ctxt->meta_ac);
2494 ctxt->meta_ac = NULL;
2495 }
2496
2497 /*
2498 * We cannot have an error and a non null ctxt->data_ac.
2499 */
2500 }
2501
2502 return ret;
2503}
2504
Tao Ma85db90e2008-11-12 08:27:01 +08002505static int __ocfs2_xattr_set_handle(struct inode *inode,
2506 struct ocfs2_dinode *di,
2507 struct ocfs2_xattr_info *xi,
2508 struct ocfs2_xattr_search *xis,
2509 struct ocfs2_xattr_search *xbs,
2510 struct ocfs2_xattr_set_ctxt *ctxt)
2511{
Tao Ma9f868f12008-11-19 16:48:42 +08002512 int ret = 0, credits, old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002513
2514 if (!xi->value) {
2515 /* Remove existing extended attribute */
2516 if (!xis->not_found)
2517 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2518 else if (!xbs->not_found)
2519 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2520 } else {
2521 /* We always try to set extended attribute into inode first*/
2522 ret = ocfs2_xattr_ibody_set(inode, xi, xis, ctxt);
2523 if (!ret && !xbs->not_found) {
2524 /*
2525 * If succeed and that extended attribute existing in
2526 * external block, then we will remove it.
2527 */
2528 xi->value = NULL;
2529 xi->value_len = 0;
2530
Tao Ma9f868f12008-11-19 16:48:42 +08002531 old_found = xis->not_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002532 xis->not_found = -ENODATA;
2533 ret = ocfs2_calc_xattr_set_need(inode,
2534 di,
2535 xi,
2536 xis,
2537 xbs,
2538 NULL,
2539 NULL,
2540 &credits);
Tao Ma9f868f12008-11-19 16:48:42 +08002541 xis->not_found = old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002542 if (ret) {
2543 mlog_errno(ret);
2544 goto out;
2545 }
2546
2547 ret = ocfs2_extend_trans(ctxt->handle, credits +
2548 ctxt->handle->h_buffer_credits);
2549 if (ret) {
2550 mlog_errno(ret);
2551 goto out;
2552 }
2553 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2554 } else if (ret == -ENOSPC) {
2555 if (di->i_xattr_loc && !xbs->xattr_bh) {
2556 ret = ocfs2_xattr_block_find(inode,
2557 xi->name_index,
2558 xi->name, xbs);
2559 if (ret)
2560 goto out;
2561
Tao Ma9f868f12008-11-19 16:48:42 +08002562 old_found = xis->not_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002563 xis->not_found = -ENODATA;
2564 ret = ocfs2_calc_xattr_set_need(inode,
2565 di,
2566 xi,
2567 xis,
2568 xbs,
2569 NULL,
2570 NULL,
2571 &credits);
Tao Ma9f868f12008-11-19 16:48:42 +08002572 xis->not_found = old_found;
Tao Ma85db90e2008-11-12 08:27:01 +08002573 if (ret) {
2574 mlog_errno(ret);
2575 goto out;
2576 }
2577
2578 ret = ocfs2_extend_trans(ctxt->handle, credits +
2579 ctxt->handle->h_buffer_credits);
2580 if (ret) {
2581 mlog_errno(ret);
2582 goto out;
2583 }
2584 }
2585 /*
2586 * If no space in inode, we will set extended attribute
2587 * into external block.
2588 */
2589 ret = ocfs2_xattr_block_set(inode, xi, xbs, ctxt);
2590 if (ret)
2591 goto out;
2592 if (!xis->not_found) {
2593 /*
2594 * If succeed and that extended attribute
2595 * existing in inode, we will remove it.
2596 */
2597 xi->value = NULL;
2598 xi->value_len = 0;
2599 xbs->not_found = -ENODATA;
2600 ret = ocfs2_calc_xattr_set_need(inode,
2601 di,
2602 xi,
2603 xis,
2604 xbs,
2605 NULL,
2606 NULL,
2607 &credits);
2608 if (ret) {
2609 mlog_errno(ret);
2610 goto out;
2611 }
2612
2613 ret = ocfs2_extend_trans(ctxt->handle, credits +
2614 ctxt->handle->h_buffer_credits);
2615 if (ret) {
2616 mlog_errno(ret);
2617 goto out;
2618 }
2619 ret = ocfs2_xattr_ibody_set(inode, xi,
2620 xis, ctxt);
2621 }
2622 }
2623 }
2624
Tao Ma4b3f6202008-12-05 06:20:55 +08002625 if (!ret) {
2626 /* Update inode ctime. */
Joel Becker0cf2f762009-02-12 16:41:25 -08002627 ret = ocfs2_journal_access_di(ctxt->handle, INODE_CACHE(inode),
Tao Ma89a907a2009-02-17 04:39:28 +08002628 xis->inode_bh,
2629 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma4b3f6202008-12-05 06:20:55 +08002630 if (ret) {
2631 mlog_errno(ret);
2632 goto out;
2633 }
2634
2635 inode->i_ctime = CURRENT_TIME;
2636 di->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
2637 di->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
2638 ocfs2_journal_dirty(ctxt->handle, xis->inode_bh);
2639 }
Tao Ma85db90e2008-11-12 08:27:01 +08002640out:
2641 return ret;
2642}
2643
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002644/*
Tiger Yang6c3faba2008-11-14 11:16:03 +08002645 * This function only called duing creating inode
2646 * for init security/acl xattrs of the new inode.
Tiger Yang008aafa2008-12-09 16:43:08 +08002647 * All transanction credits have been reserved in mknod.
Tiger Yang6c3faba2008-11-14 11:16:03 +08002648 */
2649int ocfs2_xattr_set_handle(handle_t *handle,
2650 struct inode *inode,
2651 struct buffer_head *di_bh,
2652 int name_index,
2653 const char *name,
2654 const void *value,
2655 size_t value_len,
2656 int flags,
2657 struct ocfs2_alloc_context *meta_ac,
2658 struct ocfs2_alloc_context *data_ac)
2659{
2660 struct ocfs2_dinode *di;
2661 int ret;
2662
2663 struct ocfs2_xattr_info xi = {
2664 .name_index = name_index,
2665 .name = name,
2666 .value = value,
2667 .value_len = value_len,
2668 };
2669
2670 struct ocfs2_xattr_search xis = {
2671 .not_found = -ENODATA,
2672 };
2673
2674 struct ocfs2_xattr_search xbs = {
2675 .not_found = -ENODATA,
2676 };
2677
2678 struct ocfs2_xattr_set_ctxt ctxt = {
2679 .handle = handle,
2680 .meta_ac = meta_ac,
2681 .data_ac = data_ac,
2682 };
2683
2684 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2685 return -EOPNOTSUPP;
2686
Tiger Yang008aafa2008-12-09 16:43:08 +08002687 /*
2688 * In extreme situation, may need xattr bucket when
2689 * block size is too small. And we have already reserved
2690 * the credits for bucket in mknod.
2691 */
2692 if (inode->i_sb->s_blocksize == OCFS2_MIN_BLOCKSIZE) {
2693 xbs.bucket = ocfs2_xattr_bucket_new(inode);
2694 if (!xbs.bucket) {
2695 mlog_errno(-ENOMEM);
2696 return -ENOMEM;
2697 }
2698 }
2699
Tiger Yang6c3faba2008-11-14 11:16:03 +08002700 xis.inode_bh = xbs.inode_bh = di_bh;
2701 di = (struct ocfs2_dinode *)di_bh->b_data;
2702
2703 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2704
2705 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2706 if (ret)
2707 goto cleanup;
2708 if (xis.not_found) {
2709 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2710 if (ret)
2711 goto cleanup;
2712 }
2713
2714 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2715
2716cleanup:
2717 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2718 brelse(xbs.xattr_bh);
Tiger Yang008aafa2008-12-09 16:43:08 +08002719 ocfs2_xattr_bucket_free(xbs.bucket);
Tiger Yang6c3faba2008-11-14 11:16:03 +08002720
2721 return ret;
2722}
2723
2724/*
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002725 * ocfs2_xattr_set()
2726 *
2727 * Set, replace or remove an extended attribute for this inode.
2728 * value is NULL to remove an existing extended attribute, else either
2729 * create or replace an extended attribute.
2730 */
2731int ocfs2_xattr_set(struct inode *inode,
2732 int name_index,
2733 const char *name,
2734 const void *value,
2735 size_t value_len,
2736 int flags)
2737{
2738 struct buffer_head *di_bh = NULL;
2739 struct ocfs2_dinode *di;
Tao Ma492a8a32009-08-18 11:43:17 +08002740 int ret, credits, ref_meta = 0, ref_credits = 0;
Tao Ma78f30c32008-11-12 08:27:00 +08002741 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08002742 struct inode *tl_inode = osb->osb_tl_inode;
Tao Ma78f30c32008-11-12 08:27:00 +08002743 struct ocfs2_xattr_set_ctxt ctxt = { NULL, NULL, };
Tao Ma492a8a32009-08-18 11:43:17 +08002744 struct ocfs2_refcount_tree *ref_tree = NULL;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002745
2746 struct ocfs2_xattr_info xi = {
2747 .name_index = name_index,
2748 .name = name,
2749 .value = value,
2750 .value_len = value_len,
2751 };
2752
2753 struct ocfs2_xattr_search xis = {
2754 .not_found = -ENODATA,
2755 };
2756
2757 struct ocfs2_xattr_search xbs = {
2758 .not_found = -ENODATA,
2759 };
2760
Tiger Yang8154da32008-08-18 17:11:46 +08002761 if (!ocfs2_supports_xattr(OCFS2_SB(inode->i_sb)))
2762 return -EOPNOTSUPP;
2763
Joel Beckerba937122008-10-24 19:13:20 -07002764 /*
2765 * Only xbs will be used on indexed trees. xis doesn't need a
2766 * bucket.
2767 */
2768 xbs.bucket = ocfs2_xattr_bucket_new(inode);
2769 if (!xbs.bucket) {
2770 mlog_errno(-ENOMEM);
2771 return -ENOMEM;
2772 }
2773
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002774 ret = ocfs2_inode_lock(inode, &di_bh, 1);
2775 if (ret < 0) {
2776 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07002777 goto cleanup_nolock;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002778 }
2779 xis.inode_bh = xbs.inode_bh = di_bh;
2780 di = (struct ocfs2_dinode *)di_bh->b_data;
2781
2782 down_write(&OCFS2_I(inode)->ip_xattr_sem);
2783 /*
2784 * Scan inode and external block to find the same name
2785 * extended attribute and collect search infomation.
2786 */
2787 ret = ocfs2_xattr_ibody_find(inode, name_index, name, &xis);
2788 if (ret)
2789 goto cleanup;
2790 if (xis.not_found) {
2791 ret = ocfs2_xattr_block_find(inode, name_index, name, &xbs);
2792 if (ret)
2793 goto cleanup;
2794 }
2795
2796 if (xis.not_found && xbs.not_found) {
2797 ret = -ENODATA;
2798 if (flags & XATTR_REPLACE)
2799 goto cleanup;
2800 ret = 0;
2801 if (!value)
2802 goto cleanup;
2803 } else {
2804 ret = -EEXIST;
2805 if (flags & XATTR_CREATE)
2806 goto cleanup;
2807 }
2808
Tao Ma492a8a32009-08-18 11:43:17 +08002809 /* Check whether the value is refcounted and do some prepartion. */
2810 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_HAS_REFCOUNT_FL &&
2811 (!xis.not_found || !xbs.not_found)) {
2812 ret = ocfs2_prepare_refcount_xattr(inode, di, &xi,
2813 &xis, &xbs, &ref_tree,
2814 &ref_meta, &ref_credits);
2815 if (ret) {
2816 mlog_errno(ret);
2817 goto cleanup;
2818 }
2819 }
Tao Ma85db90e2008-11-12 08:27:01 +08002820
2821 mutex_lock(&tl_inode->i_mutex);
2822
2823 if (ocfs2_truncate_log_needs_flush(osb)) {
2824 ret = __ocfs2_flush_truncate_log(osb);
2825 if (ret < 0) {
2826 mutex_unlock(&tl_inode->i_mutex);
2827 mlog_errno(ret);
2828 goto cleanup;
2829 }
2830 }
2831 mutex_unlock(&tl_inode->i_mutex);
2832
2833 ret = ocfs2_init_xattr_set_ctxt(inode, di, &xi, &xis,
Tao Ma492a8a32009-08-18 11:43:17 +08002834 &xbs, &ctxt, ref_meta, &credits);
Tao Ma78f30c32008-11-12 08:27:00 +08002835 if (ret) {
2836 mlog_errno(ret);
2837 goto cleanup;
2838 }
2839
Tao Ma4b3f6202008-12-05 06:20:55 +08002840 /* we need to update inode's ctime field, so add credit for it. */
2841 credits += OCFS2_INODE_UPDATE_CREDITS;
Tao Ma492a8a32009-08-18 11:43:17 +08002842 ctxt.handle = ocfs2_start_trans(osb, credits + ref_credits);
Tao Ma85db90e2008-11-12 08:27:01 +08002843 if (IS_ERR(ctxt.handle)) {
2844 ret = PTR_ERR(ctxt.handle);
2845 mlog_errno(ret);
2846 goto cleanup;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002847 }
Tao Ma85db90e2008-11-12 08:27:01 +08002848
2849 ret = __ocfs2_xattr_set_handle(inode, di, &xi, &xis, &xbs, &ctxt);
2850
2851 ocfs2_commit_trans(osb, ctxt.handle);
2852
Tao Ma78f30c32008-11-12 08:27:00 +08002853 if (ctxt.data_ac)
2854 ocfs2_free_alloc_context(ctxt.data_ac);
2855 if (ctxt.meta_ac)
2856 ocfs2_free_alloc_context(ctxt.meta_ac);
2857 if (ocfs2_dealloc_has_cluster(&ctxt.dealloc))
2858 ocfs2_schedule_truncate_log_flush(osb, 1);
2859 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002860cleanup:
Tao Ma492a8a32009-08-18 11:43:17 +08002861 if (ref_tree)
2862 ocfs2_unlock_refcount_tree(osb, ref_tree, 1);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002863 up_write(&OCFS2_I(inode)->ip_xattr_sem);
2864 ocfs2_inode_unlock(inode, 1);
Joel Beckerba937122008-10-24 19:13:20 -07002865cleanup_nolock:
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002866 brelse(di_bh);
2867 brelse(xbs.xattr_bh);
Joel Beckerba937122008-10-24 19:13:20 -07002868 ocfs2_xattr_bucket_free(xbs.bucket);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002869
2870 return ret;
2871}
2872
Tao Ma0c044f02008-08-18 17:38:50 +08002873/*
2874 * Find the xattr extent rec which may contains name_hash.
2875 * e_cpos will be the first name hash of the xattr rec.
2876 * el must be the ocfs2_xattr_header.xb_attrs.xb_root.xt_list.
2877 */
2878static int ocfs2_xattr_get_rec(struct inode *inode,
2879 u32 name_hash,
2880 u64 *p_blkno,
2881 u32 *e_cpos,
2882 u32 *num_clusters,
2883 struct ocfs2_extent_list *el)
2884{
2885 int ret = 0, i;
2886 struct buffer_head *eb_bh = NULL;
2887 struct ocfs2_extent_block *eb;
2888 struct ocfs2_extent_rec *rec = NULL;
2889 u64 e_blkno = 0;
2890
2891 if (el->l_tree_depth) {
Joel Beckerfacdb772009-02-12 18:08:48 -08002892 ret = ocfs2_find_leaf(INODE_CACHE(inode), el, name_hash,
2893 &eb_bh);
Tao Ma0c044f02008-08-18 17:38:50 +08002894 if (ret) {
2895 mlog_errno(ret);
2896 goto out;
2897 }
2898
2899 eb = (struct ocfs2_extent_block *) eb_bh->b_data;
2900 el = &eb->h_list;
2901
2902 if (el->l_tree_depth) {
2903 ocfs2_error(inode->i_sb,
2904 "Inode %lu has non zero tree depth in "
2905 "xattr tree block %llu\n", inode->i_ino,
2906 (unsigned long long)eb_bh->b_blocknr);
2907 ret = -EROFS;
2908 goto out;
2909 }
2910 }
2911
2912 for (i = le16_to_cpu(el->l_next_free_rec) - 1; i >= 0; i--) {
2913 rec = &el->l_recs[i];
2914
2915 if (le32_to_cpu(rec->e_cpos) <= name_hash) {
2916 e_blkno = le64_to_cpu(rec->e_blkno);
2917 break;
2918 }
2919 }
2920
2921 if (!e_blkno) {
2922 ocfs2_error(inode->i_sb, "Inode %lu has bad extent "
2923 "record (%u, %u, 0) in xattr", inode->i_ino,
2924 le32_to_cpu(rec->e_cpos),
2925 ocfs2_rec_clusters(el, rec));
2926 ret = -EROFS;
2927 goto out;
2928 }
2929
2930 *p_blkno = le64_to_cpu(rec->e_blkno);
2931 *num_clusters = le16_to_cpu(rec->e_leaf_clusters);
2932 if (e_cpos)
2933 *e_cpos = le32_to_cpu(rec->e_cpos);
2934out:
2935 brelse(eb_bh);
2936 return ret;
2937}
2938
2939typedef int (xattr_bucket_func)(struct inode *inode,
2940 struct ocfs2_xattr_bucket *bucket,
2941 void *para);
2942
Tao Ma589dc262008-08-18 17:38:51 +08002943static int ocfs2_find_xe_in_bucket(struct inode *inode,
Joel Beckere2356a32008-10-27 15:01:54 -07002944 struct ocfs2_xattr_bucket *bucket,
Tao Ma589dc262008-08-18 17:38:51 +08002945 int name_index,
2946 const char *name,
2947 u32 name_hash,
2948 u16 *xe_index,
2949 int *found)
2950{
2951 int i, ret = 0, cmp = 1, block_off, new_offset;
Joel Beckere2356a32008-10-27 15:01:54 -07002952 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma589dc262008-08-18 17:38:51 +08002953 size_t name_len = strlen(name);
2954 struct ocfs2_xattr_entry *xe = NULL;
Tao Ma589dc262008-08-18 17:38:51 +08002955 char *xe_name;
2956
2957 /*
2958 * We don't use binary search in the bucket because there
2959 * may be multiple entries with the same name hash.
2960 */
2961 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
2962 xe = &xh->xh_entries[i];
2963
2964 if (name_hash > le32_to_cpu(xe->xe_name_hash))
2965 continue;
2966 else if (name_hash < le32_to_cpu(xe->xe_name_hash))
2967 break;
2968
2969 cmp = name_index - ocfs2_xattr_get_type(xe);
2970 if (!cmp)
2971 cmp = name_len - xe->xe_name_len;
2972 if (cmp)
2973 continue;
2974
Tao Mafd68a892009-08-18 11:43:21 +08002975 ret = ocfs2_xattr_bucket_get_name_value(inode->i_sb,
Tao Ma589dc262008-08-18 17:38:51 +08002976 xh,
2977 i,
2978 &block_off,
2979 &new_offset);
2980 if (ret) {
2981 mlog_errno(ret);
2982 break;
2983 }
2984
Joel Becker970e4932008-11-13 14:49:19 -08002985
Joel Beckere2356a32008-10-27 15:01:54 -07002986 xe_name = bucket_block(bucket, block_off) + new_offset;
2987 if (!memcmp(name, xe_name, name_len)) {
Tao Ma589dc262008-08-18 17:38:51 +08002988 *xe_index = i;
2989 *found = 1;
2990 ret = 0;
2991 break;
2992 }
2993 }
2994
2995 return ret;
2996}
2997
2998/*
2999 * Find the specified xattr entry in a series of buckets.
3000 * This series start from p_blkno and last for num_clusters.
3001 * The ocfs2_xattr_header.xh_num_buckets of the first bucket contains
3002 * the num of the valid buckets.
3003 *
3004 * Return the buffer_head this xattr should reside in. And if the xattr's
3005 * hash is in the gap of 2 buckets, return the lower bucket.
3006 */
3007static int ocfs2_xattr_bucket_find(struct inode *inode,
3008 int name_index,
3009 const char *name,
3010 u32 name_hash,
3011 u64 p_blkno,
3012 u32 first_hash,
3013 u32 num_clusters,
3014 struct ocfs2_xattr_search *xs)
3015{
3016 int ret, found = 0;
Tao Ma589dc262008-08-18 17:38:51 +08003017 struct ocfs2_xattr_header *xh = NULL;
3018 struct ocfs2_xattr_entry *xe = NULL;
3019 u16 index = 0;
3020 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
3021 int low_bucket = 0, bucket, high_bucket;
Joel Beckere2356a32008-10-27 15:01:54 -07003022 struct ocfs2_xattr_bucket *search;
Tao Ma589dc262008-08-18 17:38:51 +08003023 u32 last_hash;
Joel Beckere2356a32008-10-27 15:01:54 -07003024 u64 blkno, lower_blkno = 0;
Tao Ma589dc262008-08-18 17:38:51 +08003025
Joel Beckere2356a32008-10-27 15:01:54 -07003026 search = ocfs2_xattr_bucket_new(inode);
3027 if (!search) {
3028 ret = -ENOMEM;
3029 mlog_errno(ret);
3030 goto out;
3031 }
3032
3033 ret = ocfs2_read_xattr_bucket(search, p_blkno);
Tao Ma589dc262008-08-18 17:38:51 +08003034 if (ret) {
3035 mlog_errno(ret);
3036 goto out;
3037 }
3038
Joel Beckere2356a32008-10-27 15:01:54 -07003039 xh = bucket_xh(search);
Tao Ma589dc262008-08-18 17:38:51 +08003040 high_bucket = le16_to_cpu(xh->xh_num_buckets) - 1;
Tao Ma589dc262008-08-18 17:38:51 +08003041 while (low_bucket <= high_bucket) {
Joel Beckere2356a32008-10-27 15:01:54 -07003042 ocfs2_xattr_bucket_relse(search);
3043
Tao Ma589dc262008-08-18 17:38:51 +08003044 bucket = (low_bucket + high_bucket) / 2;
Tao Ma589dc262008-08-18 17:38:51 +08003045 blkno = p_blkno + bucket * blk_per_bucket;
Joel Beckere2356a32008-10-27 15:01:54 -07003046 ret = ocfs2_read_xattr_bucket(search, blkno);
Tao Ma589dc262008-08-18 17:38:51 +08003047 if (ret) {
3048 mlog_errno(ret);
3049 goto out;
3050 }
3051
Joel Beckere2356a32008-10-27 15:01:54 -07003052 xh = bucket_xh(search);
Tao Ma589dc262008-08-18 17:38:51 +08003053 xe = &xh->xh_entries[0];
3054 if (name_hash < le32_to_cpu(xe->xe_name_hash)) {
3055 high_bucket = bucket - 1;
3056 continue;
3057 }
3058
3059 /*
3060 * Check whether the hash of the last entry in our
Tao Ma5a095612008-09-19 22:17:41 +08003061 * bucket is larger than the search one. for an empty
3062 * bucket, the last one is also the first one.
Tao Ma589dc262008-08-18 17:38:51 +08003063 */
Tao Ma5a095612008-09-19 22:17:41 +08003064 if (xh->xh_count)
3065 xe = &xh->xh_entries[le16_to_cpu(xh->xh_count) - 1];
3066
Tao Ma589dc262008-08-18 17:38:51 +08003067 last_hash = le32_to_cpu(xe->xe_name_hash);
3068
Joel Beckere2356a32008-10-27 15:01:54 -07003069 /* record lower_blkno which may be the insert place. */
3070 lower_blkno = blkno;
Tao Ma589dc262008-08-18 17:38:51 +08003071
3072 if (name_hash > le32_to_cpu(xe->xe_name_hash)) {
3073 low_bucket = bucket + 1;
3074 continue;
3075 }
3076
3077 /* the searched xattr should reside in this bucket if exists. */
Joel Beckere2356a32008-10-27 15:01:54 -07003078 ret = ocfs2_find_xe_in_bucket(inode, search,
Tao Ma589dc262008-08-18 17:38:51 +08003079 name_index, name, name_hash,
3080 &index, &found);
3081 if (ret) {
3082 mlog_errno(ret);
3083 goto out;
3084 }
3085 break;
3086 }
3087
3088 /*
3089 * Record the bucket we have found.
3090 * When the xattr's hash value is in the gap of 2 buckets, we will
3091 * always set it to the previous bucket.
3092 */
Joel Beckere2356a32008-10-27 15:01:54 -07003093 if (!lower_blkno)
3094 lower_blkno = p_blkno;
3095
3096 /* This should be in cache - we just read it during the search */
3097 ret = ocfs2_read_xattr_bucket(xs->bucket, lower_blkno);
3098 if (ret) {
3099 mlog_errno(ret);
3100 goto out;
Tao Ma589dc262008-08-18 17:38:51 +08003101 }
Tao Ma589dc262008-08-18 17:38:51 +08003102
Joel Beckerba937122008-10-24 19:13:20 -07003103 xs->header = bucket_xh(xs->bucket);
3104 xs->base = bucket_block(xs->bucket, 0);
Tao Ma589dc262008-08-18 17:38:51 +08003105 xs->end = xs->base + inode->i_sb->s_blocksize;
3106
3107 if (found) {
Tao Ma589dc262008-08-18 17:38:51 +08003108 xs->here = &xs->header->xh_entries[index];
3109 mlog(0, "find xattr %s in bucket %llu, entry = %u\n", name,
Joel Beckerba937122008-10-24 19:13:20 -07003110 (unsigned long long)bucket_blkno(xs->bucket), index);
Tao Ma589dc262008-08-18 17:38:51 +08003111 } else
3112 ret = -ENODATA;
3113
3114out:
Joel Beckere2356a32008-10-27 15:01:54 -07003115 ocfs2_xattr_bucket_free(search);
Tao Ma589dc262008-08-18 17:38:51 +08003116 return ret;
3117}
3118
3119static int ocfs2_xattr_index_block_find(struct inode *inode,
3120 struct buffer_head *root_bh,
3121 int name_index,
3122 const char *name,
3123 struct ocfs2_xattr_search *xs)
3124{
3125 int ret;
3126 struct ocfs2_xattr_block *xb =
3127 (struct ocfs2_xattr_block *)root_bh->b_data;
3128 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
3129 struct ocfs2_extent_list *el = &xb_root->xt_list;
3130 u64 p_blkno = 0;
3131 u32 first_hash, num_clusters = 0;
Tao Ma2057e5c2008-10-09 23:06:13 +08003132 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
Tao Ma589dc262008-08-18 17:38:51 +08003133
3134 if (le16_to_cpu(el->l_next_free_rec) == 0)
3135 return -ENODATA;
3136
3137 mlog(0, "find xattr %s, hash = %u, index = %d in xattr tree\n",
3138 name, name_hash, name_index);
3139
3140 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &first_hash,
3141 &num_clusters, el);
3142 if (ret) {
3143 mlog_errno(ret);
3144 goto out;
3145 }
3146
3147 BUG_ON(p_blkno == 0 || num_clusters == 0 || first_hash > name_hash);
3148
3149 mlog(0, "find xattr extent rec %u clusters from %llu, the first hash "
Mark Fashehde29c082008-10-29 14:45:30 -07003150 "in the rec is %u\n", num_clusters, (unsigned long long)p_blkno,
3151 first_hash);
Tao Ma589dc262008-08-18 17:38:51 +08003152
3153 ret = ocfs2_xattr_bucket_find(inode, name_index, name, name_hash,
3154 p_blkno, first_hash, num_clusters, xs);
3155
3156out:
3157 return ret;
3158}
3159
Tao Ma0c044f02008-08-18 17:38:50 +08003160static int ocfs2_iterate_xattr_buckets(struct inode *inode,
3161 u64 blkno,
3162 u32 clusters,
3163 xattr_bucket_func *func,
3164 void *para)
3165{
Joel Becker6dde41d2008-10-24 17:16:48 -07003166 int i, ret = 0;
Tao Ma0c044f02008-08-18 17:38:50 +08003167 u32 bpc = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb));
3168 u32 num_buckets = clusters * bpc;
Joel Beckerba937122008-10-24 19:13:20 -07003169 struct ocfs2_xattr_bucket *bucket;
Tao Ma0c044f02008-08-18 17:38:50 +08003170
Joel Beckerba937122008-10-24 19:13:20 -07003171 bucket = ocfs2_xattr_bucket_new(inode);
3172 if (!bucket) {
3173 mlog_errno(-ENOMEM);
3174 return -ENOMEM;
3175 }
Tao Ma0c044f02008-08-18 17:38:50 +08003176
3177 mlog(0, "iterating xattr buckets in %u clusters starting from %llu\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003178 clusters, (unsigned long long)blkno);
Tao Ma0c044f02008-08-18 17:38:50 +08003179
Joel Beckerba937122008-10-24 19:13:20 -07003180 for (i = 0; i < num_buckets; i++, blkno += bucket->bu_blocks) {
3181 ret = ocfs2_read_xattr_bucket(bucket, blkno);
Tao Ma0c044f02008-08-18 17:38:50 +08003182 if (ret) {
3183 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07003184 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003185 }
3186
Tao Ma0c044f02008-08-18 17:38:50 +08003187 /*
3188 * The real bucket num in this series of blocks is stored
3189 * in the 1st bucket.
3190 */
3191 if (i == 0)
Joel Beckerba937122008-10-24 19:13:20 -07003192 num_buckets = le16_to_cpu(bucket_xh(bucket)->xh_num_buckets);
Tao Ma0c044f02008-08-18 17:38:50 +08003193
Mark Fashehde29c082008-10-29 14:45:30 -07003194 mlog(0, "iterating xattr bucket %llu, first hash %u\n",
3195 (unsigned long long)blkno,
Joel Beckerba937122008-10-24 19:13:20 -07003196 le32_to_cpu(bucket_xh(bucket)->xh_entries[0].xe_name_hash));
Tao Ma0c044f02008-08-18 17:38:50 +08003197 if (func) {
Joel Beckerba937122008-10-24 19:13:20 -07003198 ret = func(inode, bucket, para);
Tao Maa46fa682009-05-04 05:18:09 +08003199 if (ret && ret != -ERANGE)
Tao Ma0c044f02008-08-18 17:38:50 +08003200 mlog_errno(ret);
Joel Beckerba937122008-10-24 19:13:20 -07003201 /* Fall through to bucket_relse() */
Tao Ma0c044f02008-08-18 17:38:50 +08003202 }
3203
Joel Beckerba937122008-10-24 19:13:20 -07003204 ocfs2_xattr_bucket_relse(bucket);
3205 if (ret)
3206 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003207 }
3208
Joel Beckerba937122008-10-24 19:13:20 -07003209 ocfs2_xattr_bucket_free(bucket);
Tao Ma0c044f02008-08-18 17:38:50 +08003210 return ret;
3211}
3212
3213struct ocfs2_xattr_tree_list {
3214 char *buffer;
3215 size_t buffer_size;
Tao Ma936b8832008-10-09 23:06:14 +08003216 size_t result;
Tao Ma0c044f02008-08-18 17:38:50 +08003217};
3218
Tao Mafd68a892009-08-18 11:43:21 +08003219static int ocfs2_xattr_bucket_get_name_value(struct super_block *sb,
Tao Ma0c044f02008-08-18 17:38:50 +08003220 struct ocfs2_xattr_header *xh,
3221 int index,
3222 int *block_off,
3223 int *new_offset)
3224{
3225 u16 name_offset;
3226
3227 if (index < 0 || index >= le16_to_cpu(xh->xh_count))
3228 return -EINVAL;
3229
3230 name_offset = le16_to_cpu(xh->xh_entries[index].xe_name_offset);
3231
Tao Mafd68a892009-08-18 11:43:21 +08003232 *block_off = name_offset >> sb->s_blocksize_bits;
3233 *new_offset = name_offset % sb->s_blocksize;
Tao Ma0c044f02008-08-18 17:38:50 +08003234
3235 return 0;
3236}
3237
3238static int ocfs2_list_xattr_bucket(struct inode *inode,
3239 struct ocfs2_xattr_bucket *bucket,
3240 void *para)
3241{
Tao Ma936b8832008-10-09 23:06:14 +08003242 int ret = 0, type;
Tao Ma0c044f02008-08-18 17:38:50 +08003243 struct ocfs2_xattr_tree_list *xl = (struct ocfs2_xattr_tree_list *)para;
Tao Ma0c044f02008-08-18 17:38:50 +08003244 int i, block_off, new_offset;
Tao Ma936b8832008-10-09 23:06:14 +08003245 const char *prefix, *name;
Tao Ma0c044f02008-08-18 17:38:50 +08003246
Joel Becker3e632942008-10-24 17:04:49 -07003247 for (i = 0 ; i < le16_to_cpu(bucket_xh(bucket)->xh_count); i++) {
3248 struct ocfs2_xattr_entry *entry = &bucket_xh(bucket)->xh_entries[i];
Tao Ma936b8832008-10-09 23:06:14 +08003249 type = ocfs2_xattr_get_type(entry);
3250 prefix = ocfs2_xattr_prefix(type);
Tao Ma0c044f02008-08-18 17:38:50 +08003251
Tao Ma936b8832008-10-09 23:06:14 +08003252 if (prefix) {
Tao Mafd68a892009-08-18 11:43:21 +08003253 ret = ocfs2_xattr_bucket_get_name_value(inode->i_sb,
Joel Becker3e632942008-10-24 17:04:49 -07003254 bucket_xh(bucket),
Tao Ma0c044f02008-08-18 17:38:50 +08003255 i,
3256 &block_off,
3257 &new_offset);
3258 if (ret)
3259 break;
Tao Ma936b8832008-10-09 23:06:14 +08003260
Joel Becker51def392008-10-24 16:57:21 -07003261 name = (const char *)bucket_block(bucket, block_off) +
Tao Ma936b8832008-10-09 23:06:14 +08003262 new_offset;
3263 ret = ocfs2_xattr_list_entry(xl->buffer,
3264 xl->buffer_size,
3265 &xl->result,
3266 prefix, name,
3267 entry->xe_name_len);
3268 if (ret)
3269 break;
Tao Ma0c044f02008-08-18 17:38:50 +08003270 }
3271 }
3272
3273 return ret;
3274}
3275
3276static int ocfs2_xattr_tree_list_index_block(struct inode *inode,
3277 struct ocfs2_xattr_tree_root *xt,
3278 char *buffer,
3279 size_t buffer_size)
3280{
3281 struct ocfs2_extent_list *el = &xt->xt_list;
3282 int ret = 0;
3283 u32 name_hash = UINT_MAX, e_cpos = 0, num_clusters = 0;
3284 u64 p_blkno = 0;
3285 struct ocfs2_xattr_tree_list xl = {
3286 .buffer = buffer,
3287 .buffer_size = buffer_size,
Tao Ma936b8832008-10-09 23:06:14 +08003288 .result = 0,
Tao Ma0c044f02008-08-18 17:38:50 +08003289 };
3290
3291 if (le16_to_cpu(el->l_next_free_rec) == 0)
3292 return 0;
3293
3294 while (name_hash > 0) {
3295 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
3296 &e_cpos, &num_clusters, el);
3297 if (ret) {
3298 mlog_errno(ret);
3299 goto out;
3300 }
3301
3302 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
3303 ocfs2_list_xattr_bucket,
3304 &xl);
3305 if (ret) {
Tao Maa46fa682009-05-04 05:18:09 +08003306 if (ret != -ERANGE)
3307 mlog_errno(ret);
Tao Ma0c044f02008-08-18 17:38:50 +08003308 goto out;
3309 }
3310
3311 if (e_cpos == 0)
3312 break;
3313
3314 name_hash = e_cpos - 1;
3315 }
3316
Tao Ma936b8832008-10-09 23:06:14 +08003317 ret = xl.result;
Tao Ma0c044f02008-08-18 17:38:50 +08003318out:
3319 return ret;
3320}
Tao Ma01225592008-08-18 17:38:53 +08003321
3322static int cmp_xe(const void *a, const void *b)
3323{
3324 const struct ocfs2_xattr_entry *l = a, *r = b;
3325 u32 l_hash = le32_to_cpu(l->xe_name_hash);
3326 u32 r_hash = le32_to_cpu(r->xe_name_hash);
3327
3328 if (l_hash > r_hash)
3329 return 1;
3330 if (l_hash < r_hash)
3331 return -1;
3332 return 0;
3333}
3334
3335static void swap_xe(void *a, void *b, int size)
3336{
3337 struct ocfs2_xattr_entry *l = a, *r = b, tmp;
3338
3339 tmp = *l;
3340 memcpy(l, r, sizeof(struct ocfs2_xattr_entry));
3341 memcpy(r, &tmp, sizeof(struct ocfs2_xattr_entry));
3342}
3343
3344/*
3345 * When the ocfs2_xattr_block is filled up, new bucket will be created
3346 * and all the xattr entries will be moved to the new bucket.
Joel Becker178eeac2008-10-27 15:18:29 -07003347 * The header goes at the start of the bucket, and the names+values are
3348 * filled from the end. This is why *target starts as the last buffer.
Tao Ma01225592008-08-18 17:38:53 +08003349 * Note: we need to sort the entries since they are not saved in order
3350 * in the ocfs2_xattr_block.
3351 */
3352static void ocfs2_cp_xattr_block_to_bucket(struct inode *inode,
3353 struct buffer_head *xb_bh,
Joel Becker178eeac2008-10-27 15:18:29 -07003354 struct ocfs2_xattr_bucket *bucket)
Tao Ma01225592008-08-18 17:38:53 +08003355{
3356 int i, blocksize = inode->i_sb->s_blocksize;
Joel Becker178eeac2008-10-27 15:18:29 -07003357 int blks = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08003358 u16 offset, size, off_change;
3359 struct ocfs2_xattr_entry *xe;
3360 struct ocfs2_xattr_block *xb =
3361 (struct ocfs2_xattr_block *)xb_bh->b_data;
3362 struct ocfs2_xattr_header *xb_xh = &xb->xb_attrs.xb_header;
Joel Becker178eeac2008-10-27 15:18:29 -07003363 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma01225592008-08-18 17:38:53 +08003364 u16 count = le16_to_cpu(xb_xh->xh_count);
Joel Becker178eeac2008-10-27 15:18:29 -07003365 char *src = xb_bh->b_data;
3366 char *target = bucket_block(bucket, blks - 1);
Tao Ma01225592008-08-18 17:38:53 +08003367
3368 mlog(0, "cp xattr from block %llu to bucket %llu\n",
3369 (unsigned long long)xb_bh->b_blocknr,
Joel Becker178eeac2008-10-27 15:18:29 -07003370 (unsigned long long)bucket_blkno(bucket));
Tao Ma01225592008-08-18 17:38:53 +08003371
Joel Becker178eeac2008-10-27 15:18:29 -07003372 for (i = 0; i < blks; i++)
3373 memset(bucket_block(bucket, i), 0, blocksize);
3374
Tao Ma01225592008-08-18 17:38:53 +08003375 /*
3376 * Since the xe_name_offset is based on ocfs2_xattr_header,
3377 * there is a offset change corresponding to the change of
3378 * ocfs2_xattr_header's position.
3379 */
3380 off_change = offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3381 xe = &xb_xh->xh_entries[count - 1];
3382 offset = le16_to_cpu(xe->xe_name_offset) + off_change;
3383 size = blocksize - offset;
3384
3385 /* copy all the names and values. */
Tao Ma01225592008-08-18 17:38:53 +08003386 memcpy(target + offset, src + offset, size);
3387
3388 /* Init new header now. */
3389 xh->xh_count = xb_xh->xh_count;
3390 xh->xh_num_buckets = cpu_to_le16(1);
3391 xh->xh_name_value_len = cpu_to_le16(size);
3392 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE - size);
3393
3394 /* copy all the entries. */
Joel Becker178eeac2008-10-27 15:18:29 -07003395 target = bucket_block(bucket, 0);
Tao Ma01225592008-08-18 17:38:53 +08003396 offset = offsetof(struct ocfs2_xattr_header, xh_entries);
3397 size = count * sizeof(struct ocfs2_xattr_entry);
3398 memcpy(target + offset, (char *)xb_xh + offset, size);
3399
3400 /* Change the xe offset for all the xe because of the move. */
3401 off_change = OCFS2_XATTR_BUCKET_SIZE - blocksize +
3402 offsetof(struct ocfs2_xattr_block, xb_attrs.xb_header);
3403 for (i = 0; i < count; i++)
3404 le16_add_cpu(&xh->xh_entries[i].xe_name_offset, off_change);
3405
3406 mlog(0, "copy entry: start = %u, size = %u, offset_change = %u\n",
3407 offset, size, off_change);
3408
3409 sort(target + offset, count, sizeof(struct ocfs2_xattr_entry),
3410 cmp_xe, swap_xe);
3411}
3412
3413/*
3414 * After we move xattr from block to index btree, we have to
3415 * update ocfs2_xattr_search to the new xe and base.
3416 *
3417 * When the entry is in xattr block, xattr_bh indicates the storage place.
3418 * While if the entry is in index b-tree, "bucket" indicates the
3419 * real place of the xattr.
3420 */
Joel Becker178eeac2008-10-27 15:18:29 -07003421static void ocfs2_xattr_update_xattr_search(struct inode *inode,
3422 struct ocfs2_xattr_search *xs,
3423 struct buffer_head *old_bh)
Tao Ma01225592008-08-18 17:38:53 +08003424{
Tao Ma01225592008-08-18 17:38:53 +08003425 char *buf = old_bh->b_data;
3426 struct ocfs2_xattr_block *old_xb = (struct ocfs2_xattr_block *)buf;
3427 struct ocfs2_xattr_header *old_xh = &old_xb->xb_attrs.xb_header;
Joel Becker178eeac2008-10-27 15:18:29 -07003428 int i;
Tao Ma01225592008-08-18 17:38:53 +08003429
Joel Beckerba937122008-10-24 19:13:20 -07003430 xs->header = bucket_xh(xs->bucket);
Joel Becker178eeac2008-10-27 15:18:29 -07003431 xs->base = bucket_block(xs->bucket, 0);
Tao Ma01225592008-08-18 17:38:53 +08003432 xs->end = xs->base + inode->i_sb->s_blocksize;
3433
Joel Becker178eeac2008-10-27 15:18:29 -07003434 if (xs->not_found)
3435 return;
Tao Ma01225592008-08-18 17:38:53 +08003436
Joel Becker178eeac2008-10-27 15:18:29 -07003437 i = xs->here - old_xh->xh_entries;
3438 xs->here = &xs->header->xh_entries[i];
Tao Ma01225592008-08-18 17:38:53 +08003439}
3440
3441static int ocfs2_xattr_create_index_block(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +08003442 struct ocfs2_xattr_search *xs,
3443 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08003444{
Tao Ma85db90e2008-11-12 08:27:01 +08003445 int ret;
Tao Ma01225592008-08-18 17:38:53 +08003446 u32 bit_off, len;
3447 u64 blkno;
Tao Ma85db90e2008-11-12 08:27:01 +08003448 handle_t *handle = ctxt->handle;
Tao Ma01225592008-08-18 17:38:53 +08003449 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
3450 struct ocfs2_inode_info *oi = OCFS2_I(inode);
Tao Ma01225592008-08-18 17:38:53 +08003451 struct buffer_head *xb_bh = xs->xattr_bh;
3452 struct ocfs2_xattr_block *xb =
3453 (struct ocfs2_xattr_block *)xb_bh->b_data;
3454 struct ocfs2_xattr_tree_root *xr;
3455 u16 xb_flags = le16_to_cpu(xb->xb_flags);
Tao Ma01225592008-08-18 17:38:53 +08003456
3457 mlog(0, "create xattr index block for %llu\n",
3458 (unsigned long long)xb_bh->b_blocknr);
3459
3460 BUG_ON(xb_flags & OCFS2_XATTR_INDEXED);
Joel Becker178eeac2008-10-27 15:18:29 -07003461 BUG_ON(!xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08003462
Tao Ma01225592008-08-18 17:38:53 +08003463 /*
3464 * XXX:
3465 * We can use this lock for now, and maybe move to a dedicated mutex
3466 * if performance becomes a problem later.
3467 */
3468 down_write(&oi->ip_alloc_sem);
3469
Joel Becker0cf2f762009-02-12 16:41:25 -08003470 ret = ocfs2_journal_access_xb(handle, INODE_CACHE(inode), xb_bh,
Joel Becker84008972008-12-09 16:11:49 -08003471 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08003472 if (ret) {
3473 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003474 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003475 }
3476
Tao Ma78f30c32008-11-12 08:27:00 +08003477 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac,
3478 1, 1, &bit_off, &len);
Tao Ma01225592008-08-18 17:38:53 +08003479 if (ret) {
3480 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003481 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003482 }
3483
3484 /*
3485 * The bucket may spread in many blocks, and
3486 * we will only touch the 1st block and the last block
3487 * in the whole bucket(one for entry and one for data).
3488 */
3489 blkno = ocfs2_clusters_to_blocks(inode->i_sb, bit_off);
3490
Mark Fashehde29c082008-10-29 14:45:30 -07003491 mlog(0, "allocate 1 cluster from %llu to xattr block\n",
3492 (unsigned long long)blkno);
Tao Ma01225592008-08-18 17:38:53 +08003493
Joel Becker178eeac2008-10-27 15:18:29 -07003494 ret = ocfs2_init_xattr_bucket(xs->bucket, blkno);
Tao Ma01225592008-08-18 17:38:53 +08003495 if (ret) {
3496 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003497 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003498 }
3499
Joel Becker178eeac2008-10-27 15:18:29 -07003500 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
3501 OCFS2_JOURNAL_ACCESS_CREATE);
Joel Beckerbd60bd32008-10-20 18:25:56 -07003502 if (ret) {
3503 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003504 goto out;
Joel Beckerbd60bd32008-10-20 18:25:56 -07003505 }
Tao Ma01225592008-08-18 17:38:53 +08003506
Joel Becker178eeac2008-10-27 15:18:29 -07003507 ocfs2_cp_xattr_block_to_bucket(inode, xb_bh, xs->bucket);
3508 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
3509
3510 ocfs2_xattr_update_xattr_search(inode, xs, xb_bh);
3511
Tao Ma01225592008-08-18 17:38:53 +08003512 /* Change from ocfs2_xattr_header to ocfs2_xattr_tree_root */
3513 memset(&xb->xb_attrs, 0, inode->i_sb->s_blocksize -
3514 offsetof(struct ocfs2_xattr_block, xb_attrs));
3515
3516 xr = &xb->xb_attrs.xb_root;
3517 xr->xt_clusters = cpu_to_le32(1);
3518 xr->xt_last_eb_blk = 0;
3519 xr->xt_list.l_tree_depth = 0;
3520 xr->xt_list.l_count = cpu_to_le16(ocfs2_xattr_recs_per_xb(inode->i_sb));
3521 xr->xt_list.l_next_free_rec = cpu_to_le16(1);
3522
3523 xr->xt_list.l_recs[0].e_cpos = 0;
3524 xr->xt_list.l_recs[0].e_blkno = cpu_to_le64(blkno);
3525 xr->xt_list.l_recs[0].e_leaf_clusters = cpu_to_le16(1);
3526
3527 xb->xb_flags = cpu_to_le16(xb_flags | OCFS2_XATTR_INDEXED);
3528
Tao Ma85db90e2008-11-12 08:27:01 +08003529 ocfs2_journal_dirty(handle, xb_bh);
Tao Ma01225592008-08-18 17:38:53 +08003530
Tao Ma85db90e2008-11-12 08:27:01 +08003531out:
Tao Ma01225592008-08-18 17:38:53 +08003532 up_write(&oi->ip_alloc_sem);
3533
Tao Ma01225592008-08-18 17:38:53 +08003534 return ret;
3535}
3536
3537static int cmp_xe_offset(const void *a, const void *b)
3538{
3539 const struct ocfs2_xattr_entry *l = a, *r = b;
3540 u32 l_name_offset = le16_to_cpu(l->xe_name_offset);
3541 u32 r_name_offset = le16_to_cpu(r->xe_name_offset);
3542
3543 if (l_name_offset < r_name_offset)
3544 return 1;
3545 if (l_name_offset > r_name_offset)
3546 return -1;
3547 return 0;
3548}
3549
3550/*
3551 * defrag a xattr bucket if we find that the bucket has some
3552 * holes beteen name/value pairs.
3553 * We will move all the name/value pairs to the end of the bucket
3554 * so that we can spare some space for insertion.
3555 */
3556static int ocfs2_defrag_xattr_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08003557 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08003558 struct ocfs2_xattr_bucket *bucket)
3559{
3560 int ret, i;
3561 size_t end, offset, len, value_len;
3562 struct ocfs2_xattr_header *xh;
3563 char *entries, *buf, *bucket_buf = NULL;
Joel Becker9c7759a2008-10-24 16:21:03 -07003564 u64 blkno = bucket_blkno(bucket);
Tao Ma01225592008-08-18 17:38:53 +08003565 u16 xh_free_start;
Tao Ma01225592008-08-18 17:38:53 +08003566 size_t blocksize = inode->i_sb->s_blocksize;
Tao Ma01225592008-08-18 17:38:53 +08003567 struct ocfs2_xattr_entry *xe;
Tao Ma01225592008-08-18 17:38:53 +08003568
3569 /*
3570 * In order to make the operation more efficient and generic,
3571 * we copy all the blocks into a contiguous memory and do the
3572 * defragment there, so if anything is error, we will not touch
3573 * the real block.
3574 */
3575 bucket_buf = kmalloc(OCFS2_XATTR_BUCKET_SIZE, GFP_NOFS);
3576 if (!bucket_buf) {
3577 ret = -EIO;
3578 goto out;
3579 }
3580
Joel Becker161d6f32008-10-27 15:25:18 -07003581 buf = bucket_buf;
Tao Ma1c32a2f2008-11-06 08:10:47 +08003582 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3583 memcpy(buf, bucket_block(bucket, i), blocksize);
Joel Becker161d6f32008-10-27 15:25:18 -07003584
Tao Ma1c32a2f2008-11-06 08:10:47 +08003585 ret = ocfs2_xattr_bucket_journal_access(handle, bucket,
Joel Becker161d6f32008-10-27 15:25:18 -07003586 OCFS2_JOURNAL_ACCESS_WRITE);
3587 if (ret < 0) {
3588 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08003589 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003590 }
3591
3592 xh = (struct ocfs2_xattr_header *)bucket_buf;
3593 entries = (char *)xh->xh_entries;
3594 xh_free_start = le16_to_cpu(xh->xh_free_start);
3595
3596 mlog(0, "adjust xattr bucket in %llu, count = %u, "
3597 "xh_free_start = %u, xh_name_value_len = %u.\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003598 (unsigned long long)blkno, le16_to_cpu(xh->xh_count),
3599 xh_free_start, le16_to_cpu(xh->xh_name_value_len));
Tao Ma01225592008-08-18 17:38:53 +08003600
3601 /*
3602 * sort all the entries by their offset.
3603 * the largest will be the first, so that we can
3604 * move them to the end one by one.
3605 */
3606 sort(entries, le16_to_cpu(xh->xh_count),
3607 sizeof(struct ocfs2_xattr_entry),
3608 cmp_xe_offset, swap_xe);
3609
3610 /* Move all name/values to the end of the bucket. */
3611 xe = xh->xh_entries;
3612 end = OCFS2_XATTR_BUCKET_SIZE;
3613 for (i = 0; i < le16_to_cpu(xh->xh_count); i++, xe++) {
3614 offset = le16_to_cpu(xe->xe_name_offset);
3615 if (ocfs2_xattr_is_local(xe))
3616 value_len = OCFS2_XATTR_SIZE(
3617 le64_to_cpu(xe->xe_value_size));
3618 else
3619 value_len = OCFS2_XATTR_ROOT_SIZE;
3620 len = OCFS2_XATTR_SIZE(xe->xe_name_len) + value_len;
3621
3622 /*
3623 * We must make sure that the name/value pair
3624 * exist in the same block. So adjust end to
3625 * the previous block end if needed.
3626 */
3627 if (((end - len) / blocksize !=
3628 (end - 1) / blocksize))
3629 end = end - end % blocksize;
3630
3631 if (end > offset + len) {
3632 memmove(bucket_buf + end - len,
3633 bucket_buf + offset, len);
3634 xe->xe_name_offset = cpu_to_le16(end - len);
3635 }
3636
3637 mlog_bug_on_msg(end < offset + len, "Defrag check failed for "
3638 "bucket %llu\n", (unsigned long long)blkno);
3639
3640 end -= len;
3641 }
3642
3643 mlog_bug_on_msg(xh_free_start > end, "Defrag check failed for "
3644 "bucket %llu\n", (unsigned long long)blkno);
3645
3646 if (xh_free_start == end)
Tao Ma85db90e2008-11-12 08:27:01 +08003647 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003648
3649 memset(bucket_buf + xh_free_start, 0, end - xh_free_start);
3650 xh->xh_free_start = cpu_to_le16(end);
3651
3652 /* sort the entries by their name_hash. */
3653 sort(entries, le16_to_cpu(xh->xh_count),
3654 sizeof(struct ocfs2_xattr_entry),
3655 cmp_xe, swap_xe);
3656
3657 buf = bucket_buf;
Tao Ma1c32a2f2008-11-06 08:10:47 +08003658 for (i = 0; i < bucket->bu_blocks; i++, buf += blocksize)
3659 memcpy(bucket_block(bucket, i), buf, blocksize);
3660 ocfs2_xattr_bucket_journal_dirty(handle, bucket);
Tao Ma01225592008-08-18 17:38:53 +08003661
Tao Ma01225592008-08-18 17:38:53 +08003662out:
Tao Ma01225592008-08-18 17:38:53 +08003663 kfree(bucket_buf);
3664 return ret;
3665}
3666
3667/*
Joel Beckerb5c03e72008-11-25 19:58:16 -08003668 * prev_blkno points to the start of an existing extent. new_blkno
3669 * points to a newly allocated extent. Because we know each of our
3670 * clusters contains more than bucket, we can easily split one cluster
3671 * at a bucket boundary. So we take the last cluster of the existing
3672 * extent and split it down the middle. We move the last half of the
3673 * buckets in the last cluster of the existing extent over to the new
3674 * extent.
Tao Ma01225592008-08-18 17:38:53 +08003675 *
Joel Beckerb5c03e72008-11-25 19:58:16 -08003676 * first_bh is the buffer at prev_blkno so we can update the existing
3677 * extent's bucket count. header_bh is the bucket were we were hoping
3678 * to insert our xattr. If the bucket move places the target in the new
3679 * extent, we'll update first_bh and header_bh after modifying the old
3680 * extent.
3681 *
3682 * first_hash will be set as the 1st xe's name_hash in the new extent.
Tao Ma01225592008-08-18 17:38:53 +08003683 */
3684static int ocfs2_mv_xattr_bucket_cross_cluster(struct inode *inode,
3685 handle_t *handle,
Joel Becker41cb8142008-11-26 14:25:21 -08003686 struct ocfs2_xattr_bucket *first,
3687 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08003688 u64 new_blkno,
Tao Ma01225592008-08-18 17:38:53 +08003689 u32 num_clusters,
3690 u32 *first_hash)
3691{
Joel Beckerc58b6032008-11-26 13:36:24 -08003692 int ret;
Joel Becker41cb8142008-11-26 14:25:21 -08003693 struct super_block *sb = inode->i_sb;
3694 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(sb);
3695 int num_buckets = ocfs2_xattr_buckets_per_cluster(OCFS2_SB(sb));
Joel Beckerb5c03e72008-11-25 19:58:16 -08003696 int to_move = num_buckets / 2;
Joel Beckerc58b6032008-11-26 13:36:24 -08003697 u64 src_blkno;
Joel Becker41cb8142008-11-26 14:25:21 -08003698 u64 last_cluster_blkno = bucket_blkno(first) +
3699 ((num_clusters - 1) * ocfs2_clusters_to_blocks(sb, 1));
Tao Ma01225592008-08-18 17:38:53 +08003700
Joel Becker41cb8142008-11-26 14:25:21 -08003701 BUG_ON(le16_to_cpu(bucket_xh(first)->xh_num_buckets) < num_buckets);
3702 BUG_ON(OCFS2_XATTR_BUCKET_SIZE == OCFS2_SB(sb)->s_clustersize);
Tao Ma01225592008-08-18 17:38:53 +08003703
Tao Ma01225592008-08-18 17:38:53 +08003704 mlog(0, "move half of xattrs in cluster %llu to %llu\n",
Joel Beckerc58b6032008-11-26 13:36:24 -08003705 (unsigned long long)last_cluster_blkno, (unsigned long long)new_blkno);
Tao Ma01225592008-08-18 17:38:53 +08003706
Joel Becker41cb8142008-11-26 14:25:21 -08003707 ret = ocfs2_mv_xattr_buckets(inode, handle, bucket_blkno(first),
Joel Beckerc58b6032008-11-26 13:36:24 -08003708 last_cluster_blkno, new_blkno,
3709 to_move, first_hash);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003710 if (ret) {
3711 mlog_errno(ret);
3712 goto out;
3713 }
3714
Joel Beckerc58b6032008-11-26 13:36:24 -08003715 /* This is the first bucket that got moved */
3716 src_blkno = last_cluster_blkno + (to_move * blks_per_bucket);
3717
Tao Ma01225592008-08-18 17:38:53 +08003718 /*
Joel Beckerc58b6032008-11-26 13:36:24 -08003719 * If the target bucket was part of the moved buckets, we need to
Joel Becker41cb8142008-11-26 14:25:21 -08003720 * update first and target.
Joel Beckerb5c03e72008-11-25 19:58:16 -08003721 */
Joel Becker41cb8142008-11-26 14:25:21 -08003722 if (bucket_blkno(target) >= src_blkno) {
Joel Beckerb5c03e72008-11-25 19:58:16 -08003723 /* Find the block for the new target bucket */
3724 src_blkno = new_blkno +
Joel Becker41cb8142008-11-26 14:25:21 -08003725 (bucket_blkno(target) - src_blkno);
3726
3727 ocfs2_xattr_bucket_relse(first);
3728 ocfs2_xattr_bucket_relse(target);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003729
3730 /*
Joel Beckerc58b6032008-11-26 13:36:24 -08003731 * These shouldn't fail - the buffers are in the
Joel Beckerb5c03e72008-11-25 19:58:16 -08003732 * journal from ocfs2_cp_xattr_bucket().
3733 */
Joel Becker41cb8142008-11-26 14:25:21 -08003734 ret = ocfs2_read_xattr_bucket(first, new_blkno);
Joel Beckerc58b6032008-11-26 13:36:24 -08003735 if (ret) {
3736 mlog_errno(ret);
3737 goto out;
3738 }
Joel Becker41cb8142008-11-26 14:25:21 -08003739 ret = ocfs2_read_xattr_bucket(target, src_blkno);
3740 if (ret)
Joel Beckerb5c03e72008-11-25 19:58:16 -08003741 mlog_errno(ret);
Joel Beckerb5c03e72008-11-25 19:58:16 -08003742
Joel Beckerb5c03e72008-11-25 19:58:16 -08003743 }
3744
Tao Ma01225592008-08-18 17:38:53 +08003745out:
Tao Ma01225592008-08-18 17:38:53 +08003746 return ret;
3747}
3748
Tao Ma01225592008-08-18 17:38:53 +08003749/*
Tao Ma80bcaf32008-10-27 06:06:24 +08003750 * Find the suitable pos when we divide a bucket into 2.
3751 * We have to make sure the xattrs with the same hash value exist
3752 * in the same bucket.
3753 *
3754 * If this ocfs2_xattr_header covers more than one hash value, find a
3755 * place where the hash value changes. Try to find the most even split.
3756 * The most common case is that all entries have different hash values,
3757 * and the first check we make will find a place to split.
Tao Ma01225592008-08-18 17:38:53 +08003758 */
Tao Ma80bcaf32008-10-27 06:06:24 +08003759static int ocfs2_xattr_find_divide_pos(struct ocfs2_xattr_header *xh)
3760{
3761 struct ocfs2_xattr_entry *entries = xh->xh_entries;
3762 int count = le16_to_cpu(xh->xh_count);
3763 int delta, middle = count / 2;
3764
3765 /*
3766 * We start at the middle. Each step gets farther away in both
3767 * directions. We therefore hit the change in hash value
3768 * nearest to the middle. Note that this loop does not execute for
3769 * count < 2.
3770 */
3771 for (delta = 0; delta < middle; delta++) {
3772 /* Let's check delta earlier than middle */
3773 if (cmp_xe(&entries[middle - delta - 1],
3774 &entries[middle - delta]))
3775 return middle - delta;
3776
3777 /* For even counts, don't walk off the end */
3778 if ((middle + delta + 1) == count)
3779 continue;
3780
3781 /* Now try delta past middle */
3782 if (cmp_xe(&entries[middle + delta],
3783 &entries[middle + delta + 1]))
3784 return middle + delta + 1;
3785 }
3786
3787 /* Every entry had the same hash */
3788 return count;
3789}
3790
3791/*
3792 * Move some xattrs in old bucket(blk) to new bucket(new_blk).
3793 * first_hash will record the 1st hash of the new bucket.
3794 *
3795 * Normally half of the xattrs will be moved. But we have to make
3796 * sure that the xattrs with the same hash value are stored in the
3797 * same bucket. If all the xattrs in this bucket have the same hash
3798 * value, the new bucket will be initialized as an empty one and the
3799 * first_hash will be initialized as (hash_value+1).
3800 */
3801static int ocfs2_divide_xattr_bucket(struct inode *inode,
3802 handle_t *handle,
3803 u64 blk,
3804 u64 new_blk,
3805 u32 *first_hash,
3806 int new_bucket_head)
Tao Ma01225592008-08-18 17:38:53 +08003807{
3808 int ret, i;
Tao Ma80bcaf32008-10-27 06:06:24 +08003809 int count, start, len, name_value_len = 0, xe_len, name_offset = 0;
Joel Beckerba937122008-10-24 19:13:20 -07003810 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
Tao Ma01225592008-08-18 17:38:53 +08003811 struct ocfs2_xattr_header *xh;
3812 struct ocfs2_xattr_entry *xe;
3813 int blocksize = inode->i_sb->s_blocksize;
3814
Tao Ma80bcaf32008-10-27 06:06:24 +08003815 mlog(0, "move some of xattrs from bucket %llu to %llu\n",
Mark Fashehde29c082008-10-29 14:45:30 -07003816 (unsigned long long)blk, (unsigned long long)new_blk);
Tao Ma01225592008-08-18 17:38:53 +08003817
Joel Beckerba937122008-10-24 19:13:20 -07003818 s_bucket = ocfs2_xattr_bucket_new(inode);
3819 t_bucket = ocfs2_xattr_bucket_new(inode);
3820 if (!s_bucket || !t_bucket) {
3821 ret = -ENOMEM;
3822 mlog_errno(ret);
3823 goto out;
3824 }
Tao Ma01225592008-08-18 17:38:53 +08003825
Joel Beckerba937122008-10-24 19:13:20 -07003826 ret = ocfs2_read_xattr_bucket(s_bucket, blk);
Tao Ma01225592008-08-18 17:38:53 +08003827 if (ret) {
3828 mlog_errno(ret);
3829 goto out;
3830 }
3831
Joel Beckerba937122008-10-24 19:13:20 -07003832 ret = ocfs2_xattr_bucket_journal_access(handle, s_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07003833 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08003834 if (ret) {
3835 mlog_errno(ret);
3836 goto out;
3837 }
3838
Joel Becker784b8162008-10-24 17:33:40 -07003839 /*
3840 * Even if !new_bucket_head, we're overwriting t_bucket. Thus,
3841 * there's no need to read it.
3842 */
Joel Beckerba937122008-10-24 19:13:20 -07003843 ret = ocfs2_init_xattr_bucket(t_bucket, new_blk);
Tao Ma01225592008-08-18 17:38:53 +08003844 if (ret) {
3845 mlog_errno(ret);
3846 goto out;
3847 }
3848
Joel Becker2b656c12008-11-25 19:00:15 -08003849 /*
3850 * Hey, if we're overwriting t_bucket, what difference does
3851 * ACCESS_CREATE vs ACCESS_WRITE make? See the comment in the
3852 * same part of ocfs2_cp_xattr_bucket().
3853 */
Joel Beckerba937122008-10-24 19:13:20 -07003854 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07003855 new_bucket_head ?
3856 OCFS2_JOURNAL_ACCESS_CREATE :
3857 OCFS2_JOURNAL_ACCESS_WRITE);
3858 if (ret) {
3859 mlog_errno(ret);
3860 goto out;
Tao Ma01225592008-08-18 17:38:53 +08003861 }
3862
Joel Beckerba937122008-10-24 19:13:20 -07003863 xh = bucket_xh(s_bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08003864 count = le16_to_cpu(xh->xh_count);
3865 start = ocfs2_xattr_find_divide_pos(xh);
3866
3867 if (start == count) {
3868 xe = &xh->xh_entries[start-1];
3869
3870 /*
3871 * initialized a new empty bucket here.
3872 * The hash value is set as one larger than
3873 * that of the last entry in the previous bucket.
3874 */
Joel Beckerba937122008-10-24 19:13:20 -07003875 for (i = 0; i < t_bucket->bu_blocks; i++)
3876 memset(bucket_block(t_bucket, i), 0, blocksize);
Tao Ma80bcaf32008-10-27 06:06:24 +08003877
Joel Beckerba937122008-10-24 19:13:20 -07003878 xh = bucket_xh(t_bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08003879 xh->xh_free_start = cpu_to_le16(blocksize);
3880 xh->xh_entries[0].xe_name_hash = xe->xe_name_hash;
3881 le32_add_cpu(&xh->xh_entries[0].xe_name_hash, 1);
3882
3883 goto set_num_buckets;
3884 }
3885
Tao Ma01225592008-08-18 17:38:53 +08003886 /* copy the whole bucket to the new first. */
Joel Beckerba937122008-10-24 19:13:20 -07003887 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003888
3889 /* update the new bucket. */
Joel Beckerba937122008-10-24 19:13:20 -07003890 xh = bucket_xh(t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003891
3892 /*
3893 * Calculate the total name/value len and xh_free_start for
3894 * the old bucket first.
3895 */
3896 name_offset = OCFS2_XATTR_BUCKET_SIZE;
3897 name_value_len = 0;
3898 for (i = 0; i < start; i++) {
3899 xe = &xh->xh_entries[i];
3900 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3901 if (ocfs2_xattr_is_local(xe))
3902 xe_len +=
3903 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3904 else
3905 xe_len += OCFS2_XATTR_ROOT_SIZE;
3906 name_value_len += xe_len;
3907 if (le16_to_cpu(xe->xe_name_offset) < name_offset)
3908 name_offset = le16_to_cpu(xe->xe_name_offset);
3909 }
3910
3911 /*
3912 * Now begin the modification to the new bucket.
3913 *
3914 * In the new bucket, We just move the xattr entry to the beginning
3915 * and don't touch the name/value. So there will be some holes in the
3916 * bucket, and they will be removed when ocfs2_defrag_xattr_bucket is
3917 * called.
3918 */
3919 xe = &xh->xh_entries[start];
3920 len = sizeof(struct ocfs2_xattr_entry) * (count - start);
3921 mlog(0, "mv xattr entry len %d from %d to %d\n", len,
Mark Fashehff1ec202008-08-19 10:54:29 -07003922 (int)((char *)xe - (char *)xh),
3923 (int)((char *)xh->xh_entries - (char *)xh));
Tao Ma01225592008-08-18 17:38:53 +08003924 memmove((char *)xh->xh_entries, (char *)xe, len);
3925 xe = &xh->xh_entries[count - start];
3926 len = sizeof(struct ocfs2_xattr_entry) * start;
3927 memset((char *)xe, 0, len);
3928
3929 le16_add_cpu(&xh->xh_count, -start);
3930 le16_add_cpu(&xh->xh_name_value_len, -name_value_len);
3931
3932 /* Calculate xh_free_start for the new bucket. */
3933 xh->xh_free_start = cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
3934 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
3935 xe = &xh->xh_entries[i];
3936 xe_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
3937 if (ocfs2_xattr_is_local(xe))
3938 xe_len +=
3939 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
3940 else
3941 xe_len += OCFS2_XATTR_ROOT_SIZE;
3942 if (le16_to_cpu(xe->xe_name_offset) <
3943 le16_to_cpu(xh->xh_free_start))
3944 xh->xh_free_start = xe->xe_name_offset;
3945 }
3946
Tao Ma80bcaf32008-10-27 06:06:24 +08003947set_num_buckets:
Tao Ma01225592008-08-18 17:38:53 +08003948 /* set xh->xh_num_buckets for the new xh. */
3949 if (new_bucket_head)
3950 xh->xh_num_buckets = cpu_to_le16(1);
3951 else
3952 xh->xh_num_buckets = 0;
3953
Joel Beckerba937122008-10-24 19:13:20 -07003954 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003955
3956 /* store the first_hash of the new bucket. */
3957 if (first_hash)
3958 *first_hash = le32_to_cpu(xh->xh_entries[0].xe_name_hash);
3959
3960 /*
Tao Ma80bcaf32008-10-27 06:06:24 +08003961 * Now only update the 1st block of the old bucket. If we
3962 * just added a new empty bucket, there is no need to modify
3963 * it.
Tao Ma01225592008-08-18 17:38:53 +08003964 */
Tao Ma80bcaf32008-10-27 06:06:24 +08003965 if (start == count)
3966 goto out;
3967
Joel Beckerba937122008-10-24 19:13:20 -07003968 xh = bucket_xh(s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003969 memset(&xh->xh_entries[start], 0,
3970 sizeof(struct ocfs2_xattr_entry) * (count - start));
3971 xh->xh_count = cpu_to_le16(start);
3972 xh->xh_free_start = cpu_to_le16(name_offset);
3973 xh->xh_name_value_len = cpu_to_le16(name_value_len);
3974
Joel Beckerba937122008-10-24 19:13:20 -07003975 ocfs2_xattr_bucket_journal_dirty(handle, s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003976
3977out:
Joel Beckerba937122008-10-24 19:13:20 -07003978 ocfs2_xattr_bucket_free(s_bucket);
3979 ocfs2_xattr_bucket_free(t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08003980
3981 return ret;
3982}
3983
3984/*
3985 * Copy xattr from one bucket to another bucket.
3986 *
3987 * The caller must make sure that the journal transaction
3988 * has enough space for journaling.
3989 */
3990static int ocfs2_cp_xattr_bucket(struct inode *inode,
3991 handle_t *handle,
3992 u64 s_blkno,
3993 u64 t_blkno,
3994 int t_is_new)
3995{
Joel Becker4980c6d2008-10-24 18:54:43 -07003996 int ret;
Joel Beckerba937122008-10-24 19:13:20 -07003997 struct ocfs2_xattr_bucket *s_bucket = NULL, *t_bucket = NULL;
Tao Ma01225592008-08-18 17:38:53 +08003998
3999 BUG_ON(s_blkno == t_blkno);
4000
4001 mlog(0, "cp bucket %llu to %llu, target is %d\n",
Mark Fashehde29c082008-10-29 14:45:30 -07004002 (unsigned long long)s_blkno, (unsigned long long)t_blkno,
4003 t_is_new);
Tao Ma01225592008-08-18 17:38:53 +08004004
Joel Beckerba937122008-10-24 19:13:20 -07004005 s_bucket = ocfs2_xattr_bucket_new(inode);
4006 t_bucket = ocfs2_xattr_bucket_new(inode);
4007 if (!s_bucket || !t_bucket) {
4008 ret = -ENOMEM;
4009 mlog_errno(ret);
4010 goto out;
4011 }
Joel Becker92de1092008-11-25 17:06:40 -08004012
Joel Beckerba937122008-10-24 19:13:20 -07004013 ret = ocfs2_read_xattr_bucket(s_bucket, s_blkno);
Tao Ma01225592008-08-18 17:38:53 +08004014 if (ret)
4015 goto out;
4016
Joel Becker784b8162008-10-24 17:33:40 -07004017 /*
4018 * Even if !t_is_new, we're overwriting t_bucket. Thus,
4019 * there's no need to read it.
4020 */
Joel Beckerba937122008-10-24 19:13:20 -07004021 ret = ocfs2_init_xattr_bucket(t_bucket, t_blkno);
Tao Ma01225592008-08-18 17:38:53 +08004022 if (ret)
4023 goto out;
4024
Joel Becker2b656c12008-11-25 19:00:15 -08004025 /*
4026 * Hey, if we're overwriting t_bucket, what difference does
4027 * ACCESS_CREATE vs ACCESS_WRITE make? Well, if we allocated a new
Joel Becker874d65a2008-11-26 13:02:18 -08004028 * cluster to fill, we came here from
4029 * ocfs2_mv_xattr_buckets(), and it is really new -
4030 * ACCESS_CREATE is required. But we also might have moved data
4031 * out of t_bucket before extending back into it.
4032 * ocfs2_add_new_xattr_bucket() can do this - its call to
4033 * ocfs2_add_new_xattr_cluster() may have created a new extent
Joel Becker2b656c12008-11-25 19:00:15 -08004034 * and copied out the end of the old extent. Then it re-extends
4035 * the old extent back to create space for new xattrs. That's
4036 * how we get here, and the bucket isn't really new.
4037 */
Joel Beckerba937122008-10-24 19:13:20 -07004038 ret = ocfs2_xattr_bucket_journal_access(handle, t_bucket,
Joel Becker1224be02008-10-24 18:47:33 -07004039 t_is_new ?
4040 OCFS2_JOURNAL_ACCESS_CREATE :
4041 OCFS2_JOURNAL_ACCESS_WRITE);
4042 if (ret)
4043 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004044
Joel Beckerba937122008-10-24 19:13:20 -07004045 ocfs2_xattr_bucket_copy_data(t_bucket, s_bucket);
4046 ocfs2_xattr_bucket_journal_dirty(handle, t_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004047
4048out:
Joel Beckerba937122008-10-24 19:13:20 -07004049 ocfs2_xattr_bucket_free(t_bucket);
4050 ocfs2_xattr_bucket_free(s_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004051
4052 return ret;
4053}
4054
4055/*
Joel Becker874d65a2008-11-26 13:02:18 -08004056 * src_blk points to the start of an existing extent. last_blk points to
4057 * last cluster in that extent. to_blk points to a newly allocated
Joel Becker54ecb6b2008-11-26 13:18:31 -08004058 * extent. We copy the buckets from the cluster at last_blk to the new
4059 * extent. If start_bucket is non-zero, we skip that many buckets before
4060 * we start copying. The new extent's xh_num_buckets gets set to the
4061 * number of buckets we copied. The old extent's xh_num_buckets shrinks
4062 * by the same amount.
Tao Ma01225592008-08-18 17:38:53 +08004063 */
Joel Becker54ecb6b2008-11-26 13:18:31 -08004064static int ocfs2_mv_xattr_buckets(struct inode *inode, handle_t *handle,
4065 u64 src_blk, u64 last_blk, u64 to_blk,
4066 unsigned int start_bucket,
4067 u32 *first_hash)
Tao Ma01225592008-08-18 17:38:53 +08004068{
4069 int i, ret, credits;
4070 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Becker15d60922008-11-25 18:36:42 -08004071 int blks_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08004072 int num_buckets = ocfs2_xattr_buckets_per_cluster(osb);
Joel Becker15d60922008-11-25 18:36:42 -08004073 struct ocfs2_xattr_bucket *old_first, *new_first;
Tao Ma01225592008-08-18 17:38:53 +08004074
Joel Becker874d65a2008-11-26 13:02:18 -08004075 mlog(0, "mv xattrs from cluster %llu to %llu\n",
4076 (unsigned long long)last_blk, (unsigned long long)to_blk);
Tao Ma01225592008-08-18 17:38:53 +08004077
Joel Becker54ecb6b2008-11-26 13:18:31 -08004078 BUG_ON(start_bucket >= num_buckets);
4079 if (start_bucket) {
4080 num_buckets -= start_bucket;
4081 last_blk += (start_bucket * blks_per_bucket);
4082 }
4083
Joel Becker15d60922008-11-25 18:36:42 -08004084 /* The first bucket of the original extent */
4085 old_first = ocfs2_xattr_bucket_new(inode);
4086 /* The first bucket of the new extent */
4087 new_first = ocfs2_xattr_bucket_new(inode);
4088 if (!old_first || !new_first) {
4089 ret = -ENOMEM;
4090 mlog_errno(ret);
4091 goto out;
4092 }
4093
Joel Becker874d65a2008-11-26 13:02:18 -08004094 ret = ocfs2_read_xattr_bucket(old_first, src_blk);
Joel Becker15d60922008-11-25 18:36:42 -08004095 if (ret) {
4096 mlog_errno(ret);
4097 goto out;
4098 }
4099
Tao Ma01225592008-08-18 17:38:53 +08004100 /*
Joel Becker54ecb6b2008-11-26 13:18:31 -08004101 * We need to update the first bucket of the old extent and all
4102 * the buckets going to the new extent.
Tao Ma01225592008-08-18 17:38:53 +08004103 */
Joel Becker54ecb6b2008-11-26 13:18:31 -08004104 credits = ((num_buckets + 1) * blks_per_bucket) +
4105 handle->h_buffer_credits;
Tao Ma01225592008-08-18 17:38:53 +08004106 ret = ocfs2_extend_trans(handle, credits);
4107 if (ret) {
4108 mlog_errno(ret);
4109 goto out;
4110 }
4111
Joel Becker15d60922008-11-25 18:36:42 -08004112 ret = ocfs2_xattr_bucket_journal_access(handle, old_first,
4113 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004114 if (ret) {
4115 mlog_errno(ret);
4116 goto out;
4117 }
4118
4119 for (i = 0; i < num_buckets; i++) {
4120 ret = ocfs2_cp_xattr_bucket(inode, handle,
Joel Becker874d65a2008-11-26 13:02:18 -08004121 last_blk + (i * blks_per_bucket),
Joel Becker15d60922008-11-25 18:36:42 -08004122 to_blk + (i * blks_per_bucket),
4123 1);
Tao Ma01225592008-08-18 17:38:53 +08004124 if (ret) {
4125 mlog_errno(ret);
4126 goto out;
4127 }
Tao Ma01225592008-08-18 17:38:53 +08004128 }
4129
Joel Becker15d60922008-11-25 18:36:42 -08004130 /*
4131 * Get the new bucket ready before we dirty anything
4132 * (This actually shouldn't fail, because we already dirtied
4133 * it once in ocfs2_cp_xattr_bucket()).
4134 */
4135 ret = ocfs2_read_xattr_bucket(new_first, to_blk);
4136 if (ret) {
Tao Ma01225592008-08-18 17:38:53 +08004137 mlog_errno(ret);
4138 goto out;
4139 }
Joel Becker15d60922008-11-25 18:36:42 -08004140 ret = ocfs2_xattr_bucket_journal_access(handle, new_first,
4141 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004142 if (ret) {
4143 mlog_errno(ret);
4144 goto out;
4145 }
4146
Joel Becker15d60922008-11-25 18:36:42 -08004147 /* Now update the headers */
4148 le16_add_cpu(&bucket_xh(old_first)->xh_num_buckets, -num_buckets);
4149 ocfs2_xattr_bucket_journal_dirty(handle, old_first);
Tao Ma01225592008-08-18 17:38:53 +08004150
Joel Becker15d60922008-11-25 18:36:42 -08004151 bucket_xh(new_first)->xh_num_buckets = cpu_to_le16(num_buckets);
4152 ocfs2_xattr_bucket_journal_dirty(handle, new_first);
Tao Ma01225592008-08-18 17:38:53 +08004153
4154 if (first_hash)
Joel Becker15d60922008-11-25 18:36:42 -08004155 *first_hash = le32_to_cpu(bucket_xh(new_first)->xh_entries[0].xe_name_hash);
4156
Tao Ma01225592008-08-18 17:38:53 +08004157out:
Joel Becker15d60922008-11-25 18:36:42 -08004158 ocfs2_xattr_bucket_free(new_first);
4159 ocfs2_xattr_bucket_free(old_first);
Tao Ma01225592008-08-18 17:38:53 +08004160 return ret;
4161}
4162
4163/*
Tao Ma80bcaf32008-10-27 06:06:24 +08004164 * Move some xattrs in this cluster to the new cluster.
Tao Ma01225592008-08-18 17:38:53 +08004165 * This function should only be called when bucket size == cluster size.
4166 * Otherwise ocfs2_mv_xattr_bucket_cross_cluster should be used instead.
4167 */
Tao Ma80bcaf32008-10-27 06:06:24 +08004168static int ocfs2_divide_xattr_cluster(struct inode *inode,
4169 handle_t *handle,
4170 u64 prev_blk,
4171 u64 new_blk,
4172 u32 *first_hash)
Tao Ma01225592008-08-18 17:38:53 +08004173{
4174 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Tao Ma85db90e2008-11-12 08:27:01 +08004175 int ret, credits = 2 * blk_per_bucket + handle->h_buffer_credits;
Tao Ma01225592008-08-18 17:38:53 +08004176
4177 BUG_ON(OCFS2_XATTR_BUCKET_SIZE < OCFS2_SB(inode->i_sb)->s_clustersize);
4178
4179 ret = ocfs2_extend_trans(handle, credits);
4180 if (ret) {
4181 mlog_errno(ret);
4182 return ret;
4183 }
4184
4185 /* Move half of the xattr in start_blk to the next bucket. */
Tao Ma80bcaf32008-10-27 06:06:24 +08004186 return ocfs2_divide_xattr_bucket(inode, handle, prev_blk,
4187 new_blk, first_hash, 1);
Tao Ma01225592008-08-18 17:38:53 +08004188}
4189
4190/*
4191 * Move some xattrs from the old cluster to the new one since they are not
4192 * contiguous in ocfs2 xattr tree.
4193 *
4194 * new_blk starts a new separate cluster, and we will move some xattrs from
4195 * prev_blk to it. v_start will be set as the first name hash value in this
4196 * new cluster so that it can be used as e_cpos during tree insertion and
4197 * don't collide with our original b-tree operations. first_bh and header_bh
4198 * will also be updated since they will be used in ocfs2_extend_xattr_bucket
4199 * to extend the insert bucket.
4200 *
4201 * The problem is how much xattr should we move to the new one and when should
4202 * we update first_bh and header_bh?
4203 * 1. If cluster size > bucket size, that means the previous cluster has more
4204 * than 1 bucket, so just move half nums of bucket into the new cluster and
4205 * update the first_bh and header_bh if the insert bucket has been moved
4206 * to the new cluster.
4207 * 2. If cluster_size == bucket_size:
4208 * a) If the previous extent rec has more than one cluster and the insert
4209 * place isn't in the last cluster, copy the entire last cluster to the
4210 * new one. This time, we don't need to upate the first_bh and header_bh
4211 * since they will not be moved into the new cluster.
4212 * b) Otherwise, move the bottom half of the xattrs in the last cluster into
4213 * the new one. And we set the extend flag to zero if the insert place is
4214 * moved into the new allocated cluster since no extend is needed.
4215 */
4216static int ocfs2_adjust_xattr_cross_cluster(struct inode *inode,
4217 handle_t *handle,
Joel Becker012ee912008-11-26 14:43:31 -08004218 struct ocfs2_xattr_bucket *first,
4219 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08004220 u64 new_blk,
Tao Ma01225592008-08-18 17:38:53 +08004221 u32 prev_clusters,
4222 u32 *v_start,
4223 int *extend)
4224{
Joel Becker92cf3ad2008-11-26 14:12:09 -08004225 int ret;
Tao Ma01225592008-08-18 17:38:53 +08004226
4227 mlog(0, "adjust xattrs from cluster %llu len %u to %llu\n",
Joel Becker012ee912008-11-26 14:43:31 -08004228 (unsigned long long)bucket_blkno(first), prev_clusters,
Mark Fashehde29c082008-10-29 14:45:30 -07004229 (unsigned long long)new_blk);
Tao Ma01225592008-08-18 17:38:53 +08004230
Joel Becker41cb8142008-11-26 14:25:21 -08004231 if (ocfs2_xattr_buckets_per_cluster(OCFS2_SB(inode->i_sb)) > 1) {
Tao Ma01225592008-08-18 17:38:53 +08004232 ret = ocfs2_mv_xattr_bucket_cross_cluster(inode,
4233 handle,
Joel Becker41cb8142008-11-26 14:25:21 -08004234 first, target,
Tao Ma01225592008-08-18 17:38:53 +08004235 new_blk,
Tao Ma01225592008-08-18 17:38:53 +08004236 prev_clusters,
4237 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004238 if (ret)
Joel Becker41cb8142008-11-26 14:25:21 -08004239 mlog_errno(ret);
Joel Becker41cb8142008-11-26 14:25:21 -08004240 } else {
Joel Becker92cf3ad2008-11-26 14:12:09 -08004241 /* The start of the last cluster in the first extent */
4242 u64 last_blk = bucket_blkno(first) +
4243 ((prev_clusters - 1) *
4244 ocfs2_clusters_to_blocks(inode->i_sb, 1));
Tao Ma01225592008-08-18 17:38:53 +08004245
Joel Becker012ee912008-11-26 14:43:31 -08004246 if (prev_clusters > 1 && bucket_blkno(target) != last_blk) {
Joel Becker874d65a2008-11-26 13:02:18 -08004247 ret = ocfs2_mv_xattr_buckets(inode, handle,
Joel Becker92cf3ad2008-11-26 14:12:09 -08004248 bucket_blkno(first),
Joel Becker54ecb6b2008-11-26 13:18:31 -08004249 last_blk, new_blk, 0,
Tao Ma01225592008-08-18 17:38:53 +08004250 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004251 if (ret)
4252 mlog_errno(ret);
4253 } else {
Tao Ma80bcaf32008-10-27 06:06:24 +08004254 ret = ocfs2_divide_xattr_cluster(inode, handle,
4255 last_blk, new_blk,
4256 v_start);
Joel Becker012ee912008-11-26 14:43:31 -08004257 if (ret)
4258 mlog_errno(ret);
Tao Ma01225592008-08-18 17:38:53 +08004259
Joel Becker92cf3ad2008-11-26 14:12:09 -08004260 if ((bucket_blkno(target) == last_blk) && extend)
Tao Ma01225592008-08-18 17:38:53 +08004261 *extend = 0;
4262 }
4263 }
4264
4265 return ret;
4266}
4267
4268/*
4269 * Add a new cluster for xattr storage.
4270 *
4271 * If the new cluster is contiguous with the previous one, it will be
4272 * appended to the same extent record, and num_clusters will be updated.
4273 * If not, we will insert a new extent for it and move some xattrs in
4274 * the last cluster into the new allocated one.
4275 * We also need to limit the maximum size of a btree leaf, otherwise we'll
4276 * lose the benefits of hashing because we'll have to search large leaves.
4277 * So now the maximum size is OCFS2_MAX_XATTR_TREE_LEAF_SIZE(or clustersize,
4278 * if it's bigger).
4279 *
4280 * first_bh is the first block of the previous extent rec and header_bh
4281 * indicates the bucket we will insert the new xattrs. They will be updated
4282 * when the header_bh is moved into the new cluster.
4283 */
4284static int ocfs2_add_new_xattr_cluster(struct inode *inode,
4285 struct buffer_head *root_bh,
Joel Beckered29c0c2008-11-26 15:08:44 -08004286 struct ocfs2_xattr_bucket *first,
4287 struct ocfs2_xattr_bucket *target,
Tao Ma01225592008-08-18 17:38:53 +08004288 u32 *num_clusters,
4289 u32 prev_cpos,
Tao Ma78f30c32008-11-12 08:27:00 +08004290 int *extend,
4291 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004292{
Tao Ma85db90e2008-11-12 08:27:01 +08004293 int ret;
Tao Ma01225592008-08-18 17:38:53 +08004294 u16 bpc = ocfs2_clusters_to_blocks(inode->i_sb, 1);
4295 u32 prev_clusters = *num_clusters;
4296 u32 clusters_to_add = 1, bit_off, num_bits, v_start = 0;
4297 u64 block;
Tao Ma85db90e2008-11-12 08:27:01 +08004298 handle_t *handle = ctxt->handle;
Tao Ma01225592008-08-18 17:38:53 +08004299 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004300 struct ocfs2_extent_tree et;
Tao Ma01225592008-08-18 17:38:53 +08004301
4302 mlog(0, "Add new xattr cluster for %llu, previous xattr hash = %u, "
4303 "previous xattr blkno = %llu\n",
4304 (unsigned long long)OCFS2_I(inode)->ip_blkno,
Joel Beckered29c0c2008-11-26 15:08:44 -08004305 prev_cpos, (unsigned long long)bucket_blkno(first));
Tao Ma01225592008-08-18 17:38:53 +08004306
Joel Becker5e404e92009-02-13 03:54:22 -08004307 ocfs2_init_xattr_tree_extent_tree(&et, INODE_CACHE(inode), root_bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -07004308
Joel Becker0cf2f762009-02-12 16:41:25 -08004309 ret = ocfs2_journal_access_xb(handle, INODE_CACHE(inode), root_bh,
Joel Becker84008972008-12-09 16:11:49 -08004310 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004311 if (ret < 0) {
4312 mlog_errno(ret);
4313 goto leave;
4314 }
4315
Tao Ma78f30c32008-11-12 08:27:00 +08004316 ret = __ocfs2_claim_clusters(osb, handle, ctxt->data_ac, 1,
Tao Ma01225592008-08-18 17:38:53 +08004317 clusters_to_add, &bit_off, &num_bits);
4318 if (ret < 0) {
4319 if (ret != -ENOSPC)
4320 mlog_errno(ret);
4321 goto leave;
4322 }
4323
4324 BUG_ON(num_bits > clusters_to_add);
4325
4326 block = ocfs2_clusters_to_blocks(osb->sb, bit_off);
4327 mlog(0, "Allocating %u clusters at block %u for xattr in inode %llu\n",
4328 num_bits, bit_off, (unsigned long long)OCFS2_I(inode)->ip_blkno);
4329
Joel Beckered29c0c2008-11-26 15:08:44 -08004330 if (bucket_blkno(first) + (prev_clusters * bpc) == block &&
Tao Ma01225592008-08-18 17:38:53 +08004331 (prev_clusters + num_bits) << osb->s_clustersize_bits <=
4332 OCFS2_MAX_XATTR_TREE_LEAF_SIZE) {
4333 /*
4334 * If this cluster is contiguous with the old one and
4335 * adding this new cluster, we don't surpass the limit of
4336 * OCFS2_MAX_XATTR_TREE_LEAF_SIZE, cool. We will let it be
4337 * initialized and used like other buckets in the previous
4338 * cluster.
4339 * So add it as a contiguous one. The caller will handle
4340 * its init process.
4341 */
4342 v_start = prev_cpos + prev_clusters;
4343 *num_clusters = prev_clusters + num_bits;
4344 mlog(0, "Add contiguous %u clusters to previous extent rec.\n",
4345 num_bits);
4346 } else {
4347 ret = ocfs2_adjust_xattr_cross_cluster(inode,
4348 handle,
Joel Becker012ee912008-11-26 14:43:31 -08004349 first,
4350 target,
Tao Ma01225592008-08-18 17:38:53 +08004351 block,
Tao Ma01225592008-08-18 17:38:53 +08004352 prev_clusters,
4353 &v_start,
4354 extend);
4355 if (ret) {
4356 mlog_errno(ret);
4357 goto leave;
4358 }
4359 }
4360
4361 mlog(0, "Insert %u clusters at block %llu for xattr at %u\n",
Mark Fashehde29c082008-10-29 14:45:30 -07004362 num_bits, (unsigned long long)block, v_start);
Joel Beckercc79d8c2009-02-13 03:24:43 -08004363 ret = ocfs2_insert_extent(handle, &et, v_start, block,
Tao Ma78f30c32008-11-12 08:27:00 +08004364 num_bits, 0, ctxt->meta_ac);
Tao Ma01225592008-08-18 17:38:53 +08004365 if (ret < 0) {
4366 mlog_errno(ret);
4367 goto leave;
4368 }
4369
4370 ret = ocfs2_journal_dirty(handle, root_bh);
Tao Ma85db90e2008-11-12 08:27:01 +08004371 if (ret < 0)
Tao Ma01225592008-08-18 17:38:53 +08004372 mlog_errno(ret);
Tao Ma01225592008-08-18 17:38:53 +08004373
4374leave:
Tao Ma01225592008-08-18 17:38:53 +08004375 return ret;
4376}
4377
4378/*
Joel Becker92de1092008-11-25 17:06:40 -08004379 * We are given an extent. 'first' is the bucket at the very front of
4380 * the extent. The extent has space for an additional bucket past
4381 * bucket_xh(first)->xh_num_buckets. 'target_blkno' is the block number
4382 * of the target bucket. We wish to shift every bucket past the target
4383 * down one, filling in that additional space. When we get back to the
4384 * target, we split the target between itself and the now-empty bucket
4385 * at target+1 (aka, target_blkno + blks_per_bucket).
Tao Ma01225592008-08-18 17:38:53 +08004386 */
4387static int ocfs2_extend_xattr_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004388 handle_t *handle,
Joel Becker92de1092008-11-25 17:06:40 -08004389 struct ocfs2_xattr_bucket *first,
4390 u64 target_blk,
Tao Ma01225592008-08-18 17:38:53 +08004391 u32 num_clusters)
4392{
4393 int ret, credits;
4394 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4395 u16 blk_per_bucket = ocfs2_blocks_per_xattr_bucket(inode->i_sb);
Joel Becker92de1092008-11-25 17:06:40 -08004396 u64 end_blk;
4397 u16 new_bucket = le16_to_cpu(bucket_xh(first)->xh_num_buckets);
Tao Ma01225592008-08-18 17:38:53 +08004398
4399 mlog(0, "extend xattr bucket in %llu, xattr extend rec starting "
Joel Becker92de1092008-11-25 17:06:40 -08004400 "from %llu, len = %u\n", (unsigned long long)target_blk,
4401 (unsigned long long)bucket_blkno(first), num_clusters);
Tao Ma01225592008-08-18 17:38:53 +08004402
Joel Becker92de1092008-11-25 17:06:40 -08004403 /* The extent must have room for an additional bucket */
4404 BUG_ON(new_bucket >=
4405 (num_clusters * ocfs2_xattr_buckets_per_cluster(osb)));
Tao Ma01225592008-08-18 17:38:53 +08004406
Joel Becker92de1092008-11-25 17:06:40 -08004407 /* end_blk points to the last existing bucket */
4408 end_blk = bucket_blkno(first) + ((new_bucket - 1) * blk_per_bucket);
Tao Ma01225592008-08-18 17:38:53 +08004409
4410 /*
Joel Becker92de1092008-11-25 17:06:40 -08004411 * end_blk is the start of the last existing bucket.
4412 * Thus, (end_blk - target_blk) covers the target bucket and
4413 * every bucket after it up to, but not including, the last
4414 * existing bucket. Then we add the last existing bucket, the
4415 * new bucket, and the first bucket (3 * blk_per_bucket).
Tao Ma01225592008-08-18 17:38:53 +08004416 */
Joel Becker92de1092008-11-25 17:06:40 -08004417 credits = (end_blk - target_blk) + (3 * blk_per_bucket) +
Tao Ma85db90e2008-11-12 08:27:01 +08004418 handle->h_buffer_credits;
4419 ret = ocfs2_extend_trans(handle, credits);
4420 if (ret) {
Tao Ma01225592008-08-18 17:38:53 +08004421 mlog_errno(ret);
4422 goto out;
4423 }
4424
Joel Becker92de1092008-11-25 17:06:40 -08004425 ret = ocfs2_xattr_bucket_journal_access(handle, first,
4426 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004427 if (ret) {
4428 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08004429 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004430 }
4431
Joel Becker92de1092008-11-25 17:06:40 -08004432 while (end_blk != target_blk) {
Tao Ma01225592008-08-18 17:38:53 +08004433 ret = ocfs2_cp_xattr_bucket(inode, handle, end_blk,
4434 end_blk + blk_per_bucket, 0);
4435 if (ret)
Tao Ma85db90e2008-11-12 08:27:01 +08004436 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004437 end_blk -= blk_per_bucket;
4438 }
4439
Joel Becker92de1092008-11-25 17:06:40 -08004440 /* Move half of the xattr in target_blkno to the next bucket. */
4441 ret = ocfs2_divide_xattr_bucket(inode, handle, target_blk,
4442 target_blk + blk_per_bucket, NULL, 0);
Tao Ma01225592008-08-18 17:38:53 +08004443
Joel Becker92de1092008-11-25 17:06:40 -08004444 le16_add_cpu(&bucket_xh(first)->xh_num_buckets, 1);
4445 ocfs2_xattr_bucket_journal_dirty(handle, first);
Tao Ma01225592008-08-18 17:38:53 +08004446
Tao Ma01225592008-08-18 17:38:53 +08004447out:
4448 return ret;
4449}
4450
4451/*
Joel Becker91f20332008-11-26 15:25:41 -08004452 * Add new xattr bucket in an extent record and adjust the buckets
4453 * accordingly. xb_bh is the ocfs2_xattr_block, and target is the
4454 * bucket we want to insert into.
Tao Ma01225592008-08-18 17:38:53 +08004455 *
Joel Becker91f20332008-11-26 15:25:41 -08004456 * In the easy case, we will move all the buckets after target down by
4457 * one. Half of target's xattrs will be moved to the next bucket.
4458 *
4459 * If current cluster is full, we'll allocate a new one. This may not
4460 * be contiguous. The underlying calls will make sure that there is
4461 * space for the insert, shifting buckets around if necessary.
4462 * 'target' may be moved by those calls.
Tao Ma01225592008-08-18 17:38:53 +08004463 */
4464static int ocfs2_add_new_xattr_bucket(struct inode *inode,
4465 struct buffer_head *xb_bh,
Joel Becker91f20332008-11-26 15:25:41 -08004466 struct ocfs2_xattr_bucket *target,
Tao Ma78f30c32008-11-12 08:27:00 +08004467 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004468{
Tao Ma01225592008-08-18 17:38:53 +08004469 struct ocfs2_xattr_block *xb =
4470 (struct ocfs2_xattr_block *)xb_bh->b_data;
4471 struct ocfs2_xattr_tree_root *xb_root = &xb->xb_attrs.xb_root;
4472 struct ocfs2_extent_list *el = &xb_root->xt_list;
Joel Becker91f20332008-11-26 15:25:41 -08004473 u32 name_hash =
4474 le32_to_cpu(bucket_xh(target)->xh_entries[0].xe_name_hash);
Joel Beckered29c0c2008-11-26 15:08:44 -08004475 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tao Ma01225592008-08-18 17:38:53 +08004476 int ret, num_buckets, extend = 1;
4477 u64 p_blkno;
4478 u32 e_cpos, num_clusters;
Joel Becker92de1092008-11-25 17:06:40 -08004479 /* The bucket at the front of the extent */
Joel Becker91f20332008-11-26 15:25:41 -08004480 struct ocfs2_xattr_bucket *first;
Tao Ma01225592008-08-18 17:38:53 +08004481
Joel Becker91f20332008-11-26 15:25:41 -08004482 mlog(0, "Add new xattr bucket starting from %llu\n",
4483 (unsigned long long)bucket_blkno(target));
Tao Ma01225592008-08-18 17:38:53 +08004484
Joel Beckered29c0c2008-11-26 15:08:44 -08004485 /* The first bucket of the original extent */
Joel Becker92de1092008-11-25 17:06:40 -08004486 first = ocfs2_xattr_bucket_new(inode);
Joel Becker91f20332008-11-26 15:25:41 -08004487 if (!first) {
Joel Becker92de1092008-11-25 17:06:40 -08004488 ret = -ENOMEM;
4489 mlog_errno(ret);
4490 goto out;
4491 }
4492
Tao Ma01225592008-08-18 17:38:53 +08004493 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno, &e_cpos,
4494 &num_clusters, el);
4495 if (ret) {
4496 mlog_errno(ret);
4497 goto out;
4498 }
4499
Joel Beckered29c0c2008-11-26 15:08:44 -08004500 ret = ocfs2_read_xattr_bucket(first, p_blkno);
4501 if (ret) {
4502 mlog_errno(ret);
4503 goto out;
4504 }
4505
Tao Ma01225592008-08-18 17:38:53 +08004506 num_buckets = ocfs2_xattr_buckets_per_cluster(osb) * num_clusters;
Joel Beckered29c0c2008-11-26 15:08:44 -08004507 if (num_buckets == le16_to_cpu(bucket_xh(first)->xh_num_buckets)) {
4508 /*
4509 * This can move first+target if the target bucket moves
4510 * to the new extent.
4511 */
Tao Ma01225592008-08-18 17:38:53 +08004512 ret = ocfs2_add_new_xattr_cluster(inode,
4513 xb_bh,
Joel Beckered29c0c2008-11-26 15:08:44 -08004514 first,
4515 target,
Tao Ma01225592008-08-18 17:38:53 +08004516 &num_clusters,
4517 e_cpos,
Tao Ma78f30c32008-11-12 08:27:00 +08004518 &extend,
4519 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004520 if (ret) {
4521 mlog_errno(ret);
4522 goto out;
4523 }
4524 }
4525
Joel Becker92de1092008-11-25 17:06:40 -08004526 if (extend) {
Tao Ma01225592008-08-18 17:38:53 +08004527 ret = ocfs2_extend_xattr_bucket(inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004528 ctxt->handle,
Joel Beckered29c0c2008-11-26 15:08:44 -08004529 first,
4530 bucket_blkno(target),
Tao Ma01225592008-08-18 17:38:53 +08004531 num_clusters);
Joel Becker92de1092008-11-25 17:06:40 -08004532 if (ret)
4533 mlog_errno(ret);
4534 }
4535
Tao Ma01225592008-08-18 17:38:53 +08004536out:
Joel Becker92de1092008-11-25 17:06:40 -08004537 ocfs2_xattr_bucket_free(first);
Joel Beckered29c0c2008-11-26 15:08:44 -08004538
Tao Ma01225592008-08-18 17:38:53 +08004539 return ret;
4540}
4541
4542static inline char *ocfs2_xattr_bucket_get_val(struct inode *inode,
4543 struct ocfs2_xattr_bucket *bucket,
4544 int offs)
4545{
4546 int block_off = offs >> inode->i_sb->s_blocksize_bits;
4547
4548 offs = offs % inode->i_sb->s_blocksize;
Joel Becker51def392008-10-24 16:57:21 -07004549 return bucket_block(bucket, block_off) + offs;
Tao Ma01225592008-08-18 17:38:53 +08004550}
4551
4552/*
4553 * Handle the normal xattr set, including replace, delete and new.
Tao Ma01225592008-08-18 17:38:53 +08004554 *
4555 * Note: "local" indicates the real data's locality. So we can't
4556 * just its bucket locality by its length.
4557 */
4558static void ocfs2_xattr_set_entry_normal(struct inode *inode,
4559 struct ocfs2_xattr_info *xi,
4560 struct ocfs2_xattr_search *xs,
4561 u32 name_hash,
Tao Ma5a095612008-09-19 22:17:41 +08004562 int local)
Tao Ma01225592008-08-18 17:38:53 +08004563{
4564 struct ocfs2_xattr_entry *last, *xe;
4565 int name_len = strlen(xi->name);
4566 struct ocfs2_xattr_header *xh = xs->header;
4567 u16 count = le16_to_cpu(xh->xh_count), start;
4568 size_t blocksize = inode->i_sb->s_blocksize;
4569 char *val;
4570 size_t offs, size, new_size;
4571
4572 last = &xh->xh_entries[count];
4573 if (!xs->not_found) {
4574 xe = xs->here;
4575 offs = le16_to_cpu(xe->xe_name_offset);
4576 if (ocfs2_xattr_is_local(xe))
4577 size = OCFS2_XATTR_SIZE(name_len) +
4578 OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
4579 else
4580 size = OCFS2_XATTR_SIZE(name_len) +
4581 OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
4582
4583 /*
4584 * If the new value will be stored outside, xi->value has been
4585 * initalized as an empty ocfs2_xattr_value_root, and the same
4586 * goes with xi->value_len, so we can set new_size safely here.
4587 * See ocfs2_xattr_set_in_bucket.
4588 */
4589 new_size = OCFS2_XATTR_SIZE(name_len) +
4590 OCFS2_XATTR_SIZE(xi->value_len);
4591
4592 le16_add_cpu(&xh->xh_name_value_len, -size);
4593 if (xi->value) {
4594 if (new_size > size)
4595 goto set_new_name_value;
4596
4597 /* Now replace the old value with new one. */
4598 if (local)
4599 xe->xe_value_size = cpu_to_le64(xi->value_len);
4600 else
4601 xe->xe_value_size = 0;
4602
4603 val = ocfs2_xattr_bucket_get_val(inode,
Joel Beckerba937122008-10-24 19:13:20 -07004604 xs->bucket, offs);
Tao Ma01225592008-08-18 17:38:53 +08004605 memset(val + OCFS2_XATTR_SIZE(name_len), 0,
4606 size - OCFS2_XATTR_SIZE(name_len));
4607 if (OCFS2_XATTR_SIZE(xi->value_len) > 0)
4608 memcpy(val + OCFS2_XATTR_SIZE(name_len),
4609 xi->value, xi->value_len);
4610
4611 le16_add_cpu(&xh->xh_name_value_len, new_size);
4612 ocfs2_xattr_set_local(xe, local);
4613 return;
4614 } else {
Tao Ma5a095612008-09-19 22:17:41 +08004615 /*
4616 * Remove the old entry if there is more than one.
4617 * We don't remove the last entry so that we can
4618 * use it to indicate the hash value of the empty
4619 * bucket.
4620 */
Tao Ma01225592008-08-18 17:38:53 +08004621 last -= 1;
Tao Ma01225592008-08-18 17:38:53 +08004622 le16_add_cpu(&xh->xh_count, -1);
Tao Ma5a095612008-09-19 22:17:41 +08004623 if (xh->xh_count) {
4624 memmove(xe, xe + 1,
4625 (void *)last - (void *)xe);
4626 memset(last, 0,
4627 sizeof(struct ocfs2_xattr_entry));
4628 } else
4629 xh->xh_free_start =
4630 cpu_to_le16(OCFS2_XATTR_BUCKET_SIZE);
4631
Tao Ma01225592008-08-18 17:38:53 +08004632 return;
4633 }
4634 } else {
4635 /* find a new entry for insert. */
4636 int low = 0, high = count - 1, tmp;
4637 struct ocfs2_xattr_entry *tmp_xe;
4638
Tao Ma5a095612008-09-19 22:17:41 +08004639 while (low <= high && count) {
Tao Ma01225592008-08-18 17:38:53 +08004640 tmp = (low + high) / 2;
4641 tmp_xe = &xh->xh_entries[tmp];
4642
4643 if (name_hash > le32_to_cpu(tmp_xe->xe_name_hash))
4644 low = tmp + 1;
4645 else if (name_hash <
4646 le32_to_cpu(tmp_xe->xe_name_hash))
4647 high = tmp - 1;
Tao Ma06b240d2008-09-19 22:16:34 +08004648 else {
4649 low = tmp;
Tao Ma01225592008-08-18 17:38:53 +08004650 break;
Tao Ma06b240d2008-09-19 22:16:34 +08004651 }
Tao Ma01225592008-08-18 17:38:53 +08004652 }
4653
4654 xe = &xh->xh_entries[low];
4655 if (low != count)
4656 memmove(xe + 1, xe, (void *)last - (void *)xe);
4657
4658 le16_add_cpu(&xh->xh_count, 1);
4659 memset(xe, 0, sizeof(struct ocfs2_xattr_entry));
4660 xe->xe_name_hash = cpu_to_le32(name_hash);
4661 xe->xe_name_len = name_len;
4662 ocfs2_xattr_set_type(xe, xi->name_index);
4663 }
4664
4665set_new_name_value:
4666 /* Insert the new name+value. */
4667 size = OCFS2_XATTR_SIZE(name_len) + OCFS2_XATTR_SIZE(xi->value_len);
4668
4669 /*
4670 * We must make sure that the name/value pair
4671 * exists in the same block.
4672 */
4673 offs = le16_to_cpu(xh->xh_free_start);
4674 start = offs - size;
4675
4676 if (start >> inode->i_sb->s_blocksize_bits !=
4677 (offs - 1) >> inode->i_sb->s_blocksize_bits) {
4678 offs = offs - offs % blocksize;
4679 xh->xh_free_start = cpu_to_le16(offs);
4680 }
4681
Joel Beckerba937122008-10-24 19:13:20 -07004682 val = ocfs2_xattr_bucket_get_val(inode, xs->bucket, offs - size);
Tao Ma01225592008-08-18 17:38:53 +08004683 xe->xe_name_offset = cpu_to_le16(offs - size);
4684
4685 memset(val, 0, size);
4686 memcpy(val, xi->name, name_len);
4687 memcpy(val + OCFS2_XATTR_SIZE(name_len), xi->value, xi->value_len);
4688
4689 xe->xe_value_size = cpu_to_le64(xi->value_len);
4690 ocfs2_xattr_set_local(xe, local);
4691 xs->here = xe;
4692 le16_add_cpu(&xh->xh_free_start, -size);
4693 le16_add_cpu(&xh->xh_name_value_len, size);
4694
4695 return;
4696}
4697
Tao Ma01225592008-08-18 17:38:53 +08004698/*
4699 * Set the xattr entry in the specified bucket.
4700 * The bucket is indicated by xs->bucket and it should have the enough
4701 * space for the xattr insertion.
4702 */
4703static int ocfs2_xattr_set_entry_in_bucket(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004704 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004705 struct ocfs2_xattr_info *xi,
4706 struct ocfs2_xattr_search *xs,
4707 u32 name_hash,
Tao Ma5a095612008-09-19 22:17:41 +08004708 int local)
Tao Ma01225592008-08-18 17:38:53 +08004709{
Joel Becker1224be02008-10-24 18:47:33 -07004710 int ret;
Joel Becker02dbf382008-10-27 18:07:45 -07004711 u64 blkno;
Tao Ma01225592008-08-18 17:38:53 +08004712
Mark Fashehff1ec202008-08-19 10:54:29 -07004713 mlog(0, "Set xattr entry len = %lu index = %d in bucket %llu\n",
4714 (unsigned long)xi->value_len, xi->name_index,
Joel Beckerba937122008-10-24 19:13:20 -07004715 (unsigned long long)bucket_blkno(xs->bucket));
Tao Ma01225592008-08-18 17:38:53 +08004716
Joel Beckerba937122008-10-24 19:13:20 -07004717 if (!xs->bucket->bu_bhs[1]) {
Joel Becker02dbf382008-10-27 18:07:45 -07004718 blkno = bucket_blkno(xs->bucket);
4719 ocfs2_xattr_bucket_relse(xs->bucket);
4720 ret = ocfs2_read_xattr_bucket(xs->bucket, blkno);
Tao Ma01225592008-08-18 17:38:53 +08004721 if (ret) {
4722 mlog_errno(ret);
4723 goto out;
4724 }
4725 }
4726
Joel Beckerba937122008-10-24 19:13:20 -07004727 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
Joel Becker1224be02008-10-24 18:47:33 -07004728 OCFS2_JOURNAL_ACCESS_WRITE);
4729 if (ret < 0) {
4730 mlog_errno(ret);
4731 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004732 }
4733
Tao Ma5a095612008-09-19 22:17:41 +08004734 ocfs2_xattr_set_entry_normal(inode, xi, xs, name_hash, local);
Joel Beckerba937122008-10-24 19:13:20 -07004735 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004736
Tao Ma01225592008-08-18 17:38:53 +08004737out:
Tao Ma01225592008-08-18 17:38:53 +08004738 return ret;
4739}
4740
Tao Ma01225592008-08-18 17:38:53 +08004741/*
4742 * Truncate the specified xe_off entry in xattr bucket.
4743 * bucket is indicated by header_bh and len is the new length.
4744 * Both the ocfs2_xattr_value_root and the entry will be updated here.
4745 *
4746 * Copy the new updated xe and xe_value_root to new_xe and new_xv if needed.
4747 */
4748static int ocfs2_xattr_bucket_value_truncate(struct inode *inode,
Joel Becker548b0f22008-11-24 19:32:13 -08004749 struct ocfs2_xattr_bucket *bucket,
Tao Ma01225592008-08-18 17:38:53 +08004750 int xe_off,
Tao Ma78f30c32008-11-12 08:27:00 +08004751 int len,
4752 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004753{
4754 int ret, offset;
4755 u64 value_blk;
Tao Ma01225592008-08-18 17:38:53 +08004756 struct ocfs2_xattr_entry *xe;
Joel Becker548b0f22008-11-24 19:32:13 -08004757 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma01225592008-08-18 17:38:53 +08004758 size_t blocksize = inode->i_sb->s_blocksize;
Joel Beckerb3e5d372008-12-09 15:01:04 -08004759 struct ocfs2_xattr_value_buf vb = {
4760 .vb_access = ocfs2_journal_access,
4761 };
Tao Ma01225592008-08-18 17:38:53 +08004762
4763 xe = &xh->xh_entries[xe_off];
4764
4765 BUG_ON(!xe || ocfs2_xattr_is_local(xe));
4766
4767 offset = le16_to_cpu(xe->xe_name_offset) +
4768 OCFS2_XATTR_SIZE(xe->xe_name_len);
4769
4770 value_blk = offset / blocksize;
4771
4772 /* We don't allow ocfs2_xattr_value to be stored in different block. */
4773 BUG_ON(value_blk != (offset + OCFS2_XATTR_ROOT_SIZE - 1) / blocksize);
Tao Ma01225592008-08-18 17:38:53 +08004774
Joel Beckerb3e5d372008-12-09 15:01:04 -08004775 vb.vb_bh = bucket->bu_bhs[value_blk];
4776 BUG_ON(!vb.vb_bh);
Tao Ma01225592008-08-18 17:38:53 +08004777
Joel Beckerb3e5d372008-12-09 15:01:04 -08004778 vb.vb_xv = (struct ocfs2_xattr_value_root *)
4779 (vb.vb_bh->b_data + offset % blocksize);
Tao Ma01225592008-08-18 17:38:53 +08004780
Joel Becker548b0f22008-11-24 19:32:13 -08004781 /*
4782 * From here on out we have to dirty the bucket. The generic
4783 * value calls only modify one of the bucket's bhs, but we need
4784 * to send the bucket at once. So if they error, they *could* have
4785 * modified something. We have to assume they did, and dirty
4786 * the whole bucket. This leaves us in a consistent state.
4787 */
Tao Ma01225592008-08-18 17:38:53 +08004788 mlog(0, "truncate %u in xattr bucket %llu to %d bytes.\n",
Joel Becker548b0f22008-11-24 19:32:13 -08004789 xe_off, (unsigned long long)bucket_blkno(bucket), len);
Joel Beckerb3e5d372008-12-09 15:01:04 -08004790 ret = ocfs2_xattr_value_truncate(inode, &vb, len, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004791 if (ret) {
4792 mlog_errno(ret);
Tao Ma554e7f92009-01-08 08:21:43 +08004793 goto out;
4794 }
4795
4796 ret = ocfs2_xattr_bucket_journal_access(ctxt->handle, bucket,
4797 OCFS2_JOURNAL_ACCESS_WRITE);
4798 if (ret) {
4799 mlog_errno(ret);
4800 goto out;
Tao Ma01225592008-08-18 17:38:53 +08004801 }
4802
Joel Becker548b0f22008-11-24 19:32:13 -08004803 xe->xe_value_size = cpu_to_le64(len);
4804
Joel Becker548b0f22008-11-24 19:32:13 -08004805 ocfs2_xattr_bucket_journal_dirty(ctxt->handle, bucket);
Tao Ma01225592008-08-18 17:38:53 +08004806
4807out:
Tao Ma01225592008-08-18 17:38:53 +08004808 return ret;
4809}
4810
4811static int ocfs2_xattr_bucket_value_truncate_xs(struct inode *inode,
Tao Ma78f30c32008-11-12 08:27:00 +08004812 struct ocfs2_xattr_search *xs,
4813 int len,
4814 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08004815{
4816 int ret, offset;
4817 struct ocfs2_xattr_entry *xe = xs->here;
4818 struct ocfs2_xattr_header *xh = (struct ocfs2_xattr_header *)xs->base;
4819
Joel Beckerba937122008-10-24 19:13:20 -07004820 BUG_ON(!xs->bucket->bu_bhs[0] || !xe || ocfs2_xattr_is_local(xe));
Tao Ma01225592008-08-18 17:38:53 +08004821
4822 offset = xe - xh->xh_entries;
Joel Becker548b0f22008-11-24 19:32:13 -08004823 ret = ocfs2_xattr_bucket_value_truncate(inode, xs->bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08004824 offset, len, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08004825 if (ret)
4826 mlog_errno(ret);
4827
4828 return ret;
4829}
4830
4831static int ocfs2_xattr_bucket_set_value_outside(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004832 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004833 struct ocfs2_xattr_search *xs,
4834 char *val,
4835 int value_len)
4836{
Tao Ma712e53e2009-03-12 08:37:34 +08004837 int ret, offset, block_off;
Tao Ma01225592008-08-18 17:38:53 +08004838 struct ocfs2_xattr_value_root *xv;
4839 struct ocfs2_xattr_entry *xe = xs->here;
Tao Ma712e53e2009-03-12 08:37:34 +08004840 struct ocfs2_xattr_header *xh = bucket_xh(xs->bucket);
4841 void *base;
Tao Ma492a8a32009-08-18 11:43:17 +08004842 struct ocfs2_xattr_value_buf vb = {
4843 .vb_access = ocfs2_journal_access,
4844 };
Tao Ma01225592008-08-18 17:38:53 +08004845
4846 BUG_ON(!xs->base || !xe || ocfs2_xattr_is_local(xe));
4847
Tao Mafd68a892009-08-18 11:43:21 +08004848 ret = ocfs2_xattr_bucket_get_name_value(inode->i_sb, xh,
Tao Ma712e53e2009-03-12 08:37:34 +08004849 xe - xh->xh_entries,
4850 &block_off,
4851 &offset);
4852 if (ret) {
4853 mlog_errno(ret);
4854 goto out;
4855 }
Tao Ma01225592008-08-18 17:38:53 +08004856
Tao Ma712e53e2009-03-12 08:37:34 +08004857 base = bucket_block(xs->bucket, block_off);
4858 xv = (struct ocfs2_xattr_value_root *)(base + offset +
4859 OCFS2_XATTR_SIZE(xe->xe_name_len));
Tao Ma01225592008-08-18 17:38:53 +08004860
Tao Ma492a8a32009-08-18 11:43:17 +08004861 vb.vb_xv = xv;
4862 vb.vb_bh = xs->bucket->bu_bhs[block_off];
Tao Ma712e53e2009-03-12 08:37:34 +08004863 ret = __ocfs2_xattr_set_value_outside(inode, handle,
Tao Ma492a8a32009-08-18 11:43:17 +08004864 &vb, val, value_len);
Tao Ma712e53e2009-03-12 08:37:34 +08004865 if (ret)
4866 mlog_errno(ret);
4867out:
4868 return ret;
Tao Ma01225592008-08-18 17:38:53 +08004869}
4870
Tao Ma01225592008-08-18 17:38:53 +08004871static int ocfs2_rm_xattr_cluster(struct inode *inode,
4872 struct buffer_head *root_bh,
4873 u64 blkno,
4874 u32 cpos,
4875 u32 len)
4876{
4877 int ret;
4878 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
4879 struct inode *tl_inode = osb->osb_tl_inode;
4880 handle_t *handle;
4881 struct ocfs2_xattr_block *xb =
4882 (struct ocfs2_xattr_block *)root_bh->b_data;
Tao Ma01225592008-08-18 17:38:53 +08004883 struct ocfs2_alloc_context *meta_ac = NULL;
4884 struct ocfs2_cached_dealloc_ctxt dealloc;
Joel Beckerf99b9b72008-08-20 19:36:33 -07004885 struct ocfs2_extent_tree et;
4886
Joel Becker5e404e92009-02-13 03:54:22 -08004887 ocfs2_init_xattr_tree_extent_tree(&et, INODE_CACHE(inode), root_bh);
Tao Ma01225592008-08-18 17:38:53 +08004888
4889 ocfs2_init_dealloc_ctxt(&dealloc);
4890
4891 mlog(0, "rm xattr extent rec at %u len = %u, start from %llu\n",
4892 cpos, len, (unsigned long long)blkno);
4893
Joel Becker8cb471e2009-02-10 20:00:41 -08004894 ocfs2_remove_xattr_clusters_from_cache(INODE_CACHE(inode), blkno,
4895 len);
Tao Ma01225592008-08-18 17:38:53 +08004896
Joel Beckerf99b9b72008-08-20 19:36:33 -07004897 ret = ocfs2_lock_allocators(inode, &et, 0, 1, NULL, &meta_ac);
Tao Ma01225592008-08-18 17:38:53 +08004898 if (ret) {
4899 mlog_errno(ret);
4900 return ret;
4901 }
4902
4903 mutex_lock(&tl_inode->i_mutex);
4904
4905 if (ocfs2_truncate_log_needs_flush(osb)) {
4906 ret = __ocfs2_flush_truncate_log(osb);
4907 if (ret < 0) {
4908 mlog_errno(ret);
4909 goto out;
4910 }
4911 }
4912
Jan Karaa90714c2008-10-09 19:38:40 +02004913 handle = ocfs2_start_trans(osb, ocfs2_remove_extent_credits(osb->sb));
Tao Mad3264792008-10-24 07:57:28 +08004914 if (IS_ERR(handle)) {
Tao Ma01225592008-08-18 17:38:53 +08004915 ret = -ENOMEM;
4916 mlog_errno(ret);
4917 goto out;
4918 }
4919
Joel Becker0cf2f762009-02-12 16:41:25 -08004920 ret = ocfs2_journal_access_xb(handle, INODE_CACHE(inode), root_bh,
Joel Becker84008972008-12-09 16:11:49 -08004921 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004922 if (ret) {
4923 mlog_errno(ret);
4924 goto out_commit;
4925 }
4926
Joel Beckerdbdcf6a2009-02-13 03:41:26 -08004927 ret = ocfs2_remove_extent(handle, &et, cpos, len, meta_ac,
Joel Beckerf99b9b72008-08-20 19:36:33 -07004928 &dealloc);
Tao Ma01225592008-08-18 17:38:53 +08004929 if (ret) {
4930 mlog_errno(ret);
4931 goto out_commit;
4932 }
4933
4934 le32_add_cpu(&xb->xb_attrs.xb_root.xt_clusters, -len);
4935
4936 ret = ocfs2_journal_dirty(handle, root_bh);
4937 if (ret) {
4938 mlog_errno(ret);
4939 goto out_commit;
4940 }
4941
4942 ret = ocfs2_truncate_log_append(osb, handle, blkno, len);
4943 if (ret)
4944 mlog_errno(ret);
4945
4946out_commit:
4947 ocfs2_commit_trans(osb, handle);
4948out:
4949 ocfs2_schedule_truncate_log_flush(osb, 1);
4950
4951 mutex_unlock(&tl_inode->i_mutex);
4952
4953 if (meta_ac)
4954 ocfs2_free_alloc_context(meta_ac);
4955
4956 ocfs2_run_deallocs(osb, &dealloc);
4957
4958 return ret;
4959}
4960
Tao Ma01225592008-08-18 17:38:53 +08004961static void ocfs2_xattr_bucket_remove_xs(struct inode *inode,
Tao Ma85db90e2008-11-12 08:27:01 +08004962 handle_t *handle,
Tao Ma01225592008-08-18 17:38:53 +08004963 struct ocfs2_xattr_search *xs)
4964{
Joel Beckerba937122008-10-24 19:13:20 -07004965 struct ocfs2_xattr_header *xh = bucket_xh(xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004966 struct ocfs2_xattr_entry *last = &xh->xh_entries[
4967 le16_to_cpu(xh->xh_count) - 1];
4968 int ret = 0;
4969
Joel Beckerba937122008-10-24 19:13:20 -07004970 ret = ocfs2_xattr_bucket_journal_access(handle, xs->bucket,
Joel Becker1224be02008-10-24 18:47:33 -07004971 OCFS2_JOURNAL_ACCESS_WRITE);
Tao Ma01225592008-08-18 17:38:53 +08004972 if (ret) {
4973 mlog_errno(ret);
Tao Ma85db90e2008-11-12 08:27:01 +08004974 return;
Tao Ma01225592008-08-18 17:38:53 +08004975 }
4976
4977 /* Remove the old entry. */
4978 memmove(xs->here, xs->here + 1,
4979 (void *)last - (void *)xs->here);
4980 memset(last, 0, sizeof(struct ocfs2_xattr_entry));
4981 le16_add_cpu(&xh->xh_count, -1);
4982
Joel Beckerba937122008-10-24 19:13:20 -07004983 ocfs2_xattr_bucket_journal_dirty(handle, xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08004984}
4985
4986/*
4987 * Set the xattr name/value in the bucket specified in xs.
4988 *
4989 * As the new value in xi may be stored in the bucket or in an outside cluster,
4990 * we divide the whole process into 3 steps:
4991 * 1. insert name/value in the bucket(ocfs2_xattr_set_entry_in_bucket)
4992 * 2. truncate of the outside cluster(ocfs2_xattr_bucket_value_truncate_xs)
4993 * 3. Set the value to the outside cluster(ocfs2_xattr_bucket_set_value_outside)
4994 * 4. If the clusters for the new outside value can't be allocated, we need
4995 * to free the xattr we allocated in set.
4996 */
4997static int ocfs2_xattr_set_in_bucket(struct inode *inode,
4998 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08004999 struct ocfs2_xattr_search *xs,
5000 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08005001{
Tao Ma5a095612008-09-19 22:17:41 +08005002 int ret, local = 1;
Tao Ma01225592008-08-18 17:38:53 +08005003 size_t value_len;
5004 char *val = (char *)xi->value;
5005 struct ocfs2_xattr_entry *xe = xs->here;
Tao Ma2057e5c2008-10-09 23:06:13 +08005006 u32 name_hash = ocfs2_xattr_name_hash(inode, xi->name,
5007 strlen(xi->name));
Tao Ma01225592008-08-18 17:38:53 +08005008
5009 if (!xs->not_found && !ocfs2_xattr_is_local(xe)) {
5010 /*
5011 * We need to truncate the xattr storage first.
5012 *
5013 * If both the old and new value are stored to
5014 * outside block, we only need to truncate
5015 * the storage and then set the value outside.
5016 *
5017 * If the new value should be stored within block,
5018 * we should free all the outside block first and
5019 * the modification to the xattr block will be done
5020 * by following steps.
5021 */
5022 if (xi->value_len > OCFS2_XATTR_INLINE_SIZE)
5023 value_len = xi->value_len;
5024 else
5025 value_len = 0;
5026
5027 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
Tao Ma78f30c32008-11-12 08:27:00 +08005028 value_len,
5029 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08005030 if (ret)
5031 goto out;
5032
5033 if (value_len)
5034 goto set_value_outside;
5035 }
5036
5037 value_len = xi->value_len;
5038 /* So we have to handle the inside block change now. */
5039 if (value_len > OCFS2_XATTR_INLINE_SIZE) {
5040 /*
5041 * If the new value will be stored outside of block,
5042 * initalize a new empty value root and insert it first.
5043 */
5044 local = 0;
5045 xi->value = &def_xv;
5046 xi->value_len = OCFS2_XATTR_ROOT_SIZE;
5047 }
5048
Tao Ma85db90e2008-11-12 08:27:01 +08005049 ret = ocfs2_xattr_set_entry_in_bucket(inode, ctxt->handle, xi, xs,
5050 name_hash, local);
Tao Ma01225592008-08-18 17:38:53 +08005051 if (ret) {
5052 mlog_errno(ret);
5053 goto out;
5054 }
5055
Tao Ma5a095612008-09-19 22:17:41 +08005056 if (value_len <= OCFS2_XATTR_INLINE_SIZE)
5057 goto out;
Tao Ma01225592008-08-18 17:38:53 +08005058
Tao Ma5a095612008-09-19 22:17:41 +08005059 /* allocate the space now for the outside block storage. */
5060 ret = ocfs2_xattr_bucket_value_truncate_xs(inode, xs,
Tao Ma78f30c32008-11-12 08:27:00 +08005061 value_len, ctxt);
Tao Ma5a095612008-09-19 22:17:41 +08005062 if (ret) {
5063 mlog_errno(ret);
5064
5065 if (xs->not_found) {
5066 /*
5067 * We can't allocate enough clusters for outside
5068 * storage and we have allocated xattr already,
5069 * so need to remove it.
5070 */
Tao Ma85db90e2008-11-12 08:27:01 +08005071 ocfs2_xattr_bucket_remove_xs(inode, ctxt->handle, xs);
Tao Ma01225592008-08-18 17:38:53 +08005072 }
Tao Ma01225592008-08-18 17:38:53 +08005073 goto out;
5074 }
5075
5076set_value_outside:
Tao Ma85db90e2008-11-12 08:27:01 +08005077 ret = ocfs2_xattr_bucket_set_value_outside(inode, ctxt->handle,
5078 xs, val, value_len);
Tao Ma01225592008-08-18 17:38:53 +08005079out:
5080 return ret;
5081}
5082
Tao Ma80bcaf32008-10-27 06:06:24 +08005083/*
5084 * check whether the xattr bucket is filled up with the same hash value.
5085 * If we want to insert the xattr with the same hash, return -ENOSPC.
5086 * If we want to insert a xattr with different hash value, go ahead
5087 * and ocfs2_divide_xattr_bucket will handle this.
5088 */
Tao Ma01225592008-08-18 17:38:53 +08005089static int ocfs2_check_xattr_bucket_collision(struct inode *inode,
Tao Ma80bcaf32008-10-27 06:06:24 +08005090 struct ocfs2_xattr_bucket *bucket,
5091 const char *name)
Tao Ma01225592008-08-18 17:38:53 +08005092{
Joel Becker3e632942008-10-24 17:04:49 -07005093 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Ma80bcaf32008-10-27 06:06:24 +08005094 u32 name_hash = ocfs2_xattr_name_hash(inode, name, strlen(name));
5095
5096 if (name_hash != le32_to_cpu(xh->xh_entries[0].xe_name_hash))
5097 return 0;
Tao Ma01225592008-08-18 17:38:53 +08005098
5099 if (xh->xh_entries[le16_to_cpu(xh->xh_count) - 1].xe_name_hash ==
5100 xh->xh_entries[0].xe_name_hash) {
5101 mlog(ML_ERROR, "Too much hash collision in xattr bucket %llu, "
5102 "hash = %u\n",
Joel Becker9c7759a2008-10-24 16:21:03 -07005103 (unsigned long long)bucket_blkno(bucket),
Tao Ma01225592008-08-18 17:38:53 +08005104 le32_to_cpu(xh->xh_entries[0].xe_name_hash));
5105 return -ENOSPC;
5106 }
5107
5108 return 0;
5109}
5110
5111static int ocfs2_xattr_set_entry_index_block(struct inode *inode,
5112 struct ocfs2_xattr_info *xi,
Tao Ma78f30c32008-11-12 08:27:00 +08005113 struct ocfs2_xattr_search *xs,
5114 struct ocfs2_xattr_set_ctxt *ctxt)
Tao Ma01225592008-08-18 17:38:53 +08005115{
5116 struct ocfs2_xattr_header *xh;
5117 struct ocfs2_xattr_entry *xe;
5118 u16 count, header_size, xh_free_start;
Joel Becker6dde41d2008-10-24 17:16:48 -07005119 int free, max_free, need, old;
Tao Ma01225592008-08-18 17:38:53 +08005120 size_t value_size = 0, name_len = strlen(xi->name);
5121 size_t blocksize = inode->i_sb->s_blocksize;
5122 int ret, allocation = 0;
Tao Ma01225592008-08-18 17:38:53 +08005123
5124 mlog_entry("Set xattr %s in xattr index block\n", xi->name);
5125
5126try_again:
5127 xh = xs->header;
5128 count = le16_to_cpu(xh->xh_count);
5129 xh_free_start = le16_to_cpu(xh->xh_free_start);
5130 header_size = sizeof(struct ocfs2_xattr_header) +
5131 count * sizeof(struct ocfs2_xattr_entry);
Tiger Yang4442f512009-02-20 11:11:50 +08005132 max_free = OCFS2_XATTR_BUCKET_SIZE - header_size -
5133 le16_to_cpu(xh->xh_name_value_len) - OCFS2_XATTR_HEADER_GAP;
Tao Ma01225592008-08-18 17:38:53 +08005134
5135 mlog_bug_on_msg(header_size > blocksize, "bucket %llu has header size "
5136 "of %u which exceed block size\n",
Joel Beckerba937122008-10-24 19:13:20 -07005137 (unsigned long long)bucket_blkno(xs->bucket),
Tao Ma01225592008-08-18 17:38:53 +08005138 header_size);
5139
5140 if (xi->value && xi->value_len > OCFS2_XATTR_INLINE_SIZE)
5141 value_size = OCFS2_XATTR_ROOT_SIZE;
5142 else if (xi->value)
5143 value_size = OCFS2_XATTR_SIZE(xi->value_len);
5144
5145 if (xs->not_found)
5146 need = sizeof(struct ocfs2_xattr_entry) +
5147 OCFS2_XATTR_SIZE(name_len) + value_size;
5148 else {
5149 need = value_size + OCFS2_XATTR_SIZE(name_len);
5150
5151 /*
5152 * We only replace the old value if the new length is smaller
5153 * than the old one. Otherwise we will allocate new space in the
5154 * bucket to store it.
5155 */
5156 xe = xs->here;
5157 if (ocfs2_xattr_is_local(xe))
5158 old = OCFS2_XATTR_SIZE(le64_to_cpu(xe->xe_value_size));
5159 else
5160 old = OCFS2_XATTR_SIZE(OCFS2_XATTR_ROOT_SIZE);
5161
5162 if (old >= value_size)
5163 need = 0;
5164 }
5165
Tiger Yang4442f512009-02-20 11:11:50 +08005166 free = xh_free_start - header_size - OCFS2_XATTR_HEADER_GAP;
Tao Ma01225592008-08-18 17:38:53 +08005167 /*
5168 * We need to make sure the new name/value pair
5169 * can exist in the same block.
5170 */
5171 if (xh_free_start % blocksize < need)
5172 free -= xh_free_start % blocksize;
5173
5174 mlog(0, "xs->not_found = %d, in xattr bucket %llu: free = %d, "
5175 "need = %d, max_free = %d, xh_free_start = %u, xh_name_value_len ="
5176 " %u\n", xs->not_found,
Joel Beckerba937122008-10-24 19:13:20 -07005177 (unsigned long long)bucket_blkno(xs->bucket),
Tao Ma01225592008-08-18 17:38:53 +08005178 free, need, max_free, le16_to_cpu(xh->xh_free_start),
5179 le16_to_cpu(xh->xh_name_value_len));
5180
Tao Ma976331d2008-11-12 08:26:57 +08005181 if (free < need ||
5182 (xs->not_found &&
5183 count == ocfs2_xattr_max_xe_in_bucket(inode->i_sb))) {
Tao Ma01225592008-08-18 17:38:53 +08005184 if (need <= max_free &&
5185 count < ocfs2_xattr_max_xe_in_bucket(inode->i_sb)) {
5186 /*
5187 * We can create the space by defragment. Since only the
5188 * name/value will be moved, the xe shouldn't be changed
5189 * in xs.
5190 */
Tao Ma85db90e2008-11-12 08:27:01 +08005191 ret = ocfs2_defrag_xattr_bucket(inode, ctxt->handle,
5192 xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08005193 if (ret) {
5194 mlog_errno(ret);
5195 goto out;
5196 }
5197
5198 xh_free_start = le16_to_cpu(xh->xh_free_start);
Tiger Yang4442f512009-02-20 11:11:50 +08005199 free = xh_free_start - header_size
5200 - OCFS2_XATTR_HEADER_GAP;
Tao Ma01225592008-08-18 17:38:53 +08005201 if (xh_free_start % blocksize < need)
5202 free -= xh_free_start % blocksize;
5203
5204 if (free >= need)
5205 goto xattr_set;
5206
5207 mlog(0, "Can't get enough space for xattr insert by "
5208 "defragment. Need %u bytes, but we have %d, so "
5209 "allocate new bucket for it.\n", need, free);
5210 }
5211
5212 /*
5213 * We have to add new buckets or clusters and one
5214 * allocation should leave us enough space for insert.
5215 */
5216 BUG_ON(allocation);
5217
5218 /*
5219 * We do not allow for overlapping ranges between buckets. And
5220 * the maximum number of collisions we will allow for then is
5221 * one bucket's worth, so check it here whether we need to
5222 * add a new bucket for the insert.
5223 */
Tao Ma80bcaf32008-10-27 06:06:24 +08005224 ret = ocfs2_check_xattr_bucket_collision(inode,
Joel Beckerba937122008-10-24 19:13:20 -07005225 xs->bucket,
Tao Ma80bcaf32008-10-27 06:06:24 +08005226 xi->name);
Tao Ma01225592008-08-18 17:38:53 +08005227 if (ret) {
5228 mlog_errno(ret);
5229 goto out;
5230 }
5231
5232 ret = ocfs2_add_new_xattr_bucket(inode,
5233 xs->xattr_bh,
Joel Becker91f20332008-11-26 15:25:41 -08005234 xs->bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08005235 ctxt);
Tao Ma01225592008-08-18 17:38:53 +08005236 if (ret) {
5237 mlog_errno(ret);
5238 goto out;
5239 }
5240
Joel Becker91f20332008-11-26 15:25:41 -08005241 /*
5242 * ocfs2_add_new_xattr_bucket() will have updated
5243 * xs->bucket if it moved, but it will not have updated
5244 * any of the other search fields. Thus, we drop it and
5245 * re-search. Everything should be cached, so it'll be
5246 * quick.
5247 */
Joel Beckerba937122008-10-24 19:13:20 -07005248 ocfs2_xattr_bucket_relse(xs->bucket);
Tao Ma01225592008-08-18 17:38:53 +08005249 ret = ocfs2_xattr_index_block_find(inode, xs->xattr_bh,
5250 xi->name_index,
5251 xi->name, xs);
5252 if (ret && ret != -ENODATA)
5253 goto out;
5254 xs->not_found = ret;
5255 allocation = 1;
5256 goto try_again;
5257 }
5258
5259xattr_set:
Tao Ma78f30c32008-11-12 08:27:00 +08005260 ret = ocfs2_xattr_set_in_bucket(inode, xi, xs, ctxt);
Tao Ma01225592008-08-18 17:38:53 +08005261out:
5262 mlog_exit(ret);
5263 return ret;
5264}
Tao Maa3944252008-08-18 17:38:54 +08005265
5266static int ocfs2_delete_xattr_in_bucket(struct inode *inode,
5267 struct ocfs2_xattr_bucket *bucket,
5268 void *para)
5269{
5270 int ret = 0;
Joel Becker3e632942008-10-24 17:04:49 -07005271 struct ocfs2_xattr_header *xh = bucket_xh(bucket);
Tao Maa3944252008-08-18 17:38:54 +08005272 u16 i;
5273 struct ocfs2_xattr_entry *xe;
Tao Ma78f30c32008-11-12 08:27:00 +08005274 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5275 struct ocfs2_xattr_set_ctxt ctxt = {NULL, NULL,};
Joel Becker548b0f22008-11-24 19:32:13 -08005276 int credits = ocfs2_remove_extent_credits(osb->sb) +
5277 ocfs2_blocks_per_xattr_bucket(inode->i_sb);
5278
Tao Ma78f30c32008-11-12 08:27:00 +08005279
5280 ocfs2_init_dealloc_ctxt(&ctxt.dealloc);
Tao Maa3944252008-08-18 17:38:54 +08005281
5282 for (i = 0; i < le16_to_cpu(xh->xh_count); i++) {
5283 xe = &xh->xh_entries[i];
5284 if (ocfs2_xattr_is_local(xe))
5285 continue;
5286
Tao Ma88c3b062008-12-11 08:54:11 +08005287 ctxt.handle = ocfs2_start_trans(osb, credits);
5288 if (IS_ERR(ctxt.handle)) {
5289 ret = PTR_ERR(ctxt.handle);
5290 mlog_errno(ret);
5291 break;
5292 }
5293
Joel Becker548b0f22008-11-24 19:32:13 -08005294 ret = ocfs2_xattr_bucket_value_truncate(inode, bucket,
Tao Ma78f30c32008-11-12 08:27:00 +08005295 i, 0, &ctxt);
Tao Ma88c3b062008-12-11 08:54:11 +08005296
5297 ocfs2_commit_trans(osb, ctxt.handle);
Tao Maa3944252008-08-18 17:38:54 +08005298 if (ret) {
5299 mlog_errno(ret);
5300 break;
5301 }
5302 }
5303
Tao Ma78f30c32008-11-12 08:27:00 +08005304 ocfs2_schedule_truncate_log_flush(osb, 1);
5305 ocfs2_run_deallocs(osb, &ctxt.dealloc);
Tao Maa3944252008-08-18 17:38:54 +08005306 return ret;
5307}
5308
5309static int ocfs2_delete_xattr_index_block(struct inode *inode,
5310 struct buffer_head *xb_bh)
5311{
5312 struct ocfs2_xattr_block *xb =
5313 (struct ocfs2_xattr_block *)xb_bh->b_data;
5314 struct ocfs2_extent_list *el = &xb->xb_attrs.xb_root.xt_list;
5315 int ret = 0;
5316 u32 name_hash = UINT_MAX, e_cpos, num_clusters;
5317 u64 p_blkno;
5318
5319 if (le16_to_cpu(el->l_next_free_rec) == 0)
5320 return 0;
5321
5322 while (name_hash > 0) {
5323 ret = ocfs2_xattr_get_rec(inode, name_hash, &p_blkno,
5324 &e_cpos, &num_clusters, el);
5325 if (ret) {
5326 mlog_errno(ret);
5327 goto out;
5328 }
5329
5330 ret = ocfs2_iterate_xattr_buckets(inode, p_blkno, num_clusters,
5331 ocfs2_delete_xattr_in_bucket,
5332 NULL);
5333 if (ret) {
5334 mlog_errno(ret);
5335 goto out;
5336 }
5337
5338 ret = ocfs2_rm_xattr_cluster(inode, xb_bh,
5339 p_blkno, e_cpos, num_clusters);
5340 if (ret) {
5341 mlog_errno(ret);
5342 break;
5343 }
5344
5345 if (e_cpos == 0)
5346 break;
5347
5348 name_hash = e_cpos - 1;
5349 }
5350
5351out:
5352 return ret;
5353}
Mark Fasheh99219ae2008-10-07 14:52:59 -07005354
5355/*
Tao Ma492a8a32009-08-18 11:43:17 +08005356 * Whenever we modify a xattr value root in the bucket(e.g, CoW
5357 * or change the extent record flag), we need to recalculate
5358 * the metaecc for the whole bucket. So it is done here.
5359 *
5360 * Note:
5361 * We have to give the extra credits for the caller.
5362 */
5363static int ocfs2_xattr_bucket_post_refcount(struct inode *inode,
5364 handle_t *handle,
5365 void *para)
5366{
5367 int ret;
5368 struct ocfs2_xattr_bucket *bucket =
5369 (struct ocfs2_xattr_bucket *)para;
5370
5371 ret = ocfs2_xattr_bucket_journal_access(handle, bucket,
5372 OCFS2_JOURNAL_ACCESS_WRITE);
5373 if (ret) {
5374 mlog_errno(ret);
5375 return ret;
5376 }
5377
5378 ocfs2_xattr_bucket_journal_dirty(handle, bucket);
5379
5380 return 0;
5381}
5382
5383/*
5384 * Special action we need if the xattr value is refcounted.
5385 *
5386 * 1. If the xattr is refcounted, lock the tree.
5387 * 2. CoW the xattr if we are setting the new value and the value
5388 * will be stored outside.
5389 * 3. In other case, decrease_refcount will work for us, so just
5390 * lock the refcount tree, calculate the meta and credits is OK.
5391 *
5392 * We have to do CoW before ocfs2_init_xattr_set_ctxt since
5393 * currently CoW is a completed transaction, while this function
5394 * will also lock the allocators and let us deadlock. So we will
5395 * CoW the whole xattr value.
5396 */
5397static int ocfs2_prepare_refcount_xattr(struct inode *inode,
5398 struct ocfs2_dinode *di,
5399 struct ocfs2_xattr_info *xi,
5400 struct ocfs2_xattr_search *xis,
5401 struct ocfs2_xattr_search *xbs,
5402 struct ocfs2_refcount_tree **ref_tree,
5403 int *meta_add,
5404 int *credits)
5405{
5406 int ret = 0;
5407 struct ocfs2_xattr_block *xb;
5408 struct ocfs2_xattr_entry *xe;
5409 char *base;
5410 u32 p_cluster, num_clusters;
5411 unsigned int ext_flags;
5412 int name_offset, name_len;
5413 struct ocfs2_xattr_value_buf vb;
5414 struct ocfs2_xattr_bucket *bucket = NULL;
5415 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5416 struct ocfs2_post_refcount refcount;
5417 struct ocfs2_post_refcount *p = NULL;
5418 struct buffer_head *ref_root_bh = NULL;
5419
5420 if (!xis->not_found) {
5421 xe = xis->here;
5422 name_offset = le16_to_cpu(xe->xe_name_offset);
5423 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
5424 base = xis->base;
5425 vb.vb_bh = xis->inode_bh;
5426 vb.vb_access = ocfs2_journal_access_di;
5427 } else {
5428 int i, block_off = 0;
5429 xb = (struct ocfs2_xattr_block *)xbs->xattr_bh->b_data;
5430 xe = xbs->here;
5431 name_offset = le16_to_cpu(xe->xe_name_offset);
5432 name_len = OCFS2_XATTR_SIZE(xe->xe_name_len);
5433 i = xbs->here - xbs->header->xh_entries;
5434
5435 if (le16_to_cpu(xb->xb_flags) & OCFS2_XATTR_INDEXED) {
Tao Mafd68a892009-08-18 11:43:21 +08005436 ret = ocfs2_xattr_bucket_get_name_value(inode->i_sb,
Tao Ma492a8a32009-08-18 11:43:17 +08005437 bucket_xh(xbs->bucket),
5438 i, &block_off,
5439 &name_offset);
5440 if (ret) {
5441 mlog_errno(ret);
5442 goto out;
5443 }
5444 base = bucket_block(xbs->bucket, block_off);
5445 vb.vb_bh = xbs->bucket->bu_bhs[block_off];
5446 vb.vb_access = ocfs2_journal_access;
5447
5448 if (ocfs2_meta_ecc(osb)) {
5449 /*create parameters for ocfs2_post_refcount. */
5450 bucket = xbs->bucket;
5451 refcount.credits = bucket->bu_blocks;
5452 refcount.para = bucket;
5453 refcount.func =
5454 ocfs2_xattr_bucket_post_refcount;
5455 p = &refcount;
5456 }
5457 } else {
5458 base = xbs->base;
5459 vb.vb_bh = xbs->xattr_bh;
5460 vb.vb_access = ocfs2_journal_access_xb;
5461 }
5462 }
5463
5464 if (ocfs2_xattr_is_local(xe))
5465 goto out;
5466
5467 vb.vb_xv = (struct ocfs2_xattr_value_root *)
5468 (base + name_offset + name_len);
5469
5470 ret = ocfs2_xattr_get_clusters(inode, 0, &p_cluster,
5471 &num_clusters, &vb.vb_xv->xr_list,
5472 &ext_flags);
5473 if (ret) {
5474 mlog_errno(ret);
5475 goto out;
5476 }
5477
5478 /*
5479 * We just need to check the 1st extent record, since we always
5480 * CoW the whole xattr. So there shouldn't be a xattr with
5481 * some REFCOUNT extent recs after the 1st one.
5482 */
5483 if (!(ext_flags & OCFS2_EXT_REFCOUNTED))
5484 goto out;
5485
5486 ret = ocfs2_lock_refcount_tree(osb, le64_to_cpu(di->i_refcount_loc),
5487 1, ref_tree, &ref_root_bh);
5488 if (ret) {
5489 mlog_errno(ret);
5490 goto out;
5491 }
5492
5493 /*
5494 * If we are deleting the xattr or the new size will be stored inside,
5495 * cool, leave it there, the xattr truncate process will remove them
5496 * for us(it still needs the refcount tree lock and the meta, credits).
5497 * And the worse case is that every cluster truncate will split the
5498 * refcount tree, and make the original extent become 3. So we will need
5499 * 2 * cluster more extent recs at most.
5500 */
5501 if (!xi->value || xi->value_len <= OCFS2_XATTR_INLINE_SIZE) {
5502
5503 ret = ocfs2_refcounted_xattr_delete_need(inode,
5504 &(*ref_tree)->rf_ci,
5505 ref_root_bh, vb.vb_xv,
5506 meta_add, credits);
5507 if (ret)
5508 mlog_errno(ret);
5509 goto out;
5510 }
5511
5512 ret = ocfs2_refcount_cow_xattr(inode, di, &vb,
5513 *ref_tree, ref_root_bh, 0,
5514 le32_to_cpu(vb.vb_xv->xr_clusters), p);
5515 if (ret)
5516 mlog_errno(ret);
5517
5518out:
5519 brelse(ref_root_bh);
5520 return ret;
5521}
5522
5523/*
Tiger Yang923f7f32008-11-14 11:16:27 +08005524 * 'security' attributes support
5525 */
5526static size_t ocfs2_xattr_security_list(struct inode *inode, char *list,
5527 size_t list_size, const char *name,
5528 size_t name_len)
5529{
5530 const size_t prefix_len = XATTR_SECURITY_PREFIX_LEN;
5531 const size_t total_len = prefix_len + name_len + 1;
5532
5533 if (list && total_len <= list_size) {
5534 memcpy(list, XATTR_SECURITY_PREFIX, prefix_len);
5535 memcpy(list + prefix_len, name, name_len);
5536 list[prefix_len + name_len] = '\0';
5537 }
5538 return total_len;
5539}
5540
5541static int ocfs2_xattr_security_get(struct inode *inode, const char *name,
5542 void *buffer, size_t size)
5543{
5544 if (strcmp(name, "") == 0)
5545 return -EINVAL;
5546 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_SECURITY, name,
5547 buffer, size);
5548}
5549
5550static int ocfs2_xattr_security_set(struct inode *inode, const char *name,
5551 const void *value, size_t size, int flags)
5552{
5553 if (strcmp(name, "") == 0)
5554 return -EINVAL;
5555
5556 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_SECURITY, name, value,
5557 size, flags);
5558}
5559
Tiger Yang534eadd2008-11-14 11:16:41 +08005560int ocfs2_init_security_get(struct inode *inode,
5561 struct inode *dir,
5562 struct ocfs2_security_xattr_info *si)
5563{
Tiger Yang38d59ef2008-12-17 10:22:56 +08005564 /* check whether ocfs2 support feature xattr */
5565 if (!ocfs2_supports_xattr(OCFS2_SB(dir->i_sb)))
5566 return -EOPNOTSUPP;
Tiger Yang534eadd2008-11-14 11:16:41 +08005567 return security_inode_init_security(inode, dir, &si->name, &si->value,
5568 &si->value_len);
5569}
5570
5571int ocfs2_init_security_set(handle_t *handle,
5572 struct inode *inode,
5573 struct buffer_head *di_bh,
5574 struct ocfs2_security_xattr_info *si,
5575 struct ocfs2_alloc_context *xattr_ac,
5576 struct ocfs2_alloc_context *data_ac)
5577{
5578 return ocfs2_xattr_set_handle(handle, inode, di_bh,
5579 OCFS2_XATTR_INDEX_SECURITY,
5580 si->name, si->value, si->value_len, 0,
5581 xattr_ac, data_ac);
5582}
5583
Tiger Yang923f7f32008-11-14 11:16:27 +08005584struct xattr_handler ocfs2_xattr_security_handler = {
5585 .prefix = XATTR_SECURITY_PREFIX,
5586 .list = ocfs2_xattr_security_list,
5587 .get = ocfs2_xattr_security_get,
5588 .set = ocfs2_xattr_security_set,
5589};
5590
5591/*
Mark Fasheh99219ae2008-10-07 14:52:59 -07005592 * 'trusted' attributes support
5593 */
Mark Fasheh99219ae2008-10-07 14:52:59 -07005594static size_t ocfs2_xattr_trusted_list(struct inode *inode, char *list,
5595 size_t list_size, const char *name,
5596 size_t name_len)
5597{
Tiger Yangceb1eba2008-10-23 16:34:13 +08005598 const size_t prefix_len = XATTR_TRUSTED_PREFIX_LEN;
Mark Fasheh99219ae2008-10-07 14:52:59 -07005599 const size_t total_len = prefix_len + name_len + 1;
5600
5601 if (list && total_len <= list_size) {
5602 memcpy(list, XATTR_TRUSTED_PREFIX, prefix_len);
5603 memcpy(list + prefix_len, name, name_len);
5604 list[prefix_len + name_len] = '\0';
5605 }
5606 return total_len;
5607}
5608
5609static int ocfs2_xattr_trusted_get(struct inode *inode, const char *name,
5610 void *buffer, size_t size)
5611{
5612 if (strcmp(name, "") == 0)
5613 return -EINVAL;
5614 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_TRUSTED, name,
5615 buffer, size);
5616}
5617
5618static int ocfs2_xattr_trusted_set(struct inode *inode, const char *name,
5619 const void *value, size_t size, int flags)
5620{
5621 if (strcmp(name, "") == 0)
5622 return -EINVAL;
5623
5624 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_TRUSTED, name, value,
5625 size, flags);
5626}
5627
5628struct xattr_handler ocfs2_xattr_trusted_handler = {
5629 .prefix = XATTR_TRUSTED_PREFIX,
5630 .list = ocfs2_xattr_trusted_list,
5631 .get = ocfs2_xattr_trusted_get,
5632 .set = ocfs2_xattr_trusted_set,
5633};
5634
Mark Fasheh99219ae2008-10-07 14:52:59 -07005635/*
5636 * 'user' attributes support
5637 */
Mark Fasheh99219ae2008-10-07 14:52:59 -07005638static size_t ocfs2_xattr_user_list(struct inode *inode, char *list,
5639 size_t list_size, const char *name,
5640 size_t name_len)
5641{
Tiger Yangceb1eba2008-10-23 16:34:13 +08005642 const size_t prefix_len = XATTR_USER_PREFIX_LEN;
Mark Fasheh99219ae2008-10-07 14:52:59 -07005643 const size_t total_len = prefix_len + name_len + 1;
5644 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5645
5646 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5647 return 0;
5648
5649 if (list && total_len <= list_size) {
5650 memcpy(list, XATTR_USER_PREFIX, prefix_len);
5651 memcpy(list + prefix_len, name, name_len);
5652 list[prefix_len + name_len] = '\0';
5653 }
5654 return total_len;
5655}
5656
5657static int ocfs2_xattr_user_get(struct inode *inode, const char *name,
5658 void *buffer, size_t size)
5659{
5660 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5661
5662 if (strcmp(name, "") == 0)
5663 return -EINVAL;
5664 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5665 return -EOPNOTSUPP;
5666 return ocfs2_xattr_get(inode, OCFS2_XATTR_INDEX_USER, name,
5667 buffer, size);
5668}
5669
5670static int ocfs2_xattr_user_set(struct inode *inode, const char *name,
5671 const void *value, size_t size, int flags)
5672{
5673 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
5674
5675 if (strcmp(name, "") == 0)
5676 return -EINVAL;
5677 if (osb->s_mount_opt & OCFS2_MOUNT_NOUSERXATTR)
5678 return -EOPNOTSUPP;
5679
5680 return ocfs2_xattr_set(inode, OCFS2_XATTR_INDEX_USER, name, value,
5681 size, flags);
5682}
5683
5684struct xattr_handler ocfs2_xattr_user_handler = {
5685 .prefix = XATTR_USER_PREFIX,
5686 .list = ocfs2_xattr_user_list,
5687 .get = ocfs2_xattr_user_get,
5688 .set = ocfs2_xattr_user_set,
5689};