blob: 1bff752d1b596616548ed00e9939542739f2ddbb [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/xattr.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
5 *
6 * Fix by Harrison Xing <harrison@mountainviewdata.com>.
Mingming Cao617ba132006-10-11 01:20:53 -07007 * Ext4 code with a lot of help from Eric Jarman <ejarman@acm.org>.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07008 * Extended attributes for symlinks and special files added per
9 * suggestion of Luka Renko <luka.renko@hermes.si>.
10 * xattr consolidation Copyright (c) 2004 James Morris <jmorris@redhat.com>,
11 * Red Hat Inc.
12 * ea-in-inode support by Alex Tomas <alex@clusterfs.com> aka bzzz
13 * and Andreas Gruenbacher <agruen@suse.de>.
14 */
15
16/*
17 * Extended attributes are stored directly in inodes (on file systems with
18 * inodes bigger than 128 bytes) and on additional disk blocks. The i_file_acl
19 * field contains the block number if an inode uses an additional block. All
20 * attributes must fit in the inode and one additional block. Blocks that
21 * contain the identical set of attributes may be shared among several inodes.
22 * Identical blocks are detected by keeping a cache of blocks that have
23 * recently been accessed.
24 *
25 * The attributes in inodes and on blocks have a different header; the entries
26 * are stored in the same format:
27 *
28 * +------------------+
29 * | header |
30 * | entry 1 | |
31 * | entry 2 | | growing downwards
32 * | entry 3 | v
33 * | four null bytes |
34 * | . . . |
35 * | value 1 | ^
36 * | value 3 | | growing upwards
37 * | value 2 | |
38 * +------------------+
39 *
40 * The header is followed by multiple entry descriptors. In disk blocks, the
41 * entry descriptors are kept sorted. In inodes, they are unsorted. The
42 * attribute values are aligned to the end of the block in no specific order.
43 *
44 * Locking strategy
45 * ----------------
Mingming Cao617ba132006-10-11 01:20:53 -070046 * EXT4_I(inode)->i_file_acl is protected by EXT4_I(inode)->xattr_sem.
Dave Kleikampac27a0e2006-10-11 01:20:50 -070047 * EA blocks are only changed if they are exclusive to an inode, so
48 * holding xattr_sem also means that nothing but the EA block's reference
49 * count can change. Multiple writers to the same block are synchronized
50 * by the buffer lock.
51 */
52
53#include <linux/init.h>
54#include <linux/fs.h>
55#include <linux/slab.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070056#include <linux/mbcache.h>
57#include <linux/quotaops.h>
58#include <linux/rwsem.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040059#include "ext4_jbd2.h"
60#include "ext4.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070061#include "xattr.h"
62#include "acl.h"
63
Mingming Cao617ba132006-10-11 01:20:53 -070064#define BHDR(bh) ((struct ext4_xattr_header *)((bh)->b_data))
65#define ENTRY(ptr) ((struct ext4_xattr_entry *)(ptr))
Dave Kleikampac27a0e2006-10-11 01:20:50 -070066#define BFIRST(bh) ENTRY(BHDR(bh)+1)
67#define IS_LAST_ENTRY(entry) (*(__u32 *)(entry) == 0)
68
Mingming Cao617ba132006-10-11 01:20:53 -070069#ifdef EXT4_XATTR_DEBUG
Dave Kleikampac27a0e2006-10-11 01:20:50 -070070# define ea_idebug(inode, f...) do { \
71 printk(KERN_DEBUG "inode %s:%lu: ", \
72 inode->i_sb->s_id, inode->i_ino); \
73 printk(f); \
74 printk("\n"); \
75 } while (0)
76# define ea_bdebug(bh, f...) do { \
77 char b[BDEVNAME_SIZE]; \
78 printk(KERN_DEBUG "block %s:%lu: ", \
79 bdevname(bh->b_bdev, b), \
80 (unsigned long) bh->b_blocknr); \
81 printk(f); \
82 printk("\n"); \
83 } while (0)
84#else
85# define ea_idebug(f...)
86# define ea_bdebug(f...)
87#endif
88
Mingming Cao617ba132006-10-11 01:20:53 -070089static void ext4_xattr_cache_insert(struct buffer_head *);
90static struct buffer_head *ext4_xattr_cache_find(struct inode *,
91 struct ext4_xattr_header *,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070092 struct mb_cache_entry **);
Mingming Cao617ba132006-10-11 01:20:53 -070093static void ext4_xattr_rehash(struct ext4_xattr_header *,
94 struct ext4_xattr_entry *);
Christoph Hellwig431547b2009-11-13 09:52:56 +000095static int ext4_xattr_list(struct dentry *dentry, char *buffer,
Mingming Caod3a95d42008-04-17 10:38:59 -040096 size_t buffer_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070097
Mingming Cao617ba132006-10-11 01:20:53 -070098static struct mb_cache *ext4_xattr_cache;
Dave Kleikampac27a0e2006-10-11 01:20:50 -070099
Stephen Hemminger11e27522010-05-13 17:53:18 -0700100static const struct xattr_handler *ext4_xattr_handler_map[] = {
Mingming Cao617ba132006-10-11 01:20:53 -0700101 [EXT4_XATTR_INDEX_USER] = &ext4_xattr_user_handler,
Theodore Ts'o03010a32008-10-10 20:02:48 -0400102#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700103 [EXT4_XATTR_INDEX_POSIX_ACL_ACCESS] = &ext4_xattr_acl_access_handler,
104 [EXT4_XATTR_INDEX_POSIX_ACL_DEFAULT] = &ext4_xattr_acl_default_handler,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700105#endif
Mingming Cao617ba132006-10-11 01:20:53 -0700106 [EXT4_XATTR_INDEX_TRUSTED] = &ext4_xattr_trusted_handler,
Theodore Ts'o03010a32008-10-10 20:02:48 -0400107#ifdef CONFIG_EXT4_FS_SECURITY
Mingming Cao617ba132006-10-11 01:20:53 -0700108 [EXT4_XATTR_INDEX_SECURITY] = &ext4_xattr_security_handler,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700109#endif
110};
111
Stephen Hemminger11e27522010-05-13 17:53:18 -0700112const struct xattr_handler *ext4_xattr_handlers[] = {
Mingming Cao617ba132006-10-11 01:20:53 -0700113 &ext4_xattr_user_handler,
114 &ext4_xattr_trusted_handler,
Theodore Ts'o03010a32008-10-10 20:02:48 -0400115#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700116 &ext4_xattr_acl_access_handler,
117 &ext4_xattr_acl_default_handler,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700118#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400119#ifdef CONFIG_EXT4_FS_SECURITY
Mingming Cao617ba132006-10-11 01:20:53 -0700120 &ext4_xattr_security_handler,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700121#endif
122 NULL
123};
124
Stephen Hemminger11e27522010-05-13 17:53:18 -0700125static inline const struct xattr_handler *
Mingming Cao617ba132006-10-11 01:20:53 -0700126ext4_xattr_handler(int name_index)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700127{
Stephen Hemminger11e27522010-05-13 17:53:18 -0700128 const struct xattr_handler *handler = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700129
Mingming Cao617ba132006-10-11 01:20:53 -0700130 if (name_index > 0 && name_index < ARRAY_SIZE(ext4_xattr_handler_map))
131 handler = ext4_xattr_handler_map[name_index];
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700132 return handler;
133}
134
135/*
136 * Inode operation listxattr()
137 *
138 * dentry->d_inode->i_mutex: don't care
139 */
140ssize_t
Mingming Cao617ba132006-10-11 01:20:53 -0700141ext4_listxattr(struct dentry *dentry, char *buffer, size_t size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700142{
Christoph Hellwig431547b2009-11-13 09:52:56 +0000143 return ext4_xattr_list(dentry, buffer, size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700144}
145
146static int
Mingming Cao617ba132006-10-11 01:20:53 -0700147ext4_xattr_check_names(struct ext4_xattr_entry *entry, void *end)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700148{
149 while (!IS_LAST_ENTRY(entry)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700150 struct ext4_xattr_entry *next = EXT4_XATTR_NEXT(entry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700151 if ((void *)next >= end)
152 return -EIO;
153 entry = next;
154 }
155 return 0;
156}
157
158static inline int
Mingming Cao617ba132006-10-11 01:20:53 -0700159ext4_xattr_check_block(struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700160{
Mingming Cao617ba132006-10-11 01:20:53 -0700161 if (BHDR(bh)->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700162 BHDR(bh)->h_blocks != cpu_to_le32(1))
163 return -EIO;
Zheng Liuf1b3a2a2012-02-20 17:53:05 -0500164 return ext4_xattr_check_names(BFIRST(bh), bh->b_data + bh->b_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700165}
166
167static inline int
Mingming Cao617ba132006-10-11 01:20:53 -0700168ext4_xattr_check_entry(struct ext4_xattr_entry *entry, size_t size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700169{
170 size_t value_size = le32_to_cpu(entry->e_value_size);
171
172 if (entry->e_value_block != 0 || value_size > size ||
173 le16_to_cpu(entry->e_value_offs) + value_size > size)
174 return -EIO;
175 return 0;
176}
177
178static int
Mingming Cao617ba132006-10-11 01:20:53 -0700179ext4_xattr_find_entry(struct ext4_xattr_entry **pentry, int name_index,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700180 const char *name, size_t size, int sorted)
181{
Mingming Cao617ba132006-10-11 01:20:53 -0700182 struct ext4_xattr_entry *entry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700183 size_t name_len;
184 int cmp = 1;
185
186 if (name == NULL)
187 return -EINVAL;
188 name_len = strlen(name);
189 entry = *pentry;
Mingming Cao617ba132006-10-11 01:20:53 -0700190 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700191 cmp = name_index - entry->e_name_index;
192 if (!cmp)
193 cmp = name_len - entry->e_name_len;
194 if (!cmp)
195 cmp = memcmp(name, entry->e_name, name_len);
196 if (cmp <= 0 && (sorted || cmp == 0))
197 break;
198 }
199 *pentry = entry;
Mingming Cao617ba132006-10-11 01:20:53 -0700200 if (!cmp && ext4_xattr_check_entry(entry, size))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700201 return -EIO;
202 return cmp ? -ENODATA : 0;
203}
204
205static int
Mingming Cao617ba132006-10-11 01:20:53 -0700206ext4_xattr_block_get(struct inode *inode, int name_index, const char *name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700207 void *buffer, size_t buffer_size)
208{
209 struct buffer_head *bh = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -0700210 struct ext4_xattr_entry *entry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700211 size_t size;
212 int error;
213
214 ea_idebug(inode, "name=%d.%s, buffer=%p, buffer_size=%ld",
215 name_index, name, buffer, (long)buffer_size);
216
217 error = -ENODATA;
Mingming Cao617ba132006-10-11 01:20:53 -0700218 if (!EXT4_I(inode)->i_file_acl)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700219 goto cleanup;
Mingming Cao617ba132006-10-11 01:20:53 -0700220 ea_idebug(inode, "reading block %u", EXT4_I(inode)->i_file_acl);
221 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700222 if (!bh)
223 goto cleanup;
224 ea_bdebug(bh, "b_count=%d, refcount=%d",
225 atomic_read(&(bh->b_count)), le32_to_cpu(BHDR(bh)->h_refcount));
Mingming Cao617ba132006-10-11 01:20:53 -0700226 if (ext4_xattr_check_block(bh)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500227bad_block:
Theodore Ts'o24676da2010-05-16 21:00:00 -0400228 EXT4_ERROR_INODE(inode, "bad block %llu",
229 EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700230 error = -EIO;
231 goto cleanup;
232 }
Mingming Cao617ba132006-10-11 01:20:53 -0700233 ext4_xattr_cache_insert(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700234 entry = BFIRST(bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700235 error = ext4_xattr_find_entry(&entry, name_index, name, bh->b_size, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700236 if (error == -EIO)
237 goto bad_block;
238 if (error)
239 goto cleanup;
240 size = le32_to_cpu(entry->e_value_size);
241 if (buffer) {
242 error = -ERANGE;
243 if (size > buffer_size)
244 goto cleanup;
245 memcpy(buffer, bh->b_data + le16_to_cpu(entry->e_value_offs),
246 size);
247 }
248 error = size;
249
250cleanup:
251 brelse(bh);
252 return error;
253}
254
255static int
Mingming Cao617ba132006-10-11 01:20:53 -0700256ext4_xattr_ibody_get(struct inode *inode, int name_index, const char *name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700257 void *buffer, size_t buffer_size)
258{
Mingming Cao617ba132006-10-11 01:20:53 -0700259 struct ext4_xattr_ibody_header *header;
260 struct ext4_xattr_entry *entry;
261 struct ext4_inode *raw_inode;
262 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700263 size_t size;
264 void *end;
265 int error;
266
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500267 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700268 return -ENODATA;
Mingming Cao617ba132006-10-11 01:20:53 -0700269 error = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700270 if (error)
271 return error;
Mingming Cao617ba132006-10-11 01:20:53 -0700272 raw_inode = ext4_raw_inode(&iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700273 header = IHDR(inode, raw_inode);
274 entry = IFIRST(header);
Mingming Cao617ba132006-10-11 01:20:53 -0700275 end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
276 error = ext4_xattr_check_names(entry, end);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700277 if (error)
278 goto cleanup;
Mingming Cao617ba132006-10-11 01:20:53 -0700279 error = ext4_xattr_find_entry(&entry, name_index, name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700280 end - (void *)entry, 0);
281 if (error)
282 goto cleanup;
283 size = le32_to_cpu(entry->e_value_size);
284 if (buffer) {
285 error = -ERANGE;
286 if (size > buffer_size)
287 goto cleanup;
288 memcpy(buffer, (void *)IFIRST(header) +
289 le16_to_cpu(entry->e_value_offs), size);
290 }
291 error = size;
292
293cleanup:
294 brelse(iloc.bh);
295 return error;
296}
297
298/*
Mingming Cao617ba132006-10-11 01:20:53 -0700299 * ext4_xattr_get()
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700300 *
301 * Copy an extended attribute into the buffer
302 * provided, or compute the buffer size required.
303 * Buffer is NULL to compute the size of the buffer required.
304 *
305 * Returns a negative error number on failure, or the number of bytes
306 * used / required on success.
307 */
308int
Mingming Cao617ba132006-10-11 01:20:53 -0700309ext4_xattr_get(struct inode *inode, int name_index, const char *name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700310 void *buffer, size_t buffer_size)
311{
312 int error;
313
Mingming Cao617ba132006-10-11 01:20:53 -0700314 down_read(&EXT4_I(inode)->xattr_sem);
315 error = ext4_xattr_ibody_get(inode, name_index, name, buffer,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700316 buffer_size);
317 if (error == -ENODATA)
Mingming Cao617ba132006-10-11 01:20:53 -0700318 error = ext4_xattr_block_get(inode, name_index, name, buffer,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700319 buffer_size);
Mingming Cao617ba132006-10-11 01:20:53 -0700320 up_read(&EXT4_I(inode)->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700321 return error;
322}
323
324static int
Christoph Hellwig431547b2009-11-13 09:52:56 +0000325ext4_xattr_list_entries(struct dentry *dentry, struct ext4_xattr_entry *entry,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700326 char *buffer, size_t buffer_size)
327{
328 size_t rest = buffer_size;
329
Mingming Cao617ba132006-10-11 01:20:53 -0700330 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
Stephen Hemminger11e27522010-05-13 17:53:18 -0700331 const struct xattr_handler *handler =
Mingming Cao617ba132006-10-11 01:20:53 -0700332 ext4_xattr_handler(entry->e_name_index);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700333
334 if (handler) {
Christoph Hellwig431547b2009-11-13 09:52:56 +0000335 size_t size = handler->list(dentry, buffer, rest,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700336 entry->e_name,
Christoph Hellwig431547b2009-11-13 09:52:56 +0000337 entry->e_name_len,
338 handler->flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700339 if (buffer) {
340 if (size > rest)
341 return -ERANGE;
342 buffer += size;
343 }
344 rest -= size;
345 }
346 }
347 return buffer_size - rest;
348}
349
350static int
Christoph Hellwig431547b2009-11-13 09:52:56 +0000351ext4_xattr_block_list(struct dentry *dentry, char *buffer, size_t buffer_size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700352{
Christoph Hellwig431547b2009-11-13 09:52:56 +0000353 struct inode *inode = dentry->d_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700354 struct buffer_head *bh = NULL;
355 int error;
356
357 ea_idebug(inode, "buffer=%p, buffer_size=%ld",
358 buffer, (long)buffer_size);
359
360 error = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700361 if (!EXT4_I(inode)->i_file_acl)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700362 goto cleanup;
Mingming Cao617ba132006-10-11 01:20:53 -0700363 ea_idebug(inode, "reading block %u", EXT4_I(inode)->i_file_acl);
364 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700365 error = -EIO;
366 if (!bh)
367 goto cleanup;
368 ea_bdebug(bh, "b_count=%d, refcount=%d",
369 atomic_read(&(bh->b_count)), le32_to_cpu(BHDR(bh)->h_refcount));
Mingming Cao617ba132006-10-11 01:20:53 -0700370 if (ext4_xattr_check_block(bh)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -0400371 EXT4_ERROR_INODE(inode, "bad block %llu",
372 EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700373 error = -EIO;
374 goto cleanup;
375 }
Mingming Cao617ba132006-10-11 01:20:53 -0700376 ext4_xattr_cache_insert(bh);
Christoph Hellwig431547b2009-11-13 09:52:56 +0000377 error = ext4_xattr_list_entries(dentry, BFIRST(bh), buffer, buffer_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700378
379cleanup:
380 brelse(bh);
381
382 return error;
383}
384
385static int
Christoph Hellwig431547b2009-11-13 09:52:56 +0000386ext4_xattr_ibody_list(struct dentry *dentry, char *buffer, size_t buffer_size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700387{
Christoph Hellwig431547b2009-11-13 09:52:56 +0000388 struct inode *inode = dentry->d_inode;
Mingming Cao617ba132006-10-11 01:20:53 -0700389 struct ext4_xattr_ibody_header *header;
390 struct ext4_inode *raw_inode;
391 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700392 void *end;
393 int error;
394
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500395 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700396 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700397 error = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700398 if (error)
399 return error;
Mingming Cao617ba132006-10-11 01:20:53 -0700400 raw_inode = ext4_raw_inode(&iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700401 header = IHDR(inode, raw_inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700402 end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
403 error = ext4_xattr_check_names(IFIRST(header), end);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700404 if (error)
405 goto cleanup;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000406 error = ext4_xattr_list_entries(dentry, IFIRST(header),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700407 buffer, buffer_size);
408
409cleanup:
410 brelse(iloc.bh);
411 return error;
412}
413
414/*
Mingming Cao617ba132006-10-11 01:20:53 -0700415 * ext4_xattr_list()
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700416 *
417 * Copy a list of attribute names into the buffer
418 * provided, or compute the buffer size required.
419 * Buffer is NULL to compute the size of the buffer required.
420 *
421 * Returns a negative error number on failure, or the number of bytes
422 * used / required on success.
423 */
Mingming Caod3a95d42008-04-17 10:38:59 -0400424static int
Christoph Hellwig431547b2009-11-13 09:52:56 +0000425ext4_xattr_list(struct dentry *dentry, char *buffer, size_t buffer_size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700426{
Theodore Ts'oeaeef862011-01-10 12:10:07 -0500427 int ret, ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700428
Christoph Hellwig431547b2009-11-13 09:52:56 +0000429 down_read(&EXT4_I(dentry->d_inode)->xattr_sem);
Theodore Ts'oeaeef862011-01-10 12:10:07 -0500430 ret = ret2 = ext4_xattr_ibody_list(dentry, buffer, buffer_size);
431 if (ret < 0)
432 goto errout;
433 if (buffer) {
434 buffer += ret;
435 buffer_size -= ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700436 }
Theodore Ts'oeaeef862011-01-10 12:10:07 -0500437 ret = ext4_xattr_block_list(dentry, buffer, buffer_size);
438 if (ret < 0)
439 goto errout;
440 ret += ret2;
441errout:
Christoph Hellwig431547b2009-11-13 09:52:56 +0000442 up_read(&EXT4_I(dentry->d_inode)->xattr_sem);
Theodore Ts'oeaeef862011-01-10 12:10:07 -0500443 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700444}
445
446/*
Mingming Cao617ba132006-10-11 01:20:53 -0700447 * If the EXT4_FEATURE_COMPAT_EXT_ATTR feature of this file system is
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700448 * not set, set it.
449 */
Mingming Cao617ba132006-10-11 01:20:53 -0700450static void ext4_xattr_update_super_block(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700451 struct super_block *sb)
452{
Mingming Cao617ba132006-10-11 01:20:53 -0700453 if (EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_EXT_ATTR))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700454 return;
455
Mingming Cao617ba132006-10-11 01:20:53 -0700456 if (ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh) == 0) {
Andreas Gruenbachered2908f2006-12-06 20:36:16 -0800457 EXT4_SET_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_EXT_ATTR);
Theodore Ts'oa0375152010-06-11 23:14:04 -0400458 ext4_handle_dirty_super(handle, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700459 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700460}
461
462/*
463 * Release the xattr block BH: If the reference count is > 1, decrement
464 * it; otherwise free the block.
465 */
466static void
Mingming Cao617ba132006-10-11 01:20:53 -0700467ext4_xattr_release_block(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700468 struct buffer_head *bh)
469{
470 struct mb_cache_entry *ce = NULL;
Mingming Cao8a2bfdc2007-02-28 20:13:35 -0800471 int error = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700472
Mingming Cao617ba132006-10-11 01:20:53 -0700473 ce = mb_cache_entry_get(ext4_xattr_cache, bh->b_bdev, bh->b_blocknr);
Mingming Cao8a2bfdc2007-02-28 20:13:35 -0800474 error = ext4_journal_get_write_access(handle, bh);
475 if (error)
476 goto out;
477
478 lock_buffer(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700479 if (BHDR(bh)->h_refcount == cpu_to_le32(1)) {
480 ea_bdebug(bh, "refcount now=0; freeing");
481 if (ce)
482 mb_cache_entry_free(ce);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700483 get_bh(bh);
Theodore Ts'oe6362602009-11-23 07:17:05 -0500484 ext4_free_blocks(handle, inode, bh, 0, 1,
485 EXT4_FREE_BLOCKS_METADATA |
486 EXT4_FREE_BLOCKS_FORGET);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700487 } else {
Marcin Slusarze8546d02008-04-17 10:38:59 -0400488 le32_add_cpu(&BHDR(bh)->h_refcount, -1);
Frank Mayhar03901312009-01-07 00:06:22 -0500489 error = ext4_handle_dirty_metadata(handle, inode, bh);
Mingming Cao8a2bfdc2007-02-28 20:13:35 -0800490 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500491 ext4_handle_sync(handle);
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500492 dquot_free_block(inode, 1);
Mingming Cao8a2bfdc2007-02-28 20:13:35 -0800493 ea_bdebug(bh, "refcount now=%d; releasing",
494 le32_to_cpu(BHDR(bh)->h_refcount));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700495 if (ce)
496 mb_cache_entry_release(ce);
497 }
Mingming Cao8a2bfdc2007-02-28 20:13:35 -0800498 unlock_buffer(bh);
499out:
500 ext4_std_error(inode->i_sb, error);
501 return;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700502}
503
Kalpak Shah6dd4ee72007-07-18 09:19:57 -0400504/*
505 * Find the available free space for EAs. This also returns the total number of
506 * bytes used by EA entries.
507 */
508static size_t ext4_xattr_free_space(struct ext4_xattr_entry *last,
509 size_t *min_offs, void *base, int *total)
510{
511 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
512 *total += EXT4_XATTR_LEN(last->e_name_len);
513 if (!last->e_value_block && last->e_value_size) {
514 size_t offs = le16_to_cpu(last->e_value_offs);
515 if (offs < *min_offs)
516 *min_offs = offs;
517 }
518 }
519 return (*min_offs - ((void *)last - base) - sizeof(__u32));
520}
521
Mingming Cao617ba132006-10-11 01:20:53 -0700522struct ext4_xattr_info {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700523 int name_index;
524 const char *name;
525 const void *value;
526 size_t value_len;
527};
528
Mingming Cao617ba132006-10-11 01:20:53 -0700529struct ext4_xattr_search {
530 struct ext4_xattr_entry *first;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700531 void *base;
532 void *end;
Mingming Cao617ba132006-10-11 01:20:53 -0700533 struct ext4_xattr_entry *here;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700534 int not_found;
535};
536
537static int
Mingming Cao617ba132006-10-11 01:20:53 -0700538ext4_xattr_set_entry(struct ext4_xattr_info *i, struct ext4_xattr_search *s)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700539{
Mingming Cao617ba132006-10-11 01:20:53 -0700540 struct ext4_xattr_entry *last;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700541 size_t free, min_offs = s->end - s->base, name_len = strlen(i->name);
542
543 /* Compute min_offs and last. */
544 last = s->first;
Mingming Cao617ba132006-10-11 01:20:53 -0700545 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700546 if (!last->e_value_block && last->e_value_size) {
547 size_t offs = le16_to_cpu(last->e_value_offs);
548 if (offs < min_offs)
549 min_offs = offs;
550 }
551 }
552 free = min_offs - ((void *)last - s->base) - sizeof(__u32);
553 if (!s->not_found) {
554 if (!s->here->e_value_block && s->here->e_value_size) {
555 size_t size = le32_to_cpu(s->here->e_value_size);
Mingming Cao617ba132006-10-11 01:20:53 -0700556 free += EXT4_XATTR_SIZE(size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700557 }
Mingming Cao617ba132006-10-11 01:20:53 -0700558 free += EXT4_XATTR_LEN(name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700559 }
560 if (i->value) {
Mingming Cao617ba132006-10-11 01:20:53 -0700561 if (free < EXT4_XATTR_SIZE(i->value_len) ||
562 free < EXT4_XATTR_LEN(name_len) +
563 EXT4_XATTR_SIZE(i->value_len))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700564 return -ENOSPC;
565 }
566
567 if (i->value && s->not_found) {
568 /* Insert the new name. */
Mingming Cao617ba132006-10-11 01:20:53 -0700569 size_t size = EXT4_XATTR_LEN(name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700570 size_t rest = (void *)last - (void *)s->here + sizeof(__u32);
571 memmove((void *)s->here + size, s->here, rest);
572 memset(s->here, 0, size);
573 s->here->e_name_index = i->name_index;
574 s->here->e_name_len = name_len;
575 memcpy(s->here->e_name, i->name, name_len);
576 } else {
577 if (!s->here->e_value_block && s->here->e_value_size) {
578 void *first_val = s->base + min_offs;
579 size_t offs = le16_to_cpu(s->here->e_value_offs);
580 void *val = s->base + offs;
Mingming Cao617ba132006-10-11 01:20:53 -0700581 size_t size = EXT4_XATTR_SIZE(
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700582 le32_to_cpu(s->here->e_value_size));
583
Mingming Cao617ba132006-10-11 01:20:53 -0700584 if (i->value && size == EXT4_XATTR_SIZE(i->value_len)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700585 /* The old and the new value have the same
586 size. Just replace. */
587 s->here->e_value_size =
588 cpu_to_le32(i->value_len);
Mingming Cao617ba132006-10-11 01:20:53 -0700589 memset(val + size - EXT4_XATTR_PAD, 0,
590 EXT4_XATTR_PAD); /* Clear pad bytes. */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700591 memcpy(val, i->value, i->value_len);
592 return 0;
593 }
594
595 /* Remove the old value. */
596 memmove(first_val + size, first_val, val - first_val);
597 memset(first_val, 0, size);
598 s->here->e_value_size = 0;
599 s->here->e_value_offs = 0;
600 min_offs += size;
601
602 /* Adjust all value offsets. */
603 last = s->first;
604 while (!IS_LAST_ENTRY(last)) {
605 size_t o = le16_to_cpu(last->e_value_offs);
606 if (!last->e_value_block &&
607 last->e_value_size && o < offs)
608 last->e_value_offs =
609 cpu_to_le16(o + size);
Mingming Cao617ba132006-10-11 01:20:53 -0700610 last = EXT4_XATTR_NEXT(last);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700611 }
612 }
613 if (!i->value) {
614 /* Remove the old name. */
Mingming Cao617ba132006-10-11 01:20:53 -0700615 size_t size = EXT4_XATTR_LEN(name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700616 last = ENTRY((void *)last - size);
617 memmove(s->here, (void *)s->here + size,
618 (void *)last - (void *)s->here + sizeof(__u32));
619 memset(last, 0, size);
620 }
621 }
622
623 if (i->value) {
624 /* Insert the new value. */
625 s->here->e_value_size = cpu_to_le32(i->value_len);
626 if (i->value_len) {
Mingming Cao617ba132006-10-11 01:20:53 -0700627 size_t size = EXT4_XATTR_SIZE(i->value_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700628 void *val = s->base + min_offs - size;
629 s->here->e_value_offs = cpu_to_le16(min_offs - size);
Mingming Cao617ba132006-10-11 01:20:53 -0700630 memset(val + size - EXT4_XATTR_PAD, 0,
631 EXT4_XATTR_PAD); /* Clear the pad bytes. */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700632 memcpy(val, i->value, i->value_len);
633 }
634 }
635 return 0;
636}
637
Mingming Cao617ba132006-10-11 01:20:53 -0700638struct ext4_xattr_block_find {
639 struct ext4_xattr_search s;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700640 struct buffer_head *bh;
641};
642
643static int
Mingming Cao617ba132006-10-11 01:20:53 -0700644ext4_xattr_block_find(struct inode *inode, struct ext4_xattr_info *i,
645 struct ext4_xattr_block_find *bs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700646{
647 struct super_block *sb = inode->i_sb;
648 int error;
649
650 ea_idebug(inode, "name=%d.%s, value=%p, value_len=%ld",
651 i->name_index, i->name, i->value, (long)i->value_len);
652
Mingming Cao617ba132006-10-11 01:20:53 -0700653 if (EXT4_I(inode)->i_file_acl) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700654 /* The inode already has an extended attribute block. */
Mingming Cao617ba132006-10-11 01:20:53 -0700655 bs->bh = sb_bread(sb, EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700656 error = -EIO;
657 if (!bs->bh)
658 goto cleanup;
659 ea_bdebug(bs->bh, "b_count=%d, refcount=%d",
660 atomic_read(&(bs->bh->b_count)),
661 le32_to_cpu(BHDR(bs->bh)->h_refcount));
Mingming Cao617ba132006-10-11 01:20:53 -0700662 if (ext4_xattr_check_block(bs->bh)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -0400663 EXT4_ERROR_INODE(inode, "bad block %llu",
664 EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700665 error = -EIO;
666 goto cleanup;
667 }
668 /* Find the named attribute. */
669 bs->s.base = BHDR(bs->bh);
670 bs->s.first = BFIRST(bs->bh);
671 bs->s.end = bs->bh->b_data + bs->bh->b_size;
672 bs->s.here = bs->s.first;
Mingming Cao617ba132006-10-11 01:20:53 -0700673 error = ext4_xattr_find_entry(&bs->s.here, i->name_index,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700674 i->name, bs->bh->b_size, 1);
675 if (error && error != -ENODATA)
676 goto cleanup;
677 bs->s.not_found = error;
678 }
679 error = 0;
680
681cleanup:
682 return error;
683}
684
685static int
Mingming Cao617ba132006-10-11 01:20:53 -0700686ext4_xattr_block_set(handle_t *handle, struct inode *inode,
687 struct ext4_xattr_info *i,
688 struct ext4_xattr_block_find *bs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700689{
690 struct super_block *sb = inode->i_sb;
691 struct buffer_head *new_bh = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -0700692 struct ext4_xattr_search *s = &bs->s;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700693 struct mb_cache_entry *ce = NULL;
Mingming Cao8a2bfdc2007-02-28 20:13:35 -0800694 int error = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700695
Mingming Cao617ba132006-10-11 01:20:53 -0700696#define header(x) ((struct ext4_xattr_header *)(x))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700697
698 if (i->value && i->value_len > sb->s_blocksize)
699 return -ENOSPC;
700 if (s->base) {
Mingming Cao617ba132006-10-11 01:20:53 -0700701 ce = mb_cache_entry_get(ext4_xattr_cache, bs->bh->b_bdev,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700702 bs->bh->b_blocknr);
Mingming Cao8a2bfdc2007-02-28 20:13:35 -0800703 error = ext4_journal_get_write_access(handle, bs->bh);
704 if (error)
705 goto cleanup;
706 lock_buffer(bs->bh);
707
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700708 if (header(s->base)->h_refcount == cpu_to_le32(1)) {
709 if (ce) {
710 mb_cache_entry_free(ce);
711 ce = NULL;
712 }
713 ea_bdebug(bs->bh, "modifying in-place");
Mingming Cao617ba132006-10-11 01:20:53 -0700714 error = ext4_xattr_set_entry(i, s);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700715 if (!error) {
716 if (!IS_LAST_ENTRY(s->first))
Mingming Cao617ba132006-10-11 01:20:53 -0700717 ext4_xattr_rehash(header(s->base),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700718 s->here);
Mingming Cao617ba132006-10-11 01:20:53 -0700719 ext4_xattr_cache_insert(bs->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700720 }
721 unlock_buffer(bs->bh);
722 if (error == -EIO)
723 goto bad_block;
724 if (!error)
Frank Mayhar03901312009-01-07 00:06:22 -0500725 error = ext4_handle_dirty_metadata(handle,
726 inode,
727 bs->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700728 if (error)
729 goto cleanup;
730 goto inserted;
731 } else {
732 int offset = (char *)s->here - bs->bh->b_data;
733
Mingming Cao8a2bfdc2007-02-28 20:13:35 -0800734 unlock_buffer(bs->bh);
Amir Goldstein537a0312011-03-20 22:57:02 -0400735 ext4_handle_release_buffer(handle, bs->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700736 if (ce) {
737 mb_cache_entry_release(ce);
738 ce = NULL;
739 }
740 ea_bdebug(bs->bh, "cloning");
Josef Bacik216553c2008-04-29 22:02:02 -0400741 s->base = kmalloc(bs->bh->b_size, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700742 error = -ENOMEM;
743 if (s->base == NULL)
744 goto cleanup;
745 memcpy(s->base, BHDR(bs->bh), bs->bh->b_size);
746 s->first = ENTRY(header(s->base)+1);
747 header(s->base)->h_refcount = cpu_to_le32(1);
748 s->here = ENTRY(s->base + offset);
749 s->end = s->base + bs->bh->b_size;
750 }
751 } else {
752 /* Allocate a buffer where we construct the new block. */
Josef Bacik216553c2008-04-29 22:02:02 -0400753 s->base = kzalloc(sb->s_blocksize, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700754 /* assert(header == s->base) */
755 error = -ENOMEM;
756 if (s->base == NULL)
757 goto cleanup;
Mingming Cao617ba132006-10-11 01:20:53 -0700758 header(s->base)->h_magic = cpu_to_le32(EXT4_XATTR_MAGIC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700759 header(s->base)->h_blocks = cpu_to_le32(1);
760 header(s->base)->h_refcount = cpu_to_le32(1);
761 s->first = ENTRY(header(s->base)+1);
762 s->here = ENTRY(header(s->base)+1);
763 s->end = s->base + sb->s_blocksize;
764 }
765
Mingming Cao617ba132006-10-11 01:20:53 -0700766 error = ext4_xattr_set_entry(i, s);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700767 if (error == -EIO)
768 goto bad_block;
769 if (error)
770 goto cleanup;
771 if (!IS_LAST_ENTRY(s->first))
Mingming Cao617ba132006-10-11 01:20:53 -0700772 ext4_xattr_rehash(header(s->base), s->here);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700773
774inserted:
775 if (!IS_LAST_ENTRY(s->first)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700776 new_bh = ext4_xattr_cache_find(inode, header(s->base), &ce);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700777 if (new_bh) {
778 /* We found an identical block in the cache. */
779 if (new_bh == bs->bh)
780 ea_bdebug(new_bh, "keeping");
781 else {
782 /* The old block is released after updating
783 the inode. */
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500784 error = dquot_alloc_block(inode, 1);
785 if (error)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700786 goto cleanup;
Mingming Cao617ba132006-10-11 01:20:53 -0700787 error = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700788 new_bh);
789 if (error)
790 goto cleanup_dquot;
791 lock_buffer(new_bh);
Marcin Slusarze8546d02008-04-17 10:38:59 -0400792 le32_add_cpu(&BHDR(new_bh)->h_refcount, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700793 ea_bdebug(new_bh, "reusing; refcount now=%d",
794 le32_to_cpu(BHDR(new_bh)->h_refcount));
795 unlock_buffer(new_bh);
Frank Mayhar03901312009-01-07 00:06:22 -0500796 error = ext4_handle_dirty_metadata(handle,
797 inode,
798 new_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700799 if (error)
800 goto cleanup_dquot;
801 }
802 mb_cache_entry_release(ce);
803 ce = NULL;
804 } else if (bs->bh && s->base == bs->bh->b_data) {
805 /* We were modifying this block in-place. */
806 ea_bdebug(bs->bh, "keeping this block");
807 new_bh = bs->bh;
808 get_bh(new_bh);
809 } else {
810 /* We need to allocate a new block */
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400811 ext4_fsblk_t goal, block;
812
813 goal = ext4_group_first_block_no(sb,
Akinobu Mitad00a6d72008-04-17 10:38:59 -0400814 EXT4_I(inode)->i_block_group);
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400815
816 /* non-extent files can't have physical blocks past 2^32 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400817 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400818 goal = goal & EXT4_MAX_BLOCK_FILE_PHYS;
819
Eric Sandeen6d6a43512011-10-29 10:15:35 -0400820 /*
821 * take i_data_sem because we will test
822 * i_delalloc_reserved_flag in ext4_mb_new_blocks
823 */
824 down_read((&EXT4_I(inode)->i_data_sem));
Allison Henderson55f020d2011-05-25 07:41:26 -0400825 block = ext4_new_meta_blocks(handle, inode, goal, 0,
826 NULL, &error);
Eric Sandeen6d6a43512011-10-29 10:15:35 -0400827 up_read((&EXT4_I(inode)->i_data_sem));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700828 if (error)
829 goto cleanup;
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400830
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400831 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Eric Sandeenfb0a3872009-09-16 14:45:10 -0400832 BUG_ON(block > EXT4_MAX_BLOCK_FILE_PHYS);
833
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700834 ea_idebug(inode, "creating block %d", block);
835
836 new_bh = sb_getblk(sb, block);
837 if (!new_bh) {
838getblk_failed:
Peter Huewe7dc57612011-02-21 21:01:42 -0500839 ext4_free_blocks(handle, inode, NULL, block, 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -0500840 EXT4_FREE_BLOCKS_METADATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700841 error = -EIO;
842 goto cleanup;
843 }
844 lock_buffer(new_bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700845 error = ext4_journal_get_create_access(handle, new_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700846 if (error) {
847 unlock_buffer(new_bh);
848 goto getblk_failed;
849 }
850 memcpy(new_bh->b_data, s->base, new_bh->b_size);
851 set_buffer_uptodate(new_bh);
852 unlock_buffer(new_bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700853 ext4_xattr_cache_insert(new_bh);
Frank Mayhar03901312009-01-07 00:06:22 -0500854 error = ext4_handle_dirty_metadata(handle,
855 inode, new_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700856 if (error)
857 goto cleanup;
858 }
859 }
860
861 /* Update the inode. */
Mingming Cao617ba132006-10-11 01:20:53 -0700862 EXT4_I(inode)->i_file_acl = new_bh ? new_bh->b_blocknr : 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700863
864 /* Drop the previous xattr block. */
865 if (bs->bh && bs->bh != new_bh)
Mingming Cao617ba132006-10-11 01:20:53 -0700866 ext4_xattr_release_block(handle, inode, bs->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700867 error = 0;
868
869cleanup:
870 if (ce)
871 mb_cache_entry_release(ce);
872 brelse(new_bh);
873 if (!(bs->bh && s->base == bs->bh->b_data))
874 kfree(s->base);
875
876 return error;
877
878cleanup_dquot:
Christoph Hellwig5dd40562010-03-03 09:05:00 -0500879 dquot_free_block(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700880 goto cleanup;
881
882bad_block:
Theodore Ts'o24676da2010-05-16 21:00:00 -0400883 EXT4_ERROR_INODE(inode, "bad block %llu",
884 EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700885 goto cleanup;
886
887#undef header
888}
889
Mingming Cao617ba132006-10-11 01:20:53 -0700890struct ext4_xattr_ibody_find {
891 struct ext4_xattr_search s;
892 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700893};
894
895static int
Mingming Cao617ba132006-10-11 01:20:53 -0700896ext4_xattr_ibody_find(struct inode *inode, struct ext4_xattr_info *i,
897 struct ext4_xattr_ibody_find *is)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700898{
Mingming Cao617ba132006-10-11 01:20:53 -0700899 struct ext4_xattr_ibody_header *header;
900 struct ext4_inode *raw_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901 int error;
902
Mingming Cao617ba132006-10-11 01:20:53 -0700903 if (EXT4_I(inode)->i_extra_isize == 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700904 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700905 raw_inode = ext4_raw_inode(&is->iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700906 header = IHDR(inode, raw_inode);
907 is->s.base = is->s.first = IFIRST(header);
908 is->s.here = is->s.first;
Mingming Cao617ba132006-10-11 01:20:53 -0700909 is->s.end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500910 if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700911 error = ext4_xattr_check_names(IFIRST(header), is->s.end);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700912 if (error)
913 return error;
914 /* Find the named attribute. */
Mingming Cao617ba132006-10-11 01:20:53 -0700915 error = ext4_xattr_find_entry(&is->s.here, i->name_index,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700916 i->name, is->s.end -
917 (void *)is->s.base, 0);
918 if (error && error != -ENODATA)
919 return error;
920 is->s.not_found = error;
921 }
922 return 0;
923}
924
925static int
Mingming Cao617ba132006-10-11 01:20:53 -0700926ext4_xattr_ibody_set(handle_t *handle, struct inode *inode,
927 struct ext4_xattr_info *i,
928 struct ext4_xattr_ibody_find *is)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700929{
Mingming Cao617ba132006-10-11 01:20:53 -0700930 struct ext4_xattr_ibody_header *header;
931 struct ext4_xattr_search *s = &is->s;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700932 int error;
933
Mingming Cao617ba132006-10-11 01:20:53 -0700934 if (EXT4_I(inode)->i_extra_isize == 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700935 return -ENOSPC;
Mingming Cao617ba132006-10-11 01:20:53 -0700936 error = ext4_xattr_set_entry(i, s);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700937 if (error)
938 return error;
Mingming Cao617ba132006-10-11 01:20:53 -0700939 header = IHDR(inode, ext4_raw_inode(&is->iloc));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700940 if (!IS_LAST_ENTRY(s->first)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700941 header->h_magic = cpu_to_le32(EXT4_XATTR_MAGIC);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500942 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700943 } else {
944 header->h_magic = cpu_to_le32(0);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500945 ext4_clear_inode_state(inode, EXT4_STATE_XATTR);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700946 }
947 return 0;
948}
949
950/*
Mingming Cao617ba132006-10-11 01:20:53 -0700951 * ext4_xattr_set_handle()
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700952 *
Wang Sheng-Hui6e9510b2011-01-10 12:10:30 -0500953 * Create, replace or remove an extended attribute for this inode. Value
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700954 * is NULL to remove an existing extended attribute, and non-NULL to
955 * either replace an existing extended attribute, or create a new extended
956 * attribute. The flags XATTR_REPLACE and XATTR_CREATE
957 * specify that an extended attribute must exist and must not exist
958 * previous to the call, respectively.
959 *
960 * Returns 0, or a negative error number on failure.
961 */
962int
Mingming Cao617ba132006-10-11 01:20:53 -0700963ext4_xattr_set_handle(handle_t *handle, struct inode *inode, int name_index,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700964 const char *name, const void *value, size_t value_len,
965 int flags)
966{
Mingming Cao617ba132006-10-11 01:20:53 -0700967 struct ext4_xattr_info i = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700968 .name_index = name_index,
969 .name = name,
970 .value = value,
971 .value_len = value_len,
972
973 };
Mingming Cao617ba132006-10-11 01:20:53 -0700974 struct ext4_xattr_ibody_find is = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700975 .s = { .not_found = -ENODATA, },
976 };
Mingming Cao617ba132006-10-11 01:20:53 -0700977 struct ext4_xattr_block_find bs = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700978 .s = { .not_found = -ENODATA, },
979 };
Kalpak Shah4d20c682008-10-08 23:21:54 -0400980 unsigned long no_expand;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700981 int error;
982
983 if (!name)
984 return -EINVAL;
985 if (strlen(name) > 255)
986 return -ERANGE;
Mingming Cao617ba132006-10-11 01:20:53 -0700987 down_write(&EXT4_I(inode)->xattr_sem);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500988 no_expand = ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND);
989 ext4_set_inode_state(inode, EXT4_STATE_NO_EXPAND);
Kalpak Shah4d20c682008-10-08 23:21:54 -0400990
Eric Sandeen66543612011-10-26 03:32:07 -0400991 error = ext4_reserve_inode_write(handle, inode, &is.iloc);
Eric Sandeen86ebfd02009-11-15 15:30:52 -0500992 if (error)
993 goto cleanup;
994
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500995 if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700996 struct ext4_inode *raw_inode = ext4_raw_inode(&is.iloc);
997 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500998 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700999 }
1000
Mingming Cao617ba132006-10-11 01:20:53 -07001001 error = ext4_xattr_ibody_find(inode, &i, &is);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001002 if (error)
1003 goto cleanup;
1004 if (is.s.not_found)
Mingming Cao617ba132006-10-11 01:20:53 -07001005 error = ext4_xattr_block_find(inode, &i, &bs);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001006 if (error)
1007 goto cleanup;
1008 if (is.s.not_found && bs.s.not_found) {
1009 error = -ENODATA;
1010 if (flags & XATTR_REPLACE)
1011 goto cleanup;
1012 error = 0;
1013 if (!value)
1014 goto cleanup;
1015 } else {
1016 error = -EEXIST;
1017 if (flags & XATTR_CREATE)
1018 goto cleanup;
1019 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001020 if (!value) {
1021 if (!is.s.not_found)
Mingming Cao617ba132006-10-11 01:20:53 -07001022 error = ext4_xattr_ibody_set(handle, inode, &i, &is);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001023 else if (!bs.s.not_found)
Mingming Cao617ba132006-10-11 01:20:53 -07001024 error = ext4_xattr_block_set(handle, inode, &i, &bs);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001025 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07001026 error = ext4_xattr_ibody_set(handle, inode, &i, &is);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001027 if (!error && !bs.s.not_found) {
1028 i.value = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -07001029 error = ext4_xattr_block_set(handle, inode, &i, &bs);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001030 } else if (error == -ENOSPC) {
Tiger Yang7e01c8e2008-05-14 16:05:47 -07001031 if (EXT4_I(inode)->i_file_acl && !bs.s.base) {
1032 error = ext4_xattr_block_find(inode, &i, &bs);
1033 if (error)
1034 goto cleanup;
1035 }
Mingming Cao617ba132006-10-11 01:20:53 -07001036 error = ext4_xattr_block_set(handle, inode, &i, &bs);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001037 if (error)
1038 goto cleanup;
1039 if (!is.s.not_found) {
1040 i.value = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -07001041 error = ext4_xattr_ibody_set(handle, inode, &i,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001042 &is);
1043 }
1044 }
1045 }
1046 if (!error) {
Mingming Cao617ba132006-10-11 01:20:53 -07001047 ext4_xattr_update_super_block(handle, inode->i_sb);
Kalpak Shahef7f3832007-07-18 09:15:20 -04001048 inode->i_ctime = ext4_current_time(inode);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001049 if (!value)
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001050 ext4_clear_inode_state(inode, EXT4_STATE_NO_EXPAND);
Mingming Cao617ba132006-10-11 01:20:53 -07001051 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001052 /*
Mingming Cao617ba132006-10-11 01:20:53 -07001053 * The bh is consumed by ext4_mark_iloc_dirty, even with
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001054 * error != 0.
1055 */
1056 is.iloc.bh = NULL;
1057 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05001058 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001059 }
1060
1061cleanup:
1062 brelse(is.iloc.bh);
1063 brelse(bs.bh);
Kalpak Shah4d20c682008-10-08 23:21:54 -04001064 if (no_expand == 0)
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001065 ext4_clear_inode_state(inode, EXT4_STATE_NO_EXPAND);
Mingming Cao617ba132006-10-11 01:20:53 -07001066 up_write(&EXT4_I(inode)->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001067 return error;
1068}
1069
1070/*
Mingming Cao617ba132006-10-11 01:20:53 -07001071 * ext4_xattr_set()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001072 *
Mingming Cao617ba132006-10-11 01:20:53 -07001073 * Like ext4_xattr_set_handle, but start from an inode. This extended
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001074 * attribute modification is a filesystem transaction by itself.
1075 *
1076 * Returns 0, or a negative error number on failure.
1077 */
1078int
Mingming Cao617ba132006-10-11 01:20:53 -07001079ext4_xattr_set(struct inode *inode, int name_index, const char *name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001080 const void *value, size_t value_len, int flags)
1081{
1082 handle_t *handle;
1083 int error, retries = 0;
1084
1085retry:
Mingming Cao617ba132006-10-11 01:20:53 -07001086 handle = ext4_journal_start(inode, EXT4_DATA_TRANS_BLOCKS(inode->i_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001087 if (IS_ERR(handle)) {
1088 error = PTR_ERR(handle);
1089 } else {
1090 int error2;
1091
Mingming Cao617ba132006-10-11 01:20:53 -07001092 error = ext4_xattr_set_handle(handle, inode, name_index, name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001093 value, value_len, flags);
Mingming Cao617ba132006-10-11 01:20:53 -07001094 error2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001095 if (error == -ENOSPC &&
Mingming Cao617ba132006-10-11 01:20:53 -07001096 ext4_should_retry_alloc(inode->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001097 goto retry;
1098 if (error == 0)
1099 error = error2;
1100 }
1101
1102 return error;
1103}
1104
1105/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001106 * Shift the EA entries in the inode to create space for the increased
1107 * i_extra_isize.
1108 */
1109static void ext4_xattr_shift_entries(struct ext4_xattr_entry *entry,
1110 int value_offs_shift, void *to,
1111 void *from, size_t n, int blocksize)
1112{
1113 struct ext4_xattr_entry *last = entry;
1114 int new_offs;
1115
1116 /* Adjust the value offsets of the entries */
1117 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
1118 if (!last->e_value_block && last->e_value_size) {
1119 new_offs = le16_to_cpu(last->e_value_offs) +
1120 value_offs_shift;
1121 BUG_ON(new_offs + le32_to_cpu(last->e_value_size)
1122 > blocksize);
1123 last->e_value_offs = cpu_to_le16(new_offs);
1124 }
1125 }
1126 /* Shift the entries by n bytes */
1127 memmove(to, from, n);
1128}
1129
1130/*
1131 * Expand an inode by new_extra_isize bytes when EAs are present.
1132 * Returns 0 on success or negative error number on failure.
1133 */
1134int ext4_expand_extra_isize_ea(struct inode *inode, int new_extra_isize,
1135 struct ext4_inode *raw_inode, handle_t *handle)
1136{
1137 struct ext4_xattr_ibody_header *header;
1138 struct ext4_xattr_entry *entry, *last, *first;
1139 struct buffer_head *bh = NULL;
1140 struct ext4_xattr_ibody_find *is = NULL;
1141 struct ext4_xattr_block_find *bs = NULL;
1142 char *buffer = NULL, *b_entry_name = NULL;
1143 size_t min_offs, free;
1144 int total_ino, total_blk;
1145 void *base, *start, *end;
1146 int extra_isize = 0, error = 0, tried_min_extra_isize = 0;
Aneesh Kumar K.Vac398492007-10-16 18:38:25 -04001147 int s_min_extra_isize = le16_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_min_extra_isize);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001148
1149 down_write(&EXT4_I(inode)->xattr_sem);
1150retry:
1151 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize) {
1152 up_write(&EXT4_I(inode)->xattr_sem);
1153 return 0;
1154 }
1155
1156 header = IHDR(inode, raw_inode);
1157 entry = IFIRST(header);
1158
1159 /*
1160 * Check if enough free space is available in the inode to shift the
1161 * entries ahead by new_extra_isize.
1162 */
1163
1164 base = start = entry;
1165 end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
1166 min_offs = end - base;
1167 last = entry;
1168 total_ino = sizeof(struct ext4_xattr_ibody_header);
1169
1170 free = ext4_xattr_free_space(last, &min_offs, base, &total_ino);
1171 if (free >= new_extra_isize) {
1172 entry = IFIRST(header);
1173 ext4_xattr_shift_entries(entry, EXT4_I(inode)->i_extra_isize
1174 - new_extra_isize, (void *)raw_inode +
1175 EXT4_GOOD_OLD_INODE_SIZE + new_extra_isize,
1176 (void *)header, total_ino,
1177 inode->i_sb->s_blocksize);
1178 EXT4_I(inode)->i_extra_isize = new_extra_isize;
1179 error = 0;
1180 goto cleanup;
1181 }
1182
1183 /*
1184 * Enough free space isn't available in the inode, check if
1185 * EA block can hold new_extra_isize bytes.
1186 */
1187 if (EXT4_I(inode)->i_file_acl) {
1188 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
1189 error = -EIO;
1190 if (!bh)
1191 goto cleanup;
1192 if (ext4_xattr_check_block(bh)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001193 EXT4_ERROR_INODE(inode, "bad block %llu",
1194 EXT4_I(inode)->i_file_acl);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001195 error = -EIO;
1196 goto cleanup;
1197 }
1198 base = BHDR(bh);
1199 first = BFIRST(bh);
1200 end = bh->b_data + bh->b_size;
1201 min_offs = end - base;
1202 free = ext4_xattr_free_space(first, &min_offs, base,
1203 &total_blk);
1204 if (free < new_extra_isize) {
1205 if (!tried_min_extra_isize && s_min_extra_isize) {
1206 tried_min_extra_isize++;
1207 new_extra_isize = s_min_extra_isize;
1208 brelse(bh);
1209 goto retry;
1210 }
1211 error = -1;
1212 goto cleanup;
1213 }
1214 } else {
1215 free = inode->i_sb->s_blocksize;
1216 }
1217
1218 while (new_extra_isize > 0) {
1219 size_t offs, size, entry_size;
1220 struct ext4_xattr_entry *small_entry = NULL;
1221 struct ext4_xattr_info i = {
1222 .value = NULL,
1223 .value_len = 0,
1224 };
1225 unsigned int total_size; /* EA entry size + value size */
1226 unsigned int shift_bytes; /* No. of bytes to shift EAs by? */
1227 unsigned int min_total_size = ~0U;
1228
1229 is = kzalloc(sizeof(struct ext4_xattr_ibody_find), GFP_NOFS);
1230 bs = kzalloc(sizeof(struct ext4_xattr_block_find), GFP_NOFS);
1231 if (!is || !bs) {
1232 error = -ENOMEM;
1233 goto cleanup;
1234 }
1235
1236 is->s.not_found = -ENODATA;
1237 bs->s.not_found = -ENODATA;
1238 is->iloc.bh = NULL;
1239 bs->bh = NULL;
1240
1241 last = IFIRST(header);
1242 /* Find the entry best suited to be pushed into EA block */
1243 entry = NULL;
1244 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
1245 total_size =
1246 EXT4_XATTR_SIZE(le32_to_cpu(last->e_value_size)) +
1247 EXT4_XATTR_LEN(last->e_name_len);
1248 if (total_size <= free && total_size < min_total_size) {
1249 if (total_size < new_extra_isize) {
1250 small_entry = last;
1251 } else {
1252 entry = last;
1253 min_total_size = total_size;
1254 }
1255 }
1256 }
1257
1258 if (entry == NULL) {
1259 if (small_entry) {
1260 entry = small_entry;
1261 } else {
1262 if (!tried_min_extra_isize &&
1263 s_min_extra_isize) {
1264 tried_min_extra_isize++;
1265 new_extra_isize = s_min_extra_isize;
1266 goto retry;
1267 }
1268 error = -1;
1269 goto cleanup;
1270 }
1271 }
1272 offs = le16_to_cpu(entry->e_value_offs);
1273 size = le32_to_cpu(entry->e_value_size);
1274 entry_size = EXT4_XATTR_LEN(entry->e_name_len);
1275 i.name_index = entry->e_name_index,
1276 buffer = kmalloc(EXT4_XATTR_SIZE(size), GFP_NOFS);
1277 b_entry_name = kmalloc(entry->e_name_len + 1, GFP_NOFS);
1278 if (!buffer || !b_entry_name) {
1279 error = -ENOMEM;
1280 goto cleanup;
1281 }
1282 /* Save the entry name and the entry value */
1283 memcpy(buffer, (void *)IFIRST(header) + offs,
1284 EXT4_XATTR_SIZE(size));
1285 memcpy(b_entry_name, entry->e_name, entry->e_name_len);
1286 b_entry_name[entry->e_name_len] = '\0';
1287 i.name = b_entry_name;
1288
1289 error = ext4_get_inode_loc(inode, &is->iloc);
1290 if (error)
1291 goto cleanup;
1292
1293 error = ext4_xattr_ibody_find(inode, &i, is);
1294 if (error)
1295 goto cleanup;
1296
1297 /* Remove the chosen entry from the inode */
1298 error = ext4_xattr_ibody_set(handle, inode, &i, is);
Roel Kluin9aaab052010-02-15 14:26:16 -05001299 if (error)
1300 goto cleanup;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001301
1302 entry = IFIRST(header);
1303 if (entry_size + EXT4_XATTR_SIZE(size) >= new_extra_isize)
1304 shift_bytes = new_extra_isize;
1305 else
1306 shift_bytes = entry_size + size;
1307 /* Adjust the offsets and shift the remaining entries ahead */
1308 ext4_xattr_shift_entries(entry, EXT4_I(inode)->i_extra_isize -
1309 shift_bytes, (void *)raw_inode +
1310 EXT4_GOOD_OLD_INODE_SIZE + extra_isize + shift_bytes,
1311 (void *)header, total_ino - entry_size,
1312 inode->i_sb->s_blocksize);
1313
1314 extra_isize += shift_bytes;
1315 new_extra_isize -= shift_bytes;
1316 EXT4_I(inode)->i_extra_isize = extra_isize;
1317
1318 i.name = b_entry_name;
1319 i.value = buffer;
Aneesh Kumar K.Vac398492007-10-16 18:38:25 -04001320 i.value_len = size;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001321 error = ext4_xattr_block_find(inode, &i, bs);
1322 if (error)
1323 goto cleanup;
1324
1325 /* Add entry which was removed from the inode into the block */
1326 error = ext4_xattr_block_set(handle, inode, &i, bs);
1327 if (error)
1328 goto cleanup;
1329 kfree(b_entry_name);
1330 kfree(buffer);
Julia Lawalld3533d72009-12-23 07:52:31 -05001331 b_entry_name = NULL;
1332 buffer = NULL;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001333 brelse(is->iloc.bh);
1334 kfree(is);
1335 kfree(bs);
1336 }
1337 brelse(bh);
1338 up_write(&EXT4_I(inode)->xattr_sem);
1339 return 0;
1340
1341cleanup:
1342 kfree(b_entry_name);
1343 kfree(buffer);
1344 if (is)
1345 brelse(is->iloc.bh);
1346 kfree(is);
1347 kfree(bs);
1348 brelse(bh);
1349 up_write(&EXT4_I(inode)->xattr_sem);
1350 return error;
1351}
1352
1353
1354
1355/*
Mingming Cao617ba132006-10-11 01:20:53 -07001356 * ext4_xattr_delete_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001357 *
1358 * Free extended attribute resources associated with this inode. This
1359 * is called immediately before an inode is freed. We have exclusive
1360 * access to the inode.
1361 */
1362void
Mingming Cao617ba132006-10-11 01:20:53 -07001363ext4_xattr_delete_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001364{
1365 struct buffer_head *bh = NULL;
1366
Mingming Cao617ba132006-10-11 01:20:53 -07001367 if (!EXT4_I(inode)->i_file_acl)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001368 goto cleanup;
Mingming Cao617ba132006-10-11 01:20:53 -07001369 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001370 if (!bh) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001371 EXT4_ERROR_INODE(inode, "block %llu read error",
1372 EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001373 goto cleanup;
1374 }
Mingming Cao617ba132006-10-11 01:20:53 -07001375 if (BHDR(bh)->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001376 BHDR(bh)->h_blocks != cpu_to_le32(1)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001377 EXT4_ERROR_INODE(inode, "bad block %llu",
1378 EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001379 goto cleanup;
1380 }
Mingming Cao617ba132006-10-11 01:20:53 -07001381 ext4_xattr_release_block(handle, inode, bh);
1382 EXT4_I(inode)->i_file_acl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001383
1384cleanup:
1385 brelse(bh);
1386}
1387
1388/*
Mingming Cao617ba132006-10-11 01:20:53 -07001389 * ext4_xattr_put_super()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001390 *
1391 * This is called when a file system is unmounted.
1392 */
1393void
Mingming Cao617ba132006-10-11 01:20:53 -07001394ext4_xattr_put_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001395{
1396 mb_cache_shrink(sb->s_bdev);
1397}
1398
1399/*
Mingming Cao617ba132006-10-11 01:20:53 -07001400 * ext4_xattr_cache_insert()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001401 *
1402 * Create a new entry in the extended attribute cache, and insert
1403 * it unless such an entry is already in the cache.
1404 *
1405 * Returns 0, or a negative error number on failure.
1406 */
1407static void
Mingming Cao617ba132006-10-11 01:20:53 -07001408ext4_xattr_cache_insert(struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001409{
1410 __u32 hash = le32_to_cpu(BHDR(bh)->h_hash);
1411 struct mb_cache_entry *ce;
1412 int error;
1413
Jan Kara335e92e2008-04-15 14:34:43 -07001414 ce = mb_cache_entry_alloc(ext4_xattr_cache, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001415 if (!ce) {
1416 ea_bdebug(bh, "out of memory");
1417 return;
1418 }
Andreas Gruenbacher2aec7c52010-07-19 18:19:41 +02001419 error = mb_cache_entry_insert(ce, bh->b_bdev, bh->b_blocknr, hash);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001420 if (error) {
1421 mb_cache_entry_free(ce);
1422 if (error == -EBUSY) {
1423 ea_bdebug(bh, "already in cache");
1424 error = 0;
1425 }
1426 } else {
1427 ea_bdebug(bh, "inserting [%x]", (int)hash);
1428 mb_cache_entry_release(ce);
1429 }
1430}
1431
1432/*
Mingming Cao617ba132006-10-11 01:20:53 -07001433 * ext4_xattr_cmp()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001434 *
1435 * Compare two extended attribute blocks for equality.
1436 *
1437 * Returns 0 if the blocks are equal, 1 if they differ, and
1438 * a negative error number on errors.
1439 */
1440static int
Mingming Cao617ba132006-10-11 01:20:53 -07001441ext4_xattr_cmp(struct ext4_xattr_header *header1,
1442 struct ext4_xattr_header *header2)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001443{
Mingming Cao617ba132006-10-11 01:20:53 -07001444 struct ext4_xattr_entry *entry1, *entry2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001445
1446 entry1 = ENTRY(header1+1);
1447 entry2 = ENTRY(header2+1);
1448 while (!IS_LAST_ENTRY(entry1)) {
1449 if (IS_LAST_ENTRY(entry2))
1450 return 1;
1451 if (entry1->e_hash != entry2->e_hash ||
1452 entry1->e_name_index != entry2->e_name_index ||
1453 entry1->e_name_len != entry2->e_name_len ||
1454 entry1->e_value_size != entry2->e_value_size ||
1455 memcmp(entry1->e_name, entry2->e_name, entry1->e_name_len))
1456 return 1;
1457 if (entry1->e_value_block != 0 || entry2->e_value_block != 0)
1458 return -EIO;
1459 if (memcmp((char *)header1 + le16_to_cpu(entry1->e_value_offs),
1460 (char *)header2 + le16_to_cpu(entry2->e_value_offs),
1461 le32_to_cpu(entry1->e_value_size)))
1462 return 1;
1463
Mingming Cao617ba132006-10-11 01:20:53 -07001464 entry1 = EXT4_XATTR_NEXT(entry1);
1465 entry2 = EXT4_XATTR_NEXT(entry2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001466 }
1467 if (!IS_LAST_ENTRY(entry2))
1468 return 1;
1469 return 0;
1470}
1471
1472/*
Mingming Cao617ba132006-10-11 01:20:53 -07001473 * ext4_xattr_cache_find()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001474 *
1475 * Find an identical extended attribute block.
1476 *
1477 * Returns a pointer to the block found, or NULL if such a block was
1478 * not found or an error occurred.
1479 */
1480static struct buffer_head *
Mingming Cao617ba132006-10-11 01:20:53 -07001481ext4_xattr_cache_find(struct inode *inode, struct ext4_xattr_header *header,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001482 struct mb_cache_entry **pce)
1483{
1484 __u32 hash = le32_to_cpu(header->h_hash);
1485 struct mb_cache_entry *ce;
1486
1487 if (!header->h_hash)
1488 return NULL; /* never share */
1489 ea_idebug(inode, "looking for cached blocks [%x]", (int)hash);
1490again:
Andreas Gruenbacher2aec7c52010-07-19 18:19:41 +02001491 ce = mb_cache_entry_find_first(ext4_xattr_cache, inode->i_sb->s_bdev,
1492 hash);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001493 while (ce) {
1494 struct buffer_head *bh;
1495
1496 if (IS_ERR(ce)) {
1497 if (PTR_ERR(ce) == -EAGAIN)
1498 goto again;
1499 break;
1500 }
1501 bh = sb_bread(inode->i_sb, ce->e_block);
1502 if (!bh) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001503 EXT4_ERROR_INODE(inode, "block %lu read error",
1504 (unsigned long) ce->e_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001505 } else if (le32_to_cpu(BHDR(bh)->h_refcount) >=
Mingming Cao617ba132006-10-11 01:20:53 -07001506 EXT4_XATTR_REFCOUNT_MAX) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001507 ea_idebug(inode, "block %lu refcount %d>=%d",
1508 (unsigned long) ce->e_block,
1509 le32_to_cpu(BHDR(bh)->h_refcount),
Mingming Cao617ba132006-10-11 01:20:53 -07001510 EXT4_XATTR_REFCOUNT_MAX);
1511 } else if (ext4_xattr_cmp(header, BHDR(bh)) == 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001512 *pce = ce;
1513 return bh;
1514 }
1515 brelse(bh);
Andreas Gruenbacher2aec7c52010-07-19 18:19:41 +02001516 ce = mb_cache_entry_find_next(ce, inode->i_sb->s_bdev, hash);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001517 }
1518 return NULL;
1519}
1520
1521#define NAME_HASH_SHIFT 5
1522#define VALUE_HASH_SHIFT 16
1523
1524/*
Mingming Cao617ba132006-10-11 01:20:53 -07001525 * ext4_xattr_hash_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001526 *
1527 * Compute the hash of an extended attribute.
1528 */
Mingming Cao617ba132006-10-11 01:20:53 -07001529static inline void ext4_xattr_hash_entry(struct ext4_xattr_header *header,
1530 struct ext4_xattr_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001531{
1532 __u32 hash = 0;
1533 char *name = entry->e_name;
1534 int n;
1535
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001536 for (n = 0; n < entry->e_name_len; n++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001537 hash = (hash << NAME_HASH_SHIFT) ^
1538 (hash >> (8*sizeof(hash) - NAME_HASH_SHIFT)) ^
1539 *name++;
1540 }
1541
1542 if (entry->e_value_block == 0 && entry->e_value_size != 0) {
1543 __le32 *value = (__le32 *)((char *)header +
1544 le16_to_cpu(entry->e_value_offs));
1545 for (n = (le32_to_cpu(entry->e_value_size) +
Mingming Cao617ba132006-10-11 01:20:53 -07001546 EXT4_XATTR_ROUND) >> EXT4_XATTR_PAD_BITS; n; n--) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001547 hash = (hash << VALUE_HASH_SHIFT) ^
1548 (hash >> (8*sizeof(hash) - VALUE_HASH_SHIFT)) ^
1549 le32_to_cpu(*value++);
1550 }
1551 }
1552 entry->e_hash = cpu_to_le32(hash);
1553}
1554
1555#undef NAME_HASH_SHIFT
1556#undef VALUE_HASH_SHIFT
1557
1558#define BLOCK_HASH_SHIFT 16
1559
1560/*
Mingming Cao617ba132006-10-11 01:20:53 -07001561 * ext4_xattr_rehash()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001562 *
1563 * Re-compute the extended attribute hash value after an entry has changed.
1564 */
Mingming Cao617ba132006-10-11 01:20:53 -07001565static void ext4_xattr_rehash(struct ext4_xattr_header *header,
1566 struct ext4_xattr_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001567{
Mingming Cao617ba132006-10-11 01:20:53 -07001568 struct ext4_xattr_entry *here;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001569 __u32 hash = 0;
1570
Mingming Cao617ba132006-10-11 01:20:53 -07001571 ext4_xattr_hash_entry(header, entry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001572 here = ENTRY(header+1);
1573 while (!IS_LAST_ENTRY(here)) {
1574 if (!here->e_hash) {
1575 /* Block is not shared if an entry's hash value == 0 */
1576 hash = 0;
1577 break;
1578 }
1579 hash = (hash << BLOCK_HASH_SHIFT) ^
1580 (hash >> (8*sizeof(hash) - BLOCK_HASH_SHIFT)) ^
1581 le32_to_cpu(here->e_hash);
Mingming Cao617ba132006-10-11 01:20:53 -07001582 here = EXT4_XATTR_NEXT(here);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001583 }
1584 header->h_hash = cpu_to_le32(hash);
1585}
1586
1587#undef BLOCK_HASH_SHIFT
1588
1589int __init
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04001590ext4_init_xattr(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001591{
Andreas Gruenbacher2aec7c52010-07-19 18:19:41 +02001592 ext4_xattr_cache = mb_cache_create("ext4_xattr", 6);
Mingming Cao617ba132006-10-11 01:20:53 -07001593 if (!ext4_xattr_cache)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001594 return -ENOMEM;
1595 return 0;
1596}
1597
1598void
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04001599ext4_exit_xattr(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001600{
Mingming Cao617ba132006-10-11 01:20:53 -07001601 if (ext4_xattr_cache)
1602 mb_cache_destroy(ext4_xattr_cache);
1603 ext4_xattr_cache = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001604}