blob: 464c94bf65f9e55339ec9d4bc515ec990691deb7 [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
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
231ssize_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:
252 security_release_secctx(buffer, len);
253out_noalloc:
254 return len;
255}
256EXPORT_SYMBOL_GPL(xattr_getsecurity);
257
Mimi Zohar1601fba2011-03-09 14:23:34 -0500258/*
259 * vfs_getxattr_alloc - allocate memory, if necessary, before calling getxattr
260 *
261 * Allocate memory, if not already allocated, or re-allocate correct size,
262 * before retrieving the extended attribute.
263 *
264 * Returns the result of alloc, if failed, or the getxattr operation.
265 */
266ssize_t
267vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
268 size_t xattr_size, gfp_t flags)
269{
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200270 const struct xattr_handler *handler;
Mimi Zohar1601fba2011-03-09 14:23:34 -0500271 struct inode *inode = dentry->d_inode;
272 char *value = *xattr_value;
273 int error;
274
275 error = xattr_permission(inode, name, MAY_READ);
276 if (error)
277 return error;
278
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200279 handler = xattr_resolve_name(inode, &name);
280 if (IS_ERR(handler))
281 return PTR_ERR(handler);
282 if (!handler->get)
Mimi Zohar1601fba2011-03-09 14:23:34 -0500283 return -EOPNOTSUPP;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200284 error = handler->get(handler, dentry, inode, name, NULL, 0);
Mimi Zohar1601fba2011-03-09 14:23:34 -0500285 if (error < 0)
286 return error;
287
288 if (!value || (error > xattr_size)) {
289 value = krealloc(*xattr_value, error + 1, flags);
290 if (!value)
291 return -ENOMEM;
292 memset(value, 0, error + 1);
293 }
294
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200295 error = handler->get(handler, dentry, inode, name, value, error);
Mimi Zohar1601fba2011-03-09 14:23:34 -0500296 *xattr_value = value;
297 return error;
298}
299
David P. Quigley42492592008-02-04 22:29:39 -0800300ssize_t
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200301__vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
302 void *value, size_t size)
303{
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200304 const struct xattr_handler *handler;
305
306 handler = xattr_resolve_name(inode, &name);
307 if (IS_ERR(handler))
308 return PTR_ERR(handler);
309 if (!handler->get)
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200310 return -EOPNOTSUPP;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200311 return handler->get(handler, dentry, inode, name, value, size);
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200312}
313EXPORT_SYMBOL(__vfs_getxattr);
314
315ssize_t
David Howells8f0cfa52008-04-29 00:59:41 -0700316vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800317{
318 struct inode *inode = dentry->d_inode;
319 int error;
320
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800321 error = xattr_permission(inode, name, MAY_READ);
322 if (error)
323 return error;
324
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800325 error = security_inode_getxattr(dentry, name);
326 if (error)
327 return error;
328
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800329 if (!strncmp(name, XATTR_SECURITY_PREFIX,
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800330 XATTR_SECURITY_PREFIX_LEN)) {
331 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
David P. Quigley42492592008-02-04 22:29:39 -0800332 int ret = xattr_getsecurity(inode, suffix, value, size);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800333 /*
334 * Only overwrite the return value if a security module
335 * is actually active.
336 */
David P. Quigley4bea5802008-02-04 22:29:40 -0800337 if (ret == -EOPNOTSUPP)
338 goto nolsm;
339 return ret;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800340 }
David P. Quigley4bea5802008-02-04 22:29:40 -0800341nolsm:
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200342 return __vfs_getxattr(dentry, inode, name, value, size);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800343}
344EXPORT_SYMBOL_GPL(vfs_getxattr);
345
Bill Nottingham659564c2006-10-09 16:10:48 -0400346ssize_t
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200347vfs_listxattr(struct dentry *dentry, char *list, size_t size)
Bill Nottingham659564c2006-10-09 16:10:48 -0400348{
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200349 struct inode *inode = d_inode(dentry);
Bill Nottingham659564c2006-10-09 16:10:48 -0400350 ssize_t error;
351
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200352 error = security_inode_listxattr(dentry);
Bill Nottingham659564c2006-10-09 16:10:48 -0400353 if (error)
354 return error;
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200355 if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
356 error = -EOPNOTSUPP;
357 error = inode->i_op->listxattr(dentry, list, size);
Bill Nottingham659564c2006-10-09 16:10:48 -0400358 } else {
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200359 error = security_inode_listsecurity(inode, list, size);
Bill Nottingham659564c2006-10-09 16:10:48 -0400360 if (size && error > size)
361 error = -ERANGE;
362 }
363 return error;
364}
365EXPORT_SYMBOL_GPL(vfs_listxattr);
366
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800367int
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200368__vfs_removexattr(struct dentry *dentry, const char *name)
369{
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200370 struct inode *inode = d_inode(dentry);
371 const struct xattr_handler *handler;
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200372
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200373 handler = xattr_resolve_name(inode, &name);
374 if (IS_ERR(handler))
375 return PTR_ERR(handler);
376 if (!handler->set)
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200377 return -EOPNOTSUPP;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200378 return handler->set(handler, dentry, inode, name, NULL, 0, XATTR_REPLACE);
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200379}
380EXPORT_SYMBOL(__vfs_removexattr);
381
382int
David Howells8f0cfa52008-04-29 00:59:41 -0700383vfs_removexattr(struct dentry *dentry, const char *name)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800384{
385 struct inode *inode = dentry->d_inode;
386 int error;
387
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800388 error = xattr_permission(inode, name, MAY_WRITE);
389 if (error)
390 return error;
391
Al Viro59551022016-01-22 15:40:57 -0500392 inode_lock(inode);
Mimi Zohar2ab51f32011-03-23 17:23:06 -0400393 error = security_inode_removexattr(dentry, name);
Dmitry Kasatkin7c51bb002014-11-20 16:31:01 +0200394 if (error)
395 goto out;
Mimi Zohar2ab51f32011-03-23 17:23:06 -0400396
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200397 error = __vfs_removexattr(dentry, name);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800398
Mimi Zoharc7b87de2011-03-09 14:39:18 -0500399 if (!error) {
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800400 fsnotify_xattr(dentry);
Mimi Zoharc7b87de2011-03-09 14:39:18 -0500401 evm_inode_post_removexattr(dentry, name);
402 }
Dmitry Kasatkin7c51bb002014-11-20 16:31:01 +0200403
404out:
Al Viro59551022016-01-22 15:40:57 -0500405 inode_unlock(inode);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800406 return error;
407}
408EXPORT_SYMBOL_GPL(vfs_removexattr);
409
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411/*
412 * Extended attribute SET operations
413 */
414static long
David Howells8f0cfa52008-04-29 00:59:41 -0700415setxattr(struct dentry *d, const char __user *name, const void __user *value,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 size_t size, int flags)
417{
418 int error;
419 void *kvalue = NULL;
420 char kname[XATTR_NAME_MAX + 1];
421
422 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
423 return -EINVAL;
424
425 error = strncpy_from_user(kname, name, sizeof(kname));
426 if (error == 0 || error == sizeof(kname))
427 error = -ERANGE;
428 if (error < 0)
429 return error;
430
431 if (size) {
432 if (size > XATTR_SIZE_MAX)
433 return -E2BIG;
Michal Hocko752ade62017-05-08 15:57:27 -0700434 kvalue = kvmalloc(size, GFP_KERNEL);
435 if (!kvalue)
436 return -ENOMEM;
Andrew Morton44c82492012-04-05 14:25:07 -0700437 if (copy_from_user(kvalue, value, size)) {
438 error = -EFAULT;
439 goto out;
440 }
Eric W. Biederman2f6f0652012-02-07 18:52:57 -0800441 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
442 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
443 posix_acl_fix_xattr_from_user(kvalue, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800446 error = vfs_setxattr(d, kname, kvalue, size, flags);
Andrew Morton44c82492012-04-05 14:25:07 -0700447out:
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100448 kvfree(kvalue);
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return error;
451}
452
Eric Biggers8cc43112014-10-12 11:59:58 -0500453static int path_setxattr(const char __user *pathname,
454 const char __user *name, const void __user *value,
455 size_t size, int flags, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Al Viro2d8f3032008-07-22 09:59:21 -0400457 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 int error;
Jeff Layton68f1bb82012-12-11 12:10:15 -0500459retry:
460 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (error)
462 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400463 error = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800464 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400465 error = setxattr(path.dentry, name, value, size, flags);
466 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800467 }
Al Viro2d8f3032008-07-22 09:59:21 -0400468 path_put(&path);
Jeff Layton68f1bb82012-12-11 12:10:15 -0500469 if (retry_estale(error, lookup_flags)) {
470 lookup_flags |= LOOKUP_REVAL;
471 goto retry;
472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return error;
474}
475
Eric Biggers8cc43112014-10-12 11:59:58 -0500476SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
477 const char __user *, name, const void __user *, value,
478 size_t, size, int, flags)
479{
480 return path_setxattr(pathname, name, value, size, flags, LOOKUP_FOLLOW);
481}
482
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100483SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
484 const char __user *, name, const void __user *, value,
485 size_t, size, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Eric Biggers8cc43112014-10-12 11:59:58 -0500487 return path_setxattr(pathname, name, value, size, flags, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100490SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
491 const void __user *,value, size_t, size, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Al Viro2903ff02012-08-28 12:52:22 -0400493 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 int error = -EBADF;
495
Al Viro2903ff02012-08-28 12:52:22 -0400496 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400498 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400499 error = mnt_want_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800500 if (!error) {
Al Viro9f45f5b2014-10-31 17:44:57 -0400501 error = setxattr(f.file->f_path.dentry, name, value, size, flags);
Al Viro2903ff02012-08-28 12:52:22 -0400502 mnt_drop_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800503 }
Al Viro2903ff02012-08-28 12:52:22 -0400504 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return error;
506}
507
508/*
509 * Extended attribute GET operations
510 */
511static ssize_t
David Howells8f0cfa52008-04-29 00:59:41 -0700512getxattr(struct dentry *d, const char __user *name, void __user *value,
513 size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
515 ssize_t error;
516 void *kvalue = NULL;
517 char kname[XATTR_NAME_MAX + 1];
518
519 error = strncpy_from_user(kname, name, sizeof(kname));
520 if (error == 0 || error == sizeof(kname))
521 error = -ERANGE;
522 if (error < 0)
523 return error;
524
525 if (size) {
526 if (size > XATTR_SIZE_MAX)
527 size = XATTR_SIZE_MAX;
Michal Hocko752ade62017-05-08 15:57:27 -0700528 kvalue = kvzalloc(size, GFP_KERNEL);
529 if (!kvalue)
530 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800533 error = vfs_getxattr(d, kname, kvalue, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700534 if (error > 0) {
Eric W. Biederman2f6f0652012-02-07 18:52:57 -0800535 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
536 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
537 posix_acl_fix_xattr_to_user(kvalue, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700538 if (size && copy_to_user(value, kvalue, error))
539 error = -EFAULT;
540 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
541 /* The file system tried to returned a value bigger
542 than XATTR_SIZE_MAX bytes. Not possible. */
543 error = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100545
546 kvfree(kvalue);
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return error;
549}
550
Eric Biggers8cc43112014-10-12 11:59:58 -0500551static ssize_t path_getxattr(const char __user *pathname,
552 const char __user *name, void __user *value,
553 size_t size, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Al Viro2d8f3032008-07-22 09:59:21 -0400555 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 ssize_t error;
Jeff Layton60e66b42012-12-11 12:10:16 -0500557retry:
558 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (error)
560 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400561 error = getxattr(path.dentry, name, value, size);
562 path_put(&path);
Jeff Layton60e66b42012-12-11 12:10:16 -0500563 if (retry_estale(error, lookup_flags)) {
564 lookup_flags |= LOOKUP_REVAL;
565 goto retry;
566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return error;
568}
569
Eric Biggers8cc43112014-10-12 11:59:58 -0500570SYSCALL_DEFINE4(getxattr, const char __user *, pathname,
571 const char __user *, name, void __user *, value, size_t, size)
572{
573 return path_getxattr(pathname, name, value, size, LOOKUP_FOLLOW);
574}
575
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100576SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
577 const char __user *, name, void __user *, value, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Eric Biggers8cc43112014-10-12 11:59:58 -0500579 return path_getxattr(pathname, name, value, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100582SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
583 void __user *, value, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Al Viro2903ff02012-08-28 12:52:22 -0400585 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 ssize_t error = -EBADF;
587
Al Viro2903ff02012-08-28 12:52:22 -0400588 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400590 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400591 error = getxattr(f.file->f_path.dentry, name, value, size);
592 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return error;
594}
595
596/*
597 * Extended attribute LIST operations
598 */
599static ssize_t
600listxattr(struct dentry *d, char __user *list, size_t size)
601{
602 ssize_t error;
603 char *klist = NULL;
604
605 if (size) {
606 if (size > XATTR_LIST_MAX)
607 size = XATTR_LIST_MAX;
Michal Hocko752ade62017-05-08 15:57:27 -0700608 klist = kvmalloc(size, GFP_KERNEL);
609 if (!klist)
610 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
Bill Nottingham659564c2006-10-09 16:10:48 -0400613 error = vfs_listxattr(d, klist, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700614 if (error > 0) {
615 if (size && copy_to_user(list, klist, error))
616 error = -EFAULT;
617 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
618 /* The file system tried to returned a list bigger
619 than XATTR_LIST_MAX bytes. Not possible. */
620 error = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100622
623 kvfree(klist);
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return error;
626}
627
Eric Biggers8cc43112014-10-12 11:59:58 -0500628static ssize_t path_listxattr(const char __user *pathname, char __user *list,
629 size_t size, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Al Viro2d8f3032008-07-22 09:59:21 -0400631 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 ssize_t error;
Jeff Layton10a90cf2012-12-11 12:10:16 -0500633retry:
634 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (error)
636 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400637 error = listxattr(path.dentry, list, size);
638 path_put(&path);
Jeff Layton10a90cf2012-12-11 12:10:16 -0500639 if (retry_estale(error, lookup_flags)) {
640 lookup_flags |= LOOKUP_REVAL;
641 goto retry;
642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return error;
644}
645
Eric Biggers8cc43112014-10-12 11:59:58 -0500646SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
647 size_t, size)
648{
649 return path_listxattr(pathname, list, size, LOOKUP_FOLLOW);
650}
651
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100652SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
653 size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Eric Biggers8cc43112014-10-12 11:59:58 -0500655 return path_listxattr(pathname, list, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100658SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Al Viro2903ff02012-08-28 12:52:22 -0400660 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 ssize_t error = -EBADF;
662
Al Viro2903ff02012-08-28 12:52:22 -0400663 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400665 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400666 error = listxattr(f.file->f_path.dentry, list, size);
667 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return error;
669}
670
671/*
672 * Extended attribute REMOVE operations
673 */
674static long
David Howells8f0cfa52008-04-29 00:59:41 -0700675removexattr(struct dentry *d, const char __user *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 int error;
678 char kname[XATTR_NAME_MAX + 1];
679
680 error = strncpy_from_user(kname, name, sizeof(kname));
681 if (error == 0 || error == sizeof(kname))
682 error = -ERANGE;
683 if (error < 0)
684 return error;
685
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800686 return vfs_removexattr(d, kname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Eric Biggers8cc43112014-10-12 11:59:58 -0500689static int path_removexattr(const char __user *pathname,
690 const char __user *name, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Al Viro2d8f3032008-07-22 09:59:21 -0400692 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 int error;
Jeff Layton12f06212012-12-11 12:10:17 -0500694retry:
695 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (error)
697 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400698 error = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800699 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400700 error = removexattr(path.dentry, name);
701 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800702 }
Al Viro2d8f3032008-07-22 09:59:21 -0400703 path_put(&path);
Jeff Layton12f06212012-12-11 12:10:17 -0500704 if (retry_estale(error, lookup_flags)) {
705 lookup_flags |= LOOKUP_REVAL;
706 goto retry;
707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return error;
709}
710
Eric Biggers8cc43112014-10-12 11:59:58 -0500711SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
712 const char __user *, name)
713{
714 return path_removexattr(pathname, name, LOOKUP_FOLLOW);
715}
716
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100717SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
718 const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Eric Biggers8cc43112014-10-12 11:59:58 -0500720 return path_removexattr(pathname, name, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100723SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Al Viro2903ff02012-08-28 12:52:22 -0400725 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 int error = -EBADF;
727
Al Viro2903ff02012-08-28 12:52:22 -0400728 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400730 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400731 error = mnt_want_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800732 if (!error) {
Al Viro9f45f5b2014-10-31 17:44:57 -0400733 error = removexattr(f.file->f_path.dentry, name);
Al Viro2903ff02012-08-28 12:52:22 -0400734 mnt_drop_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800735 }
Al Viro2903ff02012-08-28 12:52:22 -0400736 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return error;
738}
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 * Combine the results of the list() operation from every xattr_handler in the
742 * list.
743 */
744ssize_t
745generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
746{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700747 const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 unsigned int size = 0;
749
750 if (!buffer) {
Christoph Hellwig431547b2009-11-13 09:52:56 +0000751 for_each_xattr_handler(handlers, handler) {
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100752 if (!handler->name ||
753 (handler->list && !handler->list(dentry)))
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +0100754 continue;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100755 size += strlen(handler->name) + 1;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 } else {
758 char *buf = buffer;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100759 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 for_each_xattr_handler(handlers, handler) {
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100762 if (!handler->name ||
763 (handler->list && !handler->list(dentry)))
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +0100764 continue;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100765 len = strlen(handler->name);
766 if (len + 1 > buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return -ERANGE;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100768 memcpy(buf, handler->name, len + 1);
769 buf += len + 1;
770 buffer_size -= len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772 size = buf - buffer;
773 }
774 return size;
775}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776EXPORT_SYMBOL(generic_listxattr);
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400777
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200778/**
779 * xattr_full_name - Compute full attribute name from suffix
780 *
781 * @handler: handler of the xattr_handler operation
782 * @name: name passed to the xattr_handler operation
783 *
784 * The get and set xattr handler operations are called with the remainder of
785 * the attribute name after skipping the handler's prefix: for example, "foo"
786 * is passed to the get operation of a handler with prefix "user." to get
787 * attribute "user.foo". The full name is still "there" in the name though.
788 *
789 * Note: the list xattr handler operation when called from the vfs is passed a
790 * NULL name; some file systems use this operation internally, with varying
791 * semantics.
792 */
793const char *xattr_full_name(const struct xattr_handler *handler,
794 const char *name)
795{
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100796 size_t prefix_len = strlen(xattr_prefix(handler));
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200797
798 return name - prefix_len;
799}
800EXPORT_SYMBOL(xattr_full_name);
801
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400802/*
803 * Allocate new xattr and copy in the value; but leave the name to callers.
804 */
805struct simple_xattr *simple_xattr_alloc(const void *value, size_t size)
806{
807 struct simple_xattr *new_xattr;
808 size_t len;
809
810 /* wrap around? */
811 len = sizeof(*new_xattr) + size;
Hugh Dickins4e66d442014-07-23 14:00:17 -0700812 if (len < sizeof(*new_xattr))
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400813 return NULL;
814
815 new_xattr = kmalloc(len, GFP_KERNEL);
816 if (!new_xattr)
817 return NULL;
818
819 new_xattr->size = size;
820 memcpy(new_xattr->value, value, size);
821 return new_xattr;
822}
823
824/*
825 * xattr GET operation for in-memory/pseudo filesystems
826 */
827int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
828 void *buffer, size_t size)
829{
830 struct simple_xattr *xattr;
831 int ret = -ENODATA;
832
833 spin_lock(&xattrs->lock);
834 list_for_each_entry(xattr, &xattrs->head, list) {
835 if (strcmp(name, xattr->name))
836 continue;
837
838 ret = xattr->size;
839 if (buffer) {
840 if (size < xattr->size)
841 ret = -ERANGE;
842 else
843 memcpy(buffer, xattr->value, xattr->size);
844 }
845 break;
846 }
847 spin_unlock(&xattrs->lock);
848 return ret;
849}
850
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +0100851/**
852 * simple_xattr_set - xattr SET operation for in-memory/pseudo filesystems
853 * @xattrs: target simple_xattr list
854 * @name: name of the extended attribute
855 * @value: value of the xattr. If %NULL, will remove the attribute.
856 * @size: size of the new xattr
857 * @flags: %XATTR_{CREATE|REPLACE}
858 *
859 * %XATTR_CREATE is set, the xattr shouldn't exist already; otherwise fails
860 * with -EEXIST. If %XATTR_REPLACE is set, the xattr should exist;
861 * otherwise, fails with -ENODATA.
862 *
863 * Returns 0 on success, -errno on failure.
864 */
865int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
866 const void *value, size_t size, int flags)
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400867{
868 struct simple_xattr *xattr;
David Rientjes43385842012-10-17 20:41:15 -0700869 struct simple_xattr *new_xattr = NULL;
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400870 int err = 0;
871
872 /* value == NULL means remove */
873 if (value) {
874 new_xattr = simple_xattr_alloc(value, size);
875 if (!new_xattr)
876 return -ENOMEM;
877
878 new_xattr->name = kstrdup(name, GFP_KERNEL);
879 if (!new_xattr->name) {
880 kfree(new_xattr);
881 return -ENOMEM;
882 }
883 }
884
885 spin_lock(&xattrs->lock);
886 list_for_each_entry(xattr, &xattrs->head, list) {
887 if (!strcmp(name, xattr->name)) {
888 if (flags & XATTR_CREATE) {
889 xattr = new_xattr;
890 err = -EEXIST;
891 } else if (new_xattr) {
892 list_replace(&xattr->list, &new_xattr->list);
893 } else {
894 list_del(&xattr->list);
895 }
896 goto out;
897 }
898 }
899 if (flags & XATTR_REPLACE) {
900 xattr = new_xattr;
901 err = -ENODATA;
902 } else {
903 list_add(&new_xattr->list, &xattrs->head);
904 xattr = NULL;
905 }
906out:
907 spin_unlock(&xattrs->lock);
908 if (xattr) {
909 kfree(xattr->name);
910 kfree(xattr);
911 }
912 return err;
913
914}
915
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400916static bool xattr_is_trusted(const char *name)
917{
918 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
919}
920
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100921static int xattr_list_one(char **buffer, ssize_t *remaining_size,
922 const char *name)
923{
924 size_t len = strlen(name) + 1;
925 if (*buffer) {
926 if (*remaining_size < len)
927 return -ERANGE;
928 memcpy(*buffer, name, len);
929 *buffer += len;
930 }
931 *remaining_size -= len;
932 return 0;
933}
934
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400935/*
936 * xattr LIST operation for in-memory/pseudo filesystems
937 */
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100938ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs,
939 char *buffer, size_t size)
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400940{
941 bool trusted = capable(CAP_SYS_ADMIN);
942 struct simple_xattr *xattr;
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100943 ssize_t remaining_size = size;
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +0100944 int err = 0;
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100945
946#ifdef CONFIG_FS_POSIX_ACL
947 if (inode->i_acl) {
948 err = xattr_list_one(&buffer, &remaining_size,
949 XATTR_NAME_POSIX_ACL_ACCESS);
950 if (err)
951 return err;
952 }
953 if (inode->i_default_acl) {
954 err = xattr_list_one(&buffer, &remaining_size,
955 XATTR_NAME_POSIX_ACL_DEFAULT);
956 if (err)
957 return err;
958 }
959#endif
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400960
961 spin_lock(&xattrs->lock);
962 list_for_each_entry(xattr, &xattrs->head, list) {
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400963 /* skip "trusted." attributes for unprivileged callers */
964 if (!trusted && xattr_is_trusted(xattr->name))
965 continue;
966
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100967 err = xattr_list_one(&buffer, &remaining_size, xattr->name);
968 if (err)
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +0100969 break;
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400970 }
971 spin_unlock(&xattrs->lock);
972
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +0100973 return err ? err : size - remaining_size;
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400974}
975
Aristeu Rozanski48957682012-09-11 16:28:11 -0400976/*
977 * Adds an extended attribute to the list
978 */
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400979void simple_xattr_list_add(struct simple_xattrs *xattrs,
980 struct simple_xattr *new_xattr)
981{
982 spin_lock(&xattrs->lock);
983 list_add(&new_xattr->list, &xattrs->head);
984 spin_unlock(&xattrs->lock);
985}