ext4: reclaim extents from extent status tree
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / ext4 / xattr.c
CommitLineData
ac27a0ec 1/*
617ba13b 2 * linux/fs/ext4/xattr.c
ac27a0ec
DK
3 *
4 * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
5 *
6 * Fix by Harrison Xing <harrison@mountainviewdata.com>.
617ba13b 7 * Ext4 code with a lot of help from Eric Jarman <ejarman@acm.org>.
ac27a0ec
DK
8 * 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 * ----------------
617ba13b 46 * EXT4_I(inode)->i_file_acl is protected by EXT4_I(inode)->xattr_sem.
ac27a0ec
DK
47 * 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>
ac27a0ec
DK
56#include <linux/mbcache.h>
57#include <linux/quotaops.h>
58#include <linux/rwsem.h>
3dcf5451
CH
59#include "ext4_jbd2.h"
60#include "ext4.h"
ac27a0ec
DK
61#include "xattr.h"
62#include "acl.h"
63
617ba13b 64#ifdef EXT4_XATTR_DEBUG
ac27a0ec
DK
65# define ea_idebug(inode, f...) do { \
66 printk(KERN_DEBUG "inode %s:%lu: ", \
67 inode->i_sb->s_id, inode->i_ino); \
68 printk(f); \
69 printk("\n"); \
70 } while (0)
71# define ea_bdebug(bh, f...) do { \
72 char b[BDEVNAME_SIZE]; \
73 printk(KERN_DEBUG "block %s:%lu: ", \
74 bdevname(bh->b_bdev, b), \
75 (unsigned long) bh->b_blocknr); \
76 printk(f); \
77 printk("\n"); \
78 } while (0)
79#else
ace36ad4
JP
80# define ea_idebug(inode, fmt, ...) no_printk(fmt, ##__VA_ARGS__)
81# define ea_bdebug(bh, fmt, ...) no_printk(fmt, ##__VA_ARGS__)
ac27a0ec
DK
82#endif
83
617ba13b
MC
84static void ext4_xattr_cache_insert(struct buffer_head *);
85static struct buffer_head *ext4_xattr_cache_find(struct inode *,
86 struct ext4_xattr_header *,
ac27a0ec 87 struct mb_cache_entry **);
617ba13b
MC
88static void ext4_xattr_rehash(struct ext4_xattr_header *,
89 struct ext4_xattr_entry *);
431547b3 90static int ext4_xattr_list(struct dentry *dentry, char *buffer,
d3a95d47 91 size_t buffer_size);
ac27a0ec 92
617ba13b 93static struct mb_cache *ext4_xattr_cache;
ac27a0ec 94
11e27528 95static const struct xattr_handler *ext4_xattr_handler_map[] = {
617ba13b 96 [EXT4_XATTR_INDEX_USER] = &ext4_xattr_user_handler,
03010a33 97#ifdef CONFIG_EXT4_FS_POSIX_ACL
617ba13b
MC
98 [EXT4_XATTR_INDEX_POSIX_ACL_ACCESS] = &ext4_xattr_acl_access_handler,
99 [EXT4_XATTR_INDEX_POSIX_ACL_DEFAULT] = &ext4_xattr_acl_default_handler,
ac27a0ec 100#endif
617ba13b 101 [EXT4_XATTR_INDEX_TRUSTED] = &ext4_xattr_trusted_handler,
03010a33 102#ifdef CONFIG_EXT4_FS_SECURITY
617ba13b 103 [EXT4_XATTR_INDEX_SECURITY] = &ext4_xattr_security_handler,
ac27a0ec
DK
104#endif
105};
106
11e27528 107const struct xattr_handler *ext4_xattr_handlers[] = {
617ba13b
MC
108 &ext4_xattr_user_handler,
109 &ext4_xattr_trusted_handler,
03010a33 110#ifdef CONFIG_EXT4_FS_POSIX_ACL
617ba13b
MC
111 &ext4_xattr_acl_access_handler,
112 &ext4_xattr_acl_default_handler,
ac27a0ec 113#endif
03010a33 114#ifdef CONFIG_EXT4_FS_SECURITY
617ba13b 115 &ext4_xattr_security_handler,
ac27a0ec
DK
116#endif
117 NULL
118};
119
cc8e94fd
DW
120static __le32 ext4_xattr_block_csum(struct inode *inode,
121 sector_t block_nr,
122 struct ext4_xattr_header *hdr)
123{
124 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
cc8e94fd
DW
125 __u32 csum, old;
126
127 old = hdr->h_checksum;
128 hdr->h_checksum = 0;
41eb70dd
TM
129 block_nr = cpu_to_le64(block_nr);
130 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&block_nr,
131 sizeof(block_nr));
cc8e94fd
DW
132 csum = ext4_chksum(sbi, csum, (__u8 *)hdr,
133 EXT4_BLOCK_SIZE(inode->i_sb));
41eb70dd 134
cc8e94fd
DW
135 hdr->h_checksum = old;
136 return cpu_to_le32(csum);
137}
138
139static int ext4_xattr_block_csum_verify(struct inode *inode,
140 sector_t block_nr,
141 struct ext4_xattr_header *hdr)
142{
143 if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
144 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM) &&
145 (hdr->h_checksum != ext4_xattr_block_csum(inode, block_nr, hdr)))
146 return 0;
147 return 1;
148}
149
150static void ext4_xattr_block_csum_set(struct inode *inode,
151 sector_t block_nr,
152 struct ext4_xattr_header *hdr)
153{
154 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
155 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
156 return;
157
158 hdr->h_checksum = ext4_xattr_block_csum(inode, block_nr, hdr);
159}
160
161static inline int ext4_handle_dirty_xattr_block(handle_t *handle,
162 struct inode *inode,
163 struct buffer_head *bh)
164{
165 ext4_xattr_block_csum_set(inode, bh->b_blocknr, BHDR(bh));
166 return ext4_handle_dirty_metadata(handle, inode, bh);
167}
168
11e27528 169static inline const struct xattr_handler *
617ba13b 170ext4_xattr_handler(int name_index)
ac27a0ec 171{
11e27528 172 const struct xattr_handler *handler = NULL;
ac27a0ec 173
617ba13b
MC
174 if (name_index > 0 && name_index < ARRAY_SIZE(ext4_xattr_handler_map))
175 handler = ext4_xattr_handler_map[name_index];
ac27a0ec
DK
176 return handler;
177}
178
179/*
180 * Inode operation listxattr()
181 *
182 * dentry->d_inode->i_mutex: don't care
183 */
184ssize_t
617ba13b 185ext4_listxattr(struct dentry *dentry, char *buffer, size_t size)
ac27a0ec 186{
431547b3 187 return ext4_xattr_list(dentry, buffer, size);
ac27a0ec
DK
188}
189
190static int
617ba13b 191ext4_xattr_check_names(struct ext4_xattr_entry *entry, void *end)
ac27a0ec
DK
192{
193 while (!IS_LAST_ENTRY(entry)) {
617ba13b 194 struct ext4_xattr_entry *next = EXT4_XATTR_NEXT(entry);
ac27a0ec
DK
195 if ((void *)next >= end)
196 return -EIO;
197 entry = next;
198 }
199 return 0;
200}
201
202static inline int
cc8e94fd 203ext4_xattr_check_block(struct inode *inode, struct buffer_head *bh)
ac27a0ec 204{
cc8e94fd
DW
205 int error;
206
207 if (buffer_verified(bh))
208 return 0;
209
617ba13b 210 if (BHDR(bh)->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC) ||
ac27a0ec
DK
211 BHDR(bh)->h_blocks != cpu_to_le32(1))
212 return -EIO;
cc8e94fd
DW
213 if (!ext4_xattr_block_csum_verify(inode, bh->b_blocknr, BHDR(bh)))
214 return -EIO;
215 error = ext4_xattr_check_names(BFIRST(bh), bh->b_data + bh->b_size);
216 if (!error)
217 set_buffer_verified(bh);
218 return error;
ac27a0ec
DK
219}
220
221static inline int
617ba13b 222ext4_xattr_check_entry(struct ext4_xattr_entry *entry, size_t size)
ac27a0ec
DK
223{
224 size_t value_size = le32_to_cpu(entry->e_value_size);
225
226 if (entry->e_value_block != 0 || value_size > size ||
227 le16_to_cpu(entry->e_value_offs) + value_size > size)
228 return -EIO;
229 return 0;
230}
231
232static int
617ba13b 233ext4_xattr_find_entry(struct ext4_xattr_entry **pentry, int name_index,
ac27a0ec
DK
234 const char *name, size_t size, int sorted)
235{
617ba13b 236 struct ext4_xattr_entry *entry;
ac27a0ec
DK
237 size_t name_len;
238 int cmp = 1;
239
240 if (name == NULL)
241 return -EINVAL;
242 name_len = strlen(name);
243 entry = *pentry;
617ba13b 244 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
ac27a0ec
DK
245 cmp = name_index - entry->e_name_index;
246 if (!cmp)
247 cmp = name_len - entry->e_name_len;
248 if (!cmp)
249 cmp = memcmp(name, entry->e_name, name_len);
250 if (cmp <= 0 && (sorted || cmp == 0))
251 break;
252 }
253 *pentry = entry;
617ba13b 254 if (!cmp && ext4_xattr_check_entry(entry, size))
ac27a0ec
DK
255 return -EIO;
256 return cmp ? -ENODATA : 0;
257}
258
259static int
617ba13b 260ext4_xattr_block_get(struct inode *inode, int name_index, const char *name,
ac27a0ec
DK
261 void *buffer, size_t buffer_size)
262{
263 struct buffer_head *bh = NULL;
617ba13b 264 struct ext4_xattr_entry *entry;
ac27a0ec
DK
265 size_t size;
266 int error;
267
268 ea_idebug(inode, "name=%d.%s, buffer=%p, buffer_size=%ld",
269 name_index, name, buffer, (long)buffer_size);
270
271 error = -ENODATA;
617ba13b 272 if (!EXT4_I(inode)->i_file_acl)
ac27a0ec 273 goto cleanup;
ace36ad4
JP
274 ea_idebug(inode, "reading block %llu",
275 (unsigned long long)EXT4_I(inode)->i_file_acl);
617ba13b 276 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
ac27a0ec
DK
277 if (!bh)
278 goto cleanup;
279 ea_bdebug(bh, "b_count=%d, refcount=%d",
280 atomic_read(&(bh->b_count)), le32_to_cpu(BHDR(bh)->h_refcount));
cc8e94fd 281 if (ext4_xattr_check_block(inode, bh)) {
12062ddd 282bad_block:
24676da4
TT
283 EXT4_ERROR_INODE(inode, "bad block %llu",
284 EXT4_I(inode)->i_file_acl);
ac27a0ec
DK
285 error = -EIO;
286 goto cleanup;
287 }
617ba13b 288 ext4_xattr_cache_insert(bh);
ac27a0ec 289 entry = BFIRST(bh);
617ba13b 290 error = ext4_xattr_find_entry(&entry, name_index, name, bh->b_size, 1);
ac27a0ec
DK
291 if (error == -EIO)
292 goto bad_block;
293 if (error)
294 goto cleanup;
295 size = le32_to_cpu(entry->e_value_size);
296 if (buffer) {
297 error = -ERANGE;
298 if (size > buffer_size)
299 goto cleanup;
300 memcpy(buffer, bh->b_data + le16_to_cpu(entry->e_value_offs),
301 size);
302 }
303 error = size;
304
305cleanup:
306 brelse(bh);
307 return error;
308}
309
879b3825 310int
617ba13b 311ext4_xattr_ibody_get(struct inode *inode, int name_index, const char *name,
ac27a0ec
DK
312 void *buffer, size_t buffer_size)
313{
617ba13b
MC
314 struct ext4_xattr_ibody_header *header;
315 struct ext4_xattr_entry *entry;
316 struct ext4_inode *raw_inode;
317 struct ext4_iloc iloc;
ac27a0ec
DK
318 size_t size;
319 void *end;
320 int error;
321
19f5fb7a 322 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
ac27a0ec 323 return -ENODATA;
617ba13b 324 error = ext4_get_inode_loc(inode, &iloc);
ac27a0ec
DK
325 if (error)
326 return error;
617ba13b 327 raw_inode = ext4_raw_inode(&iloc);
ac27a0ec
DK
328 header = IHDR(inode, raw_inode);
329 entry = IFIRST(header);
617ba13b
MC
330 end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
331 error = ext4_xattr_check_names(entry, end);
ac27a0ec
DK
332 if (error)
333 goto cleanup;
617ba13b 334 error = ext4_xattr_find_entry(&entry, name_index, name,
ac27a0ec
DK
335 end - (void *)entry, 0);
336 if (error)
337 goto cleanup;
338 size = le32_to_cpu(entry->e_value_size);
339 if (buffer) {
340 error = -ERANGE;
341 if (size > buffer_size)
342 goto cleanup;
343 memcpy(buffer, (void *)IFIRST(header) +
344 le16_to_cpu(entry->e_value_offs), size);
345 }
346 error = size;
347
348cleanup:
349 brelse(iloc.bh);
350 return error;
351}
352
353/*
617ba13b 354 * ext4_xattr_get()
ac27a0ec
DK
355 *
356 * Copy an extended attribute into the buffer
357 * provided, or compute the buffer size required.
358 * Buffer is NULL to compute the size of the buffer required.
359 *
360 * Returns a negative error number on failure, or the number of bytes
361 * used / required on success.
362 */
363int
617ba13b 364ext4_xattr_get(struct inode *inode, int name_index, const char *name,
ac27a0ec
DK
365 void *buffer, size_t buffer_size)
366{
367 int error;
368
617ba13b
MC
369 down_read(&EXT4_I(inode)->xattr_sem);
370 error = ext4_xattr_ibody_get(inode, name_index, name, buffer,
ac27a0ec
DK
371 buffer_size);
372 if (error == -ENODATA)
617ba13b 373 error = ext4_xattr_block_get(inode, name_index, name, buffer,
ac27a0ec 374 buffer_size);
617ba13b 375 up_read(&EXT4_I(inode)->xattr_sem);
ac27a0ec
DK
376 return error;
377}
378
379static int
431547b3 380ext4_xattr_list_entries(struct dentry *dentry, struct ext4_xattr_entry *entry,
ac27a0ec
DK
381 char *buffer, size_t buffer_size)
382{
383 size_t rest = buffer_size;
384
617ba13b 385 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
11e27528 386 const struct xattr_handler *handler =
617ba13b 387 ext4_xattr_handler(entry->e_name_index);
ac27a0ec
DK
388
389 if (handler) {
431547b3 390 size_t size = handler->list(dentry, buffer, rest,
ac27a0ec 391 entry->e_name,
431547b3
CH
392 entry->e_name_len,
393 handler->flags);
ac27a0ec
DK
394 if (buffer) {
395 if (size > rest)
396 return -ERANGE;
397 buffer += size;
398 }
399 rest -= size;
400 }
401 }
402 return buffer_size - rest;
403}
404
405static int
431547b3 406ext4_xattr_block_list(struct dentry *dentry, char *buffer, size_t buffer_size)
ac27a0ec 407{
431547b3 408 struct inode *inode = dentry->d_inode;
ac27a0ec
DK
409 struct buffer_head *bh = NULL;
410 int error;
411
412 ea_idebug(inode, "buffer=%p, buffer_size=%ld",
413 buffer, (long)buffer_size);
414
415 error = 0;
617ba13b 416 if (!EXT4_I(inode)->i_file_acl)
ac27a0ec 417 goto cleanup;
ace36ad4
JP
418 ea_idebug(inode, "reading block %llu",
419 (unsigned long long)EXT4_I(inode)->i_file_acl);
617ba13b 420 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
ac27a0ec
DK
421 error = -EIO;
422 if (!bh)
423 goto cleanup;
424 ea_bdebug(bh, "b_count=%d, refcount=%d",
425 atomic_read(&(bh->b_count)), le32_to_cpu(BHDR(bh)->h_refcount));
cc8e94fd 426 if (ext4_xattr_check_block(inode, bh)) {
24676da4
TT
427 EXT4_ERROR_INODE(inode, "bad block %llu",
428 EXT4_I(inode)->i_file_acl);
ac27a0ec
DK
429 error = -EIO;
430 goto cleanup;
431 }
617ba13b 432 ext4_xattr_cache_insert(bh);
431547b3 433 error = ext4_xattr_list_entries(dentry, BFIRST(bh), buffer, buffer_size);
ac27a0ec
DK
434
435cleanup:
436 brelse(bh);
437
438 return error;
439}
440
441static int
431547b3 442ext4_xattr_ibody_list(struct dentry *dentry, char *buffer, size_t buffer_size)
ac27a0ec 443{
431547b3 444 struct inode *inode = dentry->d_inode;
617ba13b
MC
445 struct ext4_xattr_ibody_header *header;
446 struct ext4_inode *raw_inode;
447 struct ext4_iloc iloc;
ac27a0ec
DK
448 void *end;
449 int error;
450
19f5fb7a 451 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
ac27a0ec 452 return 0;
617ba13b 453 error = ext4_get_inode_loc(inode, &iloc);
ac27a0ec
DK
454 if (error)
455 return error;
617ba13b 456 raw_inode = ext4_raw_inode(&iloc);
ac27a0ec 457 header = IHDR(inode, raw_inode);
617ba13b
MC
458 end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
459 error = ext4_xattr_check_names(IFIRST(header), end);
ac27a0ec
DK
460 if (error)
461 goto cleanup;
431547b3 462 error = ext4_xattr_list_entries(dentry, IFIRST(header),
ac27a0ec
DK
463 buffer, buffer_size);
464
465cleanup:
466 brelse(iloc.bh);
467 return error;
468}
469
470/*
617ba13b 471 * ext4_xattr_list()
ac27a0ec
DK
472 *
473 * Copy a list of attribute names into the buffer
474 * provided, or compute the buffer size required.
475 * Buffer is NULL to compute the size of the buffer required.
476 *
477 * Returns a negative error number on failure, or the number of bytes
478 * used / required on success.
479 */
d3a95d47 480static int
431547b3 481ext4_xattr_list(struct dentry *dentry, char *buffer, size_t buffer_size)
ac27a0ec 482{
eaeef867 483 int ret, ret2;
ac27a0ec 484
431547b3 485 down_read(&EXT4_I(dentry->d_inode)->xattr_sem);
eaeef867
TT
486 ret = ret2 = ext4_xattr_ibody_list(dentry, buffer, buffer_size);
487 if (ret < 0)
488 goto errout;
489 if (buffer) {
490 buffer += ret;
491 buffer_size -= ret;
ac27a0ec 492 }
eaeef867
TT
493 ret = ext4_xattr_block_list(dentry, buffer, buffer_size);
494 if (ret < 0)
495 goto errout;
496 ret += ret2;
497errout:
431547b3 498 up_read(&EXT4_I(dentry->d_inode)->xattr_sem);
eaeef867 499 return ret;
ac27a0ec
DK
500}
501
502/*
617ba13b 503 * If the EXT4_FEATURE_COMPAT_EXT_ATTR feature of this file system is
ac27a0ec
DK
504 * not set, set it.
505 */
617ba13b 506static void ext4_xattr_update_super_block(handle_t *handle,
ac27a0ec
DK
507 struct super_block *sb)
508{
617ba13b 509 if (EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_EXT_ATTR))
ac27a0ec
DK
510 return;
511
617ba13b 512 if (ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh) == 0) {
ed2908f3 513 EXT4_SET_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_EXT_ATTR);
a0375156 514 ext4_handle_dirty_super(handle, sb);
ac27a0ec 515 }
ac27a0ec
DK
516}
517
518/*
519 * Release the xattr block BH: If the reference count is > 1, decrement
520 * it; otherwise free the block.
521 */
522static void
617ba13b 523ext4_xattr_release_block(handle_t *handle, struct inode *inode,
ac27a0ec
DK
524 struct buffer_head *bh)
525{
526 struct mb_cache_entry *ce = NULL;
8a2bfdcb 527 int error = 0;
ac27a0ec 528
617ba13b 529 ce = mb_cache_entry_get(ext4_xattr_cache, bh->b_bdev, bh->b_blocknr);
8a2bfdcb
MC
530 error = ext4_journal_get_write_access(handle, bh);
531 if (error)
532 goto out;
533
534 lock_buffer(bh);
ac27a0ec
DK
535 if (BHDR(bh)->h_refcount == cpu_to_le32(1)) {
536 ea_bdebug(bh, "refcount now=0; freeing");
537 if (ce)
538 mb_cache_entry_free(ce);
ac27a0ec 539 get_bh(bh);
e6362609
TT
540 ext4_free_blocks(handle, inode, bh, 0, 1,
541 EXT4_FREE_BLOCKS_METADATA |
542 EXT4_FREE_BLOCKS_FORGET);
c1bb05a6 543 unlock_buffer(bh);
ac27a0ec 544 } else {
e8546d06 545 le32_add_cpu(&BHDR(bh)->h_refcount, -1);
c1bb05a6
ES
546 if (ce)
547 mb_cache_entry_release(ce);
548 unlock_buffer(bh);
cc8e94fd 549 error = ext4_handle_dirty_xattr_block(handle, inode, bh);
8a2bfdcb 550 if (IS_SYNC(inode))
0390131b 551 ext4_handle_sync(handle);
5dd4056d 552 dquot_free_block(inode, 1);
8a2bfdcb
MC
553 ea_bdebug(bh, "refcount now=%d; releasing",
554 le32_to_cpu(BHDR(bh)->h_refcount));
ac27a0ec 555 }
8a2bfdcb
MC
556out:
557 ext4_std_error(inode->i_sb, error);
558 return;
ac27a0ec
DK
559}
560
6dd4ee7c
KS
561/*
562 * Find the available free space for EAs. This also returns the total number of
563 * bytes used by EA entries.
564 */
565static size_t ext4_xattr_free_space(struct ext4_xattr_entry *last,
566 size_t *min_offs, void *base, int *total)
567{
568 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
569 *total += EXT4_XATTR_LEN(last->e_name_len);
570 if (!last->e_value_block && last->e_value_size) {
571 size_t offs = le16_to_cpu(last->e_value_offs);
572 if (offs < *min_offs)
573 *min_offs = offs;
574 }
575 }
576 return (*min_offs - ((void *)last - base) - sizeof(__u32));
577}
578
ac27a0ec 579static int
617ba13b 580ext4_xattr_set_entry(struct ext4_xattr_info *i, struct ext4_xattr_search *s)
ac27a0ec 581{
617ba13b 582 struct ext4_xattr_entry *last;
ac27a0ec
DK
583 size_t free, min_offs = s->end - s->base, name_len = strlen(i->name);
584
585 /* Compute min_offs and last. */
586 last = s->first;
617ba13b 587 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
ac27a0ec
DK
588 if (!last->e_value_block && last->e_value_size) {
589 size_t offs = le16_to_cpu(last->e_value_offs);
590 if (offs < min_offs)
591 min_offs = offs;
592 }
593 }
594 free = min_offs - ((void *)last - s->base) - sizeof(__u32);
595 if (!s->not_found) {
596 if (!s->here->e_value_block && s->here->e_value_size) {
597 size_t size = le32_to_cpu(s->here->e_value_size);
617ba13b 598 free += EXT4_XATTR_SIZE(size);
ac27a0ec 599 }
617ba13b 600 free += EXT4_XATTR_LEN(name_len);
ac27a0ec
DK
601 }
602 if (i->value) {
617ba13b
MC
603 if (free < EXT4_XATTR_SIZE(i->value_len) ||
604 free < EXT4_XATTR_LEN(name_len) +
605 EXT4_XATTR_SIZE(i->value_len))
ac27a0ec
DK
606 return -ENOSPC;
607 }
608
609 if (i->value && s->not_found) {
610 /* Insert the new name. */
617ba13b 611 size_t size = EXT4_XATTR_LEN(name_len);
ac27a0ec
DK
612 size_t rest = (void *)last - (void *)s->here + sizeof(__u32);
613 memmove((void *)s->here + size, s->here, rest);
614 memset(s->here, 0, size);
615 s->here->e_name_index = i->name_index;
616 s->here->e_name_len = name_len;
617 memcpy(s->here->e_name, i->name, name_len);
618 } else {
619 if (!s->here->e_value_block && s->here->e_value_size) {
620 void *first_val = s->base + min_offs;
621 size_t offs = le16_to_cpu(s->here->e_value_offs);
622 void *val = s->base + offs;
617ba13b 623 size_t size = EXT4_XATTR_SIZE(
ac27a0ec
DK
624 le32_to_cpu(s->here->e_value_size));
625
617ba13b 626 if (i->value && size == EXT4_XATTR_SIZE(i->value_len)) {
ac27a0ec
DK
627 /* The old and the new value have the same
628 size. Just replace. */
629 s->here->e_value_size =
630 cpu_to_le32(i->value_len);
bd9926e8
TT
631 if (i->value == EXT4_ZERO_XATTR_VALUE) {
632 memset(val, 0, size);
633 } else {
634 /* Clear pad bytes first. */
635 memset(val + size - EXT4_XATTR_PAD, 0,
636 EXT4_XATTR_PAD);
637 memcpy(val, i->value, i->value_len);
638 }
ac27a0ec
DK
639 return 0;
640 }
641
642 /* Remove the old value. */
643 memmove(first_val + size, first_val, val - first_val);
644 memset(first_val, 0, size);
645 s->here->e_value_size = 0;
646 s->here->e_value_offs = 0;
647 min_offs += size;
648
649 /* Adjust all value offsets. */
650 last = s->first;
651 while (!IS_LAST_ENTRY(last)) {
652 size_t o = le16_to_cpu(last->e_value_offs);
653 if (!last->e_value_block &&
654 last->e_value_size && o < offs)
655 last->e_value_offs =
656 cpu_to_le16(o + size);
617ba13b 657 last = EXT4_XATTR_NEXT(last);
ac27a0ec
DK
658 }
659 }
660 if (!i->value) {
661 /* Remove the old name. */
617ba13b 662 size_t size = EXT4_XATTR_LEN(name_len);
ac27a0ec
DK
663 last = ENTRY((void *)last - size);
664 memmove(s->here, (void *)s->here + size,
665 (void *)last - (void *)s->here + sizeof(__u32));
666 memset(last, 0, size);
667 }
668 }
669
670 if (i->value) {
671 /* Insert the new value. */
672 s->here->e_value_size = cpu_to_le32(i->value_len);
673 if (i->value_len) {
617ba13b 674 size_t size = EXT4_XATTR_SIZE(i->value_len);
ac27a0ec
DK
675 void *val = s->base + min_offs - size;
676 s->here->e_value_offs = cpu_to_le16(min_offs - size);
bd9926e8
TT
677 if (i->value == EXT4_ZERO_XATTR_VALUE) {
678 memset(val, 0, size);
679 } else {
680 /* Clear the pad bytes first. */
681 memset(val + size - EXT4_XATTR_PAD, 0,
682 EXT4_XATTR_PAD);
683 memcpy(val, i->value, i->value_len);
684 }
ac27a0ec
DK
685 }
686 }
687 return 0;
688}
689
617ba13b
MC
690struct ext4_xattr_block_find {
691 struct ext4_xattr_search s;
ac27a0ec
DK
692 struct buffer_head *bh;
693};
694
695static int
617ba13b
MC
696ext4_xattr_block_find(struct inode *inode, struct ext4_xattr_info *i,
697 struct ext4_xattr_block_find *bs)
ac27a0ec
DK
698{
699 struct super_block *sb = inode->i_sb;
700 int error;
701
702 ea_idebug(inode, "name=%d.%s, value=%p, value_len=%ld",
703 i->name_index, i->name, i->value, (long)i->value_len);
704
617ba13b 705 if (EXT4_I(inode)->i_file_acl) {
ac27a0ec 706 /* The inode already has an extended attribute block. */
617ba13b 707 bs->bh = sb_bread(sb, EXT4_I(inode)->i_file_acl);
ac27a0ec
DK
708 error = -EIO;
709 if (!bs->bh)
710 goto cleanup;
711 ea_bdebug(bs->bh, "b_count=%d, refcount=%d",
712 atomic_read(&(bs->bh->b_count)),
713 le32_to_cpu(BHDR(bs->bh)->h_refcount));
cc8e94fd 714 if (ext4_xattr_check_block(inode, bs->bh)) {
24676da4
TT
715 EXT4_ERROR_INODE(inode, "bad block %llu",
716 EXT4_I(inode)->i_file_acl);
ac27a0ec
DK
717 error = -EIO;
718 goto cleanup;
719 }
720 /* Find the named attribute. */
721 bs->s.base = BHDR(bs->bh);
722 bs->s.first = BFIRST(bs->bh);
723 bs->s.end = bs->bh->b_data + bs->bh->b_size;
724 bs->s.here = bs->s.first;
617ba13b 725 error = ext4_xattr_find_entry(&bs->s.here, i->name_index,
ac27a0ec
DK
726 i->name, bs->bh->b_size, 1);
727 if (error && error != -ENODATA)
728 goto cleanup;
729 bs->s.not_found = error;
730 }
731 error = 0;
732
733cleanup:
734 return error;
735}
736
737static int
617ba13b
MC
738ext4_xattr_block_set(handle_t *handle, struct inode *inode,
739 struct ext4_xattr_info *i,
740 struct ext4_xattr_block_find *bs)
ac27a0ec
DK
741{
742 struct super_block *sb = inode->i_sb;
743 struct buffer_head *new_bh = NULL;
617ba13b 744 struct ext4_xattr_search *s = &bs->s;
ac27a0ec 745 struct mb_cache_entry *ce = NULL;
8a2bfdcb 746 int error = 0;
ac27a0ec 747
617ba13b 748#define header(x) ((struct ext4_xattr_header *)(x))
ac27a0ec
DK
749
750 if (i->value && i->value_len > sb->s_blocksize)
751 return -ENOSPC;
752 if (s->base) {
617ba13b 753 ce = mb_cache_entry_get(ext4_xattr_cache, bs->bh->b_bdev,
ac27a0ec 754 bs->bh->b_blocknr);
8a2bfdcb
MC
755 error = ext4_journal_get_write_access(handle, bs->bh);
756 if (error)
757 goto cleanup;
758 lock_buffer(bs->bh);
759
ac27a0ec
DK
760 if (header(s->base)->h_refcount == cpu_to_le32(1)) {
761 if (ce) {
762 mb_cache_entry_free(ce);
763 ce = NULL;
764 }
765 ea_bdebug(bs->bh, "modifying in-place");
617ba13b 766 error = ext4_xattr_set_entry(i, s);
ac27a0ec
DK
767 if (!error) {
768 if (!IS_LAST_ENTRY(s->first))
617ba13b 769 ext4_xattr_rehash(header(s->base),
ac27a0ec 770 s->here);
617ba13b 771 ext4_xattr_cache_insert(bs->bh);
ac27a0ec
DK
772 }
773 unlock_buffer(bs->bh);
774 if (error == -EIO)
775 goto bad_block;
776 if (!error)
cc8e94fd
DW
777 error = ext4_handle_dirty_xattr_block(handle,
778 inode,
779 bs->bh);
ac27a0ec
DK
780 if (error)
781 goto cleanup;
782 goto inserted;
783 } else {
784 int offset = (char *)s->here - bs->bh->b_data;
785
8a2bfdcb 786 unlock_buffer(bs->bh);
ac27a0ec
DK
787 if (ce) {
788 mb_cache_entry_release(ce);
789 ce = NULL;
790 }
791 ea_bdebug(bs->bh, "cloning");
216553c4 792 s->base = kmalloc(bs->bh->b_size, GFP_NOFS);
ac27a0ec
DK
793 error = -ENOMEM;
794 if (s->base == NULL)
795 goto cleanup;
796 memcpy(s->base, BHDR(bs->bh), bs->bh->b_size);
797 s->first = ENTRY(header(s->base)+1);
798 header(s->base)->h_refcount = cpu_to_le32(1);
799 s->here = ENTRY(s->base + offset);
800 s->end = s->base + bs->bh->b_size;
801 }
802 } else {
803 /* Allocate a buffer where we construct the new block. */
216553c4 804 s->base = kzalloc(sb->s_blocksize, GFP_NOFS);
ac27a0ec
DK
805 /* assert(header == s->base) */
806 error = -ENOMEM;
807 if (s->base == NULL)
808 goto cleanup;
617ba13b 809 header(s->base)->h_magic = cpu_to_le32(EXT4_XATTR_MAGIC);
ac27a0ec
DK
810 header(s->base)->h_blocks = cpu_to_le32(1);
811 header(s->base)->h_refcount = cpu_to_le32(1);
812 s->first = ENTRY(header(s->base)+1);
813 s->here = ENTRY(header(s->base)+1);
814 s->end = s->base + sb->s_blocksize;
815 }
816
617ba13b 817 error = ext4_xattr_set_entry(i, s);
ac27a0ec
DK
818 if (error == -EIO)
819 goto bad_block;
820 if (error)
821 goto cleanup;
822 if (!IS_LAST_ENTRY(s->first))
617ba13b 823 ext4_xattr_rehash(header(s->base), s->here);
ac27a0ec
DK
824
825inserted:
826 if (!IS_LAST_ENTRY(s->first)) {
617ba13b 827 new_bh = ext4_xattr_cache_find(inode, header(s->base), &ce);
ac27a0ec
DK
828 if (new_bh) {
829 /* We found an identical block in the cache. */
830 if (new_bh == bs->bh)
831 ea_bdebug(new_bh, "keeping");
832 else {
833 /* The old block is released after updating
834 the inode. */
5dd4056d
CH
835 error = dquot_alloc_block(inode, 1);
836 if (error)
ac27a0ec 837 goto cleanup;
617ba13b 838 error = ext4_journal_get_write_access(handle,
ac27a0ec
DK
839 new_bh);
840 if (error)
841 goto cleanup_dquot;
842 lock_buffer(new_bh);
e8546d06 843 le32_add_cpu(&BHDR(new_bh)->h_refcount, 1);
ac27a0ec
DK
844 ea_bdebug(new_bh, "reusing; refcount now=%d",
845 le32_to_cpu(BHDR(new_bh)->h_refcount));
846 unlock_buffer(new_bh);
cc8e94fd
DW
847 error = ext4_handle_dirty_xattr_block(handle,
848 inode,
849 new_bh);
ac27a0ec
DK
850 if (error)
851 goto cleanup_dquot;
852 }
853 mb_cache_entry_release(ce);
854 ce = NULL;
855 } else if (bs->bh && s->base == bs->bh->b_data) {
856 /* We were modifying this block in-place. */
857 ea_bdebug(bs->bh, "keeping this block");
858 new_bh = bs->bh;
859 get_bh(new_bh);
860 } else {
861 /* We need to allocate a new block */
fb0a387d
ES
862 ext4_fsblk_t goal, block;
863
864 goal = ext4_group_first_block_no(sb,
d00a6d7b 865 EXT4_I(inode)->i_block_group);
fb0a387d
ES
866
867 /* non-extent files can't have physical blocks past 2^32 */
12e9b892 868 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
fb0a387d
ES
869 goal = goal & EXT4_MAX_BLOCK_FILE_PHYS;
870
6d6a4351
ES
871 /*
872 * take i_data_sem because we will test
873 * i_delalloc_reserved_flag in ext4_mb_new_blocks
874 */
875 down_read((&EXT4_I(inode)->i_data_sem));
55f020db
AH
876 block = ext4_new_meta_blocks(handle, inode, goal, 0,
877 NULL, &error);
6d6a4351 878 up_read((&EXT4_I(inode)->i_data_sem));
ac27a0ec
DK
879 if (error)
880 goto cleanup;
fb0a387d 881
12e9b892 882 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
fb0a387d
ES
883 BUG_ON(block > EXT4_MAX_BLOCK_FILE_PHYS);
884
ace36ad4
JP
885 ea_idebug(inode, "creating block %llu",
886 (unsigned long long)block);
ac27a0ec
DK
887
888 new_bh = sb_getblk(sb, block);
aebf0243 889 if (unlikely(!new_bh)) {
860d21e2 890 error = -ENOMEM;
ac27a0ec 891getblk_failed:
7dc57615 892 ext4_free_blocks(handle, inode, NULL, block, 1,
e6362609 893 EXT4_FREE_BLOCKS_METADATA);
ac27a0ec
DK
894 goto cleanup;
895 }
896 lock_buffer(new_bh);
617ba13b 897 error = ext4_journal_get_create_access(handle, new_bh);
ac27a0ec
DK
898 if (error) {
899 unlock_buffer(new_bh);
860d21e2 900 error = -EIO;
ac27a0ec
DK
901 goto getblk_failed;
902 }
903 memcpy(new_bh->b_data, s->base, new_bh->b_size);
904 set_buffer_uptodate(new_bh);
905 unlock_buffer(new_bh);
617ba13b 906 ext4_xattr_cache_insert(new_bh);
cc8e94fd
DW
907 error = ext4_handle_dirty_xattr_block(handle,
908 inode, new_bh);
ac27a0ec
DK
909 if (error)
910 goto cleanup;
911 }
912 }
913
914 /* Update the inode. */
617ba13b 915 EXT4_I(inode)->i_file_acl = new_bh ? new_bh->b_blocknr : 0;
ac27a0ec
DK
916
917 /* Drop the previous xattr block. */
918 if (bs->bh && bs->bh != new_bh)
617ba13b 919 ext4_xattr_release_block(handle, inode, bs->bh);
ac27a0ec
DK
920 error = 0;
921
922cleanup:
923 if (ce)
924 mb_cache_entry_release(ce);
925 brelse(new_bh);
926 if (!(bs->bh && s->base == bs->bh->b_data))
927 kfree(s->base);
928
929 return error;
930
931cleanup_dquot:
5dd4056d 932 dquot_free_block(inode, 1);
ac27a0ec
DK
933 goto cleanup;
934
935bad_block:
24676da4
TT
936 EXT4_ERROR_INODE(inode, "bad block %llu",
937 EXT4_I(inode)->i_file_acl);
ac27a0ec
DK
938 goto cleanup;
939
940#undef header
941}
942
879b3825
TM
943int ext4_xattr_ibody_find(struct inode *inode, struct ext4_xattr_info *i,
944 struct ext4_xattr_ibody_find *is)
ac27a0ec 945{
617ba13b
MC
946 struct ext4_xattr_ibody_header *header;
947 struct ext4_inode *raw_inode;
ac27a0ec
DK
948 int error;
949
617ba13b 950 if (EXT4_I(inode)->i_extra_isize == 0)
ac27a0ec 951 return 0;
617ba13b 952 raw_inode = ext4_raw_inode(&is->iloc);
ac27a0ec
DK
953 header = IHDR(inode, raw_inode);
954 is->s.base = is->s.first = IFIRST(header);
955 is->s.here = is->s.first;
617ba13b 956 is->s.end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
19f5fb7a 957 if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
617ba13b 958 error = ext4_xattr_check_names(IFIRST(header), is->s.end);
ac27a0ec
DK
959 if (error)
960 return error;
961 /* Find the named attribute. */
617ba13b 962 error = ext4_xattr_find_entry(&is->s.here, i->name_index,
ac27a0ec
DK
963 i->name, is->s.end -
964 (void *)is->s.base, 0);
965 if (error && error != -ENODATA)
966 return error;
967 is->s.not_found = error;
968 }
969 return 0;
970}
971
0d812f77
TM
972int ext4_xattr_ibody_inline_set(handle_t *handle, struct inode *inode,
973 struct ext4_xattr_info *i,
974 struct ext4_xattr_ibody_find *is)
975{
976 struct ext4_xattr_ibody_header *header;
977 struct ext4_xattr_search *s = &is->s;
978 int error;
979
980 if (EXT4_I(inode)->i_extra_isize == 0)
981 return -ENOSPC;
982 error = ext4_xattr_set_entry(i, s);
983 if (error) {
984 if (error == -ENOSPC &&
985 ext4_has_inline_data(inode)) {
986 error = ext4_try_to_evict_inline_data(handle, inode,
987 EXT4_XATTR_LEN(strlen(i->name) +
988 EXT4_XATTR_SIZE(i->value_len)));
989 if (error)
990 return error;
991 error = ext4_xattr_ibody_find(inode, i, is);
992 if (error)
993 return error;
994 error = ext4_xattr_set_entry(i, s);
995 }
996 if (error)
997 return error;
998 }
999 header = IHDR(inode, ext4_raw_inode(&is->iloc));
1000 if (!IS_LAST_ENTRY(s->first)) {
1001 header->h_magic = cpu_to_le32(EXT4_XATTR_MAGIC);
1002 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
1003 } else {
1004 header->h_magic = cpu_to_le32(0);
1005 ext4_clear_inode_state(inode, EXT4_STATE_XATTR);
1006 }
1007 return 0;
1008}
1009
1010static int ext4_xattr_ibody_set(handle_t *handle, struct inode *inode,
1011 struct ext4_xattr_info *i,
1012 struct ext4_xattr_ibody_find *is)
ac27a0ec 1013{
617ba13b
MC
1014 struct ext4_xattr_ibody_header *header;
1015 struct ext4_xattr_search *s = &is->s;
ac27a0ec
DK
1016 int error;
1017
617ba13b 1018 if (EXT4_I(inode)->i_extra_isize == 0)
ac27a0ec 1019 return -ENOSPC;
617ba13b 1020 error = ext4_xattr_set_entry(i, s);
ac27a0ec
DK
1021 if (error)
1022 return error;
617ba13b 1023 header = IHDR(inode, ext4_raw_inode(&is->iloc));
ac27a0ec 1024 if (!IS_LAST_ENTRY(s->first)) {
617ba13b 1025 header->h_magic = cpu_to_le32(EXT4_XATTR_MAGIC);
19f5fb7a 1026 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
ac27a0ec
DK
1027 } else {
1028 header->h_magic = cpu_to_le32(0);
19f5fb7a 1029 ext4_clear_inode_state(inode, EXT4_STATE_XATTR);
ac27a0ec
DK
1030 }
1031 return 0;
1032}
1033
1034/*
617ba13b 1035 * ext4_xattr_set_handle()
ac27a0ec 1036 *
6e9510b0 1037 * Create, replace or remove an extended attribute for this inode. Value
ac27a0ec
DK
1038 * is NULL to remove an existing extended attribute, and non-NULL to
1039 * either replace an existing extended attribute, or create a new extended
1040 * attribute. The flags XATTR_REPLACE and XATTR_CREATE
1041 * specify that an extended attribute must exist and must not exist
1042 * previous to the call, respectively.
1043 *
1044 * Returns 0, or a negative error number on failure.
1045 */
1046int
617ba13b 1047ext4_xattr_set_handle(handle_t *handle, struct inode *inode, int name_index,
ac27a0ec
DK
1048 const char *name, const void *value, size_t value_len,
1049 int flags)
1050{
617ba13b 1051 struct ext4_xattr_info i = {
ac27a0ec
DK
1052 .name_index = name_index,
1053 .name = name,
1054 .value = value,
1055 .value_len = value_len,
1056
1057 };
617ba13b 1058 struct ext4_xattr_ibody_find is = {
ac27a0ec
DK
1059 .s = { .not_found = -ENODATA, },
1060 };
617ba13b 1061 struct ext4_xattr_block_find bs = {
ac27a0ec
DK
1062 .s = { .not_found = -ENODATA, },
1063 };
4d20c685 1064 unsigned long no_expand;
ac27a0ec
DK
1065 int error;
1066
1067 if (!name)
1068 return -EINVAL;
1069 if (strlen(name) > 255)
1070 return -ERANGE;
617ba13b 1071 down_write(&EXT4_I(inode)->xattr_sem);
19f5fb7a
TT
1072 no_expand = ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND);
1073 ext4_set_inode_state(inode, EXT4_STATE_NO_EXPAND);
4d20c685 1074
66543617 1075 error = ext4_reserve_inode_write(handle, inode, &is.iloc);
86ebfd08
ES
1076 if (error)
1077 goto cleanup;
1078
19f5fb7a 1079 if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) {
617ba13b
MC
1080 struct ext4_inode *raw_inode = ext4_raw_inode(&is.iloc);
1081 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
19f5fb7a 1082 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
ac27a0ec
DK
1083 }
1084
617ba13b 1085 error = ext4_xattr_ibody_find(inode, &i, &is);
ac27a0ec
DK
1086 if (error)
1087 goto cleanup;
1088 if (is.s.not_found)
617ba13b 1089 error = ext4_xattr_block_find(inode, &i, &bs);
ac27a0ec
DK
1090 if (error)
1091 goto cleanup;
1092 if (is.s.not_found && bs.s.not_found) {
1093 error = -ENODATA;
1094 if (flags & XATTR_REPLACE)
1095 goto cleanup;
1096 error = 0;
1097 if (!value)
1098 goto cleanup;
1099 } else {
1100 error = -EEXIST;
1101 if (flags & XATTR_CREATE)
1102 goto cleanup;
1103 }
ac27a0ec
DK
1104 if (!value) {
1105 if (!is.s.not_found)
617ba13b 1106 error = ext4_xattr_ibody_set(handle, inode, &i, &is);
ac27a0ec 1107 else if (!bs.s.not_found)
617ba13b 1108 error = ext4_xattr_block_set(handle, inode, &i, &bs);
ac27a0ec 1109 } else {
617ba13b 1110 error = ext4_xattr_ibody_set(handle, inode, &i, &is);
ac27a0ec
DK
1111 if (!error && !bs.s.not_found) {
1112 i.value = NULL;
617ba13b 1113 error = ext4_xattr_block_set(handle, inode, &i, &bs);
ac27a0ec 1114 } else if (error == -ENOSPC) {
7e01c8e5
TY
1115 if (EXT4_I(inode)->i_file_acl && !bs.s.base) {
1116 error = ext4_xattr_block_find(inode, &i, &bs);
1117 if (error)
1118 goto cleanup;
1119 }
617ba13b 1120 error = ext4_xattr_block_set(handle, inode, &i, &bs);
ac27a0ec
DK
1121 if (error)
1122 goto cleanup;
1123 if (!is.s.not_found) {
1124 i.value = NULL;
617ba13b 1125 error = ext4_xattr_ibody_set(handle, inode, &i,
ac27a0ec
DK
1126 &is);
1127 }
1128 }
1129 }
1130 if (!error) {
617ba13b 1131 ext4_xattr_update_super_block(handle, inode->i_sb);
ef7f3835 1132 inode->i_ctime = ext4_current_time(inode);
6dd4ee7c 1133 if (!value)
19f5fb7a 1134 ext4_clear_inode_state(inode, EXT4_STATE_NO_EXPAND);
617ba13b 1135 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
ac27a0ec 1136 /*
617ba13b 1137 * The bh is consumed by ext4_mark_iloc_dirty, even with
ac27a0ec
DK
1138 * error != 0.
1139 */
1140 is.iloc.bh = NULL;
1141 if (IS_SYNC(inode))
0390131b 1142 ext4_handle_sync(handle);
ac27a0ec
DK
1143 }
1144
1145cleanup:
1146 brelse(is.iloc.bh);
1147 brelse(bs.bh);
4d20c685 1148 if (no_expand == 0)
19f5fb7a 1149 ext4_clear_inode_state(inode, EXT4_STATE_NO_EXPAND);
617ba13b 1150 up_write(&EXT4_I(inode)->xattr_sem);
ac27a0ec
DK
1151 return error;
1152}
1153
1154/*
617ba13b 1155 * ext4_xattr_set()
ac27a0ec 1156 *
617ba13b 1157 * Like ext4_xattr_set_handle, but start from an inode. This extended
ac27a0ec
DK
1158 * attribute modification is a filesystem transaction by itself.
1159 *
1160 * Returns 0, or a negative error number on failure.
1161 */
1162int
617ba13b 1163ext4_xattr_set(struct inode *inode, int name_index, const char *name,
ac27a0ec
DK
1164 const void *value, size_t value_len, int flags)
1165{
1166 handle_t *handle;
1167 int error, retries = 0;
95eaefbd 1168 int credits = ext4_jbd2_credits_xattr(inode);
ac27a0ec
DK
1169
1170retry:
9924a92a 1171 handle = ext4_journal_start(inode, EXT4_HT_XATTR, credits);
ac27a0ec
DK
1172 if (IS_ERR(handle)) {
1173 error = PTR_ERR(handle);
1174 } else {
1175 int error2;
1176
617ba13b 1177 error = ext4_xattr_set_handle(handle, inode, name_index, name,
ac27a0ec 1178 value, value_len, flags);
617ba13b 1179 error2 = ext4_journal_stop(handle);
ac27a0ec 1180 if (error == -ENOSPC &&
617ba13b 1181 ext4_should_retry_alloc(inode->i_sb, &retries))
ac27a0ec
DK
1182 goto retry;
1183 if (error == 0)
1184 error = error2;
1185 }
1186
1187 return error;
1188}
1189
6dd4ee7c
KS
1190/*
1191 * Shift the EA entries in the inode to create space for the increased
1192 * i_extra_isize.
1193 */
1194static void ext4_xattr_shift_entries(struct ext4_xattr_entry *entry,
1195 int value_offs_shift, void *to,
1196 void *from, size_t n, int blocksize)
1197{
1198 struct ext4_xattr_entry *last = entry;
1199 int new_offs;
1200
1201 /* Adjust the value offsets of the entries */
1202 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
1203 if (!last->e_value_block && last->e_value_size) {
1204 new_offs = le16_to_cpu(last->e_value_offs) +
1205 value_offs_shift;
1206 BUG_ON(new_offs + le32_to_cpu(last->e_value_size)
1207 > blocksize);
1208 last->e_value_offs = cpu_to_le16(new_offs);
1209 }
1210 }
1211 /* Shift the entries by n bytes */
1212 memmove(to, from, n);
1213}
1214
1215/*
1216 * Expand an inode by new_extra_isize bytes when EAs are present.
1217 * Returns 0 on success or negative error number on failure.
1218 */
1219int ext4_expand_extra_isize_ea(struct inode *inode, int new_extra_isize,
1220 struct ext4_inode *raw_inode, handle_t *handle)
1221{
1222 struct ext4_xattr_ibody_header *header;
1223 struct ext4_xattr_entry *entry, *last, *first;
1224 struct buffer_head *bh = NULL;
1225 struct ext4_xattr_ibody_find *is = NULL;
1226 struct ext4_xattr_block_find *bs = NULL;
1227 char *buffer = NULL, *b_entry_name = NULL;
1228 size_t min_offs, free;
1229 int total_ino, total_blk;
1230 void *base, *start, *end;
1231 int extra_isize = 0, error = 0, tried_min_extra_isize = 0;
ac39849d 1232 int s_min_extra_isize = le16_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_min_extra_isize);
6dd4ee7c
KS
1233
1234 down_write(&EXT4_I(inode)->xattr_sem);
1235retry:
1236 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize) {
1237 up_write(&EXT4_I(inode)->xattr_sem);
1238 return 0;
1239 }
1240
1241 header = IHDR(inode, raw_inode);
1242 entry = IFIRST(header);
1243
1244 /*
1245 * Check if enough free space is available in the inode to shift the
1246 * entries ahead by new_extra_isize.
1247 */
1248
1249 base = start = entry;
1250 end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
1251 min_offs = end - base;
1252 last = entry;
1253 total_ino = sizeof(struct ext4_xattr_ibody_header);
1254
1255 free = ext4_xattr_free_space(last, &min_offs, base, &total_ino);
1256 if (free >= new_extra_isize) {
1257 entry = IFIRST(header);
1258 ext4_xattr_shift_entries(entry, EXT4_I(inode)->i_extra_isize
1259 - new_extra_isize, (void *)raw_inode +
1260 EXT4_GOOD_OLD_INODE_SIZE + new_extra_isize,
1261 (void *)header, total_ino,
1262 inode->i_sb->s_blocksize);
1263 EXT4_I(inode)->i_extra_isize = new_extra_isize;
1264 error = 0;
1265 goto cleanup;
1266 }
1267
1268 /*
1269 * Enough free space isn't available in the inode, check if
1270 * EA block can hold new_extra_isize bytes.
1271 */
1272 if (EXT4_I(inode)->i_file_acl) {
1273 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
1274 error = -EIO;
1275 if (!bh)
1276 goto cleanup;
cc8e94fd 1277 if (ext4_xattr_check_block(inode, bh)) {
24676da4
TT
1278 EXT4_ERROR_INODE(inode, "bad block %llu",
1279 EXT4_I(inode)->i_file_acl);
6dd4ee7c
KS
1280 error = -EIO;
1281 goto cleanup;
1282 }
1283 base = BHDR(bh);
1284 first = BFIRST(bh);
1285 end = bh->b_data + bh->b_size;
1286 min_offs = end - base;
1287 free = ext4_xattr_free_space(first, &min_offs, base,
1288 &total_blk);
1289 if (free < new_extra_isize) {
1290 if (!tried_min_extra_isize && s_min_extra_isize) {
1291 tried_min_extra_isize++;
1292 new_extra_isize = s_min_extra_isize;
1293 brelse(bh);
1294 goto retry;
1295 }
1296 error = -1;
1297 goto cleanup;
1298 }
1299 } else {
1300 free = inode->i_sb->s_blocksize;
1301 }
1302
1303 while (new_extra_isize > 0) {
1304 size_t offs, size, entry_size;
1305 struct ext4_xattr_entry *small_entry = NULL;
1306 struct ext4_xattr_info i = {
1307 .value = NULL,
1308 .value_len = 0,
1309 };
1310 unsigned int total_size; /* EA entry size + value size */
1311 unsigned int shift_bytes; /* No. of bytes to shift EAs by? */
1312 unsigned int min_total_size = ~0U;
1313
1314 is = kzalloc(sizeof(struct ext4_xattr_ibody_find), GFP_NOFS);
1315 bs = kzalloc(sizeof(struct ext4_xattr_block_find), GFP_NOFS);
1316 if (!is || !bs) {
1317 error = -ENOMEM;
1318 goto cleanup;
1319 }
1320
1321 is->s.not_found = -ENODATA;
1322 bs->s.not_found = -ENODATA;
1323 is->iloc.bh = NULL;
1324 bs->bh = NULL;
1325
1326 last = IFIRST(header);
1327 /* Find the entry best suited to be pushed into EA block */
1328 entry = NULL;
1329 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
1330 total_size =
1331 EXT4_XATTR_SIZE(le32_to_cpu(last->e_value_size)) +
1332 EXT4_XATTR_LEN(last->e_name_len);
1333 if (total_size <= free && total_size < min_total_size) {
1334 if (total_size < new_extra_isize) {
1335 small_entry = last;
1336 } else {
1337 entry = last;
1338 min_total_size = total_size;
1339 }
1340 }
1341 }
1342
1343 if (entry == NULL) {
1344 if (small_entry) {
1345 entry = small_entry;
1346 } else {
1347 if (!tried_min_extra_isize &&
1348 s_min_extra_isize) {
1349 tried_min_extra_isize++;
1350 new_extra_isize = s_min_extra_isize;
1351 goto retry;
1352 }
1353 error = -1;
1354 goto cleanup;
1355 }
1356 }
1357 offs = le16_to_cpu(entry->e_value_offs);
1358 size = le32_to_cpu(entry->e_value_size);
1359 entry_size = EXT4_XATTR_LEN(entry->e_name_len);
1360 i.name_index = entry->e_name_index,
1361 buffer = kmalloc(EXT4_XATTR_SIZE(size), GFP_NOFS);
1362 b_entry_name = kmalloc(entry->e_name_len + 1, GFP_NOFS);
1363 if (!buffer || !b_entry_name) {
1364 error = -ENOMEM;
1365 goto cleanup;
1366 }
1367 /* Save the entry name and the entry value */
1368 memcpy(buffer, (void *)IFIRST(header) + offs,
1369 EXT4_XATTR_SIZE(size));
1370 memcpy(b_entry_name, entry->e_name, entry->e_name_len);
1371 b_entry_name[entry->e_name_len] = '\0';
1372 i.name = b_entry_name;
1373
1374 error = ext4_get_inode_loc(inode, &is->iloc);
1375 if (error)
1376 goto cleanup;
1377
1378 error = ext4_xattr_ibody_find(inode, &i, is);
1379 if (error)
1380 goto cleanup;
1381
1382 /* Remove the chosen entry from the inode */
1383 error = ext4_xattr_ibody_set(handle, inode, &i, is);
9aaab058
RK
1384 if (error)
1385 goto cleanup;
6dd4ee7c
KS
1386
1387 entry = IFIRST(header);
1388 if (entry_size + EXT4_XATTR_SIZE(size) >= new_extra_isize)
1389 shift_bytes = new_extra_isize;
1390 else
1391 shift_bytes = entry_size + size;
1392 /* Adjust the offsets and shift the remaining entries ahead */
1393 ext4_xattr_shift_entries(entry, EXT4_I(inode)->i_extra_isize -
1394 shift_bytes, (void *)raw_inode +
1395 EXT4_GOOD_OLD_INODE_SIZE + extra_isize + shift_bytes,
1396 (void *)header, total_ino - entry_size,
1397 inode->i_sb->s_blocksize);
1398
1399 extra_isize += shift_bytes;
1400 new_extra_isize -= shift_bytes;
1401 EXT4_I(inode)->i_extra_isize = extra_isize;
1402
1403 i.name = b_entry_name;
1404 i.value = buffer;
ac39849d 1405 i.value_len = size;
6dd4ee7c
KS
1406 error = ext4_xattr_block_find(inode, &i, bs);
1407 if (error)
1408 goto cleanup;
1409
1410 /* Add entry which was removed from the inode into the block */
1411 error = ext4_xattr_block_set(handle, inode, &i, bs);
1412 if (error)
1413 goto cleanup;
1414 kfree(b_entry_name);
1415 kfree(buffer);
d3533d72
JL
1416 b_entry_name = NULL;
1417 buffer = NULL;
6dd4ee7c
KS
1418 brelse(is->iloc.bh);
1419 kfree(is);
1420 kfree(bs);
1421 }
1422 brelse(bh);
1423 up_write(&EXT4_I(inode)->xattr_sem);
1424 return 0;
1425
1426cleanup:
1427 kfree(b_entry_name);
1428 kfree(buffer);
1429 if (is)
1430 brelse(is->iloc.bh);
1431 kfree(is);
1432 kfree(bs);
1433 brelse(bh);
1434 up_write(&EXT4_I(inode)->xattr_sem);
1435 return error;
1436}
1437
1438
1439
ac27a0ec 1440/*
617ba13b 1441 * ext4_xattr_delete_inode()
ac27a0ec
DK
1442 *
1443 * Free extended attribute resources associated with this inode. This
1444 * is called immediately before an inode is freed. We have exclusive
1445 * access to the inode.
1446 */
1447void
617ba13b 1448ext4_xattr_delete_inode(handle_t *handle, struct inode *inode)
ac27a0ec
DK
1449{
1450 struct buffer_head *bh = NULL;
1451
617ba13b 1452 if (!EXT4_I(inode)->i_file_acl)
ac27a0ec 1453 goto cleanup;
617ba13b 1454 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
ac27a0ec 1455 if (!bh) {
24676da4
TT
1456 EXT4_ERROR_INODE(inode, "block %llu read error",
1457 EXT4_I(inode)->i_file_acl);
ac27a0ec
DK
1458 goto cleanup;
1459 }
617ba13b 1460 if (BHDR(bh)->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC) ||
ac27a0ec 1461 BHDR(bh)->h_blocks != cpu_to_le32(1)) {
24676da4
TT
1462 EXT4_ERROR_INODE(inode, "bad block %llu",
1463 EXT4_I(inode)->i_file_acl);
ac27a0ec
DK
1464 goto cleanup;
1465 }
617ba13b
MC
1466 ext4_xattr_release_block(handle, inode, bh);
1467 EXT4_I(inode)->i_file_acl = 0;
ac27a0ec
DK
1468
1469cleanup:
1470 brelse(bh);
1471}
1472
1473/*
617ba13b 1474 * ext4_xattr_put_super()
ac27a0ec
DK
1475 *
1476 * This is called when a file system is unmounted.
1477 */
1478void
617ba13b 1479ext4_xattr_put_super(struct super_block *sb)
ac27a0ec
DK
1480{
1481 mb_cache_shrink(sb->s_bdev);
1482}
1483
1484/*
617ba13b 1485 * ext4_xattr_cache_insert()
ac27a0ec
DK
1486 *
1487 * Create a new entry in the extended attribute cache, and insert
1488 * it unless such an entry is already in the cache.
1489 *
1490 * Returns 0, or a negative error number on failure.
1491 */
1492static void
617ba13b 1493ext4_xattr_cache_insert(struct buffer_head *bh)
ac27a0ec
DK
1494{
1495 __u32 hash = le32_to_cpu(BHDR(bh)->h_hash);
1496 struct mb_cache_entry *ce;
1497 int error;
1498
335e92e8 1499 ce = mb_cache_entry_alloc(ext4_xattr_cache, GFP_NOFS);
ac27a0ec
DK
1500 if (!ce) {
1501 ea_bdebug(bh, "out of memory");
1502 return;
1503 }
2aec7c52 1504 error = mb_cache_entry_insert(ce, bh->b_bdev, bh->b_blocknr, hash);
ac27a0ec
DK
1505 if (error) {
1506 mb_cache_entry_free(ce);
1507 if (error == -EBUSY) {
1508 ea_bdebug(bh, "already in cache");
1509 error = 0;
1510 }
1511 } else {
1512 ea_bdebug(bh, "inserting [%x]", (int)hash);
1513 mb_cache_entry_release(ce);
1514 }
1515}
1516
1517/*
617ba13b 1518 * ext4_xattr_cmp()
ac27a0ec
DK
1519 *
1520 * Compare two extended attribute blocks for equality.
1521 *
1522 * Returns 0 if the blocks are equal, 1 if they differ, and
1523 * a negative error number on errors.
1524 */
1525static int
617ba13b
MC
1526ext4_xattr_cmp(struct ext4_xattr_header *header1,
1527 struct ext4_xattr_header *header2)
ac27a0ec 1528{
617ba13b 1529 struct ext4_xattr_entry *entry1, *entry2;
ac27a0ec
DK
1530
1531 entry1 = ENTRY(header1+1);
1532 entry2 = ENTRY(header2+1);
1533 while (!IS_LAST_ENTRY(entry1)) {
1534 if (IS_LAST_ENTRY(entry2))
1535 return 1;
1536 if (entry1->e_hash != entry2->e_hash ||
1537 entry1->e_name_index != entry2->e_name_index ||
1538 entry1->e_name_len != entry2->e_name_len ||
1539 entry1->e_value_size != entry2->e_value_size ||
1540 memcmp(entry1->e_name, entry2->e_name, entry1->e_name_len))
1541 return 1;
1542 if (entry1->e_value_block != 0 || entry2->e_value_block != 0)
1543 return -EIO;
1544 if (memcmp((char *)header1 + le16_to_cpu(entry1->e_value_offs),
1545 (char *)header2 + le16_to_cpu(entry2->e_value_offs),
1546 le32_to_cpu(entry1->e_value_size)))
1547 return 1;
1548
617ba13b
MC
1549 entry1 = EXT4_XATTR_NEXT(entry1);
1550 entry2 = EXT4_XATTR_NEXT(entry2);
ac27a0ec
DK
1551 }
1552 if (!IS_LAST_ENTRY(entry2))
1553 return 1;
1554 return 0;
1555}
1556
1557/*
617ba13b 1558 * ext4_xattr_cache_find()
ac27a0ec
DK
1559 *
1560 * Find an identical extended attribute block.
1561 *
1562 * Returns a pointer to the block found, or NULL if such a block was
1563 * not found or an error occurred.
1564 */
1565static struct buffer_head *
617ba13b 1566ext4_xattr_cache_find(struct inode *inode, struct ext4_xattr_header *header,
ac27a0ec
DK
1567 struct mb_cache_entry **pce)
1568{
1569 __u32 hash = le32_to_cpu(header->h_hash);
1570 struct mb_cache_entry *ce;
1571
1572 if (!header->h_hash)
1573 return NULL; /* never share */
1574 ea_idebug(inode, "looking for cached blocks [%x]", (int)hash);
1575again:
2aec7c52
AG
1576 ce = mb_cache_entry_find_first(ext4_xattr_cache, inode->i_sb->s_bdev,
1577 hash);
ac27a0ec
DK
1578 while (ce) {
1579 struct buffer_head *bh;
1580
1581 if (IS_ERR(ce)) {
1582 if (PTR_ERR(ce) == -EAGAIN)
1583 goto again;
1584 break;
1585 }
1586 bh = sb_bread(inode->i_sb, ce->e_block);
1587 if (!bh) {
24676da4
TT
1588 EXT4_ERROR_INODE(inode, "block %lu read error",
1589 (unsigned long) ce->e_block);
ac27a0ec 1590 } else if (le32_to_cpu(BHDR(bh)->h_refcount) >=
617ba13b 1591 EXT4_XATTR_REFCOUNT_MAX) {
ac27a0ec
DK
1592 ea_idebug(inode, "block %lu refcount %d>=%d",
1593 (unsigned long) ce->e_block,
1594 le32_to_cpu(BHDR(bh)->h_refcount),
617ba13b
MC
1595 EXT4_XATTR_REFCOUNT_MAX);
1596 } else if (ext4_xattr_cmp(header, BHDR(bh)) == 0) {
ac27a0ec
DK
1597 *pce = ce;
1598 return bh;
1599 }
1600 brelse(bh);
2aec7c52 1601 ce = mb_cache_entry_find_next(ce, inode->i_sb->s_bdev, hash);
ac27a0ec
DK
1602 }
1603 return NULL;
1604}
1605
1606#define NAME_HASH_SHIFT 5
1607#define VALUE_HASH_SHIFT 16
1608
1609/*
617ba13b 1610 * ext4_xattr_hash_entry()
ac27a0ec
DK
1611 *
1612 * Compute the hash of an extended attribute.
1613 */
617ba13b
MC
1614static inline void ext4_xattr_hash_entry(struct ext4_xattr_header *header,
1615 struct ext4_xattr_entry *entry)
ac27a0ec
DK
1616{
1617 __u32 hash = 0;
1618 char *name = entry->e_name;
1619 int n;
1620
2b2d6d01 1621 for (n = 0; n < entry->e_name_len; n++) {
ac27a0ec
DK
1622 hash = (hash << NAME_HASH_SHIFT) ^
1623 (hash >> (8*sizeof(hash) - NAME_HASH_SHIFT)) ^
1624 *name++;
1625 }
1626
1627 if (entry->e_value_block == 0 && entry->e_value_size != 0) {
1628 __le32 *value = (__le32 *)((char *)header +
1629 le16_to_cpu(entry->e_value_offs));
1630 for (n = (le32_to_cpu(entry->e_value_size) +
617ba13b 1631 EXT4_XATTR_ROUND) >> EXT4_XATTR_PAD_BITS; n; n--) {
ac27a0ec
DK
1632 hash = (hash << VALUE_HASH_SHIFT) ^
1633 (hash >> (8*sizeof(hash) - VALUE_HASH_SHIFT)) ^
1634 le32_to_cpu(*value++);
1635 }
1636 }
1637 entry->e_hash = cpu_to_le32(hash);
1638}
1639
1640#undef NAME_HASH_SHIFT
1641#undef VALUE_HASH_SHIFT
1642
1643#define BLOCK_HASH_SHIFT 16
1644
1645/*
617ba13b 1646 * ext4_xattr_rehash()
ac27a0ec
DK
1647 *
1648 * Re-compute the extended attribute hash value after an entry has changed.
1649 */
617ba13b
MC
1650static void ext4_xattr_rehash(struct ext4_xattr_header *header,
1651 struct ext4_xattr_entry *entry)
ac27a0ec 1652{
617ba13b 1653 struct ext4_xattr_entry *here;
ac27a0ec
DK
1654 __u32 hash = 0;
1655
617ba13b 1656 ext4_xattr_hash_entry(header, entry);
ac27a0ec
DK
1657 here = ENTRY(header+1);
1658 while (!IS_LAST_ENTRY(here)) {
1659 if (!here->e_hash) {
1660 /* Block is not shared if an entry's hash value == 0 */
1661 hash = 0;
1662 break;
1663 }
1664 hash = (hash << BLOCK_HASH_SHIFT) ^
1665 (hash >> (8*sizeof(hash) - BLOCK_HASH_SHIFT)) ^
1666 le32_to_cpu(here->e_hash);
617ba13b 1667 here = EXT4_XATTR_NEXT(here);
ac27a0ec
DK
1668 }
1669 header->h_hash = cpu_to_le32(hash);
1670}
1671
1672#undef BLOCK_HASH_SHIFT
1673
1674int __init
5dabfc78 1675ext4_init_xattr(void)
ac27a0ec 1676{
2aec7c52 1677 ext4_xattr_cache = mb_cache_create("ext4_xattr", 6);
617ba13b 1678 if (!ext4_xattr_cache)
ac27a0ec
DK
1679 return -ENOMEM;
1680 return 0;
1681}
1682
1683void
5dabfc78 1684ext4_exit_xattr(void)
ac27a0ec 1685{
617ba13b
MC
1686 if (ext4_xattr_cache)
1687 mb_cache_destroy(ext4_xattr_cache);
1688 ext4_xattr_cache = NULL;
ac27a0ec 1689}