2 * Copyright (C) 2007 Red Hat. All rights reserved.
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.
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.
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.
19 #include <linux/init.h>
21 #include <linux/slab.h>
22 #include <linux/rwsem.h>
23 #include <linux/xattr.h>
25 #include "btrfs_inode.h"
26 #include "transaction.h"
29 static struct xattr_handler *btrfs_xattr_handler_map[] = {
30 [BTRFS_XATTR_INDEX_USER] = &btrfs_xattr_user_handler,
31 #ifdef CONFIG_FS_POSIX_ACL
32 // [BTRFS_XATTR_INDEX_POSIX_ACL_ACCESS] = &btrfs_xattr_acl_access_handler,
33 // [BTRFS_XATTR_INDEX_POSIX_ACL_DEFAULT] = &btrfs_xattr_acl_default_handler,
35 [BTRFS_XATTR_INDEX_TRUSTED] = &btrfs_xattr_trusted_handler,
36 [BTRFS_XATTR_INDEX_SECURITY] = &btrfs_xattr_security_handler,
37 // [BTRFS_XATTR_INDEX_SYSTEM] = &btrfs_xattr_system_handler,
39 struct xattr_handler *btrfs_xattr_handlers[] = {
40 &btrfs_xattr_user_handler,
41 #ifdef CONFIG_FS_POSIX_ACL
42 // &btrfs_xattr_acl_access_handler,
43 // &btrfs_xattr_acl_default_handler,
45 &btrfs_xattr_trusted_handler,
46 &btrfs_xattr_security_handler,
47 // &btrfs_xattr_system_handler,
52 * @param name - the xattr name
53 * @return - the xattr_handler for the xattr, NULL if its not found
55 * use this with listxattr where we don't already know the type of xattr we
58 static struct xattr_handler *find_btrfs_xattr_handler(struct extent_buffer *l,
59 unsigned long name_ptr,
62 struct xattr_handler *handler = NULL;
65 for (handler = btrfs_xattr_handlers[i]; handler != NULL; i++,
66 handler = btrfs_xattr_handlers[i]) {
67 u16 prefix_len = strlen(handler->prefix);
69 if (name_len < prefix_len)
72 if (memcmp_extent_buffer(l, handler->prefix, name_ptr,
81 * @param name_index - the index for the xattr handler
82 * @return the xattr_handler if we found it, NULL otherwise
84 * use this if we know the type of the xattr already
86 static struct xattr_handler *btrfs_xattr_handler(int name_index)
88 struct xattr_handler *handler = NULL;
90 if (name_index >= 0 &&
91 name_index < ARRAY_SIZE(btrfs_xattr_handler_map))
92 handler = btrfs_xattr_handler_map[name_index];
97 static inline char *get_name(const char *name, int name_index)
100 struct xattr_handler *handler = btrfs_xattr_handler(name_index);
106 prefix_len = strlen(handler->prefix);
108 ret = kmalloc(strlen(name) + prefix_len + 1, GFP_KERNEL);
112 memcpy(ret, handler->prefix, prefix_len);
113 memcpy(ret+prefix_len, name, strlen(name));
114 ret[prefix_len + strlen(name)] = '\0';
119 size_t btrfs_xattr_generic_list(struct inode *inode, char *list,
120 size_t list_size, const char *name,
123 if (list && (name_len+1) <= list_size) {
124 memcpy(list, name, name_len);
125 list[name_len] = '\0';
132 ssize_t btrfs_xattr_get(struct inode *inode, int name_index,
133 const char *attr_name, void *buffer, size_t size)
135 struct btrfs_dir_item *di;
136 struct btrfs_root *root = BTRFS_I(inode)->root;
137 struct btrfs_path *path;
138 struct extent_buffer *leaf;
139 struct xattr_handler *handler = btrfs_xattr_handler(name_index);
141 unsigned long data_ptr;
146 name = get_name(attr_name, name_index);
150 path = btrfs_alloc_path();
156 mutex_lock(&root->fs_info->fs_mutex);
157 /* lookup the xattr by name */
158 di = btrfs_lookup_xattr(NULL, root, path, inode->i_ino, name,
160 if (!di || IS_ERR(di)) {
165 leaf = path->nodes[0];
166 /* if size is 0, that means we want the size of the attr */
168 ret = btrfs_dir_data_len(leaf, di);
172 /* now get the data out of our dir_item */
173 if (btrfs_dir_data_len(leaf, di) > size) {
177 data_ptr = (unsigned long)((char *)(di + 1) +
178 btrfs_dir_name_len(leaf, di));
179 read_extent_buffer(leaf, buffer, data_ptr,
180 btrfs_dir_data_len(leaf, di));
181 ret = btrfs_dir_data_len(leaf, di);
184 mutex_unlock(&root->fs_info->fs_mutex);
186 btrfs_free_path(path);
190 int btrfs_xattr_set(struct inode *inode, int name_index,
191 const char *attr_name, const void *value, size_t size,
194 struct btrfs_dir_item *di;
195 struct btrfs_root *root = BTRFS_I(inode)->root;
196 struct btrfs_trans_handle *trans;
197 struct btrfs_path *path;
198 struct xattr_handler *handler = btrfs_xattr_handler(name_index);
200 int ret = 0, mod = 0;
203 name = get_name(attr_name, name_index);
207 path = btrfs_alloc_path();
213 mutex_lock(&root->fs_info->fs_mutex);
214 trans = btrfs_start_transaction(root, 1);
215 btrfs_set_trans_block_group(trans, inode);
217 /* first lets see if we already have this xattr */
218 di = btrfs_lookup_xattr(trans, root, path, inode->i_ino, name,
225 /* ok we already have this xattr, lets remove it */
227 /* if we want create only exit */
228 if (flags & XATTR_CREATE) {
233 ret = btrfs_delete_one_dir_name(trans, root, path, di);
236 btrfs_release_path(root, path);
238 /* if we don't have a value then we are removing the xattr */
243 } else if (flags & XATTR_REPLACE) {
244 /* we couldn't find the attr to replace, so error out */
249 /* ok we have to create a completely new xattr */
250 ret = btrfs_insert_xattr_item(trans, root, name, strlen(name),
251 value, size, inode->i_ino);
258 inode->i_ctime = CURRENT_TIME;
259 ret = btrfs_update_inode(trans, root, inode);
262 btrfs_end_transaction(trans, root);
263 mutex_unlock(&root->fs_info->fs_mutex);
265 btrfs_free_path(path);
270 ssize_t btrfs_listxattr(struct dentry *dentry, char *buffer, size_t size)
272 struct btrfs_key key, found_key;
273 struct inode *inode = dentry->d_inode;
274 struct btrfs_root *root = BTRFS_I(inode)->root;
275 struct btrfs_path *path;
276 struct btrfs_item *item;
277 struct extent_buffer *leaf;
278 struct btrfs_dir_item *di;
279 struct xattr_handler *handler;
280 int ret = 0, slot, advance;
281 size_t total_size = 0, size_left = size, written;
282 unsigned long name_ptr;
287 * ok we want all objects associated with this id.
288 * NOTE: we set key.offset = 0; because we want to start with the
289 * first xattr that we find and walk forward
291 key.objectid = inode->i_ino;
292 btrfs_set_key_type(&key, BTRFS_XATTR_ITEM_KEY);
295 path = btrfs_alloc_path();
300 mutex_lock(&root->fs_info->fs_mutex);
302 /* search for our xattrs */
303 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
309 leaf = path->nodes[0];
310 nritems = btrfs_header_nritems(leaf);
311 slot = path->slots[0];
313 /* this is where we start walking through the path */
314 if (advance || slot >= nritems) {
316 * if we've reached the last slot in this leaf we need
317 * to go to the next leaf and reset everything
319 if (slot >= nritems-1) {
320 ret = btrfs_next_leaf(root, path);
323 leaf = path->nodes[0];
324 nritems = btrfs_header_nritems(leaf);
325 slot = path->slots[0];
328 * just walking through the slots on this leaf
336 item = btrfs_item_nr(leaf, slot);
337 btrfs_item_key_to_cpu(leaf, &found_key, slot);
339 /* check to make sure this item is what we want */
340 if (found_key.objectid != key.objectid)
342 if (btrfs_key_type(&found_key) != BTRFS_XATTR_ITEM_KEY)
345 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
347 total_size += btrfs_dir_name_len(leaf, di)+1;
349 /* we are just looking for how big our buffer needs to be */
353 /* find our handler for this xattr */
354 name_ptr = (unsigned long)(di + 1);
355 handler = find_btrfs_xattr_handler(leaf, name_ptr,
356 btrfs_dir_name_len(leaf, di));
358 printk(KERN_ERR "btrfs: unsupported xattr found\n");
362 name = kmalloc(btrfs_dir_name_len(leaf, di), GFP_KERNEL);
363 read_extent_buffer(leaf, name, name_ptr,
364 btrfs_dir_name_len(leaf, di));
366 /* call the list function associated with this xattr */
367 written = handler->list(inode, buffer, size_left, name,
368 btrfs_dir_name_len(leaf, di));
376 size_left -= written;
382 mutex_unlock(&root->fs_info->fs_mutex);
383 btrfs_free_path(path);
389 * delete all the xattrs associated with the inode. fs_mutex should be
390 * held when we come into here
392 int btrfs_delete_xattrs(struct btrfs_trans_handle *trans,
393 struct btrfs_root *root, struct inode *inode)
395 struct btrfs_path *path;
396 struct btrfs_key key, found_key;
397 struct btrfs_item *item;
398 struct extent_buffer *leaf;
401 path = btrfs_alloc_path();
405 key.objectid = inode->i_ino;
406 btrfs_set_key_type(&key, BTRFS_XATTR_ITEM_KEY);
407 key.offset = (u64)-1;
410 /* look for our next xattr */
411 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
416 if (path->slots[0] == 0)
420 leaf = path->nodes[0];
421 item = btrfs_item_nr(leaf, path->slots[0]);
422 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
424 if (found_key.objectid != key.objectid)
426 if (btrfs_key_type(&found_key) != BTRFS_XATTR_ITEM_KEY)
429 ret = btrfs_del_item(trans, root, path);
431 btrfs_release_path(root, path);
435 btrfs_free_path(path);
443 #define BTRFS_XATTR_SETGET_FUNCS(name, index) \
444 static int btrfs_xattr_##name##_get(struct inode *inode, \
445 const char *name, void *value, \
450 return btrfs_xattr_get(inode, index, name, value, size); \
452 static int btrfs_xattr_##name##_set(struct inode *inode, \
453 const char *name, const void *value,\
454 size_t size, int flags) \
458 return btrfs_xattr_set(inode, index, name, value, size, flags); \
461 BTRFS_XATTR_SETGET_FUNCS(security, BTRFS_XATTR_INDEX_SECURITY);
462 BTRFS_XATTR_SETGET_FUNCS(system, BTRFS_XATTR_INDEX_SYSTEM);
463 BTRFS_XATTR_SETGET_FUNCS(user, BTRFS_XATTR_INDEX_USER);
464 BTRFS_XATTR_SETGET_FUNCS(trusted, BTRFS_XATTR_INDEX_TRUSTED);
466 struct xattr_handler btrfs_xattr_security_handler = {
467 .prefix = XATTR_SECURITY_PREFIX,
468 .list = btrfs_xattr_generic_list,
469 .get = btrfs_xattr_security_get,
470 .set = btrfs_xattr_security_set,
473 struct xattr_handler btrfs_xattr_system_handler = {
474 .prefix = XATTR_SYSTEM_PREFIX,
475 .list = btrfs_xattr_generic_list,
476 .get = btrfs_xattr_system_get,
477 .set = btrfs_xattr_system_set,
480 struct xattr_handler btrfs_xattr_user_handler = {
481 .prefix = XATTR_USER_PREFIX,
482 .list = btrfs_xattr_generic_list,
483 .get = btrfs_xattr_user_get,
484 .set = btrfs_xattr_user_set,
487 struct xattr_handler btrfs_xattr_trusted_handler = {
488 .prefix = XATTR_TRUSTED_PREFIX,
489 .list = btrfs_xattr_generic_list,
490 .get = btrfs_xattr_trusted_get,
491 .set = btrfs_xattr_trusted_set,