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