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