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