Linux Audio

Check our new training course

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