David Sterba | c1d7c51 | 2018-04-03 19:23:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2014 Filipe David Borba Manana <fdmanana@gmail.com> |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <linux/hashtable.h> |
David Sterba | 22b46bd | 2024-01-27 00:53:06 +0100 | [diff] [blame] | 7 | #include <linux/xattr.h> |
Josef Bacik | 9b569ea | 2022-10-19 10:50:49 -0400 | [diff] [blame] | 8 | #include "messages.h" |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 9 | #include "props.h" |
| 10 | #include "btrfs_inode.h" |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 11 | #include "transaction.h" |
Nikolay Borisov | 9678c54 | 2018-01-08 11:45:05 +0200 | [diff] [blame] | 12 | #include "ctree.h" |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 13 | #include "xattr.h" |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 14 | #include "compression.h" |
Josef Bacik | f1e5c61 | 2022-09-14 11:06:35 -0400 | [diff] [blame] | 15 | #include "space-info.h" |
Josef Bacik | c7f13d4 | 2022-10-19 10:50:47 -0400 | [diff] [blame] | 16 | #include "fs.h" |
Josef Bacik | 07e81dc | 2022-10-19 10:51:00 -0400 | [diff] [blame] | 17 | #include "accessors.h" |
Josef Bacik | 7f0add2 | 2022-10-26 15:08:40 -0400 | [diff] [blame] | 18 | #include "super.h" |
Josef Bacik | 1b9e6a1 | 2023-08-25 16:19:22 -0400 | [diff] [blame] | 19 | #include "dir-item.h" |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 20 | |
| 21 | #define BTRFS_PROP_HANDLERS_HT_BITS 8 |
| 22 | static DEFINE_HASHTABLE(prop_handlers_ht, BTRFS_PROP_HANDLERS_HT_BITS); |
| 23 | |
| 24 | struct prop_handler { |
| 25 | struct hlist_node node; |
| 26 | const char *xattr_name; |
Chung-Chiang Cheng | 0e852ab | 2022-04-15 16:04:06 +0800 | [diff] [blame] | 27 | int (*validate)(const struct btrfs_inode *inode, const char *value, |
| 28 | size_t len); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 29 | int (*apply)(struct inode *inode, const char *value, size_t len); |
David Sterba | 2917f74 | 2024-05-30 19:14:12 +0200 | [diff] [blame] | 30 | const char *(*extract)(const struct inode *inode); |
Filipe Manana | 4b73c55 | 2022-04-21 11:01:22 +0100 | [diff] [blame] | 31 | bool (*ignore)(const struct btrfs_inode *inode); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 32 | int inheritable; |
| 33 | }; |
| 34 | |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 35 | static const struct hlist_head *find_prop_handlers_by_hash(const u64 hash) |
| 36 | { |
| 37 | struct hlist_head *h; |
| 38 | |
| 39 | h = &prop_handlers_ht[hash_min(hash, BTRFS_PROP_HANDLERS_HT_BITS)]; |
| 40 | if (hlist_empty(h)) |
| 41 | return NULL; |
| 42 | |
| 43 | return h; |
| 44 | } |
| 45 | |
| 46 | static const struct prop_handler * |
| 47 | find_prop_handler(const char *name, |
| 48 | const struct hlist_head *handlers) |
| 49 | { |
| 50 | struct prop_handler *h; |
| 51 | |
| 52 | if (!handlers) { |
| 53 | u64 hash = btrfs_name_hash(name, strlen(name)); |
| 54 | |
| 55 | handlers = find_prop_handlers_by_hash(hash); |
| 56 | if (!handlers) |
| 57 | return NULL; |
| 58 | } |
| 59 | |
| 60 | hlist_for_each_entry(h, handlers, node) |
| 61 | if (!strcmp(h->xattr_name, name)) |
| 62 | return h; |
| 63 | |
| 64 | return NULL; |
| 65 | } |
| 66 | |
Chung-Chiang Cheng | 0e852ab | 2022-04-15 16:04:06 +0800 | [diff] [blame] | 67 | int btrfs_validate_prop(const struct btrfs_inode *inode, const char *name, |
| 68 | const char *value, size_t value_len) |
Anand Jain | f22125e | 2019-04-20 19:48:51 +0800 | [diff] [blame] | 69 | { |
| 70 | const struct prop_handler *handler; |
| 71 | |
| 72 | if (strlen(name) <= XATTR_BTRFS_PREFIX_LEN) |
| 73 | return -EINVAL; |
| 74 | |
| 75 | handler = find_prop_handler(name, NULL); |
| 76 | if (!handler) |
| 77 | return -EINVAL; |
| 78 | |
| 79 | if (value_len == 0) |
| 80 | return 0; |
| 81 | |
Chung-Chiang Cheng | 0e852ab | 2022-04-15 16:04:06 +0800 | [diff] [blame] | 82 | return handler->validate(inode, value, value_len); |
Anand Jain | f22125e | 2019-04-20 19:48:51 +0800 | [diff] [blame] | 83 | } |
| 84 | |
Filipe Manana | 4b73c55 | 2022-04-21 11:01:22 +0100 | [diff] [blame] | 85 | /* |
| 86 | * Check if a property should be ignored (not set) for an inode. |
| 87 | * |
| 88 | * @inode: The target inode. |
| 89 | * @name: The property's name. |
| 90 | * |
| 91 | * The caller must be sure the given property name is valid, for example by |
| 92 | * having previously called btrfs_validate_prop(). |
| 93 | * |
| 94 | * Returns: true if the property should be ignored for the given inode |
| 95 | * false if the property must not be ignored for the given inode |
| 96 | */ |
| 97 | bool btrfs_ignore_prop(const struct btrfs_inode *inode, const char *name) |
| 98 | { |
| 99 | const struct prop_handler *handler; |
| 100 | |
| 101 | handler = find_prop_handler(name, NULL); |
| 102 | ASSERT(handler != NULL); |
| 103 | |
| 104 | return handler->ignore(inode); |
| 105 | } |
| 106 | |
David Sterba | 0d9b7e1 | 2022-01-31 19:16:41 +0100 | [diff] [blame] | 107 | int btrfs_set_prop(struct btrfs_trans_handle *trans, struct btrfs_inode *inode, |
Anand Jain | cd31af1 | 2019-04-20 19:48:52 +0800 | [diff] [blame] | 108 | const char *name, const char *value, size_t value_len, |
| 109 | int flags) |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 110 | { |
| 111 | const struct prop_handler *handler; |
| 112 | int ret; |
| 113 | |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 114 | handler = find_prop_handler(name, NULL); |
| 115 | if (!handler) |
| 116 | return -EINVAL; |
| 117 | |
| 118 | if (value_len == 0) { |
David Sterba | 0d9b7e1 | 2022-01-31 19:16:41 +0100 | [diff] [blame] | 119 | ret = btrfs_setxattr(trans, &inode->vfs_inode, handler->xattr_name, |
Anand Jain | da9b6ec | 2019-04-20 19:49:00 +0800 | [diff] [blame] | 120 | NULL, 0, flags); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 121 | if (ret) |
| 122 | return ret; |
| 123 | |
David Sterba | 0d9b7e1 | 2022-01-31 19:16:41 +0100 | [diff] [blame] | 124 | ret = handler->apply(&inode->vfs_inode, NULL, 0); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 125 | ASSERT(ret == 0); |
| 126 | |
| 127 | return ret; |
| 128 | } |
| 129 | |
David Sterba | 0d9b7e1 | 2022-01-31 19:16:41 +0100 | [diff] [blame] | 130 | ret = btrfs_setxattr(trans, &inode->vfs_inode, handler->xattr_name, value, |
Anand Jain | da9b6ec | 2019-04-20 19:49:00 +0800 | [diff] [blame] | 131 | value_len, flags); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 132 | if (ret) |
| 133 | return ret; |
David Sterba | 0d9b7e1 | 2022-01-31 19:16:41 +0100 | [diff] [blame] | 134 | ret = handler->apply(&inode->vfs_inode, value, value_len); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 135 | if (ret) { |
David Sterba | 0d9b7e1 | 2022-01-31 19:16:41 +0100 | [diff] [blame] | 136 | btrfs_setxattr(trans, &inode->vfs_inode, handler->xattr_name, NULL, |
Anand Jain | da9b6ec | 2019-04-20 19:49:00 +0800 | [diff] [blame] | 137 | 0, flags); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 138 | return ret; |
| 139 | } |
| 140 | |
David Sterba | 0d9b7e1 | 2022-01-31 19:16:41 +0100 | [diff] [blame] | 141 | set_bit(BTRFS_INODE_HAS_PROPS, &inode->runtime_flags); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 142 | |
| 143 | return 0; |
| 144 | } |
| 145 | |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 146 | static int iterate_object_props(struct btrfs_root *root, |
| 147 | struct btrfs_path *path, |
| 148 | u64 objectid, |
| 149 | void (*iterator)(void *, |
| 150 | const struct prop_handler *, |
| 151 | const char *, |
| 152 | size_t), |
| 153 | void *ctx) |
| 154 | { |
| 155 | int ret; |
| 156 | char *name_buf = NULL; |
| 157 | char *value_buf = NULL; |
| 158 | int name_buf_len = 0; |
| 159 | int value_buf_len = 0; |
| 160 | |
| 161 | while (1) { |
| 162 | struct btrfs_key key; |
| 163 | struct btrfs_dir_item *di; |
| 164 | struct extent_buffer *leaf; |
| 165 | u32 total_len, cur, this_len; |
| 166 | int slot; |
| 167 | const struct hlist_head *handlers; |
| 168 | |
| 169 | slot = path->slots[0]; |
| 170 | leaf = path->nodes[0]; |
| 171 | |
| 172 | if (slot >= btrfs_header_nritems(leaf)) { |
| 173 | ret = btrfs_next_leaf(root, path); |
| 174 | if (ret < 0) |
| 175 | goto out; |
| 176 | else if (ret > 0) |
| 177 | break; |
| 178 | continue; |
| 179 | } |
| 180 | |
| 181 | btrfs_item_key_to_cpu(leaf, &key, slot); |
| 182 | if (key.objectid != objectid) |
| 183 | break; |
| 184 | if (key.type != BTRFS_XATTR_ITEM_KEY) |
| 185 | break; |
| 186 | |
| 187 | handlers = find_prop_handlers_by_hash(key.offset); |
| 188 | if (!handlers) |
| 189 | goto next_slot; |
| 190 | |
| 191 | di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item); |
| 192 | cur = 0; |
Josef Bacik | 3212fa1 | 2021-10-21 14:58:35 -0400 | [diff] [blame] | 193 | total_len = btrfs_item_size(leaf, slot); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 194 | |
| 195 | while (cur < total_len) { |
| 196 | u32 name_len = btrfs_dir_name_len(leaf, di); |
| 197 | u32 data_len = btrfs_dir_data_len(leaf, di); |
| 198 | unsigned long name_ptr, data_ptr; |
| 199 | const struct prop_handler *handler; |
| 200 | |
| 201 | this_len = sizeof(*di) + name_len + data_len; |
| 202 | name_ptr = (unsigned long)(di + 1); |
| 203 | data_ptr = name_ptr + name_len; |
| 204 | |
| 205 | if (name_len <= XATTR_BTRFS_PREFIX_LEN || |
| 206 | memcmp_extent_buffer(leaf, XATTR_BTRFS_PREFIX, |
| 207 | name_ptr, |
| 208 | XATTR_BTRFS_PREFIX_LEN)) |
| 209 | goto next_dir_item; |
| 210 | |
| 211 | if (name_len >= name_buf_len) { |
| 212 | kfree(name_buf); |
| 213 | name_buf_len = name_len + 1; |
| 214 | name_buf = kmalloc(name_buf_len, GFP_NOFS); |
| 215 | if (!name_buf) { |
| 216 | ret = -ENOMEM; |
| 217 | goto out; |
| 218 | } |
| 219 | } |
| 220 | read_extent_buffer(leaf, name_buf, name_ptr, name_len); |
| 221 | name_buf[name_len] = '\0'; |
| 222 | |
| 223 | handler = find_prop_handler(name_buf, handlers); |
| 224 | if (!handler) |
| 225 | goto next_dir_item; |
| 226 | |
| 227 | if (data_len > value_buf_len) { |
| 228 | kfree(value_buf); |
| 229 | value_buf_len = data_len; |
| 230 | value_buf = kmalloc(data_len, GFP_NOFS); |
| 231 | if (!value_buf) { |
| 232 | ret = -ENOMEM; |
| 233 | goto out; |
| 234 | } |
| 235 | } |
| 236 | read_extent_buffer(leaf, value_buf, data_ptr, data_len); |
| 237 | |
| 238 | iterator(ctx, handler, value_buf, data_len); |
| 239 | next_dir_item: |
| 240 | cur += this_len; |
| 241 | di = (struct btrfs_dir_item *)((char *) di + this_len); |
| 242 | } |
| 243 | |
| 244 | next_slot: |
| 245 | path->slots[0]++; |
| 246 | } |
| 247 | |
| 248 | ret = 0; |
| 249 | out: |
| 250 | btrfs_release_path(path); |
| 251 | kfree(name_buf); |
| 252 | kfree(value_buf); |
| 253 | |
| 254 | return ret; |
| 255 | } |
| 256 | |
| 257 | static void inode_prop_iterator(void *ctx, |
| 258 | const struct prop_handler *handler, |
| 259 | const char *value, |
| 260 | size_t len) |
| 261 | { |
| 262 | struct inode *inode = ctx; |
| 263 | struct btrfs_root *root = BTRFS_I(inode)->root; |
| 264 | int ret; |
| 265 | |
| 266 | ret = handler->apply(inode, value, len); |
| 267 | if (unlikely(ret)) |
| 268 | btrfs_warn(root->fs_info, |
| 269 | "error applying prop %s to ino %llu (root %llu): %d", |
Nikolay Borisov | 4a0cc7c | 2017-01-10 20:35:31 +0200 | [diff] [blame] | 270 | handler->xattr_name, btrfs_ino(BTRFS_I(inode)), |
Josef Bacik | e094f48 | 2024-04-15 16:16:23 -0400 | [diff] [blame] | 271 | btrfs_root_id(root), ret); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 272 | else |
| 273 | set_bit(BTRFS_INODE_HAS_PROPS, &BTRFS_I(inode)->runtime_flags); |
| 274 | } |
| 275 | |
| 276 | int btrfs_load_inode_props(struct inode *inode, struct btrfs_path *path) |
| 277 | { |
| 278 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Nikolay Borisov | 4a0cc7c | 2017-01-10 20:35:31 +0200 | [diff] [blame] | 279 | u64 ino = btrfs_ino(BTRFS_I(inode)); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 280 | |
zhang songyi | bd64f62 | 2022-09-02 15:40:29 +0000 | [diff] [blame] | 281 | return iterate_object_props(root, path, ino, inode_prop_iterator, inode); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 282 | } |
| 283 | |
Chung-Chiang Cheng | 0e852ab | 2022-04-15 16:04:06 +0800 | [diff] [blame] | 284 | static int prop_compression_validate(const struct btrfs_inode *inode, |
| 285 | const char *value, size_t len) |
Anand Jain | 3dcf96c | 2019-03-01 12:34:48 +0800 | [diff] [blame] | 286 | { |
Chung-Chiang Cheng | 0e852ab | 2022-04-15 16:04:06 +0800 | [diff] [blame] | 287 | if (!btrfs_inode_can_compress(inode)) |
| 288 | return -EINVAL; |
| 289 | |
Anand Jain | 3dcf96c | 2019-03-01 12:34:48 +0800 | [diff] [blame] | 290 | if (!value) |
| 291 | return 0; |
| 292 | |
Johannes Thumshirn | aa53e3b | 2019-06-06 12:07:15 +0200 | [diff] [blame] | 293 | if (btrfs_compress_is_valid_type(value, len)) |
Anand Jain | 3dcf96c | 2019-03-01 12:34:48 +0800 | [diff] [blame] | 294 | return 0; |
| 295 | |
David Sterba | 5548c8c | 2021-06-14 18:10:04 +0200 | [diff] [blame] | 296 | if ((len == 2 && strncmp("no", value, 2) == 0) || |
| 297 | (len == 4 && strncmp("none", value, 4) == 0)) |
| 298 | return 0; |
| 299 | |
Anand Jain | 3dcf96c | 2019-03-01 12:34:48 +0800 | [diff] [blame] | 300 | return -EINVAL; |
| 301 | } |
| 302 | |
| 303 | static int prop_compression_apply(struct inode *inode, const char *value, |
| 304 | size_t len) |
| 305 | { |
David Sterba | 41044b4 | 2023-09-14 16:45:41 +0200 | [diff] [blame] | 306 | struct btrfs_fs_info *fs_info = inode_to_fs_info(inode); |
Anand Jain | 3dcf96c | 2019-03-01 12:34:48 +0800 | [diff] [blame] | 307 | int type; |
| 308 | |
David Sterba | 5548c8c | 2021-06-14 18:10:04 +0200 | [diff] [blame] | 309 | /* Reset to defaults */ |
Anand Jain | 3dcf96c | 2019-03-01 12:34:48 +0800 | [diff] [blame] | 310 | if (len == 0) { |
David Sterba | 5548c8c | 2021-06-14 18:10:04 +0200 | [diff] [blame] | 311 | BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS; |
| 312 | BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS; |
| 313 | BTRFS_I(inode)->prop_compress = BTRFS_COMPRESS_NONE; |
| 314 | return 0; |
| 315 | } |
| 316 | |
| 317 | /* Set NOCOMPRESS flag */ |
| 318 | if ((len == 2 && strncmp("no", value, 2) == 0) || |
| 319 | (len == 4 && strncmp("none", value, 4) == 0)) { |
Anand Jain | 3dcf96c | 2019-03-01 12:34:48 +0800 | [diff] [blame] | 320 | BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS; |
| 321 | BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS; |
| 322 | BTRFS_I(inode)->prop_compress = BTRFS_COMPRESS_NONE; |
| 323 | |
| 324 | return 0; |
| 325 | } |
| 326 | |
| 327 | if (!strncmp("lzo", value, 3)) { |
| 328 | type = BTRFS_COMPRESS_LZO; |
| 329 | btrfs_set_fs_incompat(fs_info, COMPRESS_LZO); |
| 330 | } else if (!strncmp("zlib", value, 4)) { |
| 331 | type = BTRFS_COMPRESS_ZLIB; |
| 332 | } else if (!strncmp("zstd", value, 4)) { |
| 333 | type = BTRFS_COMPRESS_ZSTD; |
| 334 | btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD); |
| 335 | } else { |
| 336 | return -EINVAL; |
| 337 | } |
| 338 | |
| 339 | BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS; |
| 340 | BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS; |
| 341 | BTRFS_I(inode)->prop_compress = type; |
| 342 | |
| 343 | return 0; |
| 344 | } |
| 345 | |
Filipe Manana | 4b73c55 | 2022-04-21 11:01:22 +0100 | [diff] [blame] | 346 | static bool prop_compression_ignore(const struct btrfs_inode *inode) |
| 347 | { |
| 348 | /* |
| 349 | * Compression only has effect for regular files, and for directories |
| 350 | * we set it just to propagate it to new files created inside them. |
| 351 | * Everything else (symlinks, devices, sockets, fifos) is pointless as |
| 352 | * it will do nothing, so don't waste metadata space on a compression |
| 353 | * xattr for anything that is neither a file nor a directory. |
| 354 | */ |
| 355 | if (!S_ISREG(inode->vfs_inode.i_mode) && |
| 356 | !S_ISDIR(inode->vfs_inode.i_mode)) |
| 357 | return true; |
| 358 | |
| 359 | return false; |
| 360 | } |
| 361 | |
David Sterba | 2917f74 | 2024-05-30 19:14:12 +0200 | [diff] [blame] | 362 | static const char *prop_compression_extract(const struct inode *inode) |
Anand Jain | 3dcf96c | 2019-03-01 12:34:48 +0800 | [diff] [blame] | 363 | { |
| 364 | switch (BTRFS_I(inode)->prop_compress) { |
| 365 | case BTRFS_COMPRESS_ZLIB: |
| 366 | case BTRFS_COMPRESS_LZO: |
| 367 | case BTRFS_COMPRESS_ZSTD: |
| 368 | return btrfs_compress_type2str(BTRFS_I(inode)->prop_compress); |
| 369 | default: |
| 370 | break; |
| 371 | } |
| 372 | |
| 373 | return NULL; |
| 374 | } |
| 375 | |
| 376 | static struct prop_handler prop_handlers[] = { |
| 377 | { |
| 378 | .xattr_name = XATTR_BTRFS_PREFIX "compression", |
| 379 | .validate = prop_compression_validate, |
| 380 | .apply = prop_compression_apply, |
| 381 | .extract = prop_compression_extract, |
Filipe Manana | 4b73c55 | 2022-04-21 11:01:22 +0100 | [diff] [blame] | 382 | .ignore = prop_compression_ignore, |
Anand Jain | 3dcf96c | 2019-03-01 12:34:48 +0800 | [diff] [blame] | 383 | .inheritable = 1 |
| 384 | }, |
| 385 | }; |
| 386 | |
Omar Sandoval | caae78e | 2022-03-14 18:12:35 -0700 | [diff] [blame] | 387 | int btrfs_inode_inherit_props(struct btrfs_trans_handle *trans, |
David Sterba | 2917f74 | 2024-05-30 19:14:12 +0200 | [diff] [blame] | 388 | struct inode *inode, const struct inode *parent) |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 389 | { |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 390 | struct btrfs_root *root = BTRFS_I(inode)->root; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 391 | struct btrfs_fs_info *fs_info = root->fs_info; |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 392 | int ret; |
Byongho Lee | 619ed39 | 2015-10-08 20:49:34 +0900 | [diff] [blame] | 393 | int i; |
Josef Bacik | d7400ee | 2019-04-26 16:25:50 +0200 | [diff] [blame] | 394 | bool need_reserve = false; |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 395 | |
| 396 | if (!test_bit(BTRFS_INODE_HAS_PROPS, |
| 397 | &BTRFS_I(parent)->runtime_flags)) |
| 398 | return 0; |
| 399 | |
Byongho Lee | 619ed39 | 2015-10-08 20:49:34 +0900 | [diff] [blame] | 400 | for (i = 0; i < ARRAY_SIZE(prop_handlers); i++) { |
| 401 | const struct prop_handler *h = &prop_handlers[i]; |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 402 | const char *value; |
Arnd Bergmann | 6c64460 | 2019-06-17 13:07:28 +0200 | [diff] [blame] | 403 | u64 num_bytes = 0; |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 404 | |
| 405 | if (!h->inheritable) |
| 406 | continue; |
| 407 | |
Filipe Manana | 4b73c55 | 2022-04-21 11:01:22 +0100 | [diff] [blame] | 408 | if (h->ignore(BTRFS_I(inode))) |
| 409 | continue; |
| 410 | |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 411 | value = h->extract(parent); |
| 412 | if (!value) |
| 413 | continue; |
| 414 | |
Anand Jain | 8b4d1ef | 2019-04-02 18:07:41 +0800 | [diff] [blame] | 415 | /* |
| 416 | * This is not strictly necessary as the property should be |
David Sterba | 1a9fd41 | 2021-05-21 17:42:23 +0200 | [diff] [blame] | 417 | * valid, but in case it isn't, don't propagate it further. |
Anand Jain | 8b4d1ef | 2019-04-02 18:07:41 +0800 | [diff] [blame] | 418 | */ |
Chung-Chiang Cheng | 0e852ab | 2022-04-15 16:04:06 +0800 | [diff] [blame] | 419 | ret = h->validate(BTRFS_I(inode), value, strlen(value)); |
Anand Jain | 8b4d1ef | 2019-04-02 18:07:41 +0800 | [diff] [blame] | 420 | if (ret) |
| 421 | continue; |
| 422 | |
Josef Bacik | d7400ee | 2019-04-26 16:25:50 +0200 | [diff] [blame] | 423 | /* |
| 424 | * Currently callers should be reserving 1 item for properties, |
| 425 | * since we only have 1 property that we currently support. If |
| 426 | * we add more in the future we need to try and reserve more |
| 427 | * space for them. But we should also revisit how we do space |
| 428 | * reservations if we do add more properties in the future. |
| 429 | */ |
| 430 | if (need_reserve) { |
Josef Bacik | 2bd36e7 | 2019-08-22 15:14:33 -0400 | [diff] [blame] | 431 | num_bytes = btrfs_calc_insert_metadata_size(fs_info, 1); |
Josef Bacik | 9270501 | 2021-11-09 10:12:07 -0500 | [diff] [blame] | 432 | ret = btrfs_block_rsv_add(fs_info, trans->block_rsv, |
| 433 | num_bytes, |
| 434 | BTRFS_RESERVE_NO_FLUSH); |
Josef Bacik | d7400ee | 2019-04-26 16:25:50 +0200 | [diff] [blame] | 435 | if (ret) |
| 436 | return ret; |
| 437 | } |
Anand Jain | 8b4d1ef | 2019-04-02 18:07:41 +0800 | [diff] [blame] | 438 | |
Anand Jain | 04e6863 | 2019-04-12 16:02:58 +0800 | [diff] [blame] | 439 | ret = btrfs_setxattr(trans, inode, h->xattr_name, value, |
| 440 | strlen(value), 0); |
Anand Jain | 8b4d1ef | 2019-04-02 18:07:41 +0800 | [diff] [blame] | 441 | if (!ret) { |
| 442 | ret = h->apply(inode, value, strlen(value)); |
| 443 | if (ret) |
Anand Jain | 04e6863 | 2019-04-12 16:02:58 +0800 | [diff] [blame] | 444 | btrfs_setxattr(trans, inode, h->xattr_name, |
| 445 | NULL, 0, 0); |
Anand Jain | 8b4d1ef | 2019-04-02 18:07:41 +0800 | [diff] [blame] | 446 | else |
| 447 | set_bit(BTRFS_INODE_HAS_PROPS, |
| 448 | &BTRFS_I(inode)->runtime_flags); |
| 449 | } |
| 450 | |
Josef Bacik | d7400ee | 2019-04-26 16:25:50 +0200 | [diff] [blame] | 451 | if (need_reserve) { |
| 452 | btrfs_block_rsv_release(fs_info, trans->block_rsv, |
Nikolay Borisov | 63f018b | 2020-03-10 10:59:31 +0200 | [diff] [blame] | 453 | num_bytes, NULL); |
Josef Bacik | d7400ee | 2019-04-26 16:25:50 +0200 | [diff] [blame] | 454 | if (ret) |
| 455 | return ret; |
| 456 | } |
| 457 | need_reserve = true; |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 458 | } |
Anand Jain | 8b4d1ef | 2019-04-02 18:07:41 +0800 | [diff] [blame] | 459 | |
| 460 | return 0; |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 461 | } |
| 462 | |
Qu Wenruo | 5565b8e | 2022-10-12 17:22:35 +0800 | [diff] [blame] | 463 | int __init btrfs_props_init(void) |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 464 | { |
Anand Jain | 3dcf96c | 2019-03-01 12:34:48 +0800 | [diff] [blame] | 465 | int i; |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 466 | |
Anand Jain | 3dcf96c | 2019-03-01 12:34:48 +0800 | [diff] [blame] | 467 | for (i = 0; i < ARRAY_SIZE(prop_handlers); i++) { |
| 468 | struct prop_handler *p = &prop_handlers[i]; |
| 469 | u64 h = btrfs_name_hash(p->xattr_name, strlen(p->xattr_name)); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 470 | |
Anand Jain | 3dcf96c | 2019-03-01 12:34:48 +0800 | [diff] [blame] | 471 | hash_add(prop_handlers_ht, &p->node, h); |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 472 | } |
Qu Wenruo | 5565b8e | 2022-10-12 17:22:35 +0800 | [diff] [blame] | 473 | return 0; |
Filipe David Borba Manana | 6354192 | 2014-01-07 11:47:46 +0000 | [diff] [blame] | 474 | } |
| 475 | |