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 | |
Andreas Gruenbacher | 98e9cb5 | 2015-12-02 14:44:36 +0100 | [diff] [blame] | 22 | /* |
| 23 | * struct xattr_handler: When @name is set, match attributes with exactly that |
| 24 | * name. When @prefix is set instead, match attributes with that prefix and |
| 25 | * with a non-empty suffix. |
| 26 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | struct xattr_handler { |
Andreas Gruenbacher | 98e9cb5 | 2015-12-02 14:44:36 +0100 | [diff] [blame] | 28 | const char *name; |
Stephen Hemminger | bb43545 | 2010-05-13 17:53:14 -0700 | [diff] [blame] | 29 | const char *prefix; |
Andreas Gruenbacher | e409de9 | 2015-10-04 19:18:52 +0200 | [diff] [blame] | 30 | int flags; /* fs private flags */ |
Andreas Gruenbacher | 764a5c6 | 2015-12-02 14:44:43 +0100 | [diff] [blame] | 31 | bool (*list)(struct dentry *dentry); |
Andreas Gruenbacher | e409de9 | 2015-10-04 19:18:52 +0200 | [diff] [blame] | 32 | int (*get)(const struct xattr_handler *, struct dentry *dentry, |
| 33 | const char *name, void *buffer, size_t size); |
| 34 | int (*set)(const struct xattr_handler *, struct dentry *dentry, |
| 35 | const char *name, const void *buffer, size_t size, |
| 36 | int flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | }; |
| 38 | |
Andreas Gruenbacher | e409de9 | 2015-10-04 19:18:52 +0200 | [diff] [blame] | 39 | const char *xattr_full_name(const struct xattr_handler *, const char *); |
| 40 | |
Mimi Zohar | 9d8f13b | 2011-06-06 15:29:25 -0400 | [diff] [blame] | 41 | struct xattr { |
Tetsuo Handa | 9548906 | 2013-07-25 05:44:02 +0900 | [diff] [blame] | 42 | const char *name; |
Mimi Zohar | 9d8f13b | 2011-06-06 15:29:25 -0400 | [diff] [blame] | 43 | void *value; |
| 44 | size_t value_len; |
| 45 | }; |
| 46 | |
David P. Quigley | 4249259 | 2008-02-04 22:29:39 -0800 | [diff] [blame] | 47 | ssize_t xattr_getsecurity(struct inode *, const char *, void *, size_t); |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 48 | ssize_t vfs_getxattr(struct dentry *, const char *, void *, size_t); |
Bill Nottingham | 659564c | 2006-10-09 16:10:48 -0400 | [diff] [blame] | 49 | 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] | 50 | 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] | 51 | int vfs_setxattr(struct dentry *, const char *, const void *, size_t, int); |
| 52 | int vfs_removexattr(struct dentry *, const char *); |
Christoph Hellwig | 5be196e | 2006-01-09 20:51:55 -0800 | [diff] [blame] | 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | ssize_t generic_getxattr(struct dentry *dentry, const char *name, void *buffer, size_t size); |
| 55 | ssize_t generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size); |
| 56 | int generic_setxattr(struct dentry *dentry, const char *name, const void *value, size_t size, int flags); |
| 57 | int generic_removexattr(struct dentry *dentry, const char *name); |
Mimi Zohar | 1601fba | 2011-03-09 14:23:34 -0500 | [diff] [blame] | 58 | ssize_t vfs_getxattr_alloc(struct dentry *dentry, const char *name, |
| 59 | char **xattr_value, size_t size, gfp_t flags); |
Aristeu Rozanski | 38f3865 | 2012-08-23 16:53:28 -0400 | [diff] [blame] | 60 | |
Andreas Gruenbacher | 98e9cb5 | 2015-12-02 14:44:36 +0100 | [diff] [blame] | 61 | static inline const char *xattr_prefix(const struct xattr_handler *handler) |
| 62 | { |
| 63 | return handler->prefix ?: handler->name; |
| 64 | } |
| 65 | |
Aristeu Rozanski | 38f3865 | 2012-08-23 16:53:28 -0400 | [diff] [blame] | 66 | struct simple_xattrs { |
| 67 | struct list_head head; |
| 68 | spinlock_t lock; |
| 69 | }; |
| 70 | |
| 71 | struct simple_xattr { |
| 72 | struct list_head list; |
| 73 | char *name; |
| 74 | size_t size; |
| 75 | char value[0]; |
| 76 | }; |
| 77 | |
| 78 | /* |
| 79 | * initialize the simple_xattrs structure |
| 80 | */ |
| 81 | static inline void simple_xattrs_init(struct simple_xattrs *xattrs) |
| 82 | { |
| 83 | INIT_LIST_HEAD(&xattrs->head); |
| 84 | spin_lock_init(&xattrs->lock); |
| 85 | } |
| 86 | |
| 87 | /* |
| 88 | * free all the xattrs |
| 89 | */ |
| 90 | static inline void simple_xattrs_free(struct simple_xattrs *xattrs) |
| 91 | { |
| 92 | struct simple_xattr *xattr, *node; |
| 93 | |
| 94 | list_for_each_entry_safe(xattr, node, &xattrs->head, list) { |
| 95 | kfree(xattr->name); |
| 96 | kfree(xattr); |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | struct simple_xattr *simple_xattr_alloc(const void *value, size_t size); |
| 101 | int simple_xattr_get(struct simple_xattrs *xattrs, const char *name, |
| 102 | void *buffer, size_t size); |
| 103 | int simple_xattr_set(struct simple_xattrs *xattrs, const char *name, |
| 104 | const void *value, size_t size, int flags); |
Andreas Gruenbacher | 786534b | 2015-12-02 14:44:39 +0100 | [diff] [blame] | 105 | ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs, char *buffer, |
| 106 | size_t size); |
Aristeu Rozanski | 38f3865 | 2012-08-23 16:53:28 -0400 | [diff] [blame] | 107 | void simple_xattr_list_add(struct simple_xattrs *xattrs, |
| 108 | struct simple_xattr *new_xattr); |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | #endif /* _LINUX_XATTR_H */ |