blob: 1cc4c578deb910dbae0e3ca36186d28af8a506e1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Paris1dbe3942011-05-24 17:13:13 -070013
Aristeu Rozanski38f38652012-08-23 16:53:28 -040014#include <linux/slab.h>
Eric Paris1dbe3942011-05-24 17:13:13 -070015#include <linux/types.h>
Aristeu Rozanski38f38652012-08-23 16:53:28 -040016#include <linux/spinlock.h>
David Howells607ca462012-10-13 10:46:48 +010017#include <uapi/linux/xattr.h>
Eric Paris1dbe3942011-05-24 17:13:13 -070018
Adrian Bunk5b0a2072007-02-10 01:46:24 -080019struct inode;
20struct dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +010022/*
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 Torvalds1da177e2005-04-16 15:20:36 -070027struct xattr_handler {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +010028 const char *name;
Stephen Hemmingerbb435452010-05-13 17:53:14 -070029 const char *prefix;
Andreas Gruenbachere409de92015-10-04 19:18:52 +020030 int flags; /* fs private flags */
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010031 bool (*list)(struct dentry *dentry);
Andreas Gruenbachere409de92015-10-04 19:18:52 +020032 int (*get)(const struct xattr_handler *, struct dentry *dentry,
Al Virob2968212016-04-10 20:48:24 -040033 struct inode *inode, const char *name, void *buffer,
34 size_t size);
Andreas Gruenbachere409de92015-10-04 19:18:52 +020035 int (*set)(const struct xattr_handler *, struct dentry *dentry,
36 const char *name, const void *buffer, size_t size,
37 int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
Andreas Gruenbachere409de92015-10-04 19:18:52 +020040const char *xattr_full_name(const struct xattr_handler *, const char *);
41
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040042struct xattr {
Tetsuo Handa95489062013-07-25 05:44:02 +090043 const char *name;
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040044 void *value;
45 size_t value_len;
46};
47
David P. Quigley42492592008-02-04 22:29:39 -080048ssize_t xattr_getsecurity(struct inode *, const char *, void *, size_t);
David Howells8f0cfa52008-04-29 00:59:41 -070049ssize_t vfs_getxattr(struct dentry *, const char *, void *, size_t);
Bill Nottingham659564c2006-10-09 16:10:48 -040050ssize_t vfs_listxattr(struct dentry *d, char *list, size_t size);
David P. Quigleyb1ab7e42009-09-03 14:25:56 -040051int __vfs_setxattr_noperm(struct dentry *, const char *, const void *, size_t, int);
David Howells8f0cfa52008-04-29 00:59:41 -070052int vfs_setxattr(struct dentry *, const char *, const void *, size_t, int);
53int vfs_removexattr(struct dentry *, const char *);
Christoph Hellwig5be196e2006-01-09 20:51:55 -080054
Al Viroce23e642016-04-11 00:48:00 -040055ssize_t generic_getxattr(struct dentry *dentry, struct inode *inode, const char *name, void *buffer, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056ssize_t generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size);
57int generic_setxattr(struct dentry *dentry, const char *name, const void *value, size_t size, int flags);
58int generic_removexattr(struct dentry *dentry, const char *name);
Mimi Zohar1601fba2011-03-09 14:23:34 -050059ssize_t vfs_getxattr_alloc(struct dentry *dentry, const char *name,
60 char **xattr_value, size_t size, gfp_t flags);
Aristeu Rozanski38f38652012-08-23 16:53:28 -040061
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +010062static inline const char *xattr_prefix(const struct xattr_handler *handler)
63{
64 return handler->prefix ?: handler->name;
65}
66
Aristeu Rozanski38f38652012-08-23 16:53:28 -040067struct simple_xattrs {
68 struct list_head head;
69 spinlock_t lock;
70};
71
72struct simple_xattr {
73 struct list_head list;
74 char *name;
75 size_t size;
76 char value[0];
77};
78
79/*
80 * initialize the simple_xattrs structure
81 */
82static inline void simple_xattrs_init(struct simple_xattrs *xattrs)
83{
84 INIT_LIST_HEAD(&xattrs->head);
85 spin_lock_init(&xattrs->lock);
86}
87
88/*
89 * free all the xattrs
90 */
91static inline void simple_xattrs_free(struct simple_xattrs *xattrs)
92{
93 struct simple_xattr *xattr, *node;
94
95 list_for_each_entry_safe(xattr, node, &xattrs->head, list) {
96 kfree(xattr->name);
97 kfree(xattr);
98 }
99}
100
101struct simple_xattr *simple_xattr_alloc(const void *value, size_t size);
102int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
103 void *buffer, size_t size);
104int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
105 const void *value, size_t size, int flags);
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100106ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs, char *buffer,
107 size_t size);
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400108void simple_xattr_list_add(struct simple_xattrs *xattrs,
109 struct simple_xattr *new_xattr);
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#endif /* _LINUX_XATTR_H */