xfs: don't implement XFS_IOC_RESVSP / XFS_IOC_RESVSP64
[linux-2.6-microblaze.git] / fs / xfs / xfs_ioctl.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4  * All Rights Reserved.
5  */
6 #include "xfs.h"
7 #include "xfs_fs.h"
8 #include "xfs_shared.h"
9 #include "xfs_format.h"
10 #include "xfs_log_format.h"
11 #include "xfs_trans_resv.h"
12 #include "xfs_mount.h"
13 #include "xfs_inode.h"
14 #include "xfs_rtalloc.h"
15 #include "xfs_iwalk.h"
16 #include "xfs_itable.h"
17 #include "xfs_error.h"
18 #include "xfs_attr.h"
19 #include "xfs_bmap.h"
20 #include "xfs_bmap_util.h"
21 #include "xfs_fsops.h"
22 #include "xfs_discard.h"
23 #include "xfs_quota.h"
24 #include "xfs_export.h"
25 #include "xfs_trace.h"
26 #include "xfs_icache.h"
27 #include "xfs_trans.h"
28 #include "xfs_acl.h"
29 #include "xfs_btree.h"
30 #include <linux/fsmap.h>
31 #include "xfs_fsmap.h"
32 #include "scrub/xfs_scrub.h"
33 #include "xfs_sb.h"
34 #include "xfs_ag.h"
35 #include "xfs_health.h"
36
37 #include <linux/mount.h>
38 #include <linux/namei.h>
39
40 /*
41  * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
42  * a file or fs handle.
43  *
44  * XFS_IOC_PATH_TO_FSHANDLE
45  *    returns fs handle for a mount point or path within that mount point
46  * XFS_IOC_FD_TO_HANDLE
47  *    returns full handle for a FD opened in user space
48  * XFS_IOC_PATH_TO_HANDLE
49  *    returns full handle for a path
50  */
51 int
52 xfs_find_handle(
53         unsigned int            cmd,
54         xfs_fsop_handlereq_t    *hreq)
55 {
56         int                     hsize;
57         xfs_handle_t            handle;
58         struct inode            *inode;
59         struct fd               f = {NULL};
60         struct path             path;
61         int                     error;
62         struct xfs_inode        *ip;
63
64         if (cmd == XFS_IOC_FD_TO_HANDLE) {
65                 f = fdget(hreq->fd);
66                 if (!f.file)
67                         return -EBADF;
68                 inode = file_inode(f.file);
69         } else {
70                 error = user_path_at(AT_FDCWD, hreq->path, 0, &path);
71                 if (error)
72                         return error;
73                 inode = d_inode(path.dentry);
74         }
75         ip = XFS_I(inode);
76
77         /*
78          * We can only generate handles for inodes residing on a XFS filesystem,
79          * and only for regular files, directories or symbolic links.
80          */
81         error = -EINVAL;
82         if (inode->i_sb->s_magic != XFS_SB_MAGIC)
83                 goto out_put;
84
85         error = -EBADF;
86         if (!S_ISREG(inode->i_mode) &&
87             !S_ISDIR(inode->i_mode) &&
88             !S_ISLNK(inode->i_mode))
89                 goto out_put;
90
91
92         memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));
93
94         if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
95                 /*
96                  * This handle only contains an fsid, zero the rest.
97                  */
98                 memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
99                 hsize = sizeof(xfs_fsid_t);
100         } else {
101                 handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
102                                         sizeof(handle.ha_fid.fid_len);
103                 handle.ha_fid.fid_pad = 0;
104                 handle.ha_fid.fid_gen = inode->i_generation;
105                 handle.ha_fid.fid_ino = ip->i_ino;
106                 hsize = sizeof(xfs_handle_t);
107         }
108
109         error = -EFAULT;
110         if (copy_to_user(hreq->ohandle, &handle, hsize) ||
111             copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
112                 goto out_put;
113
114         error = 0;
115
116  out_put:
117         if (cmd == XFS_IOC_FD_TO_HANDLE)
118                 fdput(f);
119         else
120                 path_put(&path);
121         return error;
122 }
123
124 /*
125  * No need to do permission checks on the various pathname components
126  * as the handle operations are privileged.
127  */
128 STATIC int
129 xfs_handle_acceptable(
130         void                    *context,
131         struct dentry           *dentry)
132 {
133         return 1;
134 }
135
136 /*
137  * Convert userspace handle data into a dentry.
138  */
139 struct dentry *
140 xfs_handle_to_dentry(
141         struct file             *parfilp,
142         void __user             *uhandle,
143         u32                     hlen)
144 {
145         xfs_handle_t            handle;
146         struct xfs_fid64        fid;
147
148         /*
149          * Only allow handle opens under a directory.
150          */
151         if (!S_ISDIR(file_inode(parfilp)->i_mode))
152                 return ERR_PTR(-ENOTDIR);
153
154         if (hlen != sizeof(xfs_handle_t))
155                 return ERR_PTR(-EINVAL);
156         if (copy_from_user(&handle, uhandle, hlen))
157                 return ERR_PTR(-EFAULT);
158         if (handle.ha_fid.fid_len !=
159             sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
160                 return ERR_PTR(-EINVAL);
161
162         memset(&fid, 0, sizeof(struct fid));
163         fid.ino = handle.ha_fid.fid_ino;
164         fid.gen = handle.ha_fid.fid_gen;
165
166         return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
167                         FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
168                         xfs_handle_acceptable, NULL);
169 }
170
171 STATIC struct dentry *
172 xfs_handlereq_to_dentry(
173         struct file             *parfilp,
174         xfs_fsop_handlereq_t    *hreq)
175 {
176         return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
177 }
178
179 int
180 xfs_open_by_handle(
181         struct file             *parfilp,
182         xfs_fsop_handlereq_t    *hreq)
183 {
184         const struct cred       *cred = current_cred();
185         int                     error;
186         int                     fd;
187         int                     permflag;
188         struct file             *filp;
189         struct inode            *inode;
190         struct dentry           *dentry;
191         fmode_t                 fmode;
192         struct path             path;
193
194         if (!capable(CAP_SYS_ADMIN))
195                 return -EPERM;
196
197         dentry = xfs_handlereq_to_dentry(parfilp, hreq);
198         if (IS_ERR(dentry))
199                 return PTR_ERR(dentry);
200         inode = d_inode(dentry);
201
202         /* Restrict xfs_open_by_handle to directories & regular files. */
203         if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
204                 error = -EPERM;
205                 goto out_dput;
206         }
207
208 #if BITS_PER_LONG != 32
209         hreq->oflags |= O_LARGEFILE;
210 #endif
211
212         permflag = hreq->oflags;
213         fmode = OPEN_FMODE(permflag);
214         if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
215             (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
216                 error = -EPERM;
217                 goto out_dput;
218         }
219
220         if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
221                 error = -EPERM;
222                 goto out_dput;
223         }
224
225         /* Can't write directories. */
226         if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
227                 error = -EISDIR;
228                 goto out_dput;
229         }
230
231         fd = get_unused_fd_flags(0);
232         if (fd < 0) {
233                 error = fd;
234                 goto out_dput;
235         }
236
237         path.mnt = parfilp->f_path.mnt;
238         path.dentry = dentry;
239         filp = dentry_open(&path, hreq->oflags, cred);
240         dput(dentry);
241         if (IS_ERR(filp)) {
242                 put_unused_fd(fd);
243                 return PTR_ERR(filp);
244         }
245
246         if (S_ISREG(inode->i_mode)) {
247                 filp->f_flags |= O_NOATIME;
248                 filp->f_mode |= FMODE_NOCMTIME;
249         }
250
251         fd_install(fd, filp);
252         return fd;
253
254  out_dput:
255         dput(dentry);
256         return error;
257 }
258
259 int
260 xfs_readlink_by_handle(
261         struct file             *parfilp,
262         xfs_fsop_handlereq_t    *hreq)
263 {
264         struct dentry           *dentry;
265         __u32                   olen;
266         int                     error;
267
268         if (!capable(CAP_SYS_ADMIN))
269                 return -EPERM;
270
271         dentry = xfs_handlereq_to_dentry(parfilp, hreq);
272         if (IS_ERR(dentry))
273                 return PTR_ERR(dentry);
274
275         /* Restrict this handle operation to symlinks only. */
276         if (!d_is_symlink(dentry)) {
277                 error = -EINVAL;
278                 goto out_dput;
279         }
280
281         if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
282                 error = -EFAULT;
283                 goto out_dput;
284         }
285
286         error = vfs_readlink(dentry, hreq->ohandle, olen);
287
288  out_dput:
289         dput(dentry);
290         return error;
291 }
292
293 int
294 xfs_set_dmattrs(
295         xfs_inode_t     *ip,
296         uint            evmask,
297         uint16_t        state)
298 {
299         xfs_mount_t     *mp = ip->i_mount;
300         xfs_trans_t     *tp;
301         int             error;
302
303         if (!capable(CAP_SYS_ADMIN))
304                 return -EPERM;
305
306         if (XFS_FORCED_SHUTDOWN(mp))
307                 return -EIO;
308
309         error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
310         if (error)
311                 return error;
312
313         xfs_ilock(ip, XFS_ILOCK_EXCL);
314         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
315
316         ip->i_d.di_dmevmask = evmask;
317         ip->i_d.di_dmstate  = state;
318
319         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
320         error = xfs_trans_commit(tp);
321
322         return error;
323 }
324
325 STATIC int
326 xfs_fssetdm_by_handle(
327         struct file             *parfilp,
328         void                    __user *arg)
329 {
330         int                     error;
331         struct fsdmidata        fsd;
332         xfs_fsop_setdm_handlereq_t dmhreq;
333         struct dentry           *dentry;
334
335         if (!capable(CAP_MKNOD))
336                 return -EPERM;
337         if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
338                 return -EFAULT;
339
340         error = mnt_want_write_file(parfilp);
341         if (error)
342                 return error;
343
344         dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
345         if (IS_ERR(dentry)) {
346                 mnt_drop_write_file(parfilp);
347                 return PTR_ERR(dentry);
348         }
349
350         if (IS_IMMUTABLE(d_inode(dentry)) || IS_APPEND(d_inode(dentry))) {
351                 error = -EPERM;
352                 goto out;
353         }
354
355         if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
356                 error = -EFAULT;
357                 goto out;
358         }
359
360         error = xfs_set_dmattrs(XFS_I(d_inode(dentry)), fsd.fsd_dmevmask,
361                                  fsd.fsd_dmstate);
362
363  out:
364         mnt_drop_write_file(parfilp);
365         dput(dentry);
366         return error;
367 }
368
369 STATIC int
370 xfs_attrlist_by_handle(
371         struct file             *parfilp,
372         void                    __user *arg)
373 {
374         int                     error = -ENOMEM;
375         attrlist_cursor_kern_t  *cursor;
376         struct xfs_fsop_attrlist_handlereq __user       *p = arg;
377         xfs_fsop_attrlist_handlereq_t al_hreq;
378         struct dentry           *dentry;
379         char                    *kbuf;
380
381         if (!capable(CAP_SYS_ADMIN))
382                 return -EPERM;
383         if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
384                 return -EFAULT;
385         if (al_hreq.buflen < sizeof(struct attrlist) ||
386             al_hreq.buflen > XFS_XATTR_LIST_MAX)
387                 return -EINVAL;
388
389         /*
390          * Reject flags, only allow namespaces.
391          */
392         if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
393                 return -EINVAL;
394
395         dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
396         if (IS_ERR(dentry))
397                 return PTR_ERR(dentry);
398
399         kbuf = kmem_zalloc_large(al_hreq.buflen, 0);
400         if (!kbuf)
401                 goto out_dput;
402
403         cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
404         error = xfs_attr_list(XFS_I(d_inode(dentry)), kbuf, al_hreq.buflen,
405                                         al_hreq.flags, cursor);
406         if (error)
407                 goto out_kfree;
408
409         if (copy_to_user(&p->pos, cursor, sizeof(attrlist_cursor_kern_t))) {
410                 error = -EFAULT;
411                 goto out_kfree;
412         }
413
414         if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
415                 error = -EFAULT;
416
417 out_kfree:
418         kmem_free(kbuf);
419 out_dput:
420         dput(dentry);
421         return error;
422 }
423
424 int
425 xfs_attrmulti_attr_get(
426         struct inode            *inode,
427         unsigned char           *name,
428         unsigned char           __user *ubuf,
429         uint32_t                *len,
430         uint32_t                flags)
431 {
432         unsigned char           *kbuf;
433         int                     error = -EFAULT;
434
435         if (*len > XFS_XATTR_SIZE_MAX)
436                 return -EINVAL;
437         kbuf = kmem_zalloc_large(*len, 0);
438         if (!kbuf)
439                 return -ENOMEM;
440
441         error = xfs_attr_get(XFS_I(inode), name, &kbuf, (int *)len, flags);
442         if (error)
443                 goto out_kfree;
444
445         if (copy_to_user(ubuf, kbuf, *len))
446                 error = -EFAULT;
447
448 out_kfree:
449         kmem_free(kbuf);
450         return error;
451 }
452
453 int
454 xfs_attrmulti_attr_set(
455         struct inode            *inode,
456         unsigned char           *name,
457         const unsigned char     __user *ubuf,
458         uint32_t                len,
459         uint32_t                flags)
460 {
461         unsigned char           *kbuf;
462         int                     error;
463
464         if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
465                 return -EPERM;
466         if (len > XFS_XATTR_SIZE_MAX)
467                 return -EINVAL;
468
469         kbuf = memdup_user(ubuf, len);
470         if (IS_ERR(kbuf))
471                 return PTR_ERR(kbuf);
472
473         error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
474         if (!error)
475                 xfs_forget_acl(inode, name, flags);
476         kfree(kbuf);
477         return error;
478 }
479
480 int
481 xfs_attrmulti_attr_remove(
482         struct inode            *inode,
483         unsigned char           *name,
484         uint32_t                flags)
485 {
486         int                     error;
487
488         if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
489                 return -EPERM;
490         error = xfs_attr_remove(XFS_I(inode), name, flags);
491         if (!error)
492                 xfs_forget_acl(inode, name, flags);
493         return error;
494 }
495
496 STATIC int
497 xfs_attrmulti_by_handle(
498         struct file             *parfilp,
499         void                    __user *arg)
500 {
501         int                     error;
502         xfs_attr_multiop_t      *ops;
503         xfs_fsop_attrmulti_handlereq_t am_hreq;
504         struct dentry           *dentry;
505         unsigned int            i, size;
506         unsigned char           *attr_name;
507
508         if (!capable(CAP_SYS_ADMIN))
509                 return -EPERM;
510         if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
511                 return -EFAULT;
512
513         /* overflow check */
514         if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
515                 return -E2BIG;
516
517         dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
518         if (IS_ERR(dentry))
519                 return PTR_ERR(dentry);
520
521         error = -E2BIG;
522         size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
523         if (!size || size > 16 * PAGE_SIZE)
524                 goto out_dput;
525
526         ops = memdup_user(am_hreq.ops, size);
527         if (IS_ERR(ops)) {
528                 error = PTR_ERR(ops);
529                 goto out_dput;
530         }
531
532         error = -ENOMEM;
533         attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
534         if (!attr_name)
535                 goto out_kfree_ops;
536
537         error = 0;
538         for (i = 0; i < am_hreq.opcount; i++) {
539                 ops[i].am_error = strncpy_from_user((char *)attr_name,
540                                 ops[i].am_attrname, MAXNAMELEN);
541                 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
542                         error = -ERANGE;
543                 if (ops[i].am_error < 0)
544                         break;
545
546                 switch (ops[i].am_opcode) {
547                 case ATTR_OP_GET:
548                         ops[i].am_error = xfs_attrmulti_attr_get(
549                                         d_inode(dentry), attr_name,
550                                         ops[i].am_attrvalue, &ops[i].am_length,
551                                         ops[i].am_flags);
552                         break;
553                 case ATTR_OP_SET:
554                         ops[i].am_error = mnt_want_write_file(parfilp);
555                         if (ops[i].am_error)
556                                 break;
557                         ops[i].am_error = xfs_attrmulti_attr_set(
558                                         d_inode(dentry), attr_name,
559                                         ops[i].am_attrvalue, ops[i].am_length,
560                                         ops[i].am_flags);
561                         mnt_drop_write_file(parfilp);
562                         break;
563                 case ATTR_OP_REMOVE:
564                         ops[i].am_error = mnt_want_write_file(parfilp);
565                         if (ops[i].am_error)
566                                 break;
567                         ops[i].am_error = xfs_attrmulti_attr_remove(
568                                         d_inode(dentry), attr_name,
569                                         ops[i].am_flags);
570                         mnt_drop_write_file(parfilp);
571                         break;
572                 default:
573                         ops[i].am_error = -EINVAL;
574                 }
575         }
576
577         if (copy_to_user(am_hreq.ops, ops, size))
578                 error = -EFAULT;
579
580         kfree(attr_name);
581  out_kfree_ops:
582         kfree(ops);
583  out_dput:
584         dput(dentry);
585         return error;
586 }
587
588 int
589 xfs_ioc_space(
590         struct file             *filp,
591         unsigned int            cmd,
592         xfs_flock64_t           *bf)
593 {
594         struct inode            *inode = file_inode(filp);
595         struct xfs_inode        *ip = XFS_I(inode);
596         struct iattr            iattr;
597         enum xfs_prealloc_flags flags = 0;
598         uint                    iolock = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
599         int                     error;
600
601         if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
602                 return -EPERM;
603
604         if (!(filp->f_mode & FMODE_WRITE))
605                 return -EBADF;
606
607         if (!S_ISREG(inode->i_mode))
608                 return -EINVAL;
609
610         if (filp->f_flags & O_DSYNC)
611                 flags |= XFS_PREALLOC_SYNC;
612         if (filp->f_mode & FMODE_NOCMTIME)
613                 flags |= XFS_PREALLOC_INVISIBLE;
614
615         error = mnt_want_write_file(filp);
616         if (error)
617                 return error;
618
619         xfs_ilock(ip, iolock);
620         error = xfs_break_layouts(inode, &iolock, BREAK_UNMAP);
621         if (error)
622                 goto out_unlock;
623
624         switch (bf->l_whence) {
625         case 0: /*SEEK_SET*/
626                 break;
627         case 1: /*SEEK_CUR*/
628                 bf->l_start += filp->f_pos;
629                 break;
630         case 2: /*SEEK_END*/
631                 bf->l_start += XFS_ISIZE(ip);
632                 break;
633         default:
634                 error = -EINVAL;
635                 goto out_unlock;
636         }
637
638         /*
639          * length of <= 0 for resv/unresv/zero is invalid.  length for
640          * alloc/free is ignored completely and we have no idea what userspace
641          * might have set it to, so set it to zero to allow range
642          * checks to pass.
643          */
644         switch (cmd) {
645         case XFS_IOC_ZERO_RANGE:
646         case XFS_IOC_UNRESVSP:
647         case XFS_IOC_UNRESVSP64:
648                 if (bf->l_len <= 0) {
649                         error = -EINVAL;
650                         goto out_unlock;
651                 }
652                 break;
653         default:
654                 bf->l_len = 0;
655                 break;
656         }
657
658         if (bf->l_start < 0 ||
659             bf->l_start > inode->i_sb->s_maxbytes ||
660             bf->l_start + bf->l_len < 0 ||
661             bf->l_start + bf->l_len >= inode->i_sb->s_maxbytes) {
662                 error = -EINVAL;
663                 goto out_unlock;
664         }
665
666         switch (cmd) {
667         case XFS_IOC_ZERO_RANGE:
668                 flags |= XFS_PREALLOC_SET;
669                 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len);
670                 break;
671         case XFS_IOC_UNRESVSP:
672         case XFS_IOC_UNRESVSP64:
673                 error = xfs_free_file_space(ip, bf->l_start, bf->l_len);
674                 break;
675         case XFS_IOC_ALLOCSP:
676         case XFS_IOC_ALLOCSP64:
677         case XFS_IOC_FREESP:
678         case XFS_IOC_FREESP64:
679                 flags |= XFS_PREALLOC_CLEAR;
680                 if (bf->l_start > XFS_ISIZE(ip)) {
681                         error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
682                                         bf->l_start - XFS_ISIZE(ip), 0);
683                         if (error)
684                                 goto out_unlock;
685                 }
686
687                 iattr.ia_valid = ATTR_SIZE;
688                 iattr.ia_size = bf->l_start;
689
690                 error = xfs_vn_setattr_size(file_dentry(filp), &iattr);
691                 break;
692         default:
693                 ASSERT(0);
694                 error = -EINVAL;
695         }
696
697         if (error)
698                 goto out_unlock;
699
700         error = xfs_update_prealloc_flags(ip, flags);
701
702 out_unlock:
703         xfs_iunlock(ip, iolock);
704         mnt_drop_write_file(filp);
705         return error;
706 }
707
708 /* Return 0 on success or positive error */
709 int
710 xfs_fsbulkstat_one_fmt(
711         struct xfs_ibulk                *breq,
712         const struct xfs_bulkstat       *bstat)
713 {
714         struct xfs_bstat                bs1;
715
716         xfs_bulkstat_to_bstat(breq->mp, &bs1, bstat);
717         if (copy_to_user(breq->ubuffer, &bs1, sizeof(bs1)))
718                 return -EFAULT;
719         return xfs_ibulk_advance(breq, sizeof(struct xfs_bstat));
720 }
721
722 int
723 xfs_fsinumbers_fmt(
724         struct xfs_ibulk                *breq,
725         const struct xfs_inumbers       *igrp)
726 {
727         struct xfs_inogrp               ig1;
728
729         xfs_inumbers_to_inogrp(&ig1, igrp);
730         if (copy_to_user(breq->ubuffer, &ig1, sizeof(struct xfs_inogrp)))
731                 return -EFAULT;
732         return xfs_ibulk_advance(breq, sizeof(struct xfs_inogrp));
733 }
734
735 STATIC int
736 xfs_ioc_fsbulkstat(
737         xfs_mount_t             *mp,
738         unsigned int            cmd,
739         void                    __user *arg)
740 {
741         struct xfs_fsop_bulkreq bulkreq;
742         struct xfs_ibulk        breq = {
743                 .mp             = mp,
744                 .ocount         = 0,
745         };
746         xfs_ino_t               lastino;
747         int                     error;
748
749         /* done = 1 if there are more stats to get and if bulkstat */
750         /* should be called again (unused here, but used in dmapi) */
751
752         if (!capable(CAP_SYS_ADMIN))
753                 return -EPERM;
754
755         if (XFS_FORCED_SHUTDOWN(mp))
756                 return -EIO;
757
758         if (copy_from_user(&bulkreq, arg, sizeof(struct xfs_fsop_bulkreq)))
759                 return -EFAULT;
760
761         if (copy_from_user(&lastino, bulkreq.lastip, sizeof(__s64)))
762                 return -EFAULT;
763
764         if (bulkreq.icount <= 0)
765                 return -EINVAL;
766
767         if (bulkreq.ubuffer == NULL)
768                 return -EINVAL;
769
770         breq.ubuffer = bulkreq.ubuffer;
771         breq.icount = bulkreq.icount;
772
773         /*
774          * FSBULKSTAT_SINGLE expects that *lastip contains the inode number
775          * that we want to stat.  However, FSINUMBERS and FSBULKSTAT expect
776          * that *lastip contains either zero or the number of the last inode to
777          * be examined by the previous call and return results starting with
778          * the next inode after that.  The new bulk request back end functions
779          * take the inode to start with, so we have to compute the startino
780          * parameter from lastino to maintain correct function.  lastino == 0
781          * is a special case because it has traditionally meant "first inode
782          * in filesystem".
783          */
784         if (cmd == XFS_IOC_FSINUMBERS) {
785                 breq.startino = lastino ? lastino + 1 : 0;
786                 error = xfs_inumbers(&breq, xfs_fsinumbers_fmt);
787                 lastino = breq.startino - 1;
788         } else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE) {
789                 breq.startino = lastino;
790                 breq.icount = 1;
791                 error = xfs_bulkstat_one(&breq, xfs_fsbulkstat_one_fmt);
792         } else {        /* XFS_IOC_FSBULKSTAT */
793                 breq.startino = lastino ? lastino + 1 : 0;
794                 error = xfs_bulkstat(&breq, xfs_fsbulkstat_one_fmt);
795                 lastino = breq.startino - 1;
796         }
797
798         if (error)
799                 return error;
800
801         if (bulkreq.lastip != NULL &&
802             copy_to_user(bulkreq.lastip, &lastino, sizeof(xfs_ino_t)))
803                 return -EFAULT;
804
805         if (bulkreq.ocount != NULL &&
806             copy_to_user(bulkreq.ocount, &breq.ocount, sizeof(__s32)))
807                 return -EFAULT;
808
809         return 0;
810 }
811
812 /* Return 0 on success or positive error */
813 static int
814 xfs_bulkstat_fmt(
815         struct xfs_ibulk                *breq,
816         const struct xfs_bulkstat       *bstat)
817 {
818         if (copy_to_user(breq->ubuffer, bstat, sizeof(struct xfs_bulkstat)))
819                 return -EFAULT;
820         return xfs_ibulk_advance(breq, sizeof(struct xfs_bulkstat));
821 }
822
823 /*
824  * Check the incoming bulk request @hdr from userspace and initialize the
825  * internal @breq bulk request appropriately.  Returns 0 if the bulk request
826  * should proceed; -ECANCELED if there's nothing to do; or the usual
827  * negative error code.
828  */
829 static int
830 xfs_bulk_ireq_setup(
831         struct xfs_mount        *mp,
832         struct xfs_bulk_ireq    *hdr,
833         struct xfs_ibulk        *breq,
834         void __user             *ubuffer)
835 {
836         if (hdr->icount == 0 ||
837             (hdr->flags & ~XFS_BULK_IREQ_FLAGS_ALL) ||
838             memchr_inv(hdr->reserved, 0, sizeof(hdr->reserved)))
839                 return -EINVAL;
840
841         breq->startino = hdr->ino;
842         breq->ubuffer = ubuffer;
843         breq->icount = hdr->icount;
844         breq->ocount = 0;
845         breq->flags = 0;
846
847         /*
848          * The @ino parameter is a special value, so we must look it up here.
849          * We're not allowed to have IREQ_AGNO, and we only return one inode
850          * worth of data.
851          */
852         if (hdr->flags & XFS_BULK_IREQ_SPECIAL) {
853                 if (hdr->flags & XFS_BULK_IREQ_AGNO)
854                         return -EINVAL;
855
856                 switch (hdr->ino) {
857                 case XFS_BULK_IREQ_SPECIAL_ROOT:
858                         hdr->ino = mp->m_sb.sb_rootino;
859                         break;
860                 default:
861                         return -EINVAL;
862                 }
863                 breq->icount = 1;
864         }
865
866         /*
867          * The IREQ_AGNO flag means that we only want results from a given AG.
868          * If @hdr->ino is zero, we start iterating in that AG.  If @hdr->ino is
869          * beyond the specified AG then we return no results.
870          */
871         if (hdr->flags & XFS_BULK_IREQ_AGNO) {
872                 if (hdr->agno >= mp->m_sb.sb_agcount)
873                         return -EINVAL;
874
875                 if (breq->startino == 0)
876                         breq->startino = XFS_AGINO_TO_INO(mp, hdr->agno, 0);
877                 else if (XFS_INO_TO_AGNO(mp, breq->startino) < hdr->agno)
878                         return -EINVAL;
879
880                 breq->flags |= XFS_IBULK_SAME_AG;
881
882                 /* Asking for an inode past the end of the AG?  We're done! */
883                 if (XFS_INO_TO_AGNO(mp, breq->startino) > hdr->agno)
884                         return -ECANCELED;
885         } else if (hdr->agno)
886                 return -EINVAL;
887
888         /* Asking for an inode past the end of the FS?  We're done! */
889         if (XFS_INO_TO_AGNO(mp, breq->startino) >= mp->m_sb.sb_agcount)
890                 return -ECANCELED;
891
892         return 0;
893 }
894
895 /*
896  * Update the userspace bulk request @hdr to reflect the end state of the
897  * internal bulk request @breq.
898  */
899 static void
900 xfs_bulk_ireq_teardown(
901         struct xfs_bulk_ireq    *hdr,
902         struct xfs_ibulk        *breq)
903 {
904         hdr->ino = breq->startino;
905         hdr->ocount = breq->ocount;
906 }
907
908 /* Handle the v5 bulkstat ioctl. */
909 STATIC int
910 xfs_ioc_bulkstat(
911         struct xfs_mount                *mp,
912         unsigned int                    cmd,
913         struct xfs_bulkstat_req __user  *arg)
914 {
915         struct xfs_bulk_ireq            hdr;
916         struct xfs_ibulk                breq = {
917                 .mp                     = mp,
918         };
919         int                             error;
920
921         if (!capable(CAP_SYS_ADMIN))
922                 return -EPERM;
923
924         if (XFS_FORCED_SHUTDOWN(mp))
925                 return -EIO;
926
927         if (copy_from_user(&hdr, &arg->hdr, sizeof(hdr)))
928                 return -EFAULT;
929
930         error = xfs_bulk_ireq_setup(mp, &hdr, &breq, arg->bulkstat);
931         if (error == -ECANCELED)
932                 goto out_teardown;
933         if (error < 0)
934                 return error;
935
936         error = xfs_bulkstat(&breq, xfs_bulkstat_fmt);
937         if (error)
938                 return error;
939
940 out_teardown:
941         xfs_bulk_ireq_teardown(&hdr, &breq);
942         if (copy_to_user(&arg->hdr, &hdr, sizeof(hdr)))
943                 return -EFAULT;
944
945         return 0;
946 }
947
948 STATIC int
949 xfs_inumbers_fmt(
950         struct xfs_ibulk                *breq,
951         const struct xfs_inumbers       *igrp)
952 {
953         if (copy_to_user(breq->ubuffer, igrp, sizeof(struct xfs_inumbers)))
954                 return -EFAULT;
955         return xfs_ibulk_advance(breq, sizeof(struct xfs_inumbers));
956 }
957
958 /* Handle the v5 inumbers ioctl. */
959 STATIC int
960 xfs_ioc_inumbers(
961         struct xfs_mount                *mp,
962         unsigned int                    cmd,
963         struct xfs_inumbers_req __user  *arg)
964 {
965         struct xfs_bulk_ireq            hdr;
966         struct xfs_ibulk                breq = {
967                 .mp                     = mp,
968         };
969         int                             error;
970
971         if (!capable(CAP_SYS_ADMIN))
972                 return -EPERM;
973
974         if (XFS_FORCED_SHUTDOWN(mp))
975                 return -EIO;
976
977         if (copy_from_user(&hdr, &arg->hdr, sizeof(hdr)))
978                 return -EFAULT;
979
980         error = xfs_bulk_ireq_setup(mp, &hdr, &breq, arg->inumbers);
981         if (error == -ECANCELED)
982                 goto out_teardown;
983         if (error < 0)
984                 return error;
985
986         error = xfs_inumbers(&breq, xfs_inumbers_fmt);
987         if (error)
988                 return error;
989
990 out_teardown:
991         xfs_bulk_ireq_teardown(&hdr, &breq);
992         if (copy_to_user(&arg->hdr, &hdr, sizeof(hdr)))
993                 return -EFAULT;
994
995         return 0;
996 }
997
998 STATIC int
999 xfs_ioc_fsgeometry(
1000         struct xfs_mount        *mp,
1001         void                    __user *arg,
1002         int                     struct_version)
1003 {
1004         struct xfs_fsop_geom    fsgeo;
1005         size_t                  len;
1006
1007         xfs_fs_geometry(&mp->m_sb, &fsgeo, struct_version);
1008
1009         if (struct_version <= 3)
1010                 len = sizeof(struct xfs_fsop_geom_v1);
1011         else if (struct_version == 4)
1012                 len = sizeof(struct xfs_fsop_geom_v4);
1013         else {
1014                 xfs_fsop_geom_health(mp, &fsgeo);
1015                 len = sizeof(fsgeo);
1016         }
1017
1018         if (copy_to_user(arg, &fsgeo, len))
1019                 return -EFAULT;
1020         return 0;
1021 }
1022
1023 STATIC int
1024 xfs_ioc_ag_geometry(
1025         struct xfs_mount        *mp,
1026         void                    __user *arg)
1027 {
1028         struct xfs_ag_geometry  ageo;
1029         int                     error;
1030
1031         if (copy_from_user(&ageo, arg, sizeof(ageo)))
1032                 return -EFAULT;
1033         if (ageo.ag_flags)
1034                 return -EINVAL;
1035         if (memchr_inv(&ageo.ag_reserved, 0, sizeof(ageo.ag_reserved)))
1036                 return -EINVAL;
1037
1038         error = xfs_ag_get_geometry(mp, ageo.ag_number, &ageo);
1039         if (error)
1040                 return error;
1041
1042         if (copy_to_user(arg, &ageo, sizeof(ageo)))
1043                 return -EFAULT;
1044         return 0;
1045 }
1046
1047 /*
1048  * Linux extended inode flags interface.
1049  */
1050
1051 STATIC unsigned int
1052 xfs_merge_ioc_xflags(
1053         unsigned int    flags,
1054         unsigned int    start)
1055 {
1056         unsigned int    xflags = start;
1057
1058         if (flags & FS_IMMUTABLE_FL)
1059                 xflags |= FS_XFLAG_IMMUTABLE;
1060         else
1061                 xflags &= ~FS_XFLAG_IMMUTABLE;
1062         if (flags & FS_APPEND_FL)
1063                 xflags |= FS_XFLAG_APPEND;
1064         else
1065                 xflags &= ~FS_XFLAG_APPEND;
1066         if (flags & FS_SYNC_FL)
1067                 xflags |= FS_XFLAG_SYNC;
1068         else
1069                 xflags &= ~FS_XFLAG_SYNC;
1070         if (flags & FS_NOATIME_FL)
1071                 xflags |= FS_XFLAG_NOATIME;
1072         else
1073                 xflags &= ~FS_XFLAG_NOATIME;
1074         if (flags & FS_NODUMP_FL)
1075                 xflags |= FS_XFLAG_NODUMP;
1076         else
1077                 xflags &= ~FS_XFLAG_NODUMP;
1078
1079         return xflags;
1080 }
1081
1082 STATIC unsigned int
1083 xfs_di2lxflags(
1084         uint16_t        di_flags)
1085 {
1086         unsigned int    flags = 0;
1087
1088         if (di_flags & XFS_DIFLAG_IMMUTABLE)
1089                 flags |= FS_IMMUTABLE_FL;
1090         if (di_flags & XFS_DIFLAG_APPEND)
1091                 flags |= FS_APPEND_FL;
1092         if (di_flags & XFS_DIFLAG_SYNC)
1093                 flags |= FS_SYNC_FL;
1094         if (di_flags & XFS_DIFLAG_NOATIME)
1095                 flags |= FS_NOATIME_FL;
1096         if (di_flags & XFS_DIFLAG_NODUMP)
1097                 flags |= FS_NODUMP_FL;
1098         return flags;
1099 }
1100
1101 static void
1102 xfs_fill_fsxattr(
1103         struct xfs_inode        *ip,
1104         bool                    attr,
1105         struct fsxattr          *fa)
1106 {
1107         simple_fill_fsxattr(fa, xfs_ip2xflags(ip));
1108         fa->fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
1109         fa->fsx_cowextsize = ip->i_d.di_cowextsize <<
1110                         ip->i_mount->m_sb.sb_blocklog;
1111         fa->fsx_projid = xfs_get_projid(ip);
1112
1113         if (attr) {
1114                 if (ip->i_afp) {
1115                         if (ip->i_afp->if_flags & XFS_IFEXTENTS)
1116                                 fa->fsx_nextents = xfs_iext_count(ip->i_afp);
1117                         else
1118                                 fa->fsx_nextents = ip->i_d.di_anextents;
1119                 } else
1120                         fa->fsx_nextents = 0;
1121         } else {
1122                 if (ip->i_df.if_flags & XFS_IFEXTENTS)
1123                         fa->fsx_nextents = xfs_iext_count(&ip->i_df);
1124                 else
1125                         fa->fsx_nextents = ip->i_d.di_nextents;
1126         }
1127 }
1128
1129 STATIC int
1130 xfs_ioc_fsgetxattr(
1131         xfs_inode_t             *ip,
1132         int                     attr,
1133         void                    __user *arg)
1134 {
1135         struct fsxattr          fa;
1136
1137         xfs_ilock(ip, XFS_ILOCK_SHARED);
1138         xfs_fill_fsxattr(ip, attr, &fa);
1139         xfs_iunlock(ip, XFS_ILOCK_SHARED);
1140
1141         if (copy_to_user(arg, &fa, sizeof(fa)))
1142                 return -EFAULT;
1143         return 0;
1144 }
1145
1146 STATIC uint16_t
1147 xfs_flags2diflags(
1148         struct xfs_inode        *ip,
1149         unsigned int            xflags)
1150 {
1151         /* can't set PREALLOC this way, just preserve it */
1152         uint16_t                di_flags =
1153                 (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
1154
1155         if (xflags & FS_XFLAG_IMMUTABLE)
1156                 di_flags |= XFS_DIFLAG_IMMUTABLE;
1157         if (xflags & FS_XFLAG_APPEND)
1158                 di_flags |= XFS_DIFLAG_APPEND;
1159         if (xflags & FS_XFLAG_SYNC)
1160                 di_flags |= XFS_DIFLAG_SYNC;
1161         if (xflags & FS_XFLAG_NOATIME)
1162                 di_flags |= XFS_DIFLAG_NOATIME;
1163         if (xflags & FS_XFLAG_NODUMP)
1164                 di_flags |= XFS_DIFLAG_NODUMP;
1165         if (xflags & FS_XFLAG_NODEFRAG)
1166                 di_flags |= XFS_DIFLAG_NODEFRAG;
1167         if (xflags & FS_XFLAG_FILESTREAM)
1168                 di_flags |= XFS_DIFLAG_FILESTREAM;
1169         if (S_ISDIR(VFS_I(ip)->i_mode)) {
1170                 if (xflags & FS_XFLAG_RTINHERIT)
1171                         di_flags |= XFS_DIFLAG_RTINHERIT;
1172                 if (xflags & FS_XFLAG_NOSYMLINKS)
1173                         di_flags |= XFS_DIFLAG_NOSYMLINKS;
1174                 if (xflags & FS_XFLAG_EXTSZINHERIT)
1175                         di_flags |= XFS_DIFLAG_EXTSZINHERIT;
1176                 if (xflags & FS_XFLAG_PROJINHERIT)
1177                         di_flags |= XFS_DIFLAG_PROJINHERIT;
1178         } else if (S_ISREG(VFS_I(ip)->i_mode)) {
1179                 if (xflags & FS_XFLAG_REALTIME)
1180                         di_flags |= XFS_DIFLAG_REALTIME;
1181                 if (xflags & FS_XFLAG_EXTSIZE)
1182                         di_flags |= XFS_DIFLAG_EXTSIZE;
1183         }
1184
1185         return di_flags;
1186 }
1187
1188 STATIC uint64_t
1189 xfs_flags2diflags2(
1190         struct xfs_inode        *ip,
1191         unsigned int            xflags)
1192 {
1193         uint64_t                di_flags2 =
1194                 (ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK);
1195
1196         if (xflags & FS_XFLAG_DAX)
1197                 di_flags2 |= XFS_DIFLAG2_DAX;
1198         if (xflags & FS_XFLAG_COWEXTSIZE)
1199                 di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
1200
1201         return di_flags2;
1202 }
1203
1204 STATIC void
1205 xfs_diflags_to_linux(
1206         struct xfs_inode        *ip)
1207 {
1208         struct inode            *inode = VFS_I(ip);
1209         unsigned int            xflags = xfs_ip2xflags(ip);
1210
1211         if (xflags & FS_XFLAG_IMMUTABLE)
1212                 inode->i_flags |= S_IMMUTABLE;
1213         else
1214                 inode->i_flags &= ~S_IMMUTABLE;
1215         if (xflags & FS_XFLAG_APPEND)
1216                 inode->i_flags |= S_APPEND;
1217         else
1218                 inode->i_flags &= ~S_APPEND;
1219         if (xflags & FS_XFLAG_SYNC)
1220                 inode->i_flags |= S_SYNC;
1221         else
1222                 inode->i_flags &= ~S_SYNC;
1223         if (xflags & FS_XFLAG_NOATIME)
1224                 inode->i_flags |= S_NOATIME;
1225         else
1226                 inode->i_flags &= ~S_NOATIME;
1227 #if 0   /* disabled until the flag switching races are sorted out */
1228         if (xflags & FS_XFLAG_DAX)
1229                 inode->i_flags |= S_DAX;
1230         else
1231                 inode->i_flags &= ~S_DAX;
1232 #endif
1233 }
1234
1235 static int
1236 xfs_ioctl_setattr_xflags(
1237         struct xfs_trans        *tp,
1238         struct xfs_inode        *ip,
1239         struct fsxattr          *fa)
1240 {
1241         struct xfs_mount        *mp = ip->i_mount;
1242         uint64_t                di_flags2;
1243
1244         /* Can't change realtime flag if any extents are allocated. */
1245         if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
1246             XFS_IS_REALTIME_INODE(ip) != (fa->fsx_xflags & FS_XFLAG_REALTIME))
1247                 return -EINVAL;
1248
1249         /* If realtime flag is set then must have realtime device */
1250         if (fa->fsx_xflags & FS_XFLAG_REALTIME) {
1251                 if (mp->m_sb.sb_rblocks == 0 || mp->m_sb.sb_rextsize == 0 ||
1252                     (ip->i_d.di_extsize % mp->m_sb.sb_rextsize))
1253                         return -EINVAL;
1254         }
1255
1256         /* Clear reflink if we are actually able to set the rt flag. */
1257         if ((fa->fsx_xflags & FS_XFLAG_REALTIME) && xfs_is_reflink_inode(ip))
1258                 ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
1259
1260         /* Don't allow us to set DAX mode for a reflinked file for now. */
1261         if ((fa->fsx_xflags & FS_XFLAG_DAX) && xfs_is_reflink_inode(ip))
1262                 return -EINVAL;
1263
1264         /* diflags2 only valid for v3 inodes. */
1265         di_flags2 = xfs_flags2diflags2(ip, fa->fsx_xflags);
1266         if (di_flags2 && ip->i_d.di_version < 3)
1267                 return -EINVAL;
1268
1269         ip->i_d.di_flags = xfs_flags2diflags(ip, fa->fsx_xflags);
1270         ip->i_d.di_flags2 = di_flags2;
1271
1272         xfs_diflags_to_linux(ip);
1273         xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1274         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1275         XFS_STATS_INC(mp, xs_ig_attrchg);
1276         return 0;
1277 }
1278
1279 /*
1280  * If we are changing DAX flags, we have to ensure the file is clean and any
1281  * cached objects in the address space are invalidated and removed. This
1282  * requires us to lock out other IO and page faults similar to a truncate
1283  * operation. The locks need to be held until the transaction has been committed
1284  * so that the cache invalidation is atomic with respect to the DAX flag
1285  * manipulation.
1286  */
1287 static int
1288 xfs_ioctl_setattr_dax_invalidate(
1289         struct xfs_inode        *ip,
1290         struct fsxattr          *fa,
1291         int                     *join_flags)
1292 {
1293         struct inode            *inode = VFS_I(ip);
1294         struct super_block      *sb = inode->i_sb;
1295         int                     error;
1296
1297         *join_flags = 0;
1298
1299         /*
1300          * It is only valid to set the DAX flag on regular files and
1301          * directories on filesystems where the block size is equal to the page
1302          * size. On directories it serves as an inherited hint so we don't
1303          * have to check the device for dax support or flush pagecache.
1304          */
1305         if (fa->fsx_xflags & FS_XFLAG_DAX) {
1306                 struct xfs_buftarg      *target = xfs_inode_buftarg(ip);
1307
1308                 if (!bdev_dax_supported(target->bt_bdev, sb->s_blocksize))
1309                         return -EINVAL;
1310         }
1311
1312         /* If the DAX state is not changing, we have nothing to do here. */
1313         if ((fa->fsx_xflags & FS_XFLAG_DAX) && IS_DAX(inode))
1314                 return 0;
1315         if (!(fa->fsx_xflags & FS_XFLAG_DAX) && !IS_DAX(inode))
1316                 return 0;
1317
1318         if (S_ISDIR(inode->i_mode))
1319                 return 0;
1320
1321         /* lock, flush and invalidate mapping in preparation for flag change */
1322         xfs_ilock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1323         error = filemap_write_and_wait(inode->i_mapping);
1324         if (error)
1325                 goto out_unlock;
1326         error = invalidate_inode_pages2(inode->i_mapping);
1327         if (error)
1328                 goto out_unlock;
1329
1330         *join_flags = XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL;
1331         return 0;
1332
1333 out_unlock:
1334         xfs_iunlock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
1335         return error;
1336
1337 }
1338
1339 /*
1340  * Set up the transaction structure for the setattr operation, checking that we
1341  * have permission to do so. On success, return a clean transaction and the
1342  * inode locked exclusively ready for further operation specific checks. On
1343  * failure, return an error without modifying or locking the inode.
1344  *
1345  * The inode might already be IO locked on call. If this is the case, it is
1346  * indicated in @join_flags and we take full responsibility for ensuring they
1347  * are unlocked from now on. Hence if we have an error here, we still have to
1348  * unlock them. Otherwise, once they are joined to the transaction, they will
1349  * be unlocked on commit/cancel.
1350  */
1351 static struct xfs_trans *
1352 xfs_ioctl_setattr_get_trans(
1353         struct xfs_inode        *ip,
1354         int                     join_flags)
1355 {
1356         struct xfs_mount        *mp = ip->i_mount;
1357         struct xfs_trans        *tp;
1358         int                     error = -EROFS;
1359
1360         if (mp->m_flags & XFS_MOUNT_RDONLY)
1361                 goto out_unlock;
1362         error = -EIO;
1363         if (XFS_FORCED_SHUTDOWN(mp))
1364                 goto out_unlock;
1365
1366         error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
1367         if (error)
1368                 goto out_unlock;
1369
1370         xfs_ilock(ip, XFS_ILOCK_EXCL);
1371         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | join_flags);
1372         join_flags = 0;
1373
1374         /*
1375          * CAP_FOWNER overrides the following restrictions:
1376          *
1377          * The user ID of the calling process must be equal to the file owner
1378          * ID, except in cases where the CAP_FSETID capability is applicable.
1379          */
1380         if (!inode_owner_or_capable(VFS_I(ip))) {
1381                 error = -EPERM;
1382                 goto out_cancel;
1383         }
1384
1385         if (mp->m_flags & XFS_MOUNT_WSYNC)
1386                 xfs_trans_set_sync(tp);
1387
1388         return tp;
1389
1390 out_cancel:
1391         xfs_trans_cancel(tp);
1392 out_unlock:
1393         if (join_flags)
1394                 xfs_iunlock(ip, join_flags);
1395         return ERR_PTR(error);
1396 }
1397
1398 /*
1399  * extent size hint validation is somewhat cumbersome. Rules are:
1400  *
1401  * 1. extent size hint is only valid for directories and regular files
1402  * 2. FS_XFLAG_EXTSIZE is only valid for regular files
1403  * 3. FS_XFLAG_EXTSZINHERIT is only valid for directories.
1404  * 4. can only be changed on regular files if no extents are allocated
1405  * 5. can be changed on directories at any time
1406  * 6. extsize hint of 0 turns off hints, clears inode flags.
1407  * 7. Extent size must be a multiple of the appropriate block size.
1408  * 8. for non-realtime files, the extent size hint must be limited
1409  *    to half the AG size to avoid alignment extending the extent beyond the
1410  *    limits of the AG.
1411  *
1412  * Please keep this function in sync with xfs_scrub_inode_extsize.
1413  */
1414 static int
1415 xfs_ioctl_setattr_check_extsize(
1416         struct xfs_inode        *ip,
1417         struct fsxattr          *fa)
1418 {
1419         struct xfs_mount        *mp = ip->i_mount;
1420         xfs_extlen_t            size;
1421         xfs_fsblock_t           extsize_fsb;
1422
1423         if (S_ISREG(VFS_I(ip)->i_mode) && ip->i_d.di_nextents &&
1424             ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) != fa->fsx_extsize))
1425                 return -EINVAL;
1426
1427         if (fa->fsx_extsize == 0)
1428                 return 0;
1429
1430         extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1431         if (extsize_fsb > MAXEXTLEN)
1432                 return -EINVAL;
1433
1434         if (XFS_IS_REALTIME_INODE(ip) ||
1435             (fa->fsx_xflags & FS_XFLAG_REALTIME)) {
1436                 size = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog;
1437         } else {
1438                 size = mp->m_sb.sb_blocksize;
1439                 if (extsize_fsb > mp->m_sb.sb_agblocks / 2)
1440                         return -EINVAL;
1441         }
1442
1443         if (fa->fsx_extsize % size)
1444                 return -EINVAL;
1445
1446         return 0;
1447 }
1448
1449 /*
1450  * CoW extent size hint validation rules are:
1451  *
1452  * 1. CoW extent size hint can only be set if reflink is enabled on the fs.
1453  *    The inode does not have to have any shared blocks, but it must be a v3.
1454  * 2. FS_XFLAG_COWEXTSIZE is only valid for directories and regular files;
1455  *    for a directory, the hint is propagated to new files.
1456  * 3. Can be changed on files & directories at any time.
1457  * 4. CoW extsize hint of 0 turns off hints, clears inode flags.
1458  * 5. Extent size must be a multiple of the appropriate block size.
1459  * 6. The extent size hint must be limited to half the AG size to avoid
1460  *    alignment extending the extent beyond the limits of the AG.
1461  *
1462  * Please keep this function in sync with xfs_scrub_inode_cowextsize.
1463  */
1464 static int
1465 xfs_ioctl_setattr_check_cowextsize(
1466         struct xfs_inode        *ip,
1467         struct fsxattr          *fa)
1468 {
1469         struct xfs_mount        *mp = ip->i_mount;
1470         xfs_extlen_t            size;
1471         xfs_fsblock_t           cowextsize_fsb;
1472
1473         if (!(fa->fsx_xflags & FS_XFLAG_COWEXTSIZE))
1474                 return 0;
1475
1476         if (!xfs_sb_version_hasreflink(&ip->i_mount->m_sb) ||
1477             ip->i_d.di_version != 3)
1478                 return -EINVAL;
1479
1480         if (fa->fsx_cowextsize == 0)
1481                 return 0;
1482
1483         cowextsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_cowextsize);
1484         if (cowextsize_fsb > MAXEXTLEN)
1485                 return -EINVAL;
1486
1487         size = mp->m_sb.sb_blocksize;
1488         if (cowextsize_fsb > mp->m_sb.sb_agblocks / 2)
1489                 return -EINVAL;
1490
1491         if (fa->fsx_cowextsize % size)
1492                 return -EINVAL;
1493
1494         return 0;
1495 }
1496
1497 static int
1498 xfs_ioctl_setattr_check_projid(
1499         struct xfs_inode        *ip,
1500         struct fsxattr          *fa)
1501 {
1502         /* Disallow 32bit project ids if projid32bit feature is not enabled. */
1503         if (fa->fsx_projid > (uint16_t)-1 &&
1504             !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
1505                 return -EINVAL;
1506         return 0;
1507 }
1508
1509 STATIC int
1510 xfs_ioctl_setattr(
1511         xfs_inode_t             *ip,
1512         struct fsxattr          *fa)
1513 {
1514         struct fsxattr          old_fa;
1515         struct xfs_mount        *mp = ip->i_mount;
1516         struct xfs_trans        *tp;
1517         struct xfs_dquot        *udqp = NULL;
1518         struct xfs_dquot        *pdqp = NULL;
1519         struct xfs_dquot        *olddquot = NULL;
1520         int                     code;
1521         int                     join_flags = 0;
1522
1523         trace_xfs_ioctl_setattr(ip);
1524
1525         code = xfs_ioctl_setattr_check_projid(ip, fa);
1526         if (code)
1527                 return code;
1528
1529         /*
1530          * If disk quotas is on, we make sure that the dquots do exist on disk,
1531          * before we start any other transactions. Trying to do this later
1532          * is messy. We don't care to take a readlock to look at the ids
1533          * in inode here, because we can't hold it across the trans_reserve.
1534          * If the IDs do change before we take the ilock, we're covered
1535          * because the i_*dquot fields will get updated anyway.
1536          */
1537         if (XFS_IS_QUOTA_ON(mp)) {
1538                 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
1539                                          ip->i_d.di_gid, fa->fsx_projid,
1540                                          XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
1541                 if (code)
1542                         return code;
1543         }
1544
1545         /*
1546          * Changing DAX config may require inode locking for mapping
1547          * invalidation. These need to be held all the way to transaction commit
1548          * or cancel time, so need to be passed through to
1549          * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1550          * appropriately.
1551          */
1552         code = xfs_ioctl_setattr_dax_invalidate(ip, fa, &join_flags);
1553         if (code)
1554                 goto error_free_dquots;
1555
1556         tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
1557         if (IS_ERR(tp)) {
1558                 code = PTR_ERR(tp);
1559                 goto error_free_dquots;
1560         }
1561
1562         if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp) &&
1563             xfs_get_projid(ip) != fa->fsx_projid) {
1564                 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL, pdqp,
1565                                 capable(CAP_FOWNER) ?  XFS_QMOPT_FORCE_RES : 0);
1566                 if (code)       /* out of quota */
1567                         goto error_trans_cancel;
1568         }
1569
1570         xfs_fill_fsxattr(ip, false, &old_fa);
1571         code = vfs_ioc_fssetxattr_check(VFS_I(ip), &old_fa, fa);
1572         if (code)
1573                 goto error_trans_cancel;
1574
1575         code = xfs_ioctl_setattr_check_extsize(ip, fa);
1576         if (code)
1577                 goto error_trans_cancel;
1578
1579         code = xfs_ioctl_setattr_check_cowextsize(ip, fa);
1580         if (code)
1581                 goto error_trans_cancel;
1582
1583         code = xfs_ioctl_setattr_xflags(tp, ip, fa);
1584         if (code)
1585                 goto error_trans_cancel;
1586
1587         /*
1588          * Change file ownership.  Must be the owner or privileged.  CAP_FSETID
1589          * overrides the following restrictions:
1590          *
1591          * The set-user-ID and set-group-ID bits of a file will be cleared upon
1592          * successful return from chown()
1593          */
1594
1595         if ((VFS_I(ip)->i_mode & (S_ISUID|S_ISGID)) &&
1596             !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
1597                 VFS_I(ip)->i_mode &= ~(S_ISUID|S_ISGID);
1598
1599         /* Change the ownerships and register project quota modifications */
1600         if (xfs_get_projid(ip) != fa->fsx_projid) {
1601                 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1602                         olddquot = xfs_qm_vop_chown(tp, ip,
1603                                                 &ip->i_pdquot, pdqp);
1604                 }
1605                 ASSERT(ip->i_d.di_version > 1);
1606                 xfs_set_projid(ip, fa->fsx_projid);
1607         }
1608
1609         /*
1610          * Only set the extent size hint if we've already determined that the
1611          * extent size hint should be set on the inode. If no extent size flags
1612          * are set on the inode then unconditionally clear the extent size hint.
1613          */
1614         if (ip->i_d.di_flags & (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
1615                 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
1616         else
1617                 ip->i_d.di_extsize = 0;
1618         if (ip->i_d.di_version == 3 &&
1619             (ip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE))
1620                 ip->i_d.di_cowextsize = fa->fsx_cowextsize >>
1621                                 mp->m_sb.sb_blocklog;
1622         else
1623                 ip->i_d.di_cowextsize = 0;
1624
1625         code = xfs_trans_commit(tp);
1626
1627         /*
1628          * Release any dquot(s) the inode had kept before chown.
1629          */
1630         xfs_qm_dqrele(olddquot);
1631         xfs_qm_dqrele(udqp);
1632         xfs_qm_dqrele(pdqp);
1633
1634         return code;
1635
1636 error_trans_cancel:
1637         xfs_trans_cancel(tp);
1638 error_free_dquots:
1639         xfs_qm_dqrele(udqp);
1640         xfs_qm_dqrele(pdqp);
1641         return code;
1642 }
1643
1644 STATIC int
1645 xfs_ioc_fssetxattr(
1646         xfs_inode_t             *ip,
1647         struct file             *filp,
1648         void                    __user *arg)
1649 {
1650         struct fsxattr          fa;
1651         int error;
1652
1653         if (copy_from_user(&fa, arg, sizeof(fa)))
1654                 return -EFAULT;
1655
1656         error = mnt_want_write_file(filp);
1657         if (error)
1658                 return error;
1659         error = xfs_ioctl_setattr(ip, &fa);
1660         mnt_drop_write_file(filp);
1661         return error;
1662 }
1663
1664 STATIC int
1665 xfs_ioc_getxflags(
1666         xfs_inode_t             *ip,
1667         void                    __user *arg)
1668 {
1669         unsigned int            flags;
1670
1671         flags = xfs_di2lxflags(ip->i_d.di_flags);
1672         if (copy_to_user(arg, &flags, sizeof(flags)))
1673                 return -EFAULT;
1674         return 0;
1675 }
1676
1677 STATIC int
1678 xfs_ioc_setxflags(
1679         struct xfs_inode        *ip,
1680         struct file             *filp,
1681         void                    __user *arg)
1682 {
1683         struct xfs_trans        *tp;
1684         struct fsxattr          fa;
1685         struct fsxattr          old_fa;
1686         unsigned int            flags;
1687         int                     join_flags = 0;
1688         int                     error;
1689
1690         if (copy_from_user(&flags, arg, sizeof(flags)))
1691                 return -EFAULT;
1692
1693         if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1694                       FS_NOATIME_FL | FS_NODUMP_FL | \
1695                       FS_SYNC_FL))
1696                 return -EOPNOTSUPP;
1697
1698         fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
1699
1700         error = mnt_want_write_file(filp);
1701         if (error)
1702                 return error;
1703
1704         /*
1705          * Changing DAX config may require inode locking for mapping
1706          * invalidation. These need to be held all the way to transaction commit
1707          * or cancel time, so need to be passed through to
1708          * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
1709          * appropriately.
1710          */
1711         error = xfs_ioctl_setattr_dax_invalidate(ip, &fa, &join_flags);
1712         if (error)
1713                 goto out_drop_write;
1714
1715         tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
1716         if (IS_ERR(tp)) {
1717                 error = PTR_ERR(tp);
1718                 goto out_drop_write;
1719         }
1720
1721         xfs_fill_fsxattr(ip, false, &old_fa);
1722         error = vfs_ioc_fssetxattr_check(VFS_I(ip), &old_fa, &fa);
1723         if (error) {
1724                 xfs_trans_cancel(tp);
1725                 goto out_drop_write;
1726         }
1727
1728         error = xfs_ioctl_setattr_xflags(tp, ip, &fa);
1729         if (error) {
1730                 xfs_trans_cancel(tp);
1731                 goto out_drop_write;
1732         }
1733
1734         error = xfs_trans_commit(tp);
1735 out_drop_write:
1736         mnt_drop_write_file(filp);
1737         return error;
1738 }
1739
1740 static bool
1741 xfs_getbmap_format(
1742         struct kgetbmap         *p,
1743         struct getbmapx __user  *u,
1744         size_t                  recsize)
1745 {
1746         if (put_user(p->bmv_offset, &u->bmv_offset) ||
1747             put_user(p->bmv_block, &u->bmv_block) ||
1748             put_user(p->bmv_length, &u->bmv_length) ||
1749             put_user(0, &u->bmv_count) ||
1750             put_user(0, &u->bmv_entries))
1751                 return false;
1752         if (recsize < sizeof(struct getbmapx))
1753                 return true;
1754         if (put_user(0, &u->bmv_iflags) ||
1755             put_user(p->bmv_oflags, &u->bmv_oflags) ||
1756             put_user(0, &u->bmv_unused1) ||
1757             put_user(0, &u->bmv_unused2))
1758                 return false;
1759         return true;
1760 }
1761
1762 STATIC int
1763 xfs_ioc_getbmap(
1764         struct file             *file,
1765         unsigned int            cmd,
1766         void                    __user *arg)
1767 {
1768         struct getbmapx         bmx = { 0 };
1769         struct kgetbmap         *buf;
1770         size_t                  recsize;
1771         int                     error, i;
1772
1773         switch (cmd) {
1774         case XFS_IOC_GETBMAPA:
1775                 bmx.bmv_iflags = BMV_IF_ATTRFORK;
1776                 /*FALLTHRU*/
1777         case XFS_IOC_GETBMAP:
1778                 if (file->f_mode & FMODE_NOCMTIME)
1779                         bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
1780                 /* struct getbmap is a strict subset of struct getbmapx. */
1781                 recsize = sizeof(struct getbmap);
1782                 break;
1783         case XFS_IOC_GETBMAPX:
1784                 recsize = sizeof(struct getbmapx);
1785                 break;
1786         default:
1787                 return -EINVAL;
1788         }
1789
1790         if (copy_from_user(&bmx, arg, recsize))
1791                 return -EFAULT;
1792
1793         if (bmx.bmv_count < 2)
1794                 return -EINVAL;
1795         if (bmx.bmv_count > ULONG_MAX / recsize)
1796                 return -ENOMEM;
1797
1798         buf = kmem_zalloc_large(bmx.bmv_count * sizeof(*buf), 0);
1799         if (!buf)
1800                 return -ENOMEM;
1801
1802         error = xfs_getbmap(XFS_I(file_inode(file)), &bmx, buf);
1803         if (error)
1804                 goto out_free_buf;
1805
1806         error = -EFAULT;
1807         if (copy_to_user(arg, &bmx, recsize))
1808                 goto out_free_buf;
1809         arg += recsize;
1810
1811         for (i = 0; i < bmx.bmv_entries; i++) {
1812                 if (!xfs_getbmap_format(buf + i, arg, recsize))
1813                         goto out_free_buf;
1814                 arg += recsize;
1815         }
1816
1817         error = 0;
1818 out_free_buf:
1819         kmem_free(buf);
1820         return error;
1821 }
1822
1823 struct getfsmap_info {
1824         struct xfs_mount        *mp;
1825         struct fsmap_head __user *data;
1826         unsigned int            idx;
1827         __u32                   last_flags;
1828 };
1829
1830 STATIC int
1831 xfs_getfsmap_format(struct xfs_fsmap *xfm, void *priv)
1832 {
1833         struct getfsmap_info    *info = priv;
1834         struct fsmap            fm;
1835
1836         trace_xfs_getfsmap_mapping(info->mp, xfm);
1837
1838         info->last_flags = xfm->fmr_flags;
1839         xfs_fsmap_from_internal(&fm, xfm);
1840         if (copy_to_user(&info->data->fmh_recs[info->idx++], &fm,
1841                         sizeof(struct fsmap)))
1842                 return -EFAULT;
1843
1844         return 0;
1845 }
1846
1847 STATIC int
1848 xfs_ioc_getfsmap(
1849         struct xfs_inode        *ip,
1850         struct fsmap_head       __user *arg)
1851 {
1852         struct getfsmap_info    info = { NULL };
1853         struct xfs_fsmap_head   xhead = {0};
1854         struct fsmap_head       head;
1855         bool                    aborted = false;
1856         int                     error;
1857
1858         if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
1859                 return -EFAULT;
1860         if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
1861             memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
1862                        sizeof(head.fmh_keys[0].fmr_reserved)) ||
1863             memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
1864                        sizeof(head.fmh_keys[1].fmr_reserved)))
1865                 return -EINVAL;
1866
1867         xhead.fmh_iflags = head.fmh_iflags;
1868         xhead.fmh_count = head.fmh_count;
1869         xfs_fsmap_to_internal(&xhead.fmh_keys[0], &head.fmh_keys[0]);
1870         xfs_fsmap_to_internal(&xhead.fmh_keys[1], &head.fmh_keys[1]);
1871
1872         trace_xfs_getfsmap_low_key(ip->i_mount, &xhead.fmh_keys[0]);
1873         trace_xfs_getfsmap_high_key(ip->i_mount, &xhead.fmh_keys[1]);
1874
1875         info.mp = ip->i_mount;
1876         info.data = arg;
1877         error = xfs_getfsmap(ip->i_mount, &xhead, xfs_getfsmap_format, &info);
1878         if (error == -ECANCELED) {
1879                 error = 0;
1880                 aborted = true;
1881         } else if (error)
1882                 return error;
1883
1884         /* If we didn't abort, set the "last" flag in the last fmx */
1885         if (!aborted && info.idx) {
1886                 info.last_flags |= FMR_OF_LAST;
1887                 if (copy_to_user(&info.data->fmh_recs[info.idx - 1].fmr_flags,
1888                                 &info.last_flags, sizeof(info.last_flags)))
1889                         return -EFAULT;
1890         }
1891
1892         /* copy back header */
1893         head.fmh_entries = xhead.fmh_entries;
1894         head.fmh_oflags = xhead.fmh_oflags;
1895         if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
1896                 return -EFAULT;
1897
1898         return 0;
1899 }
1900
1901 STATIC int
1902 xfs_ioc_scrub_metadata(
1903         struct xfs_inode                *ip,
1904         void                            __user *arg)
1905 {
1906         struct xfs_scrub_metadata       scrub;
1907         int                             error;
1908
1909         if (!capable(CAP_SYS_ADMIN))
1910                 return -EPERM;
1911
1912         if (copy_from_user(&scrub, arg, sizeof(scrub)))
1913                 return -EFAULT;
1914
1915         error = xfs_scrub_metadata(ip, &scrub);
1916         if (error)
1917                 return error;
1918
1919         if (copy_to_user(arg, &scrub, sizeof(scrub)))
1920                 return -EFAULT;
1921
1922         return 0;
1923 }
1924
1925 int
1926 xfs_ioc_swapext(
1927         xfs_swapext_t   *sxp)
1928 {
1929         xfs_inode_t     *ip, *tip;
1930         struct fd       f, tmp;
1931         int             error = 0;
1932
1933         /* Pull information for the target fd */
1934         f = fdget((int)sxp->sx_fdtarget);
1935         if (!f.file) {
1936                 error = -EINVAL;
1937                 goto out;
1938         }
1939
1940         if (!(f.file->f_mode & FMODE_WRITE) ||
1941             !(f.file->f_mode & FMODE_READ) ||
1942             (f.file->f_flags & O_APPEND)) {
1943                 error = -EBADF;
1944                 goto out_put_file;
1945         }
1946
1947         tmp = fdget((int)sxp->sx_fdtmp);
1948         if (!tmp.file) {
1949                 error = -EINVAL;
1950                 goto out_put_file;
1951         }
1952
1953         if (!(tmp.file->f_mode & FMODE_WRITE) ||
1954             !(tmp.file->f_mode & FMODE_READ) ||
1955             (tmp.file->f_flags & O_APPEND)) {
1956                 error = -EBADF;
1957                 goto out_put_tmp_file;
1958         }
1959
1960         if (IS_SWAPFILE(file_inode(f.file)) ||
1961             IS_SWAPFILE(file_inode(tmp.file))) {
1962                 error = -EINVAL;
1963                 goto out_put_tmp_file;
1964         }
1965
1966         /*
1967          * We need to ensure that the fds passed in point to XFS inodes
1968          * before we cast and access them as XFS structures as we have no
1969          * control over what the user passes us here.
1970          */
1971         if (f.file->f_op != &xfs_file_operations ||
1972             tmp.file->f_op != &xfs_file_operations) {
1973                 error = -EINVAL;
1974                 goto out_put_tmp_file;
1975         }
1976
1977         ip = XFS_I(file_inode(f.file));
1978         tip = XFS_I(file_inode(tmp.file));
1979
1980         if (ip->i_mount != tip->i_mount) {
1981                 error = -EINVAL;
1982                 goto out_put_tmp_file;
1983         }
1984
1985         if (ip->i_ino == tip->i_ino) {
1986                 error = -EINVAL;
1987                 goto out_put_tmp_file;
1988         }
1989
1990         if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
1991                 error = -EIO;
1992                 goto out_put_tmp_file;
1993         }
1994
1995         error = xfs_swap_extents(ip, tip, sxp);
1996
1997  out_put_tmp_file:
1998         fdput(tmp);
1999  out_put_file:
2000         fdput(f);
2001  out:
2002         return error;
2003 }
2004
2005 static int
2006 xfs_ioc_getlabel(
2007         struct xfs_mount        *mp,
2008         char                    __user *user_label)
2009 {
2010         struct xfs_sb           *sbp = &mp->m_sb;
2011         char                    label[XFSLABEL_MAX + 1];
2012
2013         /* Paranoia */
2014         BUILD_BUG_ON(sizeof(sbp->sb_fname) > FSLABEL_MAX);
2015
2016         /* 1 larger than sb_fname, so this ensures a trailing NUL char */
2017         memset(label, 0, sizeof(label));
2018         spin_lock(&mp->m_sb_lock);
2019         strncpy(label, sbp->sb_fname, XFSLABEL_MAX);
2020         spin_unlock(&mp->m_sb_lock);
2021
2022         if (copy_to_user(user_label, label, sizeof(label)))
2023                 return -EFAULT;
2024         return 0;
2025 }
2026
2027 static int
2028 xfs_ioc_setlabel(
2029         struct file             *filp,
2030         struct xfs_mount        *mp,
2031         char                    __user *newlabel)
2032 {
2033         struct xfs_sb           *sbp = &mp->m_sb;
2034         char                    label[XFSLABEL_MAX + 1];
2035         size_t                  len;
2036         int                     error;
2037
2038         if (!capable(CAP_SYS_ADMIN))
2039                 return -EPERM;
2040         /*
2041          * The generic ioctl allows up to FSLABEL_MAX chars, but XFS is much
2042          * smaller, at 12 bytes.  We copy one more to be sure we find the
2043          * (required) NULL character to test the incoming label length.
2044          * NB: The on disk label doesn't need to be null terminated.
2045          */
2046         if (copy_from_user(label, newlabel, XFSLABEL_MAX + 1))
2047                 return -EFAULT;
2048         len = strnlen(label, XFSLABEL_MAX + 1);
2049         if (len > sizeof(sbp->sb_fname))
2050                 return -EINVAL;
2051
2052         error = mnt_want_write_file(filp);
2053         if (error)
2054                 return error;
2055
2056         spin_lock(&mp->m_sb_lock);
2057         memset(sbp->sb_fname, 0, sizeof(sbp->sb_fname));
2058         memcpy(sbp->sb_fname, label, len);
2059         spin_unlock(&mp->m_sb_lock);
2060
2061         /*
2062          * Now we do several things to satisfy userspace.
2063          * In addition to normal logging of the primary superblock, we also
2064          * immediately write these changes to sector zero for the primary, then
2065          * update all backup supers (as xfs_db does for a label change), then
2066          * invalidate the block device page cache.  This is so that any prior
2067          * buffered reads from userspace (i.e. from blkid) are invalidated,
2068          * and userspace will see the newly-written label.
2069          */
2070         error = xfs_sync_sb_buf(mp);
2071         if (error)
2072                 goto out;
2073         /*
2074          * growfs also updates backup supers so lock against that.
2075          */
2076         mutex_lock(&mp->m_growlock);
2077         error = xfs_update_secondary_sbs(mp);
2078         mutex_unlock(&mp->m_growlock);
2079
2080         invalidate_bdev(mp->m_ddev_targp->bt_bdev);
2081
2082 out:
2083         mnt_drop_write_file(filp);
2084         return error;
2085 }
2086
2087 /*
2088  * Note: some of the ioctl's return positive numbers as a
2089  * byte count indicating success, such as readlink_by_handle.
2090  * So we don't "sign flip" like most other routines.  This means
2091  * true errors need to be returned as a negative value.
2092  */
2093 long
2094 xfs_file_ioctl(
2095         struct file             *filp,
2096         unsigned int            cmd,
2097         unsigned long           p)
2098 {
2099         struct inode            *inode = file_inode(filp);
2100         struct xfs_inode        *ip = XFS_I(inode);
2101         struct xfs_mount        *mp = ip->i_mount;
2102         void                    __user *arg = (void __user *)p;
2103         int                     error;
2104
2105         trace_xfs_file_ioctl(ip);
2106
2107         switch (cmd) {
2108         case FITRIM:
2109                 return xfs_ioc_trim(mp, arg);
2110         case FS_IOC_GETFSLABEL:
2111                 return xfs_ioc_getlabel(mp, arg);
2112         case FS_IOC_SETFSLABEL:
2113                 return xfs_ioc_setlabel(filp, mp, arg);
2114         case XFS_IOC_ALLOCSP:
2115         case XFS_IOC_FREESP:
2116         case XFS_IOC_UNRESVSP:
2117         case XFS_IOC_ALLOCSP64:
2118         case XFS_IOC_FREESP64:
2119         case XFS_IOC_UNRESVSP64:
2120         case XFS_IOC_ZERO_RANGE: {
2121                 xfs_flock64_t           bf;
2122
2123                 if (copy_from_user(&bf, arg, sizeof(bf)))
2124                         return -EFAULT;
2125                 return xfs_ioc_space(filp, cmd, &bf);
2126         }
2127         case XFS_IOC_DIOINFO: {
2128                 struct xfs_buftarg      *target = xfs_inode_buftarg(ip);
2129                 struct dioattr          da;
2130
2131                 da.d_mem =  da.d_miniosz = target->bt_logical_sectorsize;
2132                 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
2133
2134                 if (copy_to_user(arg, &da, sizeof(da)))
2135                         return -EFAULT;
2136                 return 0;
2137         }
2138
2139         case XFS_IOC_FSBULKSTAT_SINGLE:
2140         case XFS_IOC_FSBULKSTAT:
2141         case XFS_IOC_FSINUMBERS:
2142                 return xfs_ioc_fsbulkstat(mp, cmd, arg);
2143
2144         case XFS_IOC_BULKSTAT:
2145                 return xfs_ioc_bulkstat(mp, cmd, arg);
2146         case XFS_IOC_INUMBERS:
2147                 return xfs_ioc_inumbers(mp, cmd, arg);
2148
2149         case XFS_IOC_FSGEOMETRY_V1:
2150                 return xfs_ioc_fsgeometry(mp, arg, 3);
2151         case XFS_IOC_FSGEOMETRY_V4:
2152                 return xfs_ioc_fsgeometry(mp, arg, 4);
2153         case XFS_IOC_FSGEOMETRY:
2154                 return xfs_ioc_fsgeometry(mp, arg, 5);
2155
2156         case XFS_IOC_AG_GEOMETRY:
2157                 return xfs_ioc_ag_geometry(mp, arg);
2158
2159         case XFS_IOC_GETVERSION:
2160                 return put_user(inode->i_generation, (int __user *)arg);
2161
2162         case XFS_IOC_FSGETXATTR:
2163                 return xfs_ioc_fsgetxattr(ip, 0, arg);
2164         case XFS_IOC_FSGETXATTRA:
2165                 return xfs_ioc_fsgetxattr(ip, 1, arg);
2166         case XFS_IOC_FSSETXATTR:
2167                 return xfs_ioc_fssetxattr(ip, filp, arg);
2168         case XFS_IOC_GETXFLAGS:
2169                 return xfs_ioc_getxflags(ip, arg);
2170         case XFS_IOC_SETXFLAGS:
2171                 return xfs_ioc_setxflags(ip, filp, arg);
2172
2173         case XFS_IOC_FSSETDM: {
2174                 struct fsdmidata        dmi;
2175
2176                 if (copy_from_user(&dmi, arg, sizeof(dmi)))
2177                         return -EFAULT;
2178
2179                 error = mnt_want_write_file(filp);
2180                 if (error)
2181                         return error;
2182
2183                 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
2184                                 dmi.fsd_dmstate);
2185                 mnt_drop_write_file(filp);
2186                 return error;
2187         }
2188
2189         case XFS_IOC_GETBMAP:
2190         case XFS_IOC_GETBMAPA:
2191         case XFS_IOC_GETBMAPX:
2192                 return xfs_ioc_getbmap(filp, cmd, arg);
2193
2194         case FS_IOC_GETFSMAP:
2195                 return xfs_ioc_getfsmap(ip, arg);
2196
2197         case XFS_IOC_SCRUB_METADATA:
2198                 return xfs_ioc_scrub_metadata(ip, arg);
2199
2200         case XFS_IOC_FD_TO_HANDLE:
2201         case XFS_IOC_PATH_TO_HANDLE:
2202         case XFS_IOC_PATH_TO_FSHANDLE: {
2203                 xfs_fsop_handlereq_t    hreq;
2204
2205                 if (copy_from_user(&hreq, arg, sizeof(hreq)))
2206                         return -EFAULT;
2207                 return xfs_find_handle(cmd, &hreq);
2208         }
2209         case XFS_IOC_OPEN_BY_HANDLE: {
2210                 xfs_fsop_handlereq_t    hreq;
2211
2212                 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
2213                         return -EFAULT;
2214                 return xfs_open_by_handle(filp, &hreq);
2215         }
2216         case XFS_IOC_FSSETDM_BY_HANDLE:
2217                 return xfs_fssetdm_by_handle(filp, arg);
2218
2219         case XFS_IOC_READLINK_BY_HANDLE: {
2220                 xfs_fsop_handlereq_t    hreq;
2221
2222                 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
2223                         return -EFAULT;
2224                 return xfs_readlink_by_handle(filp, &hreq);
2225         }
2226         case XFS_IOC_ATTRLIST_BY_HANDLE:
2227                 return xfs_attrlist_by_handle(filp, arg);
2228
2229         case XFS_IOC_ATTRMULTI_BY_HANDLE:
2230                 return xfs_attrmulti_by_handle(filp, arg);
2231
2232         case XFS_IOC_SWAPEXT: {
2233                 struct xfs_swapext      sxp;
2234
2235                 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
2236                         return -EFAULT;
2237                 error = mnt_want_write_file(filp);
2238                 if (error)
2239                         return error;
2240                 error = xfs_ioc_swapext(&sxp);
2241                 mnt_drop_write_file(filp);
2242                 return error;
2243         }
2244
2245         case XFS_IOC_FSCOUNTS: {
2246                 xfs_fsop_counts_t out;
2247
2248                 xfs_fs_counts(mp, &out);
2249
2250                 if (copy_to_user(arg, &out, sizeof(out)))
2251                         return -EFAULT;
2252                 return 0;
2253         }
2254
2255         case XFS_IOC_SET_RESBLKS: {
2256                 xfs_fsop_resblks_t inout;
2257                 uint64_t           in;
2258
2259                 if (!capable(CAP_SYS_ADMIN))
2260                         return -EPERM;
2261
2262                 if (mp->m_flags & XFS_MOUNT_RDONLY)
2263                         return -EROFS;
2264
2265                 if (copy_from_user(&inout, arg, sizeof(inout)))
2266                         return -EFAULT;
2267
2268                 error = mnt_want_write_file(filp);
2269                 if (error)
2270                         return error;
2271
2272                 /* input parameter is passed in resblks field of structure */
2273                 in = inout.resblks;
2274                 error = xfs_reserve_blocks(mp, &in, &inout);
2275                 mnt_drop_write_file(filp);
2276                 if (error)
2277                         return error;
2278
2279                 if (copy_to_user(arg, &inout, sizeof(inout)))
2280                         return -EFAULT;
2281                 return 0;
2282         }
2283
2284         case XFS_IOC_GET_RESBLKS: {
2285                 xfs_fsop_resblks_t out;
2286
2287                 if (!capable(CAP_SYS_ADMIN))
2288                         return -EPERM;
2289
2290                 error = xfs_reserve_blocks(mp, NULL, &out);
2291                 if (error)
2292                         return error;
2293
2294                 if (copy_to_user(arg, &out, sizeof(out)))
2295                         return -EFAULT;
2296
2297                 return 0;
2298         }
2299
2300         case XFS_IOC_FSGROWFSDATA: {
2301                 xfs_growfs_data_t in;
2302
2303                 if (copy_from_user(&in, arg, sizeof(in)))
2304                         return -EFAULT;
2305
2306                 error = mnt_want_write_file(filp);
2307                 if (error)
2308                         return error;
2309                 error = xfs_growfs_data(mp, &in);
2310                 mnt_drop_write_file(filp);
2311                 return error;
2312         }
2313
2314         case XFS_IOC_FSGROWFSLOG: {
2315                 xfs_growfs_log_t in;
2316
2317                 if (copy_from_user(&in, arg, sizeof(in)))
2318                         return -EFAULT;
2319
2320                 error = mnt_want_write_file(filp);
2321                 if (error)
2322                         return error;
2323                 error = xfs_growfs_log(mp, &in);
2324                 mnt_drop_write_file(filp);
2325                 return error;
2326         }
2327
2328         case XFS_IOC_FSGROWFSRT: {
2329                 xfs_growfs_rt_t in;
2330
2331                 if (copy_from_user(&in, arg, sizeof(in)))
2332                         return -EFAULT;
2333
2334                 error = mnt_want_write_file(filp);
2335                 if (error)
2336                         return error;
2337                 error = xfs_growfs_rt(mp, &in);
2338                 mnt_drop_write_file(filp);
2339                 return error;
2340         }
2341
2342         case XFS_IOC_GOINGDOWN: {
2343                 uint32_t in;
2344
2345                 if (!capable(CAP_SYS_ADMIN))
2346                         return -EPERM;
2347
2348                 if (get_user(in, (uint32_t __user *)arg))
2349                         return -EFAULT;
2350
2351                 return xfs_fs_goingdown(mp, in);
2352         }
2353
2354         case XFS_IOC_ERROR_INJECTION: {
2355                 xfs_error_injection_t in;
2356
2357                 if (!capable(CAP_SYS_ADMIN))
2358                         return -EPERM;
2359
2360                 if (copy_from_user(&in, arg, sizeof(in)))
2361                         return -EFAULT;
2362
2363                 return xfs_errortag_add(mp, in.errtag);
2364         }
2365
2366         case XFS_IOC_ERROR_CLEARALL:
2367                 if (!capable(CAP_SYS_ADMIN))
2368                         return -EPERM;
2369
2370                 return xfs_errortag_clearall(mp);
2371
2372         case XFS_IOC_FREE_EOFBLOCKS: {
2373                 struct xfs_fs_eofblocks eofb;
2374                 struct xfs_eofblocks keofb;
2375
2376                 if (!capable(CAP_SYS_ADMIN))
2377                         return -EPERM;
2378
2379                 if (mp->m_flags & XFS_MOUNT_RDONLY)
2380                         return -EROFS;
2381
2382                 if (copy_from_user(&eofb, arg, sizeof(eofb)))
2383                         return -EFAULT;
2384
2385                 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
2386                 if (error)
2387                         return error;
2388
2389                 return xfs_icache_free_eofblocks(mp, &keofb);
2390         }
2391
2392         default:
2393                 return -ENOTTY;
2394         }
2395 }