]> git.ipfire.org Git - people/ms/linux.git/blame - fs/ext4/xattr.c
Linux 4.14-rc6
[people/ms/linux.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>
7a2508e1 56#include <linux/mbcache.h>
ac27a0ec 57#include <linux/quotaops.h>
3dcf5451
CH
58#include "ext4_jbd2.h"
59#include "ext4.h"
ac27a0ec
DK
60#include "xattr.h"
61#include "acl.h"
62
617ba13b 63#ifdef EXT4_XATTR_DEBUG
d74f3d25
JP
64# define ea_idebug(inode, fmt, ...) \
65 printk(KERN_DEBUG "inode %s:%lu: " fmt "\n", \
66 inode->i_sb->s_id, inode->i_ino, ##__VA_ARGS__)
67# define ea_bdebug(bh, fmt, ...) \
68 printk(KERN_DEBUG "block %pg:%lu: " fmt "\n", \
69 bh->b_bdev, (unsigned long)bh->b_blocknr, ##__VA_ARGS__)
ac27a0ec 70#else
ace36ad4
JP
71# define ea_idebug(inode, fmt, ...) no_printk(fmt, ##__VA_ARGS__)
72# define ea_bdebug(bh, fmt, ...) no_printk(fmt, ##__VA_ARGS__)
ac27a0ec
DK
73#endif
74
47387409
TE
75static void ext4_xattr_block_cache_insert(struct mb_cache *,
76 struct buffer_head *);
77static struct buffer_head *
78ext4_xattr_block_cache_find(struct inode *, struct ext4_xattr_header *,
79 struct mb_cache_entry **);
b9fc761e
TE
80static __le32 ext4_xattr_hash_entry(char *name, size_t name_len, __le32 *value,
81 size_t value_count);
daf83281 82static void ext4_xattr_rehash(struct ext4_xattr_header *);
ac27a0ec 83
d6006186 84static const struct xattr_handler * const ext4_xattr_handler_map[] = {
617ba13b 85 [EXT4_XATTR_INDEX_USER] = &ext4_xattr_user_handler,
03010a33 86#ifdef CONFIG_EXT4_FS_POSIX_ACL
64e178a7
CH
87 [EXT4_XATTR_INDEX_POSIX_ACL_ACCESS] = &posix_acl_access_xattr_handler,
88 [EXT4_XATTR_INDEX_POSIX_ACL_DEFAULT] = &posix_acl_default_xattr_handler,
ac27a0ec 89#endif
617ba13b 90 [EXT4_XATTR_INDEX_TRUSTED] = &ext4_xattr_trusted_handler,
03010a33 91#ifdef CONFIG_EXT4_FS_SECURITY
617ba13b 92 [EXT4_XATTR_INDEX_SECURITY] = &ext4_xattr_security_handler,
ac27a0ec
DK
93#endif
94};
95
11e27528 96const struct xattr_handler *ext4_xattr_handlers[] = {
617ba13b
MC
97 &ext4_xattr_user_handler,
98 &ext4_xattr_trusted_handler,
03010a33 99#ifdef CONFIG_EXT4_FS_POSIX_ACL
64e178a7
CH
100 &posix_acl_access_xattr_handler,
101 &posix_acl_default_xattr_handler,
ac27a0ec 102#endif
03010a33 103#ifdef CONFIG_EXT4_FS_SECURITY
617ba13b 104 &ext4_xattr_security_handler,
ac27a0ec
DK
105#endif
106 NULL
107};
108
47387409
TE
109#define EA_BLOCK_CACHE(inode) (((struct ext4_sb_info *) \
110 inode->i_sb->s_fs_info)->s_ea_block_cache)
9c191f70 111
dec214d0
TE
112#define EA_INODE_CACHE(inode) (((struct ext4_sb_info *) \
113 inode->i_sb->s_fs_info)->s_ea_inode_cache)
114
30a7eb97
TE
115static int
116ext4_expand_inode_array(struct ext4_xattr_inode_array **ea_inode_array,
117 struct inode *inode);
118
33d201e0
TE
119#ifdef CONFIG_LOCKDEP
120void ext4_xattr_inode_set_class(struct inode *ea_inode)
121{
122 lockdep_set_subclass(&ea_inode->i_rwsem, 1);
123}
124#endif
125
cc8e94fd
DW
126static __le32 ext4_xattr_block_csum(struct inode *inode,
127 sector_t block_nr,
128 struct ext4_xattr_header *hdr)
129{
130 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
d6a77105 131 __u32 csum;
d6a77105 132 __le64 dsk_block_nr = cpu_to_le64(block_nr);
b47820ed
DJ
133 __u32 dummy_csum = 0;
134 int offset = offsetof(struct ext4_xattr_header, h_checksum);
cc8e94fd 135
d6a77105
TT
136 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&dsk_block_nr,
137 sizeof(dsk_block_nr));
b47820ed
DJ
138 csum = ext4_chksum(sbi, csum, (__u8 *)hdr, offset);
139 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum, sizeof(dummy_csum));
140 offset += sizeof(dummy_csum);
141 csum = ext4_chksum(sbi, csum, (__u8 *)hdr + offset,
142 EXT4_BLOCK_SIZE(inode->i_sb) - offset);
41eb70dd 143
cc8e94fd
DW
144 return cpu_to_le32(csum);
145}
146
147static int ext4_xattr_block_csum_verify(struct inode *inode,
dac7a4b4 148 struct buffer_head *bh)
cc8e94fd 149{
dac7a4b4
TT
150 struct ext4_xattr_header *hdr = BHDR(bh);
151 int ret = 1;
cc8e94fd 152
dac7a4b4
TT
153 if (ext4_has_metadata_csum(inode->i_sb)) {
154 lock_buffer(bh);
155 ret = (hdr->h_checksum == ext4_xattr_block_csum(inode,
156 bh->b_blocknr, hdr));
157 unlock_buffer(bh);
158 }
159 return ret;
cc8e94fd
DW
160}
161
dac7a4b4
TT
162static void ext4_xattr_block_csum_set(struct inode *inode,
163 struct buffer_head *bh)
cc8e94fd 164{
dac7a4b4
TT
165 if (ext4_has_metadata_csum(inode->i_sb))
166 BHDR(bh)->h_checksum = ext4_xattr_block_csum(inode,
167 bh->b_blocknr, BHDR(bh));
cc8e94fd
DW
168}
169
11e27528 170static inline const struct xattr_handler *
617ba13b 171ext4_xattr_handler(int name_index)
ac27a0ec 172{
11e27528 173 const struct xattr_handler *handler = NULL;
ac27a0ec 174
617ba13b
MC
175 if (name_index > 0 && name_index < ARRAY_SIZE(ext4_xattr_handler_map))
176 handler = ext4_xattr_handler_map[name_index];
ac27a0ec
DK
177 return handler;
178}
179
ac27a0ec 180static int
2c4f9923
EB
181ext4_xattr_check_entries(struct ext4_xattr_entry *entry, void *end,
182 void *value_start)
ac27a0ec 183{
a0626e75
DW
184 struct ext4_xattr_entry *e = entry;
185
d7614cc1 186 /* Find the end of the names list */
a0626e75
DW
187 while (!IS_LAST_ENTRY(e)) {
188 struct ext4_xattr_entry *next = EXT4_XATTR_NEXT(e);
ac27a0ec 189 if ((void *)next >= end)
6a797d27 190 return -EFSCORRUPTED;
a0626e75 191 e = next;
ac27a0ec 192 }
a0626e75 193
d7614cc1 194 /* Check the values */
a0626e75 195 while (!IS_LAST_ENTRY(entry)) {
e50e5129
AD
196 if (entry->e_value_size != 0 &&
197 entry->e_value_inum == 0) {
d7614cc1
EB
198 u16 offs = le16_to_cpu(entry->e_value_offs);
199 u32 size = le32_to_cpu(entry->e_value_size);
200 void *value;
201
202 /*
203 * The value cannot overlap the names, and the value
204 * with padding cannot extend beyond 'end'. Check both
205 * the padded and unpadded sizes, since the size may
206 * overflow to 0 when adding padding.
207 */
208 if (offs > end - value_start)
209 return -EFSCORRUPTED;
210 value = value_start + offs;
211 if (value < (void *)e + sizeof(u32) ||
212 size > end - value ||
213 EXT4_XATTR_SIZE(size) > end - value)
214 return -EFSCORRUPTED;
215 }
a0626e75
DW
216 entry = EXT4_XATTR_NEXT(entry);
217 }
218
ac27a0ec
DK
219 return 0;
220}
221
222static inline int
cc8e94fd 223ext4_xattr_check_block(struct inode *inode, struct buffer_head *bh)
ac27a0ec 224{
cc8e94fd
DW
225 int error;
226
227 if (buffer_verified(bh))
228 return 0;
229
617ba13b 230 if (BHDR(bh)->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC) ||
ac27a0ec 231 BHDR(bh)->h_blocks != cpu_to_le32(1))
6a797d27 232 return -EFSCORRUPTED;
dac7a4b4 233 if (!ext4_xattr_block_csum_verify(inode, bh))
6a797d27 234 return -EFSBADCRC;
2c4f9923
EB
235 error = ext4_xattr_check_entries(BFIRST(bh), bh->b_data + bh->b_size,
236 bh->b_data);
cc8e94fd
DW
237 if (!error)
238 set_buffer_verified(bh);
239 return error;
ac27a0ec
DK
240}
241
9e92f48c
TT
242static int
243__xattr_check_inode(struct inode *inode, struct ext4_xattr_ibody_header *header,
244 void *end, const char *function, unsigned int line)
245{
9e92f48c
TT
246 int error = -EFSCORRUPTED;
247
290ab230 248 if (end - (void *)header < sizeof(*header) + sizeof(u32) ||
19962509 249 (header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)))
9e92f48c 250 goto errout;
2c4f9923 251 error = ext4_xattr_check_entries(IFIRST(header), end, IFIRST(header));
9e92f48c
TT
252errout:
253 if (error)
254 __ext4_error_inode(inode, function, line, 0,
255 "corrupted in-inode xattr");
256 return error;
257}
258
259#define xattr_check_inode(inode, header, end) \
260 __xattr_check_inode((inode), (header), (end), __func__, __LINE__)
261
ac27a0ec 262static int
617ba13b 263ext4_xattr_find_entry(struct ext4_xattr_entry **pentry, int name_index,
6ba644b9 264 const char *name, int sorted)
ac27a0ec 265{
617ba13b 266 struct ext4_xattr_entry *entry;
ac27a0ec
DK
267 size_t name_len;
268 int cmp = 1;
269
270 if (name == NULL)
271 return -EINVAL;
272 name_len = strlen(name);
273 entry = *pentry;
617ba13b 274 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
ac27a0ec
DK
275 cmp = name_index - entry->e_name_index;
276 if (!cmp)
277 cmp = name_len - entry->e_name_len;
278 if (!cmp)
279 cmp = memcmp(name, entry->e_name, name_len);
280 if (cmp <= 0 && (sorted || cmp == 0))
281 break;
282 }
283 *pentry = entry;
ac27a0ec
DK
284 return cmp ? -ENODATA : 0;
285}
286
dec214d0
TE
287static u32
288ext4_xattr_inode_hash(struct ext4_sb_info *sbi, const void *buffer, size_t size)
289{
290 return ext4_chksum(sbi, sbi->s_csum_seed, buffer, size);
291}
292
293static u64 ext4_xattr_inode_get_ref(struct inode *ea_inode)
294{
295 return ((u64)ea_inode->i_ctime.tv_sec << 32) |
296 ((u32)ea_inode->i_version);
297}
298
299static void ext4_xattr_inode_set_ref(struct inode *ea_inode, u64 ref_count)
300{
301 ea_inode->i_ctime.tv_sec = (u32)(ref_count >> 32);
302 ea_inode->i_version = (u32)ref_count;
303}
304
305static u32 ext4_xattr_inode_get_hash(struct inode *ea_inode)
306{
307 return (u32)ea_inode->i_atime.tv_sec;
308}
309
310static void ext4_xattr_inode_set_hash(struct inode *ea_inode, u32 hash)
311{
312 ea_inode->i_atime.tv_sec = hash;
313}
314
e50e5129
AD
315/*
316 * Read the EA value from an inode.
317 */
90966693 318static int ext4_xattr_inode_read(struct inode *ea_inode, void *buf, size_t size)
e50e5129 319{
9699d4f9
TE
320 int blocksize = 1 << ea_inode->i_blkbits;
321 int bh_count = (size + blocksize - 1) >> ea_inode->i_blkbits;
322 int tail_size = (size % blocksize) ?: blocksize;
323 struct buffer_head *bhs_inline[8];
324 struct buffer_head **bhs = bhs_inline;
325 int i, ret;
326
327 if (bh_count > ARRAY_SIZE(bhs_inline)) {
328 bhs = kmalloc_array(bh_count, sizeof(*bhs), GFP_NOFS);
329 if (!bhs)
330 return -ENOMEM;
331 }
90966693 332
9699d4f9
TE
333 ret = ext4_bread_batch(ea_inode, 0 /* block */, bh_count,
334 true /* wait */, bhs);
335 if (ret)
336 goto free_bhs;
e50e5129 337
9699d4f9
TE
338 for (i = 0; i < bh_count; i++) {
339 /* There shouldn't be any holes in ea_inode. */
340 if (!bhs[i]) {
341 ret = -EFSCORRUPTED;
342 goto put_bhs;
343 }
344 memcpy((char *)buf + blocksize * i, bhs[i]->b_data,
345 i < bh_count - 1 ? blocksize : tail_size);
e50e5129 346 }
9699d4f9
TE
347 ret = 0;
348put_bhs:
349 for (i = 0; i < bh_count; i++)
350 brelse(bhs[i]);
351free_bhs:
352 if (bhs != bhs_inline)
353 kfree(bhs);
354 return ret;
e50e5129
AD
355}
356
a6d05676
TE
357#define EXT4_XATTR_INODE_GET_PARENT(inode) ((__u32)(inode)->i_mtime.tv_sec)
358
bab79b04 359static int ext4_xattr_inode_iget(struct inode *parent, unsigned long ea_ino,
a6d05676 360 u32 ea_inode_hash, struct inode **ea_inode)
e50e5129 361{
bab79b04
TE
362 struct inode *inode;
363 int err;
e50e5129 364
bab79b04
TE
365 inode = ext4_iget(parent->i_sb, ea_ino);
366 if (IS_ERR(inode)) {
367 err = PTR_ERR(inode);
dec214d0
TE
368 ext4_error(parent->i_sb,
369 "error while reading EA inode %lu err=%d", ea_ino,
370 err);
bab79b04 371 return err;
e50e5129
AD
372 }
373
bab79b04 374 if (is_bad_inode(inode)) {
dec214d0
TE
375 ext4_error(parent->i_sb,
376 "error while reading EA inode %lu is_bad_inode",
377 ea_ino);
bab79b04
TE
378 err = -EIO;
379 goto error;
380 }
381
bab79b04 382 if (!(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL)) {
dec214d0
TE
383 ext4_error(parent->i_sb,
384 "EA inode %lu does not have EXT4_EA_INODE_FL flag",
385 ea_ino);
bab79b04 386 err = -EINVAL;
e50e5129
AD
387 goto error;
388 }
389
a6d05676
TE
390 ext4_xattr_inode_set_class(inode);
391
392 /*
393 * Check whether this is an old Lustre-style xattr inode. Lustre
394 * implementation does not have hash validation, rather it has a
395 * backpointer from ea_inode to the parent inode.
396 */
397 if (ea_inode_hash != ext4_xattr_inode_get_hash(inode) &&
398 EXT4_XATTR_INODE_GET_PARENT(inode) == parent->i_ino &&
399 inode->i_generation == parent->i_generation) {
400 ext4_set_inode_state(inode, EXT4_STATE_LUSTRE_EA_INODE);
401 ext4_xattr_inode_set_ref(inode, 1);
402 } else {
403 inode_lock(inode);
404 inode->i_flags |= S_NOQUOTA;
405 inode_unlock(inode);
406 }
407
bab79b04
TE
408 *ea_inode = inode;
409 return 0;
e50e5129 410error:
bab79b04
TE
411 iput(inode);
412 return err;
e50e5129
AD
413}
414
dec214d0 415static int
b9fc761e
TE
416ext4_xattr_inode_verify_hashes(struct inode *ea_inode,
417 struct ext4_xattr_entry *entry, void *buffer,
418 size_t size)
dec214d0
TE
419{
420 u32 hash;
421
422 /* Verify stored hash matches calculated hash. */
423 hash = ext4_xattr_inode_hash(EXT4_SB(ea_inode->i_sb), buffer, size);
424 if (hash != ext4_xattr_inode_get_hash(ea_inode))
425 return -EFSCORRUPTED;
b9fc761e
TE
426
427 if (entry) {
428 __le32 e_hash, tmp_data;
429
430 /* Verify entry hash. */
431 tmp_data = cpu_to_le32(hash);
432 e_hash = ext4_xattr_hash_entry(entry->e_name, entry->e_name_len,
433 &tmp_data, 1);
434 if (e_hash != entry->e_hash)
435 return -EFSCORRUPTED;
436 }
dec214d0
TE
437 return 0;
438}
439
e50e5129 440/*
b9fc761e 441 * Read xattr value from the EA inode.
e50e5129
AD
442 */
443static int
b9fc761e
TE
444ext4_xattr_inode_get(struct inode *inode, struct ext4_xattr_entry *entry,
445 void *buffer, size_t size)
e50e5129 446{
dec214d0 447 struct mb_cache *ea_inode_cache = EA_INODE_CACHE(inode);
bab79b04 448 struct inode *ea_inode;
dec214d0 449 int err;
e50e5129 450
b9fc761e 451 err = ext4_xattr_inode_iget(inode, le32_to_cpu(entry->e_value_inum),
a6d05676 452 le32_to_cpu(entry->e_hash), &ea_inode);
dec214d0
TE
453 if (err) {
454 ea_inode = NULL;
455 goto out;
456 }
e50e5129 457
dec214d0
TE
458 if (i_size_read(ea_inode) != size) {
459 ext4_warning_inode(ea_inode,
460 "ea_inode file size=%llu entry size=%zu",
461 i_size_read(ea_inode), size);
462 err = -EFSCORRUPTED;
463 goto out;
464 }
e50e5129 465
dec214d0
TE
466 err = ext4_xattr_inode_read(ea_inode, buffer, size);
467 if (err)
468 goto out;
469
a6d05676
TE
470 if (!ext4_test_inode_state(ea_inode, EXT4_STATE_LUSTRE_EA_INODE)) {
471 err = ext4_xattr_inode_verify_hashes(ea_inode, entry, buffer,
472 size);
473 if (err) {
dec214d0
TE
474 ext4_warning_inode(ea_inode,
475 "EA inode hash validation failed");
476 goto out;
477 }
dec214d0 478
a6d05676
TE
479 if (ea_inode_cache)
480 mb_cache_entry_create(ea_inode_cache, GFP_NOFS,
481 ext4_xattr_inode_get_hash(ea_inode),
482 ea_inode->i_ino, true /* reusable */);
483 }
dec214d0
TE
484out:
485 iput(ea_inode);
486 return err;
e50e5129
AD
487}
488
ac27a0ec 489static int
617ba13b 490ext4_xattr_block_get(struct inode *inode, int name_index, const char *name,
ac27a0ec
DK
491 void *buffer, size_t buffer_size)
492{
493 struct buffer_head *bh = NULL;
617ba13b 494 struct ext4_xattr_entry *entry;
ac27a0ec
DK
495 size_t size;
496 int error;
47387409 497 struct mb_cache *ea_block_cache = EA_BLOCK_CACHE(inode);
ac27a0ec
DK
498
499 ea_idebug(inode, "name=%d.%s, buffer=%p, buffer_size=%ld",
500 name_index, name, buffer, (long)buffer_size);
501
502 error = -ENODATA;
617ba13b 503 if (!EXT4_I(inode)->i_file_acl)
ac27a0ec 504 goto cleanup;
ace36ad4
JP
505 ea_idebug(inode, "reading block %llu",
506 (unsigned long long)EXT4_I(inode)->i_file_acl);
617ba13b 507 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
ac27a0ec
DK
508 if (!bh)
509 goto cleanup;
510 ea_bdebug(bh, "b_count=%d, refcount=%d",
511 atomic_read(&(bh->b_count)), le32_to_cpu(BHDR(bh)->h_refcount));
cc8e94fd 512 if (ext4_xattr_check_block(inode, bh)) {
24676da4
TT
513 EXT4_ERROR_INODE(inode, "bad block %llu",
514 EXT4_I(inode)->i_file_acl);
6a797d27 515 error = -EFSCORRUPTED;
ac27a0ec
DK
516 goto cleanup;
517 }
47387409 518 ext4_xattr_block_cache_insert(ea_block_cache, bh);
ac27a0ec 519 entry = BFIRST(bh);
6ba644b9 520 error = ext4_xattr_find_entry(&entry, name_index, name, 1);
ac27a0ec
DK
521 if (error)
522 goto cleanup;
523 size = le32_to_cpu(entry->e_value_size);
524 if (buffer) {
525 error = -ERANGE;
526 if (size > buffer_size)
527 goto cleanup;
e50e5129 528 if (entry->e_value_inum) {
b9fc761e
TE
529 error = ext4_xattr_inode_get(inode, entry, buffer,
530 size);
e50e5129
AD
531 if (error)
532 goto cleanup;
533 } else {
534 memcpy(buffer, bh->b_data +
535 le16_to_cpu(entry->e_value_offs), size);
536 }
ac27a0ec
DK
537 }
538 error = size;
539
540cleanup:
541 brelse(bh);
542 return error;
543}
544
879b3825 545int
617ba13b 546ext4_xattr_ibody_get(struct inode *inode, int name_index, const char *name,
ac27a0ec
DK
547 void *buffer, size_t buffer_size)
548{
617ba13b
MC
549 struct ext4_xattr_ibody_header *header;
550 struct ext4_xattr_entry *entry;
551 struct ext4_inode *raw_inode;
552 struct ext4_iloc iloc;
ac27a0ec
DK
553 size_t size;
554 void *end;
555 int error;
556
19f5fb7a 557 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
ac27a0ec 558 return -ENODATA;
617ba13b 559 error = ext4_get_inode_loc(inode, &iloc);
ac27a0ec
DK
560 if (error)
561 return error;
617ba13b 562 raw_inode = ext4_raw_inode(&iloc);
ac27a0ec 563 header = IHDR(inode, raw_inode);
617ba13b 564 end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
9e92f48c 565 error = xattr_check_inode(inode, header, end);
ac27a0ec
DK
566 if (error)
567 goto cleanup;
6ba644b9
EB
568 entry = IFIRST(header);
569 error = ext4_xattr_find_entry(&entry, name_index, name, 0);
ac27a0ec
DK
570 if (error)
571 goto cleanup;
572 size = le32_to_cpu(entry->e_value_size);
573 if (buffer) {
574 error = -ERANGE;
575 if (size > buffer_size)
576 goto cleanup;
e50e5129 577 if (entry->e_value_inum) {
b9fc761e
TE
578 error = ext4_xattr_inode_get(inode, entry, buffer,
579 size);
e50e5129
AD
580 if (error)
581 goto cleanup;
582 } else {
583 memcpy(buffer, (void *)IFIRST(header) +
584 le16_to_cpu(entry->e_value_offs), size);
585 }
ac27a0ec
DK
586 }
587 error = size;
588
589cleanup:
590 brelse(iloc.bh);
591 return error;
592}
593
594/*
617ba13b 595 * ext4_xattr_get()
ac27a0ec
DK
596 *
597 * Copy an extended attribute into the buffer
598 * provided, or compute the buffer size required.
599 * Buffer is NULL to compute the size of the buffer required.
600 *
601 * Returns a negative error number on failure, or the number of bytes
602 * used / required on success.
603 */
604int
617ba13b 605ext4_xattr_get(struct inode *inode, int name_index, const char *name,
ac27a0ec
DK
606 void *buffer, size_t buffer_size)
607{
608 int error;
609
0db1ff22
TT
610 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
611 return -EIO;
612
230b8c1a
ZZ
613 if (strlen(name) > 255)
614 return -ERANGE;
615
617ba13b
MC
616 down_read(&EXT4_I(inode)->xattr_sem);
617 error = ext4_xattr_ibody_get(inode, name_index, name, buffer,
ac27a0ec
DK
618 buffer_size);
619 if (error == -ENODATA)
617ba13b 620 error = ext4_xattr_block_get(inode, name_index, name, buffer,
ac27a0ec 621 buffer_size);
617ba13b 622 up_read(&EXT4_I(inode)->xattr_sem);
ac27a0ec
DK
623 return error;
624}
625
626static int
431547b3 627ext4_xattr_list_entries(struct dentry *dentry, struct ext4_xattr_entry *entry,
ac27a0ec
DK
628 char *buffer, size_t buffer_size)
629{
630 size_t rest = buffer_size;
631
617ba13b 632 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
11e27528 633 const struct xattr_handler *handler =
617ba13b 634 ext4_xattr_handler(entry->e_name_index);
ac27a0ec 635
764a5c6b
AG
636 if (handler && (!handler->list || handler->list(dentry))) {
637 const char *prefix = handler->prefix ?: handler->name;
638 size_t prefix_len = strlen(prefix);
639 size_t size = prefix_len + entry->e_name_len + 1;
640
ac27a0ec
DK
641 if (buffer) {
642 if (size > rest)
643 return -ERANGE;
764a5c6b
AG
644 memcpy(buffer, prefix, prefix_len);
645 buffer += prefix_len;
646 memcpy(buffer, entry->e_name, entry->e_name_len);
647 buffer += entry->e_name_len;
648 *buffer++ = 0;
ac27a0ec
DK
649 }
650 rest -= size;
651 }
652 }
764a5c6b 653 return buffer_size - rest; /* total size */
ac27a0ec
DK
654}
655
656static int
431547b3 657ext4_xattr_block_list(struct dentry *dentry, char *buffer, size_t buffer_size)
ac27a0ec 658{
2b0143b5 659 struct inode *inode = d_inode(dentry);
ac27a0ec
DK
660 struct buffer_head *bh = NULL;
661 int error;
662
663 ea_idebug(inode, "buffer=%p, buffer_size=%ld",
664 buffer, (long)buffer_size);
665
666 error = 0;
617ba13b 667 if (!EXT4_I(inode)->i_file_acl)
ac27a0ec 668 goto cleanup;
ace36ad4
JP
669 ea_idebug(inode, "reading block %llu",
670 (unsigned long long)EXT4_I(inode)->i_file_acl);
617ba13b 671 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
ac27a0ec
DK
672 error = -EIO;
673 if (!bh)
674 goto cleanup;
675 ea_bdebug(bh, "b_count=%d, refcount=%d",
676 atomic_read(&(bh->b_count)), le32_to_cpu(BHDR(bh)->h_refcount));
cc8e94fd 677 if (ext4_xattr_check_block(inode, bh)) {
24676da4
TT
678 EXT4_ERROR_INODE(inode, "bad block %llu",
679 EXT4_I(inode)->i_file_acl);
6a797d27 680 error = -EFSCORRUPTED;
ac27a0ec
DK
681 goto cleanup;
682 }
47387409 683 ext4_xattr_block_cache_insert(EA_BLOCK_CACHE(inode), bh);
431547b3 684 error = ext4_xattr_list_entries(dentry, BFIRST(bh), buffer, buffer_size);
ac27a0ec
DK
685
686cleanup:
687 brelse(bh);
688
689 return error;
690}
691
692static int
431547b3 693ext4_xattr_ibody_list(struct dentry *dentry, char *buffer, size_t buffer_size)
ac27a0ec 694{
2b0143b5 695 struct inode *inode = d_inode(dentry);
617ba13b
MC
696 struct ext4_xattr_ibody_header *header;
697 struct ext4_inode *raw_inode;
698 struct ext4_iloc iloc;
ac27a0ec
DK
699 void *end;
700 int error;
701
19f5fb7a 702 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
ac27a0ec 703 return 0;
617ba13b 704 error = ext4_get_inode_loc(inode, &iloc);
ac27a0ec
DK
705 if (error)
706 return error;
617ba13b 707 raw_inode = ext4_raw_inode(&iloc);
ac27a0ec 708 header = IHDR(inode, raw_inode);
617ba13b 709 end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
9e92f48c 710 error = xattr_check_inode(inode, header, end);
ac27a0ec
DK
711 if (error)
712 goto cleanup;
431547b3 713 error = ext4_xattr_list_entries(dentry, IFIRST(header),
ac27a0ec
DK
714 buffer, buffer_size);
715
716cleanup:
717 brelse(iloc.bh);
718 return error;
719}
720
721/*
ba7ea1d8
EB
722 * Inode operation listxattr()
723 *
724 * d_inode(dentry)->i_rwsem: don't care
ac27a0ec
DK
725 *
726 * Copy a list of attribute names into the buffer
727 * provided, or compute the buffer size required.
728 * Buffer is NULL to compute the size of the buffer required.
729 *
730 * Returns a negative error number on failure, or the number of bytes
731 * used / required on success.
732 */
ba7ea1d8
EB
733ssize_t
734ext4_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
ac27a0ec 735{
eaeef867 736 int ret, ret2;
ac27a0ec 737
2b0143b5 738 down_read(&EXT4_I(d_inode(dentry))->xattr_sem);
eaeef867
TT
739 ret = ret2 = ext4_xattr_ibody_list(dentry, buffer, buffer_size);
740 if (ret < 0)
741 goto errout;
742 if (buffer) {
743 buffer += ret;
744 buffer_size -= ret;
ac27a0ec 745 }
eaeef867
TT
746 ret = ext4_xattr_block_list(dentry, buffer, buffer_size);
747 if (ret < 0)
748 goto errout;
749 ret += ret2;
750errout:
2b0143b5 751 up_read(&EXT4_I(d_inode(dentry))->xattr_sem);
eaeef867 752 return ret;
ac27a0ec
DK
753}
754
755/*
617ba13b 756 * If the EXT4_FEATURE_COMPAT_EXT_ATTR feature of this file system is
ac27a0ec
DK
757 * not set, set it.
758 */
617ba13b 759static void ext4_xattr_update_super_block(handle_t *handle,
ac27a0ec
DK
760 struct super_block *sb)
761{
e2b911c5 762 if (ext4_has_feature_xattr(sb))
ac27a0ec
DK
763 return;
764
5d601255 765 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get_write_access");
617ba13b 766 if (ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh) == 0) {
e2b911c5 767 ext4_set_feature_xattr(sb);
a0375156 768 ext4_handle_dirty_super(handle, sb);
ac27a0ec 769 }
ac27a0ec
DK
770}
771
7a9ca53a
TE
772int ext4_get_inode_usage(struct inode *inode, qsize_t *usage)
773{
774 struct ext4_iloc iloc = { .bh = NULL };
775 struct buffer_head *bh = NULL;
776 struct ext4_inode *raw_inode;
777 struct ext4_xattr_ibody_header *header;
778 struct ext4_xattr_entry *entry;
779 qsize_t ea_inode_refs = 0;
780 void *end;
781 int ret;
782
783 lockdep_assert_held_read(&EXT4_I(inode)->xattr_sem);
784
785 if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
786 ret = ext4_get_inode_loc(inode, &iloc);
787 if (ret)
788 goto out;
789 raw_inode = ext4_raw_inode(&iloc);
790 header = IHDR(inode, raw_inode);
791 end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
792 ret = xattr_check_inode(inode, header, end);
793 if (ret)
794 goto out;
795
796 for (entry = IFIRST(header); !IS_LAST_ENTRY(entry);
797 entry = EXT4_XATTR_NEXT(entry))
798 if (entry->e_value_inum)
799 ea_inode_refs++;
800 }
801
802 if (EXT4_I(inode)->i_file_acl) {
803 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
804 if (!bh) {
805 ret = -EIO;
806 goto out;
807 }
808
809 if (ext4_xattr_check_block(inode, bh)) {
810 ret = -EFSCORRUPTED;
811 goto out;
812 }
813
814 for (entry = BFIRST(bh); !IS_LAST_ENTRY(entry);
815 entry = EXT4_XATTR_NEXT(entry))
816 if (entry->e_value_inum)
817 ea_inode_refs++;
818 }
819 *usage = ea_inode_refs + 1;
820 ret = 0;
821out:
822 brelse(iloc.bh);
823 brelse(bh);
824 return ret;
825}
826
dec214d0
TE
827static inline size_t round_up_cluster(struct inode *inode, size_t length)
828{
829 struct super_block *sb = inode->i_sb;
830 size_t cluster_size = 1 << (EXT4_SB(sb)->s_cluster_bits +
831 inode->i_blkbits);
832 size_t mask = ~(cluster_size - 1);
833
834 return (length + cluster_size - 1) & mask;
835}
836
837static int ext4_xattr_inode_alloc_quota(struct inode *inode, size_t len)
838{
839 int err;
840
841 err = dquot_alloc_inode(inode);
842 if (err)
843 return err;
844 err = dquot_alloc_space_nodirty(inode, round_up_cluster(inode, len));
845 if (err)
846 dquot_free_inode(inode);
847 return err;
848}
849
a6d05676
TE
850static void ext4_xattr_inode_free_quota(struct inode *parent,
851 struct inode *ea_inode,
852 size_t len)
dec214d0 853{
a6d05676
TE
854 if (ea_inode &&
855 ext4_test_inode_state(ea_inode, EXT4_STATE_LUSTRE_EA_INODE))
856 return;
857 dquot_free_space_nodirty(parent, round_up_cluster(parent, len));
858 dquot_free_inode(parent);
dec214d0
TE
859}
860
af65207c
TE
861int __ext4_xattr_set_credits(struct super_block *sb, struct inode *inode,
862 struct buffer_head *block_bh, size_t value_len,
863 bool is_create)
dec214d0 864{
dec214d0
TE
865 int credits;
866 int blocks;
867
868 /*
869 * 1) Owner inode update
870 * 2) Ref count update on old xattr block
871 * 3) new xattr block
872 * 4) block bitmap update for new xattr block
873 * 5) group descriptor for new xattr block
874 * 6) block bitmap update for old xattr block
875 * 7) group descriptor for old block
876 *
877 * 6 & 7 can happen if we have two racing threads T_a and T_b
878 * which are each trying to set an xattr on inodes I_a and I_b
879 * which were both initially sharing an xattr block.
880 */
881 credits = 7;
882
883 /* Quota updates. */
884 credits += EXT4_MAXQUOTAS_TRANS_BLOCKS(sb);
885
886 /*
887 * In case of inline data, we may push out the data to a block,
888 * so we need to reserve credits for this eventuality
889 */
af65207c 890 if (inode && ext4_has_inline_data(inode))
dec214d0
TE
891 credits += ext4_writepage_trans_blocks(inode) + 1;
892
893 /* We are done if ea_inode feature is not enabled. */
894 if (!ext4_has_feature_ea_inode(sb))
895 return credits;
896
897 /* New ea_inode, inode map, block bitmap, group descriptor. */
898 credits += 4;
899
900 /* Data blocks. */
901 blocks = (value_len + sb->s_blocksize - 1) >> sb->s_blocksize_bits;
902
903 /* Indirection block or one level of extent tree. */
904 blocks += 1;
905
906 /* Block bitmap and group descriptor updates for each block. */
907 credits += blocks * 2;
908
909 /* Blocks themselves. */
910 credits += blocks;
911
af65207c
TE
912 if (!is_create) {
913 /* Dereference ea_inode holding old xattr value.
914 * Old ea_inode, inode map, block bitmap, group descriptor.
915 */
916 credits += 4;
dec214d0 917
af65207c
TE
918 /* Data blocks for old ea_inode. */
919 blocks = XATTR_SIZE_MAX >> sb->s_blocksize_bits;
dec214d0 920
af65207c
TE
921 /* Indirection block or one level of extent tree for old
922 * ea_inode.
923 */
924 blocks += 1;
dec214d0 925
af65207c
TE
926 /* Block bitmap and group descriptor updates for each block. */
927 credits += blocks * 2;
928 }
dec214d0
TE
929
930 /* We may need to clone the existing xattr block in which case we need
931 * to increment ref counts for existing ea_inodes referenced by it.
932 */
933 if (block_bh) {
934 struct ext4_xattr_entry *entry = BFIRST(block_bh);
935
936 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry))
937 if (entry->e_value_inum)
938 /* Ref count update on ea_inode. */
939 credits += 1;
940 }
941 return credits;
942}
943
30a7eb97
TE
944static int ext4_xattr_ensure_credits(handle_t *handle, struct inode *inode,
945 int credits, struct buffer_head *bh,
946 bool dirty, bool block_csum)
947{
948 int error;
949
950 if (!ext4_handle_valid(handle))
951 return 0;
952
953 if (handle->h_buffer_credits >= credits)
954 return 0;
955
956 error = ext4_journal_extend(handle, credits - handle->h_buffer_credits);
957 if (!error)
958 return 0;
959 if (error < 0) {
960 ext4_warning(inode->i_sb, "Extend journal (error %d)", error);
961 return error;
962 }
963
964 if (bh && dirty) {
965 if (block_csum)
966 ext4_xattr_block_csum_set(inode, bh);
967 error = ext4_handle_dirty_metadata(handle, NULL, bh);
968 if (error) {
969 ext4_warning(inode->i_sb, "Handle metadata (error %d)",
970 error);
971 return error;
972 }
973 }
974
975 error = ext4_journal_restart(handle, credits);
976 if (error) {
977 ext4_warning(inode->i_sb, "Restart journal (error %d)", error);
978 return error;
979 }
980
981 if (bh) {
982 error = ext4_journal_get_write_access(handle, bh);
983 if (error) {
984 ext4_warning(inode->i_sb,
985 "Get write access failed (error %d)",
986 error);
987 return error;
988 }
989 }
990 return 0;
991}
992
dec214d0
TE
993static int ext4_xattr_inode_update_ref(handle_t *handle, struct inode *ea_inode,
994 int ref_change)
995{
996 struct mb_cache *ea_inode_cache = EA_INODE_CACHE(ea_inode);
997 struct ext4_iloc iloc;
998 s64 ref_count;
999 u32 hash;
1000 int ret;
1001
1002 inode_lock(ea_inode);
1003
1004 ret = ext4_reserve_inode_write(handle, ea_inode, &iloc);
1005 if (ret) {
1006 iloc.bh = NULL;
1007 goto out;
1008 }
1009
1010 ref_count = ext4_xattr_inode_get_ref(ea_inode);
1011 ref_count += ref_change;
1012 ext4_xattr_inode_set_ref(ea_inode, ref_count);
1013
1014 if (ref_change > 0) {
1015 WARN_ONCE(ref_count <= 0, "EA inode %lu ref_count=%lld",
1016 ea_inode->i_ino, ref_count);
1017
1018 if (ref_count == 1) {
1019 WARN_ONCE(ea_inode->i_nlink, "EA inode %lu i_nlink=%u",
1020 ea_inode->i_ino, ea_inode->i_nlink);
1021
1022 set_nlink(ea_inode, 1);
1023 ext4_orphan_del(handle, ea_inode);
1024
cdb7ee4c
TE
1025 if (ea_inode_cache) {
1026 hash = ext4_xattr_inode_get_hash(ea_inode);
1027 mb_cache_entry_create(ea_inode_cache,
1028 GFP_NOFS, hash,
1029 ea_inode->i_ino,
1030 true /* reusable */);
1031 }
dec214d0
TE
1032 }
1033 } else {
1034 WARN_ONCE(ref_count < 0, "EA inode %lu ref_count=%lld",
1035 ea_inode->i_ino, ref_count);
1036
1037 if (ref_count == 0) {
1038 WARN_ONCE(ea_inode->i_nlink != 1,
1039 "EA inode %lu i_nlink=%u",
1040 ea_inode->i_ino, ea_inode->i_nlink);
1041
1042 clear_nlink(ea_inode);
1043 ext4_orphan_add(handle, ea_inode);
1044
cdb7ee4c
TE
1045 if (ea_inode_cache) {
1046 hash = ext4_xattr_inode_get_hash(ea_inode);
1047 mb_cache_entry_delete(ea_inode_cache, hash,
1048 ea_inode->i_ino);
1049 }
dec214d0
TE
1050 }
1051 }
1052
1053 ret = ext4_mark_iloc_dirty(handle, ea_inode, &iloc);
1054 iloc.bh = NULL;
1055 if (ret)
1056 ext4_warning_inode(ea_inode,
1057 "ext4_mark_iloc_dirty() failed ret=%d", ret);
1058out:
1059 brelse(iloc.bh);
1060 inode_unlock(ea_inode);
1061 return ret;
1062}
1063
1064static int ext4_xattr_inode_inc_ref(handle_t *handle, struct inode *ea_inode)
1065{
1066 return ext4_xattr_inode_update_ref(handle, ea_inode, 1);
1067}
1068
1069static int ext4_xattr_inode_dec_ref(handle_t *handle, struct inode *ea_inode)
1070{
1071 return ext4_xattr_inode_update_ref(handle, ea_inode, -1);
1072}
1073
1074static int ext4_xattr_inode_inc_ref_all(handle_t *handle, struct inode *parent,
1075 struct ext4_xattr_entry *first)
1076{
1077 struct inode *ea_inode;
1078 struct ext4_xattr_entry *entry;
1079 struct ext4_xattr_entry *failed_entry;
1080 unsigned int ea_ino;
1081 int err, saved_err;
1082
1083 for (entry = first; !IS_LAST_ENTRY(entry);
1084 entry = EXT4_XATTR_NEXT(entry)) {
1085 if (!entry->e_value_inum)
1086 continue;
1087 ea_ino = le32_to_cpu(entry->e_value_inum);
a6d05676
TE
1088 err = ext4_xattr_inode_iget(parent, ea_ino,
1089 le32_to_cpu(entry->e_hash),
1090 &ea_inode);
dec214d0
TE
1091 if (err)
1092 goto cleanup;
1093 err = ext4_xattr_inode_inc_ref(handle, ea_inode);
1094 if (err) {
1095 ext4_warning_inode(ea_inode, "inc ref error %d", err);
1096 iput(ea_inode);
1097 goto cleanup;
1098 }
1099 iput(ea_inode);
1100 }
1101 return 0;
1102
1103cleanup:
1104 saved_err = err;
1105 failed_entry = entry;
1106
1107 for (entry = first; entry != failed_entry;
1108 entry = EXT4_XATTR_NEXT(entry)) {
1109 if (!entry->e_value_inum)
1110 continue;
1111 ea_ino = le32_to_cpu(entry->e_value_inum);
a6d05676
TE
1112 err = ext4_xattr_inode_iget(parent, ea_ino,
1113 le32_to_cpu(entry->e_hash),
1114 &ea_inode);
dec214d0
TE
1115 if (err) {
1116 ext4_warning(parent->i_sb,
1117 "cleanup ea_ino %u iget error %d", ea_ino,
1118 err);
1119 continue;
1120 }
1121 err = ext4_xattr_inode_dec_ref(handle, ea_inode);
1122 if (err)
1123 ext4_warning_inode(ea_inode, "cleanup dec ref error %d",
1124 err);
1125 iput(ea_inode);
1126 }
1127 return saved_err;
1128}
1129
30a7eb97 1130static void
dec214d0
TE
1131ext4_xattr_inode_dec_ref_all(handle_t *handle, struct inode *parent,
1132 struct buffer_head *bh,
1133 struct ext4_xattr_entry *first, bool block_csum,
1134 struct ext4_xattr_inode_array **ea_inode_array,
1135 int extra_credits, bool skip_quota)
30a7eb97
TE
1136{
1137 struct inode *ea_inode;
1138 struct ext4_xattr_entry *entry;
1139 bool dirty = false;
1140 unsigned int ea_ino;
1141 int err;
1142 int credits;
1143
1144 /* One credit for dec ref on ea_inode, one for orphan list addition, */
1145 credits = 2 + extra_credits;
1146
1147 for (entry = first; !IS_LAST_ENTRY(entry);
1148 entry = EXT4_XATTR_NEXT(entry)) {
1149 if (!entry->e_value_inum)
1150 continue;
1151 ea_ino = le32_to_cpu(entry->e_value_inum);
a6d05676
TE
1152 err = ext4_xattr_inode_iget(parent, ea_ino,
1153 le32_to_cpu(entry->e_hash),
1154 &ea_inode);
30a7eb97
TE
1155 if (err)
1156 continue;
1157
1158 err = ext4_expand_inode_array(ea_inode_array, ea_inode);
1159 if (err) {
1160 ext4_warning_inode(ea_inode,
1161 "Expand inode array err=%d", err);
1162 iput(ea_inode);
1163 continue;
1164 }
1165
1166 err = ext4_xattr_ensure_credits(handle, parent, credits, bh,
1167 dirty, block_csum);
1168 if (err) {
1169 ext4_warning_inode(ea_inode, "Ensure credits err=%d",
1170 err);
1171 continue;
1172 }
1173
dec214d0
TE
1174 err = ext4_xattr_inode_dec_ref(handle, ea_inode);
1175 if (err) {
1176 ext4_warning_inode(ea_inode, "ea_inode dec ref err=%d",
1177 err);
1178 continue;
1179 }
1180
1181 if (!skip_quota)
a6d05676 1182 ext4_xattr_inode_free_quota(parent, ea_inode,
dec214d0 1183 le32_to_cpu(entry->e_value_size));
30a7eb97
TE
1184
1185 /*
1186 * Forget about ea_inode within the same transaction that
1187 * decrements the ref count. This avoids duplicate decrements in
1188 * case the rest of the work spills over to subsequent
1189 * transactions.
1190 */
1191 entry->e_value_inum = 0;
1192 entry->e_value_size = 0;
1193
1194 dirty = true;
1195 }
1196
1197 if (dirty) {
1198 /*
1199 * Note that we are deliberately skipping csum calculation for
1200 * the final update because we do not expect any journal
1201 * restarts until xattr block is freed.
1202 */
1203
1204 err = ext4_handle_dirty_metadata(handle, NULL, bh);
1205 if (err)
1206 ext4_warning_inode(parent,
1207 "handle dirty metadata err=%d", err);
1208 }
1209}
1210
ac27a0ec 1211/*
ec4cb1aa
JK
1212 * Release the xattr block BH: If the reference count is > 1, decrement it;
1213 * otherwise free the block.
ac27a0ec
DK
1214 */
1215static void
617ba13b 1216ext4_xattr_release_block(handle_t *handle, struct inode *inode,
dec214d0
TE
1217 struct buffer_head *bh,
1218 struct ext4_xattr_inode_array **ea_inode_array,
1219 int extra_credits)
ac27a0ec 1220{
47387409 1221 struct mb_cache *ea_block_cache = EA_BLOCK_CACHE(inode);
6048c64b 1222 u32 hash, ref;
8a2bfdcb 1223 int error = 0;
ac27a0ec 1224
5d601255 1225 BUFFER_TRACE(bh, "get_write_access");
8a2bfdcb
MC
1226 error = ext4_journal_get_write_access(handle, bh);
1227 if (error)
1228 goto out;
1229
1230 lock_buffer(bh);
6048c64b
AG
1231 hash = le32_to_cpu(BHDR(bh)->h_hash);
1232 ref = le32_to_cpu(BHDR(bh)->h_refcount);
1233 if (ref == 1) {
ac27a0ec 1234 ea_bdebug(bh, "refcount now=0; freeing");
82939d79
JK
1235 /*
1236 * This must happen under buffer lock for
1237 * ext4_xattr_block_set() to reliably detect freed block
1238 */
cdb7ee4c
TE
1239 if (ea_block_cache)
1240 mb_cache_entry_delete(ea_block_cache, hash,
1241 bh->b_blocknr);
ac27a0ec 1242 get_bh(bh);
ec4cb1aa 1243 unlock_buffer(bh);
dec214d0
TE
1244
1245 if (ext4_has_feature_ea_inode(inode->i_sb))
1246 ext4_xattr_inode_dec_ref_all(handle, inode, bh,
1247 BFIRST(bh),
1248 true /* block_csum */,
1249 ea_inode_array,
1250 extra_credits,
1251 true /* skip_quota */);
e6362609
TT
1252 ext4_free_blocks(handle, inode, bh, 0, 1,
1253 EXT4_FREE_BLOCKS_METADATA |
1254 EXT4_FREE_BLOCKS_FORGET);
ac27a0ec 1255 } else {
6048c64b
AG
1256 ref--;
1257 BHDR(bh)->h_refcount = cpu_to_le32(ref);
1258 if (ref == EXT4_XATTR_REFCOUNT_MAX - 1) {
1259 struct mb_cache_entry *ce;
1260
cdb7ee4c
TE
1261 if (ea_block_cache) {
1262 ce = mb_cache_entry_get(ea_block_cache, hash,
1263 bh->b_blocknr);
1264 if (ce) {
1265 ce->e_reusable = 1;
1266 mb_cache_entry_put(ea_block_cache, ce);
1267 }
6048c64b
AG
1268 }
1269 }
1270
dac7a4b4 1271 ext4_xattr_block_csum_set(inode, bh);
ec4cb1aa
JK
1272 /*
1273 * Beware of this ugliness: Releasing of xattr block references
1274 * from different inodes can race and so we have to protect
1275 * from a race where someone else frees the block (and releases
1276 * its journal_head) before we are done dirtying the buffer. In
1277 * nojournal mode this race is harmless and we actually cannot
dac7a4b4 1278 * call ext4_handle_dirty_metadata() with locked buffer as
ec4cb1aa
JK
1279 * that function can call sync_dirty_buffer() so for that case
1280 * we handle the dirtying after unlocking the buffer.
1281 */
1282 if (ext4_handle_valid(handle))
dac7a4b4 1283 error = ext4_handle_dirty_metadata(handle, inode, bh);
c1bb05a6 1284 unlock_buffer(bh);
ec4cb1aa 1285 if (!ext4_handle_valid(handle))
dac7a4b4 1286 error = ext4_handle_dirty_metadata(handle, inode, bh);
8a2bfdcb 1287 if (IS_SYNC(inode))
0390131b 1288 ext4_handle_sync(handle);
1231b3a1 1289 dquot_free_block(inode, EXT4_C2B(EXT4_SB(inode->i_sb), 1));
8a2bfdcb
MC
1290 ea_bdebug(bh, "refcount now=%d; releasing",
1291 le32_to_cpu(BHDR(bh)->h_refcount));
ac27a0ec 1292 }
8a2bfdcb
MC
1293out:
1294 ext4_std_error(inode->i_sb, error);
1295 return;
ac27a0ec
DK
1296}
1297
6dd4ee7c
KS
1298/*
1299 * Find the available free space for EAs. This also returns the total number of
1300 * bytes used by EA entries.
1301 */
1302static size_t ext4_xattr_free_space(struct ext4_xattr_entry *last,
1303 size_t *min_offs, void *base, int *total)
1304{
1305 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
e50e5129 1306 if (!last->e_value_inum && last->e_value_size) {
6dd4ee7c
KS
1307 size_t offs = le16_to_cpu(last->e_value_offs);
1308 if (offs < *min_offs)
1309 *min_offs = offs;
1310 }
7b1b2c1b
TT
1311 if (total)
1312 *total += EXT4_XATTR_LEN(last->e_name_len);
6dd4ee7c
KS
1313 }
1314 return (*min_offs - ((void *)last - base) - sizeof(__u32));
1315}
1316
e50e5129
AD
1317/*
1318 * Write the value of the EA in an inode.
1319 */
1320static int ext4_xattr_inode_write(handle_t *handle, struct inode *ea_inode,
1321 const void *buf, int bufsize)
1322{
1323 struct buffer_head *bh = NULL;
1324 unsigned long block = 0;
dec214d0
TE
1325 int blocksize = ea_inode->i_sb->s_blocksize;
1326 int max_blocks = (bufsize + blocksize - 1) >> ea_inode->i_blkbits;
e50e5129
AD
1327 int csize, wsize = 0;
1328 int ret = 0;
1329 int retries = 0;
1330
1331retry:
1332 while (ret >= 0 && ret < max_blocks) {
1333 struct ext4_map_blocks map;
1334 map.m_lblk = block += ret;
1335 map.m_len = max_blocks -= ret;
1336
1337 ret = ext4_map_blocks(handle, ea_inode, &map,
1338 EXT4_GET_BLOCKS_CREATE);
1339 if (ret <= 0) {
1340 ext4_mark_inode_dirty(handle, ea_inode);
1341 if (ret == -ENOSPC &&
1342 ext4_should_retry_alloc(ea_inode->i_sb, &retries)) {
1343 ret = 0;
1344 goto retry;
1345 }
1346 break;
1347 }
1348 }
1349
1350 if (ret < 0)
1351 return ret;
1352
1353 block = 0;
1354 while (wsize < bufsize) {
1355 if (bh != NULL)
1356 brelse(bh);
1357 csize = (bufsize - wsize) > blocksize ? blocksize :
1358 bufsize - wsize;
1359 bh = ext4_getblk(handle, ea_inode, block, 0);
1360 if (IS_ERR(bh))
1361 return PTR_ERR(bh);
1362 ret = ext4_journal_get_write_access(handle, bh);
1363 if (ret)
1364 goto out;
1365
1366 memcpy(bh->b_data, buf, csize);
1367 set_buffer_uptodate(bh);
1368 ext4_handle_dirty_metadata(handle, ea_inode, bh);
1369
1370 buf += csize;
1371 wsize += csize;
1372 block += 1;
1373 }
1374
1375 inode_lock(ea_inode);
1376 i_size_write(ea_inode, wsize);
1377 ext4_update_i_disksize(ea_inode, wsize);
1378 inode_unlock(ea_inode);
1379
1380 ext4_mark_inode_dirty(handle, ea_inode);
1381
1382out:
1383 brelse(bh);
1384
1385 return ret;
1386}
1387
1388/*
1389 * Create an inode to store the value of a large EA.
1390 */
1391static struct inode *ext4_xattr_inode_create(handle_t *handle,
dec214d0 1392 struct inode *inode, u32 hash)
e50e5129
AD
1393{
1394 struct inode *ea_inode = NULL;
9e1ba001 1395 uid_t owner[2] = { i_uid_read(inode), i_gid_read(inode) };
bd3b963b 1396 int err;
e50e5129
AD
1397
1398 /*
1399 * Let the next inode be the goal, so we try and allocate the EA inode
1400 * in the same group, or nearby one.
1401 */
1402 ea_inode = ext4_new_inode(handle, inode->i_sb->s_root->d_inode,
9e1ba001 1403 S_IFREG | 0600, NULL, inode->i_ino + 1, owner,
1b917ed8 1404 EXT4_EA_INODE_FL);
e50e5129
AD
1405 if (!IS_ERR(ea_inode)) {
1406 ea_inode->i_op = &ext4_file_inode_operations;
1407 ea_inode->i_fop = &ext4_file_operations;
1408 ext4_set_aops(ea_inode);
33d201e0 1409 ext4_xattr_inode_set_class(ea_inode);
e50e5129 1410 unlock_new_inode(ea_inode);
dec214d0
TE
1411 ext4_xattr_inode_set_ref(ea_inode, 1);
1412 ext4_xattr_inode_set_hash(ea_inode, hash);
1413 err = ext4_mark_inode_dirty(handle, ea_inode);
1414 if (!err)
1415 err = ext4_inode_attach_jinode(ea_inode);
bd3b963b
TE
1416 if (err) {
1417 iput(ea_inode);
1418 return ERR_PTR(err);
1419 }
dec214d0
TE
1420
1421 /*
1422 * Xattr inodes are shared therefore quota charging is performed
1423 * at a higher level.
1424 */
1425 dquot_free_inode(ea_inode);
1426 dquot_drop(ea_inode);
1427 inode_lock(ea_inode);
1428 ea_inode->i_flags |= S_NOQUOTA;
1429 inode_unlock(ea_inode);
e50e5129
AD
1430 }
1431
1432 return ea_inode;
1433}
1434
dec214d0
TE
1435static struct inode *
1436ext4_xattr_inode_cache_find(struct inode *inode, const void *value,
1437 size_t value_len, u32 hash)
e50e5129 1438{
dec214d0
TE
1439 struct inode *ea_inode;
1440 struct mb_cache_entry *ce;
1441 struct mb_cache *ea_inode_cache = EA_INODE_CACHE(inode);
1442 void *ea_data;
1443
cdb7ee4c
TE
1444 if (!ea_inode_cache)
1445 return NULL;
1446
dec214d0
TE
1447 ce = mb_cache_entry_find_first(ea_inode_cache, hash);
1448 if (!ce)
1449 return NULL;
1450
1451 ea_data = ext4_kvmalloc(value_len, GFP_NOFS);
1452 if (!ea_data) {
1453 mb_cache_entry_put(ea_inode_cache, ce);
1454 return NULL;
1455 }
e50e5129 1456
dec214d0
TE
1457 while (ce) {
1458 ea_inode = ext4_iget(inode->i_sb, ce->e_value);
1459 if (!IS_ERR(ea_inode) &&
1460 !is_bad_inode(ea_inode) &&
1461 (EXT4_I(ea_inode)->i_flags & EXT4_EA_INODE_FL) &&
1462 i_size_read(ea_inode) == value_len &&
1463 !ext4_xattr_inode_read(ea_inode, ea_data, value_len) &&
b9fc761e
TE
1464 !ext4_xattr_inode_verify_hashes(ea_inode, NULL, ea_data,
1465 value_len) &&
dec214d0
TE
1466 !memcmp(value, ea_data, value_len)) {
1467 mb_cache_entry_touch(ea_inode_cache, ce);
1468 mb_cache_entry_put(ea_inode_cache, ce);
1469 kvfree(ea_data);
1470 return ea_inode;
1471 }
e50e5129 1472
dec214d0
TE
1473 if (!IS_ERR(ea_inode))
1474 iput(ea_inode);
1475 ce = mb_cache_entry_find_next(ea_inode_cache, ce);
1476 }
1477 kvfree(ea_data);
1478 return NULL;
e50e5129
AD
1479}
1480
1481/*
1482 * Add value of the EA in an inode.
1483 */
dec214d0
TE
1484static int ext4_xattr_inode_lookup_create(handle_t *handle, struct inode *inode,
1485 const void *value, size_t value_len,
1486 struct inode **ret_inode)
e50e5129
AD
1487{
1488 struct inode *ea_inode;
dec214d0 1489 u32 hash;
e50e5129
AD
1490 int err;
1491
dec214d0
TE
1492 hash = ext4_xattr_inode_hash(EXT4_SB(inode->i_sb), value, value_len);
1493 ea_inode = ext4_xattr_inode_cache_find(inode, value, value_len, hash);
1494 if (ea_inode) {
1495 err = ext4_xattr_inode_inc_ref(handle, ea_inode);
1496 if (err) {
1497 iput(ea_inode);
1498 return err;
1499 }
1500
1501 *ret_inode = ea_inode;
1502 return 0;
1503 }
1504
e50e5129 1505 /* Create an inode for the EA value */
dec214d0 1506 ea_inode = ext4_xattr_inode_create(handle, inode, hash);
e50e5129
AD
1507 if (IS_ERR(ea_inode))
1508 return PTR_ERR(ea_inode);
1509
1510 err = ext4_xattr_inode_write(handle, ea_inode, value, value_len);
dec214d0
TE
1511 if (err) {
1512 ext4_xattr_inode_dec_ref(handle, ea_inode);
1513 iput(ea_inode);
1514 return err;
1515 }
e50e5129 1516
cdb7ee4c
TE
1517 if (EA_INODE_CACHE(inode))
1518 mb_cache_entry_create(EA_INODE_CACHE(inode), GFP_NOFS, hash,
1519 ea_inode->i_ino, true /* reusable */);
e50e5129 1520
dec214d0
TE
1521 *ret_inode = ea_inode;
1522 return 0;
e50e5129
AD
1523}
1524
9c6e7853
TE
1525/*
1526 * Reserve min(block_size/8, 1024) bytes for xattr entries/names if ea_inode
1527 * feature is enabled.
1528 */
1529#define EXT4_XATTR_BLOCK_RESERVE(inode) min(i_blocksize(inode)/8, 1024U)
1530
e50e5129
AD
1531static int ext4_xattr_set_entry(struct ext4_xattr_info *i,
1532 struct ext4_xattr_search *s,
daf83281
TE
1533 handle_t *handle, struct inode *inode,
1534 bool is_block)
ac27a0ec 1535{
617ba13b 1536 struct ext4_xattr_entry *last;
dec214d0
TE
1537 struct ext4_xattr_entry *here = s->here;
1538 size_t min_offs = s->end - s->base, name_len = strlen(i->name);
e50e5129 1539 int in_inode = i->in_inode;
dec214d0
TE
1540 struct inode *old_ea_inode = NULL;
1541 struct inode *new_ea_inode = NULL;
1542 size_t old_size, new_size;
1543 int ret;
1544
1545 /* Space used by old and new values. */
1546 old_size = (!s->not_found && !here->e_value_inum) ?
1547 EXT4_XATTR_SIZE(le32_to_cpu(here->e_value_size)) : 0;
1548 new_size = (i->value && !in_inode) ? EXT4_XATTR_SIZE(i->value_len) : 0;
1549
1550 /*
1551 * Optimization for the simple case when old and new values have the
1552 * same padded sizes. Not applicable if external inodes are involved.
1553 */
1554 if (new_size && new_size == old_size) {
1555 size_t offs = le16_to_cpu(here->e_value_offs);
1556 void *val = s->base + offs;
1557
1558 here->e_value_size = cpu_to_le32(i->value_len);
1559 if (i->value == EXT4_ZERO_XATTR_VALUE) {
1560 memset(val, 0, new_size);
1561 } else {
1562 memcpy(val, i->value, i->value_len);
1563 /* Clear padding bytes. */
1564 memset(val + i->value_len, 0, new_size - i->value_len);
1565 }
32aaf194 1566 goto update_hash;
dec214d0 1567 }
e50e5129 1568
ac27a0ec
DK
1569 /* Compute min_offs and last. */
1570 last = s->first;
617ba13b 1571 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
e50e5129 1572 if (!last->e_value_inum && last->e_value_size) {
ac27a0ec
DK
1573 size_t offs = le16_to_cpu(last->e_value_offs);
1574 if (offs < min_offs)
1575 min_offs = offs;
1576 }
1577 }
dec214d0
TE
1578
1579 /* Check whether we have enough space. */
ac27a0ec 1580 if (i->value) {
dec214d0 1581 size_t free;
e50e5129 1582
dec214d0
TE
1583 free = min_offs - ((void *)last - s->base) - sizeof(__u32);
1584 if (!s->not_found)
1585 free += EXT4_XATTR_LEN(name_len) + old_size;
e50e5129 1586
dec214d0
TE
1587 if (free < EXT4_XATTR_LEN(name_len) + new_size) {
1588 ret = -ENOSPC;
1589 goto out;
1590 }
9c6e7853
TE
1591
1592 /*
1593 * If storing the value in an external inode is an option,
1594 * reserve space for xattr entries/names in the external
1595 * attribute block so that a long value does not occupy the
1596 * whole space and prevent futher entries being added.
1597 */
daf83281
TE
1598 if (ext4_has_feature_ea_inode(inode->i_sb) &&
1599 new_size && is_block &&
9c6e7853
TE
1600 (min_offs + old_size - new_size) <
1601 EXT4_XATTR_BLOCK_RESERVE(inode)) {
1602 ret = -ENOSPC;
1603 goto out;
1604 }
ac27a0ec
DK
1605 }
1606
dec214d0
TE
1607 /*
1608 * Getting access to old and new ea inodes is subject to failures.
1609 * Finish that work before doing any modifications to the xattr data.
1610 */
1611 if (!s->not_found && here->e_value_inum) {
1612 ret = ext4_xattr_inode_iget(inode,
1613 le32_to_cpu(here->e_value_inum),
a6d05676 1614 le32_to_cpu(here->e_hash),
dec214d0
TE
1615 &old_ea_inode);
1616 if (ret) {
1617 old_ea_inode = NULL;
1618 goto out;
1619 }
1620 }
1621 if (i->value && in_inode) {
1622 WARN_ON_ONCE(!i->value_len);
ac27a0ec 1623
dec214d0
TE
1624 ret = ext4_xattr_inode_alloc_quota(inode, i->value_len);
1625 if (ret)
1626 goto out;
1627
1628 ret = ext4_xattr_inode_lookup_create(handle, inode, i->value,
1629 i->value_len,
1630 &new_ea_inode);
1631 if (ret) {
1632 new_ea_inode = NULL;
a6d05676 1633 ext4_xattr_inode_free_quota(inode, NULL, i->value_len);
dec214d0 1634 goto out;
ac27a0ec 1635 }
dec214d0
TE
1636 }
1637
1638 if (old_ea_inode) {
1639 /* We are ready to release ref count on the old_ea_inode. */
1640 ret = ext4_xattr_inode_dec_ref(handle, old_ea_inode);
1641 if (ret) {
1642 /* Release newly required ref count on new_ea_inode. */
1643 if (new_ea_inode) {
1644 int err;
1645
1646 err = ext4_xattr_inode_dec_ref(handle,
1647 new_ea_inode);
1648 if (err)
1649 ext4_warning_inode(new_ea_inode,
1650 "dec ref new_ea_inode err=%d",
1651 err);
a6d05676 1652 ext4_xattr_inode_free_quota(inode, new_ea_inode,
dec214d0
TE
1653 i->value_len);
1654 }
1655 goto out;
e50e5129 1656 }
dec214d0 1657
a6d05676 1658 ext4_xattr_inode_free_quota(inode, old_ea_inode,
dec214d0
TE
1659 le32_to_cpu(here->e_value_size));
1660 }
1661
1662 /* No failures allowed past this point. */
1663
1664 if (!s->not_found && here->e_value_offs) {
1665 /* Remove the old value. */
1666 void *first_val = s->base + min_offs;
1667 size_t offs = le16_to_cpu(here->e_value_offs);
1668 void *val = s->base + offs;
1669
1670 memmove(first_val + old_size, first_val, val - first_val);
1671 memset(first_val, 0, old_size);
1672 min_offs += old_size;
1673
1674 /* Adjust all value offsets. */
1675 last = s->first;
1676 while (!IS_LAST_ENTRY(last)) {
1677 size_t o = le16_to_cpu(last->e_value_offs);
1678
1679 if (!last->e_value_inum &&
1680 last->e_value_size && o < offs)
1681 last->e_value_offs = cpu_to_le16(o + old_size);
1682 last = EXT4_XATTR_NEXT(last);
ac27a0ec
DK
1683 }
1684 }
1685
dec214d0
TE
1686 if (!i->value) {
1687 /* Remove old name. */
1688 size_t size = EXT4_XATTR_LEN(name_len);
1689
1690 last = ENTRY((void *)last - size);
1691 memmove(here, (void *)here + size,
1692 (void *)last - (void *)here + sizeof(__u32));
1693 memset(last, 0, size);
1694 } else if (s->not_found) {
1695 /* Insert new name. */
1696 size_t size = EXT4_XATTR_LEN(name_len);
1697 size_t rest = (void *)last - (void *)here + sizeof(__u32);
1698
1699 memmove((void *)here + size, here, rest);
1700 memset(here, 0, size);
1701 here->e_name_index = i->name_index;
1702 here->e_name_len = name_len;
1703 memcpy(here->e_name, i->name, name_len);
1704 } else {
1705 /* This is an update, reset value info. */
1706 here->e_value_inum = 0;
1707 here->e_value_offs = 0;
1708 here->e_value_size = 0;
1709 }
1710
ac27a0ec 1711 if (i->value) {
dec214d0 1712 /* Insert new value. */
e50e5129 1713 if (in_inode) {
dec214d0 1714 here->e_value_inum = cpu_to_le32(new_ea_inode->i_ino);
e50e5129 1715 } else if (i->value_len) {
dec214d0
TE
1716 void *val = s->base + min_offs - new_size;
1717
1718 here->e_value_offs = cpu_to_le16(min_offs - new_size);
bd9926e8 1719 if (i->value == EXT4_ZERO_XATTR_VALUE) {
dec214d0 1720 memset(val, 0, new_size);
bd9926e8 1721 } else {
bd9926e8 1722 memcpy(val, i->value, i->value_len);
dec214d0
TE
1723 /* Clear padding bytes. */
1724 memset(val + i->value_len, 0,
1725 new_size - i->value_len);
bd9926e8 1726 }
ac27a0ec 1727 }
dec214d0 1728 here->e_value_size = cpu_to_le32(i->value_len);
ac27a0ec 1729 }
daf83281 1730
32aaf194 1731update_hash:
b9fc761e
TE
1732 if (i->value) {
1733 __le32 hash = 0;
1734
1735 /* Entry hash calculation. */
1736 if (in_inode) {
1737 __le32 crc32c_hash;
1738
1739 /*
1740 * Feed crc32c hash instead of the raw value for entry
1741 * hash calculation. This is to avoid walking
1742 * potentially long value buffer again.
1743 */
1744 crc32c_hash = cpu_to_le32(
1745 ext4_xattr_inode_get_hash(new_ea_inode));
1746 hash = ext4_xattr_hash_entry(here->e_name,
1747 here->e_name_len,
1748 &crc32c_hash, 1);
1749 } else if (is_block) {
32aaf194
TE
1750 __le32 *value = s->base + le16_to_cpu(
1751 here->e_value_offs);
b9fc761e
TE
1752
1753 hash = ext4_xattr_hash_entry(here->e_name,
1754 here->e_name_len, value,
1755 new_size >> 2);
1756 }
1757 here->e_hash = hash;
daf83281
TE
1758 }
1759
b9fc761e
TE
1760 if (is_block)
1761 ext4_xattr_rehash((struct ext4_xattr_header *)s->base);
1762
dec214d0 1763 ret = 0;
e50e5129 1764out:
dec214d0
TE
1765 iput(old_ea_inode);
1766 iput(new_ea_inode);
1767 return ret;
ac27a0ec
DK
1768}
1769
617ba13b
MC
1770struct ext4_xattr_block_find {
1771 struct ext4_xattr_search s;
ac27a0ec
DK
1772 struct buffer_head *bh;
1773};
1774
1775static int
617ba13b
MC
1776ext4_xattr_block_find(struct inode *inode, struct ext4_xattr_info *i,
1777 struct ext4_xattr_block_find *bs)
ac27a0ec
DK
1778{
1779 struct super_block *sb = inode->i_sb;
1780 int error;
1781
1782 ea_idebug(inode, "name=%d.%s, value=%p, value_len=%ld",
1783 i->name_index, i->name, i->value, (long)i->value_len);
1784
617ba13b 1785 if (EXT4_I(inode)->i_file_acl) {
ac27a0ec 1786 /* The inode already has an extended attribute block. */
617ba13b 1787 bs->bh = sb_bread(sb, EXT4_I(inode)->i_file_acl);
ac27a0ec
DK
1788 error = -EIO;
1789 if (!bs->bh)
1790 goto cleanup;
1791 ea_bdebug(bs->bh, "b_count=%d, refcount=%d",
1792 atomic_read(&(bs->bh->b_count)),
1793 le32_to_cpu(BHDR(bs->bh)->h_refcount));
cc8e94fd 1794 if (ext4_xattr_check_block(inode, bs->bh)) {
24676da4
TT
1795 EXT4_ERROR_INODE(inode, "bad block %llu",
1796 EXT4_I(inode)->i_file_acl);
6a797d27 1797 error = -EFSCORRUPTED;
ac27a0ec
DK
1798 goto cleanup;
1799 }
1800 /* Find the named attribute. */
1801 bs->s.base = BHDR(bs->bh);
1802 bs->s.first = BFIRST(bs->bh);
1803 bs->s.end = bs->bh->b_data + bs->bh->b_size;
1804 bs->s.here = bs->s.first;
617ba13b 1805 error = ext4_xattr_find_entry(&bs->s.here, i->name_index,
6ba644b9 1806 i->name, 1);
ac27a0ec
DK
1807 if (error && error != -ENODATA)
1808 goto cleanup;
1809 bs->s.not_found = error;
1810 }
1811 error = 0;
1812
1813cleanup:
1814 return error;
1815}
1816
1817static int
617ba13b
MC
1818ext4_xattr_block_set(handle_t *handle, struct inode *inode,
1819 struct ext4_xattr_info *i,
1820 struct ext4_xattr_block_find *bs)
ac27a0ec
DK
1821{
1822 struct super_block *sb = inode->i_sb;
1823 struct buffer_head *new_bh = NULL;
b347e2bc
TE
1824 struct ext4_xattr_search s_copy = bs->s;
1825 struct ext4_xattr_search *s = &s_copy;
7a2508e1 1826 struct mb_cache_entry *ce = NULL;
8a2bfdcb 1827 int error = 0;
47387409 1828 struct mb_cache *ea_block_cache = EA_BLOCK_CACHE(inode);
a6d05676
TE
1829 struct inode *ea_inode = NULL, *tmp_inode;
1830 size_t old_ea_inode_quota = 0;
1831 unsigned int ea_ino;
1832
ac27a0ec 1833
617ba13b 1834#define header(x) ((struct ext4_xattr_header *)(x))
ac27a0ec 1835
ac27a0ec 1836 if (s->base) {
5d601255 1837 BUFFER_TRACE(bs->bh, "get_write_access");
8a2bfdcb
MC
1838 error = ext4_journal_get_write_access(handle, bs->bh);
1839 if (error)
1840 goto cleanup;
1841 lock_buffer(bs->bh);
1842
ac27a0ec 1843 if (header(s->base)->h_refcount == cpu_to_le32(1)) {
82939d79
JK
1844 __u32 hash = le32_to_cpu(BHDR(bs->bh)->h_hash);
1845
1846 /*
1847 * This must happen under buffer lock for
1848 * ext4_xattr_block_set() to reliably detect modified
1849 * block
1850 */
cdb7ee4c
TE
1851 if (ea_block_cache)
1852 mb_cache_entry_delete(ea_block_cache, hash,
1853 bs->bh->b_blocknr);
ac27a0ec 1854 ea_bdebug(bs->bh, "modifying in-place");
daf83281
TE
1855 error = ext4_xattr_set_entry(i, s, handle, inode,
1856 true /* is_block */);
dac7a4b4 1857 ext4_xattr_block_csum_set(inode, bs->bh);
ac27a0ec 1858 unlock_buffer(bs->bh);
6a797d27 1859 if (error == -EFSCORRUPTED)
ac27a0ec
DK
1860 goto bad_block;
1861 if (!error)
dac7a4b4
TT
1862 error = ext4_handle_dirty_metadata(handle,
1863 inode,
1864 bs->bh);
ac27a0ec
DK
1865 if (error)
1866 goto cleanup;
1867 goto inserted;
1868 } else {
1869 int offset = (char *)s->here - bs->bh->b_data;
1870
8a2bfdcb 1871 unlock_buffer(bs->bh);
ac27a0ec 1872 ea_bdebug(bs->bh, "cloning");
216553c4 1873 s->base = kmalloc(bs->bh->b_size, GFP_NOFS);
ac27a0ec
DK
1874 error = -ENOMEM;
1875 if (s->base == NULL)
1876 goto cleanup;
1877 memcpy(s->base, BHDR(bs->bh), bs->bh->b_size);
1878 s->first = ENTRY(header(s->base)+1);
1879 header(s->base)->h_refcount = cpu_to_le32(1);
1880 s->here = ENTRY(s->base + offset);
1881 s->end = s->base + bs->bh->b_size;
dec214d0
TE
1882
1883 /*
1884 * If existing entry points to an xattr inode, we need
1885 * to prevent ext4_xattr_set_entry() from decrementing
1886 * ref count on it because the reference belongs to the
1887 * original block. In this case, make the entry look
1888 * like it has an empty value.
1889 */
1890 if (!s->not_found && s->here->e_value_inum) {
a6d05676
TE
1891 ea_ino = le32_to_cpu(s->here->e_value_inum);
1892 error = ext4_xattr_inode_iget(inode, ea_ino,
1893 le32_to_cpu(s->here->e_hash),
1894 &tmp_inode);
1895 if (error)
1896 goto cleanup;
1897
1898 if (!ext4_test_inode_state(tmp_inode,
1899 EXT4_STATE_LUSTRE_EA_INODE)) {
1900 /*
1901 * Defer quota free call for previous
1902 * inode until success is guaranteed.
1903 */
1904 old_ea_inode_quota = le32_to_cpu(
dec214d0 1905 s->here->e_value_size);
a6d05676
TE
1906 }
1907 iput(tmp_inode);
1908
dec214d0
TE
1909 s->here->e_value_inum = 0;
1910 s->here->e_value_size = 0;
1911 }
ac27a0ec
DK
1912 }
1913 } else {
1914 /* Allocate a buffer where we construct the new block. */
216553c4 1915 s->base = kzalloc(sb->s_blocksize, GFP_NOFS);
ac27a0ec
DK
1916 /* assert(header == s->base) */
1917 error = -ENOMEM;
1918 if (s->base == NULL)
1919 goto cleanup;
617ba13b 1920 header(s->base)->h_magic = cpu_to_le32(EXT4_XATTR_MAGIC);
ac27a0ec
DK
1921 header(s->base)->h_blocks = cpu_to_le32(1);
1922 header(s->base)->h_refcount = cpu_to_le32(1);
1923 s->first = ENTRY(header(s->base)+1);
1924 s->here = ENTRY(header(s->base)+1);
1925 s->end = s->base + sb->s_blocksize;
1926 }
1927
daf83281 1928 error = ext4_xattr_set_entry(i, s, handle, inode, true /* is_block */);
6a797d27 1929 if (error == -EFSCORRUPTED)
ac27a0ec
DK
1930 goto bad_block;
1931 if (error)
1932 goto cleanup;
dec214d0
TE
1933
1934 if (i->value && s->here->e_value_inum) {
dec214d0
TE
1935 /*
1936 * A ref count on ea_inode has been taken as part of the call to
1937 * ext4_xattr_set_entry() above. We would like to drop this
1938 * extra ref but we have to wait until the xattr block is
1939 * initialized and has its own ref count on the ea_inode.
1940 */
1941 ea_ino = le32_to_cpu(s->here->e_value_inum);
a6d05676
TE
1942 error = ext4_xattr_inode_iget(inode, ea_ino,
1943 le32_to_cpu(s->here->e_hash),
1944 &ea_inode);
dec214d0
TE
1945 if (error) {
1946 ea_inode = NULL;
1947 goto cleanup;
1948 }
1949 }
1950
ac27a0ec
DK
1951inserted:
1952 if (!IS_LAST_ENTRY(s->first)) {
47387409
TE
1953 new_bh = ext4_xattr_block_cache_find(inode, header(s->base),
1954 &ce);
ac27a0ec
DK
1955 if (new_bh) {
1956 /* We found an identical block in the cache. */
1957 if (new_bh == bs->bh)
1958 ea_bdebug(new_bh, "keeping");
1959 else {
6048c64b
AG
1960 u32 ref;
1961
b8cb5a54
TE
1962 WARN_ON_ONCE(dquot_initialize_needed(inode));
1963
ac27a0ec
DK
1964 /* The old block is released after updating
1965 the inode. */
1231b3a1
LC
1966 error = dquot_alloc_block(inode,
1967 EXT4_C2B(EXT4_SB(sb), 1));
5dd4056d 1968 if (error)
ac27a0ec 1969 goto cleanup;
5d601255 1970 BUFFER_TRACE(new_bh, "get_write_access");
617ba13b 1971 error = ext4_journal_get_write_access(handle,
ac27a0ec
DK
1972 new_bh);
1973 if (error)
1974 goto cleanup_dquot;
1975 lock_buffer(new_bh);
82939d79
JK
1976 /*
1977 * We have to be careful about races with
6048c64b
AG
1978 * freeing, rehashing or adding references to
1979 * xattr block. Once we hold buffer lock xattr
1980 * block's state is stable so we can check
1981 * whether the block got freed / rehashed or
1982 * not. Since we unhash mbcache entry under
1983 * buffer lock when freeing / rehashing xattr
1984 * block, checking whether entry is still
1985 * hashed is reliable. Same rules hold for
1986 * e_reusable handling.
82939d79 1987 */
6048c64b
AG
1988 if (hlist_bl_unhashed(&ce->e_hash_list) ||
1989 !ce->e_reusable) {
82939d79
JK
1990 /*
1991 * Undo everything and check mbcache
1992 * again.
1993 */
1994 unlock_buffer(new_bh);
1995 dquot_free_block(inode,
1996 EXT4_C2B(EXT4_SB(sb),
1997 1));
1998 brelse(new_bh);
47387409 1999 mb_cache_entry_put(ea_block_cache, ce);
82939d79
JK
2000 ce = NULL;
2001 new_bh = NULL;
2002 goto inserted;
2003 }
6048c64b
AG
2004 ref = le32_to_cpu(BHDR(new_bh)->h_refcount) + 1;
2005 BHDR(new_bh)->h_refcount = cpu_to_le32(ref);
2006 if (ref >= EXT4_XATTR_REFCOUNT_MAX)
2007 ce->e_reusable = 0;
ac27a0ec 2008 ea_bdebug(new_bh, "reusing; refcount now=%d",
6048c64b 2009 ref);
dac7a4b4 2010 ext4_xattr_block_csum_set(inode, new_bh);
ac27a0ec 2011 unlock_buffer(new_bh);
dac7a4b4
TT
2012 error = ext4_handle_dirty_metadata(handle,
2013 inode,
2014 new_bh);
ac27a0ec
DK
2015 if (error)
2016 goto cleanup_dquot;
2017 }
47387409
TE
2018 mb_cache_entry_touch(ea_block_cache, ce);
2019 mb_cache_entry_put(ea_block_cache, ce);
ac27a0ec
DK
2020 ce = NULL;
2021 } else if (bs->bh && s->base == bs->bh->b_data) {
2022 /* We were modifying this block in-place. */
2023 ea_bdebug(bs->bh, "keeping this block");
ec000220 2024 ext4_xattr_block_cache_insert(ea_block_cache, bs->bh);
ac27a0ec
DK
2025 new_bh = bs->bh;
2026 get_bh(new_bh);
2027 } else {
2028 /* We need to allocate a new block */
fb0a387d
ES
2029 ext4_fsblk_t goal, block;
2030
b8cb5a54
TE
2031 WARN_ON_ONCE(dquot_initialize_needed(inode));
2032
fb0a387d 2033 goal = ext4_group_first_block_no(sb,
d00a6d7b 2034 EXT4_I(inode)->i_block_group);
fb0a387d
ES
2035
2036 /* non-extent files can't have physical blocks past 2^32 */
12e9b892 2037 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
fb0a387d
ES
2038 goal = goal & EXT4_MAX_BLOCK_FILE_PHYS;
2039
55f020db
AH
2040 block = ext4_new_meta_blocks(handle, inode, goal, 0,
2041 NULL, &error);
ac27a0ec
DK
2042 if (error)
2043 goto cleanup;
fb0a387d 2044
12e9b892 2045 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
fb0a387d
ES
2046 BUG_ON(block > EXT4_MAX_BLOCK_FILE_PHYS);
2047
ace36ad4
JP
2048 ea_idebug(inode, "creating block %llu",
2049 (unsigned long long)block);
ac27a0ec
DK
2050
2051 new_bh = sb_getblk(sb, block);
aebf0243 2052 if (unlikely(!new_bh)) {
860d21e2 2053 error = -ENOMEM;
ac27a0ec 2054getblk_failed:
7dc57615 2055 ext4_free_blocks(handle, inode, NULL, block, 1,
e6362609 2056 EXT4_FREE_BLOCKS_METADATA);
ac27a0ec
DK
2057 goto cleanup;
2058 }
dec214d0
TE
2059 error = ext4_xattr_inode_inc_ref_all(handle, inode,
2060 ENTRY(header(s->base)+1));
2061 if (error)
2062 goto getblk_failed;
2063 if (ea_inode) {
2064 /* Drop the extra ref on ea_inode. */
2065 error = ext4_xattr_inode_dec_ref(handle,
2066 ea_inode);
2067 if (error)
2068 ext4_warning_inode(ea_inode,
2069 "dec ref error=%d",
2070 error);
2071 iput(ea_inode);
2072 ea_inode = NULL;
2073 }
2074
ac27a0ec 2075 lock_buffer(new_bh);
617ba13b 2076 error = ext4_journal_get_create_access(handle, new_bh);
ac27a0ec
DK
2077 if (error) {
2078 unlock_buffer(new_bh);
860d21e2 2079 error = -EIO;
ac27a0ec
DK
2080 goto getblk_failed;
2081 }
2082 memcpy(new_bh->b_data, s->base, new_bh->b_size);
dac7a4b4 2083 ext4_xattr_block_csum_set(inode, new_bh);
ac27a0ec
DK
2084 set_buffer_uptodate(new_bh);
2085 unlock_buffer(new_bh);
47387409 2086 ext4_xattr_block_cache_insert(ea_block_cache, new_bh);
dac7a4b4
TT
2087 error = ext4_handle_dirty_metadata(handle, inode,
2088 new_bh);
ac27a0ec
DK
2089 if (error)
2090 goto cleanup;
2091 }
2092 }
2093
a6d05676
TE
2094 if (old_ea_inode_quota)
2095 ext4_xattr_inode_free_quota(inode, NULL, old_ea_inode_quota);
dec214d0 2096
ac27a0ec 2097 /* Update the inode. */
617ba13b 2098 EXT4_I(inode)->i_file_acl = new_bh ? new_bh->b_blocknr : 0;
ac27a0ec
DK
2099
2100 /* Drop the previous xattr block. */
dec214d0
TE
2101 if (bs->bh && bs->bh != new_bh) {
2102 struct ext4_xattr_inode_array *ea_inode_array = NULL;
2103
2104 ext4_xattr_release_block(handle, inode, bs->bh,
2105 &ea_inode_array,
2106 0 /* extra_credits */);
2107 ext4_xattr_inode_array_free(ea_inode_array);
2108 }
ac27a0ec
DK
2109 error = 0;
2110
2111cleanup:
dec214d0
TE
2112 if (ea_inode) {
2113 int error2;
2114
2115 error2 = ext4_xattr_inode_dec_ref(handle, ea_inode);
2116 if (error2)
2117 ext4_warning_inode(ea_inode, "dec ref error=%d",
2118 error2);
2119
2120 /* If there was an error, revert the quota charge. */
2121 if (error)
a6d05676 2122 ext4_xattr_inode_free_quota(inode, ea_inode,
dec214d0
TE
2123 i_size_read(ea_inode));
2124 iput(ea_inode);
2125 }
ac27a0ec 2126 if (ce)
47387409 2127 mb_cache_entry_put(ea_block_cache, ce);
ac27a0ec
DK
2128 brelse(new_bh);
2129 if (!(bs->bh && s->base == bs->bh->b_data))
2130 kfree(s->base);
2131
2132 return error;
2133
2134cleanup_dquot:
1231b3a1 2135 dquot_free_block(inode, EXT4_C2B(EXT4_SB(sb), 1));
ac27a0ec
DK
2136 goto cleanup;
2137
2138bad_block:
24676da4
TT
2139 EXT4_ERROR_INODE(inode, "bad block %llu",
2140 EXT4_I(inode)->i_file_acl);
ac27a0ec
DK
2141 goto cleanup;
2142
2143#undef header
2144}
2145
879b3825
TM
2146int ext4_xattr_ibody_find(struct inode *inode, struct ext4_xattr_info *i,
2147 struct ext4_xattr_ibody_find *is)
ac27a0ec 2148{
617ba13b
MC
2149 struct ext4_xattr_ibody_header *header;
2150 struct ext4_inode *raw_inode;
ac27a0ec
DK
2151 int error;
2152
617ba13b 2153 if (EXT4_I(inode)->i_extra_isize == 0)
ac27a0ec 2154 return 0;
617ba13b 2155 raw_inode = ext4_raw_inode(&is->iloc);
ac27a0ec
DK
2156 header = IHDR(inode, raw_inode);
2157 is->s.base = is->s.first = IFIRST(header);
2158 is->s.here = is->s.first;
617ba13b 2159 is->s.end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
19f5fb7a 2160 if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
9e92f48c 2161 error = xattr_check_inode(inode, header, is->s.end);
ac27a0ec
DK
2162 if (error)
2163 return error;
2164 /* Find the named attribute. */
617ba13b 2165 error = ext4_xattr_find_entry(&is->s.here, i->name_index,
6ba644b9 2166 i->name, 0);
ac27a0ec
DK
2167 if (error && error != -ENODATA)
2168 return error;
2169 is->s.not_found = error;
2170 }
2171 return 0;
2172}
2173
0d812f77
TM
2174int ext4_xattr_ibody_inline_set(handle_t *handle, struct inode *inode,
2175 struct ext4_xattr_info *i,
2176 struct ext4_xattr_ibody_find *is)
2177{
2178 struct ext4_xattr_ibody_header *header;
2179 struct ext4_xattr_search *s = &is->s;
2180 int error;
2181
2182 if (EXT4_I(inode)->i_extra_isize == 0)
2183 return -ENOSPC;
daf83281 2184 error = ext4_xattr_set_entry(i, s, handle, inode, false /* is_block */);
0d812f77
TM
2185 if (error) {
2186 if (error == -ENOSPC &&
2187 ext4_has_inline_data(inode)) {
2188 error = ext4_try_to_evict_inline_data(handle, inode,
2189 EXT4_XATTR_LEN(strlen(i->name) +
2190 EXT4_XATTR_SIZE(i->value_len)));
2191 if (error)
2192 return error;
2193 error = ext4_xattr_ibody_find(inode, i, is);
2194 if (error)
2195 return error;
daf83281
TE
2196 error = ext4_xattr_set_entry(i, s, handle, inode,
2197 false /* is_block */);
0d812f77
TM
2198 }
2199 if (error)
2200 return error;
2201 }
2202 header = IHDR(inode, ext4_raw_inode(&is->iloc));
2203 if (!IS_LAST_ENTRY(s->first)) {
2204 header->h_magic = cpu_to_le32(EXT4_XATTR_MAGIC);
2205 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
2206 } else {
2207 header->h_magic = cpu_to_le32(0);
2208 ext4_clear_inode_state(inode, EXT4_STATE_XATTR);
2209 }
2210 return 0;
2211}
2212
e50e5129 2213static int ext4_xattr_ibody_set(handle_t *handle, struct inode *inode,
0d812f77
TM
2214 struct ext4_xattr_info *i,
2215 struct ext4_xattr_ibody_find *is)
ac27a0ec 2216{
617ba13b
MC
2217 struct ext4_xattr_ibody_header *header;
2218 struct ext4_xattr_search *s = &is->s;
ac27a0ec
DK
2219 int error;
2220
617ba13b 2221 if (EXT4_I(inode)->i_extra_isize == 0)
ac27a0ec 2222 return -ENOSPC;
daf83281 2223 error = ext4_xattr_set_entry(i, s, handle, inode, false /* is_block */);
ac27a0ec
DK
2224 if (error)
2225 return error;
617ba13b 2226 header = IHDR(inode, ext4_raw_inode(&is->iloc));
ac27a0ec 2227 if (!IS_LAST_ENTRY(s->first)) {
617ba13b 2228 header->h_magic = cpu_to_le32(EXT4_XATTR_MAGIC);
19f5fb7a 2229 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
ac27a0ec
DK
2230 } else {
2231 header->h_magic = cpu_to_le32(0);
19f5fb7a 2232 ext4_clear_inode_state(inode, EXT4_STATE_XATTR);
ac27a0ec
DK
2233 }
2234 return 0;
2235}
2236
3fd16462
JK
2237static int ext4_xattr_value_same(struct ext4_xattr_search *s,
2238 struct ext4_xattr_info *i)
2239{
2240 void *value;
2241
0bd454c0
TE
2242 /* When e_value_inum is set the value is stored externally. */
2243 if (s->here->e_value_inum)
2244 return 0;
3fd16462
JK
2245 if (le32_to_cpu(s->here->e_value_size) != i->value_len)
2246 return 0;
2247 value = ((void *)s->base) + le16_to_cpu(s->here->e_value_offs);
2248 return !memcmp(value, i->value, i->value_len);
2249}
2250
dec214d0
TE
2251static struct buffer_head *ext4_xattr_get_block(struct inode *inode)
2252{
2253 struct buffer_head *bh;
2254 int error;
2255
2256 if (!EXT4_I(inode)->i_file_acl)
2257 return NULL;
2258 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
2259 if (!bh)
2260 return ERR_PTR(-EIO);
2261 error = ext4_xattr_check_block(inode, bh);
2262 if (error)
2263 return ERR_PTR(error);
2264 return bh;
2265}
2266
ac27a0ec 2267/*
617ba13b 2268 * ext4_xattr_set_handle()
ac27a0ec 2269 *
6e9510b0 2270 * Create, replace or remove an extended attribute for this inode. Value
ac27a0ec
DK
2271 * is NULL to remove an existing extended attribute, and non-NULL to
2272 * either replace an existing extended attribute, or create a new extended
2273 * attribute. The flags XATTR_REPLACE and XATTR_CREATE
2274 * specify that an extended attribute must exist and must not exist
2275 * previous to the call, respectively.
2276 *
2277 * Returns 0, or a negative error number on failure.
2278 */
2279int
617ba13b 2280ext4_xattr_set_handle(handle_t *handle, struct inode *inode, int name_index,
ac27a0ec
DK
2281 const char *name, const void *value, size_t value_len,
2282 int flags)
2283{
617ba13b 2284 struct ext4_xattr_info i = {
ac27a0ec
DK
2285 .name_index = name_index,
2286 .name = name,
2287 .value = value,
2288 .value_len = value_len,
e50e5129 2289 .in_inode = 0,
ac27a0ec 2290 };
617ba13b 2291 struct ext4_xattr_ibody_find is = {
ac27a0ec
DK
2292 .s = { .not_found = -ENODATA, },
2293 };
617ba13b 2294 struct ext4_xattr_block_find bs = {
ac27a0ec
DK
2295 .s = { .not_found = -ENODATA, },
2296 };
c755e251 2297 int no_expand;
ac27a0ec
DK
2298 int error;
2299
2300 if (!name)
2301 return -EINVAL;
2302 if (strlen(name) > 255)
2303 return -ERANGE;
b8cb5a54 2304
c755e251 2305 ext4_write_lock_xattr(inode, &no_expand);
4d20c685 2306
c1a5d5f6
TE
2307 /* Check journal credits under write lock. */
2308 if (ext4_handle_valid(handle)) {
dec214d0 2309 struct buffer_head *bh;
c1a5d5f6
TE
2310 int credits;
2311
dec214d0
TE
2312 bh = ext4_xattr_get_block(inode);
2313 if (IS_ERR(bh)) {
2314 error = PTR_ERR(bh);
2315 goto cleanup;
2316 }
2317
af65207c
TE
2318 credits = __ext4_xattr_set_credits(inode->i_sb, inode, bh,
2319 value_len,
2320 flags & XATTR_CREATE);
dec214d0
TE
2321 brelse(bh);
2322
c1a5d5f6
TE
2323 if (!ext4_handle_has_enough_credits(handle, credits)) {
2324 error = -ENOSPC;
2325 goto cleanup;
2326 }
2327 }
2328
66543617 2329 error = ext4_reserve_inode_write(handle, inode, &is.iloc);
86ebfd08
ES
2330 if (error)
2331 goto cleanup;
2332
19f5fb7a 2333 if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) {
617ba13b
MC
2334 struct ext4_inode *raw_inode = ext4_raw_inode(&is.iloc);
2335 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
19f5fb7a 2336 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
ac27a0ec
DK
2337 }
2338
617ba13b 2339 error = ext4_xattr_ibody_find(inode, &i, &is);
ac27a0ec
DK
2340 if (error)
2341 goto cleanup;
2342 if (is.s.not_found)
617ba13b 2343 error = ext4_xattr_block_find(inode, &i, &bs);
ac27a0ec
DK
2344 if (error)
2345 goto cleanup;
2346 if (is.s.not_found && bs.s.not_found) {
2347 error = -ENODATA;
2348 if (flags & XATTR_REPLACE)
2349 goto cleanup;
2350 error = 0;
2351 if (!value)
2352 goto cleanup;
2353 } else {
2354 error = -EEXIST;
2355 if (flags & XATTR_CREATE)
2356 goto cleanup;
2357 }
dec214d0 2358
ac27a0ec
DK
2359 if (!value) {
2360 if (!is.s.not_found)
e50e5129 2361 error = ext4_xattr_ibody_set(handle, inode, &i, &is);
ac27a0ec 2362 else if (!bs.s.not_found)
617ba13b 2363 error = ext4_xattr_block_set(handle, inode, &i, &bs);
ac27a0ec 2364 } else {
3fd16462
JK
2365 error = 0;
2366 /* Xattr value did not change? Save us some work and bail out */
2367 if (!is.s.not_found && ext4_xattr_value_same(&is.s, &i))
2368 goto cleanup;
2369 if (!bs.s.not_found && ext4_xattr_value_same(&bs.s, &i))
2370 goto cleanup;
2371
b347e2bc
TE
2372 if (ext4_has_feature_ea_inode(inode->i_sb) &&
2373 (EXT4_XATTR_SIZE(i.value_len) >
2374 EXT4_XATTR_MIN_LARGE_EA_SIZE(inode->i_sb->s_blocksize)))
2375 i.in_inode = 1;
2376retry_inode:
e50e5129 2377 error = ext4_xattr_ibody_set(handle, inode, &i, &is);
ac27a0ec
DK
2378 if (!error && !bs.s.not_found) {
2379 i.value = NULL;
617ba13b 2380 error = ext4_xattr_block_set(handle, inode, &i, &bs);
ac27a0ec 2381 } else if (error == -ENOSPC) {
7e01c8e5
TY
2382 if (EXT4_I(inode)->i_file_acl && !bs.s.base) {
2383 error = ext4_xattr_block_find(inode, &i, &bs);
2384 if (error)
2385 goto cleanup;
2386 }
617ba13b 2387 error = ext4_xattr_block_set(handle, inode, &i, &bs);
b347e2bc 2388 if (!error && !is.s.not_found) {
ac27a0ec 2389 i.value = NULL;
e50e5129
AD
2390 error = ext4_xattr_ibody_set(handle, inode, &i,
2391 &is);
b347e2bc
TE
2392 } else if (error == -ENOSPC) {
2393 /*
2394 * Xattr does not fit in the block, store at
2395 * external inode if possible.
2396 */
2397 if (ext4_has_feature_ea_inode(inode->i_sb) &&
2398 !i.in_inode) {
2399 i.in_inode = 1;
2400 goto retry_inode;
2401 }
ac27a0ec
DK
2402 }
2403 }
2404 }
2405 if (!error) {
617ba13b 2406 ext4_xattr_update_super_block(handle, inode->i_sb);
eeca7ea1 2407 inode->i_ctime = current_time(inode);
6dd4ee7c 2408 if (!value)
c755e251 2409 no_expand = 0;
617ba13b 2410 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
ac27a0ec 2411 /*
617ba13b 2412 * The bh is consumed by ext4_mark_iloc_dirty, even with
ac27a0ec
DK
2413 * error != 0.
2414 */
2415 is.iloc.bh = NULL;
2416 if (IS_SYNC(inode))
0390131b 2417 ext4_handle_sync(handle);
ac27a0ec
DK
2418 }
2419
2420cleanup:
2421 brelse(is.iloc.bh);
2422 brelse(bs.bh);
c755e251 2423 ext4_write_unlock_xattr(inode, &no_expand);
ac27a0ec
DK
2424 return error;
2425}
2426
af65207c
TE
2427int ext4_xattr_set_credits(struct inode *inode, size_t value_len,
2428 bool is_create, int *credits)
c1a5d5f6 2429{
dec214d0
TE
2430 struct buffer_head *bh;
2431 int err;
c1a5d5f6 2432
dec214d0 2433 *credits = 0;
c1a5d5f6 2434
dec214d0
TE
2435 if (!EXT4_SB(inode->i_sb)->s_journal)
2436 return 0;
c1a5d5f6 2437
dec214d0 2438 down_read(&EXT4_I(inode)->xattr_sem);
c1a5d5f6 2439
dec214d0
TE
2440 bh = ext4_xattr_get_block(inode);
2441 if (IS_ERR(bh)) {
2442 err = PTR_ERR(bh);
2443 } else {
af65207c
TE
2444 *credits = __ext4_xattr_set_credits(inode->i_sb, inode, bh,
2445 value_len, is_create);
dec214d0
TE
2446 brelse(bh);
2447 err = 0;
c1a5d5f6 2448 }
dec214d0
TE
2449
2450 up_read(&EXT4_I(inode)->xattr_sem);
2451 return err;
c1a5d5f6
TE
2452}
2453
ac27a0ec 2454/*
617ba13b 2455 * ext4_xattr_set()
ac27a0ec 2456 *
617ba13b 2457 * Like ext4_xattr_set_handle, but start from an inode. This extended
ac27a0ec
DK
2458 * attribute modification is a filesystem transaction by itself.
2459 *
2460 * Returns 0, or a negative error number on failure.
2461 */
2462int
617ba13b 2463ext4_xattr_set(struct inode *inode, int name_index, const char *name,
ac27a0ec
DK
2464 const void *value, size_t value_len, int flags)
2465{
2466 handle_t *handle;
e50e5129 2467 struct super_block *sb = inode->i_sb;
ac27a0ec 2468 int error, retries = 0;
c1a5d5f6 2469 int credits;
ac27a0ec 2470
b8cb5a54
TE
2471 error = dquot_initialize(inode);
2472 if (error)
2473 return error;
e50e5129 2474
ac27a0ec 2475retry:
af65207c
TE
2476 error = ext4_xattr_set_credits(inode, value_len, flags & XATTR_CREATE,
2477 &credits);
dec214d0
TE
2478 if (error)
2479 return error;
2480
9924a92a 2481 handle = ext4_journal_start(inode, EXT4_HT_XATTR, credits);
ac27a0ec
DK
2482 if (IS_ERR(handle)) {
2483 error = PTR_ERR(handle);
2484 } else {
2485 int error2;
2486
617ba13b 2487 error = ext4_xattr_set_handle(handle, inode, name_index, name,
ac27a0ec 2488 value, value_len, flags);
617ba13b 2489 error2 = ext4_journal_stop(handle);
ac27a0ec 2490 if (error == -ENOSPC &&
e50e5129 2491 ext4_should_retry_alloc(sb, &retries))
ac27a0ec
DK
2492 goto retry;
2493 if (error == 0)
2494 error = error2;
2495 }
2496
2497 return error;
2498}
2499
6dd4ee7c
KS
2500/*
2501 * Shift the EA entries in the inode to create space for the increased
2502 * i_extra_isize.
2503 */
2504static void ext4_xattr_shift_entries(struct ext4_xattr_entry *entry,
2505 int value_offs_shift, void *to,
94405713 2506 void *from, size_t n)
6dd4ee7c
KS
2507{
2508 struct ext4_xattr_entry *last = entry;
2509 int new_offs;
2510
94405713
JK
2511 /* We always shift xattr headers further thus offsets get lower */
2512 BUG_ON(value_offs_shift > 0);
2513
6dd4ee7c
KS
2514 /* Adjust the value offsets of the entries */
2515 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
e50e5129 2516 if (!last->e_value_inum && last->e_value_size) {
6dd4ee7c
KS
2517 new_offs = le16_to_cpu(last->e_value_offs) +
2518 value_offs_shift;
6dd4ee7c
KS
2519 last->e_value_offs = cpu_to_le16(new_offs);
2520 }
2521 }
2522 /* Shift the entries by n bytes */
2523 memmove(to, from, n);
2524}
2525
3f2571c1
JK
2526/*
2527 * Move xattr pointed to by 'entry' from inode into external xattr block
2528 */
2529static int ext4_xattr_move_to_block(handle_t *handle, struct inode *inode,
2530 struct ext4_inode *raw_inode,
2531 struct ext4_xattr_entry *entry)
2532{
2533 struct ext4_xattr_ibody_find *is = NULL;
2534 struct ext4_xattr_block_find *bs = NULL;
2535 char *buffer = NULL, *b_entry_name = NULL;
f6109100 2536 size_t value_size = le32_to_cpu(entry->e_value_size);
3f2571c1
JK
2537 struct ext4_xattr_info i = {
2538 .value = NULL,
2539 .value_len = 0,
2540 .name_index = entry->e_name_index,
f6109100 2541 .in_inode = !!entry->e_value_inum,
3f2571c1
JK
2542 };
2543 struct ext4_xattr_ibody_header *header = IHDR(inode, raw_inode);
2544 int error;
2545
3f2571c1
JK
2546 is = kzalloc(sizeof(struct ext4_xattr_ibody_find), GFP_NOFS);
2547 bs = kzalloc(sizeof(struct ext4_xattr_block_find), GFP_NOFS);
2548 buffer = kmalloc(value_size, GFP_NOFS);
2549 b_entry_name = kmalloc(entry->e_name_len + 1, GFP_NOFS);
2550 if (!is || !bs || !buffer || !b_entry_name) {
2551 error = -ENOMEM;
2552 goto out;
2553 }
2554
2555 is->s.not_found = -ENODATA;
2556 bs->s.not_found = -ENODATA;
2557 is->iloc.bh = NULL;
2558 bs->bh = NULL;
2559
2560 /* Save the entry name and the entry value */
f6109100 2561 if (entry->e_value_inum) {
b9fc761e 2562 error = ext4_xattr_inode_get(inode, entry, buffer, value_size);
f6109100
TE
2563 if (error)
2564 goto out;
2565 } else {
2566 size_t value_offs = le16_to_cpu(entry->e_value_offs);
2567 memcpy(buffer, (void *)IFIRST(header) + value_offs, value_size);
2568 }
2569
3f2571c1
JK
2570 memcpy(b_entry_name, entry->e_name, entry->e_name_len);
2571 b_entry_name[entry->e_name_len] = '\0';
2572 i.name = b_entry_name;
2573
2574 error = ext4_get_inode_loc(inode, &is->iloc);
2575 if (error)
2576 goto out;
2577
2578 error = ext4_xattr_ibody_find(inode, &i, is);
2579 if (error)
2580 goto out;
2581
2582 /* Remove the chosen entry from the inode */
e50e5129 2583 error = ext4_xattr_ibody_set(handle, inode, &i, is);
3f2571c1
JK
2584 if (error)
2585 goto out;
2586
3f2571c1
JK
2587 i.value = buffer;
2588 i.value_len = value_size;
2589 error = ext4_xattr_block_find(inode, &i, bs);
2590 if (error)
2591 goto out;
2592
2593 /* Add entry which was removed from the inode into the block */
2594 error = ext4_xattr_block_set(handle, inode, &i, bs);
2595 if (error)
2596 goto out;
2597 error = 0;
2598out:
2599 kfree(b_entry_name);
2600 kfree(buffer);
2601 if (is)
2602 brelse(is->iloc.bh);
2603 kfree(is);
2604 kfree(bs);
2605
2606 return error;
2607}
2608
dfa2064b
JK
2609static int ext4_xattr_make_inode_space(handle_t *handle, struct inode *inode,
2610 struct ext4_inode *raw_inode,
2611 int isize_diff, size_t ifree,
2612 size_t bfree, int *total_ino)
2613{
2614 struct ext4_xattr_ibody_header *header = IHDR(inode, raw_inode);
2615 struct ext4_xattr_entry *small_entry;
2616 struct ext4_xattr_entry *entry;
2617 struct ext4_xattr_entry *last;
2618 unsigned int entry_size; /* EA entry size */
2619 unsigned int total_size; /* EA entry size + value size */
2620 unsigned int min_total_size;
2621 int error;
2622
2623 while (isize_diff > ifree) {
2624 entry = NULL;
2625 small_entry = NULL;
2626 min_total_size = ~0U;
2627 last = IFIRST(header);
2628 /* Find the entry best suited to be pushed into EA block */
2629 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
9bb21ced
TE
2630 total_size = EXT4_XATTR_LEN(last->e_name_len);
2631 if (!last->e_value_inum)
2632 total_size += EXT4_XATTR_SIZE(
2633 le32_to_cpu(last->e_value_size));
dfa2064b
JK
2634 if (total_size <= bfree &&
2635 total_size < min_total_size) {
2636 if (total_size + ifree < isize_diff) {
2637 small_entry = last;
2638 } else {
2639 entry = last;
2640 min_total_size = total_size;
2641 }
2642 }
2643 }
2644
2645 if (entry == NULL) {
2646 if (small_entry == NULL)
2647 return -ENOSPC;
2648 entry = small_entry;
2649 }
2650
2651 entry_size = EXT4_XATTR_LEN(entry->e_name_len);
9bb21ced
TE
2652 total_size = entry_size;
2653 if (!entry->e_value_inum)
2654 total_size += EXT4_XATTR_SIZE(
2655 le32_to_cpu(entry->e_value_size));
dfa2064b
JK
2656 error = ext4_xattr_move_to_block(handle, inode, raw_inode,
2657 entry);
2658 if (error)
2659 return error;
2660
2661 *total_ino -= entry_size;
2662 ifree += total_size;
2663 bfree -= total_size;
2664 }
2665
2666 return 0;
2667}
2668
6dd4ee7c
KS
2669/*
2670 * Expand an inode by new_extra_isize bytes when EAs are present.
2671 * Returns 0 on success or negative error number on failure.
2672 */
2673int ext4_expand_extra_isize_ea(struct inode *inode, int new_extra_isize,
2674 struct ext4_inode *raw_inode, handle_t *handle)
2675{
2676 struct ext4_xattr_ibody_header *header;
b640b2c5 2677 struct buffer_head *bh;
cf0a5e81
MX
2678 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
2679 static unsigned int mnt_count;
e3014d14
JK
2680 size_t min_offs;
2681 size_t ifree, bfree;
7b1b2c1b 2682 int total_ino;
6e0cd088 2683 void *base, *end;
d0141191 2684 int error = 0, tried_min_extra_isize = 0;
cf0a5e81 2685 int s_min_extra_isize = le16_to_cpu(sbi->s_es->s_min_extra_isize);
d0141191 2686 int isize_diff; /* How much do we need to grow i_extra_isize */
6dd4ee7c 2687
6dd4ee7c 2688retry:
d0141191 2689 isize_diff = new_extra_isize - EXT4_I(inode)->i_extra_isize;
2e81a4ee 2690 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
b640b2c5 2691 return 0;
6dd4ee7c
KS
2692
2693 header = IHDR(inode, raw_inode);
6dd4ee7c
KS
2694
2695 /*
2696 * Check if enough free space is available in the inode to shift the
2697 * entries ahead by new_extra_isize.
2698 */
2699
6e0cd088 2700 base = IFIRST(header);
6dd4ee7c
KS
2701 end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
2702 min_offs = end - base;
6dd4ee7c
KS
2703 total_ino = sizeof(struct ext4_xattr_ibody_header);
2704
9e92f48c
TT
2705 error = xattr_check_inode(inode, header, end);
2706 if (error)
2707 goto cleanup;
2708
6e0cd088 2709 ifree = ext4_xattr_free_space(base, &min_offs, base, &total_ino);
e3014d14
JK
2710 if (ifree >= isize_diff)
2711 goto shift;
6dd4ee7c
KS
2712
2713 /*
2714 * Enough free space isn't available in the inode, check if
2715 * EA block can hold new_extra_isize bytes.
2716 */
2717 if (EXT4_I(inode)->i_file_acl) {
2718 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
2719 error = -EIO;
2720 if (!bh)
2721 goto cleanup;
cc8e94fd 2722 if (ext4_xattr_check_block(inode, bh)) {
24676da4
TT
2723 EXT4_ERROR_INODE(inode, "bad block %llu",
2724 EXT4_I(inode)->i_file_acl);
6a797d27 2725 error = -EFSCORRUPTED;
b640b2c5 2726 brelse(bh);
6dd4ee7c
KS
2727 goto cleanup;
2728 }
2729 base = BHDR(bh);
6dd4ee7c
KS
2730 end = bh->b_data + bh->b_size;
2731 min_offs = end - base;
6e0cd088
JK
2732 bfree = ext4_xattr_free_space(BFIRST(bh), &min_offs, base,
2733 NULL);
b640b2c5 2734 brelse(bh);
e3014d14 2735 if (bfree + ifree < isize_diff) {
6dd4ee7c
KS
2736 if (!tried_min_extra_isize && s_min_extra_isize) {
2737 tried_min_extra_isize++;
2738 new_extra_isize = s_min_extra_isize;
6dd4ee7c
KS
2739 goto retry;
2740 }
dfa2064b 2741 error = -ENOSPC;
6dd4ee7c
KS
2742 goto cleanup;
2743 }
2744 } else {
e3014d14 2745 bfree = inode->i_sb->s_blocksize;
6dd4ee7c
KS
2746 }
2747
dfa2064b
JK
2748 error = ext4_xattr_make_inode_space(handle, inode, raw_inode,
2749 isize_diff, ifree, bfree,
2750 &total_ino);
2751 if (error) {
2752 if (error == -ENOSPC && !tried_min_extra_isize &&
2753 s_min_extra_isize) {
2754 tried_min_extra_isize++;
2755 new_extra_isize = s_min_extra_isize;
dfa2064b 2756 goto retry;
6dd4ee7c 2757 }
dfa2064b 2758 goto cleanup;
6dd4ee7c 2759 }
e3014d14
JK
2760shift:
2761 /* Adjust the offsets and shift the remaining entries ahead */
6e0cd088 2762 ext4_xattr_shift_entries(IFIRST(header), EXT4_I(inode)->i_extra_isize
e3014d14
JK
2763 - new_extra_isize, (void *)raw_inode +
2764 EXT4_GOOD_OLD_INODE_SIZE + new_extra_isize,
94405713 2765 (void *)header, total_ino);
e3014d14 2766 EXT4_I(inode)->i_extra_isize = new_extra_isize;
6dd4ee7c
KS
2767
2768cleanup:
b640b2c5 2769 if (error && (mnt_count != le16_to_cpu(sbi->s_es->s_mnt_count))) {
cf0a5e81
MX
2770 ext4_warning(inode->i_sb, "Unable to expand inode %lu. Delete some EAs or run e2fsck.",
2771 inode->i_ino);
2772 mnt_count = le16_to_cpu(sbi->s_es->s_mnt_count);
2773 }
6dd4ee7c
KS
2774 return error;
2775}
2776
e50e5129
AD
2777#define EIA_INCR 16 /* must be 2^n */
2778#define EIA_MASK (EIA_INCR - 1)
dec214d0
TE
2779
2780/* Add the large xattr @inode into @ea_inode_array for deferred iput().
0421a189 2781 * If @ea_inode_array is new or full it will be grown and the old
e50e5129
AD
2782 * contents copied over.
2783 */
2784static int
0421a189
TE
2785ext4_expand_inode_array(struct ext4_xattr_inode_array **ea_inode_array,
2786 struct inode *inode)
e50e5129 2787{
0421a189 2788 if (*ea_inode_array == NULL) {
e50e5129
AD
2789 /*
2790 * Start with 15 inodes, so it fits into a power-of-two size.
0421a189 2791 * If *ea_inode_array is NULL, this is essentially offsetof()
e50e5129 2792 */
0421a189
TE
2793 (*ea_inode_array) =
2794 kmalloc(offsetof(struct ext4_xattr_inode_array,
2795 inodes[EIA_MASK]),
e50e5129 2796 GFP_NOFS);
0421a189 2797 if (*ea_inode_array == NULL)
e50e5129 2798 return -ENOMEM;
0421a189
TE
2799 (*ea_inode_array)->count = 0;
2800 } else if (((*ea_inode_array)->count & EIA_MASK) == EIA_MASK) {
e50e5129 2801 /* expand the array once all 15 + n * 16 slots are full */
0421a189
TE
2802 struct ext4_xattr_inode_array *new_array = NULL;
2803 int count = (*ea_inode_array)->count;
e50e5129
AD
2804
2805 /* if new_array is NULL, this is essentially offsetof() */
2806 new_array = kmalloc(
0421a189
TE
2807 offsetof(struct ext4_xattr_inode_array,
2808 inodes[count + EIA_INCR]),
e50e5129
AD
2809 GFP_NOFS);
2810 if (new_array == NULL)
2811 return -ENOMEM;
0421a189
TE
2812 memcpy(new_array, *ea_inode_array,
2813 offsetof(struct ext4_xattr_inode_array, inodes[count]));
2814 kfree(*ea_inode_array);
2815 *ea_inode_array = new_array;
e50e5129 2816 }
0421a189 2817 (*ea_inode_array)->inodes[(*ea_inode_array)->count++] = inode;
e50e5129
AD
2818 return 0;
2819}
2820
ac27a0ec 2821/*
617ba13b 2822 * ext4_xattr_delete_inode()
ac27a0ec 2823 *
e50e5129 2824 * Free extended attribute resources associated with this inode. Traverse
dec214d0
TE
2825 * all entries and decrement reference on any xattr inodes associated with this
2826 * inode. This is called immediately before an inode is freed. We have exclusive
2827 * access to the inode. If an orphan inode is deleted it will also release its
2828 * references on xattr block and xattr inodes.
ac27a0ec 2829 */
dec214d0
TE
2830int ext4_xattr_delete_inode(handle_t *handle, struct inode *inode,
2831 struct ext4_xattr_inode_array **ea_inode_array,
2832 int extra_credits)
ac27a0ec
DK
2833{
2834 struct buffer_head *bh = NULL;
e50e5129 2835 struct ext4_xattr_ibody_header *header;
30a7eb97 2836 struct ext4_iloc iloc = { .bh = NULL };
dec214d0 2837 struct ext4_xattr_entry *entry;
a6d05676 2838 struct inode *ea_inode;
30a7eb97
TE
2839 int error;
2840
2841 error = ext4_xattr_ensure_credits(handle, inode, extra_credits,
2842 NULL /* bh */,
2843 false /* dirty */,
2844 false /* block_csum */);
2845 if (error) {
2846 EXT4_ERROR_INODE(inode, "ensure credits (error %d)", error);
2847 goto cleanup;
2848 }
ac27a0ec 2849
dec214d0
TE
2850 if (ext4_has_feature_ea_inode(inode->i_sb) &&
2851 ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
e50e5129 2852
dec214d0
TE
2853 error = ext4_get_inode_loc(inode, &iloc);
2854 if (error) {
2855 EXT4_ERROR_INODE(inode, "inode loc (error %d)", error);
2856 goto cleanup;
2857 }
30a7eb97 2858
dec214d0
TE
2859 error = ext4_journal_get_write_access(handle, iloc.bh);
2860 if (error) {
2861 EXT4_ERROR_INODE(inode, "write access (error %d)",
2862 error);
2863 goto cleanup;
2864 }
e50e5129 2865
dec214d0
TE
2866 header = IHDR(inode, ext4_raw_inode(&iloc));
2867 if (header->h_magic == cpu_to_le32(EXT4_XATTR_MAGIC))
2868 ext4_xattr_inode_dec_ref_all(handle, inode, iloc.bh,
2869 IFIRST(header),
2870 false /* block_csum */,
2871 ea_inode_array,
2872 extra_credits,
2873 false /* skip_quota */);
ac27a0ec 2874 }
e50e5129 2875
dec214d0
TE
2876 if (EXT4_I(inode)->i_file_acl) {
2877 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
2878 if (!bh) {
2879 EXT4_ERROR_INODE(inode, "block %llu read error",
30a7eb97 2880 EXT4_I(inode)->i_file_acl);
dec214d0
TE
2881 error = -EIO;
2882 goto cleanup;
2883 }
2884 error = ext4_xattr_check_block(inode, bh);
2885 if (error) {
2886 EXT4_ERROR_INODE(inode, "bad block %llu (error %d)",
2887 EXT4_I(inode)->i_file_acl, error);
e50e5129
AD
2888 goto cleanup;
2889 }
e50e5129 2890
dec214d0
TE
2891 if (ext4_has_feature_ea_inode(inode->i_sb)) {
2892 for (entry = BFIRST(bh); !IS_LAST_ENTRY(entry);
a6d05676
TE
2893 entry = EXT4_XATTR_NEXT(entry)) {
2894 if (!entry->e_value_inum)
2895 continue;
2896 error = ext4_xattr_inode_iget(inode,
2897 le32_to_cpu(entry->e_value_inum),
2898 le32_to_cpu(entry->e_hash),
2899 &ea_inode);
2900 if (error)
2901 continue;
2902 ext4_xattr_inode_free_quota(inode, ea_inode,
dec214d0 2903 le32_to_cpu(entry->e_value_size));
a6d05676
TE
2904 iput(ea_inode);
2905 }
dec214d0
TE
2906
2907 }
2908
2909 ext4_xattr_release_block(handle, inode, bh, ea_inode_array,
2910 extra_credits);
2911 /*
2912 * Update i_file_acl value in the same transaction that releases
2913 * block.
2914 */
2915 EXT4_I(inode)->i_file_acl = 0;
2916 error = ext4_mark_inode_dirty(handle, inode);
2917 if (error) {
2918 EXT4_ERROR_INODE(inode, "mark inode dirty (error %d)",
2919 error);
2920 goto cleanup;
2921 }
30a7eb97 2922 }
dec214d0 2923 error = 0;
ac27a0ec 2924cleanup:
30a7eb97 2925 brelse(iloc.bh);
ac27a0ec 2926 brelse(bh);
e50e5129
AD
2927 return error;
2928}
2929
0421a189 2930void ext4_xattr_inode_array_free(struct ext4_xattr_inode_array *ea_inode_array)
e50e5129 2931{
dec214d0 2932 int idx;
e50e5129 2933
0421a189 2934 if (ea_inode_array == NULL)
e50e5129
AD
2935 return;
2936
dec214d0
TE
2937 for (idx = 0; idx < ea_inode_array->count; ++idx)
2938 iput(ea_inode_array->inodes[idx]);
0421a189 2939 kfree(ea_inode_array);
ac27a0ec
DK
2940}
2941
ac27a0ec 2942/*
47387409 2943 * ext4_xattr_block_cache_insert()
ac27a0ec 2944 *
47387409 2945 * Create a new entry in the extended attribute block cache, and insert
ac27a0ec
DK
2946 * it unless such an entry is already in the cache.
2947 *
2948 * Returns 0, or a negative error number on failure.
2949 */
2950static void
47387409
TE
2951ext4_xattr_block_cache_insert(struct mb_cache *ea_block_cache,
2952 struct buffer_head *bh)
ac27a0ec 2953{
6048c64b
AG
2954 struct ext4_xattr_header *header = BHDR(bh);
2955 __u32 hash = le32_to_cpu(header->h_hash);
2956 int reusable = le32_to_cpu(header->h_refcount) <
2957 EXT4_XATTR_REFCOUNT_MAX;
ac27a0ec
DK
2958 int error;
2959
cdb7ee4c
TE
2960 if (!ea_block_cache)
2961 return;
47387409 2962 error = mb_cache_entry_create(ea_block_cache, GFP_NOFS, hash,
6048c64b 2963 bh->b_blocknr, reusable);
ac27a0ec 2964 if (error) {
82939d79 2965 if (error == -EBUSY)
ac27a0ec 2966 ea_bdebug(bh, "already in cache");
82939d79 2967 } else
ac27a0ec 2968 ea_bdebug(bh, "inserting [%x]", (int)hash);
ac27a0ec
DK
2969}
2970
2971/*
617ba13b 2972 * ext4_xattr_cmp()
ac27a0ec
DK
2973 *
2974 * Compare two extended attribute blocks for equality.
2975 *
2976 * Returns 0 if the blocks are equal, 1 if they differ, and
2977 * a negative error number on errors.
2978 */
2979static int
617ba13b
MC
2980ext4_xattr_cmp(struct ext4_xattr_header *header1,
2981 struct ext4_xattr_header *header2)
ac27a0ec 2982{
617ba13b 2983 struct ext4_xattr_entry *entry1, *entry2;
ac27a0ec
DK
2984
2985 entry1 = ENTRY(header1+1);
2986 entry2 = ENTRY(header2+1);
2987 while (!IS_LAST_ENTRY(entry1)) {
2988 if (IS_LAST_ENTRY(entry2))
2989 return 1;
2990 if (entry1->e_hash != entry2->e_hash ||
2991 entry1->e_name_index != entry2->e_name_index ||
2992 entry1->e_name_len != entry2->e_name_len ||
2993 entry1->e_value_size != entry2->e_value_size ||
e50e5129 2994 entry1->e_value_inum != entry2->e_value_inum ||
ac27a0ec
DK
2995 memcmp(entry1->e_name, entry2->e_name, entry1->e_name_len))
2996 return 1;
7cec1918
TE
2997 if (!entry1->e_value_inum &&
2998 memcmp((char *)header1 + le16_to_cpu(entry1->e_value_offs),
ac27a0ec
DK
2999 (char *)header2 + le16_to_cpu(entry2->e_value_offs),
3000 le32_to_cpu(entry1->e_value_size)))
3001 return 1;
3002
617ba13b
MC
3003 entry1 = EXT4_XATTR_NEXT(entry1);
3004 entry2 = EXT4_XATTR_NEXT(entry2);
ac27a0ec
DK
3005 }
3006 if (!IS_LAST_ENTRY(entry2))
3007 return 1;
3008 return 0;
3009}
3010
3011/*
47387409 3012 * ext4_xattr_block_cache_find()
ac27a0ec
DK
3013 *
3014 * Find an identical extended attribute block.
3015 *
3016 * Returns a pointer to the block found, or NULL if such a block was
3017 * not found or an error occurred.
3018 */
3019static struct buffer_head *
47387409
TE
3020ext4_xattr_block_cache_find(struct inode *inode,
3021 struct ext4_xattr_header *header,
3022 struct mb_cache_entry **pce)
ac27a0ec
DK
3023{
3024 __u32 hash = le32_to_cpu(header->h_hash);
7a2508e1 3025 struct mb_cache_entry *ce;
47387409 3026 struct mb_cache *ea_block_cache = EA_BLOCK_CACHE(inode);
ac27a0ec 3027
cdb7ee4c
TE
3028 if (!ea_block_cache)
3029 return NULL;
ac27a0ec
DK
3030 if (!header->h_hash)
3031 return NULL; /* never share */
3032 ea_idebug(inode, "looking for cached blocks [%x]", (int)hash);
47387409 3033 ce = mb_cache_entry_find_first(ea_block_cache, hash);
ac27a0ec
DK
3034 while (ce) {
3035 struct buffer_head *bh;
3036
c07dfcb4 3037 bh = sb_bread(inode->i_sb, ce->e_value);
ac27a0ec 3038 if (!bh) {
24676da4 3039 EXT4_ERROR_INODE(inode, "block %lu read error",
c07dfcb4 3040 (unsigned long)ce->e_value);
617ba13b 3041 } else if (ext4_xattr_cmp(header, BHDR(bh)) == 0) {
ac27a0ec
DK
3042 *pce = ce;
3043 return bh;
3044 }
3045 brelse(bh);
47387409 3046 ce = mb_cache_entry_find_next(ea_block_cache, ce);
ac27a0ec
DK
3047 }
3048 return NULL;
3049}
3050
3051#define NAME_HASH_SHIFT 5
3052#define VALUE_HASH_SHIFT 16
3053
3054/*
617ba13b 3055 * ext4_xattr_hash_entry()
ac27a0ec
DK
3056 *
3057 * Compute the hash of an extended attribute.
3058 */
b9fc761e
TE
3059static __le32 ext4_xattr_hash_entry(char *name, size_t name_len, __le32 *value,
3060 size_t value_count)
ac27a0ec
DK
3061{
3062 __u32 hash = 0;
ac27a0ec 3063
b9fc761e 3064 while (name_len--) {
ac27a0ec
DK
3065 hash = (hash << NAME_HASH_SHIFT) ^
3066 (hash >> (8*sizeof(hash) - NAME_HASH_SHIFT)) ^
3067 *name++;
3068 }
b9fc761e
TE
3069 while (value_count--) {
3070 hash = (hash << VALUE_HASH_SHIFT) ^
3071 (hash >> (8*sizeof(hash) - VALUE_HASH_SHIFT)) ^
3072 le32_to_cpu(*value++);
ac27a0ec 3073 }
b9fc761e 3074 return cpu_to_le32(hash);
ac27a0ec
DK
3075}
3076
3077#undef NAME_HASH_SHIFT
3078#undef VALUE_HASH_SHIFT
3079
3080#define BLOCK_HASH_SHIFT 16
3081
3082/*
617ba13b 3083 * ext4_xattr_rehash()
ac27a0ec
DK
3084 *
3085 * Re-compute the extended attribute hash value after an entry has changed.
3086 */
daf83281 3087static void ext4_xattr_rehash(struct ext4_xattr_header *header)
ac27a0ec 3088{
617ba13b 3089 struct ext4_xattr_entry *here;
ac27a0ec
DK
3090 __u32 hash = 0;
3091
ac27a0ec
DK
3092 here = ENTRY(header+1);
3093 while (!IS_LAST_ENTRY(here)) {
3094 if (!here->e_hash) {
3095 /* Block is not shared if an entry's hash value == 0 */
3096 hash = 0;
3097 break;
3098 }
3099 hash = (hash << BLOCK_HASH_SHIFT) ^
3100 (hash >> (8*sizeof(hash) - BLOCK_HASH_SHIFT)) ^
3101 le32_to_cpu(here->e_hash);
617ba13b 3102 here = EXT4_XATTR_NEXT(here);
ac27a0ec
DK
3103 }
3104 header->h_hash = cpu_to_le32(hash);
3105}
3106
3107#undef BLOCK_HASH_SHIFT
3108
9c191f70
M
3109#define HASH_BUCKET_BITS 10
3110
7a2508e1 3111struct mb_cache *
82939d79 3112ext4_xattr_create_cache(void)
ac27a0ec 3113{
7a2508e1 3114 return mb_cache_create(HASH_BUCKET_BITS);
ac27a0ec
DK
3115}
3116
7a2508e1 3117void ext4_xattr_destroy_cache(struct mb_cache *cache)
ac27a0ec 3118{
9c191f70 3119 if (cache)
7a2508e1 3120 mb_cache_destroy(cache);
ac27a0ec 3121}
9c191f70 3122