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