blob: c0fd99c95aa15ed0a74aa94b24a9b31c9cfcf364 [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
Andrew Morton0d08d7b2012-04-05 14:25:07 -070025#include <asm/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 Linden419d10a2020-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 Linden419d10a2020-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 Linden419d10a2020-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 Linden419d10a2020-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 Linden419d10a2020-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
268ssize_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 Schaufler88c195d2017-09-19 09:39:08 -0700289 kfree(buffer);
David P. Quigley42492592008-02-04 22:29:39 -0800290out_noalloc:
291 return len;
292}
293EXPORT_SYMBOL_GPL(xattr_getsecurity);
294
Mimi Zohar1601fba2011-03-09 14:23:34 -0500295/*
296 * vfs_getxattr_alloc - allocate memory, if necessary, before calling getxattr
297 *
298 * Allocate memory, if not already allocated, or re-allocate correct size,
299 * before retrieving the extended attribute.
300 *
301 * Returns the result of alloc, if failed, or the getxattr operation.
302 */
303ssize_t
304vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
305 size_t xattr_size, gfp_t flags)
306{
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200307 const struct xattr_handler *handler;
Mimi Zohar1601fba2011-03-09 14:23:34 -0500308 struct inode *inode = dentry->d_inode;
309 char *value = *xattr_value;
310 int error;
311
312 error = xattr_permission(inode, name, MAY_READ);
313 if (error)
314 return error;
315
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200316 handler = xattr_resolve_name(inode, &name);
317 if (IS_ERR(handler))
318 return PTR_ERR(handler);
319 if (!handler->get)
Mimi Zohar1601fba2011-03-09 14:23:34 -0500320 return -EOPNOTSUPP;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200321 error = handler->get(handler, dentry, inode, name, NULL, 0);
Mimi Zohar1601fba2011-03-09 14:23:34 -0500322 if (error < 0)
323 return error;
324
325 if (!value || (error > xattr_size)) {
326 value = krealloc(*xattr_value, error + 1, flags);
327 if (!value)
328 return -ENOMEM;
329 memset(value, 0, error + 1);
330 }
331
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200332 error = handler->get(handler, dentry, inode, name, value, error);
Mimi Zohar1601fba2011-03-09 14:23:34 -0500333 *xattr_value = value;
334 return error;
335}
336
David P. Quigley42492592008-02-04 22:29:39 -0800337ssize_t
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200338__vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
339 void *value, size_t size)
340{
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200341 const struct xattr_handler *handler;
342
343 handler = xattr_resolve_name(inode, &name);
344 if (IS_ERR(handler))
345 return PTR_ERR(handler);
346 if (!handler->get)
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200347 return -EOPNOTSUPP;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200348 return handler->get(handler, dentry, inode, name, value, size);
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200349}
350EXPORT_SYMBOL(__vfs_getxattr);
351
352ssize_t
David Howells8f0cfa52008-04-29 00:59:41 -0700353vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800354{
355 struct inode *inode = dentry->d_inode;
356 int error;
357
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800358 error = xattr_permission(inode, name, MAY_READ);
359 if (error)
360 return error;
361
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800362 error = security_inode_getxattr(dentry, name);
363 if (error)
364 return error;
365
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800366 if (!strncmp(name, XATTR_SECURITY_PREFIX,
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800367 XATTR_SECURITY_PREFIX_LEN)) {
368 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
David P. Quigley42492592008-02-04 22:29:39 -0800369 int ret = xattr_getsecurity(inode, suffix, value, size);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800370 /*
371 * Only overwrite the return value if a security module
372 * is actually active.
373 */
David P. Quigley4bea5802008-02-04 22:29:40 -0800374 if (ret == -EOPNOTSUPP)
375 goto nolsm;
376 return ret;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800377 }
David P. Quigley4bea5802008-02-04 22:29:40 -0800378nolsm:
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200379 return __vfs_getxattr(dentry, inode, name, value, size);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800380}
381EXPORT_SYMBOL_GPL(vfs_getxattr);
382
Bill Nottingham659564c2006-10-09 16:10:48 -0400383ssize_t
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200384vfs_listxattr(struct dentry *dentry, char *list, size_t size)
Bill Nottingham659564c2006-10-09 16:10:48 -0400385{
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200386 struct inode *inode = d_inode(dentry);
Bill Nottingham659564c2006-10-09 16:10:48 -0400387 ssize_t error;
388
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200389 error = security_inode_listxattr(dentry);
Bill Nottingham659564c2006-10-09 16:10:48 -0400390 if (error)
391 return error;
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200392 if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
393 error = -EOPNOTSUPP;
394 error = inode->i_op->listxattr(dentry, list, size);
Bill Nottingham659564c2006-10-09 16:10:48 -0400395 } else {
Andreas Gruenbacherbf3ee712016-09-29 17:48:43 +0200396 error = security_inode_listsecurity(inode, list, size);
Bill Nottingham659564c2006-10-09 16:10:48 -0400397 if (size && error > size)
398 error = -ERANGE;
399 }
400 return error;
401}
402EXPORT_SYMBOL_GPL(vfs_listxattr);
403
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800404int
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200405__vfs_removexattr(struct dentry *dentry, const char *name)
406{
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200407 struct inode *inode = d_inode(dentry);
408 const struct xattr_handler *handler;
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200409
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200410 handler = xattr_resolve_name(inode, &name);
411 if (IS_ERR(handler))
412 return PTR_ERR(handler);
413 if (!handler->set)
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200414 return -EOPNOTSUPP;
Andreas Gruenbacher6c6ef9f2016-09-29 17:48:44 +0200415 return handler->set(handler, dentry, inode, name, NULL, 0, XATTR_REPLACE);
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200416}
417EXPORT_SYMBOL(__vfs_removexattr);
418
Frank van der Linden419d10a2020-06-23 22:39:18 +0000419/**
420 * __vfs_removexattr_locked: set an extended attribute while holding the inode
421 * lock
422 *
423 * @dentry - object to perform setxattr on
424 * @name - name of xattr to remove
425 * @delegated_inode - on return, will contain an inode pointer that
426 * a delegation was broken on, NULL if none.
427 */
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200428int
Frank van der Linden419d10a2020-06-23 22:39:18 +0000429__vfs_removexattr_locked(struct dentry *dentry, const char *name,
430 struct inode **delegated_inode)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800431{
432 struct inode *inode = dentry->d_inode;
433 int error;
434
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800435 error = xattr_permission(inode, name, MAY_WRITE);
436 if (error)
437 return error;
438
Mimi Zohar2ab51f32011-03-23 17:23:06 -0400439 error = security_inode_removexattr(dentry, name);
Dmitry Kasatkin7c51bb02014-11-20 16:31:01 +0200440 if (error)
441 goto out;
Mimi Zohar2ab51f32011-03-23 17:23:06 -0400442
Frank van der Linden419d10a2020-06-23 22:39:18 +0000443 error = try_break_deleg(inode, delegated_inode);
444 if (error)
445 goto out;
446
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +0200447 error = __vfs_removexattr(dentry, name);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800448
Mimi Zoharc7b87de2011-03-09 14:39:18 -0500449 if (!error) {
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800450 fsnotify_xattr(dentry);
Mimi Zoharc7b87de2011-03-09 14:39:18 -0500451 evm_inode_post_removexattr(dentry, name);
452 }
Dmitry Kasatkin7c51bb02014-11-20 16:31:01 +0200453
454out:
Frank van der Linden419d10a2020-06-23 22:39:18 +0000455 return error;
456}
457EXPORT_SYMBOL_GPL(__vfs_removexattr_locked);
458
459int
460vfs_removexattr(struct dentry *dentry, const char *name)
461{
462 struct inode *inode = dentry->d_inode;
463 struct inode *delegated_inode = NULL;
464 int error;
465
466retry_deleg:
467 inode_lock(inode);
468 error = __vfs_removexattr_locked(dentry, name, &delegated_inode);
Al Viro59551022016-01-22 15:40:57 -0500469 inode_unlock(inode);
Frank van der Linden419d10a2020-06-23 22:39:18 +0000470
471 if (delegated_inode) {
472 error = break_deleg_wait(&delegated_inode);
473 if (!error)
474 goto retry_deleg;
475 }
476
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800477 return error;
478}
479EXPORT_SYMBOL_GPL(vfs_removexattr);
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481/*
482 * Extended attribute SET operations
483 */
484static long
David Howells8f0cfa52008-04-29 00:59:41 -0700485setxattr(struct dentry *d, const char __user *name, const void __user *value,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 size_t size, int flags)
487{
488 int error;
489 void *kvalue = NULL;
490 char kname[XATTR_NAME_MAX + 1];
491
492 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
493 return -EINVAL;
494
495 error = strncpy_from_user(kname, name, sizeof(kname));
496 if (error == 0 || error == sizeof(kname))
497 error = -ERANGE;
498 if (error < 0)
499 return error;
500
501 if (size) {
502 if (size > XATTR_SIZE_MAX)
503 return -E2BIG;
Andrew Morton44c82492012-04-05 14:25:07 -0700504 kvalue = kmalloc(size, GFP_KERNEL | __GFP_NOWARN);
505 if (!kvalue) {
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100506 kvalue = vmalloc(size);
507 if (!kvalue)
Andrew Morton44c82492012-04-05 14:25:07 -0700508 return -ENOMEM;
Andrew Morton44c82492012-04-05 14:25:07 -0700509 }
510 if (copy_from_user(kvalue, value, size)) {
511 error = -EFAULT;
512 goto out;
513 }
Eric W. Biederman2f6f0652012-02-07 18:52:57 -0800514 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
515 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
516 posix_acl_fix_xattr_from_user(kvalue, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800519 error = vfs_setxattr(d, kname, kvalue, size, flags);
Andrew Morton44c82492012-04-05 14:25:07 -0700520out:
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100521 kvfree(kvalue);
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return error;
524}
525
Eric Biggers8cc43112014-10-12 11:59:58 -0500526static int path_setxattr(const char __user *pathname,
527 const char __user *name, const void __user *value,
528 size_t size, int flags, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Al Viro2d8f3032008-07-22 09:59:21 -0400530 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 int error;
Jeff Layton68f1bb82012-12-11 12:10:15 -0500532retry:
533 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (error)
535 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400536 error = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800537 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400538 error = setxattr(path.dentry, name, value, size, flags);
539 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800540 }
Al Viro2d8f3032008-07-22 09:59:21 -0400541 path_put(&path);
Jeff Layton68f1bb82012-12-11 12:10:15 -0500542 if (retry_estale(error, lookup_flags)) {
543 lookup_flags |= LOOKUP_REVAL;
544 goto retry;
545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return error;
547}
548
Eric Biggers8cc43112014-10-12 11:59:58 -0500549SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
550 const char __user *, name, const void __user *, value,
551 size_t, size, int, flags)
552{
553 return path_setxattr(pathname, name, value, size, flags, LOOKUP_FOLLOW);
554}
555
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100556SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
557 const char __user *, name, const void __user *, value,
558 size_t, size, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Eric Biggers8cc43112014-10-12 11:59:58 -0500560 return path_setxattr(pathname, name, value, size, flags, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100563SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
564 const void __user *,value, size_t, size, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Al Viro2903ff02012-08-28 12:52:22 -0400566 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 int error = -EBADF;
568
Al Viro2903ff02012-08-28 12:52:22 -0400569 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400571 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400572 error = mnt_want_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800573 if (!error) {
Al Viro9f45f5b2014-10-31 17:44:57 -0400574 error = setxattr(f.file->f_path.dentry, name, value, size, flags);
Al Viro2903ff02012-08-28 12:52:22 -0400575 mnt_drop_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800576 }
Al Viro2903ff02012-08-28 12:52:22 -0400577 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return error;
579}
580
581/*
582 * Extended attribute GET operations
583 */
584static ssize_t
David Howells8f0cfa52008-04-29 00:59:41 -0700585getxattr(struct dentry *d, const char __user *name, void __user *value,
586 size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 ssize_t error;
589 void *kvalue = NULL;
590 char kname[XATTR_NAME_MAX + 1];
591
592 error = strncpy_from_user(kname, name, sizeof(kname));
593 if (error == 0 || error == sizeof(kname))
594 error = -ERANGE;
595 if (error < 0)
596 return error;
597
598 if (size) {
599 if (size > XATTR_SIZE_MAX)
600 size = XATTR_SIZE_MAX;
Sasha Levin779302e2012-07-30 14:39:13 -0700601 kvalue = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
602 if (!kvalue) {
Michal Hocko9a6bb7b2017-05-08 15:57:24 -0700603 kvalue = vzalloc(size);
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100604 if (!kvalue)
Sasha Levin779302e2012-07-30 14:39:13 -0700605 return -ENOMEM;
Sasha Levin779302e2012-07-30 14:39:13 -0700606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800609 error = vfs_getxattr(d, kname, kvalue, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700610 if (error > 0) {
Eric W. Biederman2f6f0652012-02-07 18:52:57 -0800611 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
612 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
Christian Brauner6fdad642018-06-07 13:43:48 +0200613 posix_acl_fix_xattr_to_user(kvalue, error);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700614 if (size && copy_to_user(value, kvalue, error))
615 error = -EFAULT;
616 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
617 /* The file system tried to returned a value bigger
618 than XATTR_SIZE_MAX bytes. Not possible. */
619 error = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100621
622 kvfree(kvalue);
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return error;
625}
626
Eric Biggers8cc43112014-10-12 11:59:58 -0500627static ssize_t path_getxattr(const char __user *pathname,
628 const char __user *name, void __user *value,
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 Layton60e66b42012-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 = getxattr(path.dentry, name, value, size);
638 path_put(&path);
Jeff Layton60e66b42012-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_DEFINE4(getxattr, const char __user *, pathname,
647 const char __user *, name, void __user *, value, size_t, size)
648{
649 return path_getxattr(pathname, name, value, size, LOOKUP_FOLLOW);
650}
651
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100652SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
653 const char __user *, name, void __user *, value, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Eric Biggers8cc43112014-10-12 11:59:58 -0500655 return path_getxattr(pathname, name, value, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100658SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
659 void __user *, value, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Al Viro2903ff02012-08-28 12:52:22 -0400661 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 ssize_t error = -EBADF;
663
Al Viro2903ff02012-08-28 12:52:22 -0400664 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400666 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400667 error = getxattr(f.file->f_path.dentry, name, value, size);
668 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return error;
670}
671
672/*
673 * Extended attribute LIST operations
674 */
675static ssize_t
676listxattr(struct dentry *d, char __user *list, size_t size)
677{
678 ssize_t error;
679 char *klist = NULL;
680
681 if (size) {
682 if (size > XATTR_LIST_MAX)
683 size = XATTR_LIST_MAX;
Dave Jones703bf2d2012-04-05 14:25:06 -0700684 klist = kmalloc(size, __GFP_NOWARN | GFP_KERNEL);
Andrew Morton0d08d7b2012-04-05 14:25:07 -0700685 if (!klist) {
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100686 klist = vmalloc(size);
687 if (!klist)
Andrew Morton0d08d7b2012-04-05 14:25:07 -0700688 return -ENOMEM;
Andrew Morton0d08d7b2012-04-05 14:25:07 -0700689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
691
Bill Nottingham659564c2006-10-09 16:10:48 -0400692 error = vfs_listxattr(d, klist, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700693 if (error > 0) {
694 if (size && copy_to_user(list, klist, error))
695 error = -EFAULT;
696 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
697 /* The file system tried to returned a list bigger
698 than XATTR_LIST_MAX bytes. Not possible. */
699 error = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100701
702 kvfree(klist);
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return error;
705}
706
Eric Biggers8cc43112014-10-12 11:59:58 -0500707static ssize_t path_listxattr(const char __user *pathname, char __user *list,
708 size_t size, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Al Viro2d8f3032008-07-22 09:59:21 -0400710 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 ssize_t error;
Jeff Layton10a90cf2012-12-11 12:10:16 -0500712retry:
713 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (error)
715 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400716 error = listxattr(path.dentry, list, size);
717 path_put(&path);
Jeff Layton10a90cf2012-12-11 12:10:16 -0500718 if (retry_estale(error, lookup_flags)) {
719 lookup_flags |= LOOKUP_REVAL;
720 goto retry;
721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return error;
723}
724
Eric Biggers8cc43112014-10-12 11:59:58 -0500725SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
726 size_t, size)
727{
728 return path_listxattr(pathname, list, size, LOOKUP_FOLLOW);
729}
730
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100731SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
732 size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Eric Biggers8cc43112014-10-12 11:59:58 -0500734 return path_listxattr(pathname, list, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100737SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Al Viro2903ff02012-08-28 12:52:22 -0400739 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 ssize_t error = -EBADF;
741
Al Viro2903ff02012-08-28 12:52:22 -0400742 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400744 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400745 error = listxattr(f.file->f_path.dentry, list, size);
746 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return error;
748}
749
750/*
751 * Extended attribute REMOVE operations
752 */
753static long
David Howells8f0cfa52008-04-29 00:59:41 -0700754removexattr(struct dentry *d, const char __user *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
756 int error;
757 char kname[XATTR_NAME_MAX + 1];
758
759 error = strncpy_from_user(kname, name, sizeof(kname));
760 if (error == 0 || error == sizeof(kname))
761 error = -ERANGE;
762 if (error < 0)
763 return error;
764
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800765 return vfs_removexattr(d, kname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Eric Biggers8cc43112014-10-12 11:59:58 -0500768static int path_removexattr(const char __user *pathname,
769 const char __user *name, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Al Viro2d8f3032008-07-22 09:59:21 -0400771 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 int error;
Jeff Layton12f06212012-12-11 12:10:17 -0500773retry:
774 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (error)
776 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400777 error = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800778 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400779 error = removexattr(path.dentry, name);
780 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800781 }
Al Viro2d8f3032008-07-22 09:59:21 -0400782 path_put(&path);
Jeff Layton12f06212012-12-11 12:10:17 -0500783 if (retry_estale(error, lookup_flags)) {
784 lookup_flags |= LOOKUP_REVAL;
785 goto retry;
786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return error;
788}
789
Eric Biggers8cc43112014-10-12 11:59:58 -0500790SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
791 const char __user *, name)
792{
793 return path_removexattr(pathname, name, LOOKUP_FOLLOW);
794}
795
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100796SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
797 const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
Eric Biggers8cc43112014-10-12 11:59:58 -0500799 return path_removexattr(pathname, name, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100802SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Al Viro2903ff02012-08-28 12:52:22 -0400804 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 int error = -EBADF;
806
Al Viro2903ff02012-08-28 12:52:22 -0400807 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400809 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400810 error = mnt_want_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800811 if (!error) {
Al Viro9f45f5b2014-10-31 17:44:57 -0400812 error = removexattr(f.file->f_path.dentry, name);
Al Viro2903ff02012-08-28 12:52:22 -0400813 mnt_drop_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800814 }
Al Viro2903ff02012-08-28 12:52:22 -0400815 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return error;
817}
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 * Combine the results of the list() operation from every xattr_handler in the
821 * list.
822 */
823ssize_t
824generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
825{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700826 const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 unsigned int size = 0;
828
829 if (!buffer) {
Christoph Hellwig431547b2009-11-13 09:52:56 +0000830 for_each_xattr_handler(handlers, handler) {
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100831 if (!handler->name ||
832 (handler->list && !handler->list(dentry)))
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +0100833 continue;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100834 size += strlen(handler->name) + 1;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 } else {
837 char *buf = buffer;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100838 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 for_each_xattr_handler(handlers, handler) {
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100841 if (!handler->name ||
842 (handler->list && !handler->list(dentry)))
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +0100843 continue;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100844 len = strlen(handler->name);
845 if (len + 1 > buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return -ERANGE;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100847 memcpy(buf, handler->name, len + 1);
848 buf += len + 1;
849 buffer_size -= len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
851 size = buf - buffer;
852 }
853 return size;
854}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855EXPORT_SYMBOL(generic_listxattr);
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400856
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200857/**
858 * xattr_full_name - Compute full attribute name from suffix
859 *
860 * @handler: handler of the xattr_handler operation
861 * @name: name passed to the xattr_handler operation
862 *
863 * The get and set xattr handler operations are called with the remainder of
864 * the attribute name after skipping the handler's prefix: for example, "foo"
865 * is passed to the get operation of a handler with prefix "user." to get
866 * attribute "user.foo". The full name is still "there" in the name though.
867 *
868 * Note: the list xattr handler operation when called from the vfs is passed a
869 * NULL name; some file systems use this operation internally, with varying
870 * semantics.
871 */
872const char *xattr_full_name(const struct xattr_handler *handler,
873 const char *name)
874{
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100875 size_t prefix_len = strlen(xattr_prefix(handler));
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200876
877 return name - prefix_len;
878}
879EXPORT_SYMBOL(xattr_full_name);
880
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400881/*
882 * Allocate new xattr and copy in the value; but leave the name to callers.
883 */
884struct simple_xattr *simple_xattr_alloc(const void *value, size_t size)
885{
886 struct simple_xattr *new_xattr;
887 size_t len;
888
889 /* wrap around? */
890 len = sizeof(*new_xattr) + size;
Hugh Dickins4e66d442014-07-23 14:00:17 -0700891 if (len < sizeof(*new_xattr))
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400892 return NULL;
893
894 new_xattr = kmalloc(len, GFP_KERNEL);
895 if (!new_xattr)
896 return NULL;
897
898 new_xattr->size = size;
899 memcpy(new_xattr->value, value, size);
900 return new_xattr;
901}
902
903/*
904 * xattr GET operation for in-memory/pseudo filesystems
905 */
906int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
907 void *buffer, size_t size)
908{
909 struct simple_xattr *xattr;
910 int ret = -ENODATA;
911
912 spin_lock(&xattrs->lock);
913 list_for_each_entry(xattr, &xattrs->head, list) {
914 if (strcmp(name, xattr->name))
915 continue;
916
917 ret = xattr->size;
918 if (buffer) {
919 if (size < xattr->size)
920 ret = -ERANGE;
921 else
922 memcpy(buffer, xattr->value, xattr->size);
923 }
924 break;
925 }
926 spin_unlock(&xattrs->lock);
927 return ret;
928}
929
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +0100930/**
931 * simple_xattr_set - xattr SET operation for in-memory/pseudo filesystems
932 * @xattrs: target simple_xattr list
933 * @name: name of the extended attribute
934 * @value: value of the xattr. If %NULL, will remove the attribute.
935 * @size: size of the new xattr
936 * @flags: %XATTR_{CREATE|REPLACE}
937 *
938 * %XATTR_CREATE is set, the xattr shouldn't exist already; otherwise fails
939 * with -EEXIST. If %XATTR_REPLACE is set, the xattr should exist;
940 * otherwise, fails with -ENODATA.
941 *
942 * Returns 0 on success, -errno on failure.
943 */
944int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
945 const void *value, size_t size, int flags)
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400946{
947 struct simple_xattr *xattr;
David Rientjes43385842012-10-17 20:41:15 -0700948 struct simple_xattr *new_xattr = NULL;
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400949 int err = 0;
950
951 /* value == NULL means remove */
952 if (value) {
953 new_xattr = simple_xattr_alloc(value, size);
954 if (!new_xattr)
955 return -ENOMEM;
956
957 new_xattr->name = kstrdup(name, GFP_KERNEL);
958 if (!new_xattr->name) {
959 kfree(new_xattr);
960 return -ENOMEM;
961 }
962 }
963
964 spin_lock(&xattrs->lock);
965 list_for_each_entry(xattr, &xattrs->head, list) {
966 if (!strcmp(name, xattr->name)) {
967 if (flags & XATTR_CREATE) {
968 xattr = new_xattr;
969 err = -EEXIST;
970 } else if (new_xattr) {
971 list_replace(&xattr->list, &new_xattr->list);
972 } else {
973 list_del(&xattr->list);
974 }
975 goto out;
976 }
977 }
978 if (flags & XATTR_REPLACE) {
979 xattr = new_xattr;
980 err = -ENODATA;
981 } else {
982 list_add(&new_xattr->list, &xattrs->head);
983 xattr = NULL;
984 }
985out:
986 spin_unlock(&xattrs->lock);
987 if (xattr) {
988 kfree(xattr->name);
989 kfree(xattr);
990 }
991 return err;
992
993}
994
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400995static bool xattr_is_trusted(const char *name)
996{
997 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
998}
999
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01001000static int xattr_list_one(char **buffer, ssize_t *remaining_size,
1001 const char *name)
1002{
1003 size_t len = strlen(name) + 1;
1004 if (*buffer) {
1005 if (*remaining_size < len)
1006 return -ERANGE;
1007 memcpy(*buffer, name, len);
1008 *buffer += len;
1009 }
1010 *remaining_size -= len;
1011 return 0;
1012}
1013
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001014/*
1015 * xattr LIST operation for in-memory/pseudo filesystems
1016 */
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01001017ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs,
1018 char *buffer, size_t size)
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001019{
1020 bool trusted = capable(CAP_SYS_ADMIN);
1021 struct simple_xattr *xattr;
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01001022 ssize_t remaining_size = size;
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +01001023 int err = 0;
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01001024
1025#ifdef CONFIG_FS_POSIX_ACL
Andreas Gruenbacher8e9817c2018-09-18 00:36:36 -04001026 if (IS_POSIXACL(inode)) {
1027 if (inode->i_acl) {
1028 err = xattr_list_one(&buffer, &remaining_size,
1029 XATTR_NAME_POSIX_ACL_ACCESS);
1030 if (err)
1031 return err;
1032 }
1033 if (inode->i_default_acl) {
1034 err = xattr_list_one(&buffer, &remaining_size,
1035 XATTR_NAME_POSIX_ACL_DEFAULT);
1036 if (err)
1037 return err;
1038 }
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01001039 }
1040#endif
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001041
1042 spin_lock(&xattrs->lock);
1043 list_for_each_entry(xattr, &xattrs->head, list) {
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001044 /* skip "trusted." attributes for unprivileged callers */
1045 if (!trusted && xattr_is_trusted(xattr->name))
1046 continue;
1047
Andreas Gruenbacher786534b2015-12-02 14:44:39 +01001048 err = xattr_list_one(&buffer, &remaining_size, xattr->name);
1049 if (err)
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +01001050 break;
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001051 }
1052 spin_unlock(&xattrs->lock);
1053
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +01001054 return err ? err : size - remaining_size;
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001055}
1056
Aristeu Rozanski48957682012-09-11 16:28:11 -04001057/*
1058 * Adds an extended attribute to the list
1059 */
Aristeu Rozanski38f38652012-08-23 16:53:28 -04001060void simple_xattr_list_add(struct simple_xattrs *xattrs,
1061 struct simple_xattr *new_xattr)
1062{
1063 spin_lock(&xattrs->lock);
1064 list_add(&new_xattr->list, &xattrs->head);
1065 spin_unlock(&xattrs->lock);
1066}