blob: c243905835abd25b52eb8daf061b5f11b3a5708e [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
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080027/*
28 * Check permissions for extended attribute access. This is a bit complicated
29 * because different namespaces have very different rules.
30 */
31static int
32xattr_permission(struct inode *inode, const char *name, int mask)
33{
34 /*
35 * We can never set or remove an extended attribute on a read-only
36 * filesystem or on an immutable / append-only inode.
37 */
38 if (mask & MAY_WRITE) {
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080039 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
40 return -EPERM;
Eric W. Biederman0bd23d092016-06-29 14:54:46 -050041 /*
42 * Updating an xattr will likely cause i_uid and i_gid
43 * to be writen back improperly if their true value is
44 * unknown to the vfs.
45 */
46 if (HAS_UNMAPPED_ID(inode))
47 return -EPERM;
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080048 }
49
50 /*
51 * No restriction for security.* and system.* from the VFS. Decision
52 * on these is left to the underlying filesystem / security module.
53 */
54 if (!strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) ||
55 !strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN))
56 return 0;
57
58 /*
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +020059 * The trusted.* namespace can only be accessed by privileged users.
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080060 */
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +020061 if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN)) {
62 if (!capable(CAP_SYS_ADMIN))
63 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
64 return 0;
65 }
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080066
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +020067 /*
68 * In the user.* namespace, only regular files and directories can have
Andreas Gruenbacherf1f2d872006-11-02 22:07:29 -080069 * extended attributes. For sticky directories, only the owner and
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +020070 * privileged users can write attributes.
Andreas Gruenbacherf1f2d872006-11-02 22:07:29 -080071 */
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080072 if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) {
Andreas Gruenbacherf1f2d872006-11-02 22:07:29 -080073 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
Andreas Gruenbacher55b23bd2011-05-27 14:50:36 +020074 return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
Andreas Gruenbacherf1f2d872006-11-02 22:07:29 -080075 if (S_ISDIR(inode->i_mode) && (inode->i_mode & S_ISVTX) &&
Serge E. Hallyn2e149672011-03-23 16:43:26 -070076 (mask & MAY_WRITE) && !inode_owner_or_capable(inode))
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080077 return -EPERM;
78 }
79
Al Virof419a2e2008-07-22 00:07:17 -040080 return inode_permission(inode, mask);
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -080081}
82
David P. Quigleyb1ab7e42009-09-03 14:25:56 -040083/**
84 * __vfs_setxattr_noperm - perform setxattr operation without performing
85 * permission checks.
86 *
87 * @dentry - object to perform setxattr on
88 * @name - xattr name to set
89 * @value - value to set @name to
90 * @size - size of @value
91 * @flags - flags to pass into filesystem operations
92 *
93 * returns the result of the internal setxattr or setsecurity operations.
94 *
95 * This function requires the caller to lock the inode's i_mutex before it
96 * is executed. It also assumes that the caller will make the appropriate
97 * permission checks.
98 */
99int __vfs_setxattr_noperm(struct dentry *dentry, const char *name,
100 const void *value, size_t size, int flags)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800101{
102 struct inode *inode = dentry->d_inode;
David P. Quigleyb1ab7e42009-09-03 14:25:56 -0400103 int error = -EOPNOTSUPP;
Andi Kleen69b45732011-05-28 08:25:51 -0700104 int issec = !strncmp(name, XATTR_SECURITY_PREFIX,
105 XATTR_SECURITY_PREFIX_LEN);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800106
Andi Kleen69b45732011-05-28 08:25:51 -0700107 if (issec)
108 inode->i_flags &= ~S_NOSEC;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800109 if (inode->i_op->setxattr) {
Al Viro3767e252016-05-27 11:06:05 -0400110 error = inode->i_op->setxattr(dentry, inode, name, value, size, flags);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800111 if (!error) {
112 fsnotify_xattr(dentry);
113 security_inode_post_setxattr(dentry, name, value,
114 size, flags);
115 }
Andi Kleen69b45732011-05-28 08:25:51 -0700116 } else if (issec) {
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800117 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800118 error = security_inode_setsecurity(inode, suffix, value,
119 size, flags);
120 if (!error)
121 fsnotify_xattr(dentry);
122 }
David P. Quigleyb1ab7e42009-09-03 14:25:56 -0400123
124 return error;
125}
126
127
128int
129vfs_setxattr(struct dentry *dentry, const char *name, const void *value,
130 size_t size, int flags)
131{
132 struct inode *inode = dentry->d_inode;
133 int error;
134
135 error = xattr_permission(inode, name, MAY_WRITE);
136 if (error)
137 return error;
138
Al Viro59551022016-01-22 15:40:57 -0500139 inode_lock(inode);
David P. Quigleyb1ab7e42009-09-03 14:25:56 -0400140 error = security_inode_setxattr(dentry, name, value, size, flags);
141 if (error)
142 goto out;
143
144 error = __vfs_setxattr_noperm(dentry, name, value, size, flags);
145
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800146out:
Al Viro59551022016-01-22 15:40:57 -0500147 inode_unlock(inode);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800148 return error;
149}
150EXPORT_SYMBOL_GPL(vfs_setxattr);
151
152ssize_t
David P. Quigley42492592008-02-04 22:29:39 -0800153xattr_getsecurity(struct inode *inode, const char *name, void *value,
154 size_t size)
155{
156 void *buffer = NULL;
157 ssize_t len;
158
159 if (!value || !size) {
160 len = security_inode_getsecurity(inode, name, &buffer, false);
161 goto out_noalloc;
162 }
163
164 len = security_inode_getsecurity(inode, name, &buffer, true);
165 if (len < 0)
166 return len;
167 if (size < len) {
168 len = -ERANGE;
169 goto out;
170 }
171 memcpy(value, buffer, len);
172out:
173 security_release_secctx(buffer, len);
174out_noalloc:
175 return len;
176}
177EXPORT_SYMBOL_GPL(xattr_getsecurity);
178
Mimi Zohar1601fba2011-03-09 14:23:34 -0500179/*
180 * vfs_getxattr_alloc - allocate memory, if necessary, before calling getxattr
181 *
182 * Allocate memory, if not already allocated, or re-allocate correct size,
183 * before retrieving the extended attribute.
184 *
185 * Returns the result of alloc, if failed, or the getxattr operation.
186 */
187ssize_t
188vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
189 size_t xattr_size, gfp_t flags)
190{
191 struct inode *inode = dentry->d_inode;
192 char *value = *xattr_value;
193 int error;
194
195 error = xattr_permission(inode, name, MAY_READ);
196 if (error)
197 return error;
198
199 if (!inode->i_op->getxattr)
200 return -EOPNOTSUPP;
201
Al Viroce23e642016-04-11 00:48:00 -0400202 error = inode->i_op->getxattr(dentry, inode, name, NULL, 0);
Mimi Zohar1601fba2011-03-09 14:23:34 -0500203 if (error < 0)
204 return error;
205
206 if (!value || (error > xattr_size)) {
207 value = krealloc(*xattr_value, error + 1, flags);
208 if (!value)
209 return -ENOMEM;
210 memset(value, 0, error + 1);
211 }
212
Al Viroce23e642016-04-11 00:48:00 -0400213 error = inode->i_op->getxattr(dentry, inode, name, value, error);
Mimi Zohar1601fba2011-03-09 14:23:34 -0500214 *xattr_value = value;
215 return error;
216}
217
David P. Quigley42492592008-02-04 22:29:39 -0800218ssize_t
David Howells8f0cfa52008-04-29 00:59:41 -0700219vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800220{
221 struct inode *inode = dentry->d_inode;
222 int error;
223
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800224 error = xattr_permission(inode, name, MAY_READ);
225 if (error)
226 return error;
227
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800228 error = security_inode_getxattr(dentry, name);
229 if (error)
230 return error;
231
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800232 if (!strncmp(name, XATTR_SECURITY_PREFIX,
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800233 XATTR_SECURITY_PREFIX_LEN)) {
234 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
David P. Quigley42492592008-02-04 22:29:39 -0800235 int ret = xattr_getsecurity(inode, suffix, value, size);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800236 /*
237 * Only overwrite the return value if a security module
238 * is actually active.
239 */
David P. Quigley4bea5802008-02-04 22:29:40 -0800240 if (ret == -EOPNOTSUPP)
241 goto nolsm;
242 return ret;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800243 }
David P. Quigley4bea5802008-02-04 22:29:40 -0800244nolsm:
245 if (inode->i_op->getxattr)
Al Viroce23e642016-04-11 00:48:00 -0400246 error = inode->i_op->getxattr(dentry, inode, name, value, size);
David P. Quigley4bea5802008-02-04 22:29:40 -0800247 else
248 error = -EOPNOTSUPP;
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800249
250 return error;
251}
252EXPORT_SYMBOL_GPL(vfs_getxattr);
253
Bill Nottingham659564c2006-10-09 16:10:48 -0400254ssize_t
255vfs_listxattr(struct dentry *d, char *list, size_t size)
256{
257 ssize_t error;
258
259 error = security_inode_listxattr(d);
260 if (error)
261 return error;
262 error = -EOPNOTSUPP;
Al Viroacfa4382008-12-04 10:06:33 -0500263 if (d->d_inode->i_op->listxattr) {
Bill Nottingham659564c2006-10-09 16:10:48 -0400264 error = d->d_inode->i_op->listxattr(d, list, size);
265 } else {
266 error = security_inode_listsecurity(d->d_inode, list, size);
267 if (size && error > size)
268 error = -ERANGE;
269 }
270 return error;
271}
272EXPORT_SYMBOL_GPL(vfs_listxattr);
273
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800274int
David Howells8f0cfa52008-04-29 00:59:41 -0700275vfs_removexattr(struct dentry *dentry, const char *name)
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800276{
277 struct inode *inode = dentry->d_inode;
278 int error;
279
280 if (!inode->i_op->removexattr)
281 return -EOPNOTSUPP;
282
akpm@osdl.orge0ad7b02006-01-09 20:51:56 -0800283 error = xattr_permission(inode, name, MAY_WRITE);
284 if (error)
285 return error;
286
Al Viro59551022016-01-22 15:40:57 -0500287 inode_lock(inode);
Mimi Zohar2ab51f32011-03-23 17:23:06 -0400288 error = security_inode_removexattr(dentry, name);
Dmitry Kasatkin7c51bb02014-11-20 16:31:01 +0200289 if (error)
290 goto out;
Mimi Zohar2ab51f32011-03-23 17:23:06 -0400291
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800292 error = inode->i_op->removexattr(dentry, name);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800293
Mimi Zoharc7b87de2011-03-09 14:39:18 -0500294 if (!error) {
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800295 fsnotify_xattr(dentry);
Mimi Zoharc7b87de2011-03-09 14:39:18 -0500296 evm_inode_post_removexattr(dentry, name);
297 }
Dmitry Kasatkin7c51bb02014-11-20 16:31:01 +0200298
299out:
Al Viro59551022016-01-22 15:40:57 -0500300 inode_unlock(inode);
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800301 return error;
302}
303EXPORT_SYMBOL_GPL(vfs_removexattr);
304
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306/*
307 * Extended attribute SET operations
308 */
309static long
David Howells8f0cfa52008-04-29 00:59:41 -0700310setxattr(struct dentry *d, const char __user *name, const void __user *value,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 size_t size, int flags)
312{
313 int error;
314 void *kvalue = NULL;
315 char kname[XATTR_NAME_MAX + 1];
316
317 if (flags & ~(XATTR_CREATE|XATTR_REPLACE))
318 return -EINVAL;
319
320 error = strncpy_from_user(kname, name, sizeof(kname));
321 if (error == 0 || error == sizeof(kname))
322 error = -ERANGE;
323 if (error < 0)
324 return error;
325
326 if (size) {
327 if (size > XATTR_SIZE_MAX)
328 return -E2BIG;
Andrew Morton44c82492012-04-05 14:25:07 -0700329 kvalue = kmalloc(size, GFP_KERNEL | __GFP_NOWARN);
330 if (!kvalue) {
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100331 kvalue = vmalloc(size);
332 if (!kvalue)
Andrew Morton44c82492012-04-05 14:25:07 -0700333 return -ENOMEM;
Andrew Morton44c82492012-04-05 14:25:07 -0700334 }
335 if (copy_from_user(kvalue, value, size)) {
336 error = -EFAULT;
337 goto out;
338 }
Eric W. Biederman2f6f0652012-02-07 18:52:57 -0800339 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
340 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
341 posix_acl_fix_xattr_from_user(kvalue, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800344 error = vfs_setxattr(d, kname, kvalue, size, flags);
Andrew Morton44c82492012-04-05 14:25:07 -0700345out:
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100346 kvfree(kvalue);
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return error;
349}
350
Eric Biggers8cc43112014-10-12 11:59:58 -0500351static int path_setxattr(const char __user *pathname,
352 const char __user *name, const void __user *value,
353 size_t size, int flags, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Al Viro2d8f3032008-07-22 09:59:21 -0400355 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 int error;
Jeff Layton68f1bb82012-12-11 12:10:15 -0500357retry:
358 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (error)
360 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400361 error = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800362 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400363 error = setxattr(path.dentry, name, value, size, flags);
364 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800365 }
Al Viro2d8f3032008-07-22 09:59:21 -0400366 path_put(&path);
Jeff Layton68f1bb82012-12-11 12:10:15 -0500367 if (retry_estale(error, lookup_flags)) {
368 lookup_flags |= LOOKUP_REVAL;
369 goto retry;
370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return error;
372}
373
Eric Biggers8cc43112014-10-12 11:59:58 -0500374SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
375 const char __user *, name, const void __user *, value,
376 size_t, size, int, flags)
377{
378 return path_setxattr(pathname, name, value, size, flags, LOOKUP_FOLLOW);
379}
380
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100381SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
382 const char __user *, name, const void __user *, value,
383 size_t, size, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Eric Biggers8cc43112014-10-12 11:59:58 -0500385 return path_setxattr(pathname, name, value, size, flags, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100388SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
389 const void __user *,value, size_t, size, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Al Viro2903ff02012-08-28 12:52:22 -0400391 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 int error = -EBADF;
393
Al Viro2903ff02012-08-28 12:52:22 -0400394 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400396 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400397 error = mnt_want_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800398 if (!error) {
Al Viro9f45f5b2014-10-31 17:44:57 -0400399 error = setxattr(f.file->f_path.dentry, name, value, size, flags);
Al Viro2903ff02012-08-28 12:52:22 -0400400 mnt_drop_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800401 }
Al Viro2903ff02012-08-28 12:52:22 -0400402 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return error;
404}
405
406/*
407 * Extended attribute GET operations
408 */
409static ssize_t
David Howells8f0cfa52008-04-29 00:59:41 -0700410getxattr(struct dentry *d, const char __user *name, void __user *value,
411 size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
413 ssize_t error;
414 void *kvalue = NULL;
415 char kname[XATTR_NAME_MAX + 1];
416
417 error = strncpy_from_user(kname, name, sizeof(kname));
418 if (error == 0 || error == sizeof(kname))
419 error = -ERANGE;
420 if (error < 0)
421 return error;
422
423 if (size) {
424 if (size > XATTR_SIZE_MAX)
425 size = XATTR_SIZE_MAX;
Sasha Levin779302e2012-07-30 14:39:13 -0700426 kvalue = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
427 if (!kvalue) {
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100428 kvalue = vmalloc(size);
429 if (!kvalue)
Sasha Levin779302e2012-07-30 14:39:13 -0700430 return -ENOMEM;
Sasha Levin779302e2012-07-30 14:39:13 -0700431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800434 error = vfs_getxattr(d, kname, kvalue, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700435 if (error > 0) {
Eric W. Biederman2f6f0652012-02-07 18:52:57 -0800436 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
437 (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
438 posix_acl_fix_xattr_to_user(kvalue, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700439 if (size && copy_to_user(value, kvalue, error))
440 error = -EFAULT;
441 } else if (error == -ERANGE && size >= XATTR_SIZE_MAX) {
442 /* The file system tried to returned a value bigger
443 than XATTR_SIZE_MAX bytes. Not possible. */
444 error = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100446
447 kvfree(kvalue);
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return error;
450}
451
Eric Biggers8cc43112014-10-12 11:59:58 -0500452static ssize_t path_getxattr(const char __user *pathname,
453 const char __user *name, void __user *value,
454 size_t size, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Al Viro2d8f3032008-07-22 09:59:21 -0400456 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 ssize_t error;
Jeff Layton60e66b42012-12-11 12:10:16 -0500458retry:
459 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (error)
461 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400462 error = getxattr(path.dentry, name, value, size);
463 path_put(&path);
Jeff Layton60e66b42012-12-11 12:10:16 -0500464 if (retry_estale(error, lookup_flags)) {
465 lookup_flags |= LOOKUP_REVAL;
466 goto retry;
467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return error;
469}
470
Eric Biggers8cc43112014-10-12 11:59:58 -0500471SYSCALL_DEFINE4(getxattr, const char __user *, pathname,
472 const char __user *, name, void __user *, value, size_t, size)
473{
474 return path_getxattr(pathname, name, value, size, LOOKUP_FOLLOW);
475}
476
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100477SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
478 const char __user *, name, void __user *, value, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Eric Biggers8cc43112014-10-12 11:59:58 -0500480 return path_getxattr(pathname, name, value, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100483SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
484 void __user *, value, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Al Viro2903ff02012-08-28 12:52:22 -0400486 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 ssize_t error = -EBADF;
488
Al Viro2903ff02012-08-28 12:52:22 -0400489 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400491 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400492 error = getxattr(f.file->f_path.dentry, name, value, size);
493 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return error;
495}
496
497/*
498 * Extended attribute LIST operations
499 */
500static ssize_t
501listxattr(struct dentry *d, char __user *list, size_t size)
502{
503 ssize_t error;
504 char *klist = NULL;
505
506 if (size) {
507 if (size > XATTR_LIST_MAX)
508 size = XATTR_LIST_MAX;
Dave Jones703bf2d2012-04-05 14:25:06 -0700509 klist = kmalloc(size, __GFP_NOWARN | GFP_KERNEL);
Andrew Morton0d08d7b2012-04-05 14:25:07 -0700510 if (!klist) {
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100511 klist = vmalloc(size);
512 if (!klist)
Andrew Morton0d08d7b2012-04-05 14:25:07 -0700513 return -ENOMEM;
Andrew Morton0d08d7b2012-04-05 14:25:07 -0700514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516
Bill Nottingham659564c2006-10-09 16:10:48 -0400517 error = vfs_listxattr(d, klist, size);
Stephen Smalleyf549d6c2005-09-03 15:55:18 -0700518 if (error > 0) {
519 if (size && copy_to_user(list, klist, error))
520 error = -EFAULT;
521 } else if (error == -ERANGE && size >= XATTR_LIST_MAX) {
522 /* The file system tried to returned a list bigger
523 than XATTR_LIST_MAX bytes. Not possible. */
524 error = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
Richard Weinberger0b2a6f22016-01-02 23:09:47 +0100526
527 kvfree(klist);
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return error;
530}
531
Eric Biggers8cc43112014-10-12 11:59:58 -0500532static ssize_t path_listxattr(const char __user *pathname, char __user *list,
533 size_t size, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Al Viro2d8f3032008-07-22 09:59:21 -0400535 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 ssize_t error;
Jeff Layton10a90cf2012-12-11 12:10:16 -0500537retry:
538 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (error)
540 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400541 error = listxattr(path.dentry, list, size);
542 path_put(&path);
Jeff Layton10a90cf2012-12-11 12:10:16 -0500543 if (retry_estale(error, lookup_flags)) {
544 lookup_flags |= LOOKUP_REVAL;
545 goto retry;
546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return error;
548}
549
Eric Biggers8cc43112014-10-12 11:59:58 -0500550SYSCALL_DEFINE3(listxattr, const char __user *, pathname, char __user *, list,
551 size_t, size)
552{
553 return path_listxattr(pathname, list, size, LOOKUP_FOLLOW);
554}
555
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100556SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
557 size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Eric Biggers8cc43112014-10-12 11:59:58 -0500559 return path_listxattr(pathname, list, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Heiko Carstens64fd1de2009-01-14 14:14:14 +0100562SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Al Viro2903ff02012-08-28 12:52:22 -0400564 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 ssize_t error = -EBADF;
566
Al Viro2903ff02012-08-28 12:52:22 -0400567 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400569 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400570 error = listxattr(f.file->f_path.dentry, list, size);
571 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return error;
573}
574
575/*
576 * Extended attribute REMOVE operations
577 */
578static long
David Howells8f0cfa52008-04-29 00:59:41 -0700579removexattr(struct dentry *d, const char __user *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
581 int error;
582 char kname[XATTR_NAME_MAX + 1];
583
584 error = strncpy_from_user(kname, name, sizeof(kname));
585 if (error == 0 || error == sizeof(kname))
586 error = -ERANGE;
587 if (error < 0)
588 return error;
589
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800590 return vfs_removexattr(d, kname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Eric Biggers8cc43112014-10-12 11:59:58 -0500593static int path_removexattr(const char __user *pathname,
594 const char __user *name, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Al Viro2d8f3032008-07-22 09:59:21 -0400596 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 int error;
Jeff Layton12f06212012-12-11 12:10:17 -0500598retry:
599 error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (error)
601 return error;
Al Viro2d8f3032008-07-22 09:59:21 -0400602 error = mnt_want_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800603 if (!error) {
Al Viro2d8f3032008-07-22 09:59:21 -0400604 error = removexattr(path.dentry, name);
605 mnt_drop_write(path.mnt);
Dave Hansen18f335a2008-02-15 14:37:38 -0800606 }
Al Viro2d8f3032008-07-22 09:59:21 -0400607 path_put(&path);
Jeff Layton12f06212012-12-11 12:10:17 -0500608 if (retry_estale(error, lookup_flags)) {
609 lookup_flags |= LOOKUP_REVAL;
610 goto retry;
611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return error;
613}
614
Eric Biggers8cc43112014-10-12 11:59:58 -0500615SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
616 const char __user *, name)
617{
618 return path_removexattr(pathname, name, LOOKUP_FOLLOW);
619}
620
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100621SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
622 const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Eric Biggers8cc43112014-10-12 11:59:58 -0500624 return path_removexattr(pathname, name, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100627SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Al Viro2903ff02012-08-28 12:52:22 -0400629 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 int error = -EBADF;
631
Al Viro2903ff02012-08-28 12:52:22 -0400632 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return error;
Al Viro9f45f5b2014-10-31 17:44:57 -0400634 audit_file(f.file);
Al Viro2903ff02012-08-28 12:52:22 -0400635 error = mnt_want_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800636 if (!error) {
Al Viro9f45f5b2014-10-31 17:44:57 -0400637 error = removexattr(f.file->f_path.dentry, name);
Al Viro2903ff02012-08-28 12:52:22 -0400638 mnt_drop_write_file(f.file);
Dave Hansen18f335a2008-02-15 14:37:38 -0800639 }
Al Viro2903ff02012-08-28 12:52:22 -0400640 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 return error;
642}
643
644
645static const char *
646strcmp_prefix(const char *a, const char *a_prefix)
647{
648 while (*a_prefix && *a == *a_prefix) {
649 a++;
650 a_prefix++;
651 }
652 return *a_prefix ? NULL : a;
653}
654
655/*
656 * In order to implement different sets of xattr operations for each xattr
657 * prefix with the generic xattr API, a filesystem should create a
658 * null-terminated array of struct xattr_handler (one for each prefix) and
659 * hang a pointer to it off of the s_xattr field of the superblock.
660 *
661 * The generic_fooxattr() functions will use this list to dispatch xattr
662 * operations to the correct xattr_handler.
663 */
664#define for_each_xattr_handler(handlers, handler) \
Al Viro00407732016-05-25 17:34:41 -0400665 if (handlers) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 for ((handler) = *(handlers)++; \
667 (handler) != NULL; \
668 (handler) = *(handlers)++)
669
670/*
671 * Find the xattr_handler with the matching prefix.
672 */
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700673static const struct xattr_handler *
674xattr_resolve_name(const struct xattr_handler **handlers, const char **name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700676 const struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 if (!*name)
Andreas Gruenbacheraaf431b2016-05-09 13:28:49 +0200679 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 for_each_xattr_handler(handlers, handler) {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100682 const char *n;
683
684 n = strcmp_prefix(*name, xattr_prefix(handler));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (n) {
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100686 if (!handler->prefix ^ !*n) {
687 if (*n)
688 continue;
689 return ERR_PTR(-EINVAL);
690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 *name = n;
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100692 return handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694 }
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100695 return ERR_PTR(-EOPNOTSUPP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
698/*
699 * Find the handler for the prefix and dispatch its get() operation.
700 */
701ssize_t
Al Viroce23e642016-04-11 00:48:00 -0400702generic_getxattr(struct dentry *dentry, struct inode *inode,
703 const char *name, void *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700705 const struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Christoph Hellwig431547b2009-11-13 09:52:56 +0000707 handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name);
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100708 if (IS_ERR(handler))
709 return PTR_ERR(handler);
Al Viroce23e642016-04-11 00:48:00 -0400710 return handler->get(handler, dentry, inode,
Al Virob2968212016-04-10 20:48:24 -0400711 name, buffer, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714/*
715 * Combine the results of the list() operation from every xattr_handler in the
716 * list.
717 */
718ssize_t
719generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
720{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700721 const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 unsigned int size = 0;
723
724 if (!buffer) {
Christoph Hellwig431547b2009-11-13 09:52:56 +0000725 for_each_xattr_handler(handlers, handler) {
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100726 if (!handler->name ||
727 (handler->list && !handler->list(dentry)))
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +0100728 continue;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100729 size += strlen(handler->name) + 1;
Christoph Hellwig431547b2009-11-13 09:52:56 +0000730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 } else {
732 char *buf = buffer;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100733 size_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 for_each_xattr_handler(handlers, handler) {
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100736 if (!handler->name ||
737 (handler->list && !handler->list(dentry)))
Andreas Gruenbacherc4803c42015-12-02 14:44:41 +0100738 continue;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100739 len = strlen(handler->name);
740 if (len + 1 > buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 return -ERANGE;
Andreas Gruenbacher764a5c62015-12-02 14:44:43 +0100742 memcpy(buf, handler->name, len + 1);
743 buf += len + 1;
744 buffer_size -= len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746 size = buf - buffer;
747 }
748 return size;
749}
750
751/*
752 * Find the handler for the prefix and dispatch its set() operation.
753 */
754int
Al Viro3767e252016-05-27 11:06:05 -0400755generic_setxattr(struct dentry *dentry, struct inode *inode, const char *name,
756 const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700758 const struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 if (size == 0)
761 value = ""; /* empty EA, do not remove */
Christoph Hellwig431547b2009-11-13 09:52:56 +0000762 handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name);
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100763 if (IS_ERR(handler))
764 return PTR_ERR(handler);
Al Viro3767e252016-05-27 11:06:05 -0400765 return handler->set(handler, dentry, inode, name, value, size, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
768/*
769 * Find the handler for the prefix and dispatch its set() operation to remove
770 * any associated extended attribute.
771 */
772int
773generic_removexattr(struct dentry *dentry, const char *name)
774{
Stephen Hemmingerbb435452010-05-13 17:53:14 -0700775 const struct xattr_handler *handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Christoph Hellwig431547b2009-11-13 09:52:56 +0000777 handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name);
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100778 if (IS_ERR(handler))
779 return PTR_ERR(handler);
Al Viro59301222016-05-27 10:19:30 -0400780 return handler->set(handler, dentry, d_inode(dentry), name, NULL,
781 0, XATTR_REPLACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
784EXPORT_SYMBOL(generic_getxattr);
785EXPORT_SYMBOL(generic_listxattr);
786EXPORT_SYMBOL(generic_setxattr);
787EXPORT_SYMBOL(generic_removexattr);
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400788
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200789/**
790 * xattr_full_name - Compute full attribute name from suffix
791 *
792 * @handler: handler of the xattr_handler operation
793 * @name: name passed to the xattr_handler operation
794 *
795 * The get and set xattr handler operations are called with the remainder of
796 * the attribute name after skipping the handler's prefix: for example, "foo"
797 * is passed to the get operation of a handler with prefix "user." to get
798 * attribute "user.foo". The full name is still "there" in the name though.
799 *
800 * Note: the list xattr handler operation when called from the vfs is passed a
801 * NULL name; some file systems use this operation internally, with varying
802 * semantics.
803 */
804const char *xattr_full_name(const struct xattr_handler *handler,
805 const char *name)
806{
Andreas Gruenbacher98e9cb52015-12-02 14:44:36 +0100807 size_t prefix_len = strlen(xattr_prefix(handler));
Andreas Gruenbachere409de92015-10-04 19:18:52 +0200808
809 return name - prefix_len;
810}
811EXPORT_SYMBOL(xattr_full_name);
812
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400813/*
814 * Allocate new xattr and copy in the value; but leave the name to callers.
815 */
816struct simple_xattr *simple_xattr_alloc(const void *value, size_t size)
817{
818 struct simple_xattr *new_xattr;
819 size_t len;
820
821 /* wrap around? */
822 len = sizeof(*new_xattr) + size;
Hugh Dickins4e66d442014-07-23 14:00:17 -0700823 if (len < sizeof(*new_xattr))
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400824 return NULL;
825
826 new_xattr = kmalloc(len, GFP_KERNEL);
827 if (!new_xattr)
828 return NULL;
829
830 new_xattr->size = size;
831 memcpy(new_xattr->value, value, size);
832 return new_xattr;
833}
834
835/*
836 * xattr GET operation for in-memory/pseudo filesystems
837 */
838int simple_xattr_get(struct simple_xattrs *xattrs, const char *name,
839 void *buffer, size_t size)
840{
841 struct simple_xattr *xattr;
842 int ret = -ENODATA;
843
844 spin_lock(&xattrs->lock);
845 list_for_each_entry(xattr, &xattrs->head, list) {
846 if (strcmp(name, xattr->name))
847 continue;
848
849 ret = xattr->size;
850 if (buffer) {
851 if (size < xattr->size)
852 ret = -ERANGE;
853 else
854 memcpy(buffer, xattr->value, xattr->size);
855 }
856 break;
857 }
858 spin_unlock(&xattrs->lock);
859 return ret;
860}
861
Andreas Gruenbacheraa7c5242015-12-02 14:44:38 +0100862/**
863 * simple_xattr_set - xattr SET operation for in-memory/pseudo filesystems
864 * @xattrs: target simple_xattr list
865 * @name: name of the extended attribute
866 * @value: value of the xattr. If %NULL, will remove the attribute.
867 * @size: size of the new xattr
868 * @flags: %XATTR_{CREATE|REPLACE}
869 *
870 * %XATTR_CREATE is set, the xattr shouldn't exist already; otherwise fails
871 * with -EEXIST. If %XATTR_REPLACE is set, the xattr should exist;
872 * otherwise, fails with -ENODATA.
873 *
874 * Returns 0 on success, -errno on failure.
875 */
876int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
877 const void *value, size_t size, int flags)
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400878{
879 struct simple_xattr *xattr;
David Rientjes43385842012-10-17 20:41:15 -0700880 struct simple_xattr *new_xattr = NULL;
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400881 int err = 0;
882
883 /* value == NULL means remove */
884 if (value) {
885 new_xattr = simple_xattr_alloc(value, size);
886 if (!new_xattr)
887 return -ENOMEM;
888
889 new_xattr->name = kstrdup(name, GFP_KERNEL);
890 if (!new_xattr->name) {
891 kfree(new_xattr);
892 return -ENOMEM;
893 }
894 }
895
896 spin_lock(&xattrs->lock);
897 list_for_each_entry(xattr, &xattrs->head, list) {
898 if (!strcmp(name, xattr->name)) {
899 if (flags & XATTR_CREATE) {
900 xattr = new_xattr;
901 err = -EEXIST;
902 } else if (new_xattr) {
903 list_replace(&xattr->list, &new_xattr->list);
904 } else {
905 list_del(&xattr->list);
906 }
907 goto out;
908 }
909 }
910 if (flags & XATTR_REPLACE) {
911 xattr = new_xattr;
912 err = -ENODATA;
913 } else {
914 list_add(&new_xattr->list, &xattrs->head);
915 xattr = NULL;
916 }
917out:
918 spin_unlock(&xattrs->lock);
919 if (xattr) {
920 kfree(xattr->name);
921 kfree(xattr);
922 }
923 return err;
924
925}
926
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400927static bool xattr_is_trusted(const char *name)
928{
929 return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
930}
931
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100932static int xattr_list_one(char **buffer, ssize_t *remaining_size,
933 const char *name)
934{
935 size_t len = strlen(name) + 1;
936 if (*buffer) {
937 if (*remaining_size < len)
938 return -ERANGE;
939 memcpy(*buffer, name, len);
940 *buffer += len;
941 }
942 *remaining_size -= len;
943 return 0;
944}
945
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400946/*
947 * xattr LIST operation for in-memory/pseudo filesystems
948 */
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100949ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs,
950 char *buffer, size_t size)
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400951{
952 bool trusted = capable(CAP_SYS_ADMIN);
953 struct simple_xattr *xattr;
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100954 ssize_t remaining_size = size;
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +0100955 int err = 0;
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100956
957#ifdef CONFIG_FS_POSIX_ACL
958 if (inode->i_acl) {
959 err = xattr_list_one(&buffer, &remaining_size,
960 XATTR_NAME_POSIX_ACL_ACCESS);
961 if (err)
962 return err;
963 }
964 if (inode->i_default_acl) {
965 err = xattr_list_one(&buffer, &remaining_size,
966 XATTR_NAME_POSIX_ACL_DEFAULT);
967 if (err)
968 return err;
969 }
970#endif
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400971
972 spin_lock(&xattrs->lock);
973 list_for_each_entry(xattr, &xattrs->head, list) {
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400974 /* skip "trusted." attributes for unprivileged callers */
975 if (!trusted && xattr_is_trusted(xattr->name))
976 continue;
977
Andreas Gruenbacher786534b2015-12-02 14:44:39 +0100978 err = xattr_list_one(&buffer, &remaining_size, xattr->name);
979 if (err)
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +0100980 break;
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400981 }
982 spin_unlock(&xattrs->lock);
983
Mateusz Guzik0e9a7da2016-02-04 02:56:30 +0100984 return err ? err : size - remaining_size;
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400985}
986
Aristeu Rozanski48957682012-09-11 16:28:11 -0400987/*
988 * Adds an extended attribute to the list
989 */
Aristeu Rozanski38f38652012-08-23 16:53:28 -0400990void simple_xattr_list_add(struct simple_xattrs *xattrs,
991 struct simple_xattr *new_xattr)
992{
993 spin_lock(&xattrs->lock);
994 list_add(&new_xattr->list, &xattrs->head);
995 spin_unlock(&xattrs->lock);
996}