blob: fd7bafb7aceae5bee2fea41efc46b816bd5dc709 [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
Daniel Rosenberga5a95f62018-01-23 14:34:38 -0800133 return inode_permission2(ERR_PTR(-EOPNOTSUPP), 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
206
207int
208vfs_setxattr(struct dentry *dentry, const char *name, const void *value,
209 size_t size, int flags)
210{
211 struct inode *inode = dentry->d_inode;
212 int error;
213
214 error = xattr_permission(inode, name, MAY_WRITE);
215 if (error)
216 return error;
217
Al Viro59551022016-01-22 15:40:57 -0500218 inode_lock(inode);
David P. Quigleyb1ab7e42009-09-03 14:25:56 -0400219 error = security_inode_setxattr(dentry, name, value, size, flags);
220 if (error)
221 goto out;
222
223 error = __vfs_setxattr_noperm(dentry, name, value, size, flags);
224
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800225out:
Al Viro59551022016-01-22 15:40:57 -0500226 inode_unlock(inode);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800227 return error;
228}
229EXPORT_SYMBOL_GPL(vfs_setxattr);
230
Al Viro2220c5b2018-04-24 21:22:04 -0400231static ssize_t
David P. Quigley42492592008-02-04 22:29:39 -0800232xattr_getsecurity(struct inode *inode, const char *name, void *value,
233 size_t size)
234{
235 void *buffer = NULL;
236 ssize_t len;
237
238 if (!value || !size) {
239 len = security_inode_getsecurity(inode, name, &buffer, false);
240 goto out_noalloc;
241 }
242
243 len = security_inode_getsecurity(inode, name, &buffer, true);
244 if (len < 0)
245 return len;
246 if (size < len) {
247 len = -ERANGE;
248 goto out;
249 }
250 memcpy(value, buffer, len);
251out:
Casey Schaufler57e7ba02017-09-19 09:39:08 -0700252 kfree(buffer);
David P. Quigley42492592008-02-04 22:29:39 -0800253out_noalloc:
254 return len;
255}
David P. Quigley42492592008-02-04 22:29:39 -0800256
Mimi Zohar1601fba2011-03-09 14:23:34 -0500257/*
258 * vfs_getxattr_alloc - allocate memory, if necessary, before calling getxattr
259 *
260 * Allocate memory, if not already allocated, or re-allocate correct size,
261 * before retrieving the extended attribute.
262 *
263 * Returns the result of alloc, if failed, or the getxattr operation.
264 */
265ssize_t
266vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
267 size_t xattr_size, gfp_t flags)
268{
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200269 const struct xattr_handler *handler;
Mimi Zohar1601fba2011-03-09 14:23:34 -0500270 struct inode *inode = dentry->d_inode;
271 char *value = *xattr_value;
272 int error;
273
274 error = xattr_permission(inode, name, MAY_READ);
275 if (error)
276 return error;
277
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200278 handler = xattr_resolve_name(inode, &name);
279 if (IS_ERR(handler))
280 return PTR_ERR(handler);
281 if (!handler->get)
Mimi Zohar1601fba2011-03-09 14:23:34 -0500282 return -EOPNOTSUPP;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200283 error = handler->get(handler, dentry, inode, name, NULL, 0);
Mimi Zohar1601fba2011-03-09 14:23:34 -0500284 if (error < 0)
285 return error;
286
287 if (!value || (error > xattr_size)) {
288 value = krealloc(*xattr_value, error + 1, flags);
289 if (!value)
290 return -ENOMEM;
291 memset(value, 0, error + 1);
292 }
293
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200294 error = handler->get(handler, dentry, inode, name, value, error);
Mimi Zohar1601fba2011-03-09 14:23:34 -0500295 *xattr_value = value;
296 return error;
297}
298
David P. Quigley42492592008-02-04 22:29:39 -0800299ssize_t
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200300__vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
301 void *value, size_t size)
302{
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200303 const struct xattr_handler *handler;
304
305 handler = xattr_resolve_name(inode, &name);
306 if (IS_ERR(handler))
307 return PTR_ERR(handler);
Mark Salyzyn8cca9452019-07-15 15:35:13 -0700308 if (unlikely(handler->__get))
309 return handler->__get(handler, dentry, inode, name, value,
310 size);
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200311 if (!handler->get)
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200312 return -EOPNOTSUPP;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200313 return handler->get(handler, dentry, inode, name, value, size);
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200314}
315EXPORT_SYMBOL(__vfs_getxattr);
316
317ssize_t
David Howells8f0cfa52008-04-29 00:59:41 -0700318vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800319{
320 struct inode *inode = dentry->d_inode;
321 int error;
Mark Salyzyn8cca9452019-07-15 15:35:13 -0700322 const struct xattr_handler *handler;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800323
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800324 error = xattr_permission(inode, name, MAY_READ);
325 if (error)
326 return error;
327
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800328 error = security_inode_getxattr(dentry, name);
329 if (error)
330 return error;
331
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800332 if (!strncmp(name, XATTR_SECURITY_PREFIX,
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800333 XATTR_SECURITY_PREFIX_LEN)) {
334 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
David P. Quigley42492592008-02-04 22:29:39 -0800335 int ret = xattr_getsecurity(inode, suffix, value, size);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800336 /*
337 * Only overwrite the return value if a security module
338 * is actually active.
339 */
David P. Quigley4bea5802008-02-04 22:29:40 -0800340 if (ret == -EOPNOTSUPP)
341 goto nolsm;
342 return ret;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800343 }
David P. Quigley4bea5802008-02-04 22:29:40 -0800344nolsm:
Mark Salyzyn8cca9452019-07-15 15:35:13 -0700345 handler = xattr_resolve_name(inode, &name);
346 if (IS_ERR(handler))
347 return PTR_ERR(handler);
348 if (!handler->get)
349 return -EOPNOTSUPP;
350 return handler->get(handler, dentry, inode, name, value, size);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800351}
352EXPORT_SYMBOL_GPL(vfs_getxattr);
353
Bill Nottingham659564c2006-10-09 16:10:48 -0400354ssize_t
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200355vfs_listxattr(struct dentry *dentry, char *list, size_t size)
Bill Nottingham659564c2006-10-09 16:10:48 -0400356{
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200357 struct inode *inode = d_inode(dentry);
Bill Nottingham659564c2006-10-09 16:10:48 -0400358 ssize_t error;
359
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200360 error = security_inode_listxattr(dentry);
Bill Nottingham659564c2006-10-09 16:10:48 -0400361 if (error)
362 return error;
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200363 if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200364 error = inode->i_op->listxattr(dentry, list, size);
Bill Nottingham659564c2006-10-09 16:10:48 -0400365 } else {
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200366 error = security_inode_listsecurity(inode, list, size);
Bill Nottingham659564c2006-10-09 16:10:48 -0400367 if (size && error > size)
368 error = -ERANGE;
369 }
370 return error;
371}
372EXPORT_SYMBOL_GPL(vfs_listxattr);
373
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800374int
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200375__vfs_removexattr(struct dentry *dentry, const char *name)
376{
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200377 struct inode *inode = d_inode(dentry);
378 const struct xattr_handler *handler;
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200379
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200380 handler = xattr_resolve_name(inode, &name);
381 if (IS_ERR(handler))
382 return PTR_ERR(handler);
383 if (!handler->set)
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200384 return -EOPNOTSUPP;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200385 return handler->set(handler, dentry, inode, name, NULL, 0, XATTR_REPLACE);
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200386}
387EXPORT_SYMBOL(__vfs_removexattr);
388
389int
David Howells8f0cfa52008-04-29 00:59:41 -0700390vfs_removexattr(struct dentry *dentry, const char *name)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800391{
392 struct inode *inode = dentry->d_inode;
393 int error;
394
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800395 error = xattr_permission(inode, name, MAY_WRITE);
396 if (error)
397 return error;
398
Al Viro59551022016-01-22 15:40:57 -0500399 inode_lock(inode);
Mimi Zohar2ab51f32011-03-23 17:23:06 -0400400 error = security_inode_removexattr(dentry, name);
Dmitry Kasatkin7c51bb002014-11-20 16:31:01 +0200401 if (error)
402 goto out;
Mimi Zohar2ab51f32011-03-23 17:23:06 -0400403
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200404 error = __vfs_removexattr(dentry, name);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800405
Mimi Zoharc7b87de2011-03-09 14:39:18 -0500406 if (!error) {
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800407 fsnotify_xattr(dentry);
Mimi Zoharc7b87de2011-03-09 14:39:18 -0500408 evm_inode_post_removexattr(dentry, name);
409 }
Dmitry Kasatkin7c51bb002014-11-20 16:31:01 +0200410
411out:
Al Viro59551022016-01-22 15:40:57 -0500412 inode_unlock(inode);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800413 return error;
414}
415EXPORT_SYMBOL_GPL(vfs_removexattr);
416
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418/*
419 * Extended attribute SET operations
420 */
421static long
David Howells8f0cfa52008-04-29 00:59:41 -0700422setxattr(struct dentry *d, const char __user *name, const void __user *value,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 size_t size, int flags)
424{
425 int error;
426 void *kvalue = NULL;
427 char kname[XATTR_NAME_MAX + 1];
428
429 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
430 return -EINVAL;
431
432 error = strncpy_from_user(kname, name, sizeof(kname));
433 if (error == 0 || error == sizeof(kname))
434 error = -ERANGE;
435 if (error < 0)
436 return error;
437
438 if (size) {
439 if (size > XATTR_SIZE_MAX)
440 return -E2BIG;
Michal Hocko752ade62017-05-08 15:57:27 -0700441 kvalue = kvmalloc(size, GFP_KERNEL);
442 if (!kvalue)
443 return -ENOMEM;
Andrew Morton44c82492012-04-05 14:25:07 -0700444 if (copy_from_user(kvalue, value, size)) {
445 error = -EFAULT;
446 goto out;
447 }
Eric W. Biederman2f6f0652012-02-07 18:52:57 -0800448 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
449 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
450 posix_acl_fix_xattr_from_user(kvalue, size);
Serge E. Hallyn8db6c342017-05-08 13:11:56 -0500451 else if (strcmp(kname, XATTR_NAME_CAPS) == 0) {
452 error = cap_convert_nscap(d, &kvalue, size);
453 if (error < 0)
454 goto out;
455 size = error;
456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800459 error = vfs_setxattr(d, kname, kvalue, size, flags);
Andrew Morton44c82492012-04-05 14:25:07 -0700460out:
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100461 kvfree(kvalue);
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return error;
464}
465
Eric Biggers8cc43112014-10-12 11:59:58 -0500466static int path_setxattr(const char __user *pathname,
467 const char __user *name, const void __user *value,
468 size_t size, int flags, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Al Viro2d8f3032008-07-22 09:59:21 -0400470 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 int error;
Jeff Layton68f1bb82012-12-11 12:10:15 -0500472retry:
473 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (error)
475 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400476 error = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800477 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400478 error = setxattr(path.dentry, name, value, size, flags);
479 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800480 }
Al Viro2d8f3032008-07-22 09:59:21 -0400481 path_put(&path);
Jeff Layton68f1bb82012-12-11 12:10:15 -0500482 if (retry_estale(error, lookup_flags)) {
483 lookup_flags |= LOOKUP_REVAL;
484 goto retry;
485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return error;
487}
488
Eric Biggers8cc43112014-10-12 11:59:58 -0500489SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
490 const char __user *, name, const void __user *, value,
491 size_t, size, int, flags)
492{
493 return path_setxattr(pathname, name, value, size, flags, LOOKUP_FOLLOW);
494}
495
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100496SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
497 const char __user *, name, const void __user *, value,
498 size_t, size, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Eric Biggers8cc43112014-10-12 11:59:58 -0500500 return path_setxattr(pathname, name, value, size, flags, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100503SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
504 const void __user *,value, size_t, size, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Al Viro2903ff02012-08-28 12:52:22 -0400506 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 int error = -EBADF;
508
Al Viro2903ff02012-08-28 12:52:22 -0400509 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400511 audit_file(f.file);
Miklos Szeredi6742cee2018-07-18 15:44:43 +0200512 error = mnt_want_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800513 if (!error) {
Al Viro9f45f5b2014-10-31 17:44:57 -0400514 error = setxattr(f.file->f_path.dentry, name, value, size, flags);
Miklos Szeredi6742cee2018-07-18 15:44:43 +0200515 mnt_drop_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800516 }
Al Viro2903ff02012-08-28 12:52:22 -0400517 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return error;
519}
520
521/*
522 * Extended attribute GET operations
523 */
524static ssize_t
David Howells8f0cfa52008-04-29 00:59:41 -0700525getxattr(struct dentry *d, const char __user *name, void __user *value,
526 size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 ssize_t error;
529 void *kvalue = NULL;
530 char kname[XATTR_NAME_MAX + 1];
531
532 error = strncpy_from_user(kname, name, sizeof(kname));
533 if (error == 0 || error == sizeof(kname))
534 error = -ERANGE;
535 if (error < 0)
536 return error;
537
538 if (size) {
539 if (size > XATTR_SIZE_MAX)
540 size = XATTR_SIZE_MAX;
Michal Hocko752ade62017-05-08 15:57:27 -0700541 kvalue = kvzalloc(size, GFP_KERNEL);
542 if (!kvalue)
543 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800546 error = vfs_getxattr(d, kname, kvalue, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700547 if (error > 0) {
Eric W. Biederman2f6f0652012-02-07 18:52:57 -0800548 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
549 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
Christian Brauner82c9a922018-06-07 13:43:48 +0200550 posix_acl_fix_xattr_to_user(kvalue, error);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700551 if (size && copy_to_user(value, kvalue, error))
552 error = -EFAULT;
553 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
554 /* The file system tried to returned a value bigger
555 than XATTR_SIZE_MAX bytes. Not possible. */
556 error = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100558
559 kvfree(kvalue);
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return error;
562}
563
Eric Biggers8cc43112014-10-12 11:59:58 -0500564static ssize_t path_getxattr(const char __user *pathname,
565 const char __user *name, void __user *value,
566 size_t size, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Al Viro2d8f3032008-07-22 09:59:21 -0400568 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 ssize_t error;
Jeff Layton60e66b42012-12-11 12:10:16 -0500570retry:
571 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (error)
573 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400574 error = getxattr(path.dentry, name, value, size);
575 path_put(&path);
Jeff Layton60e66b42012-12-11 12:10:16 -0500576 if (retry_estale(error, lookup_flags)) {
577 lookup_flags |= LOOKUP_REVAL;
578 goto retry;
579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return error;
581}
582
Eric Biggers8cc43112014-10-12 11:59:58 -0500583SYSCALL_DEFINE4(getxattr, const char __user *, pathname,
584 const char __user *, name, void __user *, value, size_t, size)
585{
586 return path_getxattr(pathname, name, value, size, LOOKUP_FOLLOW);
587}
588
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100589SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
590 const char __user *, name, void __user *, value, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Eric Biggers8cc43112014-10-12 11:59:58 -0500592 return path_getxattr(pathname, name, value, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100595SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
596 void __user *, value, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Al Viro2903ff02012-08-28 12:52:22 -0400598 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 ssize_t error = -EBADF;
600
Al Viro2903ff02012-08-28 12:52:22 -0400601 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400603 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400604 error = getxattr(f.file->f_path.dentry, name, value, size);
605 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return error;
607}
608
609/*
610 * Extended attribute LIST operations
611 */
612static ssize_t
613listxattr(struct dentry *d, char __user *list, size_t size)
614{
615 ssize_t error;
616 char *klist = NULL;
617
618 if (size) {
619 if (size > XATTR_LIST_MAX)
620 size = XATTR_LIST_MAX;
Michal Hocko752ade62017-05-08 15:57:27 -0700621 klist = kvmalloc(size, GFP_KERNEL);
622 if (!klist)
623 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 }
625
Bill Nottingham659564c2006-10-09 16:10:48 -0400626 error = vfs_listxattr(d, klist, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700627 if (error > 0) {
628 if (size && copy_to_user(list, klist, error))
629 error = -EFAULT;
630 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
631 /* The file system tried to returned a list bigger
632 than XATTR_LIST_MAX bytes. Not possible. */
633 error = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100635
636 kvfree(klist);
637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return error;
639}
640
Eric Biggers8cc43112014-10-12 11:59:58 -0500641static ssize_t path_listxattr(const char __user *pathname, char __user *list,
642 size_t size, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Al Viro2d8f3032008-07-22 09:59:21 -0400644 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 ssize_t error;
Jeff Layton10a90cf2012-12-11 12:10:16 -0500646retry:
647 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (error)
649 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400650 error = listxattr(path.dentry, list, size);
651 path_put(&path);
Jeff Layton10a90cf2012-12-11 12:10:16 -0500652 if (retry_estale(error, lookup_flags)) {
653 lookup_flags |= LOOKUP_REVAL;
654 goto retry;
655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return error;
657}
658
Eric Biggers8cc43112014-10-12 11:59:58 -0500659SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
660 size_t, size)
661{
662 return path_listxattr(pathname, list, size, LOOKUP_FOLLOW);
663}
664
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100665SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
666 size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Eric Biggers8cc43112014-10-12 11:59:58 -0500668 return path_listxattr(pathname, list, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100671SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
Al Viro2903ff02012-08-28 12:52:22 -0400673 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 ssize_t error = -EBADF;
675
Al Viro2903ff02012-08-28 12:52:22 -0400676 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400678 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400679 error = listxattr(f.file->f_path.dentry, list, size);
680 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return error;
682}
683
684/*
685 * Extended attribute REMOVE operations
686 */
687static long
David Howells8f0cfa52008-04-29 00:59:41 -0700688removexattr(struct dentry *d, const char __user *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 int error;
691 char kname[XATTR_NAME_MAX + 1];
692
693 error = strncpy_from_user(kname, name, sizeof(kname));
694 if (error == 0 || error == sizeof(kname))
695 error = -ERANGE;
696 if (error < 0)
697 return error;
698
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800699 return vfs_removexattr(d, kname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Eric Biggers8cc43112014-10-12 11:59:58 -0500702static int path_removexattr(const char __user *pathname,
703 const char __user *name, 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 int error;
Jeff Layton12f06212012-12-11 12:10:17 -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 = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800712 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400713 error = removexattr(path.dentry, name);
714 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800715 }
Al Viro2d8f3032008-07-22 09:59:21 -0400716 path_put(&path);
Jeff Layton12f06212012-12-11 12:10:17 -0500717 if (retry_estale(error, lookup_flags)) {
718 lookup_flags |= LOOKUP_REVAL;
719 goto retry;
720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return error;
722}
723
Eric Biggers8cc43112014-10-12 11:59:58 -0500724SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
725 const char __user *, name)
726{
727 return path_removexattr(pathname, name, LOOKUP_FOLLOW);
728}
729
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100730SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
731 const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
Eric Biggers8cc43112014-10-12 11:59:58 -0500733 return path_removexattr(pathname, name, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100736SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Al Viro2903ff02012-08-28 12:52:22 -0400738 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 int error = -EBADF;
740
Al Viro2903ff02012-08-28 12:52:22 -0400741 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400743 audit_file(f.file);
Miklos Szeredi6742cee2018-07-18 15:44:43 +0200744 error = mnt_want_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800745 if (!error) {
Al Viro9f45f5b2014-10-31 17:44:57 -0400746 error = removexattr(f.file->f_path.dentry, name);
Miklos Szeredi6742cee2018-07-18 15:44:43 +0200747 mnt_drop_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800748 }
Al Viro2903ff02012-08-28 12:52:22 -0400749 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return error;
751}
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 * Combine the results of the list() operation from every xattr_handler in the
755 * list.
756 */
757ssize_t
758generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
759{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700760 const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 unsigned int size = 0;
762
763 if (!buffer) {
Christoph Hellwig431547b2009-11-13 09:52:56 +0000764 for_each_xattr_handler(handlers, handler) {
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100765 if (!handler->name ||
766 (handler->list && !handler->list(dentry)))
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +0100767 continue;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100768 size += strlen(handler->name) + 1;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 } else {
771 char *buf = buffer;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100772 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 for_each_xattr_handler(handlers, handler) {
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100775 if (!handler->name ||
776 (handler->list && !handler->list(dentry)))
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +0100777 continue;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100778 len = strlen(handler->name);
779 if (len + 1 > buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return -ERANGE;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100781 memcpy(buf, handler->name, len + 1);
782 buf += len + 1;
783 buffer_size -= len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785 size = buf - buffer;
786 }
787 return size;
788}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789EXPORT_SYMBOL(generic_listxattr);
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400790
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200791/**
792 * xattr_full_name - Compute full attribute name from suffix
793 *
794 * @handler: handler of the xattr_handler operation
795 * @name: name passed to the xattr_handler operation
796 *
797 * The get and set xattr handler operations are called with the remainder of
798 * the attribute name after skipping the handler's prefix: for example, "foo"
799 * is passed to the get operation of a handler with prefix "user." to get
800 * attribute "user.foo". The full name is still "there" in the name though.
801 *
802 * Note: the list xattr handler operation when called from the vfs is passed a
803 * NULL name; some file systems use this operation internally, with varying
804 * semantics.
805 */
806const char *xattr_full_name(const struct xattr_handler *handler,
807 const char *name)
808{
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100809 size_t prefix_len = strlen(xattr_prefix(handler));
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200810
811 return name - prefix_len;
812}
813EXPORT_SYMBOL(xattr_full_name);
814
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400815/*
816 * Allocate new xattr and copy in the value; but leave the name to callers.
817 */
818struct simple_xattr *simple_xattr_alloc(const void *value, size_t size)
819{
820 struct simple_xattr *new_xattr;
821 size_t len;
822
823 /* wrap around? */
824 len = sizeof(*new_xattr) + size;
Hugh Dickins4e66d442014-07-23 14:00:17 -0700825 if (len < sizeof(*new_xattr))
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400826 return NULL;
827
828 new_xattr = kmalloc(len, GFP_KERNEL);
829 if (!new_xattr)
830 return NULL;
831
832 new_xattr->size = size;
833 memcpy(new_xattr->value, value, size);
834 return new_xattr;
835}
836
837/*
838 * xattr GET operation for in-memory/pseudo filesystems
839 */
840int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
841 void *buffer, size_t size)
842{
843 struct simple_xattr *xattr;
844 int ret = -ENODATA;
845
846 spin_lock(&xattrs->lock);
847 list_for_each_entry(xattr, &xattrs->head, list) {
848 if (strcmp(name, xattr->name))
849 continue;
850
851 ret = xattr->size;
852 if (buffer) {
853 if (size < xattr->size)
854 ret = -ERANGE;
855 else
856 memcpy(buffer, xattr->value, xattr->size);
857 }
858 break;
859 }
860 spin_unlock(&xattrs->lock);
861 return ret;
862}
863
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +0100864/**
865 * simple_xattr_set - xattr SET operation for in-memory/pseudo filesystems
866 * @xattrs: target simple_xattr list
867 * @name: name of the extended attribute
868 * @value: value of the xattr. If %NULL, will remove the attribute.
869 * @size: size of the new xattr
870 * @flags: %XATTR_{CREATE|REPLACE}
871 *
872 * %XATTR_CREATE is set, the xattr shouldn't exist already; otherwise fails
873 * with -EEXIST. If %XATTR_REPLACE is set, the xattr should exist;
874 * otherwise, fails with -ENODATA.
875 *
876 * Returns 0 on success, -errno on failure.
877 */
878int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
879 const void *value, size_t size, int flags)
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400880{
881 struct simple_xattr *xattr;
David Rientjes43385842012-10-17 20:41:15 -0700882 struct simple_xattr *new_xattr = NULL;
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400883 int err = 0;
884
885 /* value == NULL means remove */
886 if (value) {
887 new_xattr = simple_xattr_alloc(value, size);
888 if (!new_xattr)
889 return -ENOMEM;
890
891 new_xattr->name = kstrdup(name, GFP_KERNEL);
892 if (!new_xattr->name) {
893 kfree(new_xattr);
894 return -ENOMEM;
895 }
896 }
897
898 spin_lock(&xattrs->lock);
899 list_for_each_entry(xattr, &xattrs->head, list) {
900 if (!strcmp(name, xattr->name)) {
901 if (flags & XATTR_CREATE) {
902 xattr = new_xattr;
903 err = -EEXIST;
904 } else if (new_xattr) {
905 list_replace(&xattr->list, &new_xattr->list);
906 } else {
907 list_del(&xattr->list);
908 }
909 goto out;
910 }
911 }
912 if (flags & XATTR_REPLACE) {
913 xattr = new_xattr;
914 err = -ENODATA;
915 } else {
916 list_add(&new_xattr->list, &xattrs->head);
917 xattr = NULL;
918 }
919out:
920 spin_unlock(&xattrs->lock);
921 if (xattr) {
922 kfree(xattr->name);
923 kfree(xattr);
924 }
925 return err;
926
927}
928
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400929static bool xattr_is_trusted(const char *name)
930{
931 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
932}
933
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100934static int xattr_list_one(char **buffer, ssize_t *remaining_size,
935 const char *name)
936{
937 size_t len = strlen(name) + 1;
938 if (*buffer) {
939 if (*remaining_size < len)
940 return -ERANGE;
941 memcpy(*buffer, name, len);
942 *buffer += len;
943 }
944 *remaining_size -= len;
945 return 0;
946}
947
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400948/*
949 * xattr LIST operation for in-memory/pseudo filesystems
950 */
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100951ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs,
952 char *buffer, size_t size)
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400953{
954 bool trusted = capable(CAP_SYS_ADMIN);
955 struct simple_xattr *xattr;
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100956 ssize_t remaining_size = size;
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +0100957 int err = 0;
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100958
959#ifdef CONFIG_FS_POSIX_ACL
Andreas Gruenbacherffc4c922018-09-18 00:36:36 -0400960 if (IS_POSIXACL(inode)) {
961 if (inode->i_acl) {
962 err = xattr_list_one(&buffer, &remaining_size,
963 XATTR_NAME_POSIX_ACL_ACCESS);
964 if (err)
965 return err;
966 }
967 if (inode->i_default_acl) {
968 err = xattr_list_one(&buffer, &remaining_size,
969 XATTR_NAME_POSIX_ACL_DEFAULT);
970 if (err)
971 return err;
972 }
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100973 }
974#endif
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400975
976 spin_lock(&xattrs->lock);
977 list_for_each_entry(xattr, &xattrs->head, list) {
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400978 /* skip "trusted." attributes for unprivileged callers */
979 if (!trusted && xattr_is_trusted(xattr->name))
980 continue;
981
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100982 err = xattr_list_one(&buffer, &remaining_size, xattr->name);
983 if (err)
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +0100984 break;
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400985 }
986 spin_unlock(&xattrs->lock);
987
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +0100988 return err ? err : size - remaining_size;
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400989}
990
Aristeu Rozanski48957682012-09-11 16:28:11 -0400991/*
992 * Adds an extended attribute to the list
993 */
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400994void simple_xattr_list_add(struct simple_xattrs *xattrs,
995 struct simple_xattr *new_xattr)
996{
997 spin_lock(&xattrs->lock);
998 list_add(&new_xattr->list, &xattrs->head);
999 spin_unlock(&xattrs->lock);
1000}