1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2014 Filipe David Borba Manana <fdmanana@gmail.com>
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));
275 ret = iterate_object_props(root, path, ino, inode_prop_iterator, inode);
280 static int prop_compression_validate(const struct btrfs_inode *inode,
281 const char *value, size_t len)
283 if (!btrfs_inode_can_compress(inode))
289 if (btrfs_compress_is_valid_type(value, len))
292 if ((len == 2 && strncmp("no", value, 2) == 0) ||
293 (len == 4 && strncmp("none", value, 4) == 0))
299 static int prop_compression_apply(struct inode *inode, const char *value,
302 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
305 /* Reset to defaults */
307 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
308 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
309 BTRFS_I(inode)->prop_compress = BTRFS_COMPRESS_NONE;
313 /* Set NOCOMPRESS flag */
314 if ((len == 2 && strncmp("no", value, 2) == 0) ||
315 (len == 4 && strncmp("none", value, 4) == 0)) {
316 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
317 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
318 BTRFS_I(inode)->prop_compress = BTRFS_COMPRESS_NONE;
323 if (!strncmp("lzo", value, 3)) {
324 type = BTRFS_COMPRESS_LZO;
325 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
326 } else if (!strncmp("zlib", value, 4)) {
327 type = BTRFS_COMPRESS_ZLIB;
328 } else if (!strncmp("zstd", value, 4)) {
329 type = BTRFS_COMPRESS_ZSTD;
330 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
335 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
336 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
337 BTRFS_I(inode)->prop_compress = type;
342 static bool prop_compression_ignore(const struct btrfs_inode *inode)
345 * Compression only has effect for regular files, and for directories
346 * we set it just to propagate it to new files created inside them.
347 * Everything else (symlinks, devices, sockets, fifos) is pointless as
348 * it will do nothing, so don't waste metadata space on a compression
349 * xattr for anything that is neither a file nor a directory.
351 if (!S_ISREG(inode->vfs_inode.i_mode) &&
352 !S_ISDIR(inode->vfs_inode.i_mode))
358 static const char *prop_compression_extract(struct inode *inode)
360 switch (BTRFS_I(inode)->prop_compress) {
361 case BTRFS_COMPRESS_ZLIB:
362 case BTRFS_COMPRESS_LZO:
363 case BTRFS_COMPRESS_ZSTD:
364 return btrfs_compress_type2str(BTRFS_I(inode)->prop_compress);
372 static struct prop_handler prop_handlers[] = {
374 .xattr_name = XATTR_BTRFS_PREFIX "compression",
375 .validate = prop_compression_validate,
376 .apply = prop_compression_apply,
377 .extract = prop_compression_extract,
378 .ignore = prop_compression_ignore,
383 int btrfs_inode_inherit_props(struct btrfs_trans_handle *trans,
384 struct inode *inode, struct inode *parent)
386 struct btrfs_root *root = BTRFS_I(inode)->root;
387 struct btrfs_fs_info *fs_info = root->fs_info;
390 bool need_reserve = false;
392 if (!test_bit(BTRFS_INODE_HAS_PROPS,
393 &BTRFS_I(parent)->runtime_flags))
396 for (i = 0; i < ARRAY_SIZE(prop_handlers); i++) {
397 const struct prop_handler *h = &prop_handlers[i];
404 if (h->ignore(BTRFS_I(inode)))
407 value = h->extract(parent);
412 * This is not strictly necessary as the property should be
413 * valid, but in case it isn't, don't propagate it further.
415 ret = h->validate(BTRFS_I(inode), value, strlen(value));
420 * Currently callers should be reserving 1 item for properties,
421 * since we only have 1 property that we currently support. If
422 * we add more in the future we need to try and reserve more
423 * space for them. But we should also revisit how we do space
424 * reservations if we do add more properties in the future.
427 num_bytes = btrfs_calc_insert_metadata_size(fs_info, 1);
428 ret = btrfs_block_rsv_add(fs_info, trans->block_rsv,
430 BTRFS_RESERVE_NO_FLUSH);
435 ret = btrfs_setxattr(trans, inode, h->xattr_name, value,
438 ret = h->apply(inode, value, strlen(value));
440 btrfs_setxattr(trans, inode, h->xattr_name,
443 set_bit(BTRFS_INODE_HAS_PROPS,
444 &BTRFS_I(inode)->runtime_flags);
448 btrfs_block_rsv_release(fs_info, trans->block_rsv,
459 void __init btrfs_props_init(void)
463 for (i = 0; i < ARRAY_SIZE(prop_handlers); i++) {
464 struct prop_handler *p = &prop_handlers[i];
465 u64 h = btrfs_name_hash(p->xattr_name, strlen(p->xattr_name));
467 hash_add(prop_handlers_ht, &p->node, h);