blob: 470ee0af32007ff0811da6e8f31ac259c14a1db4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 File: fs/xattr.c
3
4 Extended attribute handling.
5
6 Copyright (C) 2001 by Andreas Gruenbacher <a.gruenbacher@computer.org>
7 Copyright (C) 2001 SGI - Silicon Graphics, Inc <linux-xfs@oss.sgi.com>
8 Copyright (c) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
9 */
10#include <linux/fs.h>
11#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/file.h>
13#include <linux/xattr.h>
Dave Hansen18f335a2008-02-15 14:37:38 -080014#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/namei.h>
16#include <linux/security.h>
Mimi Zoharc7b87de2011-03-09 14:39:18 -050017#include <linux/evm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/syscalls.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050019#include <linux/export.h>
Robert Love0eeca282005-07-12 17:06:03 -040020#include <linux/fsnotify.h>
Amy Griffis73241cc2005-11-03 16:00:25 +000021#include <linux/audit.h>
Andrew Morton0d08d7b2012-04-05 14:25:07 -070022#include <linux/vmalloc.h>
Eric W. Biederman2f6f0652012-02-07 18:52:57 -080023#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080025#include <linux/uaccess.h>
Christoph Hellwig5be196e2006-01-09 20:51:55 -080026
Andreas Gruenbacherb6ba1172016-09-29 17:48:38 +020027static const char *
28strcmp_prefix(const char *a, const char *a_prefix)
29{
30 while (*a_prefix && *a == *a_prefix) {
31 a++;
32 a_prefix++;
33 }
34 return *a_prefix ? NULL : a;
35}
36
37/*
38 * In order to implement different sets of xattr operations for each xattr
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +020039 * prefix, a filesystem should create a null-terminated array of struct
40 * xattr_handler (one for each prefix) and hang a pointer to it off of the
41 * s_xattr field of the superblock.
Andreas Gruenbacherb6ba1172016-09-29 17:48:38 +020042 */
43#define for_each_xattr_handler(handlers, handler) \
44 if (handlers) \
45 for ((handler) = *(handlers)++; \
46 (handler) != NULL; \
47 (handler) = *(handlers)++)
48
49/*
50 * Find the xattr_handler with the matching prefix.
51 */
52static const struct xattr_handler *
Andreas Gruenbacherd0a5b992016-09-29 17:48:39 +020053xattr_resolve_name(struct inode *inode, const char **name)
Andreas Gruenbacherb6ba1172016-09-29 17:48:38 +020054{
Andreas Gruenbacherd0a5b992016-09-29 17:48:39 +020055 const struct xattr_handler **handlers = inode->i_sb->s_xattr;
Andreas Gruenbacherb6ba1172016-09-29 17:48:38 +020056 const struct xattr_handler *handler;
57
Andreas Gruenbacher5f6e59a2016-09-29 17:48:40 +020058 if (!(inode->i_opflags & IOP_XATTR)) {
59 if (unlikely(is_bad_inode(inode)))
60 return ERR_PTR(-EIO);
Andreas Gruenbacherd0a5b992016-09-29 17:48:39 +020061 return ERR_PTR(-EOPNOTSUPP);
Andreas Gruenbacher5f6e59a2016-09-29 17:48:40 +020062 }
Andreas Gruenbacherb6ba1172016-09-29 17:48:38 +020063 for_each_xattr_handler(handlers, handler) {
64 const char *n;
65
66 n = strcmp_prefix(*name, xattr_prefix(handler));
67 if (n) {
68 if (!handler->prefix ^ !*n) {
69 if (*n)
70 continue;
71 return ERR_PTR(-EINVAL);
72 }
73 *name = n;
74 return handler;
75 }
76 }
77 return ERR_PTR(-EOPNOTSUPP);
78}
79
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080080/*
81 * Check permissions for extended attribute access. This is a bit complicated
82 * because different namespaces have very different rules.
83 */
84static int
85xattr_permission(struct inode *inode, const char *name, int mask)
86{
87 /*
88 * We can never set or remove an extended attribute on a read-only
89 * filesystem or on an immutable / append-only inode.
90 */
91 if (mask & MAY_WRITE) {
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080092 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
93 return -EPERM;
Eric W. Biederman0bd23d092016-06-29 14:54:46 -050094 /*
95 * Updating an xattr will likely cause i_uid and i_gid
96 * to be writen back improperly if their true value is
97 * unknown to the vfs.
98 */
99 if (HAS_UNMAPPED_ID(inode))
100 return -EPERM;
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800101 }
102
103 /*
104 * No restriction for security.* and system.* from the VFS. Decision
105 * on these is left to the underlying filesystem / security module.
106 */
107 if (!strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) ||
108 !strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
109 return 0;
110
111 /*
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +0200112 * The trusted.* namespace can only be accessed by privileged users.
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800113 */
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +0200114 if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN)) {
115 if (!capable(CAP_SYS_ADMIN))
116 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
117 return 0;
118 }
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800119
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +0200120 /*
121 * In the user.* namespace, only regular files and directories can have
Andreas Gruenbacherf1f2d872006-11-02 22:07:29 -0800122 * extended attributes. For sticky directories, only the owner and
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +0200123 * privileged users can write attributes.
Andreas Gruenbacherf1f2d872006-11-02 22:07:29 -0800124 */
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800125 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) {
Andreas Gruenbacherf1f2d872006-11-02 22:07:29 -0800126 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +0200127 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
Andreas Gruenbacherf1f2d872006-11-02 22:07:29 -0800128 if (S_ISDIR(inode->i_mode) && (inode->i_mode & S_ISVTX) &&
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700129 (mask & MAY_WRITE) && !inode_owner_or_capable(inode))
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800130 return -EPERM;
131 }
132
Al Virof419a2e2008-07-22 00:07:17 -0400133 return inode_permission(inode, mask);
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800134}
135
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200136int
137__vfs_setxattr(struct dentry *dentry, struct inode *inode, const char *name,
138 const void *value, size_t size, int flags)
139{
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200140 const struct xattr_handler *handler;
141
142 handler = xattr_resolve_name(inode, &name);
143 if (IS_ERR(handler))
144 return PTR_ERR(handler);
145 if (!handler->set)
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200146 return -EOPNOTSUPP;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200147 if (size == 0)
148 value = ""; /* empty EA, do not remove */
149 return handler->set(handler, dentry, inode, name, value, size, flags);
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200150}
151EXPORT_SYMBOL(__vfs_setxattr);
152
David P. Quigleyb1ab7e42009-09-03 14:25:56 -0400153/**
154 * __vfs_setxattr_noperm - perform setxattr operation without performing
155 * permission checks.
156 *
157 * @dentry - object to perform setxattr on
158 * @name - xattr name to set
159 * @value - value to set @name to
160 * @size - size of @value
161 * @flags - flags to pass into filesystem operations
162 *
163 * returns the result of the internal setxattr or setsecurity operations.
164 *
165 * This function requires the caller to lock the inode's i_mutex before it
166 * is executed. It also assumes that the caller will make the appropriate
167 * permission checks.
168 */
169int __vfs_setxattr_noperm(struct dentry *dentry, const char *name,
170 const void *value, size_t size, int flags)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800171{
172 struct inode *inode = dentry->d_inode;
Andreas Gruenbacher4a590152016-11-13 21:23:34 +0100173 int error = -EAGAIN;
Andi Kleen69b45732011-05-28 08:25:51 -0700174 int issec = !strncmp(name, XATTR_SECURITY_PREFIX,
175 XATTR_SECURITY_PREFIX_LEN);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800176
Andi Kleen69b45732011-05-28 08:25:51 -0700177 if (issec)
178 inode->i_flags &= ~S_NOSEC;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200179 if (inode->i_opflags & IOP_XATTR) {
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200180 error = __vfs_setxattr(dentry, inode, name, value, size, flags);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800181 if (!error) {
182 fsnotify_xattr(dentry);
183 security_inode_post_setxattr(dentry, name, value,
184 size, flags);
185 }
Andreas Gruenbacher4a590152016-11-13 21:23:34 +0100186 } else {
Andreas Gruenbacher5f6e59a2016-09-29 17:48:40 +0200187 if (unlikely(is_bad_inode(inode)))
188 return -EIO;
Andreas Gruenbacher4a590152016-11-13 21:23:34 +0100189 }
190 if (error == -EAGAIN) {
191 error = -EOPNOTSUPP;
192
193 if (issec) {
194 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
195
196 error = security_inode_setsecurity(inode, suffix, value,
197 size, flags);
198 if (!error)
199 fsnotify_xattr(dentry);
200 }
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800201 }
David P. Quigleyb1ab7e42009-09-03 14:25:56 -0400202
203 return error;
204}
205
Frank van der Lindenfabe9d62020-06-23 22:39:18 +0000206/**
207 * __vfs_setxattr_locked: set an extended attribute while holding the inode
208 * lock
209 *
210 * @dentry - object to perform setxattr on
211 * @name - xattr name to set
212 * @value - value to set @name to
213 * @size - size of @value
214 * @flags - flags to pass into filesystem operations
215 * @delegated_inode - on return, will contain an inode pointer that
216 * a delegation was broken on, NULL if none.
217 */
David P. Quigleyb1ab7e42009-09-03 14:25:56 -0400218int
Frank van der Lindenfabe9d62020-06-23 22:39:18 +0000219__vfs_setxattr_locked(struct dentry *dentry, const char *name,
220 const void *value, size_t size, int flags,
221 struct inode **delegated_inode)
David P. Quigleyb1ab7e42009-09-03 14:25:56 -0400222{
223 struct inode *inode = dentry->d_inode;
224 int error;
225
226 error = xattr_permission(inode, name, MAY_WRITE);
227 if (error)
228 return error;
229
David P. Quigleyb1ab7e42009-09-03 14:25:56 -0400230 error = security_inode_setxattr(dentry, name, value, size, flags);
231 if (error)
232 goto out;
233
Frank van der Lindenfabe9d62020-06-23 22:39:18 +0000234 error = try_break_deleg(inode, delegated_inode);
235 if (error)
236 goto out;
237
David P. Quigleyb1ab7e42009-09-03 14:25:56 -0400238 error = __vfs_setxattr_noperm(dentry, name, value, size, flags);
239
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800240out:
Frank van der Lindenfabe9d62020-06-23 22:39:18 +0000241 return error;
242}
243EXPORT_SYMBOL_GPL(__vfs_setxattr_locked);
244
245int
246vfs_setxattr(struct dentry *dentry, const char *name, const void *value,
247 size_t size, int flags)
248{
249 struct inode *inode = dentry->d_inode;
250 struct inode *delegated_inode = NULL;
251 int error;
252
253retry_deleg:
254 inode_lock(inode);
255 error = __vfs_setxattr_locked(dentry, name, value, size, flags,
256 &delegated_inode);
Al Viro59551022016-01-22 15:40:57 -0500257 inode_unlock(inode);
Frank van der Lindenfabe9d62020-06-23 22:39:18 +0000258
259 if (delegated_inode) {
260 error = break_deleg_wait(&delegated_inode);
261 if (!error)
262 goto retry_deleg;
263 }
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800264 return error;
265}
266EXPORT_SYMBOL_GPL(vfs_setxattr);
267
Al Viro2220c5b2018-04-24 21:22:04 -0400268static ssize_t
David P. Quigley42492592008-02-04 22:29:39 -0800269xattr_getsecurity(struct inode *inode, const char *name, void *value,
270 size_t size)
271{
272 void *buffer = NULL;
273 ssize_t len;
274
275 if (!value || !size) {
276 len = security_inode_getsecurity(inode, name, &buffer, false);
277 goto out_noalloc;
278 }
279
280 len = security_inode_getsecurity(inode, name, &buffer, true);
281 if (len < 0)
282 return len;
283 if (size < len) {
284 len = -ERANGE;
285 goto out;
286 }
287 memcpy(value, buffer, len);
288out:
Casey Schaufler57e7ba02017-09-19 09:39:08 -0700289 kfree(buffer);
David P. Quigley42492592008-02-04 22:29:39 -0800290out_noalloc:
291 return len;
292}
David P. Quigley42492592008-02-04 22:29:39 -0800293
Mimi Zohar1601fba2011-03-09 14:23:34 -0500294/*
295 * vfs_getxattr_alloc - allocate memory, if necessary, before calling getxattr
296 *
297 * Allocate memory, if not already allocated, or re-allocate correct size,
298 * before retrieving the extended attribute.
299 *
300 * Returns the result of alloc, if failed, or the getxattr operation.
301 */
302ssize_t
303vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
304 size_t xattr_size, gfp_t flags)
305{
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200306 const struct xattr_handler *handler;
Mimi Zohar1601fba2011-03-09 14:23:34 -0500307 struct inode *inode = dentry->d_inode;
308 char *value = *xattr_value;
309 int error;
310
311 error = xattr_permission(inode, name, MAY_READ);
312 if (error)
313 return error;
314
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200315 handler = xattr_resolve_name(inode, &name);
316 if (IS_ERR(handler))
317 return PTR_ERR(handler);
318 if (!handler->get)
Mimi Zohar1601fba2011-03-09 14:23:34 -0500319 return -EOPNOTSUPP;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200320 error = handler->get(handler, dentry, inode, name, NULL, 0);
Mimi Zohar1601fba2011-03-09 14:23:34 -0500321 if (error < 0)
322 return error;
323
324 if (!value || (error > xattr_size)) {
325 value = krealloc(*xattr_value, error + 1, flags);
326 if (!value)
327 return -ENOMEM;
328 memset(value, 0, error + 1);
329 }
330
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200331 error = handler->get(handler, dentry, inode, name, value, error);
Mimi Zohar1601fba2011-03-09 14:23:34 -0500332 *xattr_value = value;
333 return error;
334}
335
David P. Quigley42492592008-02-04 22:29:39 -0800336ssize_t
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200337__vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
338 void *value, size_t size)
339{
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200340 const struct xattr_handler *handler;
341
342 handler = xattr_resolve_name(inode, &name);
343 if (IS_ERR(handler))
344 return PTR_ERR(handler);
345 if (!handler->get)
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200346 return -EOPNOTSUPP;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200347 return handler->get(handler, dentry, inode, name, value, size);
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200348}
349EXPORT_SYMBOL(__vfs_getxattr);
350
351ssize_t
David Howells8f0cfa52008-04-29 00:59:41 -0700352vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800353{
354 struct inode *inode = dentry->d_inode;
355 int error;
356
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800357 error = xattr_permission(inode, name, MAY_READ);
358 if (error)
359 return error;
360
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800361 error = security_inode_getxattr(dentry, name);
362 if (error)
363 return error;
364
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800365 if (!strncmp(name, XATTR_SECURITY_PREFIX,
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800366 XATTR_SECURITY_PREFIX_LEN)) {
367 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
David P. Quigley42492592008-02-04 22:29:39 -0800368 int ret = xattr_getsecurity(inode, suffix, value, size);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800369 /*
370 * Only overwrite the return value if a security module
371 * is actually active.
372 */
David P. Quigley4bea5802008-02-04 22:29:40 -0800373 if (ret == -EOPNOTSUPP)
374 goto nolsm;
375 return ret;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800376 }
David P. Quigley4bea5802008-02-04 22:29:40 -0800377nolsm:
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200378 return __vfs_getxattr(dentry, inode, name, value, size);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800379}
380EXPORT_SYMBOL_GPL(vfs_getxattr);
381
Bill Nottingham659564c2006-10-09 16:10:48 -0400382ssize_t
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200383vfs_listxattr(struct dentry *dentry, char *list, size_t size)
Bill Nottingham659564c2006-10-09 16:10:48 -0400384{
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200385 struct inode *inode = d_inode(dentry);
Bill Nottingham659564c2006-10-09 16:10:48 -0400386 ssize_t error;
387
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200388 error = security_inode_listxattr(dentry);
Bill Nottingham659564c2006-10-09 16:10:48 -0400389 if (error)
390 return error;
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200391 if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200392 error = inode->i_op->listxattr(dentry, list, size);
Bill Nottingham659564c2006-10-09 16:10:48 -0400393 } else {
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200394 error = security_inode_listsecurity(inode, list, size);
Bill Nottingham659564c2006-10-09 16:10:48 -0400395 if (size && error > size)
396 error = -ERANGE;
397 }
398 return error;
399}
400EXPORT_SYMBOL_GPL(vfs_listxattr);
401
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800402int
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200403__vfs_removexattr(struct dentry *dentry, const char *name)
404{
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200405 struct inode *inode = d_inode(dentry);
406 const struct xattr_handler *handler;
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200407
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200408 handler = xattr_resolve_name(inode, &name);
409 if (IS_ERR(handler))
410 return PTR_ERR(handler);
411 if (!handler->set)
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200412 return -EOPNOTSUPP;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200413 return handler->set(handler, dentry, inode, name, NULL, 0, XATTR_REPLACE);
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200414}
415EXPORT_SYMBOL(__vfs_removexattr);
416
Frank van der Lindenfabe9d62020-06-23 22:39:18 +0000417/**
418 * __vfs_removexattr_locked: set an extended attribute while holding the inode
419 * lock
420 *
421 * @dentry - object to perform setxattr on
422 * @name - name of xattr to remove
423 * @delegated_inode - on return, will contain an inode pointer that
424 * a delegation was broken on, NULL if none.
425 */
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200426int
Frank van der Lindenfabe9d62020-06-23 22:39:18 +0000427__vfs_removexattr_locked(struct dentry *dentry, const char *name,
428 struct inode **delegated_inode)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800429{
430 struct inode *inode = dentry->d_inode;
431 int error;
432
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800433 error = xattr_permission(inode, name, MAY_WRITE);
434 if (error)
435 return error;
436
Mimi Zohar2ab51f32011-03-23 17:23:06 -0400437 error = security_inode_removexattr(dentry, name);
Dmitry Kasatkin7c51bb002014-11-20 16:31:01 +0200438 if (error)
439 goto out;
Mimi Zohar2ab51f32011-03-23 17:23:06 -0400440
Frank van der Lindenfabe9d62020-06-23 22:39:18 +0000441 error = try_break_deleg(inode, delegated_inode);
442 if (error)
443 goto out;
444
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200445 error = __vfs_removexattr(dentry, name);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800446
Mimi Zoharc7b87de2011-03-09 14:39:18 -0500447 if (!error) {
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800448 fsnotify_xattr(dentry);
Mimi Zoharc7b87de2011-03-09 14:39:18 -0500449 evm_inode_post_removexattr(dentry, name);
450 }
Dmitry Kasatkin7c51bb002014-11-20 16:31:01 +0200451
452out:
Frank van der Lindenfabe9d62020-06-23 22:39:18 +0000453 return error;
454}
455EXPORT_SYMBOL_GPL(__vfs_removexattr_locked);
456
457int
458vfs_removexattr(struct dentry *dentry, const char *name)
459{
460 struct inode *inode = dentry->d_inode;
461 struct inode *delegated_inode = NULL;
462 int error;
463
464retry_deleg:
465 inode_lock(inode);
466 error = __vfs_removexattr_locked(dentry, name, &delegated_inode);
Al Viro59551022016-01-22 15:40:57 -0500467 inode_unlock(inode);
Frank van der Lindenfabe9d62020-06-23 22:39:18 +0000468
469 if (delegated_inode) {
470 error = break_deleg_wait(&delegated_inode);
471 if (!error)
472 goto retry_deleg;
473 }
474
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800475 return error;
476}
477EXPORT_SYMBOL_GPL(vfs_removexattr);
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479/*
480 * Extended attribute SET operations
481 */
482static long
David Howells8f0cfa52008-04-29 00:59:41 -0700483setxattr(struct dentry *d, const char __user *name, const void __user *value,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 size_t size, int flags)
485{
486 int error;
487 void *kvalue = NULL;
488 char kname[XATTR_NAME_MAX + 1];
489
490 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
491 return -EINVAL;
492
493 error = strncpy_from_user(kname, name, sizeof(kname));
494 if (error == 0 || error == sizeof(kname))
495 error = -ERANGE;
496 if (error < 0)
497 return error;
498
499 if (size) {
500 if (size > XATTR_SIZE_MAX)
501 return -E2BIG;
Michal Hocko752ade62017-05-08 15:57:27 -0700502 kvalue = kvmalloc(size, GFP_KERNEL);
503 if (!kvalue)
504 return -ENOMEM;
Andrew Morton44c82492012-04-05 14:25:07 -0700505 if (copy_from_user(kvalue, value, size)) {
506 error = -EFAULT;
507 goto out;
508 }
Eric W. Biederman2f6f0652012-02-07 18:52:57 -0800509 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
510 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
511 posix_acl_fix_xattr_from_user(kvalue, size);
Serge E. Hallyn8db6c342017-05-08 13:11:56 -0500512 else if (strcmp(kname, XATTR_NAME_CAPS) == 0) {
513 error = cap_convert_nscap(d, &kvalue, size);
514 if (error < 0)
515 goto out;
516 size = error;
517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800520 error = vfs_setxattr(d, kname, kvalue, size, flags);
Andrew Morton44c82492012-04-05 14:25:07 -0700521out:
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100522 kvfree(kvalue);
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return error;
525}
526
Eric Biggers8cc43112014-10-12 11:59:58 -0500527static int path_setxattr(const char __user *pathname,
528 const char __user *name, const void __user *value,
529 size_t size, int flags, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Al Viro2d8f3032008-07-22 09:59:21 -0400531 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 int error;
Jeff Layton68f1bb82012-12-11 12:10:15 -0500533retry:
534 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (error)
536 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400537 error = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800538 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400539 error = setxattr(path.dentry, name, value, size, flags);
540 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800541 }
Al Viro2d8f3032008-07-22 09:59:21 -0400542 path_put(&path);
Jeff Layton68f1bb82012-12-11 12:10:15 -0500543 if (retry_estale(error, lookup_flags)) {
544 lookup_flags |= LOOKUP_REVAL;
545 goto retry;
546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return error;
548}
549
Eric Biggers8cc43112014-10-12 11:59:58 -0500550SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
551 const char __user *, name, const void __user *, value,
552 size_t, size, int, flags)
553{
554 return path_setxattr(pathname, name, value, size, flags, LOOKUP_FOLLOW);
555}
556
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100557SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
558 const char __user *, name, const void __user *, value,
559 size_t, size, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Eric Biggers8cc43112014-10-12 11:59:58 -0500561 return path_setxattr(pathname, name, value, size, flags, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100564SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
565 const void __user *,value, size_t, size, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Al Viro2903ff02012-08-28 12:52:22 -0400567 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 int error = -EBADF;
569
Al Viro2903ff02012-08-28 12:52:22 -0400570 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400572 audit_file(f.file);
Miklos Szeredi6742cee2018-07-18 15:44:43 +0200573 error = mnt_want_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800574 if (!error) {
Al Viro9f45f5b2014-10-31 17:44:57 -0400575 error = setxattr(f.file->f_path.dentry, name, value, size, flags);
Miklos Szeredi6742cee2018-07-18 15:44:43 +0200576 mnt_drop_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800577 }
Al Viro2903ff02012-08-28 12:52:22 -0400578 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return error;
580}
581
582/*
583 * Extended attribute GET operations
584 */
585static ssize_t
David Howells8f0cfa52008-04-29 00:59:41 -0700586getxattr(struct dentry *d, const char __user *name, void __user *value,
587 size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 ssize_t error;
590 void *kvalue = NULL;
591 char kname[XATTR_NAME_MAX + 1];
592
593 error = strncpy_from_user(kname, name, sizeof(kname));
594 if (error == 0 || error == sizeof(kname))
595 error = -ERANGE;
596 if (error < 0)
597 return error;
598
599 if (size) {
600 if (size > XATTR_SIZE_MAX)
601 size = XATTR_SIZE_MAX;
Michal Hocko752ade62017-05-08 15:57:27 -0700602 kvalue = kvzalloc(size, GFP_KERNEL);
603 if (!kvalue)
604 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
606
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800607 error = vfs_getxattr(d, kname, kvalue, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700608 if (error > 0) {
Eric W. Biederman2f6f0652012-02-07 18:52:57 -0800609 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
610 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
Christian Brauner82c9a922018-06-07 13:43:48 +0200611 posix_acl_fix_xattr_to_user(kvalue, error);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700612 if (size && copy_to_user(value, kvalue, error))
613 error = -EFAULT;
614 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
615 /* The file system tried to returned a value bigger
616 than XATTR_SIZE_MAX bytes. Not possible. */
617 error = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100619
620 kvfree(kvalue);
621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return error;
623}
624
Eric Biggers8cc43112014-10-12 11:59:58 -0500625static ssize_t path_getxattr(const char __user *pathname,
626 const char __user *name, void __user *value,
627 size_t size, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Al Viro2d8f3032008-07-22 09:59:21 -0400629 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 ssize_t error;
Jeff Layton60e66b42012-12-11 12:10:16 -0500631retry:
632 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (error)
634 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400635 error = getxattr(path.dentry, name, value, size);
636 path_put(&path);
Jeff Layton60e66b42012-12-11 12:10:16 -0500637 if (retry_estale(error, lookup_flags)) {
638 lookup_flags |= LOOKUP_REVAL;
639 goto retry;
640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return error;
642}
643
Eric Biggers8cc43112014-10-12 11:59:58 -0500644SYSCALL_DEFINE4(getxattr, const char __user *, pathname,
645 const char __user *, name, void __user *, value, size_t, size)
646{
647 return path_getxattr(pathname, name, value, size, LOOKUP_FOLLOW);
648}
649
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100650SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
651 const char __user *, name, void __user *, value, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Eric Biggers8cc43112014-10-12 11:59:58 -0500653 return path_getxattr(pathname, name, value, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100656SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
657 void __user *, value, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Al Viro2903ff02012-08-28 12:52:22 -0400659 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 ssize_t error = -EBADF;
661
Al Viro2903ff02012-08-28 12:52:22 -0400662 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400664 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400665 error = getxattr(f.file->f_path.dentry, name, value, size);
666 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return error;
668}
669
670/*
671 * Extended attribute LIST operations
672 */
673static ssize_t
674listxattr(struct dentry *d, char __user *list, size_t size)
675{
676 ssize_t error;
677 char *klist = NULL;
678
679 if (size) {
680 if (size > XATTR_LIST_MAX)
681 size = XATTR_LIST_MAX;
Michal Hocko752ade62017-05-08 15:57:27 -0700682 klist = kvmalloc(size, GFP_KERNEL);
683 if (!klist)
684 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686
Bill Nottingham659564c2006-10-09 16:10:48 -0400687 error = vfs_listxattr(d, klist, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700688 if (error > 0) {
689 if (size && copy_to_user(list, klist, error))
690 error = -EFAULT;
691 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
692 /* The file system tried to returned a list bigger
693 than XATTR_LIST_MAX bytes. Not possible. */
694 error = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100696
697 kvfree(klist);
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return error;
700}
701
Eric Biggers8cc43112014-10-12 11:59:58 -0500702static ssize_t path_listxattr(const char __user *pathname, char __user *list,
703 size_t size, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Al Viro2d8f3032008-07-22 09:59:21 -0400705 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 ssize_t error;
Jeff Layton10a90cf2012-12-11 12:10:16 -0500707retry:
708 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (error)
710 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400711 error = listxattr(path.dentry, list, size);
712 path_put(&path);
Jeff Layton10a90cf2012-12-11 12:10:16 -0500713 if (retry_estale(error, lookup_flags)) {
714 lookup_flags |= LOOKUP_REVAL;
715 goto retry;
716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return error;
718}
719
Eric Biggers8cc43112014-10-12 11:59:58 -0500720SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
721 size_t, size)
722{
723 return path_listxattr(pathname, list, size, LOOKUP_FOLLOW);
724}
725
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100726SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
727 size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Eric Biggers8cc43112014-10-12 11:59:58 -0500729 return path_listxattr(pathname, list, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100732SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Al Viro2903ff02012-08-28 12:52:22 -0400734 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 ssize_t error = -EBADF;
736
Al Viro2903ff02012-08-28 12:52:22 -0400737 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400739 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400740 error = listxattr(f.file->f_path.dentry, list, size);
741 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return error;
743}
744
745/*
746 * Extended attribute REMOVE operations
747 */
748static long
David Howells8f0cfa52008-04-29 00:59:41 -0700749removexattr(struct dentry *d, const char __user *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
751 int error;
752 char kname[XATTR_NAME_MAX + 1];
753
754 error = strncpy_from_user(kname, name, sizeof(kname));
755 if (error == 0 || error == sizeof(kname))
756 error = -ERANGE;
757 if (error < 0)
758 return error;
759
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800760 return vfs_removexattr(d, kname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
Eric Biggers8cc43112014-10-12 11:59:58 -0500763static int path_removexattr(const char __user *pathname,
764 const char __user *name, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Al Viro2d8f3032008-07-22 09:59:21 -0400766 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 int error;
Jeff Layton12f06212012-12-11 12:10:17 -0500768retry:
769 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (error)
771 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400772 error = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800773 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400774 error = removexattr(path.dentry, name);
775 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800776 }
Al Viro2d8f3032008-07-22 09:59:21 -0400777 path_put(&path);
Jeff Layton12f06212012-12-11 12:10:17 -0500778 if (retry_estale(error, lookup_flags)) {
779 lookup_flags |= LOOKUP_REVAL;
780 goto retry;
781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return error;
783}
784
Eric Biggers8cc43112014-10-12 11:59:58 -0500785SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
786 const char __user *, name)
787{
788 return path_removexattr(pathname, name, LOOKUP_FOLLOW);
789}
790
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100791SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
792 const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Eric Biggers8cc43112014-10-12 11:59:58 -0500794 return path_removexattr(pathname, name, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100797SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
Al Viro2903ff02012-08-28 12:52:22 -0400799 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 int error = -EBADF;
801
Al Viro2903ff02012-08-28 12:52:22 -0400802 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400804 audit_file(f.file);
Miklos Szeredi6742cee2018-07-18 15:44:43 +0200805 error = mnt_want_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800806 if (!error) {
Al Viro9f45f5b2014-10-31 17:44:57 -0400807 error = removexattr(f.file->f_path.dentry, name);
Miklos Szeredi6742cee2018-07-18 15:44:43 +0200808 mnt_drop_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800809 }
Al Viro2903ff02012-08-28 12:52:22 -0400810 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return error;
812}
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 * Combine the results of the list() operation from every xattr_handler in the
816 * list.
817 */
818ssize_t
819generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
820{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700821 const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 unsigned int size = 0;
823
824 if (!buffer) {
Christoph Hellwig431547b2009-11-13 09:52:56 +0000825 for_each_xattr_handler(handlers, handler) {
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100826 if (!handler->name ||
827 (handler->list && !handler->list(dentry)))
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +0100828 continue;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100829 size += strlen(handler->name) + 1;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 } else {
832 char *buf = buffer;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100833 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 for_each_xattr_handler(handlers, handler) {
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100836 if (!handler->name ||
837 (handler->list && !handler->list(dentry)))
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +0100838 continue;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100839 len = strlen(handler->name);
840 if (len + 1 > buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return -ERANGE;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100842 memcpy(buf, handler->name, len + 1);
843 buf += len + 1;
844 buffer_size -= len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846 size = buf - buffer;
847 }
848 return size;
849}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850EXPORT_SYMBOL(generic_listxattr);
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400851
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200852/**
853 * xattr_full_name - Compute full attribute name from suffix
854 *
855 * @handler: handler of the xattr_handler operation
856 * @name: name passed to the xattr_handler operation
857 *
858 * The get and set xattr handler operations are called with the remainder of
859 * the attribute name after skipping the handler's prefix: for example, "foo"
860 * is passed to the get operation of a handler with prefix "user." to get
861 * attribute "user.foo". The full name is still "there" in the name though.
862 *
863 * Note: the list xattr handler operation when called from the vfs is passed a
864 * NULL name; some file systems use this operation internally, with varying
865 * semantics.
866 */
867const char *xattr_full_name(const struct xattr_handler *handler,
868 const char *name)
869{
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100870 size_t prefix_len = strlen(xattr_prefix(handler));
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200871
872 return name - prefix_len;
873}
874EXPORT_SYMBOL(xattr_full_name);
875
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400876/*
877 * Allocate new xattr and copy in the value; but leave the name to callers.
878 */
879struct simple_xattr *simple_xattr_alloc(const void *value, size_t size)
880{
881 struct simple_xattr *new_xattr;
882 size_t len;
883
884 /* wrap around? */
885 len = sizeof(*new_xattr) + size;
Hugh Dickins4e66d442014-07-23 14:00:17 -0700886 if (len < sizeof(*new_xattr))
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400887 return NULL;
888
889 new_xattr = kmalloc(len, GFP_KERNEL);
890 if (!new_xattr)
891 return NULL;
892
893 new_xattr->size = size;
894 memcpy(new_xattr->value, value, size);
895 return new_xattr;
896}
897
898/*
899 * xattr GET operation for in-memory/pseudo filesystems
900 */
901int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
902 void *buffer, size_t size)
903{
904 struct simple_xattr *xattr;
905 int ret = -ENODATA;
906
907 spin_lock(&xattrs->lock);
908 list_for_each_entry(xattr, &xattrs->head, list) {
909 if (strcmp(name, xattr->name))
910 continue;
911
912 ret = xattr->size;
913 if (buffer) {
914 if (size < xattr->size)
915 ret = -ERANGE;
916 else
917 memcpy(buffer, xattr->value, xattr->size);
918 }
919 break;
920 }
921 spin_unlock(&xattrs->lock);
922 return ret;
923}
924
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +0100925/**
926 * simple_xattr_set - xattr SET operation for in-memory/pseudo filesystems
927 * @xattrs: target simple_xattr list
928 * @name: name of the extended attribute
929 * @value: value of the xattr. If %NULL, will remove the attribute.
930 * @size: size of the new xattr
931 * @flags: %XATTR_{CREATE|REPLACE}
932 *
933 * %XATTR_CREATE is set, the xattr shouldn't exist already; otherwise fails
934 * with -EEXIST. If %XATTR_REPLACE is set, the xattr should exist;
935 * otherwise, fails with -ENODATA.
936 *
937 * Returns 0 on success, -errno on failure.
938 */
939int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
940 const void *value, size_t size, int flags)
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400941{
942 struct simple_xattr *xattr;
David Rientjes43385842012-10-17 20:41:15 -0700943 struct simple_xattr *new_xattr = NULL;
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400944 int err = 0;
945
946 /* value == NULL means remove */
947 if (value) {
948 new_xattr = simple_xattr_alloc(value, size);
949 if (!new_xattr)
950 return -ENOMEM;
951
952 new_xattr->name = kstrdup(name, GFP_KERNEL);
953 if (!new_xattr->name) {
954 kfree(new_xattr);
955 return -ENOMEM;
956 }
957 }
958
959 spin_lock(&xattrs->lock);
960 list_for_each_entry(xattr, &xattrs->head, list) {
961 if (!strcmp(name, xattr->name)) {
962 if (flags & XATTR_CREATE) {
963 xattr = new_xattr;
964 err = -EEXIST;
965 } else if (new_xattr) {
966 list_replace(&xattr->list, &new_xattr->list);
967 } else {
968 list_del(&xattr->list);
969 }
970 goto out;
971 }
972 }
973 if (flags & XATTR_REPLACE) {
974 xattr = new_xattr;
975 err = -ENODATA;
976 } else {
977 list_add(&new_xattr->list, &xattrs->head);
978 xattr = NULL;
979 }
980out:
981 spin_unlock(&xattrs->lock);
982 if (xattr) {
983 kfree(xattr->name);
984 kfree(xattr);
985 }
986 return err;
987
988}
989
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400990static bool xattr_is_trusted(const char *name)
991{
992 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
993}
994
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100995static int xattr_list_one(char **buffer, ssize_t *remaining_size,
996 const char *name)
997{
998 size_t len = strlen(name) + 1;
999 if (*buffer) {
1000 if (*remaining_size < len)
1001 return -ERANGE;
1002 memcpy(*buffer, name, len);
1003 *buffer += len;
1004 }
1005 *remaining_size -= len;
1006 return 0;
1007}
1008
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001009/*
1010 * xattr LIST operation for in-memory/pseudo filesystems
1011 */
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01001012ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs,
1013 char *buffer, size_t size)
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001014{
1015 bool trusted = capable(CAP_SYS_ADMIN);
1016 struct simple_xattr *xattr;
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01001017 ssize_t remaining_size = size;
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +01001018 int err = 0;
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01001019
1020#ifdef CONFIG_FS_POSIX_ACL
Andreas Gruenbacherffc4c922018-09-18 00:36:36 -04001021 if (IS_POSIXACL(inode)) {
1022 if (inode->i_acl) {
1023 err = xattr_list_one(&buffer, &remaining_size,
1024 XATTR_NAME_POSIX_ACL_ACCESS);
1025 if (err)
1026 return err;
1027 }
1028 if (inode->i_default_acl) {
1029 err = xattr_list_one(&buffer, &remaining_size,
1030 XATTR_NAME_POSIX_ACL_DEFAULT);
1031 if (err)
1032 return err;
1033 }
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01001034 }
1035#endif
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001036
1037 spin_lock(&xattrs->lock);
1038 list_for_each_entry(xattr, &xattrs->head, list) {
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001039 /* skip "trusted." attributes for unprivileged callers */
1040 if (!trusted && xattr_is_trusted(xattr->name))
1041 continue;
1042
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01001043 err = xattr_list_one(&buffer, &remaining_size, xattr->name);
1044 if (err)
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +01001045 break;
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001046 }
1047 spin_unlock(&xattrs->lock);
1048
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +01001049 return err ? err : size - remaining_size;
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001050}
1051
Aristeu Rozanski48957682012-09-11 16:28:11 -04001052/*
1053 * Adds an extended attribute to the list
1054 */
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001055void simple_xattr_list_add(struct simple_xattrs *xattrs,
1056 struct simple_xattr *new_xattr)
1057{
1058 spin_lock(&xattrs->lock);
1059 list_add(&new_xattr->list, &xattrs->head);
1060 spin_unlock(&xattrs->lock);
1061}