Blame view

fs/btrfs/xattr.c 10.8 KB
5103e947b   Josef Bacik   xattr support for...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  /*
   * Copyright (C) 2007 Red Hat.  All rights reserved.
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public
   * License v2 as published by the Free Software Foundation.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * General Public License for more details.
   *
   * You should have received a copy of the GNU General Public
   * License along with this program; if not, write to the
   * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   * Boston, MA 021110-1307, USA.
   */
  
  #include <linux/init.h>
  #include <linux/fs.h>
  #include <linux/slab.h>
  #include <linux/rwsem.h>
  #include <linux/xattr.h>
0279b4cd8   Jim Owens   Btrfs: selinux su...
24
  #include <linux/security.h>
5103e947b   Josef Bacik   xattr support for...
25
26
27
28
29
  #include "ctree.h"
  #include "btrfs_inode.h"
  #include "transaction.h"
  #include "xattr.h"
  #include "disk-io.h"
33268eaf0   Josef Bacik   Btrfs: Add ACL su...
30

5103e947b   Josef Bacik   xattr support for...
31

95819c057   Christoph Hellwig   Btrfs: optimize b...
32
33
  ssize_t __btrfs_getxattr(struct inode *inode, const char *name,
  				void *buffer, size_t size)
5103e947b   Josef Bacik   xattr support for...
34
35
36
37
38
  {
  	struct btrfs_dir_item *di;
  	struct btrfs_root *root = BTRFS_I(inode)->root;
  	struct btrfs_path *path;
  	struct extent_buffer *leaf;
5103e947b   Josef Bacik   xattr support for...
39
40
  	int ret = 0;
  	unsigned long data_ptr;
5103e947b   Josef Bacik   xattr support for...
41
42
  
  	path = btrfs_alloc_path();
95819c057   Christoph Hellwig   Btrfs: optimize b...
43
  	if (!path)
5103e947b   Josef Bacik   xattr support for...
44
  		return -ENOMEM;
5103e947b   Josef Bacik   xattr support for...
45

5103e947b   Josef Bacik   xattr support for...
46
  	/* lookup the xattr by name */
33345d015   Li Zefan   Btrfs: Always use...
47
  	di = btrfs_lookup_xattr(NULL, root, path, btrfs_ino(inode), name,
5103e947b   Josef Bacik   xattr support for...
48
  				strlen(name), 0);
070604040   Josef Bacik   Btrfs: cleanup xa...
49
  	if (!di) {
5103e947b   Josef Bacik   xattr support for...
50
51
  		ret = -ENODATA;
  		goto out;
070604040   Josef Bacik   Btrfs: cleanup xa...
52
53
54
  	} else if (IS_ERR(di)) {
  		ret = PTR_ERR(di);
  		goto out;
5103e947b   Josef Bacik   xattr support for...
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  	}
  
  	leaf = path->nodes[0];
  	/* if size is 0, that means we want the size of the attr */
  	if (!size) {
  		ret = btrfs_dir_data_len(leaf, di);
  		goto out;
  	}
  
  	/* now get the data out of our dir_item */
  	if (btrfs_dir_data_len(leaf, di) > size) {
  		ret = -ERANGE;
  		goto out;
  	}
070604040   Josef Bacik   Btrfs: cleanup xa...
69
70
71
72
73
74
75
76
  
  	/*
  	 * The way things are packed into the leaf is like this
  	 * |struct btrfs_dir_item|name|data|
  	 * where name is the xattr name, so security.foo, and data is the
  	 * content of the xattr.  data_ptr points to the location in memory
  	 * where the data starts in the in memory leaf
  	 */
5103e947b   Josef Bacik   xattr support for...
77
78
79
  	data_ptr = (unsigned long)((char *)(di + 1) +
  				   btrfs_dir_name_len(leaf, di));
  	read_extent_buffer(leaf, buffer, data_ptr,
3acd7ee87   Josef Bacik   Btrfs: xattr fixes
80
  			   btrfs_dir_data_len(leaf, di));
5103e947b   Josef Bacik   xattr support for...
81
82
83
  	ret = btrfs_dir_data_len(leaf, di);
  
  out:
5103e947b   Josef Bacik   xattr support for...
84
85
86
  	btrfs_free_path(path);
  	return ret;
  }
f34f57a3a   Yan, Zheng   Btrfs: Pass trans...
87
88
89
  static int do_setxattr(struct btrfs_trans_handle *trans,
  		       struct inode *inode, const char *name,
  		       const void *value, size_t size, int flags)
5103e947b   Josef Bacik   xattr support for...
90
91
92
  {
  	struct btrfs_dir_item *di;
  	struct btrfs_root *root = BTRFS_I(inode)->root;
5103e947b   Josef Bacik   xattr support for...
93
  	struct btrfs_path *path;
f34f57a3a   Yan, Zheng   Btrfs: Pass trans...
94
95
96
97
98
  	size_t name_len = strlen(name);
  	int ret = 0;
  
  	if (name_len + size > BTRFS_MAX_XATTR_SIZE(root))
  		return -ENOSPC;
5103e947b   Josef Bacik   xattr support for...
99
100
  
  	path = btrfs_alloc_path();
95819c057   Christoph Hellwig   Btrfs: optimize b...
101
  	if (!path)
5103e947b   Josef Bacik   xattr support for...
102
  		return -ENOMEM;
5103e947b   Josef Bacik   xattr support for...
103

fa09200b8   Josef Bacik   Btrfs: try to onl...
104
105
106
107
108
109
110
111
  	if (flags & XATTR_REPLACE) {
  		di = btrfs_lookup_xattr(trans, root, path, btrfs_ino(inode), name,
  					name_len, -1);
  		if (IS_ERR(di)) {
  			ret = PTR_ERR(di);
  			goto out;
  		} else if (!di) {
  			ret = -ENODATA;
5103e947b   Josef Bacik   xattr support for...
112
113
  			goto out;
  		}
5103e947b   Josef Bacik   xattr support for...
114
  		ret = btrfs_delete_one_dir_name(trans, root, path, di);
fa09200b8   Josef Bacik   Btrfs: try to onl...
115
116
  		if (ret)
  			goto out;
b3b4aa74b   David Sterba   btrfs: drop unuse...
117
  		btrfs_release_path(path);
4815053ab   David Sterba   btrfs: xattr: fix...
118
119
120
121
122
123
  
  		/*
  		 * remove the attribute
  		 */
  		if (!value)
  			goto out;
fa09200b8   Josef Bacik   Btrfs: try to onl...
124
  	}
5103e947b   Josef Bacik   xattr support for...
125

fa09200b8   Josef Bacik   Btrfs: try to onl...
126
127
128
  again:
  	ret = btrfs_insert_xattr_item(trans, root, path, btrfs_ino(inode),
  				      name, name_len, value, size);
ed3ee9f44   Josef Bacik   Btrfs: fix regres...
129
130
131
132
133
134
135
136
137
138
  	/*
  	 * If we're setting an xattr to a new value but the new value is say
  	 * exactly BTRFS_MAX_XATTR_SIZE, we could end up with EOVERFLOW getting
  	 * back from split_leaf.  This is because it thinks we'll be extending
  	 * the existing item size, but we're asking for enough space to add the
  	 * item itself.  So if we get EOVERFLOW just set ret to EEXIST and let
  	 * the rest of the function figure it out.
  	 */
  	if (ret == -EOVERFLOW)
  		ret = -EEXIST;
fa09200b8   Josef Bacik   Btrfs: try to onl...
139
140
  	if (ret == -EEXIST) {
  		if (flags & XATTR_CREATE)
5103e947b   Josef Bacik   xattr support for...
141
  			goto out;
fa09200b8   Josef Bacik   Btrfs: try to onl...
142
143
144
145
146
  		/*
  		 * We can't use the path we already have since we won't have the
  		 * proper locking for a delete, so release the path and
  		 * re-lookup to delete the thing.
  		 */
b3b4aa74b   David Sterba   btrfs: drop unuse...
147
  		btrfs_release_path(path);
fa09200b8   Josef Bacik   Btrfs: try to onl...
148
149
150
151
152
153
154
155
156
157
  		di = btrfs_lookup_xattr(trans, root, path, btrfs_ino(inode),
  					name, name_len, -1);
  		if (IS_ERR(di)) {
  			ret = PTR_ERR(di);
  			goto out;
  		} else if (!di) {
  			/* Shouldn't happen but just in case... */
  			btrfs_release_path(path);
  			goto again;
  		}
33268eaf0   Josef Bacik   Btrfs: Add ACL su...
158

fa09200b8   Josef Bacik   Btrfs: try to onl...
159
160
  		ret = btrfs_delete_one_dir_name(trans, root, path, di);
  		if (ret)
33268eaf0   Josef Bacik   Btrfs: Add ACL su...
161
  			goto out;
fa09200b8   Josef Bacik   Btrfs: try to onl...
162
163
164
165
166
167
168
  
  		/*
  		 * We have a value to set, so go back and try to insert it now.
  		 */
  		if (value) {
  			btrfs_release_path(path);
  			goto again;
33268eaf0   Josef Bacik   Btrfs: Add ACL su...
169
  		}
5103e947b   Josef Bacik   xattr support for...
170
  	}
f34f57a3a   Yan, Zheng   Btrfs: Pass trans...
171
172
173
174
  out:
  	btrfs_free_path(path);
  	return ret;
  }
4815053ab   David Sterba   btrfs: xattr: fix...
175
176
177
  /*
   * @value: "" makes the attribute to empty, NULL removes it
   */
f34f57a3a   Yan, Zheng   Btrfs: Pass trans...
178
179
180
181
182
183
184
185
186
  int __btrfs_setxattr(struct btrfs_trans_handle *trans,
  		     struct inode *inode, const char *name,
  		     const void *value, size_t size, int flags)
  {
  	struct btrfs_root *root = BTRFS_I(inode)->root;
  	int ret;
  
  	if (trans)
  		return do_setxattr(trans, inode, name, value, size, flags);
a22285a6a   Yan, Zheng   Btrfs: Integrate ...
187
188
189
  	trans = btrfs_start_transaction(root, 2);
  	if (IS_ERR(trans))
  		return PTR_ERR(trans);
5103e947b   Josef Bacik   xattr support for...
190

f34f57a3a   Yan, Zheng   Btrfs: Pass trans...
191
192
193
194
195
196
197
198
199
  	ret = do_setxattr(trans, inode, name, value, size, flags);
  	if (ret)
  		goto out;
  
  	inode->i_ctime = CURRENT_TIME;
  	ret = btrfs_update_inode(trans, root, inode);
  	BUG_ON(ret);
  out:
  	btrfs_end_transaction_throttle(trans, root);
5103e947b   Josef Bacik   xattr support for...
200
201
202
203
204
205
206
207
208
  	return ret;
  }
  
  ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size)
  {
  	struct btrfs_key key, found_key;
  	struct inode *inode = dentry->d_inode;
  	struct btrfs_root *root = BTRFS_I(inode)->root;
  	struct btrfs_path *path;
5103e947b   Josef Bacik   xattr support for...
209
210
  	struct extent_buffer *leaf;
  	struct btrfs_dir_item *di;
2e6a00356   Li Zefan   Btrfs: Check if b...
211
  	int ret = 0, slot;
eaa47d861   Christoph Hellwig   btrfs: optmize li...
212
  	size_t total_size = 0, size_left = size;
5103e947b   Josef Bacik   xattr support for...
213
  	unsigned long name_ptr;
eaa47d861   Christoph Hellwig   btrfs: optmize li...
214
  	size_t name_len;
5103e947b   Josef Bacik   xattr support for...
215
216
217
218
219
220
  
  	/*
  	 * ok we want all objects associated with this id.
  	 * NOTE: we set key.offset = 0; because we want to start with the
  	 * first xattr that we find and walk forward
  	 */
33345d015   Li Zefan   Btrfs: Always use...
221
  	key.objectid = btrfs_ino(inode);
5103e947b   Josef Bacik   xattr support for...
222
223
224
225
  	btrfs_set_key_type(&key, BTRFS_XATTR_ITEM_KEY);
  	key.offset = 0;
  
  	path = btrfs_alloc_path();
5103e947b   Josef Bacik   xattr support for...
226
227
  	if (!path)
  		return -ENOMEM;
1caf9342f   Josef Bacik   Btrfs: Make ACLs ...
228
  	path->reada = 2;
5103e947b   Josef Bacik   xattr support for...
229

5103e947b   Josef Bacik   xattr support for...
230
231
232
233
  	/* search for our xattrs */
  	ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
  	if (ret < 0)
  		goto err;
2e6a00356   Li Zefan   Btrfs: Check if b...
234

5103e947b   Josef Bacik   xattr support for...
235
236
  	while (1) {
  		leaf = path->nodes[0];
5103e947b   Josef Bacik   xattr support for...
237
238
239
  		slot = path->slots[0];
  
  		/* this is where we start walking through the path */
2e6a00356   Li Zefan   Btrfs: Check if b...
240
  		if (slot >= btrfs_header_nritems(leaf)) {
5103e947b   Josef Bacik   xattr support for...
241
242
243
244
  			/*
  			 * if we've reached the last slot in this leaf we need
  			 * to go to the next leaf and reset everything
  			 */
2e6a00356   Li Zefan   Btrfs: Check if b...
245
246
247
248
249
250
  			ret = btrfs_next_leaf(root, path);
  			if (ret < 0)
  				goto err;
  			else if (ret > 0)
  				break;
  			continue;
5103e947b   Josef Bacik   xattr support for...
251
  		}
5103e947b   Josef Bacik   xattr support for...
252

5103e947b   Josef Bacik   xattr support for...
253
254
255
256
257
258
259
260
261
  		btrfs_item_key_to_cpu(leaf, &found_key, slot);
  
  		/* check to make sure this item is what we want */
  		if (found_key.objectid != key.objectid)
  			break;
  		if (btrfs_key_type(&found_key) != BTRFS_XATTR_ITEM_KEY)
  			break;
  
  		di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
22a94d44b   Josef Bacik   Btrfs: add checks...
262
263
  		if (verify_dir_item(root, leaf, di))
  			continue;
5103e947b   Josef Bacik   xattr support for...
264

eaa47d861   Christoph Hellwig   btrfs: optmize li...
265
266
  		name_len = btrfs_dir_name_len(leaf, di);
  		total_size += name_len + 1;
5103e947b   Josef Bacik   xattr support for...
267
268
269
  
  		/* we are just looking for how big our buffer needs to be */
  		if (!size)
2e6a00356   Li Zefan   Btrfs: Check if b...
270
  			goto next;
5103e947b   Josef Bacik   xattr support for...
271

eaa47d861   Christoph Hellwig   btrfs: optmize li...
272
  		if (!buffer || (name_len + 1) > size_left) {
5103e947b   Josef Bacik   xattr support for...
273
  			ret = -ERANGE;
b16281c30   Yehuda Sadeh Weinraub   Btrfs: fix return...
274
  			goto err;
5103e947b   Josef Bacik   xattr support for...
275
  		}
eaa47d861   Christoph Hellwig   btrfs: optmize li...
276
277
278
279
280
281
  		name_ptr = (unsigned long)(di + 1);
  		read_extent_buffer(leaf, buffer, name_ptr, name_len);
  		buffer[name_len] = '\0';
  
  		size_left -= name_len + 1;
  		buffer += name_len + 1;
2e6a00356   Li Zefan   Btrfs: Check if b...
282
283
  next:
  		path->slots[0]++;
5103e947b   Josef Bacik   xattr support for...
284
285
286
287
  	}
  	ret = total_size;
  
  err:
5103e947b   Josef Bacik   xattr support for...
288
289
290
291
292
293
  	btrfs_free_path(path);
  
  	return ret;
  }
  
  /*
95819c057   Christoph Hellwig   Btrfs: optimize b...
294
295
296
   * List of handlers for synthetic system.* attributes.  All real ondisk
   * attributes are handled directly.
   */
f01cbd3f8   Stephen Hemminger   btrfs: constify x...
297
  const struct xattr_handler *btrfs_xattr_handlers[] = {
0eda294df   Chris Mason   Btrfs: fix btrfs ...
298
  #ifdef CONFIG_BTRFS_FS_POSIX_ACL
95819c057   Christoph Hellwig   Btrfs: optimize b...
299
300
301
302
303
304
305
306
307
308
309
  	&btrfs_xattr_acl_access_handler,
  	&btrfs_xattr_acl_default_handler,
  #endif
  	NULL,
  };
  
  /*
   * Check if the attribute is in a supported namespace.
   *
   * This applied after the check for the synthetic attributes in the system
   * namespace.
5103e947b   Josef Bacik   xattr support for...
310
   */
95819c057   Christoph Hellwig   Btrfs: optimize b...
311
312
  static bool btrfs_is_valid_xattr(const char *name)
  {
d397712bc   Chris Mason   Btrfs: Fix checkp...
313
314
  	return !strncmp(name, XATTR_SECURITY_PREFIX,
  			XATTR_SECURITY_PREFIX_LEN) ||
95819c057   Christoph Hellwig   Btrfs: optimize b...
315
316
317
  	       !strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN) ||
  	       !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) ||
  	       !strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN);
69a32ac51   Chris Mason   Btrfs: Change mag...
318
  }
95819c057   Christoph Hellwig   Btrfs: optimize b...
319
320
321
322
323
324
325
326
327
328
  ssize_t btrfs_getxattr(struct dentry *dentry, const char *name,
  		       void *buffer, size_t size)
  {
  	/*
  	 * If this is a request for a synthetic attribute in the system.*
  	 * namespace use the generic infrastructure to resolve a handler
  	 * for it via sb->s_xattr.
  	 */
  	if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
  		return generic_getxattr(dentry, name, buffer, size);
5103e947b   Josef Bacik   xattr support for...
329

95819c057   Christoph Hellwig   Btrfs: optimize b...
330
331
332
333
  	if (!btrfs_is_valid_xattr(name))
  		return -EOPNOTSUPP;
  	return __btrfs_getxattr(dentry->d_inode, name, buffer, size);
  }
5103e947b   Josef Bacik   xattr support for...
334

95819c057   Christoph Hellwig   Btrfs: optimize b...
335
336
337
  int btrfs_setxattr(struct dentry *dentry, const char *name, const void *value,
  		   size_t size, int flags)
  {
b83cc9693   Li Zefan   Btrfs: Add readon...
338
339
340
341
342
343
344
345
  	struct btrfs_root *root = BTRFS_I(dentry->d_inode)->root;
  
  	/*
  	 * The permission on security.* and system.* is not checked
  	 * in permission().
  	 */
  	if (btrfs_root_readonly(root))
  		return -EROFS;
95819c057   Christoph Hellwig   Btrfs: optimize b...
346
347
348
349
350
351
352
  	/*
  	 * If this is a request for a synthetic attribute in the system.*
  	 * namespace use the generic infrastructure to resolve a handler
  	 * for it via sb->s_xattr.
  	 */
  	if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
  		return generic_setxattr(dentry, name, value, size, flags);
5103e947b   Josef Bacik   xattr support for...
353

95819c057   Christoph Hellwig   Btrfs: optimize b...
354
355
  	if (!btrfs_is_valid_xattr(name))
  		return -EOPNOTSUPP;
5103e947b   Josef Bacik   xattr support for...
356

95819c057   Christoph Hellwig   Btrfs: optimize b...
357
358
  	if (size == 0)
  		value = "";  /* empty EA, do not remove */
f34f57a3a   Yan, Zheng   Btrfs: Pass trans...
359
360
361
  
  	return __btrfs_setxattr(NULL, dentry->d_inode, name, value, size,
  				flags);
95819c057   Christoph Hellwig   Btrfs: optimize b...
362
363
364
365
  }
  
  int btrfs_removexattr(struct dentry *dentry, const char *name)
  {
b83cc9693   Li Zefan   Btrfs: Add readon...
366
367
368
369
370
371
372
373
  	struct btrfs_root *root = BTRFS_I(dentry->d_inode)->root;
  
  	/*
  	 * The permission on security.* and system.* is not checked
  	 * in permission().
  	 */
  	if (btrfs_root_readonly(root))
  		return -EROFS;
95819c057   Christoph Hellwig   Btrfs: optimize b...
374
375
376
377
378
379
380
381
382
383
  	/*
  	 * If this is a request for a synthetic attribute in the system.*
  	 * namespace use the generic infrastructure to resolve a handler
  	 * for it via sb->s_xattr.
  	 */
  	if (!strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
  		return generic_removexattr(dentry, name);
  
  	if (!btrfs_is_valid_xattr(name))
  		return -EOPNOTSUPP;
f34f57a3a   Yan, Zheng   Btrfs: Pass trans...
384
385
386
  
  	return __btrfs_setxattr(NULL, dentry->d_inode, name, NULL, 0,
  				XATTR_REPLACE);
95819c057   Christoph Hellwig   Btrfs: optimize b...
387
  }
0279b4cd8   Jim Owens   Btrfs: selinux su...
388

9d8f13ba3   Mimi Zohar   security: new sec...
389
390
  int btrfs_initxattrs(struct inode *inode, const struct xattr *xattr_array,
  		     void *fs_info)
0279b4cd8   Jim Owens   Btrfs: selinux su...
391
  {
9d8f13ba3   Mimi Zohar   security: new sec...
392
393
  	const struct xattr *xattr;
  	struct btrfs_trans_handle *trans = fs_info;
0279b4cd8   Jim Owens   Btrfs: selinux su...
394
  	char *name;
9d8f13ba3   Mimi Zohar   security: new sec...
395
  	int err = 0;
0279b4cd8   Jim Owens   Btrfs: selinux su...
396

9d8f13ba3   Mimi Zohar   security: new sec...
397
398
399
400
401
402
403
  	for (xattr = xattr_array; xattr->name != NULL; xattr++) {
  		name = kmalloc(XATTR_SECURITY_PREFIX_LEN +
  			       strlen(xattr->name) + 1, GFP_NOFS);
  		if (!name) {
  			err = -ENOMEM;
  			break;
  		}
0279b4cd8   Jim Owens   Btrfs: selinux su...
404
  		strcpy(name, XATTR_SECURITY_PREFIX);
9d8f13ba3   Mimi Zohar   security: new sec...
405
406
407
  		strcpy(name + XATTR_SECURITY_PREFIX_LEN, xattr->name);
  		err = __btrfs_setxattr(trans, inode, name,
  				       xattr->value, xattr->value_len, 0);
0279b4cd8   Jim Owens   Btrfs: selinux su...
408
  		kfree(name);
9d8f13ba3   Mimi Zohar   security: new sec...
409
410
  		if (err < 0)
  			break;
0279b4cd8   Jim Owens   Btrfs: selinux su...
411
  	}
0279b4cd8   Jim Owens   Btrfs: selinux su...
412
413
  	return err;
  }
9d8f13ba3   Mimi Zohar   security: new sec...
414
415
416
417
418
419
420
421
  
  int btrfs_xattr_security_init(struct btrfs_trans_handle *trans,
  			      struct inode *inode, struct inode *dir,
  			      const struct qstr *qstr)
  {
  	return security_inode_init_security(inode, dir, qstr,
  					    &btrfs_initxattrs, trans);
  }