Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | File: linux/xattr.h |
| 3 | |
| 4 | Extended attributes handling. |
| 5 | |
| 6 | Copyright (C) 2001 by Andreas Gruenbacher <a.gruenbacher@computer.org> |
| 7 | Copyright (c) 2001-2002 Silicon Graphics, Inc. All Rights Reserved. |
| 8 | Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com> |
| 9 | */ |
| 10 | #ifndef _LINUX_XATTR_H |
| 11 | #define _LINUX_XATTR_H |
| 12 | |
Eric Paris | 1dbe394 | 2011-05-24 17:13:13 -0700 | [diff] [blame] | 13 | |
Aristeu Rozanski | 38f3865 | 2012-08-23 16:53:28 -0400 | [diff] [blame] | 14 | #include <linux/slab.h> |
Eric Paris | 1dbe394 | 2011-05-24 17:13:13 -0700 | [diff] [blame] | 15 | #include <linux/types.h> |
Aristeu Rozanski | 38f3865 | 2012-08-23 16:53:28 -0400 | [diff] [blame] | 16 | #include <linux/spinlock.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 17 | #include <uapi/linux/xattr.h> |
Eric Paris | 1dbe394 | 2011-05-24 17:13:13 -0700 | [diff] [blame] | 18 | |
Adrian Bunk | 5b0a207 | 2007-02-10 01:46:24 -0800 | [diff] [blame] | 19 | struct inode; |
| 20 | struct dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | struct xattr_handler { |
Stephen Hemminger | bb43545 | 2010-05-13 17:53:14 -0700 | [diff] [blame] | 23 | const char *prefix; |
Christoph Hellwig | 431547b | 2009-11-13 09:52:56 +0000 | [diff] [blame] | 24 | int flags; /* fs private flags passed back to the handlers */ |
| 25 | size_t (*list)(struct dentry *dentry, char *list, size_t list_size, |
| 26 | const char *name, size_t name_len, int handler_flags); |
| 27 | int (*get)(struct dentry *dentry, const char *name, void *buffer, |
| 28 | size_t size, int handler_flags); |
| 29 | int (*set)(struct dentry *dentry, const char *name, const void *buffer, |
| 30 | size_t size, int flags, int handler_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | }; |
| 32 | |
Mimi Zohar | 9d8f13b | 2011-06-06 15:29:25 -0400 | [diff] [blame] | 33 | struct xattr { |
| 34 | char *name; |
| 35 | void *value; |
| 36 | size_t value_len; |
| 37 | }; |
| 38 | |
David P. Quigley | 4249259 | 2008-02-04 22:29:39 -0800 | [diff] [blame] | 39 | ssize_t xattr_getsecurity(struct inode *, const char *, void *, size_t); |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 40 | ssize_t vfs_getxattr(struct dentry *, const char *, void *, size_t); |
Bill Nottingham | 659564c | 2006-10-09 16:10:48 -0400 | [diff] [blame] | 41 | ssize_t vfs_listxattr(struct dentry *d, char *list, size_t size); |
David P. Quigley | b1ab7e4 | 2009-09-03 14:25:56 -0400 | [diff] [blame] | 42 | int __vfs_setxattr_noperm(struct dentry *, const char *, const void *, size_t, int); |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 43 | int vfs_setxattr(struct dentry *, const char *, const void *, size_t, int); |
| 44 | int vfs_removexattr(struct dentry *, const char *); |
Christoph Hellwig | 5be196e | 2006-01-09 20:51:55 -0800 | [diff] [blame] | 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | ssize_t generic_getxattr(struct dentry *dentry, const char *name, void *buffer, size_t size); |
| 47 | ssize_t generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size); |
| 48 | int generic_setxattr(struct dentry *dentry, const char *name, const void *value, size_t size, int flags); |
| 49 | int generic_removexattr(struct dentry *dentry, const char *name); |
Mimi Zohar | 1601fba | 2011-03-09 14:23:34 -0500 | [diff] [blame] | 50 | ssize_t vfs_getxattr_alloc(struct dentry *dentry, const char *name, |
| 51 | char **xattr_value, size_t size, gfp_t flags); |
| 52 | int vfs_xattr_cmp(struct dentry *dentry, const char *xattr_name, |
| 53 | const char *value, size_t size, gfp_t flags); |
Aristeu Rozanski | 38f3865 | 2012-08-23 16:53:28 -0400 | [diff] [blame] | 54 | |
| 55 | struct simple_xattrs { |
| 56 | struct list_head head; |
| 57 | spinlock_t lock; |
| 58 | }; |
| 59 | |
| 60 | struct simple_xattr { |
| 61 | struct list_head list; |
| 62 | char *name; |
| 63 | size_t size; |
| 64 | char value[0]; |
| 65 | }; |
| 66 | |
| 67 | /* |
| 68 | * initialize the simple_xattrs structure |
| 69 | */ |
| 70 | static inline void simple_xattrs_init(struct simple_xattrs *xattrs) |
| 71 | { |
| 72 | INIT_LIST_HEAD(&xattrs->head); |
| 73 | spin_lock_init(&xattrs->lock); |
| 74 | } |
| 75 | |
| 76 | /* |
| 77 | * free all the xattrs |
| 78 | */ |
| 79 | static inline void simple_xattrs_free(struct simple_xattrs *xattrs) |
| 80 | { |
| 81 | struct simple_xattr *xattr, *node; |
| 82 | |
| 83 | list_for_each_entry_safe(xattr, node, &xattrs->head, list) { |
| 84 | kfree(xattr->name); |
| 85 | kfree(xattr); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | struct simple_xattr *simple_xattr_alloc(const void *value, size_t size); |
| 90 | int simple_xattr_get(struct simple_xattrs *xattrs, const char *name, |
| 91 | void *buffer, size_t size); |
| 92 | int simple_xattr_set(struct simple_xattrs *xattrs, const char *name, |
| 93 | const void *value, size_t size, int flags); |
| 94 | int simple_xattr_remove(struct simple_xattrs *xattrs, const char *name); |
| 95 | ssize_t simple_xattr_list(struct simple_xattrs *xattrs, char *buffer, |
| 96 | size_t size); |
| 97 | void simple_xattr_list_add(struct simple_xattrs *xattrs, |
| 98 | struct simple_xattr *new_xattr); |
| 99 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | #endif /* _LINUX_XATTR_H */ |