GNU Linux-libre 4.9.337-gnu1
[releases.git] / fs / xattr.c
1 /*
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>
12 #include <linux/file.h>
13 #include <linux/xattr.h>
14 #include <linux/mount.h>
15 #include <linux/namei.h>
16 #include <linux/security.h>
17 #include <linux/evm.h>
18 #include <linux/syscalls.h>
19 #include <linux/export.h>
20 #include <linux/fsnotify.h>
21 #include <linux/audit.h>
22 #include <linux/vmalloc.h>
23 #include <linux/posix_acl_xattr.h>
24
25 #include <asm/uaccess.h>
26
27 static const char *
28 strcmp_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
39  * 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.
42  */
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  */
52 static const struct xattr_handler *
53 xattr_resolve_name(struct inode *inode, const char **name)
54 {
55         const struct xattr_handler **handlers = inode->i_sb->s_xattr;
56         const struct xattr_handler *handler;
57
58         if (!(inode->i_opflags & IOP_XATTR)) {
59                 if (unlikely(is_bad_inode(inode)))
60                         return ERR_PTR(-EIO);
61                 return ERR_PTR(-EOPNOTSUPP);
62         }
63         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
80 /*
81  * Check permissions for extended attribute access.  This is a bit complicated
82  * because different namespaces have very different rules.
83  */
84 static int
85 xattr_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) {
92                 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
93                         return -EPERM;
94                 /*
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;
101         }
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         /*
112          * The trusted.* namespace can only be accessed by privileged users.
113          */
114         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         }
119
120         /*
121          * In the user.* namespace, only regular files and directories can have
122          * extended attributes. For sticky directories, only the owner and
123          * privileged users can write attributes.
124          */
125         if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) {
126                 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
127                         return (mask & MAY_WRITE) ? -EPERM : -ENODATA;
128                 if (S_ISDIR(inode->i_mode) && (inode->i_mode & S_ISVTX) &&
129                     (mask & MAY_WRITE) && !inode_owner_or_capable(inode))
130                         return -EPERM;
131         }
132
133         return inode_permission(inode, mask);
134 }
135
136 int
137 __vfs_setxattr(struct dentry *dentry, struct inode *inode, const char *name,
138                const void *value, size_t size, int flags)
139 {
140         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)
146                 return -EOPNOTSUPP;
147         if (size == 0)
148                 value = "";  /* empty EA, do not remove */
149         return handler->set(handler, dentry, inode, name, value, size, flags);
150 }
151 EXPORT_SYMBOL(__vfs_setxattr);
152
153 /**
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  */
169 int __vfs_setxattr_noperm(struct dentry *dentry, const char *name,
170                 const void *value, size_t size, int flags)
171 {
172         struct inode *inode = dentry->d_inode;
173         int error = -EAGAIN;
174         int issec = !strncmp(name, XATTR_SECURITY_PREFIX,
175                                    XATTR_SECURITY_PREFIX_LEN);
176
177         if (issec)
178                 inode->i_flags &= ~S_NOSEC;
179         if (inode->i_opflags & IOP_XATTR) {
180                 error = __vfs_setxattr(dentry, inode, name, value, size, flags);
181                 if (!error) {
182                         fsnotify_xattr(dentry);
183                         security_inode_post_setxattr(dentry, name, value,
184                                                      size, flags);
185                 }
186         } else {
187                 if (unlikely(is_bad_inode(inode)))
188                         return -EIO;
189         }
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                 }
201         }
202
203         return error;
204 }
205
206 /**
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  */
218 int
219 __vfs_setxattr_locked(struct dentry *dentry, const char *name,
220                 const void *value, size_t size, int flags,
221                 struct inode **delegated_inode)
222 {
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
230         error = security_inode_setxattr(dentry, name, value, size, flags);
231         if (error)
232                 goto out;
233
234         error = try_break_deleg(inode, delegated_inode);
235         if (error)
236                 goto out;
237
238         error = __vfs_setxattr_noperm(dentry, name, value, size, flags);
239
240 out:
241         return error;
242 }
243 EXPORT_SYMBOL_GPL(__vfs_setxattr_locked);
244
245 int
246 vfs_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
253 retry_deleg:
254         inode_lock(inode);
255         error = __vfs_setxattr_locked(dentry, name, value, size, flags,
256             &delegated_inode);
257         inode_unlock(inode);
258
259         if (delegated_inode) {
260                 error = break_deleg_wait(&delegated_inode);
261                 if (!error)
262                         goto retry_deleg;
263         }
264         return error;
265 }
266 EXPORT_SYMBOL_GPL(vfs_setxattr);
267
268 ssize_t
269 xattr_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);
288 out:
289         kfree(buffer);
290 out_noalloc:
291         return len;
292 }
293 EXPORT_SYMBOL_GPL(xattr_getsecurity);
294
295 /*
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  */
303 ssize_t
304 vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
305                    size_t xattr_size, gfp_t flags)
306 {
307         const struct xattr_handler *handler;
308         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
316         handler = xattr_resolve_name(inode, &name);
317         if (IS_ERR(handler))
318                 return PTR_ERR(handler);
319         if (!handler->get)
320                 return -EOPNOTSUPP;
321         error = handler->get(handler, dentry, inode, name, NULL, 0);
322         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
332         error = handler->get(handler, dentry, inode, name, value, error);
333         *xattr_value = value;
334         return error;
335 }
336
337 ssize_t
338 __vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
339                void *value, size_t size)
340 {
341         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)
347                 return -EOPNOTSUPP;
348         return handler->get(handler, dentry, inode, name, value, size);
349 }
350 EXPORT_SYMBOL(__vfs_getxattr);
351
352 ssize_t
353 vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
354 {
355         struct inode *inode = dentry->d_inode;
356         int error;
357
358         error = xattr_permission(inode, name, MAY_READ);
359         if (error)
360                 return error;
361
362         error = security_inode_getxattr(dentry, name);
363         if (error)
364                 return error;
365
366         if (!strncmp(name, XATTR_SECURITY_PREFIX,
367                                 XATTR_SECURITY_PREFIX_LEN)) {
368                 const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
369                 int ret = xattr_getsecurity(inode, suffix, value, size);
370                 /*
371                  * Only overwrite the return value if a security module
372                  * is actually active.
373                  */
374                 if (ret == -EOPNOTSUPP)
375                         goto nolsm;
376                 return ret;
377         }
378 nolsm:
379         return __vfs_getxattr(dentry, inode, name, value, size);
380 }
381 EXPORT_SYMBOL_GPL(vfs_getxattr);
382
383 ssize_t
384 vfs_listxattr(struct dentry *dentry, char *list, size_t size)
385 {
386         struct inode *inode = d_inode(dentry);
387         ssize_t error;
388
389         error = security_inode_listxattr(dentry);
390         if (error)
391                 return error;
392         if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
393                 error = -EOPNOTSUPP;
394                 error = inode->i_op->listxattr(dentry, list, size);
395         } else {
396                 error = security_inode_listsecurity(inode, list, size);
397                 if (size && error > size)
398                         error = -ERANGE;
399         }
400         return error;
401 }
402 EXPORT_SYMBOL_GPL(vfs_listxattr);
403
404 int
405 __vfs_removexattr(struct dentry *dentry, const char *name)
406 {
407         struct inode *inode = d_inode(dentry);
408         const struct xattr_handler *handler;
409
410         handler = xattr_resolve_name(inode, &name);
411         if (IS_ERR(handler))
412                 return PTR_ERR(handler);
413         if (!handler->set)
414                 return -EOPNOTSUPP;
415         return handler->set(handler, dentry, inode, name, NULL, 0, XATTR_REPLACE);
416 }
417 EXPORT_SYMBOL(__vfs_removexattr);
418
419 /**
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  */
428 int
429 __vfs_removexattr_locked(struct dentry *dentry, const char *name,
430                 struct inode **delegated_inode)
431 {
432         struct inode *inode = dentry->d_inode;
433         int error;
434
435         error = xattr_permission(inode, name, MAY_WRITE);
436         if (error)
437                 return error;
438
439         error = security_inode_removexattr(dentry, name);
440         if (error)
441                 goto out;
442
443         error = try_break_deleg(inode, delegated_inode);
444         if (error)
445                 goto out;
446
447         error = __vfs_removexattr(dentry, name);
448
449         if (!error) {
450                 fsnotify_xattr(dentry);
451                 evm_inode_post_removexattr(dentry, name);
452         }
453
454 out:
455         return error;
456 }
457 EXPORT_SYMBOL_GPL(__vfs_removexattr_locked);
458
459 int
460 vfs_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
466 retry_deleg:
467         inode_lock(inode);
468         error = __vfs_removexattr_locked(dentry, name, &delegated_inode);
469         inode_unlock(inode);
470
471         if (delegated_inode) {
472                 error = break_deleg_wait(&delegated_inode);
473                 if (!error)
474                         goto retry_deleg;
475         }
476
477         return error;
478 }
479 EXPORT_SYMBOL_GPL(vfs_removexattr);
480
481 /*
482  * Extended attribute SET operations
483  */
484 static long
485 setxattr(struct dentry *d, const char __user *name, const void __user *value,
486          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;
504                 kvalue = kmalloc(size, GFP_KERNEL | __GFP_NOWARN);
505                 if (!kvalue) {
506                         kvalue = vmalloc(size);
507                         if (!kvalue)
508                                 return -ENOMEM;
509                 }
510                 if (copy_from_user(kvalue, value, size)) {
511                         error = -EFAULT;
512                         goto out;
513                 }
514                 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);
517         }
518
519         error = vfs_setxattr(d, kname, kvalue, size, flags);
520 out:
521         kvfree(kvalue);
522
523         return error;
524 }
525
526 static 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)
529 {
530         struct path path;
531         int error;
532 retry:
533         error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
534         if (error)
535                 return error;
536         error = mnt_want_write(path.mnt);
537         if (!error) {
538                 error = setxattr(path.dentry, name, value, size, flags);
539                 mnt_drop_write(path.mnt);
540         }
541         path_put(&path);
542         if (retry_estale(error, lookup_flags)) {
543                 lookup_flags |= LOOKUP_REVAL;
544                 goto retry;
545         }
546         return error;
547 }
548
549 SYSCALL_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
556 SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
557                 const char __user *, name, const void __user *, value,
558                 size_t, size, int, flags)
559 {
560         return path_setxattr(pathname, name, value, size, flags, 0);
561 }
562
563 SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
564                 const void __user *,value, size_t, size, int, flags)
565 {
566         struct fd f = fdget(fd);
567         int error = -EBADF;
568
569         if (!f.file)
570                 return error;
571         audit_file(f.file);
572         error = mnt_want_write_file(f.file);
573         if (!error) {
574                 error = setxattr(f.file->f_path.dentry, name, value, size, flags);
575                 mnt_drop_write_file(f.file);
576         }
577         fdput(f);
578         return error;
579 }
580
581 /*
582  * Extended attribute GET operations
583  */
584 static ssize_t
585 getxattr(struct dentry *d, const char __user *name, void __user *value,
586          size_t size)
587 {
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;
601                 kvalue = kzalloc(size, GFP_KERNEL | __GFP_NOWARN);
602                 if (!kvalue) {
603                         kvalue = vzalloc(size);
604                         if (!kvalue)
605                                 return -ENOMEM;
606                 }
607         }
608
609         error = vfs_getxattr(d, kname, kvalue, size);
610         if (error > 0) {
611                 if ((strcmp(kname, XATTR_NAME_POSIX_ACL_ACCESS) == 0) ||
612                     (strcmp(kname, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
613                         posix_acl_fix_xattr_to_user(kvalue, error);
614                 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;
620         }
621
622         kvfree(kvalue);
623
624         return error;
625 }
626
627 static ssize_t path_getxattr(const char __user *pathname,
628                              const char __user *name, void __user *value,
629                              size_t size, unsigned int lookup_flags)
630 {
631         struct path path;
632         ssize_t error;
633 retry:
634         error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
635         if (error)
636                 return error;
637         error = getxattr(path.dentry, name, value, size);
638         path_put(&path);
639         if (retry_estale(error, lookup_flags)) {
640                 lookup_flags |= LOOKUP_REVAL;
641                 goto retry;
642         }
643         return error;
644 }
645
646 SYSCALL_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
652 SYSCALL_DEFINE4(lgetxattr, const char __user *, pathname,
653                 const char __user *, name, void __user *, value, size_t, size)
654 {
655         return path_getxattr(pathname, name, value, size, 0);
656 }
657
658 SYSCALL_DEFINE4(fgetxattr, int, fd, const char __user *, name,
659                 void __user *, value, size_t, size)
660 {
661         struct fd f = fdget(fd);
662         ssize_t error = -EBADF;
663
664         if (!f.file)
665                 return error;
666         audit_file(f.file);
667         error = getxattr(f.file->f_path.dentry, name, value, size);
668         fdput(f);
669         return error;
670 }
671
672 /*
673  * Extended attribute LIST operations
674  */
675 static ssize_t
676 listxattr(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;
684                 klist = kmalloc(size, __GFP_NOWARN | GFP_KERNEL);
685                 if (!klist) {
686                         klist = vmalloc(size);
687                         if (!klist)
688                                 return -ENOMEM;
689                 }
690         }
691
692         error = vfs_listxattr(d, klist, size);
693         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;
700         }
701
702         kvfree(klist);
703
704         return error;
705 }
706
707 static ssize_t path_listxattr(const char __user *pathname, char __user *list,
708                               size_t size, unsigned int lookup_flags)
709 {
710         struct path path;
711         ssize_t error;
712 retry:
713         error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
714         if (error)
715                 return error;
716         error = listxattr(path.dentry, list, size);
717         path_put(&path);
718         if (retry_estale(error, lookup_flags)) {
719                 lookup_flags |= LOOKUP_REVAL;
720                 goto retry;
721         }
722         return error;
723 }
724
725 SYSCALL_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
731 SYSCALL_DEFINE3(llistxattr, const char __user *, pathname, char __user *, list,
732                 size_t, size)
733 {
734         return path_listxattr(pathname, list, size, 0);
735 }
736
737 SYSCALL_DEFINE3(flistxattr, int, fd, char __user *, list, size_t, size)
738 {
739         struct fd f = fdget(fd);
740         ssize_t error = -EBADF;
741
742         if (!f.file)
743                 return error;
744         audit_file(f.file);
745         error = listxattr(f.file->f_path.dentry, list, size);
746         fdput(f);
747         return error;
748 }
749
750 /*
751  * Extended attribute REMOVE operations
752  */
753 static long
754 removexattr(struct dentry *d, const char __user *name)
755 {
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
765         return vfs_removexattr(d, kname);
766 }
767
768 static int path_removexattr(const char __user *pathname,
769                             const char __user *name, unsigned int lookup_flags)
770 {
771         struct path path;
772         int error;
773 retry:
774         error = user_path_at(AT_FDCWD, pathname, lookup_flags, &path);
775         if (error)
776                 return error;
777         error = mnt_want_write(path.mnt);
778         if (!error) {
779                 error = removexattr(path.dentry, name);
780                 mnt_drop_write(path.mnt);
781         }
782         path_put(&path);
783         if (retry_estale(error, lookup_flags)) {
784                 lookup_flags |= LOOKUP_REVAL;
785                 goto retry;
786         }
787         return error;
788 }
789
790 SYSCALL_DEFINE2(removexattr, const char __user *, pathname,
791                 const char __user *, name)
792 {
793         return path_removexattr(pathname, name, LOOKUP_FOLLOW);
794 }
795
796 SYSCALL_DEFINE2(lremovexattr, const char __user *, pathname,
797                 const char __user *, name)
798 {
799         return path_removexattr(pathname, name, 0);
800 }
801
802 SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
803 {
804         struct fd f = fdget(fd);
805         int error = -EBADF;
806
807         if (!f.file)
808                 return error;
809         audit_file(f.file);
810         error = mnt_want_write_file(f.file);
811         if (!error) {
812                 error = removexattr(f.file->f_path.dentry, name);
813                 mnt_drop_write_file(f.file);
814         }
815         fdput(f);
816         return error;
817 }
818
819 /*
820  * Combine the results of the list() operation from every xattr_handler in the
821  * list.
822  */
823 ssize_t
824 generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
825 {
826         const struct xattr_handler *handler, **handlers = dentry->d_sb->s_xattr;
827         unsigned int size = 0;
828
829         if (!buffer) {
830                 for_each_xattr_handler(handlers, handler) {
831                         if (!handler->name ||
832                             (handler->list && !handler->list(dentry)))
833                                 continue;
834                         size += strlen(handler->name) + 1;
835                 }
836         } else {
837                 char *buf = buffer;
838                 size_t len;
839
840                 for_each_xattr_handler(handlers, handler) {
841                         if (!handler->name ||
842                             (handler->list && !handler->list(dentry)))
843                                 continue;
844                         len = strlen(handler->name);
845                         if (len + 1 > buffer_size)
846                                 return -ERANGE;
847                         memcpy(buf, handler->name, len + 1);
848                         buf += len + 1;
849                         buffer_size -= len + 1;
850                 }
851                 size = buf - buffer;
852         }
853         return size;
854 }
855 EXPORT_SYMBOL(generic_listxattr);
856
857 /**
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  */
872 const char *xattr_full_name(const struct xattr_handler *handler,
873                             const char *name)
874 {
875         size_t prefix_len = strlen(xattr_prefix(handler));
876
877         return name - prefix_len;
878 }
879 EXPORT_SYMBOL(xattr_full_name);
880
881 /*
882  * Allocate new xattr and copy in the value; but leave the name to callers.
883  */
884 struct 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;
891         if (len < sizeof(*new_xattr))
892                 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  */
906 int 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
930 /**
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  */
944 int simple_xattr_set(struct simple_xattrs *xattrs, const char *name,
945                      const void *value, size_t size, int flags)
946 {
947         struct simple_xattr *xattr;
948         struct simple_xattr *new_xattr = NULL;
949         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         }
985 out:
986         spin_unlock(&xattrs->lock);
987         if (xattr) {
988                 kfree(xattr->name);
989                 kfree(xattr);
990         }
991         return err;
992
993 }
994
995 static bool xattr_is_trusted(const char *name)
996 {
997         return !strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN);
998 }
999
1000 static 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
1014 /*
1015  * xattr LIST operation for in-memory/pseudo filesystems
1016  */
1017 ssize_t simple_xattr_list(struct inode *inode, struct simple_xattrs *xattrs,
1018                           char *buffer, size_t size)
1019 {
1020         bool trusted = ns_capable_noaudit(&init_user_ns, CAP_SYS_ADMIN);
1021         struct simple_xattr *xattr;
1022         ssize_t remaining_size = size;
1023         int err = 0;
1024
1025 #ifdef CONFIG_FS_POSIX_ACL
1026         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                 }
1039         }
1040 #endif
1041
1042         spin_lock(&xattrs->lock);
1043         list_for_each_entry(xattr, &xattrs->head, list) {
1044                 /* skip "trusted." attributes for unprivileged callers */
1045                 if (!trusted && xattr_is_trusted(xattr->name))
1046                         continue;
1047
1048                 err = xattr_list_one(&buffer, &remaining_size, xattr->name);
1049                 if (err)
1050                         break;
1051         }
1052         spin_unlock(&xattrs->lock);
1053
1054         return err ? err : size - remaining_size;
1055 }
1056
1057 /*
1058  * Adds an extended attribute to the list
1059  */
1060 void 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 }