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