Linux Audio

Check our new training course

Loading...
v4.17
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) 2007 Red Hat.  All rights reserved.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  4 */
  5
  6#include <linux/init.h>
  7#include <linux/fs.h>
  8#include <linux/slab.h>
  9#include <linux/rwsem.h>
 10#include <linux/xattr.h>
 11#include <linux/security.h>
 12#include <linux/posix_acl_xattr.h>
 13#include <linux/iversion.h>
 14#include "ctree.h"
 15#include "btrfs_inode.h"
 16#include "transaction.h"
 17#include "xattr.h"
 18#include "disk-io.h"
 19#include "props.h"
 20#include "locking.h"
 21
 22int btrfs_getxattr(struct inode *inode, const char *name,
 
 23				void *buffer, size_t size)
 24{
 25	struct btrfs_dir_item *di;
 26	struct btrfs_root *root = BTRFS_I(inode)->root;
 27	struct btrfs_path *path;
 28	struct extent_buffer *leaf;
 29	int ret = 0;
 30	unsigned long data_ptr;
 31
 32	path = btrfs_alloc_path();
 33	if (!path)
 34		return -ENOMEM;
 35
 36	/* lookup the xattr by name */
 37	di = btrfs_lookup_xattr(NULL, root, path, btrfs_ino(BTRFS_I(inode)),
 38			name, strlen(name), 0);
 39	if (!di) {
 40		ret = -ENODATA;
 41		goto out;
 42	} else if (IS_ERR(di)) {
 43		ret = PTR_ERR(di);
 44		goto out;
 45	}
 46
 47	leaf = path->nodes[0];
 48	/* if size is 0, that means we want the size of the attr */
 49	if (!size) {
 50		ret = btrfs_dir_data_len(leaf, di);
 51		goto out;
 52	}
 53
 54	/* now get the data out of our dir_item */
 55	if (btrfs_dir_data_len(leaf, di) > size) {
 56		ret = -ERANGE;
 57		goto out;
 58	}
 59
 60	/*
 61	 * The way things are packed into the leaf is like this
 62	 * |struct btrfs_dir_item|name|data|
 63	 * where name is the xattr name, so security.foo, and data is the
 64	 * content of the xattr.  data_ptr points to the location in memory
 65	 * where the data starts in the in memory leaf
 66	 */
 67	data_ptr = (unsigned long)((char *)(di + 1) +
 68				   btrfs_dir_name_len(leaf, di));
 69	read_extent_buffer(leaf, buffer, data_ptr,
 70			   btrfs_dir_data_len(leaf, di));
 71	ret = btrfs_dir_data_len(leaf, di);
 72
 73out:
 74	btrfs_free_path(path);
 75	return ret;
 76}
 77
 78static int do_setxattr(struct btrfs_trans_handle *trans,
 79		       struct inode *inode, const char *name,
 80		       const void *value, size_t size, int flags)
 81{
 82	struct btrfs_dir_item *di = NULL;
 83	struct btrfs_root *root = BTRFS_I(inode)->root;
 84	struct btrfs_fs_info *fs_info = root->fs_info;
 85	struct btrfs_path *path;
 86	size_t name_len = strlen(name);
 87	int ret = 0;
 88
 89	if (name_len + size > BTRFS_MAX_XATTR_SIZE(root->fs_info))
 90		return -ENOSPC;
 91
 92	path = btrfs_alloc_path();
 93	if (!path)
 94		return -ENOMEM;
 95	path->skip_release_on_error = 1;
 96
 97	if (!value) {
 98		di = btrfs_lookup_xattr(trans, root, path,
 99				btrfs_ino(BTRFS_I(inode)), name, name_len, -1);
100		if (!di && (flags & XATTR_REPLACE))
101			ret = -ENODATA;
102		else if (IS_ERR(di))
103			ret = PTR_ERR(di);
104		else if (di)
105			ret = btrfs_delete_one_dir_name(trans, root, path, di);
106		goto out;
107	}
108
109	/*
110	 * For a replace we can't just do the insert blindly.
111	 * Do a lookup first (read-only btrfs_search_slot), and return if xattr
112	 * doesn't exist. If it exists, fall down below to the insert/replace
113	 * path - we can't race with a concurrent xattr delete, because the VFS
114	 * locks the inode's i_mutex before calling setxattr or removexattr.
115	 */
116	if (flags & XATTR_REPLACE) {
117		ASSERT(inode_is_locked(inode));
118		di = btrfs_lookup_xattr(NULL, root, path,
119				btrfs_ino(BTRFS_I(inode)), name, name_len, 0);
120		if (!di)
121			ret = -ENODATA;
122		else if (IS_ERR(di))
123			ret = PTR_ERR(di);
 
 
 
 
 
 
124		if (ret)
125			goto out;
126		btrfs_release_path(path);
127		di = NULL;
128	}
129
130	ret = btrfs_insert_xattr_item(trans, root, path, btrfs_ino(BTRFS_I(inode)),
131				      name, name_len, value, size);
132	if (ret == -EOVERFLOW) {
133		/*
134		 * We have an existing item in a leaf, split_leaf couldn't
135		 * expand it. That item might have or not a dir_item that
136		 * matches our target xattr, so lets check.
137		 */
138		ret = 0;
139		btrfs_assert_tree_locked(path->nodes[0]);
140		di = btrfs_match_dir_item_name(fs_info, path, name, name_len);
141		if (!di && !(flags & XATTR_REPLACE)) {
142			ret = -ENOSPC;
 
 
143			goto out;
144		}
145	} else if (ret == -EEXIST) {
146		ret = 0;
147		di = btrfs_match_dir_item_name(fs_info, path, name, name_len);
148		ASSERT(di); /* logic error */
149	} else if (ret) {
150		goto out;
151	}
152
153	if (di && (flags & XATTR_CREATE)) {
 
 
 
 
 
 
 
 
 
 
 
154		ret = -EEXIST;
155		goto out;
156	}
157
158	if (di) {
 
 
159		/*
160		 * We're doing a replace, and it must be atomic, that is, at
161		 * any point in time we have either the old or the new xattr
162		 * value in the tree. We don't want readers (getxattr and
163		 * listxattrs) to miss a value, this is specially important
164		 * for ACLs.
165		 */
166		const int slot = path->slots[0];
167		struct extent_buffer *leaf = path->nodes[0];
168		const u16 old_data_len = btrfs_dir_data_len(leaf, di);
169		const u32 item_size = btrfs_item_size_nr(leaf, slot);
170		const u32 data_size = sizeof(*di) + name_len + size;
171		struct btrfs_item *item;
172		unsigned long data_ptr;
173		char *ptr;
174
175		if (size > old_data_len) {
176			if (btrfs_leaf_free_space(fs_info, leaf) <
177			    (size - old_data_len)) {
178				ret = -ENOSPC;
179				goto out;
180			}
181		}
182
183		if (old_data_len + name_len + sizeof(*di) == item_size) {
184			/* No other xattrs packed in the same leaf item. */
185			if (size > old_data_len)
186				btrfs_extend_item(fs_info, path,
187						  size - old_data_len);
188			else if (size < old_data_len)
189				btrfs_truncate_item(fs_info, path,
190						    data_size, 1);
191		} else {
192			/* There are other xattrs packed in the same item. */
193			ret = btrfs_delete_one_dir_name(trans, root, path, di);
194			if (ret)
195				goto out;
196			btrfs_extend_item(fs_info, path, data_size);
197		}
198
199		item = btrfs_item_nr(slot);
200		ptr = btrfs_item_ptr(leaf, slot, char);
201		ptr += btrfs_item_size(leaf, item) - data_size;
202		di = (struct btrfs_dir_item *)ptr;
203		btrfs_set_dir_data_len(leaf, di, size);
204		data_ptr = ((unsigned long)(di + 1)) + name_len;
205		write_extent_buffer(leaf, value, data_ptr, size);
206		btrfs_mark_buffer_dirty(leaf);
207	} else {
208		/*
209		 * Insert, and we had space for the xattr, so path->slots[0] is
210		 * where our xattr dir_item is and btrfs_insert_xattr_item()
211		 * filled it.
212		 */
 
 
 
 
213	}
214out:
215	btrfs_free_path(path);
216	return ret;
217}
218
219/*
220 * @value: "" makes the attribute to empty, NULL removes it
221 */
222int btrfs_setxattr(struct btrfs_trans_handle *trans,
223		     struct inode *inode, const char *name,
224		     const void *value, size_t size, int flags)
225{
226	struct btrfs_root *root = BTRFS_I(inode)->root;
227	int ret;
228
229	if (btrfs_root_readonly(root))
230		return -EROFS;
231
232	if (trans)
233		return do_setxattr(trans, inode, name, value, size, flags);
234
235	trans = btrfs_start_transaction(root, 2);
236	if (IS_ERR(trans))
237		return PTR_ERR(trans);
238
239	ret = do_setxattr(trans, inode, name, value, size, flags);
240	if (ret)
241		goto out;
242
243	inode_inc_iversion(inode);
244	inode->i_ctime = current_time(inode);
245	set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
246	ret = btrfs_update_inode(trans, root, inode);
247	BUG_ON(ret);
248out:
249	btrfs_end_transaction(trans);
250	return ret;
251}
252
253ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size)
254{
255	struct btrfs_key key;
256	struct inode *inode = d_inode(dentry);
257	struct btrfs_root *root = BTRFS_I(inode)->root;
258	struct btrfs_path *path;
259	int ret = 0;
 
 
260	size_t total_size = 0, size_left = size;
 
 
261
262	/*
263	 * ok we want all objects associated with this id.
264	 * NOTE: we set key.offset = 0; because we want to start with the
265	 * first xattr that we find and walk forward
266	 */
267	key.objectid = btrfs_ino(BTRFS_I(inode));
268	key.type = BTRFS_XATTR_ITEM_KEY;
269	key.offset = 0;
270
271	path = btrfs_alloc_path();
272	if (!path)
273		return -ENOMEM;
274	path->reada = READA_FORWARD;
275
276	/* search for our xattrs */
277	ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
278	if (ret < 0)
279		goto err;
280
281	while (1) {
282		struct extent_buffer *leaf;
283		int slot;
284		struct btrfs_dir_item *di;
285		struct btrfs_key found_key;
286		u32 item_size;
287		u32 cur;
288
289		leaf = path->nodes[0];
290		slot = path->slots[0];
291
292		/* this is where we start walking through the path */
293		if (slot >= btrfs_header_nritems(leaf)) {
294			/*
295			 * if we've reached the last slot in this leaf we need
296			 * to go to the next leaf and reset everything
297			 */
298			ret = btrfs_next_leaf(root, path);
299			if (ret < 0)
300				goto err;
301			else if (ret > 0)
302				break;
303			continue;
304		}
305
306		btrfs_item_key_to_cpu(leaf, &found_key, slot);
307
308		/* check to make sure this item is what we want */
309		if (found_key.objectid != key.objectid)
310			break;
311		if (found_key.type > BTRFS_XATTR_ITEM_KEY)
312			break;
313		if (found_key.type < BTRFS_XATTR_ITEM_KEY)
314			goto next_item;
315
316		di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
317		item_size = btrfs_item_size_nr(leaf, slot);
318		cur = 0;
319		while (cur < item_size) {
320			u16 name_len = btrfs_dir_name_len(leaf, di);
321			u16 data_len = btrfs_dir_data_len(leaf, di);
322			u32 this_len = sizeof(*di) + name_len + data_len;
323			unsigned long name_ptr = (unsigned long)(di + 1);
324
325			total_size += name_len + 1;
326			/*
327			 * We are just looking for how big our buffer needs to
328			 * be.
329			 */
330			if (!size)
331				goto next;
332
333			if (!buffer || (name_len + 1) > size_left) {
334				ret = -ERANGE;
335				goto err;
336			}
 
 
 
 
337
338			read_extent_buffer(leaf, buffer, name_ptr, name_len);
339			buffer[name_len] = '\0';
 
340
341			size_left -= name_len + 1;
342			buffer += name_len + 1;
343next:
344			cur += this_len;
345			di = (struct btrfs_dir_item *)((char *)di + this_len);
346		}
347next_item:
348		path->slots[0]++;
349	}
350	ret = total_size;
351
352err:
353	btrfs_free_path(path);
354
355	return ret;
356}
357
358static int btrfs_xattr_handler_get(const struct xattr_handler *handler,
359				   struct dentry *unused, struct inode *inode,
360				   const char *name, void *buffer, size_t size)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361{
362	name = xattr_full_name(handler, name);
363	return btrfs_getxattr(inode, name, buffer, size);
 
 
 
 
364}
365
366static int btrfs_xattr_handler_set(const struct xattr_handler *handler,
367				   struct dentry *unused, struct inode *inode,
368				   const char *name, const void *buffer,
369				   size_t size, int flags)
370{
371	name = xattr_full_name(handler, name);
372	return btrfs_setxattr(NULL, inode, name, buffer, size, flags);
 
 
 
 
 
 
 
 
 
373}
374
375static int btrfs_xattr_handler_set_prop(const struct xattr_handler *handler,
376					struct dentry *unused, struct inode *inode,
377					const char *name, const void *value,
378					size_t size, int flags)
379{
380	name = xattr_full_name(handler, name);
381	return btrfs_set_prop(inode, name, value, size, flags);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
382}
383
384static const struct xattr_handler btrfs_security_xattr_handler = {
385	.prefix = XATTR_SECURITY_PREFIX,
386	.get = btrfs_xattr_handler_get,
387	.set = btrfs_xattr_handler_set,
388};
389
390static const struct xattr_handler btrfs_trusted_xattr_handler = {
391	.prefix = XATTR_TRUSTED_PREFIX,
392	.get = btrfs_xattr_handler_get,
393	.set = btrfs_xattr_handler_set,
394};
 
395
396static const struct xattr_handler btrfs_user_xattr_handler = {
397	.prefix = XATTR_USER_PREFIX,
398	.get = btrfs_xattr_handler_get,
399	.set = btrfs_xattr_handler_set,
400};
 
 
401
402static const struct xattr_handler btrfs_btrfs_xattr_handler = {
403	.prefix = XATTR_BTRFS_PREFIX,
404	.get = btrfs_xattr_handler_get,
405	.set = btrfs_xattr_handler_set_prop,
406};
407
408const struct xattr_handler *btrfs_xattr_handlers[] = {
409	&btrfs_security_xattr_handler,
410#ifdef CONFIG_BTRFS_FS_POSIX_ACL
411	&posix_acl_access_xattr_handler,
412	&posix_acl_default_xattr_handler,
413#endif
414	&btrfs_trusted_xattr_handler,
415	&btrfs_user_xattr_handler,
416	&btrfs_btrfs_xattr_handler,
417	NULL,
418};
419
420static int btrfs_initxattrs(struct inode *inode,
421			    const struct xattr *xattr_array, void *fs_info)
422{
423	const struct xattr *xattr;
424	struct btrfs_trans_handle *trans = fs_info;
425	char *name;
426	int err = 0;
427
428	for (xattr = xattr_array; xattr->name != NULL; xattr++) {
429		name = kmalloc(XATTR_SECURITY_PREFIX_LEN +
430			       strlen(xattr->name) + 1, GFP_KERNEL);
431		if (!name) {
432			err = -ENOMEM;
433			break;
434		}
435		strcpy(name, XATTR_SECURITY_PREFIX);
436		strcpy(name + XATTR_SECURITY_PREFIX_LEN, xattr->name);
437		err = btrfs_setxattr(trans, inode, name, xattr->value,
438				xattr->value_len, 0);
439		kfree(name);
440		if (err < 0)
441			break;
442	}
443	return err;
444}
445
446int btrfs_xattr_security_init(struct btrfs_trans_handle *trans,
447			      struct inode *inode, struct inode *dir,
448			      const struct qstr *qstr)
449{
450	return security_inode_init_security(inode, dir, qstr,
451					    &btrfs_initxattrs, trans);
452}
v3.15
 
  1/*
  2 * Copyright (C) 2007 Red Hat.  All rights reserved.
  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/init.h>
 20#include <linux/fs.h>
 21#include <linux/slab.h>
 22#include <linux/rwsem.h>
 23#include <linux/xattr.h>
 24#include <linux/security.h>
 25#include <linux/posix_acl_xattr.h>
 
 26#include "ctree.h"
 27#include "btrfs_inode.h"
 28#include "transaction.h"
 29#include "xattr.h"
 30#include "disk-io.h"
 31#include "props.h"
 
 32
 33
 34ssize_t __btrfs_getxattr(struct inode *inode, const char *name,
 35				void *buffer, size_t size)
 36{
 37	struct btrfs_dir_item *di;
 38	struct btrfs_root *root = BTRFS_I(inode)->root;
 39	struct btrfs_path *path;
 40	struct extent_buffer *leaf;
 41	int ret = 0;
 42	unsigned long data_ptr;
 43
 44	path = btrfs_alloc_path();
 45	if (!path)
 46		return -ENOMEM;
 47
 48	/* lookup the xattr by name */
 49	di = btrfs_lookup_xattr(NULL, root, path, btrfs_ino(inode), name,
 50				strlen(name), 0);
 51	if (!di) {
 52		ret = -ENODATA;
 53		goto out;
 54	} else if (IS_ERR(di)) {
 55		ret = PTR_ERR(di);
 56		goto out;
 57	}
 58
 59	leaf = path->nodes[0];
 60	/* if size is 0, that means we want the size of the attr */
 61	if (!size) {
 62		ret = btrfs_dir_data_len(leaf, di);
 63		goto out;
 64	}
 65
 66	/* now get the data out of our dir_item */
 67	if (btrfs_dir_data_len(leaf, di) > size) {
 68		ret = -ERANGE;
 69		goto out;
 70	}
 71
 72	/*
 73	 * The way things are packed into the leaf is like this
 74	 * |struct btrfs_dir_item|name|data|
 75	 * where name is the xattr name, so security.foo, and data is the
 76	 * content of the xattr.  data_ptr points to the location in memory
 77	 * where the data starts in the in memory leaf
 78	 */
 79	data_ptr = (unsigned long)((char *)(di + 1) +
 80				   btrfs_dir_name_len(leaf, di));
 81	read_extent_buffer(leaf, buffer, data_ptr,
 82			   btrfs_dir_data_len(leaf, di));
 83	ret = btrfs_dir_data_len(leaf, di);
 84
 85out:
 86	btrfs_free_path(path);
 87	return ret;
 88}
 89
 90static int do_setxattr(struct btrfs_trans_handle *trans,
 91		       struct inode *inode, const char *name,
 92		       const void *value, size_t size, int flags)
 93{
 94	struct btrfs_dir_item *di;
 95	struct btrfs_root *root = BTRFS_I(inode)->root;
 
 96	struct btrfs_path *path;
 97	size_t name_len = strlen(name);
 98	int ret = 0;
 99
100	if (name_len + size > BTRFS_MAX_XATTR_SIZE(root))
101		return -ENOSPC;
102
103	path = btrfs_alloc_path();
104	if (!path)
105		return -ENOMEM;
 
 
 
 
 
 
 
 
 
 
 
 
 
106
 
 
 
 
 
 
 
107	if (flags & XATTR_REPLACE) {
108		di = btrfs_lookup_xattr(trans, root, path, btrfs_ino(inode), name,
109					name_len, -1);
110		if (IS_ERR(di)) {
 
 
 
111			ret = PTR_ERR(di);
112			goto out;
113		} else if (!di) {
114			ret = -ENODATA;
115			goto out;
116		}
117		ret = btrfs_delete_one_dir_name(trans, root, path, di);
118		if (ret)
119			goto out;
120		btrfs_release_path(path);
 
 
121
 
 
 
122		/*
123		 * remove the attribute
 
 
124		 */
125		if (!value)
126			goto out;
127	} else {
128		di = btrfs_lookup_xattr(NULL, root, path, btrfs_ino(inode),
129					name, name_len, 0);
130		if (IS_ERR(di)) {
131			ret = PTR_ERR(di);
132			goto out;
133		}
134		if (!di && !value)
135			goto out;
136		btrfs_release_path(path);
 
 
 
137	}
138
139again:
140	ret = btrfs_insert_xattr_item(trans, root, path, btrfs_ino(inode),
141				      name, name_len, value, size);
142	/*
143	 * If we're setting an xattr to a new value but the new value is say
144	 * exactly BTRFS_MAX_XATTR_SIZE, we could end up with EOVERFLOW getting
145	 * back from split_leaf.  This is because it thinks we'll be extending
146	 * the existing item size, but we're asking for enough space to add the
147	 * item itself.  So if we get EOVERFLOW just set ret to EEXIST and let
148	 * the rest of the function figure it out.
149	 */
150	if (ret == -EOVERFLOW)
151		ret = -EEXIST;
 
 
152
153	if (ret == -EEXIST) {
154		if (flags & XATTR_CREATE)
155			goto out;
156		/*
157		 * We can't use the path we already have since we won't have the
158		 * proper locking for a delete, so release the path and
159		 * re-lookup to delete the thing.
 
 
160		 */
161		btrfs_release_path(path);
162		di = btrfs_lookup_xattr(trans, root, path, btrfs_ino(inode),
163					name, name_len, -1);
164		if (IS_ERR(di)) {
165			ret = PTR_ERR(di);
166			goto out;
167		} else if (!di) {
168			/* Shouldn't happen but just in case... */
169			btrfs_release_path(path);
170			goto again;
 
 
 
 
 
171		}
172
173		ret = btrfs_delete_one_dir_name(trans, root, path, di);
174		if (ret)
175			goto out;
 
 
 
 
 
 
 
 
 
 
 
 
176
 
 
 
 
 
 
 
 
 
177		/*
178		 * We have a value to set, so go back and try to insert it now.
 
 
179		 */
180		if (value) {
181			btrfs_release_path(path);
182			goto again;
183		}
184	}
185out:
186	btrfs_free_path(path);
187	return ret;
188}
189
190/*
191 * @value: "" makes the attribute to empty, NULL removes it
192 */
193int __btrfs_setxattr(struct btrfs_trans_handle *trans,
194		     struct inode *inode, const char *name,
195		     const void *value, size_t size, int flags)
196{
197	struct btrfs_root *root = BTRFS_I(inode)->root;
198	int ret;
199
 
 
 
200	if (trans)
201		return do_setxattr(trans, inode, name, value, size, flags);
202
203	trans = btrfs_start_transaction(root, 2);
204	if (IS_ERR(trans))
205		return PTR_ERR(trans);
206
207	ret = do_setxattr(trans, inode, name, value, size, flags);
208	if (ret)
209		goto out;
210
211	inode_inc_iversion(inode);
212	inode->i_ctime = CURRENT_TIME;
213	set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
214	ret = btrfs_update_inode(trans, root, inode);
215	BUG_ON(ret);
216out:
217	btrfs_end_transaction(trans, root);
218	return ret;
219}
220
221ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size)
222{
223	struct btrfs_key key, found_key;
224	struct inode *inode = dentry->d_inode;
225	struct btrfs_root *root = BTRFS_I(inode)->root;
226	struct btrfs_path *path;
227	struct extent_buffer *leaf;
228	struct btrfs_dir_item *di;
229	int ret = 0, slot;
230	size_t total_size = 0, size_left = size;
231	unsigned long name_ptr;
232	size_t name_len;
233
234	/*
235	 * ok we want all objects associated with this id.
236	 * NOTE: we set key.offset = 0; because we want to start with the
237	 * first xattr that we find and walk forward
238	 */
239	key.objectid = btrfs_ino(inode);
240	btrfs_set_key_type(&key, BTRFS_XATTR_ITEM_KEY);
241	key.offset = 0;
242
243	path = btrfs_alloc_path();
244	if (!path)
245		return -ENOMEM;
246	path->reada = 2;
247
248	/* search for our xattrs */
249	ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
250	if (ret < 0)
251		goto err;
252
253	while (1) {
 
 
 
 
 
 
 
254		leaf = path->nodes[0];
255		slot = path->slots[0];
256
257		/* this is where we start walking through the path */
258		if (slot >= btrfs_header_nritems(leaf)) {
259			/*
260			 * if we've reached the last slot in this leaf we need
261			 * to go to the next leaf and reset everything
262			 */
263			ret = btrfs_next_leaf(root, path);
264			if (ret < 0)
265				goto err;
266			else if (ret > 0)
267				break;
268			continue;
269		}
270
271		btrfs_item_key_to_cpu(leaf, &found_key, slot);
272
273		/* check to make sure this item is what we want */
274		if (found_key.objectid != key.objectid)
275			break;
276		if (btrfs_key_type(&found_key) != BTRFS_XATTR_ITEM_KEY)
277			break;
 
 
278
279		di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
280		if (verify_dir_item(root, leaf, di))
281			goto next;
 
 
 
 
 
282
283		name_len = btrfs_dir_name_len(leaf, di);
284		total_size += name_len + 1;
 
 
 
 
 
285
286		/* we are just looking for how big our buffer needs to be */
287		if (!size)
288			goto next;
289
290		if (!buffer || (name_len + 1) > size_left) {
291			ret = -ERANGE;
292			goto err;
293		}
294
295		name_ptr = (unsigned long)(di + 1);
296		read_extent_buffer(leaf, buffer, name_ptr, name_len);
297		buffer[name_len] = '\0';
298
299		size_left -= name_len + 1;
300		buffer += name_len + 1;
301next:
 
 
 
 
302		path->slots[0]++;
303	}
304	ret = total_size;
305
306err:
307	btrfs_free_path(path);
308
309	return ret;
310}
311
312/*
313 * List of handlers for synthetic system.* attributes.  All real ondisk
314 * attributes are handled directly.
315 */
316const struct xattr_handler *btrfs_xattr_handlers[] = {
317#ifdef CONFIG_BTRFS_FS_POSIX_ACL
318	&posix_acl_access_xattr_handler,
319	&posix_acl_default_xattr_handler,
320#endif
321	NULL,
322};
323
324/*
325 * Check if the attribute is in a supported namespace.
326 *
327 * This applied after the check for the synthetic attributes in the system
328 * namespace.
329 */
330static bool btrfs_is_valid_xattr(const char *name)
331{
332	return !strncmp(name, XATTR_SECURITY_PREFIX,
333			XATTR_SECURITY_PREFIX_LEN) ||
334	       !strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN) ||
335	       !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) ||
336	       !strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN) ||
337		!strncmp(name, XATTR_BTRFS_PREFIX, XATTR_BTRFS_PREFIX_LEN);
338}
339
340ssize_t btrfs_getxattr(struct dentry *dentry, const char *name,
341		       void *buffer, size_t size)
 
 
342{
343	/*
344	 * If this is a request for a synthetic attribute in the system.*
345	 * namespace use the generic infrastructure to resolve a handler
346	 * for it via sb->s_xattr.
347	 */
348	if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
349		return generic_getxattr(dentry, name, buffer, size);
350
351	if (!btrfs_is_valid_xattr(name))
352		return -EOPNOTSUPP;
353	return __btrfs_getxattr(dentry->d_inode, name, buffer, size);
354}
355
356int btrfs_setxattr(struct dentry *dentry, const char *name, const void *value,
357		   size_t size, int flags)
 
 
358{
359	struct btrfs_root *root = BTRFS_I(dentry->d_inode)->root;
360
361	/*
362	 * The permission on security.* and system.* is not checked
363	 * in permission().
364	 */
365	if (btrfs_root_readonly(root))
366		return -EROFS;
367
368	/*
369	 * If this is a request for a synthetic attribute in the system.*
370	 * namespace use the generic infrastructure to resolve a handler
371	 * for it via sb->s_xattr.
372	 */
373	if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
374		return generic_setxattr(dentry, name, value, size, flags);
375
376	if (!btrfs_is_valid_xattr(name))
377		return -EOPNOTSUPP;
378
379	if (!strncmp(name, XATTR_BTRFS_PREFIX, XATTR_BTRFS_PREFIX_LEN))
380		return btrfs_set_prop(dentry->d_inode, name,
381				      value, size, flags);
382
383	if (size == 0)
384		value = "";  /* empty EA, do not remove */
385
386	return __btrfs_setxattr(NULL, dentry->d_inode, name, value, size,
387				flags);
388}
389
390int btrfs_removexattr(struct dentry *dentry, const char *name)
391{
392	struct btrfs_root *root = BTRFS_I(dentry->d_inode)->root;
 
 
393
394	/*
395	 * The permission on security.* and system.* is not checked
396	 * in permission().
397	 */
398	if (btrfs_root_readonly(root))
399		return -EROFS;
400
401	/*
402	 * If this is a request for a synthetic attribute in the system.*
403	 * namespace use the generic infrastructure to resolve a handler
404	 * for it via sb->s_xattr.
405	 */
406	if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
407		return generic_removexattr(dentry, name);
408
409	if (!btrfs_is_valid_xattr(name))
410		return -EOPNOTSUPP;
 
 
 
411
412	if (!strncmp(name, XATTR_BTRFS_PREFIX, XATTR_BTRFS_PREFIX_LEN))
413		return btrfs_set_prop(dentry->d_inode, name,
414				      NULL, 0, XATTR_REPLACE);
415
416	return __btrfs_setxattr(NULL, dentry->d_inode, name, NULL, 0,
417				XATTR_REPLACE);
418}
 
 
 
 
419
420static int btrfs_initxattrs(struct inode *inode,
421			    const struct xattr *xattr_array, void *fs_info)
422{
423	const struct xattr *xattr;
424	struct btrfs_trans_handle *trans = fs_info;
425	char *name;
426	int err = 0;
427
428	for (xattr = xattr_array; xattr->name != NULL; xattr++) {
429		name = kmalloc(XATTR_SECURITY_PREFIX_LEN +
430			       strlen(xattr->name) + 1, GFP_NOFS);
431		if (!name) {
432			err = -ENOMEM;
433			break;
434		}
435		strcpy(name, XATTR_SECURITY_PREFIX);
436		strcpy(name + XATTR_SECURITY_PREFIX_LEN, xattr->name);
437		err = __btrfs_setxattr(trans, inode, name,
438				       xattr->value, xattr->value_len, 0);
439		kfree(name);
440		if (err < 0)
441			break;
442	}
443	return err;
444}
445
446int btrfs_xattr_security_init(struct btrfs_trans_handle *trans,
447			      struct inode *inode, struct inode *dir,
448			      const struct qstr *qstr)
449{
450	return security_inode_init_security(inode, dir, qstr,
451					    &btrfs_initxattrs, trans);
452}