blob: 0d970fdc66e1c4c62f955ad908c01dea76d33f70 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 File: linux/xattr.h
4
5 Extended attributes handling.
6
7 Copyright (C) 2001 by Andreas Gruenbacher <a.gruenbacher@computer.org>
8 Copyright (c) 2001-2002 Silicon Graphics, Inc. All Rights Reserved.
9 Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
10*/
11#ifndef _LINUX_XATTR_H
12#define _LINUX_XATTR_H
13
Eric Paris1dbe3942011-05-24 17:13:13 -070014
Aristeu Rozanski38f38652012-08-23 16:53:28 -040015#include <linux/slab.h>
Eric Paris1dbe3942011-05-24 17:13:13 -070016#include <linux/types.h>
Aristeu Rozanski38f38652012-08-23 16:53:28 -040017#include <linux/spinlock.h>
David Howells607ca462012-10-13 10:46:48 +010018#include <uapi/linux/xattr.h>
Eric Paris1dbe3942011-05-24 17:13:13 -070019
Adrian Bunk5b0a2072007-02-10 01:46:24 -080020struct inode;
21struct dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +010023/*
24 * struct xattr_handler: When @name is set, match attributes with exactly that
25 * name. When @prefix is set instead, match attributes with that prefix and
26 * with a non-empty suffix.
27 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028struct xattr_handler {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +010029 const char *name;
Stephen Hemmingerbb435452010-05-13 17:53:14 -070030 const char *prefix;
Andreas Gruenbachere409de92015-10-04 19:18:52 +020031 int flags; /* fs private flags */
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +010032 bool (*list)(struct dentry *dentry);
Mark Salyzyn3484eba2019-11-04 08:57:10 -080033 int (*get)(const struct xattr_handler *handler, struct dentry *dentry,
Al Virob2968212016-04-10 20:48:24 -040034 struct inode *inode, const char *name, void *buffer,
Mark Salyzyn3484eba2019-11-04 08:57:10 -080035 size_t size, int flags);
36 int (*set)(const struct xattr_handler *handler, struct dentry *dentry,
Al Viro59301222016-05-27 10:19:30 -040037 struct inode *inode, const char *name, const void *buffer,
38 size_t size, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
Andreas Gruenbachere409de92015-10-04 19:18:52 +020041const char *xattr_full_name(const struct xattr_handler *, const char *);
42
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040043struct xattr {
Tetsuo Handa95489062013-07-25 05:44:02 +090044 const char *name;
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040045 void *value;
46 size_t value_len;
47};
48
Mark Salyzyn3484eba2019-11-04 08:57:10 -080049ssize_t __vfs_getxattr(struct dentry *dentry, struct inode *inode,
50 const char *name, void *buffer, size_t size, int flags);
David Howells8f0cfa52008-04-29 00:59:41 -070051ssize_t vfs_getxattr(struct dentry *, const char *, void *, size_t);
Bill Nottingham659564c2006-10-09 16:10:48 -040052ssize_t vfs_listxattr(struct dentry *d, char *list, size_t size);
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +020053int __vfs_setxattr(struct dentry *, struct inode *, const char *, const void *, size_t, int);
David P. Quigleyb1ab7e42009-09-03 14:25:56 -040054int __vfs_setxattr_noperm(struct dentry *, const char *, const void *, size_t, int);
Frank van der Linden11e64142020-06-23 22:39:18 +000055int __vfs_setxattr_locked(struct dentry *, const char *, const void *, size_t, int, struct inode **);
David Howells8f0cfa52008-04-29 00:59:41 -070056int vfs_setxattr(struct dentry *, const char *, const void *, size_t, int);
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +020057int __vfs_removexattr(struct dentry *, const char *);
Frank van der Linden11e64142020-06-23 22:39:18 +000058int __vfs_removexattr_locked(struct dentry *, const char *, struct inode **);
David Howells8f0cfa52008-04-29 00:59:41 -070059int vfs_removexattr(struct dentry *, const char *);
Christoph Hellwig5be196e2006-01-09 20:51:55 -080060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061ssize_t generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size);
Mimi Zohar1601fba2011-03-09 14:23:34 -050062ssize_t vfs_getxattr_alloc(struct dentry *dentry, const char *name,
63 char **xattr_value, size_t size, gfp_t flags);
Aristeu Rozanski38f38652012-08-23 16:53:28 -040064
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +010065static inline const char *xattr_prefix(const struct xattr_handler *handler)
66{
67 return handler->prefix ?: handler->name;
68}
69
Aristeu Rozanski38f38652012-08-23 16:53:28 -040070struct simple_xattrs {
71 struct list_head head;
72 spinlock_t lock;
73};
74
75struct simple_xattr {
76 struct list_head list;
77 char *name;
78 size_t size;
79 char value[0];
80};
81
82/*
83 * initialize the simple_xattrs structure
84 */
85static inline void simple_xattrs_init(struct simple_xattrs *xattrs)
86{
87 INIT_LIST_HEAD(&xattrs->head);
88 spin_lock_init(&xattrs->lock);
89}
90
91/*
92 * free all the xattrs
93 */
94static inline void simple_xattrs_free(struct simple_xattrs *xattrs)
95{
96 struct simple_xattr *xattr, *node;
97
98 list_for_each_entry_safe(xattr, node, &xattrs->head, list) {
99 kfree(xattr->name);
100 kfree(xattr);
101 }
102}
103
104struct simple_xattr *simple_xattr_alloc(const void *value, size_t size);
105int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
106 void *buffer, size_t size);
107int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
108 const void *value, size_t size, int flags);
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100109ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs, char *buffer,
110 size_t size);
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400111void simple_xattr_list_add(struct simple_xattrs *xattrs,
112 struct simple_xattr *new_xattr);
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#endif /* _LINUX_XATTR_H */