1 // SPDX-License-Identifier: GPL-2.0
6 #include <linux/hashtable.h>
9 #include "btrfs_inode.h"
10 #include "transaction.h"
13 #include "compression.h"
14 #include "space-info.h"
16 #include "accessors.h"
20 #define BTRFS_PROP_HANDLERS_HT_BITS 8
21 static DEFINE_HASHTABLE(prop_handlers_ht, BTRFS_PROP_HANDLERS_HT_BITS);
24 struct hlist_node node;
25 const char *xattr_name;
26 int (*validate)(const struct btrfs_inode *inode, const char *value,
28 int (*apply)(struct inode *inode, const char *value, size_t len);
29 const char *(*extract)(struct inode *inode);
30 bool (*ignore)(const struct btrfs_inode *inode);
34 static const struct hlist_head *find_prop_handlers_by_hash(const u64 hash)
38 h = &prop_handlers_ht[hash_min(hash, BTRFS_PROP_HANDLERS_HT_BITS)];
45 static const struct prop_handler *
46 find_prop_handler(const char *name,
47 const struct hlist_head *handlers)
49 struct prop_handler *h;
52 u64 hash = btrfs_name_hash(name, strlen(name));
54 handlers = find_prop_handlers_by_hash(hash);
59 hlist_for_each_entry(h, handlers, node)
60 if (!strcmp(h->xattr_name, name))
66 int btrfs_validate_prop(const struct btrfs_inode *inode, const char *name,
67 const char *value, size_t value_len)
69 const struct prop_handler *handler;
71 if (strlen(name) <= XATTR_BTRFS_PREFIX_LEN)
74 handler = find_prop_handler(name, NULL);
81 return handler->validate(inode, value, value_len);
85 * Check if a property should be ignored (not set) for an inode.
87 * @inode: The target inode.
88 * @name: The property's name.
90 * The caller must be sure the given property name is valid, for example by
91 * having previously called btrfs_validate_prop().
93 * Returns: true if the property should be ignored for the given inode
94 * false if the property must not be ignored for the given inode
96 bool btrfs_ignore_prop(const struct btrfs_inode *inode, const char *name)
98 const struct prop_handler *handler;
100 handler = find_prop_handler(name, NULL);
101 ASSERT(handler != NULL);
103 return handler->ignore(inode);
106 int btrfs_set_prop(struct btrfs_trans_handle *trans, struct inode *inode,
107 const char *name, const char *value, size_t value_len,
110 const struct prop_handler *handler;
113 handler = find_prop_handler(name, NULL);
117 if (value_len == 0) {
118 ret = btrfs_setxattr(trans, inode, handler->xattr_name,
123 ret = handler->apply(inode, NULL, 0);
129 ret = btrfs_setxattr(trans, inode, handler->xattr_name, value,
133 ret = handler->apply(inode, value, value_len);
135 btrfs_setxattr(trans, inode, handler->xattr_name, NULL,
140 set_bit(BTRFS_INODE_HAS_PROPS, &BTRFS_I(inode)->runtime_flags);
145 static int iterate_object_props(struct btrfs_root *root,
146 struct btrfs_path *path,
148 void (*iterator)(void *,
149 const struct prop_handler *,
155 char *name_buf = NULL;
156 char *value_buf = NULL;
157 int name_buf_len = 0;
158 int value_buf_len = 0;
161 struct btrfs_key key;
162 struct btrfs_dir_item *di;
163 struct extent_buffer *leaf;
164 u32 total_len, cur, this_len;
166 const struct hlist_head *handlers;
168 slot = path->slots[0];
169 leaf = path->nodes[0];
171 if (slot >= btrfs_header_nritems(leaf)) {
172 ret = btrfs_next_leaf(root, path);
180 btrfs_item_key_to_cpu(leaf, &key, slot);
181 if (key.objectid != objectid)
183 if (key.type != BTRFS_XATTR_ITEM_KEY)
186 handlers = find_prop_handlers_by_hash(key.offset);
190 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
192 total_len = btrfs_item_size(leaf, slot);
194 while (cur < total_len) {
195 u32 name_len = btrfs_dir_name_len(leaf, di);
196 u32 data_len = btrfs_dir_data_len(leaf, di);
197 unsigned long name_ptr, data_ptr;
198 const struct prop_handler *handler;
200 this_len = sizeof(*di) + name_len + data_len;
201 name_ptr = (unsigned long)(di + 1);
202 data_ptr = name_ptr + name_len;
204 if (name_len <= XATTR_BTRFS_PREFIX_LEN ||
205 memcmp_extent_buffer(leaf, XATTR_BTRFS_PREFIX,
207 XATTR_BTRFS_PREFIX_LEN))
210 if (name_len >= name_buf_len) {
212 name_buf_len = name_len + 1;
213 name_buf = kmalloc(name_buf_len, GFP_NOFS);
219 read_extent_buffer(leaf, name_buf, name_ptr, name_len);
220 name_buf[name_len] = '\0';
222 handler = find_prop_handler(name_buf, handlers);
226 if (data_len > value_buf_len) {
228 value_buf_len = data_len;
229 value_buf = kmalloc(data_len, GFP_NOFS);
235 read_extent_buffer(leaf, value_buf, data_ptr, data_len);
237 iterator(ctx, handler, value_buf, data_len);
240 di = (struct btrfs_dir_item *)((char *) di + this_len);
249 btrfs_release_path(path);
256 static void inode_prop_iterator(void *ctx,
257 const struct prop_handler *handler,
261 struct inode *inode = ctx;
262 struct btrfs_root *root = BTRFS_I(inode)->root;
265 ret = handler->apply(inode, value, len);
267 btrfs_warn(root->fs_info,
268 "error applying prop %s to ino %llu (root %llu): %d",
269 handler->xattr_name, btrfs_ino(BTRFS_I(inode)),
270 root->root_key.objectid, ret);
272 set_bit(BTRFS_INODE_HAS_PROPS, &BTRFS_I(inode)->runtime_flags);
275 int btrfs_load_inode_props(struct inode *inode, struct btrfs_path *path)
277 struct btrfs_root *root = BTRFS_I(inode)->root;
278 u64 ino = btrfs_ino(BTRFS_I(inode));
280 return iterate_object_props(root, path, ino, inode_prop_iterator, inode);
283 static int prop_compression_validate(const struct btrfs_inode *inode,
284 const char *value, size_t len)
286 if (!btrfs_inode_can_compress(inode))
292 if (btrfs_compress_is_valid_type(value, len))
295 if ((len == 2 && strncmp("no", value, 2) == 0) ||
296 (len == 4 && strncmp("none", value, 4) == 0))
302 static int prop_compression_apply(struct inode *inode, const char *value,
305 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
308 /* Reset to defaults */
310 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
311 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
312 BTRFS_I(inode)->prop_compress = BTRFS_COMPRESS_NONE;
316 /* Set NOCOMPRESS flag */
317 if ((len == 2 && strncmp("no", value, 2) == 0) ||
318 (len == 4 && strncmp("none", value, 4) == 0)) {
319 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
320 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
321 BTRFS_I(inode)->prop_compress = BTRFS_COMPRESS_NONE;
326 if (!strncmp("lzo", value, 3)) {
327 type = BTRFS_COMPRESS_LZO;
328 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
329 } else if (!strncmp("zlib", value, 4)) {
330 type = BTRFS_COMPRESS_ZLIB;
331 } else if (!strncmp("zstd", value, 4)) {
332 type = BTRFS_COMPRESS_ZSTD;
333 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
338 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
339 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
340 BTRFS_I(inode)->prop_compress = type;
345 static bool prop_compression_ignore(const struct btrfs_inode *inode)
348 * Compression only has effect for regular files, and for directories
349 * we set it just to propagate it to new files created inside them.
350 * Everything else (symlinks, devices, sockets, fifos) is pointless as
351 * it will do nothing, so don't waste metadata space on a compression
352 * xattr for anything that is neither a file nor a directory.
354 if (!S_ISREG(inode->vfs_inode.i_mode) &&
355 !S_ISDIR(inode->vfs_inode.i_mode))
361 static const char *prop_compression_extract(struct inode *inode)
363 switch (BTRFS_I(inode)->prop_compress) {
364 case BTRFS_COMPRESS_ZLIB:
365 case BTRFS_COMPRESS_LZO:
366 case BTRFS_COMPRESS_ZSTD:
367 return btrfs_compress_type2str(BTRFS_I(inode)->prop_compress);
375 static struct prop_handler prop_handlers[] = {
377 .xattr_name = XATTR_BTRFS_PREFIX "compression",
378 .validate = prop_compression_validate,
379 .apply = prop_compression_apply,
380 .extract = prop_compression_extract,
381 .ignore = prop_compression_ignore,
386 int btrfs_inode_inherit_props(struct btrfs_trans_handle *trans,
387 struct inode *inode, struct inode *parent)
389 struct btrfs_root *root = BTRFS_I(inode)->root;
390 struct btrfs_fs_info *fs_info = root->fs_info;
393 bool need_reserve = false;
395 if (!test_bit(BTRFS_INODE_HAS_PROPS,
396 &BTRFS_I(parent)->runtime_flags))
399 for (i = 0; i < ARRAY_SIZE(prop_handlers); i++) {
400 const struct prop_handler *h = &prop_handlers[i];
407 if (h->ignore(BTRFS_I(inode)))
410 value = h->extract(parent);
415 * This is not strictly necessary as the property should be
416 * valid, but in case it isn't, don't propagate it further.
418 ret = h->validate(BTRFS_I(inode), value, strlen(value));
423 * Currently callers should be reserving 1 item for properties,
424 * since we only have 1 property that we currently support. If
425 * we add more in the future we need to try and reserve more
426 * space for them. But we should also revisit how we do space
427 * reservations if we do add more properties in the future.
430 num_bytes = btrfs_calc_insert_metadata_size(fs_info, 1);
431 ret = btrfs_block_rsv_add(fs_info, trans->block_rsv,
433 BTRFS_RESERVE_NO_FLUSH);
438 ret = btrfs_setxattr(trans, inode, h->xattr_name, value,
441 ret = h->apply(inode, value, strlen(value));
443 btrfs_setxattr(trans, inode, h->xattr_name,
446 set_bit(BTRFS_INODE_HAS_PROPS,
447 &BTRFS_I(inode)->runtime_flags);
451 btrfs_block_rsv_release(fs_info, trans->block_rsv,
462 int __init btrfs_props_init(void)
466 for (i = 0; i < ARRAY_SIZE(prop_handlers); i++) {
467 struct prop_handler *p = &prop_handlers[i];
468 u64 h = btrfs_name_hash(p->xattr_name, strlen(p->xattr_name));
470 hash_add(prop_handlers_ht, &p->node, h);