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