blob: df032f50436bd60cff0b6a8f0286ccdb35b4319f [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/xattr.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
5 *
6 * Fix by Harrison Xing <harrison@mountainviewdata.com>.
Mingming Cao617ba132006-10-11 01:20:53 -07007 * Ext4 code with a lot of help from Eric Jarman <ejarman@acm.org>.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07008 * Extended attributes for symlinks and special files added per
9 * suggestion of Luka Renko <luka.renko@hermes.si>.
10 * xattr consolidation Copyright (c) 2004 James Morris <jmorris@redhat.com>,
11 * Red Hat Inc.
12 * ea-in-inode support by Alex Tomas <alex@clusterfs.com> aka bzzz
13 * and Andreas Gruenbacher <agruen@suse.de>.
14 */
15
16/*
17 * Extended attributes are stored directly in inodes (on file systems with
18 * inodes bigger than 128 bytes) and on additional disk blocks. The i_file_acl
19 * field contains the block number if an inode uses an additional block. All
20 * attributes must fit in the inode and one additional block. Blocks that
21 * contain the identical set of attributes may be shared among several inodes.
22 * Identical blocks are detected by keeping a cache of blocks that have
23 * recently been accessed.
24 *
25 * The attributes in inodes and on blocks have a different header; the entries
26 * are stored in the same format:
27 *
28 * +------------------+
29 * | header |
30 * | entry 1 | |
31 * | entry 2 | | growing downwards
32 * | entry 3 | v
33 * | four null bytes |
34 * | . . . |
35 * | value 1 | ^
36 * | value 3 | | growing upwards
37 * | value 2 | |
38 * +------------------+
39 *
40 * The header is followed by multiple entry descriptors. In disk blocks, the
41 * entry descriptors are kept sorted. In inodes, they are unsorted. The
42 * attribute values are aligned to the end of the block in no specific order.
43 *
44 * Locking strategy
45 * ----------------
Mingming Cao617ba132006-10-11 01:20:53 -070046 * EXT4_I(inode)->i_file_acl is protected by EXT4_I(inode)->xattr_sem.
Dave Kleikampac27a0e2006-10-11 01:20:50 -070047 * EA blocks are only changed if they are exclusive to an inode, so
48 * holding xattr_sem also means that nothing but the EA block's reference
49 * count can change. Multiple writers to the same block are synchronized
50 * by the buffer lock.
51 */
52
53#include <linux/init.h>
54#include <linux/fs.h>
55#include <linux/slab.h>
Jan Kara7a2508e2016-02-22 22:35:22 -050056#include <linux/mbcache.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070057#include <linux/quotaops.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040058#include "ext4_jbd2.h"
59#include "ext4.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070060#include "xattr.h"
61#include "acl.h"
62
Mingming Cao617ba132006-10-11 01:20:53 -070063#ifdef EXT4_XATTR_DEBUG
Joe Perchesd74f3d22016-10-15 09:57:31 -040064# define ea_idebug(inode, fmt, ...) \
65 printk(KERN_DEBUG "inode %s:%lu: " fmt "\n", \
66 inode->i_sb->s_id, inode->i_ino, ##__VA_ARGS__)
67# define ea_bdebug(bh, fmt, ...) \
68 printk(KERN_DEBUG "block %pg:%lu: " fmt "\n", \
69 bh->b_bdev, (unsigned long)bh->b_blocknr, ##__VA_ARGS__)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070070#else
Joe Perchesace36ad2012-03-19 23:11:43 -040071# define ea_idebug(inode, fmt, ...) no_printk(fmt, ##__VA_ARGS__)
72# define ea_bdebug(bh, fmt, ...) no_printk(fmt, ##__VA_ARGS__)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070073#endif
74
Jan Kara7a2508e2016-02-22 22:35:22 -050075static void ext4_xattr_cache_insert(struct mb_cache *, struct buffer_head *);
Mingming Cao617ba132006-10-11 01:20:53 -070076static struct buffer_head *ext4_xattr_cache_find(struct inode *,
77 struct ext4_xattr_header *,
Jan Kara7a2508e2016-02-22 22:35:22 -050078 struct mb_cache_entry **);
Mingming Cao617ba132006-10-11 01:20:53 -070079static void ext4_xattr_rehash(struct ext4_xattr_header *,
80 struct ext4_xattr_entry *);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070081
Eric Biggersd6006182017-04-29 23:47:50 -040082static const struct xattr_handler * const ext4_xattr_handler_map[] = {
Mingming Cao617ba132006-10-11 01:20:53 -070083 [EXT4_XATTR_INDEX_USER] = &ext4_xattr_user_handler,
Theodore Ts'o03010a32008-10-10 20:02:48 -040084#ifdef CONFIG_EXT4_FS_POSIX_ACL
Christoph Hellwig64e178a2013-12-20 05:16:44 -080085 [EXT4_XATTR_INDEX_POSIX_ACL_ACCESS] = &posix_acl_access_xattr_handler,
86 [EXT4_XATTR_INDEX_POSIX_ACL_DEFAULT] = &posix_acl_default_xattr_handler,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070087#endif
Mingming Cao617ba132006-10-11 01:20:53 -070088 [EXT4_XATTR_INDEX_TRUSTED] = &ext4_xattr_trusted_handler,
Theodore Ts'o03010a32008-10-10 20:02:48 -040089#ifdef CONFIG_EXT4_FS_SECURITY
Mingming Cao617ba132006-10-11 01:20:53 -070090 [EXT4_XATTR_INDEX_SECURITY] = &ext4_xattr_security_handler,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070091#endif
92};
93
Stephen Hemminger11e27522010-05-13 17:53:18 -070094const struct xattr_handler *ext4_xattr_handlers[] = {
Mingming Cao617ba132006-10-11 01:20:53 -070095 &ext4_xattr_user_handler,
96 &ext4_xattr_trusted_handler,
Theodore Ts'o03010a32008-10-10 20:02:48 -040097#ifdef CONFIG_EXT4_FS_POSIX_ACL
Christoph Hellwig64e178a2013-12-20 05:16:44 -080098 &posix_acl_access_xattr_handler,
99 &posix_acl_default_xattr_handler,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700100#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400101#ifdef CONFIG_EXT4_FS_SECURITY
Mingming Cao617ba132006-10-11 01:20:53 -0700102 &ext4_xattr_security_handler,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700103#endif
104 NULL
105};
106
T Makphaibulchoke9c191f72014-03-18 19:24:49 -0400107#define EXT4_GET_MB_CACHE(inode) (((struct ext4_sb_info *) \
108 inode->i_sb->s_fs_info)->s_mb_cache)
109
Tahsin Erdogan33d201e2017-06-21 21:17:10 -0400110#ifdef CONFIG_LOCKDEP
111void ext4_xattr_inode_set_class(struct inode *ea_inode)
112{
113 lockdep_set_subclass(&ea_inode->i_rwsem, 1);
114}
115#endif
116
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -0400117static __le32 ext4_xattr_block_csum(struct inode *inode,
118 sector_t block_nr,
119 struct ext4_xattr_header *hdr)
120{
121 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'od6a77102013-04-09 23:59:55 -0400122 __u32 csum;
Theodore Ts'od6a77102013-04-09 23:59:55 -0400123 __le64 dsk_block_nr = cpu_to_le64(block_nr);
Daeho Jeongb47820e2016-07-03 17:51:39 -0400124 __u32 dummy_csum = 0;
125 int offset = offsetof(struct ext4_xattr_header, h_checksum);
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -0400126
Theodore Ts'od6a77102013-04-09 23:59:55 -0400127 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&dsk_block_nr,
128 sizeof(dsk_block_nr));
Daeho Jeongb47820e2016-07-03 17:51:39 -0400129 csum = ext4_chksum(sbi, csum, (__u8 *)hdr, offset);
130 csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum, sizeof(dummy_csum));
131 offset += sizeof(dummy_csum);
132 csum = ext4_chksum(sbi, csum, (__u8 *)hdr + offset,
133 EXT4_BLOCK_SIZE(inode->i_sb) - offset);
Tao Ma41eb70d2012-07-09 16:29:27 -0400134
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -0400135 return cpu_to_le32(csum);
136}
137
138static int ext4_xattr_block_csum_verify(struct inode *inode,
Theodore Ts'odac7a4b2017-03-25 17:22:47 -0400139 struct buffer_head *bh)
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -0400140{
Theodore Ts'odac7a4b2017-03-25 17:22:47 -0400141 struct ext4_xattr_header *hdr = BHDR(bh);
142 int ret = 1;
143
144 if (ext4_has_metadata_csum(inode->i_sb)) {
145 lock_buffer(bh);
146 ret = (hdr->h_checksum == ext4_xattr_block_csum(inode,
147 bh->b_blocknr, hdr));
148 unlock_buffer(bh);
149 }
150 return ret;
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -0400151}
152
153static void ext4_xattr_block_csum_set(struct inode *inode,
Theodore Ts'odac7a4b2017-03-25 17:22:47 -0400154 struct buffer_head *bh)
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -0400155{
Theodore Ts'odac7a4b2017-03-25 17:22:47 -0400156 if (ext4_has_metadata_csum(inode->i_sb))
157 BHDR(bh)->h_checksum = ext4_xattr_block_csum(inode,
158 bh->b_blocknr, BHDR(bh));
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -0400159}
160
Stephen Hemminger11e27522010-05-13 17:53:18 -0700161static inline const struct xattr_handler *
Mingming Cao617ba132006-10-11 01:20:53 -0700162ext4_xattr_handler(int name_index)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700163{
Stephen Hemminger11e27522010-05-13 17:53:18 -0700164 const struct xattr_handler *handler = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700165
Mingming Cao617ba132006-10-11 01:20:53 -0700166 if (name_index > 0 && name_index < ARRAY_SIZE(ext4_xattr_handler_map))
167 handler = ext4_xattr_handler_map[name_index];
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700168 return handler;
169}
170
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700171static int
Eric Biggers2c4f9922017-04-29 23:56:52 -0400172ext4_xattr_check_entries(struct ext4_xattr_entry *entry, void *end,
173 void *value_start)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700174{
Darrick J. Wonga0626e752014-09-16 14:34:59 -0400175 struct ext4_xattr_entry *e = entry;
176
Eric Biggersd7614cc2016-12-01 14:57:29 -0500177 /* Find the end of the names list */
Darrick J. Wonga0626e752014-09-16 14:34:59 -0400178 while (!IS_LAST_ENTRY(e)) {
179 struct ext4_xattr_entry *next = EXT4_XATTR_NEXT(e);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700180 if ((void *)next >= end)
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400181 return -EFSCORRUPTED;
Darrick J. Wonga0626e752014-09-16 14:34:59 -0400182 e = next;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700183 }
Darrick J. Wonga0626e752014-09-16 14:34:59 -0400184
Eric Biggersd7614cc2016-12-01 14:57:29 -0500185 /* Check the values */
Darrick J. Wonga0626e752014-09-16 14:34:59 -0400186 while (!IS_LAST_ENTRY(entry)) {
Andreas Dilgere50e5122017-06-21 21:10:32 -0400187 if (entry->e_value_size != 0 &&
188 entry->e_value_inum == 0) {
Eric Biggersd7614cc2016-12-01 14:57:29 -0500189 u16 offs = le16_to_cpu(entry->e_value_offs);
190 u32 size = le32_to_cpu(entry->e_value_size);
191 void *value;
192
193 /*
194 * The value cannot overlap the names, and the value
195 * with padding cannot extend beyond 'end'. Check both
196 * the padded and unpadded sizes, since the size may
197 * overflow to 0 when adding padding.
198 */
199 if (offs > end - value_start)
200 return -EFSCORRUPTED;
201 value = value_start + offs;
202 if (value < (void *)e + sizeof(u32) ||
203 size > end - value ||
204 EXT4_XATTR_SIZE(size) > end - value)
205 return -EFSCORRUPTED;
206 }
Darrick J. Wonga0626e752014-09-16 14:34:59 -0400207 entry = EXT4_XATTR_NEXT(entry);
208 }
209
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700210 return 0;
211}
212
213static inline int
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -0400214ext4_xattr_check_block(struct inode *inode, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700215{
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -0400216 int error;
217
218 if (buffer_verified(bh))
219 return 0;
220
Mingming Cao617ba132006-10-11 01:20:53 -0700221 if (BHDR(bh)->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700222 BHDR(bh)->h_blocks != cpu_to_le32(1))
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400223 return -EFSCORRUPTED;
Theodore Ts'odac7a4b2017-03-25 17:22:47 -0400224 if (!ext4_xattr_block_csum_verify(inode, bh))
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400225 return -EFSBADCRC;
Eric Biggers2c4f9922017-04-29 23:56:52 -0400226 error = ext4_xattr_check_entries(BFIRST(bh), bh->b_data + bh->b_size,
227 bh->b_data);
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -0400228 if (!error)
229 set_buffer_verified(bh);
230 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700231}
232
Theodore Ts'o9e92f482016-03-22 16:13:15 -0400233static int
234__xattr_check_inode(struct inode *inode, struct ext4_xattr_ibody_header *header,
235 void *end, const char *function, unsigned int line)
236{
Theodore Ts'o9e92f482016-03-22 16:13:15 -0400237 int error = -EFSCORRUPTED;
238
Eric Biggers290ab232016-12-01 14:51:58 -0500239 if (end - (void *)header < sizeof(*header) + sizeof(u32) ||
Eric Biggers19962502016-10-15 09:39:31 -0400240 (header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)))
Theodore Ts'o9e92f482016-03-22 16:13:15 -0400241 goto errout;
Eric Biggers2c4f9922017-04-29 23:56:52 -0400242 error = ext4_xattr_check_entries(IFIRST(header), end, IFIRST(header));
Theodore Ts'o9e92f482016-03-22 16:13:15 -0400243errout:
244 if (error)
245 __ext4_error_inode(inode, function, line, 0,
246 "corrupted in-inode xattr");
247 return error;
248}
249
250#define xattr_check_inode(inode, header, end) \
251 __xattr_check_inode((inode), (header), (end), __func__, __LINE__)
252
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700253static int
Mingming Cao617ba132006-10-11 01:20:53 -0700254ext4_xattr_find_entry(struct ext4_xattr_entry **pentry, int name_index,
Eric Biggers6ba644b2017-04-30 00:01:02 -0400255 const char *name, int sorted)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700256{
Mingming Cao617ba132006-10-11 01:20:53 -0700257 struct ext4_xattr_entry *entry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700258 size_t name_len;
259 int cmp = 1;
260
261 if (name == NULL)
262 return -EINVAL;
263 name_len = strlen(name);
264 entry = *pentry;
Mingming Cao617ba132006-10-11 01:20:53 -0700265 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700266 cmp = name_index - entry->e_name_index;
267 if (!cmp)
268 cmp = name_len - entry->e_name_len;
269 if (!cmp)
270 cmp = memcmp(name, entry->e_name, name_len);
271 if (cmp <= 0 && (sorted || cmp == 0))
272 break;
273 }
274 *pentry = entry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700275 return cmp ? -ENODATA : 0;
276}
277
Andreas Dilgere50e5122017-06-21 21:10:32 -0400278/*
279 * Read the EA value from an inode.
280 */
281static int
282ext4_xattr_inode_read(struct inode *ea_inode, void *buf, size_t *size)
283{
284 unsigned long block = 0;
285 struct buffer_head *bh = NULL;
286 int blocksize;
287 size_t csize, ret_size = 0;
288
289 if (*size == 0)
290 return 0;
291
292 blocksize = ea_inode->i_sb->s_blocksize;
293
294 while (ret_size < *size) {
295 csize = (*size - ret_size) > blocksize ? blocksize :
296 *size - ret_size;
297 bh = ext4_bread(NULL, ea_inode, block, 0);
298 if (IS_ERR(bh)) {
299 *size = ret_size;
300 return PTR_ERR(bh);
301 }
302 memcpy(buf, bh->b_data, csize);
303 brelse(bh);
304
305 buf += csize;
306 block += 1;
307 ret_size += csize;
308 }
309
310 *size = ret_size;
311
312 return 0;
313}
314
315struct inode *ext4_xattr_inode_iget(struct inode *parent, unsigned long ea_ino, int *err)
316{
317 struct inode *ea_inode = NULL;
318
319 ea_inode = ext4_iget(parent->i_sb, ea_ino);
320 if (IS_ERR(ea_inode) || is_bad_inode(ea_inode)) {
321 int rc = IS_ERR(ea_inode) ? PTR_ERR(ea_inode) : 0;
322 ext4_error(parent->i_sb, "error while reading EA inode %lu "
323 "/ %d %d", ea_ino, rc, is_bad_inode(ea_inode));
324 *err = rc != 0 ? rc : -EIO;
325 return NULL;
326 }
327
328 if (EXT4_XATTR_INODE_GET_PARENT(ea_inode) != parent->i_ino ||
329 ea_inode->i_generation != parent->i_generation) {
330 ext4_error(parent->i_sb, "Backpointer from EA inode %lu "
331 "to parent invalid.", ea_ino);
332 *err = -EINVAL;
333 goto error;
334 }
335
336 if (!(EXT4_I(ea_inode)->i_flags & EXT4_EA_INODE_FL)) {
337 ext4_error(parent->i_sb, "EA inode %lu does not have "
338 "EXT4_EA_INODE_FL flag set.\n", ea_ino);
339 *err = -EINVAL;
340 goto error;
341 }
342
343 *err = 0;
344 return ea_inode;
345
346error:
347 iput(ea_inode);
348 return NULL;
349}
350
351/*
352 * Read the value from the EA inode.
353 */
354static int
355ext4_xattr_inode_get(struct inode *inode, unsigned long ea_ino, void *buffer,
356 size_t *size)
357{
358 struct inode *ea_inode = NULL;
359 int err;
360
361 ea_inode = ext4_xattr_inode_iget(inode, ea_ino, &err);
362 if (err)
363 return err;
364
365 err = ext4_xattr_inode_read(ea_inode, buffer, size);
366 iput(ea_inode);
367
368 return err;
369}
370
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700371static int
Mingming Cao617ba132006-10-11 01:20:53 -0700372ext4_xattr_block_get(struct inode *inode, int name_index, const char *name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700373 void *buffer, size_t buffer_size)
374{
375 struct buffer_head *bh = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -0700376 struct ext4_xattr_entry *entry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700377 size_t size;
378 int error;
Jan Kara7a2508e2016-02-22 22:35:22 -0500379 struct mb_cache *ext4_mb_cache = EXT4_GET_MB_CACHE(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700380
381 ea_idebug(inode, "name=%d.%s, buffer=%p, buffer_size=%ld",
382 name_index, name, buffer, (long)buffer_size);
383
384 error = -ENODATA;
Mingming Cao617ba132006-10-11 01:20:53 -0700385 if (!EXT4_I(inode)->i_file_acl)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700386 goto cleanup;
Joe Perchesace36ad2012-03-19 23:11:43 -0400387 ea_idebug(inode, "reading block %llu",
388 (unsigned long long)EXT4_I(inode)->i_file_acl);
Mingming Cao617ba132006-10-11 01:20:53 -0700389 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700390 if (!bh)
391 goto cleanup;
392 ea_bdebug(bh, "b_count=%d, refcount=%d",
393 atomic_read(&(bh->b_count)), le32_to_cpu(BHDR(bh)->h_refcount));
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -0400394 if (ext4_xattr_check_block(inode, bh)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -0400395 EXT4_ERROR_INODE(inode, "bad block %llu",
396 EXT4_I(inode)->i_file_acl);
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400397 error = -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700398 goto cleanup;
399 }
T Makphaibulchoke9c191f72014-03-18 19:24:49 -0400400 ext4_xattr_cache_insert(ext4_mb_cache, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700401 entry = BFIRST(bh);
Eric Biggers6ba644b2017-04-30 00:01:02 -0400402 error = ext4_xattr_find_entry(&entry, name_index, name, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700403 if (error)
404 goto cleanup;
405 size = le32_to_cpu(entry->e_value_size);
406 if (buffer) {
407 error = -ERANGE;
408 if (size > buffer_size)
409 goto cleanup;
Andreas Dilgere50e5122017-06-21 21:10:32 -0400410 if (entry->e_value_inum) {
411 error = ext4_xattr_inode_get(inode,
412 le32_to_cpu(entry->e_value_inum),
413 buffer, &size);
414 if (error)
415 goto cleanup;
416 } else {
417 memcpy(buffer, bh->b_data +
418 le16_to_cpu(entry->e_value_offs), size);
419 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700420 }
421 error = size;
422
423cleanup:
424 brelse(bh);
425 return error;
426}
427
Tao Ma879b3822012-12-05 10:28:46 -0500428int
Mingming Cao617ba132006-10-11 01:20:53 -0700429ext4_xattr_ibody_get(struct inode *inode, int name_index, const char *name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700430 void *buffer, size_t buffer_size)
431{
Mingming Cao617ba132006-10-11 01:20:53 -0700432 struct ext4_xattr_ibody_header *header;
433 struct ext4_xattr_entry *entry;
434 struct ext4_inode *raw_inode;
435 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700436 size_t size;
437 void *end;
438 int error;
439
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500440 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700441 return -ENODATA;
Mingming Cao617ba132006-10-11 01:20:53 -0700442 error = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700443 if (error)
444 return error;
Mingming Cao617ba132006-10-11 01:20:53 -0700445 raw_inode = ext4_raw_inode(&iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700446 header = IHDR(inode, raw_inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700447 end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
Theodore Ts'o9e92f482016-03-22 16:13:15 -0400448 error = xattr_check_inode(inode, header, end);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700449 if (error)
450 goto cleanup;
Eric Biggers6ba644b2017-04-30 00:01:02 -0400451 entry = IFIRST(header);
452 error = ext4_xattr_find_entry(&entry, name_index, name, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700453 if (error)
454 goto cleanup;
455 size = le32_to_cpu(entry->e_value_size);
456 if (buffer) {
457 error = -ERANGE;
458 if (size > buffer_size)
459 goto cleanup;
Andreas Dilgere50e5122017-06-21 21:10:32 -0400460 if (entry->e_value_inum) {
461 error = ext4_xattr_inode_get(inode,
462 le32_to_cpu(entry->e_value_inum),
463 buffer, &size);
464 if (error)
465 goto cleanup;
466 } else {
467 memcpy(buffer, (void *)IFIRST(header) +
468 le16_to_cpu(entry->e_value_offs), size);
469 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700470 }
471 error = size;
472
473cleanup:
474 brelse(iloc.bh);
475 return error;
476}
477
478/*
Mingming Cao617ba132006-10-11 01:20:53 -0700479 * ext4_xattr_get()
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700480 *
481 * Copy an extended attribute into the buffer
482 * provided, or compute the buffer size required.
483 * Buffer is NULL to compute the size of the buffer required.
484 *
485 * Returns a negative error number on failure, or the number of bytes
486 * used / required on success.
487 */
488int
Mingming Cao617ba132006-10-11 01:20:53 -0700489ext4_xattr_get(struct inode *inode, int name_index, const char *name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700490 void *buffer, size_t buffer_size)
491{
492 int error;
493
Theodore Ts'o0db1ff22017-02-05 01:28:48 -0500494 if (unlikely(ext4_forced_shutdown(EXT4_SB(inode->i_sb))))
495 return -EIO;
496
Zhang Zhen230b8c1a2014-05-12 09:57:59 -0400497 if (strlen(name) > 255)
498 return -ERANGE;
499
Mingming Cao617ba132006-10-11 01:20:53 -0700500 down_read(&EXT4_I(inode)->xattr_sem);
501 error = ext4_xattr_ibody_get(inode, name_index, name, buffer,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700502 buffer_size);
503 if (error == -ENODATA)
Mingming Cao617ba132006-10-11 01:20:53 -0700504 error = ext4_xattr_block_get(inode, name_index, name, buffer,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700505 buffer_size);
Mingming Cao617ba132006-10-11 01:20:53 -0700506 up_read(&EXT4_I(inode)->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700507 return error;
508}
509
510static int
Christoph Hellwig431547b2009-11-13 09:52:56 +0000511ext4_xattr_list_entries(struct dentry *dentry, struct ext4_xattr_entry *entry,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700512 char *buffer, size_t buffer_size)
513{
514 size_t rest = buffer_size;
515
Mingming Cao617ba132006-10-11 01:20:53 -0700516 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
Stephen Hemminger11e27522010-05-13 17:53:18 -0700517 const struct xattr_handler *handler =
Mingming Cao617ba132006-10-11 01:20:53 -0700518 ext4_xattr_handler(entry->e_name_index);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700519
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100520 if (handler && (!handler->list || handler->list(dentry))) {
521 const char *prefix = handler->prefix ?: handler->name;
522 size_t prefix_len = strlen(prefix);
523 size_t size = prefix_len + entry->e_name_len + 1;
524
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700525 if (buffer) {
526 if (size > rest)
527 return -ERANGE;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100528 memcpy(buffer, prefix, prefix_len);
529 buffer += prefix_len;
530 memcpy(buffer, entry->e_name, entry->e_name_len);
531 buffer += entry->e_name_len;
532 *buffer++ = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700533 }
534 rest -= size;
535 }
536 }
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100537 return buffer_size - rest; /* total size */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700538}
539
540static int
Christoph Hellwig431547b2009-11-13 09:52:56 +0000541ext4_xattr_block_list(struct dentry *dentry, char *buffer, size_t buffer_size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700542{
David Howells2b0143b2015-03-17 22:25:59 +0000543 struct inode *inode = d_inode(dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700544 struct buffer_head *bh = NULL;
545 int error;
Jan Kara7a2508e2016-02-22 22:35:22 -0500546 struct mb_cache *ext4_mb_cache = EXT4_GET_MB_CACHE(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700547
548 ea_idebug(inode, "buffer=%p, buffer_size=%ld",
549 buffer, (long)buffer_size);
550
551 error = 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700552 if (!EXT4_I(inode)->i_file_acl)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700553 goto cleanup;
Joe Perchesace36ad2012-03-19 23:11:43 -0400554 ea_idebug(inode, "reading block %llu",
555 (unsigned long long)EXT4_I(inode)->i_file_acl);
Mingming Cao617ba132006-10-11 01:20:53 -0700556 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700557 error = -EIO;
558 if (!bh)
559 goto cleanup;
560 ea_bdebug(bh, "b_count=%d, refcount=%d",
561 atomic_read(&(bh->b_count)), le32_to_cpu(BHDR(bh)->h_refcount));
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -0400562 if (ext4_xattr_check_block(inode, bh)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -0400563 EXT4_ERROR_INODE(inode, "bad block %llu",
564 EXT4_I(inode)->i_file_acl);
Darrick J. Wong6a797d22015-10-17 16:16:04 -0400565 error = -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700566 goto cleanup;
567 }
T Makphaibulchoke9c191f72014-03-18 19:24:49 -0400568 ext4_xattr_cache_insert(ext4_mb_cache, bh);
Christoph Hellwig431547b2009-11-13 09:52:56 +0000569 error = ext4_xattr_list_entries(dentry, BFIRST(bh), buffer, buffer_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700570
571cleanup:
572 brelse(bh);
573
574 return error;
575}
576
577static int
Christoph Hellwig431547b2009-11-13 09:52:56 +0000578ext4_xattr_ibody_list(struct dentry *dentry, char *buffer, size_t buffer_size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700579{
David Howells2b0143b2015-03-17 22:25:59 +0000580 struct inode *inode = d_inode(dentry);
Mingming Cao617ba132006-10-11 01:20:53 -0700581 struct ext4_xattr_ibody_header *header;
582 struct ext4_inode *raw_inode;
583 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700584 void *end;
585 int error;
586
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500587 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700588 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -0700589 error = ext4_get_inode_loc(inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700590 if (error)
591 return error;
Mingming Cao617ba132006-10-11 01:20:53 -0700592 raw_inode = ext4_raw_inode(&iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700593 header = IHDR(inode, raw_inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700594 end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
Theodore Ts'o9e92f482016-03-22 16:13:15 -0400595 error = xattr_check_inode(inode, header, end);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700596 if (error)
597 goto cleanup;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000598 error = ext4_xattr_list_entries(dentry, IFIRST(header),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700599 buffer, buffer_size);
600
601cleanup:
602 brelse(iloc.bh);
603 return error;
604}
605
606/*
Eric Biggersba7ea1d2017-04-29 23:53:17 -0400607 * Inode operation listxattr()
608 *
609 * d_inode(dentry)->i_rwsem: don't care
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700610 *
611 * Copy a list of attribute names into the buffer
612 * provided, or compute the buffer size required.
613 * Buffer is NULL to compute the size of the buffer required.
614 *
615 * Returns a negative error number on failure, or the number of bytes
616 * used / required on success.
617 */
Eric Biggersba7ea1d2017-04-29 23:53:17 -0400618ssize_t
619ext4_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700620{
Theodore Ts'oeaeef862011-01-10 12:10:07 -0500621 int ret, ret2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700622
David Howells2b0143b2015-03-17 22:25:59 +0000623 down_read(&EXT4_I(d_inode(dentry))->xattr_sem);
Theodore Ts'oeaeef862011-01-10 12:10:07 -0500624 ret = ret2 = ext4_xattr_ibody_list(dentry, buffer, buffer_size);
625 if (ret < 0)
626 goto errout;
627 if (buffer) {
628 buffer += ret;
629 buffer_size -= ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700630 }
Theodore Ts'oeaeef862011-01-10 12:10:07 -0500631 ret = ext4_xattr_block_list(dentry, buffer, buffer_size);
632 if (ret < 0)
633 goto errout;
634 ret += ret2;
635errout:
David Howells2b0143b2015-03-17 22:25:59 +0000636 up_read(&EXT4_I(d_inode(dentry))->xattr_sem);
Theodore Ts'oeaeef862011-01-10 12:10:07 -0500637 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700638}
639
640/*
Mingming Cao617ba132006-10-11 01:20:53 -0700641 * If the EXT4_FEATURE_COMPAT_EXT_ATTR feature of this file system is
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700642 * not set, set it.
643 */
Mingming Cao617ba132006-10-11 01:20:53 -0700644static void ext4_xattr_update_super_block(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700645 struct super_block *sb)
646{
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400647 if (ext4_has_feature_xattr(sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700648 return;
649
liang xie5d601252014-05-12 22:06:43 -0400650 BUFFER_TRACE(EXT4_SB(sb)->s_sbh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700651 if (ext4_journal_get_write_access(handle, EXT4_SB(sb)->s_sbh) == 0) {
Darrick J. Wonge2b911c2015-10-17 16:18:43 -0400652 ext4_set_feature_xattr(sb);
Theodore Ts'oa0375152010-06-11 23:14:04 -0400653 ext4_handle_dirty_super(handle, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700654 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700655}
656
657/*
Jan Karaec4cb1a2014-04-07 10:54:21 -0400658 * Release the xattr block BH: If the reference count is > 1, decrement it;
659 * otherwise free the block.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700660 */
661static void
Mingming Cao617ba132006-10-11 01:20:53 -0700662ext4_xattr_release_block(handle_t *handle, struct inode *inode,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700663 struct buffer_head *bh)
664{
Andreas Gruenbacher6048c642016-02-22 22:44:04 -0500665 struct mb_cache *ext4_mb_cache = EXT4_GET_MB_CACHE(inode);
666 u32 hash, ref;
Mingming Cao8a2bfdc2007-02-28 20:13:35 -0800667 int error = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700668
liang xie5d601252014-05-12 22:06:43 -0400669 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao8a2bfdc2007-02-28 20:13:35 -0800670 error = ext4_journal_get_write_access(handle, bh);
671 if (error)
672 goto out;
673
674 lock_buffer(bh);
Andreas Gruenbacher6048c642016-02-22 22:44:04 -0500675 hash = le32_to_cpu(BHDR(bh)->h_hash);
676 ref = le32_to_cpu(BHDR(bh)->h_refcount);
677 if (ref == 1) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700678 ea_bdebug(bh, "refcount now=0; freeing");
Jan Kara82939d72016-02-22 11:50:13 -0500679 /*
680 * This must happen under buffer lock for
681 * ext4_xattr_block_set() to reliably detect freed block
682 */
Andreas Gruenbacher6048c642016-02-22 22:44:04 -0500683 mb_cache_entry_delete_block(ext4_mb_cache, hash, bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700684 get_bh(bh);
Jan Karaec4cb1a2014-04-07 10:54:21 -0400685 unlock_buffer(bh);
Theodore Ts'oe6362602009-11-23 07:17:05 -0500686 ext4_free_blocks(handle, inode, bh, 0, 1,
687 EXT4_FREE_BLOCKS_METADATA |
688 EXT4_FREE_BLOCKS_FORGET);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700689 } else {
Andreas Gruenbacher6048c642016-02-22 22:44:04 -0500690 ref--;
691 BHDR(bh)->h_refcount = cpu_to_le32(ref);
692 if (ref == EXT4_XATTR_REFCOUNT_MAX - 1) {
693 struct mb_cache_entry *ce;
694
695 ce = mb_cache_entry_get(ext4_mb_cache, hash,
696 bh->b_blocknr);
697 if (ce) {
698 ce->e_reusable = 1;
699 mb_cache_entry_put(ext4_mb_cache, ce);
700 }
701 }
702
Theodore Ts'odac7a4b2017-03-25 17:22:47 -0400703 ext4_xattr_block_csum_set(inode, bh);
Jan Karaec4cb1a2014-04-07 10:54:21 -0400704 /*
705 * Beware of this ugliness: Releasing of xattr block references
706 * from different inodes can race and so we have to protect
707 * from a race where someone else frees the block (and releases
708 * its journal_head) before we are done dirtying the buffer. In
709 * nojournal mode this race is harmless and we actually cannot
Theodore Ts'odac7a4b2017-03-25 17:22:47 -0400710 * call ext4_handle_dirty_metadata() with locked buffer as
Jan Karaec4cb1a2014-04-07 10:54:21 -0400711 * that function can call sync_dirty_buffer() so for that case
712 * we handle the dirtying after unlocking the buffer.
713 */
714 if (ext4_handle_valid(handle))
Theodore Ts'odac7a4b2017-03-25 17:22:47 -0400715 error = ext4_handle_dirty_metadata(handle, inode, bh);
Eric Sandeenc1bb05a2012-02-20 23:06:18 -0500716 unlock_buffer(bh);
Jan Karaec4cb1a2014-04-07 10:54:21 -0400717 if (!ext4_handle_valid(handle))
Theodore Ts'odac7a4b2017-03-25 17:22:47 -0400718 error = ext4_handle_dirty_metadata(handle, inode, bh);
Mingming Cao8a2bfdc2007-02-28 20:13:35 -0800719 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500720 ext4_handle_sync(handle);
Lukas Czerner1231b3a2013-02-18 12:12:07 -0500721 dquot_free_block(inode, EXT4_C2B(EXT4_SB(inode->i_sb), 1));
Mingming Cao8a2bfdc2007-02-28 20:13:35 -0800722 ea_bdebug(bh, "refcount now=%d; releasing",
723 le32_to_cpu(BHDR(bh)->h_refcount));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700724 }
Mingming Cao8a2bfdc2007-02-28 20:13:35 -0800725out:
726 ext4_std_error(inode->i_sb, error);
727 return;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700728}
729
Kalpak Shah6dd4ee72007-07-18 09:19:57 -0400730/*
731 * Find the available free space for EAs. This also returns the total number of
732 * bytes used by EA entries.
733 */
734static size_t ext4_xattr_free_space(struct ext4_xattr_entry *last,
735 size_t *min_offs, void *base, int *total)
736{
737 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
Andreas Dilgere50e5122017-06-21 21:10:32 -0400738 if (!last->e_value_inum && last->e_value_size) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -0400739 size_t offs = le16_to_cpu(last->e_value_offs);
740 if (offs < *min_offs)
741 *min_offs = offs;
742 }
Theodore Ts'o7b1b2c12014-02-19 20:15:21 -0500743 if (total)
744 *total += EXT4_XATTR_LEN(last->e_name_len);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -0400745 }
746 return (*min_offs - ((void *)last - base) - sizeof(__u32));
747}
748
Andreas Dilgere50e5122017-06-21 21:10:32 -0400749/*
750 * Write the value of the EA in an inode.
751 */
752static int ext4_xattr_inode_write(handle_t *handle, struct inode *ea_inode,
753 const void *buf, int bufsize)
754{
755 struct buffer_head *bh = NULL;
756 unsigned long block = 0;
757 unsigned blocksize = ea_inode->i_sb->s_blocksize;
758 unsigned max_blocks = (bufsize + blocksize - 1) >> ea_inode->i_blkbits;
759 int csize, wsize = 0;
760 int ret = 0;
761 int retries = 0;
762
763retry:
764 while (ret >= 0 && ret < max_blocks) {
765 struct ext4_map_blocks map;
766 map.m_lblk = block += ret;
767 map.m_len = max_blocks -= ret;
768
769 ret = ext4_map_blocks(handle, ea_inode, &map,
770 EXT4_GET_BLOCKS_CREATE);
771 if (ret <= 0) {
772 ext4_mark_inode_dirty(handle, ea_inode);
773 if (ret == -ENOSPC &&
774 ext4_should_retry_alloc(ea_inode->i_sb, &retries)) {
775 ret = 0;
776 goto retry;
777 }
778 break;
779 }
780 }
781
782 if (ret < 0)
783 return ret;
784
785 block = 0;
786 while (wsize < bufsize) {
787 if (bh != NULL)
788 brelse(bh);
789 csize = (bufsize - wsize) > blocksize ? blocksize :
790 bufsize - wsize;
791 bh = ext4_getblk(handle, ea_inode, block, 0);
792 if (IS_ERR(bh))
793 return PTR_ERR(bh);
794 ret = ext4_journal_get_write_access(handle, bh);
795 if (ret)
796 goto out;
797
798 memcpy(bh->b_data, buf, csize);
799 set_buffer_uptodate(bh);
800 ext4_handle_dirty_metadata(handle, ea_inode, bh);
801
802 buf += csize;
803 wsize += csize;
804 block += 1;
805 }
806
807 inode_lock(ea_inode);
808 i_size_write(ea_inode, wsize);
809 ext4_update_i_disksize(ea_inode, wsize);
810 inode_unlock(ea_inode);
811
812 ext4_mark_inode_dirty(handle, ea_inode);
813
814out:
815 brelse(bh);
816
817 return ret;
818}
819
820/*
821 * Create an inode to store the value of a large EA.
822 */
823static struct inode *ext4_xattr_inode_create(handle_t *handle,
824 struct inode *inode)
825{
826 struct inode *ea_inode = NULL;
827
828 /*
829 * Let the next inode be the goal, so we try and allocate the EA inode
830 * in the same group, or nearby one.
831 */
832 ea_inode = ext4_new_inode(handle, inode->i_sb->s_root->d_inode,
Tahsin Erdogan1b917ed2017-06-21 21:21:39 -0400833 S_IFREG | 0600, NULL, inode->i_ino + 1, NULL,
834 EXT4_EA_INODE_FL);
Andreas Dilgere50e5122017-06-21 21:10:32 -0400835 if (!IS_ERR(ea_inode)) {
836 ea_inode->i_op = &ext4_file_inode_operations;
837 ea_inode->i_fop = &ext4_file_operations;
838 ext4_set_aops(ea_inode);
Tahsin Erdogan33d201e2017-06-21 21:17:10 -0400839 ext4_xattr_inode_set_class(ea_inode);
Andreas Dilgere50e5122017-06-21 21:10:32 -0400840 ea_inode->i_generation = inode->i_generation;
841 EXT4_I(ea_inode)->i_flags |= EXT4_EA_INODE_FL;
842
843 /*
844 * A back-pointer from EA inode to parent inode will be useful
845 * for e2fsck.
846 */
847 EXT4_XATTR_INODE_SET_PARENT(ea_inode, inode->i_ino);
848 unlock_new_inode(ea_inode);
849 }
850
851 return ea_inode;
852}
853
854/*
855 * Unlink the inode storing the value of the EA.
856 */
857int ext4_xattr_inode_unlink(struct inode *inode, unsigned long ea_ino)
858{
859 struct inode *ea_inode = NULL;
860 int err;
861
862 ea_inode = ext4_xattr_inode_iget(inode, ea_ino, &err);
863 if (err)
864 return err;
865
866 clear_nlink(ea_inode);
867 iput(ea_inode);
868
869 return 0;
870}
871
872/*
873 * Add value of the EA in an inode.
874 */
875static int ext4_xattr_inode_set(handle_t *handle, struct inode *inode,
876 unsigned long *ea_ino, const void *value,
877 size_t value_len)
878{
879 struct inode *ea_inode;
880 int err;
881
882 /* Create an inode for the EA value */
883 ea_inode = ext4_xattr_inode_create(handle, inode);
884 if (IS_ERR(ea_inode))
885 return PTR_ERR(ea_inode);
886
887 err = ext4_xattr_inode_write(handle, ea_inode, value, value_len);
888 if (err)
889 clear_nlink(ea_inode);
890 else
891 *ea_ino = ea_inode->i_ino;
892
893 iput(ea_inode);
894
895 return err;
896}
897
898static int ext4_xattr_set_entry(struct ext4_xattr_info *i,
899 struct ext4_xattr_search *s,
900 handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901{
Mingming Cao617ba132006-10-11 01:20:53 -0700902 struct ext4_xattr_entry *last;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700903 size_t free, min_offs = s->end - s->base, name_len = strlen(i->name);
Andreas Dilgere50e5122017-06-21 21:10:32 -0400904 int in_inode = i->in_inode;
905 int rc;
906
907 if (ext4_has_feature_ea_inode(inode->i_sb) &&
908 (EXT4_XATTR_SIZE(i->value_len) >
909 EXT4_XATTR_MIN_LARGE_EA_SIZE(inode->i_sb->s_blocksize)))
910 in_inode = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700911
912 /* Compute min_offs and last. */
913 last = s->first;
Mingming Cao617ba132006-10-11 01:20:53 -0700914 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
Andreas Dilgere50e5122017-06-21 21:10:32 -0400915 if (!last->e_value_inum && last->e_value_size) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700916 size_t offs = le16_to_cpu(last->e_value_offs);
917 if (offs < min_offs)
918 min_offs = offs;
919 }
920 }
921 free = min_offs - ((void *)last - s->base) - sizeof(__u32);
922 if (!s->not_found) {
Andreas Dilgere50e5122017-06-21 21:10:32 -0400923 if (!in_inode &&
924 !s->here->e_value_inum && s->here->e_value_size) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700925 size_t size = le32_to_cpu(s->here->e_value_size);
Mingming Cao617ba132006-10-11 01:20:53 -0700926 free += EXT4_XATTR_SIZE(size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700927 }
Mingming Cao617ba132006-10-11 01:20:53 -0700928 free += EXT4_XATTR_LEN(name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700929 }
930 if (i->value) {
Andreas Dilgere50e5122017-06-21 21:10:32 -0400931 size_t value_len = EXT4_XATTR_SIZE(i->value_len);
932
933 if (in_inode)
934 value_len = 0;
935
936 if (free < EXT4_XATTR_LEN(name_len) + value_len)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700937 return -ENOSPC;
938 }
939
940 if (i->value && s->not_found) {
941 /* Insert the new name. */
Mingming Cao617ba132006-10-11 01:20:53 -0700942 size_t size = EXT4_XATTR_LEN(name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700943 size_t rest = (void *)last - (void *)s->here + sizeof(__u32);
944 memmove((void *)s->here + size, s->here, rest);
945 memset(s->here, 0, size);
946 s->here->e_name_index = i->name_index;
947 s->here->e_name_len = name_len;
948 memcpy(s->here->e_name, i->name, name_len);
949 } else {
Andreas Dilgere50e5122017-06-21 21:10:32 -0400950 if (!s->here->e_value_inum && s->here->e_value_size &&
951 s->here->e_value_offs > 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700952 void *first_val = s->base + min_offs;
953 size_t offs = le16_to_cpu(s->here->e_value_offs);
954 void *val = s->base + offs;
Mingming Cao617ba132006-10-11 01:20:53 -0700955 size_t size = EXT4_XATTR_SIZE(
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700956 le32_to_cpu(s->here->e_value_size));
957
Mingming Cao617ba132006-10-11 01:20:53 -0700958 if (i->value && size == EXT4_XATTR_SIZE(i->value_len)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700959 /* The old and the new value have the same
960 size. Just replace. */
961 s->here->e_value_size =
962 cpu_to_le32(i->value_len);
Theodore Ts'obd9926e2012-12-11 03:31:49 -0500963 if (i->value == EXT4_ZERO_XATTR_VALUE) {
964 memset(val, 0, size);
965 } else {
966 /* Clear pad bytes first. */
967 memset(val + size - EXT4_XATTR_PAD, 0,
968 EXT4_XATTR_PAD);
969 memcpy(val, i->value, i->value_len);
970 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700971 return 0;
972 }
973
974 /* Remove the old value. */
975 memmove(first_val + size, first_val, val - first_val);
976 memset(first_val, 0, size);
977 s->here->e_value_size = 0;
978 s->here->e_value_offs = 0;
979 min_offs += size;
980
981 /* Adjust all value offsets. */
982 last = s->first;
983 while (!IS_LAST_ENTRY(last)) {
984 size_t o = le16_to_cpu(last->e_value_offs);
Andreas Dilgere50e5122017-06-21 21:10:32 -0400985 if (!last->e_value_inum &&
986 last->e_value_size && o < offs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700987 last->e_value_offs =
988 cpu_to_le16(o + size);
Mingming Cao617ba132006-10-11 01:20:53 -0700989 last = EXT4_XATTR_NEXT(last);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700990 }
991 }
Andreas Dilgere50e5122017-06-21 21:10:32 -0400992 if (s->here->e_value_inum) {
993 ext4_xattr_inode_unlink(inode,
994 le32_to_cpu(s->here->e_value_inum));
995 s->here->e_value_inum = 0;
996 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700997 if (!i->value) {
998 /* Remove the old name. */
Mingming Cao617ba132006-10-11 01:20:53 -0700999 size_t size = EXT4_XATTR_LEN(name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001000 last = ENTRY((void *)last - size);
1001 memmove(s->here, (void *)s->here + size,
1002 (void *)last - (void *)s->here + sizeof(__u32));
1003 memset(last, 0, size);
1004 }
1005 }
1006
1007 if (i->value) {
1008 /* Insert the new value. */
Andreas Dilgere50e5122017-06-21 21:10:32 -04001009 if (in_inode) {
1010 unsigned long ea_ino =
1011 le32_to_cpu(s->here->e_value_inum);
1012 rc = ext4_xattr_inode_set(handle, inode, &ea_ino,
1013 i->value, i->value_len);
1014 if (rc)
1015 goto out;
1016 s->here->e_value_inum = cpu_to_le32(ea_ino);
1017 s->here->e_value_offs = 0;
1018 } else if (i->value_len) {
Mingming Cao617ba132006-10-11 01:20:53 -07001019 size_t size = EXT4_XATTR_SIZE(i->value_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001020 void *val = s->base + min_offs - size;
1021 s->here->e_value_offs = cpu_to_le16(min_offs - size);
Andreas Dilgere50e5122017-06-21 21:10:32 -04001022 s->here->e_value_inum = 0;
Theodore Ts'obd9926e2012-12-11 03:31:49 -05001023 if (i->value == EXT4_ZERO_XATTR_VALUE) {
1024 memset(val, 0, size);
1025 } else {
1026 /* Clear the pad bytes first. */
1027 memset(val + size - EXT4_XATTR_PAD, 0,
1028 EXT4_XATTR_PAD);
1029 memcpy(val, i->value, i->value_len);
1030 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001031 }
Andreas Dilgere50e5122017-06-21 21:10:32 -04001032 s->here->e_value_size = cpu_to_le32(i->value_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001033 }
Andreas Dilgere50e5122017-06-21 21:10:32 -04001034
1035out:
1036 return rc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001037}
1038
Mingming Cao617ba132006-10-11 01:20:53 -07001039struct ext4_xattr_block_find {
1040 struct ext4_xattr_search s;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001041 struct buffer_head *bh;
1042};
1043
1044static int
Mingming Cao617ba132006-10-11 01:20:53 -07001045ext4_xattr_block_find(struct inode *inode, struct ext4_xattr_info *i,
1046 struct ext4_xattr_block_find *bs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001047{
1048 struct super_block *sb = inode->i_sb;
1049 int error;
1050
1051 ea_idebug(inode, "name=%d.%s, value=%p, value_len=%ld",
1052 i->name_index, i->name, i->value, (long)i->value_len);
1053
Mingming Cao617ba132006-10-11 01:20:53 -07001054 if (EXT4_I(inode)->i_file_acl) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001055 /* The inode already has an extended attribute block. */
Mingming Cao617ba132006-10-11 01:20:53 -07001056 bs->bh = sb_bread(sb, EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001057 error = -EIO;
1058 if (!bs->bh)
1059 goto cleanup;
1060 ea_bdebug(bs->bh, "b_count=%d, refcount=%d",
1061 atomic_read(&(bs->bh->b_count)),
1062 le32_to_cpu(BHDR(bs->bh)->h_refcount));
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -04001063 if (ext4_xattr_check_block(inode, bs->bh)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001064 EXT4_ERROR_INODE(inode, "bad block %llu",
1065 EXT4_I(inode)->i_file_acl);
Darrick J. Wong6a797d22015-10-17 16:16:04 -04001066 error = -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001067 goto cleanup;
1068 }
1069 /* Find the named attribute. */
1070 bs->s.base = BHDR(bs->bh);
1071 bs->s.first = BFIRST(bs->bh);
1072 bs->s.end = bs->bh->b_data + bs->bh->b_size;
1073 bs->s.here = bs->s.first;
Mingming Cao617ba132006-10-11 01:20:53 -07001074 error = ext4_xattr_find_entry(&bs->s.here, i->name_index,
Eric Biggers6ba644b2017-04-30 00:01:02 -04001075 i->name, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001076 if (error && error != -ENODATA)
1077 goto cleanup;
1078 bs->s.not_found = error;
1079 }
1080 error = 0;
1081
1082cleanup:
1083 return error;
1084}
1085
1086static int
Mingming Cao617ba132006-10-11 01:20:53 -07001087ext4_xattr_block_set(handle_t *handle, struct inode *inode,
1088 struct ext4_xattr_info *i,
1089 struct ext4_xattr_block_find *bs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001090{
1091 struct super_block *sb = inode->i_sb;
1092 struct buffer_head *new_bh = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -07001093 struct ext4_xattr_search *s = &bs->s;
Jan Kara7a2508e2016-02-22 22:35:22 -05001094 struct mb_cache_entry *ce = NULL;
Mingming Cao8a2bfdc2007-02-28 20:13:35 -08001095 int error = 0;
Jan Kara7a2508e2016-02-22 22:35:22 -05001096 struct mb_cache *ext4_mb_cache = EXT4_GET_MB_CACHE(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001097
Mingming Cao617ba132006-10-11 01:20:53 -07001098#define header(x) ((struct ext4_xattr_header *)(x))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001099
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001100 if (s->base) {
liang xie5d601252014-05-12 22:06:43 -04001101 BUFFER_TRACE(bs->bh, "get_write_access");
Mingming Cao8a2bfdc2007-02-28 20:13:35 -08001102 error = ext4_journal_get_write_access(handle, bs->bh);
1103 if (error)
1104 goto cleanup;
1105 lock_buffer(bs->bh);
1106
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001107 if (header(s->base)->h_refcount == cpu_to_le32(1)) {
Jan Kara82939d72016-02-22 11:50:13 -05001108 __u32 hash = le32_to_cpu(BHDR(bs->bh)->h_hash);
1109
1110 /*
1111 * This must happen under buffer lock for
1112 * ext4_xattr_block_set() to reliably detect modified
1113 * block
1114 */
Jan Kara7a2508e2016-02-22 22:35:22 -05001115 mb_cache_entry_delete_block(ext4_mb_cache, hash,
1116 bs->bh->b_blocknr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001117 ea_bdebug(bs->bh, "modifying in-place");
Andreas Dilgere50e5122017-06-21 21:10:32 -04001118 error = ext4_xattr_set_entry(i, s, handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001119 if (!error) {
1120 if (!IS_LAST_ENTRY(s->first))
Mingming Cao617ba132006-10-11 01:20:53 -07001121 ext4_xattr_rehash(header(s->base),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001122 s->here);
T Makphaibulchoke9c191f72014-03-18 19:24:49 -04001123 ext4_xattr_cache_insert(ext4_mb_cache,
1124 bs->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001125 }
Theodore Ts'odac7a4b2017-03-25 17:22:47 -04001126 ext4_xattr_block_csum_set(inode, bs->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001127 unlock_buffer(bs->bh);
Darrick J. Wong6a797d22015-10-17 16:16:04 -04001128 if (error == -EFSCORRUPTED)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001129 goto bad_block;
1130 if (!error)
Theodore Ts'odac7a4b2017-03-25 17:22:47 -04001131 error = ext4_handle_dirty_metadata(handle,
1132 inode,
1133 bs->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001134 if (error)
1135 goto cleanup;
1136 goto inserted;
1137 } else {
1138 int offset = (char *)s->here - bs->bh->b_data;
1139
Mingming Cao8a2bfdc2007-02-28 20:13:35 -08001140 unlock_buffer(bs->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001141 ea_bdebug(bs->bh, "cloning");
Josef Bacik216553c2008-04-29 22:02:02 -04001142 s->base = kmalloc(bs->bh->b_size, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001143 error = -ENOMEM;
1144 if (s->base == NULL)
1145 goto cleanup;
1146 memcpy(s->base, BHDR(bs->bh), bs->bh->b_size);
1147 s->first = ENTRY(header(s->base)+1);
1148 header(s->base)->h_refcount = cpu_to_le32(1);
1149 s->here = ENTRY(s->base + offset);
1150 s->end = s->base + bs->bh->b_size;
1151 }
1152 } else {
1153 /* Allocate a buffer where we construct the new block. */
Josef Bacik216553c2008-04-29 22:02:02 -04001154 s->base = kzalloc(sb->s_blocksize, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001155 /* assert(header == s->base) */
1156 error = -ENOMEM;
1157 if (s->base == NULL)
1158 goto cleanup;
Mingming Cao617ba132006-10-11 01:20:53 -07001159 header(s->base)->h_magic = cpu_to_le32(EXT4_XATTR_MAGIC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001160 header(s->base)->h_blocks = cpu_to_le32(1);
1161 header(s->base)->h_refcount = cpu_to_le32(1);
1162 s->first = ENTRY(header(s->base)+1);
1163 s->here = ENTRY(header(s->base)+1);
1164 s->end = s->base + sb->s_blocksize;
1165 }
1166
Andreas Dilgere50e5122017-06-21 21:10:32 -04001167 error = ext4_xattr_set_entry(i, s, handle, inode);
Darrick J. Wong6a797d22015-10-17 16:16:04 -04001168 if (error == -EFSCORRUPTED)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001169 goto bad_block;
1170 if (error)
1171 goto cleanup;
1172 if (!IS_LAST_ENTRY(s->first))
Mingming Cao617ba132006-10-11 01:20:53 -07001173 ext4_xattr_rehash(header(s->base), s->here);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001174
1175inserted:
1176 if (!IS_LAST_ENTRY(s->first)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001177 new_bh = ext4_xattr_cache_find(inode, header(s->base), &ce);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001178 if (new_bh) {
1179 /* We found an identical block in the cache. */
1180 if (new_bh == bs->bh)
1181 ea_bdebug(new_bh, "keeping");
1182 else {
Andreas Gruenbacher6048c642016-02-22 22:44:04 -05001183 u32 ref;
1184
Tahsin Erdoganb8cb5a52017-05-24 18:24:07 -04001185 WARN_ON_ONCE(dquot_initialize_needed(inode));
1186
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001187 /* The old block is released after updating
1188 the inode. */
Lukas Czerner1231b3a2013-02-18 12:12:07 -05001189 error = dquot_alloc_block(inode,
1190 EXT4_C2B(EXT4_SB(sb), 1));
Christoph Hellwig5dd40562010-03-03 09:05:00 -05001191 if (error)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001192 goto cleanup;
liang xie5d601252014-05-12 22:06:43 -04001193 BUFFER_TRACE(new_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001194 error = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001195 new_bh);
1196 if (error)
1197 goto cleanup_dquot;
1198 lock_buffer(new_bh);
Jan Kara82939d72016-02-22 11:50:13 -05001199 /*
1200 * We have to be careful about races with
Andreas Gruenbacher6048c642016-02-22 22:44:04 -05001201 * freeing, rehashing or adding references to
1202 * xattr block. Once we hold buffer lock xattr
1203 * block's state is stable so we can check
1204 * whether the block got freed / rehashed or
1205 * not. Since we unhash mbcache entry under
1206 * buffer lock when freeing / rehashing xattr
1207 * block, checking whether entry is still
1208 * hashed is reliable. Same rules hold for
1209 * e_reusable handling.
Jan Kara82939d72016-02-22 11:50:13 -05001210 */
Andreas Gruenbacher6048c642016-02-22 22:44:04 -05001211 if (hlist_bl_unhashed(&ce->e_hash_list) ||
1212 !ce->e_reusable) {
Jan Kara82939d72016-02-22 11:50:13 -05001213 /*
1214 * Undo everything and check mbcache
1215 * again.
1216 */
1217 unlock_buffer(new_bh);
1218 dquot_free_block(inode,
1219 EXT4_C2B(EXT4_SB(sb),
1220 1));
1221 brelse(new_bh);
Jan Kara7a2508e2016-02-22 22:35:22 -05001222 mb_cache_entry_put(ext4_mb_cache, ce);
Jan Kara82939d72016-02-22 11:50:13 -05001223 ce = NULL;
1224 new_bh = NULL;
1225 goto inserted;
1226 }
Andreas Gruenbacher6048c642016-02-22 22:44:04 -05001227 ref = le32_to_cpu(BHDR(new_bh)->h_refcount) + 1;
1228 BHDR(new_bh)->h_refcount = cpu_to_le32(ref);
1229 if (ref >= EXT4_XATTR_REFCOUNT_MAX)
1230 ce->e_reusable = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001231 ea_bdebug(new_bh, "reusing; refcount now=%d",
Andreas Gruenbacher6048c642016-02-22 22:44:04 -05001232 ref);
Theodore Ts'odac7a4b2017-03-25 17:22:47 -04001233 ext4_xattr_block_csum_set(inode, new_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001234 unlock_buffer(new_bh);
Theodore Ts'odac7a4b2017-03-25 17:22:47 -04001235 error = ext4_handle_dirty_metadata(handle,
1236 inode,
1237 new_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001238 if (error)
1239 goto cleanup_dquot;
1240 }
Jan Kara7a2508e2016-02-22 22:35:22 -05001241 mb_cache_entry_touch(ext4_mb_cache, ce);
1242 mb_cache_entry_put(ext4_mb_cache, ce);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001243 ce = NULL;
1244 } else if (bs->bh && s->base == bs->bh->b_data) {
1245 /* We were modifying this block in-place. */
1246 ea_bdebug(bs->bh, "keeping this block");
1247 new_bh = bs->bh;
1248 get_bh(new_bh);
1249 } else {
1250 /* We need to allocate a new block */
Eric Sandeenfb0a3872009-09-16 14:45:10 -04001251 ext4_fsblk_t goal, block;
1252
Tahsin Erdoganb8cb5a52017-05-24 18:24:07 -04001253 WARN_ON_ONCE(dquot_initialize_needed(inode));
1254
Eric Sandeenfb0a3872009-09-16 14:45:10 -04001255 goal = ext4_group_first_block_no(sb,
Akinobu Mitad00a6d72008-04-17 10:38:59 -04001256 EXT4_I(inode)->i_block_group);
Eric Sandeenfb0a3872009-09-16 14:45:10 -04001257
1258 /* non-extent files can't have physical blocks past 2^32 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001259 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04001260 goal = goal & EXT4_MAX_BLOCK_FILE_PHYS;
1261
Allison Henderson55f020d2011-05-25 07:41:26 -04001262 block = ext4_new_meta_blocks(handle, inode, goal, 0,
1263 NULL, &error);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001264 if (error)
1265 goto cleanup;
Eric Sandeenfb0a3872009-09-16 14:45:10 -04001266
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001267 if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04001268 BUG_ON(block > EXT4_MAX_BLOCK_FILE_PHYS);
1269
Joe Perchesace36ad2012-03-19 23:11:43 -04001270 ea_idebug(inode, "creating block %llu",
1271 (unsigned long long)block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001272
1273 new_bh = sb_getblk(sb, block);
Wang Shilongaebf0242013-01-12 16:28:47 -05001274 if (unlikely(!new_bh)) {
Theodore Ts'o860d21e2013-01-12 16:19:36 -05001275 error = -ENOMEM;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001276getblk_failed:
Peter Huewe7dc57612011-02-21 21:01:42 -05001277 ext4_free_blocks(handle, inode, NULL, block, 1,
Theodore Ts'oe6362602009-11-23 07:17:05 -05001278 EXT4_FREE_BLOCKS_METADATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001279 goto cleanup;
1280 }
1281 lock_buffer(new_bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001282 error = ext4_journal_get_create_access(handle, new_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001283 if (error) {
1284 unlock_buffer(new_bh);
Theodore Ts'o860d21e2013-01-12 16:19:36 -05001285 error = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001286 goto getblk_failed;
1287 }
1288 memcpy(new_bh->b_data, s->base, new_bh->b_size);
Theodore Ts'odac7a4b2017-03-25 17:22:47 -04001289 ext4_xattr_block_csum_set(inode, new_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001290 set_buffer_uptodate(new_bh);
1291 unlock_buffer(new_bh);
T Makphaibulchoke9c191f72014-03-18 19:24:49 -04001292 ext4_xattr_cache_insert(ext4_mb_cache, new_bh);
Theodore Ts'odac7a4b2017-03-25 17:22:47 -04001293 error = ext4_handle_dirty_metadata(handle, inode,
1294 new_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001295 if (error)
1296 goto cleanup;
1297 }
1298 }
1299
1300 /* Update the inode. */
Mingming Cao617ba132006-10-11 01:20:53 -07001301 EXT4_I(inode)->i_file_acl = new_bh ? new_bh->b_blocknr : 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001302
1303 /* Drop the previous xattr block. */
1304 if (bs->bh && bs->bh != new_bh)
Mingming Cao617ba132006-10-11 01:20:53 -07001305 ext4_xattr_release_block(handle, inode, bs->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001306 error = 0;
1307
1308cleanup:
1309 if (ce)
Jan Kara7a2508e2016-02-22 22:35:22 -05001310 mb_cache_entry_put(ext4_mb_cache, ce);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001311 brelse(new_bh);
1312 if (!(bs->bh && s->base == bs->bh->b_data))
1313 kfree(s->base);
1314
1315 return error;
1316
1317cleanup_dquot:
Lukas Czerner1231b3a2013-02-18 12:12:07 -05001318 dquot_free_block(inode, EXT4_C2B(EXT4_SB(sb), 1));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001319 goto cleanup;
1320
1321bad_block:
Theodore Ts'o24676da2010-05-16 21:00:00 -04001322 EXT4_ERROR_INODE(inode, "bad block %llu",
1323 EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001324 goto cleanup;
1325
1326#undef header
1327}
1328
Tao Ma879b3822012-12-05 10:28:46 -05001329int ext4_xattr_ibody_find(struct inode *inode, struct ext4_xattr_info *i,
1330 struct ext4_xattr_ibody_find *is)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001331{
Mingming Cao617ba132006-10-11 01:20:53 -07001332 struct ext4_xattr_ibody_header *header;
1333 struct ext4_inode *raw_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001334 int error;
1335
Mingming Cao617ba132006-10-11 01:20:53 -07001336 if (EXT4_I(inode)->i_extra_isize == 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001337 return 0;
Mingming Cao617ba132006-10-11 01:20:53 -07001338 raw_inode = ext4_raw_inode(&is->iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001339 header = IHDR(inode, raw_inode);
1340 is->s.base = is->s.first = IFIRST(header);
1341 is->s.here = is->s.first;
Mingming Cao617ba132006-10-11 01:20:53 -07001342 is->s.end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001343 if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) {
Theodore Ts'o9e92f482016-03-22 16:13:15 -04001344 error = xattr_check_inode(inode, header, is->s.end);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001345 if (error)
1346 return error;
1347 /* Find the named attribute. */
Mingming Cao617ba132006-10-11 01:20:53 -07001348 error = ext4_xattr_find_entry(&is->s.here, i->name_index,
Eric Biggers6ba644b2017-04-30 00:01:02 -04001349 i->name, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001350 if (error && error != -ENODATA)
1351 return error;
1352 is->s.not_found = error;
1353 }
1354 return 0;
1355}
1356
Tao Ma0d812f72012-12-10 14:06:02 -05001357int ext4_xattr_ibody_inline_set(handle_t *handle, struct inode *inode,
1358 struct ext4_xattr_info *i,
1359 struct ext4_xattr_ibody_find *is)
1360{
1361 struct ext4_xattr_ibody_header *header;
1362 struct ext4_xattr_search *s = &is->s;
1363 int error;
1364
1365 if (EXT4_I(inode)->i_extra_isize == 0)
1366 return -ENOSPC;
Andreas Dilgere50e5122017-06-21 21:10:32 -04001367 error = ext4_xattr_set_entry(i, s, handle, inode);
Tao Ma0d812f72012-12-10 14:06:02 -05001368 if (error) {
1369 if (error == -ENOSPC &&
1370 ext4_has_inline_data(inode)) {
1371 error = ext4_try_to_evict_inline_data(handle, inode,
1372 EXT4_XATTR_LEN(strlen(i->name) +
1373 EXT4_XATTR_SIZE(i->value_len)));
1374 if (error)
1375 return error;
1376 error = ext4_xattr_ibody_find(inode, i, is);
1377 if (error)
1378 return error;
Andreas Dilgere50e5122017-06-21 21:10:32 -04001379 error = ext4_xattr_set_entry(i, s, handle, inode);
Tao Ma0d812f72012-12-10 14:06:02 -05001380 }
1381 if (error)
1382 return error;
1383 }
1384 header = IHDR(inode, ext4_raw_inode(&is->iloc));
1385 if (!IS_LAST_ENTRY(s->first)) {
1386 header->h_magic = cpu_to_le32(EXT4_XATTR_MAGIC);
1387 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
1388 } else {
1389 header->h_magic = cpu_to_le32(0);
1390 ext4_clear_inode_state(inode, EXT4_STATE_XATTR);
1391 }
1392 return 0;
1393}
1394
Andreas Dilgere50e5122017-06-21 21:10:32 -04001395static int ext4_xattr_ibody_set(handle_t *handle, struct inode *inode,
Tao Ma0d812f72012-12-10 14:06:02 -05001396 struct ext4_xattr_info *i,
1397 struct ext4_xattr_ibody_find *is)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001398{
Mingming Cao617ba132006-10-11 01:20:53 -07001399 struct ext4_xattr_ibody_header *header;
1400 struct ext4_xattr_search *s = &is->s;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001401 int error;
1402
Mingming Cao617ba132006-10-11 01:20:53 -07001403 if (EXT4_I(inode)->i_extra_isize == 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001404 return -ENOSPC;
Andreas Dilgere50e5122017-06-21 21:10:32 -04001405 error = ext4_xattr_set_entry(i, s, handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001406 if (error)
1407 return error;
Mingming Cao617ba132006-10-11 01:20:53 -07001408 header = IHDR(inode, ext4_raw_inode(&is->iloc));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001409 if (!IS_LAST_ENTRY(s->first)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001410 header->h_magic = cpu_to_le32(EXT4_XATTR_MAGIC);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001411 ext4_set_inode_state(inode, EXT4_STATE_XATTR);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001412 } else {
1413 header->h_magic = cpu_to_le32(0);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001414 ext4_clear_inode_state(inode, EXT4_STATE_XATTR);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001415 }
1416 return 0;
1417}
1418
Jan Kara3fd16462016-02-22 22:43:04 -05001419static int ext4_xattr_value_same(struct ext4_xattr_search *s,
1420 struct ext4_xattr_info *i)
1421{
1422 void *value;
1423
1424 if (le32_to_cpu(s->here->e_value_size) != i->value_len)
1425 return 0;
1426 value = ((void *)s->base) + le16_to_cpu(s->here->e_value_offs);
1427 return !memcmp(value, i->value, i->value_len);
1428}
1429
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001430/*
Mingming Cao617ba132006-10-11 01:20:53 -07001431 * ext4_xattr_set_handle()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001432 *
Wang Sheng-Hui6e9510b2011-01-10 12:10:30 -05001433 * Create, replace or remove an extended attribute for this inode. Value
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001434 * is NULL to remove an existing extended attribute, and non-NULL to
1435 * either replace an existing extended attribute, or create a new extended
1436 * attribute. The flags XATTR_REPLACE and XATTR_CREATE
1437 * specify that an extended attribute must exist and must not exist
1438 * previous to the call, respectively.
1439 *
1440 * Returns 0, or a negative error number on failure.
1441 */
1442int
Mingming Cao617ba132006-10-11 01:20:53 -07001443ext4_xattr_set_handle(handle_t *handle, struct inode *inode, int name_index,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001444 const char *name, const void *value, size_t value_len,
1445 int flags)
1446{
Mingming Cao617ba132006-10-11 01:20:53 -07001447 struct ext4_xattr_info i = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001448 .name_index = name_index,
1449 .name = name,
1450 .value = value,
1451 .value_len = value_len,
Andreas Dilgere50e5122017-06-21 21:10:32 -04001452 .in_inode = 0,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001453 };
Mingming Cao617ba132006-10-11 01:20:53 -07001454 struct ext4_xattr_ibody_find is = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001455 .s = { .not_found = -ENODATA, },
1456 };
Mingming Cao617ba132006-10-11 01:20:53 -07001457 struct ext4_xattr_block_find bs = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001458 .s = { .not_found = -ENODATA, },
1459 };
Theodore Ts'oc755e252017-01-11 21:50:46 -05001460 int no_expand;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001461 int error;
1462
1463 if (!name)
1464 return -EINVAL;
1465 if (strlen(name) > 255)
1466 return -ERANGE;
Tahsin Erdoganb8cb5a52017-05-24 18:24:07 -04001467
Theodore Ts'oc755e252017-01-11 21:50:46 -05001468 ext4_write_lock_xattr(inode, &no_expand);
Kalpak Shah4d20c682008-10-08 23:21:54 -04001469
Eric Sandeen66543612011-10-26 03:32:07 -04001470 error = ext4_reserve_inode_write(handle, inode, &is.iloc);
Eric Sandeen86ebfd02009-11-15 15:30:52 -05001471 if (error)
1472 goto cleanup;
1473
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001474 if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001475 struct ext4_inode *raw_inode = ext4_raw_inode(&is.iloc);
1476 memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size);
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001477 ext4_clear_inode_state(inode, EXT4_STATE_NEW);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001478 }
1479
Mingming Cao617ba132006-10-11 01:20:53 -07001480 error = ext4_xattr_ibody_find(inode, &i, &is);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001481 if (error)
1482 goto cleanup;
1483 if (is.s.not_found)
Mingming Cao617ba132006-10-11 01:20:53 -07001484 error = ext4_xattr_block_find(inode, &i, &bs);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001485 if (error)
1486 goto cleanup;
1487 if (is.s.not_found && bs.s.not_found) {
1488 error = -ENODATA;
1489 if (flags & XATTR_REPLACE)
1490 goto cleanup;
1491 error = 0;
1492 if (!value)
1493 goto cleanup;
1494 } else {
1495 error = -EEXIST;
1496 if (flags & XATTR_CREATE)
1497 goto cleanup;
1498 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001499 if (!value) {
1500 if (!is.s.not_found)
Andreas Dilgere50e5122017-06-21 21:10:32 -04001501 error = ext4_xattr_ibody_set(handle, inode, &i, &is);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001502 else if (!bs.s.not_found)
Mingming Cao617ba132006-10-11 01:20:53 -07001503 error = ext4_xattr_block_set(handle, inode, &i, &bs);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001504 } else {
Jan Kara3fd16462016-02-22 22:43:04 -05001505 error = 0;
1506 /* Xattr value did not change? Save us some work and bail out */
1507 if (!is.s.not_found && ext4_xattr_value_same(&is.s, &i))
1508 goto cleanup;
1509 if (!bs.s.not_found && ext4_xattr_value_same(&bs.s, &i))
1510 goto cleanup;
1511
Andreas Dilgere50e5122017-06-21 21:10:32 -04001512 error = ext4_xattr_ibody_set(handle, inode, &i, &is);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001513 if (!error && !bs.s.not_found) {
1514 i.value = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -07001515 error = ext4_xattr_block_set(handle, inode, &i, &bs);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001516 } else if (error == -ENOSPC) {
Tiger Yang7e01c8e2008-05-14 16:05:47 -07001517 if (EXT4_I(inode)->i_file_acl && !bs.s.base) {
1518 error = ext4_xattr_block_find(inode, &i, &bs);
1519 if (error)
1520 goto cleanup;
1521 }
Mingming Cao617ba132006-10-11 01:20:53 -07001522 error = ext4_xattr_block_set(handle, inode, &i, &bs);
Andreas Dilgere50e5122017-06-21 21:10:32 -04001523 if (ext4_has_feature_ea_inode(inode->i_sb) &&
1524 error == -ENOSPC) {
1525 /* xattr not fit to block, store at external
1526 * inode */
1527 i.in_inode = 1;
1528 error = ext4_xattr_ibody_set(handle, inode,
1529 &i, &is);
1530 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001531 if (error)
1532 goto cleanup;
1533 if (!is.s.not_found) {
1534 i.value = NULL;
Andreas Dilgere50e5122017-06-21 21:10:32 -04001535 error = ext4_xattr_ibody_set(handle, inode, &i,
1536 &is);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001537 }
1538 }
1539 }
1540 if (!error) {
Mingming Cao617ba132006-10-11 01:20:53 -07001541 ext4_xattr_update_super_block(handle, inode->i_sb);
Deepa Dinamanieeca7ea2016-11-14 21:40:10 -05001542 inode->i_ctime = current_time(inode);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001543 if (!value)
Theodore Ts'oc755e252017-01-11 21:50:46 -05001544 no_expand = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07001545 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001546 /*
Mingming Cao617ba132006-10-11 01:20:53 -07001547 * The bh is consumed by ext4_mark_iloc_dirty, even with
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001548 * error != 0.
1549 */
1550 is.iloc.bh = NULL;
1551 if (IS_SYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05001552 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001553 }
1554
1555cleanup:
1556 brelse(is.iloc.bh);
1557 brelse(bs.bh);
Theodore Ts'oc755e252017-01-11 21:50:46 -05001558 ext4_write_unlock_xattr(inode, &no_expand);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001559 return error;
1560}
1561
1562/*
Mingming Cao617ba132006-10-11 01:20:53 -07001563 * ext4_xattr_set()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001564 *
Mingming Cao617ba132006-10-11 01:20:53 -07001565 * Like ext4_xattr_set_handle, but start from an inode. This extended
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001566 * attribute modification is a filesystem transaction by itself.
1567 *
1568 * Returns 0, or a negative error number on failure.
1569 */
1570int
Mingming Cao617ba132006-10-11 01:20:53 -07001571ext4_xattr_set(struct inode *inode, int name_index, const char *name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001572 const void *value, size_t value_len, int flags)
1573{
1574 handle_t *handle;
Andreas Dilgere50e5122017-06-21 21:10:32 -04001575 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001576 int error, retries = 0;
Theodore Ts'o95eaefb2013-02-09 15:23:03 -05001577 int credits = ext4_jbd2_credits_xattr(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001578
Tahsin Erdoganb8cb5a52017-05-24 18:24:07 -04001579 error = dquot_initialize(inode);
1580 if (error)
1581 return error;
Andreas Dilgere50e5122017-06-21 21:10:32 -04001582
1583 if ((value_len >= EXT4_XATTR_MIN_LARGE_EA_SIZE(sb->s_blocksize)) &&
1584 ext4_has_feature_ea_inode(sb)) {
1585 int nrblocks = (value_len + sb->s_blocksize - 1) >>
1586 sb->s_blocksize_bits;
1587
1588 /* For new inode */
1589 credits += EXT4_SINGLEDATA_TRANS_BLOCKS(sb) + 3;
1590
1591 /* For data blocks of EA inode */
1592 credits += ext4_meta_trans_blocks(inode, nrblocks, 0);
1593 }
1594
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001595retry:
Theodore Ts'o9924a922013-02-08 21:59:22 -05001596 handle = ext4_journal_start(inode, EXT4_HT_XATTR, credits);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001597 if (IS_ERR(handle)) {
1598 error = PTR_ERR(handle);
1599 } else {
1600 int error2;
1601
Mingming Cao617ba132006-10-11 01:20:53 -07001602 error = ext4_xattr_set_handle(handle, inode, name_index, name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001603 value, value_len, flags);
Mingming Cao617ba132006-10-11 01:20:53 -07001604 error2 = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001605 if (error == -ENOSPC &&
Andreas Dilgere50e5122017-06-21 21:10:32 -04001606 ext4_should_retry_alloc(sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001607 goto retry;
1608 if (error == 0)
1609 error = error2;
1610 }
1611
1612 return error;
1613}
1614
1615/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001616 * Shift the EA entries in the inode to create space for the increased
1617 * i_extra_isize.
1618 */
1619static void ext4_xattr_shift_entries(struct ext4_xattr_entry *entry,
1620 int value_offs_shift, void *to,
Jan Kara94405712016-08-29 15:41:11 -04001621 void *from, size_t n)
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001622{
1623 struct ext4_xattr_entry *last = entry;
1624 int new_offs;
1625
Jan Kara94405712016-08-29 15:41:11 -04001626 /* We always shift xattr headers further thus offsets get lower */
1627 BUG_ON(value_offs_shift > 0);
1628
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001629 /* Adjust the value offsets of the entries */
1630 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
Andreas Dilgere50e5122017-06-21 21:10:32 -04001631 if (!last->e_value_inum && last->e_value_size) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001632 new_offs = le16_to_cpu(last->e_value_offs) +
1633 value_offs_shift;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001634 last->e_value_offs = cpu_to_le16(new_offs);
1635 }
1636 }
1637 /* Shift the entries by n bytes */
1638 memmove(to, from, n);
1639}
1640
1641/*
Jan Kara3f2571c2016-08-29 15:42:11 -04001642 * Move xattr pointed to by 'entry' from inode into external xattr block
1643 */
1644static int ext4_xattr_move_to_block(handle_t *handle, struct inode *inode,
1645 struct ext4_inode *raw_inode,
1646 struct ext4_xattr_entry *entry)
1647{
1648 struct ext4_xattr_ibody_find *is = NULL;
1649 struct ext4_xattr_block_find *bs = NULL;
1650 char *buffer = NULL, *b_entry_name = NULL;
1651 size_t value_offs, value_size;
1652 struct ext4_xattr_info i = {
1653 .value = NULL,
1654 .value_len = 0,
1655 .name_index = entry->e_name_index,
1656 };
1657 struct ext4_xattr_ibody_header *header = IHDR(inode, raw_inode);
1658 int error;
1659
1660 value_offs = le16_to_cpu(entry->e_value_offs);
1661 value_size = le32_to_cpu(entry->e_value_size);
1662
1663 is = kzalloc(sizeof(struct ext4_xattr_ibody_find), GFP_NOFS);
1664 bs = kzalloc(sizeof(struct ext4_xattr_block_find), GFP_NOFS);
1665 buffer = kmalloc(value_size, GFP_NOFS);
1666 b_entry_name = kmalloc(entry->e_name_len + 1, GFP_NOFS);
1667 if (!is || !bs || !buffer || !b_entry_name) {
1668 error = -ENOMEM;
1669 goto out;
1670 }
1671
1672 is->s.not_found = -ENODATA;
1673 bs->s.not_found = -ENODATA;
1674 is->iloc.bh = NULL;
1675 bs->bh = NULL;
1676
1677 /* Save the entry name and the entry value */
1678 memcpy(buffer, (void *)IFIRST(header) + value_offs, value_size);
1679 memcpy(b_entry_name, entry->e_name, entry->e_name_len);
1680 b_entry_name[entry->e_name_len] = '\0';
1681 i.name = b_entry_name;
1682
1683 error = ext4_get_inode_loc(inode, &is->iloc);
1684 if (error)
1685 goto out;
1686
1687 error = ext4_xattr_ibody_find(inode, &i, is);
1688 if (error)
1689 goto out;
1690
1691 /* Remove the chosen entry from the inode */
Andreas Dilgere50e5122017-06-21 21:10:32 -04001692 error = ext4_xattr_ibody_set(handle, inode, &i, is);
Jan Kara3f2571c2016-08-29 15:42:11 -04001693 if (error)
1694 goto out;
1695
1696 i.name = b_entry_name;
1697 i.value = buffer;
1698 i.value_len = value_size;
1699 error = ext4_xattr_block_find(inode, &i, bs);
1700 if (error)
1701 goto out;
1702
1703 /* Add entry which was removed from the inode into the block */
1704 error = ext4_xattr_block_set(handle, inode, &i, bs);
1705 if (error)
1706 goto out;
1707 error = 0;
1708out:
1709 kfree(b_entry_name);
1710 kfree(buffer);
1711 if (is)
1712 brelse(is->iloc.bh);
1713 kfree(is);
1714 kfree(bs);
1715
1716 return error;
1717}
1718
Jan Karadfa20642016-08-29 15:44:11 -04001719static int ext4_xattr_make_inode_space(handle_t *handle, struct inode *inode,
1720 struct ext4_inode *raw_inode,
1721 int isize_diff, size_t ifree,
1722 size_t bfree, int *total_ino)
1723{
1724 struct ext4_xattr_ibody_header *header = IHDR(inode, raw_inode);
1725 struct ext4_xattr_entry *small_entry;
1726 struct ext4_xattr_entry *entry;
1727 struct ext4_xattr_entry *last;
1728 unsigned int entry_size; /* EA entry size */
1729 unsigned int total_size; /* EA entry size + value size */
1730 unsigned int min_total_size;
1731 int error;
1732
1733 while (isize_diff > ifree) {
1734 entry = NULL;
1735 small_entry = NULL;
1736 min_total_size = ~0U;
1737 last = IFIRST(header);
1738 /* Find the entry best suited to be pushed into EA block */
1739 for (; !IS_LAST_ENTRY(last); last = EXT4_XATTR_NEXT(last)) {
1740 total_size =
1741 EXT4_XATTR_SIZE(le32_to_cpu(last->e_value_size)) +
1742 EXT4_XATTR_LEN(last->e_name_len);
1743 if (total_size <= bfree &&
1744 total_size < min_total_size) {
1745 if (total_size + ifree < isize_diff) {
1746 small_entry = last;
1747 } else {
1748 entry = last;
1749 min_total_size = total_size;
1750 }
1751 }
1752 }
1753
1754 if (entry == NULL) {
1755 if (small_entry == NULL)
1756 return -ENOSPC;
1757 entry = small_entry;
1758 }
1759
1760 entry_size = EXT4_XATTR_LEN(entry->e_name_len);
1761 total_size = entry_size +
1762 EXT4_XATTR_SIZE(le32_to_cpu(entry->e_value_size));
1763 error = ext4_xattr_move_to_block(handle, inode, raw_inode,
1764 entry);
1765 if (error)
1766 return error;
1767
1768 *total_ino -= entry_size;
1769 ifree += total_size;
1770 bfree -= total_size;
1771 }
1772
1773 return 0;
1774}
1775
Jan Kara3f2571c2016-08-29 15:42:11 -04001776/*
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001777 * Expand an inode by new_extra_isize bytes when EAs are present.
1778 * Returns 0 on success or negative error number on failure.
1779 */
1780int ext4_expand_extra_isize_ea(struct inode *inode, int new_extra_isize,
1781 struct ext4_inode *raw_inode, handle_t *handle)
1782{
1783 struct ext4_xattr_ibody_header *header;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001784 struct buffer_head *bh = NULL;
Jan Karae3014d12016-08-29 15:38:11 -04001785 size_t min_offs;
1786 size_t ifree, bfree;
Theodore Ts'o7b1b2c12014-02-19 20:15:21 -05001787 int total_ino;
Jan Kara6e0cd082016-08-29 15:43:11 -04001788 void *base, *end;
Jan Karad0141192016-08-11 11:50:30 -04001789 int error = 0, tried_min_extra_isize = 0;
Aneesh Kumar K.Vac398492007-10-16 18:38:25 -04001790 int s_min_extra_isize = le16_to_cpu(EXT4_SB(inode->i_sb)->s_es->s_min_extra_isize);
Jan Karad0141192016-08-11 11:50:30 -04001791 int isize_diff; /* How much do we need to grow i_extra_isize */
Theodore Ts'oc755e252017-01-11 21:50:46 -05001792 int no_expand;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001793
Theodore Ts'oc755e252017-01-11 21:50:46 -05001794 if (ext4_write_trylock_xattr(inode, &no_expand) == 0)
1795 return 0;
1796
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001797retry:
Jan Karad0141192016-08-11 11:50:30 -04001798 isize_diff = new_extra_isize - EXT4_I(inode)->i_extra_isize;
Jan Kara2e81a4e2016-08-11 12:38:55 -04001799 if (EXT4_I(inode)->i_extra_isize >= new_extra_isize)
1800 goto out;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001801
1802 header = IHDR(inode, raw_inode);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001803
1804 /*
1805 * Check if enough free space is available in the inode to shift the
1806 * entries ahead by new_extra_isize.
1807 */
1808
Jan Kara6e0cd082016-08-29 15:43:11 -04001809 base = IFIRST(header);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001810 end = (void *)raw_inode + EXT4_SB(inode->i_sb)->s_inode_size;
1811 min_offs = end - base;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001812 total_ino = sizeof(struct ext4_xattr_ibody_header);
1813
Theodore Ts'o9e92f482016-03-22 16:13:15 -04001814 error = xattr_check_inode(inode, header, end);
1815 if (error)
1816 goto cleanup;
1817
Jan Kara6e0cd082016-08-29 15:43:11 -04001818 ifree = ext4_xattr_free_space(base, &min_offs, base, &total_ino);
Jan Karae3014d12016-08-29 15:38:11 -04001819 if (ifree >= isize_diff)
1820 goto shift;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001821
1822 /*
1823 * Enough free space isn't available in the inode, check if
1824 * EA block can hold new_extra_isize bytes.
1825 */
1826 if (EXT4_I(inode)->i_file_acl) {
1827 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
1828 error = -EIO;
1829 if (!bh)
1830 goto cleanup;
Darrick J. Wongcc8e94f2012-04-29 18:43:10 -04001831 if (ext4_xattr_check_block(inode, bh)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001832 EXT4_ERROR_INODE(inode, "bad block %llu",
1833 EXT4_I(inode)->i_file_acl);
Darrick J. Wong6a797d22015-10-17 16:16:04 -04001834 error = -EFSCORRUPTED;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001835 goto cleanup;
1836 }
1837 base = BHDR(bh);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001838 end = bh->b_data + bh->b_size;
1839 min_offs = end - base;
Jan Kara6e0cd082016-08-29 15:43:11 -04001840 bfree = ext4_xattr_free_space(BFIRST(bh), &min_offs, base,
1841 NULL);
Jan Karae3014d12016-08-29 15:38:11 -04001842 if (bfree + ifree < isize_diff) {
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001843 if (!tried_min_extra_isize && s_min_extra_isize) {
1844 tried_min_extra_isize++;
1845 new_extra_isize = s_min_extra_isize;
1846 brelse(bh);
1847 goto retry;
1848 }
Jan Karadfa20642016-08-29 15:44:11 -04001849 error = -ENOSPC;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001850 goto cleanup;
1851 }
1852 } else {
Jan Karae3014d12016-08-29 15:38:11 -04001853 bfree = inode->i_sb->s_blocksize;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001854 }
1855
Jan Karadfa20642016-08-29 15:44:11 -04001856 error = ext4_xattr_make_inode_space(handle, inode, raw_inode,
1857 isize_diff, ifree, bfree,
1858 &total_ino);
1859 if (error) {
1860 if (error == -ENOSPC && !tried_min_extra_isize &&
1861 s_min_extra_isize) {
1862 tried_min_extra_isize++;
1863 new_extra_isize = s_min_extra_isize;
1864 brelse(bh);
1865 goto retry;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001866 }
Jan Karadfa20642016-08-29 15:44:11 -04001867 goto cleanup;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001868 }
Jan Karae3014d12016-08-29 15:38:11 -04001869shift:
1870 /* Adjust the offsets and shift the remaining entries ahead */
Jan Kara6e0cd082016-08-29 15:43:11 -04001871 ext4_xattr_shift_entries(IFIRST(header), EXT4_I(inode)->i_extra_isize
Jan Karae3014d12016-08-29 15:38:11 -04001872 - new_extra_isize, (void *)raw_inode +
1873 EXT4_GOOD_OLD_INODE_SIZE + new_extra_isize,
Jan Kara94405712016-08-29 15:41:11 -04001874 (void *)header, total_ino);
Jan Karae3014d12016-08-29 15:38:11 -04001875 EXT4_I(inode)->i_extra_isize = new_extra_isize;
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001876 brelse(bh);
Jan Kara2e81a4e2016-08-11 12:38:55 -04001877out:
Theodore Ts'oc755e252017-01-11 21:50:46 -05001878 ext4_write_unlock_xattr(inode, &no_expand);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001879 return 0;
1880
1881cleanup:
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001882 brelse(bh);
Jan Kara2e81a4e2016-08-11 12:38:55 -04001883 /*
Theodore Ts'oc755e252017-01-11 21:50:46 -05001884 * Inode size expansion failed; don't try again
Jan Kara2e81a4e2016-08-11 12:38:55 -04001885 */
Theodore Ts'oc755e252017-01-11 21:50:46 -05001886 no_expand = 1;
1887 ext4_write_unlock_xattr(inode, &no_expand);
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001888 return error;
1889}
1890
1891
Andreas Dilgere50e5122017-06-21 21:10:32 -04001892#define EIA_INCR 16 /* must be 2^n */
1893#define EIA_MASK (EIA_INCR - 1)
1894/* Add the large xattr @ino into @lea_ino_array for later deletion.
1895 * If @lea_ino_array is new or full it will be grown and the old
1896 * contents copied over.
1897 */
1898static int
1899ext4_expand_ino_array(struct ext4_xattr_ino_array **lea_ino_array, __u32 ino)
1900{
1901 if (*lea_ino_array == NULL) {
1902 /*
1903 * Start with 15 inodes, so it fits into a power-of-two size.
1904 * If *lea_ino_array is NULL, this is essentially offsetof()
1905 */
1906 (*lea_ino_array) =
1907 kmalloc(offsetof(struct ext4_xattr_ino_array,
1908 xia_inodes[EIA_MASK]),
1909 GFP_NOFS);
1910 if (*lea_ino_array == NULL)
1911 return -ENOMEM;
1912 (*lea_ino_array)->xia_count = 0;
1913 } else if (((*lea_ino_array)->xia_count & EIA_MASK) == EIA_MASK) {
1914 /* expand the array once all 15 + n * 16 slots are full */
1915 struct ext4_xattr_ino_array *new_array = NULL;
1916 int count = (*lea_ino_array)->xia_count;
1917
1918 /* if new_array is NULL, this is essentially offsetof() */
1919 new_array = kmalloc(
1920 offsetof(struct ext4_xattr_ino_array,
1921 xia_inodes[count + EIA_INCR]),
1922 GFP_NOFS);
1923 if (new_array == NULL)
1924 return -ENOMEM;
1925 memcpy(new_array, *lea_ino_array,
1926 offsetof(struct ext4_xattr_ino_array,
1927 xia_inodes[count]));
1928 kfree(*lea_ino_array);
1929 *lea_ino_array = new_array;
1930 }
1931 (*lea_ino_array)->xia_inodes[(*lea_ino_array)->xia_count++] = ino;
1932 return 0;
1933}
1934
1935/**
1936 * Add xattr inode to orphan list
1937 */
1938static int
1939ext4_xattr_inode_orphan_add(handle_t *handle, struct inode *inode,
1940 int credits, struct ext4_xattr_ino_array *lea_ino_array)
1941{
1942 struct inode *ea_inode = NULL;
1943 int idx = 0, error = 0;
1944
1945 if (lea_ino_array == NULL)
1946 return 0;
1947
1948 for (; idx < lea_ino_array->xia_count; ++idx) {
1949 if (!ext4_handle_has_enough_credits(handle, credits)) {
1950 error = ext4_journal_extend(handle, credits);
1951 if (error > 0)
1952 error = ext4_journal_restart(handle, credits);
1953
1954 if (error != 0) {
1955 ext4_warning(inode->i_sb,
1956 "couldn't extend journal "
1957 "(err %d)", error);
1958 return error;
1959 }
1960 }
1961 ea_inode = ext4_xattr_inode_iget(inode,
1962 lea_ino_array->xia_inodes[idx], &error);
1963 if (error)
1964 continue;
Tahsin Erdogan0de59832017-06-21 21:19:16 -04001965 inode_lock(ea_inode);
Andreas Dilgere50e5122017-06-21 21:10:32 -04001966 ext4_orphan_add(handle, ea_inode);
Tahsin Erdogan0de59832017-06-21 21:19:16 -04001967 inode_unlock(ea_inode);
Andreas Dilgere50e5122017-06-21 21:10:32 -04001968 /* the inode's i_count will be released by caller */
1969 }
1970
1971 return 0;
1972}
Kalpak Shah6dd4ee72007-07-18 09:19:57 -04001973
1974/*
Mingming Cao617ba132006-10-11 01:20:53 -07001975 * ext4_xattr_delete_inode()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001976 *
Andreas Dilgere50e5122017-06-21 21:10:32 -04001977 * Free extended attribute resources associated with this inode. Traverse
1978 * all entries and unlink any xattr inodes associated with this inode. This
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001979 * is called immediately before an inode is freed. We have exclusive
Andreas Dilgere50e5122017-06-21 21:10:32 -04001980 * access to the inode. If an orphan inode is deleted it will also delete any
1981 * xattr block and all xattr inodes. They are checked by ext4_xattr_inode_iget()
1982 * to ensure they belong to the parent inode and were not deleted already.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001983 */
Andreas Dilgere50e5122017-06-21 21:10:32 -04001984int
1985ext4_xattr_delete_inode(handle_t *handle, struct inode *inode,
1986 struct ext4_xattr_ino_array **lea_ino_array)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001987{
1988 struct buffer_head *bh = NULL;
Andreas Dilgere50e5122017-06-21 21:10:32 -04001989 struct ext4_xattr_ibody_header *header;
1990 struct ext4_inode *raw_inode;
1991 struct ext4_iloc iloc;
1992 struct ext4_xattr_entry *entry;
1993 int credits = 3, error = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001994
Andreas Dilgere50e5122017-06-21 21:10:32 -04001995 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
1996 goto delete_external_ea;
1997
1998 error = ext4_get_inode_loc(inode, &iloc);
1999 if (error)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002000 goto cleanup;
Andreas Dilgere50e5122017-06-21 21:10:32 -04002001 raw_inode = ext4_raw_inode(&iloc);
2002 header = IHDR(inode, raw_inode);
2003 for (entry = IFIRST(header); !IS_LAST_ENTRY(entry);
2004 entry = EXT4_XATTR_NEXT(entry)) {
2005 if (!entry->e_value_inum)
2006 continue;
2007 if (ext4_expand_ino_array(lea_ino_array,
2008 entry->e_value_inum) != 0) {
2009 brelse(iloc.bh);
2010 goto cleanup;
2011 }
2012 entry->e_value_inum = 0;
2013 }
2014 brelse(iloc.bh);
2015
2016delete_external_ea:
2017 if (!EXT4_I(inode)->i_file_acl) {
2018 /* add xattr inode to orphan list */
2019 ext4_xattr_inode_orphan_add(handle, inode, credits,
2020 *lea_ino_array);
2021 goto cleanup;
2022 }
Mingming Cao617ba132006-10-11 01:20:53 -07002023 bh = sb_bread(inode->i_sb, EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002024 if (!bh) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04002025 EXT4_ERROR_INODE(inode, "block %llu read error",
2026 EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002027 goto cleanup;
2028 }
Mingming Cao617ba132006-10-11 01:20:53 -07002029 if (BHDR(bh)->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002030 BHDR(bh)->h_blocks != cpu_to_le32(1)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04002031 EXT4_ERROR_INODE(inode, "bad block %llu",
2032 EXT4_I(inode)->i_file_acl);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002033 goto cleanup;
2034 }
Andreas Dilgere50e5122017-06-21 21:10:32 -04002035
2036 for (entry = BFIRST(bh); !IS_LAST_ENTRY(entry);
2037 entry = EXT4_XATTR_NEXT(entry)) {
2038 if (!entry->e_value_inum)
2039 continue;
2040 if (ext4_expand_ino_array(lea_ino_array,
2041 entry->e_value_inum) != 0)
2042 goto cleanup;
2043 entry->e_value_inum = 0;
2044 }
2045
2046 /* add xattr inode to orphan list */
2047 error = ext4_xattr_inode_orphan_add(handle, inode, credits,
2048 *lea_ino_array);
2049 if (error != 0)
2050 goto cleanup;
2051
2052 if (!IS_NOQUOTA(inode))
2053 credits += 2 * EXT4_QUOTA_DEL_BLOCKS(inode->i_sb);
2054
2055 if (!ext4_handle_has_enough_credits(handle, credits)) {
2056 error = ext4_journal_extend(handle, credits);
2057 if (error > 0)
2058 error = ext4_journal_restart(handle, credits);
2059 if (error != 0) {
2060 ext4_warning(inode->i_sb,
2061 "couldn't extend journal (err %d)", error);
2062 goto cleanup;
2063 }
2064 }
2065
Mingming Cao617ba132006-10-11 01:20:53 -07002066 ext4_xattr_release_block(handle, inode, bh);
2067 EXT4_I(inode)->i_file_acl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002068
2069cleanup:
2070 brelse(bh);
Andreas Dilgere50e5122017-06-21 21:10:32 -04002071
2072 return error;
2073}
2074
2075void
2076ext4_xattr_inode_array_free(struct inode *inode,
2077 struct ext4_xattr_ino_array *lea_ino_array)
2078{
2079 struct inode *ea_inode = NULL;
2080 int idx = 0;
2081 int err;
2082
2083 if (lea_ino_array == NULL)
2084 return;
2085
2086 for (; idx < lea_ino_array->xia_count; ++idx) {
2087 ea_inode = ext4_xattr_inode_iget(inode,
2088 lea_ino_array->xia_inodes[idx], &err);
2089 if (err)
2090 continue;
2091 /* for inode's i_count get from ext4_xattr_delete_inode */
2092 if (!list_empty(&EXT4_I(ea_inode)->i_orphan))
2093 iput(ea_inode);
2094 clear_nlink(ea_inode);
2095 iput(ea_inode);
2096 }
2097 kfree(lea_ino_array);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002098}
2099
2100/*
Mingming Cao617ba132006-10-11 01:20:53 -07002101 * ext4_xattr_cache_insert()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002102 *
2103 * Create a new entry in the extended attribute cache, and insert
2104 * it unless such an entry is already in the cache.
2105 *
2106 * Returns 0, or a negative error number on failure.
2107 */
2108static void
Jan Kara7a2508e2016-02-22 22:35:22 -05002109ext4_xattr_cache_insert(struct mb_cache *ext4_mb_cache, struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002110{
Andreas Gruenbacher6048c642016-02-22 22:44:04 -05002111 struct ext4_xattr_header *header = BHDR(bh);
2112 __u32 hash = le32_to_cpu(header->h_hash);
2113 int reusable = le32_to_cpu(header->h_refcount) <
2114 EXT4_XATTR_REFCOUNT_MAX;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002115 int error;
2116
Jan Kara7a2508e2016-02-22 22:35:22 -05002117 error = mb_cache_entry_create(ext4_mb_cache, GFP_NOFS, hash,
Andreas Gruenbacher6048c642016-02-22 22:44:04 -05002118 bh->b_blocknr, reusable);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002119 if (error) {
Jan Kara82939d72016-02-22 11:50:13 -05002120 if (error == -EBUSY)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002121 ea_bdebug(bh, "already in cache");
Jan Kara82939d72016-02-22 11:50:13 -05002122 } else
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002123 ea_bdebug(bh, "inserting [%x]", (int)hash);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002124}
2125
2126/*
Mingming Cao617ba132006-10-11 01:20:53 -07002127 * ext4_xattr_cmp()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002128 *
2129 * Compare two extended attribute blocks for equality.
2130 *
2131 * Returns 0 if the blocks are equal, 1 if they differ, and
2132 * a negative error number on errors.
2133 */
2134static int
Mingming Cao617ba132006-10-11 01:20:53 -07002135ext4_xattr_cmp(struct ext4_xattr_header *header1,
2136 struct ext4_xattr_header *header2)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002137{
Mingming Cao617ba132006-10-11 01:20:53 -07002138 struct ext4_xattr_entry *entry1, *entry2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002139
2140 entry1 = ENTRY(header1+1);
2141 entry2 = ENTRY(header2+1);
2142 while (!IS_LAST_ENTRY(entry1)) {
2143 if (IS_LAST_ENTRY(entry2))
2144 return 1;
2145 if (entry1->e_hash != entry2->e_hash ||
2146 entry1->e_name_index != entry2->e_name_index ||
2147 entry1->e_name_len != entry2->e_name_len ||
2148 entry1->e_value_size != entry2->e_value_size ||
Andreas Dilgere50e5122017-06-21 21:10:32 -04002149 entry1->e_value_inum != entry2->e_value_inum ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002150 memcmp(entry1->e_name, entry2->e_name, entry1->e_name_len))
2151 return 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002152 if (memcmp((char *)header1 + le16_to_cpu(entry1->e_value_offs),
2153 (char *)header2 + le16_to_cpu(entry2->e_value_offs),
2154 le32_to_cpu(entry1->e_value_size)))
2155 return 1;
2156
Mingming Cao617ba132006-10-11 01:20:53 -07002157 entry1 = EXT4_XATTR_NEXT(entry1);
2158 entry2 = EXT4_XATTR_NEXT(entry2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002159 }
2160 if (!IS_LAST_ENTRY(entry2))
2161 return 1;
2162 return 0;
2163}
2164
2165/*
Mingming Cao617ba132006-10-11 01:20:53 -07002166 * ext4_xattr_cache_find()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002167 *
2168 * Find an identical extended attribute block.
2169 *
2170 * Returns a pointer to the block found, or NULL if such a block was
2171 * not found or an error occurred.
2172 */
2173static struct buffer_head *
Mingming Cao617ba132006-10-11 01:20:53 -07002174ext4_xattr_cache_find(struct inode *inode, struct ext4_xattr_header *header,
Jan Kara7a2508e2016-02-22 22:35:22 -05002175 struct mb_cache_entry **pce)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002176{
2177 __u32 hash = le32_to_cpu(header->h_hash);
Jan Kara7a2508e2016-02-22 22:35:22 -05002178 struct mb_cache_entry *ce;
2179 struct mb_cache *ext4_mb_cache = EXT4_GET_MB_CACHE(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002180
2181 if (!header->h_hash)
2182 return NULL; /* never share */
2183 ea_idebug(inode, "looking for cached blocks [%x]", (int)hash);
Jan Kara7a2508e2016-02-22 22:35:22 -05002184 ce = mb_cache_entry_find_first(ext4_mb_cache, hash);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002185 while (ce) {
2186 struct buffer_head *bh;
2187
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002188 bh = sb_bread(inode->i_sb, ce->e_block);
2189 if (!bh) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04002190 EXT4_ERROR_INODE(inode, "block %lu read error",
2191 (unsigned long) ce->e_block);
Mingming Cao617ba132006-10-11 01:20:53 -07002192 } else if (ext4_xattr_cmp(header, BHDR(bh)) == 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002193 *pce = ce;
2194 return bh;
2195 }
2196 brelse(bh);
Jan Kara7a2508e2016-02-22 22:35:22 -05002197 ce = mb_cache_entry_find_next(ext4_mb_cache, ce);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002198 }
2199 return NULL;
2200}
2201
2202#define NAME_HASH_SHIFT 5
2203#define VALUE_HASH_SHIFT 16
2204
2205/*
Mingming Cao617ba132006-10-11 01:20:53 -07002206 * ext4_xattr_hash_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002207 *
2208 * Compute the hash of an extended attribute.
2209 */
Mingming Cao617ba132006-10-11 01:20:53 -07002210static inline void ext4_xattr_hash_entry(struct ext4_xattr_header *header,
2211 struct ext4_xattr_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002212{
2213 __u32 hash = 0;
2214 char *name = entry->e_name;
2215 int n;
2216
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002217 for (n = 0; n < entry->e_name_len; n++) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002218 hash = (hash << NAME_HASH_SHIFT) ^
2219 (hash >> (8*sizeof(hash) - NAME_HASH_SHIFT)) ^
2220 *name++;
2221 }
2222
Andreas Dilgere50e5122017-06-21 21:10:32 -04002223 if (!entry->e_value_inum && entry->e_value_size) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002224 __le32 *value = (__le32 *)((char *)header +
2225 le16_to_cpu(entry->e_value_offs));
2226 for (n = (le32_to_cpu(entry->e_value_size) +
Mingming Cao617ba132006-10-11 01:20:53 -07002227 EXT4_XATTR_ROUND) >> EXT4_XATTR_PAD_BITS; n; n--) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002228 hash = (hash << VALUE_HASH_SHIFT) ^
2229 (hash >> (8*sizeof(hash) - VALUE_HASH_SHIFT)) ^
2230 le32_to_cpu(*value++);
2231 }
2232 }
2233 entry->e_hash = cpu_to_le32(hash);
2234}
2235
2236#undef NAME_HASH_SHIFT
2237#undef VALUE_HASH_SHIFT
2238
2239#define BLOCK_HASH_SHIFT 16
2240
2241/*
Mingming Cao617ba132006-10-11 01:20:53 -07002242 * ext4_xattr_rehash()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002243 *
2244 * Re-compute the extended attribute hash value after an entry has changed.
2245 */
Mingming Cao617ba132006-10-11 01:20:53 -07002246static void ext4_xattr_rehash(struct ext4_xattr_header *header,
2247 struct ext4_xattr_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002248{
Mingming Cao617ba132006-10-11 01:20:53 -07002249 struct ext4_xattr_entry *here;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002250 __u32 hash = 0;
2251
Mingming Cao617ba132006-10-11 01:20:53 -07002252 ext4_xattr_hash_entry(header, entry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002253 here = ENTRY(header+1);
2254 while (!IS_LAST_ENTRY(here)) {
2255 if (!here->e_hash) {
2256 /* Block is not shared if an entry's hash value == 0 */
2257 hash = 0;
2258 break;
2259 }
2260 hash = (hash << BLOCK_HASH_SHIFT) ^
2261 (hash >> (8*sizeof(hash) - BLOCK_HASH_SHIFT)) ^
2262 le32_to_cpu(here->e_hash);
Mingming Cao617ba132006-10-11 01:20:53 -07002263 here = EXT4_XATTR_NEXT(here);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002264 }
2265 header->h_hash = cpu_to_le32(hash);
2266}
2267
2268#undef BLOCK_HASH_SHIFT
2269
T Makphaibulchoke9c191f72014-03-18 19:24:49 -04002270#define HASH_BUCKET_BITS 10
2271
Jan Kara7a2508e2016-02-22 22:35:22 -05002272struct mb_cache *
Jan Kara82939d72016-02-22 11:50:13 -05002273ext4_xattr_create_cache(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002274{
Jan Kara7a2508e2016-02-22 22:35:22 -05002275 return mb_cache_create(HASH_BUCKET_BITS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002276}
2277
Jan Kara7a2508e2016-02-22 22:35:22 -05002278void ext4_xattr_destroy_cache(struct mb_cache *cache)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002279{
T Makphaibulchoke9c191f72014-03-18 19:24:49 -04002280 if (cache)
Jan Kara7a2508e2016-02-22 22:35:22 -05002281 mb_cache_destroy(cache);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002282}
T Makphaibulchoke9c191f72014-03-18 19:24:49 -04002283