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