1 // SPDX-License-Identifier: GPL-2.0
6 #include <linux/hashtable.h>
8 #include "btrfs_inode.h"
9 #include "transaction.h"
12 #include "compression.h"
14 #define BTRFS_PROP_HANDLERS_HT_BITS 8
15 static DEFINE_HASHTABLE(prop_handlers_ht, BTRFS_PROP_HANDLERS_HT_BITS);
18 struct hlist_node node;
19 const char *xattr_name;
20 int (*validate)(const struct btrfs_inode *inode, const char *value,
22 int (*apply)(struct inode *inode, const char *value, size_t len);
23 const char *(*extract)(struct inode *inode);
24 bool (*ignore)(const struct btrfs_inode *inode);
28 static const struct hlist_head *find_prop_handlers_by_hash(const u64 hash)
32 h = &prop_handlers_ht[hash_min(hash, BTRFS_PROP_HANDLERS_HT_BITS)];
39 static const struct prop_handler *
40 find_prop_handler(const char *name,
41 const struct hlist_head *handlers)
43 struct prop_handler *h;
46 u64 hash = btrfs_name_hash(name, strlen(name));
48 handlers = find_prop_handlers_by_hash(hash);
53 hlist_for_each_entry(h, handlers, node)
54 if (!strcmp(h->xattr_name, name))
60 int btrfs_validate_prop(const struct btrfs_inode *inode, const char *name,
61 const char *value, size_t value_len)
63 const struct prop_handler *handler;
65 if (strlen(name) <= XATTR_BTRFS_PREFIX_LEN)
68 handler = find_prop_handler(name, NULL);
75 return handler->validate(inode, value, value_len);
79 * Check if a property should be ignored (not set) for an inode.
81 * @inode: The target inode.
82 * @name: The property's name.
84 * The caller must be sure the given property name is valid, for example by
85 * having previously called btrfs_validate_prop().
87 * Returns: true if the property should be ignored for the given inode
88 * false if the property must not be ignored for the given inode
90 bool btrfs_ignore_prop(const struct btrfs_inode *inode, const char *name)
92 const struct prop_handler *handler;
94 handler = find_prop_handler(name, NULL);
95 ASSERT(handler != NULL);
97 return handler->ignore(inode);
100 int btrfs_set_prop(struct btrfs_trans_handle *trans, struct inode *inode,
101 const char *name, const char *value, size_t value_len,
104 const struct prop_handler *handler;
107 handler = find_prop_handler(name, NULL);
111 if (value_len == 0) {
112 ret = btrfs_setxattr(trans, inode, handler->xattr_name,
117 ret = handler->apply(inode, NULL, 0);
123 ret = btrfs_setxattr(trans, inode, handler->xattr_name, value,
127 ret = handler->apply(inode, value, value_len);
129 btrfs_setxattr(trans, inode, handler->xattr_name, NULL,
134 set_bit(BTRFS_INODE_HAS_PROPS, &BTRFS_I(inode)->runtime_flags);
139 static int iterate_object_props(struct btrfs_root *root,
140 struct btrfs_path *path,
142 void (*iterator)(void *,
143 const struct prop_handler *,
149 char *name_buf = NULL;
150 char *value_buf = NULL;
151 int name_buf_len = 0;
152 int value_buf_len = 0;
155 struct btrfs_key key;
156 struct btrfs_dir_item *di;
157 struct extent_buffer *leaf;
158 u32 total_len, cur, this_len;
160 const struct hlist_head *handlers;
162 slot = path->slots[0];
163 leaf = path->nodes[0];
165 if (slot >= btrfs_header_nritems(leaf)) {
166 ret = btrfs_next_leaf(root, path);
174 btrfs_item_key_to_cpu(leaf, &key, slot);
175 if (key.objectid != objectid)
177 if (key.type != BTRFS_XATTR_ITEM_KEY)
180 handlers = find_prop_handlers_by_hash(key.offset);
184 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
186 total_len = btrfs_item_size(leaf, slot);
188 while (cur < total_len) {
189 u32 name_len = btrfs_dir_name_len(leaf, di);
190 u32 data_len = btrfs_dir_data_len(leaf, di);
191 unsigned long name_ptr, data_ptr;
192 const struct prop_handler *handler;
194 this_len = sizeof(*di) + name_len + data_len;
195 name_ptr = (unsigned long)(di + 1);
196 data_ptr = name_ptr + name_len;
198 if (name_len <= XATTR_BTRFS_PREFIX_LEN ||
199 memcmp_extent_buffer(leaf, XATTR_BTRFS_PREFIX,
201 XATTR_BTRFS_PREFIX_LEN))
204 if (name_len >= name_buf_len) {
206 name_buf_len = name_len + 1;
207 name_buf = kmalloc(name_buf_len, GFP_NOFS);
213 read_extent_buffer(leaf, name_buf, name_ptr, name_len);
214 name_buf[name_len] = '\0';
216 handler = find_prop_handler(name_buf, handlers);
220 if (data_len > value_buf_len) {
222 value_buf_len = data_len;
223 value_buf = kmalloc(data_len, GFP_NOFS);
229 read_extent_buffer(leaf, value_buf, data_ptr, data_len);
231 iterator(ctx, handler, value_buf, data_len);
234 di = (struct btrfs_dir_item *)((char *) di + this_len);
243 btrfs_release_path(path);
250 static void inode_prop_iterator(void *ctx,
251 const struct prop_handler *handler,
255 struct inode *inode = ctx;
256 struct btrfs_root *root = BTRFS_I(inode)->root;
259 ret = handler->apply(inode, value, len);
261 btrfs_warn(root->fs_info,
262 "error applying prop %s to ino %llu (root %llu): %d",
263 handler->xattr_name, btrfs_ino(BTRFS_I(inode)),
264 root->root_key.objectid, ret);
266 set_bit(BTRFS_INODE_HAS_PROPS, &BTRFS_I(inode)->runtime_flags);
269 int btrfs_load_inode_props(struct inode *inode, struct btrfs_path *path)
271 struct btrfs_root *root = BTRFS_I(inode)->root;
272 u64 ino = btrfs_ino(BTRFS_I(inode));
274 return iterate_object_props(root, path, ino, inode_prop_iterator, inode);
277 static int prop_compression_validate(const struct btrfs_inode *inode,
278 const char *value, size_t len)
280 if (!btrfs_inode_can_compress(inode))
286 if (btrfs_compress_is_valid_type(value, len))
289 if ((len == 2 && strncmp("no", value, 2) == 0) ||
290 (len == 4 && strncmp("none", value, 4) == 0))
296 static int prop_compression_apply(struct inode *inode, const char *value,
299 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
302 /* Reset to defaults */
304 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
305 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
306 BTRFS_I(inode)->prop_compress = BTRFS_COMPRESS_NONE;
310 /* Set NOCOMPRESS flag */
311 if ((len == 2 && strncmp("no", value, 2) == 0) ||
312 (len == 4 && strncmp("none", value, 4) == 0)) {
313 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
314 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
315 BTRFS_I(inode)->prop_compress = BTRFS_COMPRESS_NONE;
320 if (!strncmp("lzo", value, 3)) {
321 type = BTRFS_COMPRESS_LZO;
322 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
323 } else if (!strncmp("zlib", value, 4)) {
324 type = BTRFS_COMPRESS_ZLIB;
325 } else if (!strncmp("zstd", value, 4)) {
326 type = BTRFS_COMPRESS_ZSTD;
327 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
332 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
333 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
334 BTRFS_I(inode)->prop_compress = type;
339 static bool prop_compression_ignore(const struct btrfs_inode *inode)
342 * Compression only has effect for regular files, and for directories
343 * we set it just to propagate it to new files created inside them.
344 * Everything else (symlinks, devices, sockets, fifos) is pointless as
345 * it will do nothing, so don't waste metadata space on a compression
346 * xattr for anything that is neither a file nor a directory.
348 if (!S_ISREG(inode->vfs_inode.i_mode) &&
349 !S_ISDIR(inode->vfs_inode.i_mode))
355 static const char *prop_compression_extract(struct inode *inode)
357 switch (BTRFS_I(inode)->prop_compress) {
358 case BTRFS_COMPRESS_ZLIB:
359 case BTRFS_COMPRESS_LZO:
360 case BTRFS_COMPRESS_ZSTD:
361 return btrfs_compress_type2str(BTRFS_I(inode)->prop_compress);
369 static struct prop_handler prop_handlers[] = {
371 .xattr_name = XATTR_BTRFS_PREFIX "compression",
372 .validate = prop_compression_validate,
373 .apply = prop_compression_apply,
374 .extract = prop_compression_extract,
375 .ignore = prop_compression_ignore,
380 int btrfs_inode_inherit_props(struct btrfs_trans_handle *trans,
381 struct inode *inode, struct inode *parent)
383 struct btrfs_root *root = BTRFS_I(inode)->root;
384 struct btrfs_fs_info *fs_info = root->fs_info;
387 bool need_reserve = false;
389 if (!test_bit(BTRFS_INODE_HAS_PROPS,
390 &BTRFS_I(parent)->runtime_flags))
393 for (i = 0; i < ARRAY_SIZE(prop_handlers); i++) {
394 const struct prop_handler *h = &prop_handlers[i];
401 if (h->ignore(BTRFS_I(inode)))
404 value = h->extract(parent);
409 * This is not strictly necessary as the property should be
410 * valid, but in case it isn't, don't propagate it further.
412 ret = h->validate(BTRFS_I(inode), value, strlen(value));
417 * Currently callers should be reserving 1 item for properties,
418 * since we only have 1 property that we currently support. If
419 * we add more in the future we need to try and reserve more
420 * space for them. But we should also revisit how we do space
421 * reservations if we do add more properties in the future.
424 num_bytes = btrfs_calc_insert_metadata_size(fs_info, 1);
425 ret = btrfs_block_rsv_add(fs_info, trans->block_rsv,
427 BTRFS_RESERVE_NO_FLUSH);
432 ret = btrfs_setxattr(trans, inode, h->xattr_name, value,
435 ret = h->apply(inode, value, strlen(value));
437 btrfs_setxattr(trans, inode, h->xattr_name,
440 set_bit(BTRFS_INODE_HAS_PROPS,
441 &BTRFS_I(inode)->runtime_flags);
445 btrfs_block_rsv_release(fs_info, trans->block_rsv,
456 void __init btrfs_props_init(void)
460 for (i = 0; i < ARRAY_SIZE(prop_handlers); i++) {
461 struct prop_handler *p = &prop_handlers[i];
462 u64 h = btrfs_name_hash(p->xattr_name, strlen(p->xattr_name));
464 hash_add(prop_handlers_ht, &p->node, h);