GNU Linux-libre 4.4.284-gnu1
[releases.git] / fs / xfs / xfs_ioctl.c
1 /*
2  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_shared.h"
21 #include "xfs_format.h"
22 #include "xfs_log_format.h"
23 #include "xfs_trans_resv.h"
24 #include "xfs_mount.h"
25 #include "xfs_inode.h"
26 #include "xfs_ioctl.h"
27 #include "xfs_alloc.h"
28 #include "xfs_rtalloc.h"
29 #include "xfs_itable.h"
30 #include "xfs_error.h"
31 #include "xfs_attr.h"
32 #include "xfs_bmap.h"
33 #include "xfs_bmap_util.h"
34 #include "xfs_fsops.h"
35 #include "xfs_discard.h"
36 #include "xfs_quota.h"
37 #include "xfs_export.h"
38 #include "xfs_trace.h"
39 #include "xfs_icache.h"
40 #include "xfs_symlink.h"
41 #include "xfs_trans.h"
42 #include "xfs_pnfs.h"
43 #include "xfs_acl.h"
44
45 #include <linux/capability.h>
46 #include <linux/dcache.h>
47 #include <linux/mount.h>
48 #include <linux/namei.h>
49 #include <linux/pagemap.h>
50 #include <linux/slab.h>
51 #include <linux/exportfs.h>
52
53 /*
54  * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
55  * a file or fs handle.
56  *
57  * XFS_IOC_PATH_TO_FSHANDLE
58  *    returns fs handle for a mount point or path within that mount point
59  * XFS_IOC_FD_TO_HANDLE
60  *    returns full handle for a FD opened in user space
61  * XFS_IOC_PATH_TO_HANDLE
62  *    returns full handle for a path
63  */
64 int
65 xfs_find_handle(
66         unsigned int            cmd,
67         xfs_fsop_handlereq_t    *hreq)
68 {
69         int                     hsize;
70         xfs_handle_t            handle;
71         struct inode            *inode;
72         struct fd               f = {NULL};
73         struct path             path;
74         int                     error;
75         struct xfs_inode        *ip;
76
77         if (cmd == XFS_IOC_FD_TO_HANDLE) {
78                 f = fdget(hreq->fd);
79                 if (!f.file)
80                         return -EBADF;
81                 inode = file_inode(f.file);
82         } else {
83                 error = user_lpath((const char __user *)hreq->path, &path);
84                 if (error)
85                         return error;
86                 inode = d_inode(path.dentry);
87         }
88         ip = XFS_I(inode);
89
90         /*
91          * We can only generate handles for inodes residing on a XFS filesystem,
92          * and only for regular files, directories or symbolic links.
93          */
94         error = -EINVAL;
95         if (inode->i_sb->s_magic != XFS_SB_MAGIC)
96                 goto out_put;
97
98         error = -EBADF;
99         if (!S_ISREG(inode->i_mode) &&
100             !S_ISDIR(inode->i_mode) &&
101             !S_ISLNK(inode->i_mode))
102                 goto out_put;
103
104
105         memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));
106
107         if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
108                 /*
109                  * This handle only contains an fsid, zero the rest.
110                  */
111                 memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
112                 hsize = sizeof(xfs_fsid_t);
113         } else {
114                 handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
115                                         sizeof(handle.ha_fid.fid_len);
116                 handle.ha_fid.fid_pad = 0;
117                 handle.ha_fid.fid_gen = ip->i_d.di_gen;
118                 handle.ha_fid.fid_ino = ip->i_ino;
119
120                 hsize = XFS_HSIZE(handle);
121         }
122
123         error = -EFAULT;
124         if (copy_to_user(hreq->ohandle, &handle, hsize) ||
125             copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
126                 goto out_put;
127
128         error = 0;
129
130  out_put:
131         if (cmd == XFS_IOC_FD_TO_HANDLE)
132                 fdput(f);
133         else
134                 path_put(&path);
135         return error;
136 }
137
138 /*
139  * No need to do permission checks on the various pathname components
140  * as the handle operations are privileged.
141  */
142 STATIC int
143 xfs_handle_acceptable(
144         void                    *context,
145         struct dentry           *dentry)
146 {
147         return 1;
148 }
149
150 /*
151  * Convert userspace handle data into a dentry.
152  */
153 struct dentry *
154 xfs_handle_to_dentry(
155         struct file             *parfilp,
156         void __user             *uhandle,
157         u32                     hlen)
158 {
159         xfs_handle_t            handle;
160         struct xfs_fid64        fid;
161
162         /*
163          * Only allow handle opens under a directory.
164          */
165         if (!S_ISDIR(file_inode(parfilp)->i_mode))
166                 return ERR_PTR(-ENOTDIR);
167
168         if (hlen != sizeof(xfs_handle_t))
169                 return ERR_PTR(-EINVAL);
170         if (copy_from_user(&handle, uhandle, hlen))
171                 return ERR_PTR(-EFAULT);
172         if (handle.ha_fid.fid_len !=
173             sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
174                 return ERR_PTR(-EINVAL);
175
176         memset(&fid, 0, sizeof(struct fid));
177         fid.ino = handle.ha_fid.fid_ino;
178         fid.gen = handle.ha_fid.fid_gen;
179
180         return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
181                         FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
182                         xfs_handle_acceptable, NULL);
183 }
184
185 STATIC struct dentry *
186 xfs_handlereq_to_dentry(
187         struct file             *parfilp,
188         xfs_fsop_handlereq_t    *hreq)
189 {
190         return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
191 }
192
193 int
194 xfs_open_by_handle(
195         struct file             *parfilp,
196         xfs_fsop_handlereq_t    *hreq)
197 {
198         const struct cred       *cred = current_cred();
199         int                     error;
200         int                     fd;
201         int                     permflag;
202         struct file             *filp;
203         struct inode            *inode;
204         struct dentry           *dentry;
205         fmode_t                 fmode;
206         struct path             path;
207
208         if (!capable(CAP_SYS_ADMIN))
209                 return -EPERM;
210
211         dentry = xfs_handlereq_to_dentry(parfilp, hreq);
212         if (IS_ERR(dentry))
213                 return PTR_ERR(dentry);
214         inode = d_inode(dentry);
215
216         /* Restrict xfs_open_by_handle to directories & regular files. */
217         if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
218                 error = -EPERM;
219                 goto out_dput;
220         }
221
222 #if BITS_PER_LONG != 32
223         hreq->oflags |= O_LARGEFILE;
224 #endif
225
226         permflag = hreq->oflags;
227         fmode = OPEN_FMODE(permflag);
228         if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
229             (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
230                 error = -EPERM;
231                 goto out_dput;
232         }
233
234         if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
235                 error = -EACCES;
236                 goto out_dput;
237         }
238
239         /* Can't write directories. */
240         if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
241                 error = -EISDIR;
242                 goto out_dput;
243         }
244
245         fd = get_unused_fd_flags(0);
246         if (fd < 0) {
247                 error = fd;
248                 goto out_dput;
249         }
250
251         path.mnt = parfilp->f_path.mnt;
252         path.dentry = dentry;
253         filp = dentry_open(&path, hreq->oflags, cred);
254         dput(dentry);
255         if (IS_ERR(filp)) {
256                 put_unused_fd(fd);
257                 return PTR_ERR(filp);
258         }
259
260         if (S_ISREG(inode->i_mode)) {
261                 filp->f_flags |= O_NOATIME;
262                 filp->f_mode |= FMODE_NOCMTIME;
263         }
264
265         fd_install(fd, filp);
266         return fd;
267
268  out_dput:
269         dput(dentry);
270         return error;
271 }
272
273 int
274 xfs_readlink_by_handle(
275         struct file             *parfilp,
276         xfs_fsop_handlereq_t    *hreq)
277 {
278         struct dentry           *dentry;
279         __u32                   olen;
280         void                    *link;
281         int                     error;
282
283         if (!capable(CAP_SYS_ADMIN))
284                 return -EPERM;
285
286         dentry = xfs_handlereq_to_dentry(parfilp, hreq);
287         if (IS_ERR(dentry))
288                 return PTR_ERR(dentry);
289
290         /* Restrict this handle operation to symlinks only. */
291         if (!d_is_symlink(dentry)) {
292                 error = -EINVAL;
293                 goto out_dput;
294         }
295
296         if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
297                 error = -EFAULT;
298                 goto out_dput;
299         }
300
301         link = kmalloc(MAXPATHLEN+1, GFP_KERNEL);
302         if (!link) {
303                 error = -ENOMEM;
304                 goto out_dput;
305         }
306
307         error = xfs_readlink(XFS_I(d_inode(dentry)), link);
308         if (error)
309                 goto out_kfree;
310         error = readlink_copy(hreq->ohandle, olen, link);
311         if (error)
312                 goto out_kfree;
313
314  out_kfree:
315         kfree(link);
316  out_dput:
317         dput(dentry);
318         return error;
319 }
320
321 int
322 xfs_set_dmattrs(
323         xfs_inode_t     *ip,
324         u_int           evmask,
325         u_int16_t       state)
326 {
327         xfs_mount_t     *mp = ip->i_mount;
328         xfs_trans_t     *tp;
329         int             error;
330
331         if (!capable(CAP_SYS_ADMIN))
332                 return -EPERM;
333
334         if (XFS_FORCED_SHUTDOWN(mp))
335                 return -EIO;
336
337         tp = xfs_trans_alloc(mp, XFS_TRANS_SET_DMATTRS);
338         error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
339         if (error) {
340                 xfs_trans_cancel(tp);
341                 return error;
342         }
343         xfs_ilock(ip, XFS_ILOCK_EXCL);
344         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
345
346         ip->i_d.di_dmevmask = evmask;
347         ip->i_d.di_dmstate  = state;
348
349         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
350         error = xfs_trans_commit(tp);
351
352         return error;
353 }
354
355 STATIC int
356 xfs_fssetdm_by_handle(
357         struct file             *parfilp,
358         void                    __user *arg)
359 {
360         int                     error;
361         struct fsdmidata        fsd;
362         xfs_fsop_setdm_handlereq_t dmhreq;
363         struct dentry           *dentry;
364
365         if (!capable(CAP_MKNOD))
366                 return -EPERM;
367         if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
368                 return -EFAULT;
369
370         error = mnt_want_write_file(parfilp);
371         if (error)
372                 return error;
373
374         dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
375         if (IS_ERR(dentry)) {
376                 mnt_drop_write_file(parfilp);
377                 return PTR_ERR(dentry);
378         }
379
380         if (IS_IMMUTABLE(d_inode(dentry)) || IS_APPEND(d_inode(dentry))) {
381                 error = -EPERM;
382                 goto out;
383         }
384
385         if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
386                 error = -EFAULT;
387                 goto out;
388         }
389
390         error = xfs_set_dmattrs(XFS_I(d_inode(dentry)), fsd.fsd_dmevmask,
391                                  fsd.fsd_dmstate);
392
393  out:
394         mnt_drop_write_file(parfilp);
395         dput(dentry);
396         return error;
397 }
398
399 STATIC int
400 xfs_attrlist_by_handle(
401         struct file             *parfilp,
402         void                    __user *arg)
403 {
404         int                     error = -ENOMEM;
405         attrlist_cursor_kern_t  *cursor;
406         struct xfs_fsop_attrlist_handlereq __user       *p = arg;
407         xfs_fsop_attrlist_handlereq_t al_hreq;
408         struct dentry           *dentry;
409         char                    *kbuf;
410
411         if (!capable(CAP_SYS_ADMIN))
412                 return -EPERM;
413         if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
414                 return -EFAULT;
415         if (al_hreq.buflen < sizeof(struct attrlist) ||
416             al_hreq.buflen > XFS_XATTR_LIST_MAX)
417                 return -EINVAL;
418
419         /*
420          * Reject flags, only allow namespaces.
421          */
422         if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
423                 return -EINVAL;
424
425         dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
426         if (IS_ERR(dentry))
427                 return PTR_ERR(dentry);
428
429         kbuf = kmem_zalloc_large(al_hreq.buflen, KM_SLEEP);
430         if (!kbuf)
431                 goto out_dput;
432
433         cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
434         error = xfs_attr_list(XFS_I(d_inode(dentry)), kbuf, al_hreq.buflen,
435                                         al_hreq.flags, cursor);
436         if (error)
437                 goto out_kfree;
438
439         if (copy_to_user(&p->pos, cursor, sizeof(attrlist_cursor_kern_t))) {
440                 error = -EFAULT;
441                 goto out_kfree;
442         }
443
444         if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
445                 error = -EFAULT;
446
447 out_kfree:
448         kmem_free(kbuf);
449 out_dput:
450         dput(dentry);
451         return error;
452 }
453
454 int
455 xfs_attrmulti_attr_get(
456         struct inode            *inode,
457         unsigned char           *name,
458         unsigned char           __user *ubuf,
459         __uint32_t              *len,
460         __uint32_t              flags)
461 {
462         unsigned char           *kbuf;
463         int                     error = -EFAULT;
464
465         if (*len > XFS_XATTR_SIZE_MAX)
466                 return -EINVAL;
467         kbuf = kmem_zalloc_large(*len, KM_SLEEP);
468         if (!kbuf)
469                 return -ENOMEM;
470
471         error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
472         if (error)
473                 goto out_kfree;
474
475         if (copy_to_user(ubuf, kbuf, *len))
476                 error = -EFAULT;
477
478 out_kfree:
479         kmem_free(kbuf);
480         return error;
481 }
482
483 int
484 xfs_attrmulti_attr_set(
485         struct inode            *inode,
486         unsigned char           *name,
487         const unsigned char     __user *ubuf,
488         __uint32_t              len,
489         __uint32_t              flags)
490 {
491         unsigned char           *kbuf;
492         int                     error;
493
494         if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
495                 return -EPERM;
496         if (len > XFS_XATTR_SIZE_MAX)
497                 return -EINVAL;
498
499         kbuf = memdup_user(ubuf, len);
500         if (IS_ERR(kbuf))
501                 return PTR_ERR(kbuf);
502
503         error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
504         if (!error)
505                 xfs_forget_acl(inode, name, flags);
506         kfree(kbuf);
507         return error;
508 }
509
510 int
511 xfs_attrmulti_attr_remove(
512         struct inode            *inode,
513         unsigned char           *name,
514         __uint32_t              flags)
515 {
516         int                     error;
517
518         if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
519                 return -EPERM;
520         error = xfs_attr_remove(XFS_I(inode), name, flags);
521         if (!error)
522                 xfs_forget_acl(inode, name, flags);
523         return error;
524 }
525
526 STATIC int
527 xfs_attrmulti_by_handle(
528         struct file             *parfilp,
529         void                    __user *arg)
530 {
531         int                     error;
532         xfs_attr_multiop_t      *ops;
533         xfs_fsop_attrmulti_handlereq_t am_hreq;
534         struct dentry           *dentry;
535         unsigned int            i, size;
536         unsigned char           *attr_name;
537
538         if (!capable(CAP_SYS_ADMIN))
539                 return -EPERM;
540         if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
541                 return -EFAULT;
542
543         /* overflow check */
544         if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
545                 return -E2BIG;
546
547         dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
548         if (IS_ERR(dentry))
549                 return PTR_ERR(dentry);
550
551         error = -E2BIG;
552         size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
553         if (!size || size > 16 * PAGE_SIZE)
554                 goto out_dput;
555
556         ops = memdup_user(am_hreq.ops, size);
557         if (IS_ERR(ops)) {
558                 error = PTR_ERR(ops);
559                 goto out_dput;
560         }
561
562         error = -ENOMEM;
563         attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
564         if (!attr_name)
565                 goto out_kfree_ops;
566
567         error = 0;
568         for (i = 0; i < am_hreq.opcount; i++) {
569                 ops[i].am_error = strncpy_from_user((char *)attr_name,
570                                 ops[i].am_attrname, MAXNAMELEN);
571                 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
572                         error = -ERANGE;
573                 if (ops[i].am_error < 0)
574                         break;
575
576                 switch (ops[i].am_opcode) {
577                 case ATTR_OP_GET:
578                         ops[i].am_error = xfs_attrmulti_attr_get(
579                                         d_inode(dentry), attr_name,
580                                         ops[i].am_attrvalue, &ops[i].am_length,
581                                         ops[i].am_flags);
582                         break;
583                 case ATTR_OP_SET:
584                         ops[i].am_error = mnt_want_write_file(parfilp);
585                         if (ops[i].am_error)
586                                 break;
587                         ops[i].am_error = xfs_attrmulti_attr_set(
588                                         d_inode(dentry), attr_name,
589                                         ops[i].am_attrvalue, ops[i].am_length,
590                                         ops[i].am_flags);
591                         mnt_drop_write_file(parfilp);
592                         break;
593                 case ATTR_OP_REMOVE:
594                         ops[i].am_error = mnt_want_write_file(parfilp);
595                         if (ops[i].am_error)
596                                 break;
597                         ops[i].am_error = xfs_attrmulti_attr_remove(
598                                         d_inode(dentry), attr_name,
599                                         ops[i].am_flags);
600                         mnt_drop_write_file(parfilp);
601                         break;
602                 default:
603                         ops[i].am_error = -EINVAL;
604                 }
605         }
606
607         if (copy_to_user(am_hreq.ops, ops, size))
608                 error = -EFAULT;
609
610         kfree(attr_name);
611  out_kfree_ops:
612         kfree(ops);
613  out_dput:
614         dput(dentry);
615         return error;
616 }
617
618 int
619 xfs_ioc_space(
620         struct xfs_inode        *ip,
621         struct inode            *inode,
622         struct file             *filp,
623         int                     ioflags,
624         unsigned int            cmd,
625         xfs_flock64_t           *bf)
626 {
627         struct iattr            iattr;
628         enum xfs_prealloc_flags flags = 0;
629         uint                    iolock = XFS_IOLOCK_EXCL;
630         int                     error;
631
632         /*
633          * Only allow the sys admin to reserve space unless
634          * unwritten extents are enabled.
635          */
636         if (!xfs_sb_version_hasextflgbit(&ip->i_mount->m_sb) &&
637             !capable(CAP_SYS_ADMIN))
638                 return -EPERM;
639
640         if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
641                 return -EPERM;
642
643         if (!(filp->f_mode & FMODE_WRITE))
644                 return -EBADF;
645
646         if (!S_ISREG(inode->i_mode))
647                 return -EINVAL;
648
649         if (filp->f_flags & O_DSYNC)
650                 flags |= XFS_PREALLOC_SYNC;
651         if (ioflags & XFS_IO_INVIS)
652                 flags |= XFS_PREALLOC_INVISIBLE;
653
654         error = mnt_want_write_file(filp);
655         if (error)
656                 return error;
657
658         xfs_ilock(ip, iolock);
659         error = xfs_break_layouts(inode, &iolock, false);
660         if (error)
661                 goto out_unlock;
662
663         xfs_ilock(ip, XFS_MMAPLOCK_EXCL);
664         iolock |= XFS_MMAPLOCK_EXCL;
665
666         switch (bf->l_whence) {
667         case 0: /*SEEK_SET*/
668                 break;
669         case 1: /*SEEK_CUR*/
670                 bf->l_start += filp->f_pos;
671                 break;
672         case 2: /*SEEK_END*/
673                 bf->l_start += XFS_ISIZE(ip);
674                 break;
675         default:
676                 error = -EINVAL;
677                 goto out_unlock;
678         }
679
680         /*
681          * length of <= 0 for resv/unresv/zero is invalid.  length for
682          * alloc/free is ignored completely and we have no idea what userspace
683          * might have set it to, so set it to zero to allow range
684          * checks to pass.
685          */
686         switch (cmd) {
687         case XFS_IOC_ZERO_RANGE:
688         case XFS_IOC_RESVSP:
689         case XFS_IOC_RESVSP64:
690         case XFS_IOC_UNRESVSP:
691         case XFS_IOC_UNRESVSP64:
692                 if (bf->l_len <= 0) {
693                         error = -EINVAL;
694                         goto out_unlock;
695                 }
696                 break;
697         default:
698                 bf->l_len = 0;
699                 break;
700         }
701
702         if (bf->l_start < 0 ||
703             bf->l_start > inode->i_sb->s_maxbytes ||
704             bf->l_start + bf->l_len < 0 ||
705             bf->l_start + bf->l_len >= inode->i_sb->s_maxbytes) {
706                 error = -EINVAL;
707                 goto out_unlock;
708         }
709
710         switch (cmd) {
711         case XFS_IOC_ZERO_RANGE:
712                 flags |= XFS_PREALLOC_SET;
713                 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len);
714                 break;
715         case XFS_IOC_RESVSP:
716         case XFS_IOC_RESVSP64:
717                 flags |= XFS_PREALLOC_SET;
718                 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len,
719                                                 XFS_BMAPI_PREALLOC);
720                 break;
721         case XFS_IOC_UNRESVSP:
722         case XFS_IOC_UNRESVSP64:
723                 error = xfs_free_file_space(ip, bf->l_start, bf->l_len);
724                 break;
725         case XFS_IOC_ALLOCSP:
726         case XFS_IOC_ALLOCSP64:
727         case XFS_IOC_FREESP:
728         case XFS_IOC_FREESP64:
729                 flags |= XFS_PREALLOC_CLEAR;
730                 if (bf->l_start > XFS_ISIZE(ip)) {
731                         error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
732                                         bf->l_start - XFS_ISIZE(ip), 0);
733                         if (error)
734                                 goto out_unlock;
735                 }
736
737                 iattr.ia_valid = ATTR_SIZE;
738                 iattr.ia_size = bf->l_start;
739
740                 error = xfs_setattr_size(ip, &iattr);
741                 break;
742         default:
743                 ASSERT(0);
744                 error = -EINVAL;
745         }
746
747         if (error)
748                 goto out_unlock;
749
750         error = xfs_update_prealloc_flags(ip, flags);
751
752 out_unlock:
753         xfs_iunlock(ip, iolock);
754         mnt_drop_write_file(filp);
755         return error;
756 }
757
758 STATIC int
759 xfs_ioc_bulkstat(
760         xfs_mount_t             *mp,
761         unsigned int            cmd,
762         void                    __user *arg)
763 {
764         xfs_fsop_bulkreq_t      bulkreq;
765         int                     count;  /* # of records returned */
766         xfs_ino_t               inlast; /* last inode number */
767         int                     done;
768         int                     error;
769
770         /* done = 1 if there are more stats to get and if bulkstat */
771         /* should be called again (unused here, but used in dmapi) */
772
773         if (!capable(CAP_SYS_ADMIN))
774                 return -EPERM;
775
776         if (XFS_FORCED_SHUTDOWN(mp))
777                 return -EIO;
778
779         if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
780                 return -EFAULT;
781
782         if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
783                 return -EFAULT;
784
785         if ((count = bulkreq.icount) <= 0)
786                 return -EINVAL;
787
788         if (bulkreq.ubuffer == NULL)
789                 return -EINVAL;
790
791         if (cmd == XFS_IOC_FSINUMBERS)
792                 error = xfs_inumbers(mp, &inlast, &count,
793                                         bulkreq.ubuffer, xfs_inumbers_fmt);
794         else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
795                 error = xfs_bulkstat_one(mp, inlast, bulkreq.ubuffer,
796                                         sizeof(xfs_bstat_t), NULL, &done);
797         else    /* XFS_IOC_FSBULKSTAT */
798                 error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
799                                      sizeof(xfs_bstat_t), bulkreq.ubuffer,
800                                      &done);
801
802         if (error)
803                 return error;
804
805         if (bulkreq.ocount != NULL) {
806                 if (copy_to_user(bulkreq.lastip, &inlast,
807                                                 sizeof(xfs_ino_t)))
808                         return -EFAULT;
809
810                 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
811                         return -EFAULT;
812         }
813
814         return 0;
815 }
816
817 STATIC int
818 xfs_ioc_fsgeometry_v1(
819         xfs_mount_t             *mp,
820         void                    __user *arg)
821 {
822         xfs_fsop_geom_t         fsgeo;
823         int                     error;
824
825         error = xfs_fs_geometry(mp, &fsgeo, 3);
826         if (error)
827                 return error;
828
829         /*
830          * Caller should have passed an argument of type
831          * xfs_fsop_geom_v1_t.  This is a proper subset of the
832          * xfs_fsop_geom_t that xfs_fs_geometry() fills in.
833          */
834         if (copy_to_user(arg, &fsgeo, sizeof(xfs_fsop_geom_v1_t)))
835                 return -EFAULT;
836         return 0;
837 }
838
839 STATIC int
840 xfs_ioc_fsgeometry(
841         xfs_mount_t             *mp,
842         void                    __user *arg)
843 {
844         xfs_fsop_geom_t         fsgeo;
845         int                     error;
846
847         error = xfs_fs_geometry(mp, &fsgeo, 4);
848         if (error)
849                 return error;
850
851         if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
852                 return -EFAULT;
853         return 0;
854 }
855
856 /*
857  * Linux extended inode flags interface.
858  */
859
860 STATIC unsigned int
861 xfs_merge_ioc_xflags(
862         unsigned int    flags,
863         unsigned int    start)
864 {
865         unsigned int    xflags = start;
866
867         if (flags & FS_IMMUTABLE_FL)
868                 xflags |= XFS_XFLAG_IMMUTABLE;
869         else
870                 xflags &= ~XFS_XFLAG_IMMUTABLE;
871         if (flags & FS_APPEND_FL)
872                 xflags |= XFS_XFLAG_APPEND;
873         else
874                 xflags &= ~XFS_XFLAG_APPEND;
875         if (flags & FS_SYNC_FL)
876                 xflags |= XFS_XFLAG_SYNC;
877         else
878                 xflags &= ~XFS_XFLAG_SYNC;
879         if (flags & FS_NOATIME_FL)
880                 xflags |= XFS_XFLAG_NOATIME;
881         else
882                 xflags &= ~XFS_XFLAG_NOATIME;
883         if (flags & FS_NODUMP_FL)
884                 xflags |= XFS_XFLAG_NODUMP;
885         else
886                 xflags &= ~XFS_XFLAG_NODUMP;
887
888         return xflags;
889 }
890
891 STATIC unsigned int
892 xfs_di2lxflags(
893         __uint16_t      di_flags)
894 {
895         unsigned int    flags = 0;
896
897         if (di_flags & XFS_DIFLAG_IMMUTABLE)
898                 flags |= FS_IMMUTABLE_FL;
899         if (di_flags & XFS_DIFLAG_APPEND)
900                 flags |= FS_APPEND_FL;
901         if (di_flags & XFS_DIFLAG_SYNC)
902                 flags |= FS_SYNC_FL;
903         if (di_flags & XFS_DIFLAG_NOATIME)
904                 flags |= FS_NOATIME_FL;
905         if (di_flags & XFS_DIFLAG_NODUMP)
906                 flags |= FS_NODUMP_FL;
907         return flags;
908 }
909
910 STATIC int
911 xfs_ioc_fsgetxattr(
912         xfs_inode_t             *ip,
913         int                     attr,
914         void                    __user *arg)
915 {
916         struct fsxattr          fa;
917
918         memset(&fa, 0, sizeof(struct fsxattr));
919
920         xfs_ilock(ip, XFS_ILOCK_SHARED);
921         fa.fsx_xflags = xfs_ip2xflags(ip);
922         fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
923         fa.fsx_projid = xfs_get_projid(ip);
924
925         if (attr) {
926                 if (ip->i_afp) {
927                         if (ip->i_afp->if_flags & XFS_IFEXTENTS)
928                                 fa.fsx_nextents = ip->i_afp->if_bytes /
929                                                         sizeof(xfs_bmbt_rec_t);
930                         else
931                                 fa.fsx_nextents = ip->i_d.di_anextents;
932                 } else
933                         fa.fsx_nextents = 0;
934         } else {
935                 if (ip->i_df.if_flags & XFS_IFEXTENTS)
936                         fa.fsx_nextents = ip->i_df.if_bytes /
937                                                 sizeof(xfs_bmbt_rec_t);
938                 else
939                         fa.fsx_nextents = ip->i_d.di_nextents;
940         }
941         xfs_iunlock(ip, XFS_ILOCK_SHARED);
942
943         if (copy_to_user(arg, &fa, sizeof(fa)))
944                 return -EFAULT;
945         return 0;
946 }
947
948 STATIC void
949 xfs_set_diflags(
950         struct xfs_inode        *ip,
951         unsigned int            xflags)
952 {
953         unsigned int            di_flags;
954
955         /* can't set PREALLOC this way, just preserve it */
956         di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
957         if (xflags & XFS_XFLAG_IMMUTABLE)
958                 di_flags |= XFS_DIFLAG_IMMUTABLE;
959         if (xflags & XFS_XFLAG_APPEND)
960                 di_flags |= XFS_DIFLAG_APPEND;
961         if (xflags & XFS_XFLAG_SYNC)
962                 di_flags |= XFS_DIFLAG_SYNC;
963         if (xflags & XFS_XFLAG_NOATIME)
964                 di_flags |= XFS_DIFLAG_NOATIME;
965         if (xflags & XFS_XFLAG_NODUMP)
966                 di_flags |= XFS_DIFLAG_NODUMP;
967         if (xflags & XFS_XFLAG_NODEFRAG)
968                 di_flags |= XFS_DIFLAG_NODEFRAG;
969         if (xflags & XFS_XFLAG_FILESTREAM)
970                 di_flags |= XFS_DIFLAG_FILESTREAM;
971         if (S_ISDIR(ip->i_d.di_mode)) {
972                 if (xflags & XFS_XFLAG_RTINHERIT)
973                         di_flags |= XFS_DIFLAG_RTINHERIT;
974                 if (xflags & XFS_XFLAG_NOSYMLINKS)
975                         di_flags |= XFS_DIFLAG_NOSYMLINKS;
976                 if (xflags & XFS_XFLAG_EXTSZINHERIT)
977                         di_flags |= XFS_DIFLAG_EXTSZINHERIT;
978                 if (xflags & XFS_XFLAG_PROJINHERIT)
979                         di_flags |= XFS_DIFLAG_PROJINHERIT;
980         } else if (S_ISREG(ip->i_d.di_mode)) {
981                 if (xflags & XFS_XFLAG_REALTIME)
982                         di_flags |= XFS_DIFLAG_REALTIME;
983                 if (xflags & XFS_XFLAG_EXTSIZE)
984                         di_flags |= XFS_DIFLAG_EXTSIZE;
985         }
986
987         ip->i_d.di_flags = di_flags;
988 }
989
990 STATIC void
991 xfs_diflags_to_linux(
992         struct xfs_inode        *ip)
993 {
994         struct inode            *inode = VFS_I(ip);
995         unsigned int            xflags = xfs_ip2xflags(ip);
996
997         if (xflags & XFS_XFLAG_IMMUTABLE)
998                 inode->i_flags |= S_IMMUTABLE;
999         else
1000                 inode->i_flags &= ~S_IMMUTABLE;
1001         if (xflags & XFS_XFLAG_APPEND)
1002                 inode->i_flags |= S_APPEND;
1003         else
1004                 inode->i_flags &= ~S_APPEND;
1005         if (xflags & XFS_XFLAG_SYNC)
1006                 inode->i_flags |= S_SYNC;
1007         else
1008                 inode->i_flags &= ~S_SYNC;
1009         if (xflags & XFS_XFLAG_NOATIME)
1010                 inode->i_flags |= S_NOATIME;
1011         else
1012                 inode->i_flags &= ~S_NOATIME;
1013 }
1014
1015 static int
1016 xfs_ioctl_setattr_xflags(
1017         struct xfs_trans        *tp,
1018         struct xfs_inode        *ip,
1019         struct fsxattr          *fa)
1020 {
1021         struct xfs_mount        *mp = ip->i_mount;
1022
1023         /* Can't change realtime flag if any extents are allocated. */
1024         if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
1025             XFS_IS_REALTIME_INODE(ip) != (fa->fsx_xflags & XFS_XFLAG_REALTIME))
1026                 return -EINVAL;
1027
1028         /* If realtime flag is set then must have realtime device */
1029         if (fa->fsx_xflags & XFS_XFLAG_REALTIME) {
1030                 if (mp->m_sb.sb_rblocks == 0 || mp->m_sb.sb_rextsize == 0 ||
1031                     (ip->i_d.di_extsize % mp->m_sb.sb_rextsize))
1032                         return -EINVAL;
1033         }
1034
1035         /*
1036          * Can't modify an immutable/append-only file unless
1037          * we have appropriate permission.
1038          */
1039         if (((ip->i_d.di_flags & (XFS_DIFLAG_IMMUTABLE | XFS_DIFLAG_APPEND)) ||
1040              (fa->fsx_xflags & (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
1041             !capable(CAP_LINUX_IMMUTABLE))
1042                 return -EPERM;
1043
1044         xfs_set_diflags(ip, fa->fsx_xflags);
1045         xfs_diflags_to_linux(ip);
1046         xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1047         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1048         XFS_STATS_INC(mp, xs_ig_attrchg);
1049         return 0;
1050 }
1051
1052 /*
1053  * Set up the transaction structure for the setattr operation, checking that we
1054  * have permission to do so. On success, return a clean transaction and the
1055  * inode locked exclusively ready for further operation specific checks. On
1056  * failure, return an error without modifying or locking the inode.
1057  */
1058 static struct xfs_trans *
1059 xfs_ioctl_setattr_get_trans(
1060         struct xfs_inode        *ip)
1061 {
1062         struct xfs_mount        *mp = ip->i_mount;
1063         struct xfs_trans        *tp;
1064         int                     error;
1065
1066         if (mp->m_flags & XFS_MOUNT_RDONLY)
1067                 return ERR_PTR(-EROFS);
1068         if (XFS_FORCED_SHUTDOWN(mp))
1069                 return ERR_PTR(-EIO);
1070
1071         tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
1072         error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
1073         if (error)
1074                 goto out_cancel;
1075
1076         xfs_ilock(ip, XFS_ILOCK_EXCL);
1077         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1078
1079         /*
1080          * CAP_FOWNER overrides the following restrictions:
1081          *
1082          * The user ID of the calling process must be equal to the file owner
1083          * ID, except in cases where the CAP_FSETID capability is applicable.
1084          */
1085         if (!inode_owner_or_capable(VFS_I(ip))) {
1086                 error = -EPERM;
1087                 goto out_cancel;
1088         }
1089
1090         if (mp->m_flags & XFS_MOUNT_WSYNC)
1091                 xfs_trans_set_sync(tp);
1092
1093         return tp;
1094
1095 out_cancel:
1096         xfs_trans_cancel(tp);
1097         return ERR_PTR(error);
1098 }
1099
1100 /*
1101  * extent size hint validation is somewhat cumbersome. Rules are:
1102  *
1103  * 1. extent size hint is only valid for directories and regular files
1104  * 2. XFS_XFLAG_EXTSIZE is only valid for regular files
1105  * 3. XFS_XFLAG_EXTSZINHERIT is only valid for directories.
1106  * 4. can only be changed on regular files if no extents are allocated
1107  * 5. can be changed on directories at any time
1108  * 6. extsize hint of 0 turns off hints, clears inode flags.
1109  * 7. Extent size must be a multiple of the appropriate block size.
1110  * 8. for non-realtime files, the extent size hint must be limited
1111  *    to half the AG size to avoid alignment extending the extent beyond the
1112  *    limits of the AG.
1113  */
1114 static int
1115 xfs_ioctl_setattr_check_extsize(
1116         struct xfs_inode        *ip,
1117         struct fsxattr          *fa)
1118 {
1119         struct xfs_mount        *mp = ip->i_mount;
1120
1121         if ((fa->fsx_xflags & XFS_XFLAG_EXTSIZE) && !S_ISREG(ip->i_d.di_mode))
1122                 return -EINVAL;
1123
1124         if ((fa->fsx_xflags & XFS_XFLAG_EXTSZINHERIT) &&
1125             !S_ISDIR(ip->i_d.di_mode))
1126                 return -EINVAL;
1127
1128         if (S_ISREG(ip->i_d.di_mode) && ip->i_d.di_nextents &&
1129             ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) != fa->fsx_extsize))
1130                 return -EINVAL;
1131
1132         if (fa->fsx_extsize != 0) {
1133                 xfs_extlen_t    size;
1134                 xfs_fsblock_t   extsize_fsb;
1135
1136                 extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1137                 if (extsize_fsb > MAXEXTLEN)
1138                         return -EINVAL;
1139
1140                 if (XFS_IS_REALTIME_INODE(ip) ||
1141                     (fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
1142                         size = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog;
1143                 } else {
1144                         size = mp->m_sb.sb_blocksize;
1145                         if (extsize_fsb > mp->m_sb.sb_agblocks / 2)
1146                                 return -EINVAL;
1147                 }
1148
1149                 if (fa->fsx_extsize % size)
1150                         return -EINVAL;
1151         } else
1152                 fa->fsx_xflags &= ~(XFS_XFLAG_EXTSIZE | XFS_XFLAG_EXTSZINHERIT);
1153
1154         return 0;
1155 }
1156
1157 static int
1158 xfs_ioctl_setattr_check_projid(
1159         struct xfs_inode        *ip,
1160         struct fsxattr          *fa)
1161 {
1162         /* Disallow 32bit project ids if projid32bit feature is not enabled. */
1163         if (fa->fsx_projid > (__uint16_t)-1 &&
1164             !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
1165                 return -EINVAL;
1166
1167         /*
1168          * Project Quota ID state is only allowed to change from within the init
1169          * namespace. Enforce that restriction only if we are trying to change
1170          * the quota ID state. Everything else is allowed in user namespaces.
1171          */
1172         if (current_user_ns() == &init_user_ns)
1173                 return 0;
1174
1175         if (xfs_get_projid(ip) != fa->fsx_projid)
1176                 return -EINVAL;
1177         if ((fa->fsx_xflags & XFS_XFLAG_PROJINHERIT) !=
1178             (ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT))
1179                 return -EINVAL;
1180
1181         return 0;
1182 }
1183
1184 STATIC int
1185 xfs_ioctl_setattr(
1186         xfs_inode_t             *ip,
1187         struct fsxattr          *fa)
1188 {
1189         struct xfs_mount        *mp = ip->i_mount;
1190         struct xfs_trans        *tp;
1191         struct xfs_dquot        *udqp = NULL;
1192         struct xfs_dquot        *pdqp = NULL;
1193         struct xfs_dquot        *olddquot = NULL;
1194         int                     code;
1195
1196         trace_xfs_ioctl_setattr(ip);
1197
1198         code = xfs_ioctl_setattr_check_projid(ip, fa);
1199         if (code)
1200                 return code;
1201
1202         /*
1203          * If disk quotas is on, we make sure that the dquots do exist on disk,
1204          * before we start any other transactions. Trying to do this later
1205          * is messy. We don't care to take a readlock to look at the ids
1206          * in inode here, because we can't hold it across the trans_reserve.
1207          * If the IDs do change before we take the ilock, we're covered
1208          * because the i_*dquot fields will get updated anyway.
1209          */
1210         if (XFS_IS_QUOTA_ON(mp)) {
1211                 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
1212                                          ip->i_d.di_gid, fa->fsx_projid,
1213                                          XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
1214                 if (code)
1215                         return code;
1216         }
1217
1218         tp = xfs_ioctl_setattr_get_trans(ip);
1219         if (IS_ERR(tp)) {
1220                 code = PTR_ERR(tp);
1221                 goto error_free_dquots;
1222         }
1223
1224
1225         if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp) &&
1226             xfs_get_projid(ip) != fa->fsx_projid) {
1227                 code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL, pdqp,
1228                                 capable(CAP_FOWNER) ?  XFS_QMOPT_FORCE_RES : 0);
1229                 if (code)       /* out of quota */
1230                         goto error_trans_cancel;
1231         }
1232
1233         code = xfs_ioctl_setattr_check_extsize(ip, fa);
1234         if (code)
1235                 goto error_trans_cancel;
1236
1237         code = xfs_ioctl_setattr_xflags(tp, ip, fa);
1238         if (code)
1239                 goto error_trans_cancel;
1240
1241         /*
1242          * Change file ownership.  Must be the owner or privileged.  CAP_FSETID
1243          * overrides the following restrictions:
1244          *
1245          * The set-user-ID and set-group-ID bits of a file will be cleared upon
1246          * successful return from chown()
1247          */
1248
1249         if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
1250             !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
1251                 ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
1252
1253         /* Change the ownerships and register project quota modifications */
1254         if (xfs_get_projid(ip) != fa->fsx_projid) {
1255                 if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1256                         olddquot = xfs_qm_vop_chown(tp, ip,
1257                                                 &ip->i_pdquot, pdqp);
1258                 }
1259                 ASSERT(ip->i_d.di_version > 1);
1260                 xfs_set_projid(ip, fa->fsx_projid);
1261         }
1262
1263         /*
1264          * Only set the extent size hint if we've already determined that the
1265          * extent size hint should be set on the inode. If no extent size flags
1266          * are set on the inode then unconditionally clear the extent size hint.
1267          */
1268         if (ip->i_d.di_flags & (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
1269                 ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
1270         else
1271                 ip->i_d.di_extsize = 0;
1272
1273         code = xfs_trans_commit(tp);
1274
1275         /*
1276          * Release any dquot(s) the inode had kept before chown.
1277          */
1278         xfs_qm_dqrele(olddquot);
1279         xfs_qm_dqrele(udqp);
1280         xfs_qm_dqrele(pdqp);
1281
1282         return code;
1283
1284 error_trans_cancel:
1285         xfs_trans_cancel(tp);
1286 error_free_dquots:
1287         xfs_qm_dqrele(udqp);
1288         xfs_qm_dqrele(pdqp);
1289         return code;
1290 }
1291
1292 STATIC int
1293 xfs_ioc_fssetxattr(
1294         xfs_inode_t             *ip,
1295         struct file             *filp,
1296         void                    __user *arg)
1297 {
1298         struct fsxattr          fa;
1299         int error;
1300
1301         if (copy_from_user(&fa, arg, sizeof(fa)))
1302                 return -EFAULT;
1303
1304         error = mnt_want_write_file(filp);
1305         if (error)
1306                 return error;
1307         error = xfs_ioctl_setattr(ip, &fa);
1308         mnt_drop_write_file(filp);
1309         return error;
1310 }
1311
1312 STATIC int
1313 xfs_ioc_getxflags(
1314         xfs_inode_t             *ip,
1315         void                    __user *arg)
1316 {
1317         unsigned int            flags;
1318
1319         flags = xfs_di2lxflags(ip->i_d.di_flags);
1320         if (copy_to_user(arg, &flags, sizeof(flags)))
1321                 return -EFAULT;
1322         return 0;
1323 }
1324
1325 STATIC int
1326 xfs_ioc_setxflags(
1327         struct xfs_inode        *ip,
1328         struct file             *filp,
1329         void                    __user *arg)
1330 {
1331         struct xfs_trans        *tp;
1332         struct fsxattr          fa;
1333         unsigned int            flags;
1334         int                     error;
1335
1336         if (copy_from_user(&flags, arg, sizeof(flags)))
1337                 return -EFAULT;
1338
1339         if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1340                       FS_NOATIME_FL | FS_NODUMP_FL | \
1341                       FS_SYNC_FL))
1342                 return -EOPNOTSUPP;
1343
1344         fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
1345
1346         error = mnt_want_write_file(filp);
1347         if (error)
1348                 return error;
1349
1350         tp = xfs_ioctl_setattr_get_trans(ip);
1351         if (IS_ERR(tp)) {
1352                 error = PTR_ERR(tp);
1353                 goto out_drop_write;
1354         }
1355
1356         error = xfs_ioctl_setattr_xflags(tp, ip, &fa);
1357         if (error) {
1358                 xfs_trans_cancel(tp);
1359                 goto out_drop_write;
1360         }
1361
1362         error = xfs_trans_commit(tp);
1363 out_drop_write:
1364         mnt_drop_write_file(filp);
1365         return error;
1366 }
1367
1368 STATIC int
1369 xfs_getbmap_format(void **ap, struct getbmapx *bmv, int *full)
1370 {
1371         struct getbmap __user   *base = (struct getbmap __user *)*ap;
1372
1373         /* copy only getbmap portion (not getbmapx) */
1374         if (copy_to_user(base, bmv, sizeof(struct getbmap)))
1375                 return -EFAULT;
1376
1377         *ap += sizeof(struct getbmap);
1378         return 0;
1379 }
1380
1381 STATIC int
1382 xfs_ioc_getbmap(
1383         struct xfs_inode        *ip,
1384         int                     ioflags,
1385         unsigned int            cmd,
1386         void                    __user *arg)
1387 {
1388         struct getbmapx         bmx = { 0 };
1389         int                     error;
1390
1391         /* struct getbmap is a strict subset of struct getbmapx. */
1392         if (copy_from_user(&bmx, arg, offsetof(struct getbmapx, bmv_iflags)))
1393                 return -EFAULT;
1394
1395         if (bmx.bmv_count < 2)
1396                 return -EINVAL;
1397
1398         bmx.bmv_iflags = (cmd == XFS_IOC_GETBMAPA ? BMV_IF_ATTRFORK : 0);
1399         if (ioflags & XFS_IO_INVIS)
1400                 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
1401
1402         error = xfs_getbmap(ip, &bmx, xfs_getbmap_format,
1403                             (__force struct getbmap *)arg+1);
1404         if (error)
1405                 return error;
1406
1407         /* copy back header - only size of getbmap */
1408         if (copy_to_user(arg, &bmx, sizeof(struct getbmap)))
1409                 return -EFAULT;
1410         return 0;
1411 }
1412
1413 STATIC int
1414 xfs_getbmapx_format(void **ap, struct getbmapx *bmv, int *full)
1415 {
1416         struct getbmapx __user  *base = (struct getbmapx __user *)*ap;
1417
1418         if (copy_to_user(base, bmv, sizeof(struct getbmapx)))
1419                 return -EFAULT;
1420
1421         *ap += sizeof(struct getbmapx);
1422         return 0;
1423 }
1424
1425 STATIC int
1426 xfs_ioc_getbmapx(
1427         struct xfs_inode        *ip,
1428         void                    __user *arg)
1429 {
1430         struct getbmapx         bmx;
1431         int                     error;
1432
1433         if (copy_from_user(&bmx, arg, sizeof(bmx)))
1434                 return -EFAULT;
1435
1436         if (bmx.bmv_count < 2)
1437                 return -EINVAL;
1438
1439         if (bmx.bmv_iflags & (~BMV_IF_VALID))
1440                 return -EINVAL;
1441
1442         error = xfs_getbmap(ip, &bmx, xfs_getbmapx_format,
1443                             (__force struct getbmapx *)arg+1);
1444         if (error)
1445                 return error;
1446
1447         /* copy back header */
1448         if (copy_to_user(arg, &bmx, sizeof(struct getbmapx)))
1449                 return -EFAULT;
1450
1451         return 0;
1452 }
1453
1454 int
1455 xfs_ioc_swapext(
1456         xfs_swapext_t   *sxp)
1457 {
1458         xfs_inode_t     *ip, *tip;
1459         struct fd       f, tmp;
1460         int             error = 0;
1461
1462         /* Pull information for the target fd */
1463         f = fdget((int)sxp->sx_fdtarget);
1464         if (!f.file) {
1465                 error = -EINVAL;
1466                 goto out;
1467         }
1468
1469         if (!(f.file->f_mode & FMODE_WRITE) ||
1470             !(f.file->f_mode & FMODE_READ) ||
1471             (f.file->f_flags & O_APPEND)) {
1472                 error = -EBADF;
1473                 goto out_put_file;
1474         }
1475
1476         tmp = fdget((int)sxp->sx_fdtmp);
1477         if (!tmp.file) {
1478                 error = -EINVAL;
1479                 goto out_put_file;
1480         }
1481
1482         if (!(tmp.file->f_mode & FMODE_WRITE) ||
1483             !(tmp.file->f_mode & FMODE_READ) ||
1484             (tmp.file->f_flags & O_APPEND)) {
1485                 error = -EBADF;
1486                 goto out_put_tmp_file;
1487         }
1488
1489         if (IS_SWAPFILE(file_inode(f.file)) ||
1490             IS_SWAPFILE(file_inode(tmp.file))) {
1491                 error = -EINVAL;
1492                 goto out_put_tmp_file;
1493         }
1494
1495         ip = XFS_I(file_inode(f.file));
1496         tip = XFS_I(file_inode(tmp.file));
1497
1498         if (ip->i_mount != tip->i_mount) {
1499                 error = -EINVAL;
1500                 goto out_put_tmp_file;
1501         }
1502
1503         if (ip->i_ino == tip->i_ino) {
1504                 error = -EINVAL;
1505                 goto out_put_tmp_file;
1506         }
1507
1508         if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
1509                 error = -EIO;
1510                 goto out_put_tmp_file;
1511         }
1512
1513         error = xfs_swap_extents(ip, tip, sxp);
1514
1515  out_put_tmp_file:
1516         fdput(tmp);
1517  out_put_file:
1518         fdput(f);
1519  out:
1520         return error;
1521 }
1522
1523 /*
1524  * Note: some of the ioctl's return positive numbers as a
1525  * byte count indicating success, such as readlink_by_handle.
1526  * So we don't "sign flip" like most other routines.  This means
1527  * true errors need to be returned as a negative value.
1528  */
1529 long
1530 xfs_file_ioctl(
1531         struct file             *filp,
1532         unsigned int            cmd,
1533         unsigned long           p)
1534 {
1535         struct inode            *inode = file_inode(filp);
1536         struct xfs_inode        *ip = XFS_I(inode);
1537         struct xfs_mount        *mp = ip->i_mount;
1538         void                    __user *arg = (void __user *)p;
1539         int                     ioflags = 0;
1540         int                     error;
1541
1542         if (filp->f_mode & FMODE_NOCMTIME)
1543                 ioflags |= XFS_IO_INVIS;
1544
1545         trace_xfs_file_ioctl(ip);
1546
1547         switch (cmd) {
1548         case FITRIM:
1549                 return xfs_ioc_trim(mp, arg);
1550         case XFS_IOC_ALLOCSP:
1551         case XFS_IOC_FREESP:
1552         case XFS_IOC_RESVSP:
1553         case XFS_IOC_UNRESVSP:
1554         case XFS_IOC_ALLOCSP64:
1555         case XFS_IOC_FREESP64:
1556         case XFS_IOC_RESVSP64:
1557         case XFS_IOC_UNRESVSP64:
1558         case XFS_IOC_ZERO_RANGE: {
1559                 xfs_flock64_t           bf;
1560
1561                 if (copy_from_user(&bf, arg, sizeof(bf)))
1562                         return -EFAULT;
1563                 return xfs_ioc_space(ip, inode, filp, ioflags, cmd, &bf);
1564         }
1565         case XFS_IOC_DIOINFO: {
1566                 struct dioattr  da;
1567                 xfs_buftarg_t   *target =
1568                         XFS_IS_REALTIME_INODE(ip) ?
1569                         mp->m_rtdev_targp : mp->m_ddev_targp;
1570
1571                 da.d_mem =  da.d_miniosz = target->bt_logical_sectorsize;
1572                 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1573
1574                 if (copy_to_user(arg, &da, sizeof(da)))
1575                         return -EFAULT;
1576                 return 0;
1577         }
1578
1579         case XFS_IOC_FSBULKSTAT_SINGLE:
1580         case XFS_IOC_FSBULKSTAT:
1581         case XFS_IOC_FSINUMBERS:
1582                 return xfs_ioc_bulkstat(mp, cmd, arg);
1583
1584         case XFS_IOC_FSGEOMETRY_V1:
1585                 return xfs_ioc_fsgeometry_v1(mp, arg);
1586
1587         case XFS_IOC_FSGEOMETRY:
1588                 return xfs_ioc_fsgeometry(mp, arg);
1589
1590         case XFS_IOC_GETVERSION:
1591                 return put_user(inode->i_generation, (int __user *)arg);
1592
1593         case XFS_IOC_FSGETXATTR:
1594                 return xfs_ioc_fsgetxattr(ip, 0, arg);
1595         case XFS_IOC_FSGETXATTRA:
1596                 return xfs_ioc_fsgetxattr(ip, 1, arg);
1597         case XFS_IOC_FSSETXATTR:
1598                 return xfs_ioc_fssetxattr(ip, filp, arg);
1599         case XFS_IOC_GETXFLAGS:
1600                 return xfs_ioc_getxflags(ip, arg);
1601         case XFS_IOC_SETXFLAGS:
1602                 return xfs_ioc_setxflags(ip, filp, arg);
1603
1604         case XFS_IOC_FSSETDM: {
1605                 struct fsdmidata        dmi;
1606
1607                 if (copy_from_user(&dmi, arg, sizeof(dmi)))
1608                         return -EFAULT;
1609
1610                 error = mnt_want_write_file(filp);
1611                 if (error)
1612                         return error;
1613
1614                 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1615                                 dmi.fsd_dmstate);
1616                 mnt_drop_write_file(filp);
1617                 return error;
1618         }
1619
1620         case XFS_IOC_GETBMAP:
1621         case XFS_IOC_GETBMAPA:
1622                 return xfs_ioc_getbmap(ip, ioflags, cmd, arg);
1623
1624         case XFS_IOC_GETBMAPX:
1625                 return xfs_ioc_getbmapx(ip, arg);
1626
1627         case XFS_IOC_FD_TO_HANDLE:
1628         case XFS_IOC_PATH_TO_HANDLE:
1629         case XFS_IOC_PATH_TO_FSHANDLE: {
1630                 xfs_fsop_handlereq_t    hreq;
1631
1632                 if (copy_from_user(&hreq, arg, sizeof(hreq)))
1633                         return -EFAULT;
1634                 return xfs_find_handle(cmd, &hreq);
1635         }
1636         case XFS_IOC_OPEN_BY_HANDLE: {
1637                 xfs_fsop_handlereq_t    hreq;
1638
1639                 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
1640                         return -EFAULT;
1641                 return xfs_open_by_handle(filp, &hreq);
1642         }
1643         case XFS_IOC_FSSETDM_BY_HANDLE:
1644                 return xfs_fssetdm_by_handle(filp, arg);
1645
1646         case XFS_IOC_READLINK_BY_HANDLE: {
1647                 xfs_fsop_handlereq_t    hreq;
1648
1649                 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
1650                         return -EFAULT;
1651                 return xfs_readlink_by_handle(filp, &hreq);
1652         }
1653         case XFS_IOC_ATTRLIST_BY_HANDLE:
1654                 return xfs_attrlist_by_handle(filp, arg);
1655
1656         case XFS_IOC_ATTRMULTI_BY_HANDLE:
1657                 return xfs_attrmulti_by_handle(filp, arg);
1658
1659         case XFS_IOC_SWAPEXT: {
1660                 struct xfs_swapext      sxp;
1661
1662                 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
1663                         return -EFAULT;
1664                 error = mnt_want_write_file(filp);
1665                 if (error)
1666                         return error;
1667                 error = xfs_ioc_swapext(&sxp);
1668                 mnt_drop_write_file(filp);
1669                 return error;
1670         }
1671
1672         case XFS_IOC_FSCOUNTS: {
1673                 xfs_fsop_counts_t out;
1674
1675                 error = xfs_fs_counts(mp, &out);
1676                 if (error)
1677                         return error;
1678
1679                 if (copy_to_user(arg, &out, sizeof(out)))
1680                         return -EFAULT;
1681                 return 0;
1682         }
1683
1684         case XFS_IOC_SET_RESBLKS: {
1685                 xfs_fsop_resblks_t inout;
1686                 __uint64_t         in;
1687
1688                 if (!capable(CAP_SYS_ADMIN))
1689                         return -EPERM;
1690
1691                 if (mp->m_flags & XFS_MOUNT_RDONLY)
1692                         return -EROFS;
1693
1694                 if (copy_from_user(&inout, arg, sizeof(inout)))
1695                         return -EFAULT;
1696
1697                 error = mnt_want_write_file(filp);
1698                 if (error)
1699                         return error;
1700
1701                 /* input parameter is passed in resblks field of structure */
1702                 in = inout.resblks;
1703                 error = xfs_reserve_blocks(mp, &in, &inout);
1704                 mnt_drop_write_file(filp);
1705                 if (error)
1706                         return error;
1707
1708                 if (copy_to_user(arg, &inout, sizeof(inout)))
1709                         return -EFAULT;
1710                 return 0;
1711         }
1712
1713         case XFS_IOC_GET_RESBLKS: {
1714                 xfs_fsop_resblks_t out;
1715
1716                 if (!capable(CAP_SYS_ADMIN))
1717                         return -EPERM;
1718
1719                 error = xfs_reserve_blocks(mp, NULL, &out);
1720                 if (error)
1721                         return error;
1722
1723                 if (copy_to_user(arg, &out, sizeof(out)))
1724                         return -EFAULT;
1725
1726                 return 0;
1727         }
1728
1729         case XFS_IOC_FSGROWFSDATA: {
1730                 xfs_growfs_data_t in;
1731
1732                 if (copy_from_user(&in, arg, sizeof(in)))
1733                         return -EFAULT;
1734
1735                 error = mnt_want_write_file(filp);
1736                 if (error)
1737                         return error;
1738                 error = xfs_growfs_data(mp, &in);
1739                 mnt_drop_write_file(filp);
1740                 return error;
1741         }
1742
1743         case XFS_IOC_FSGROWFSLOG: {
1744                 xfs_growfs_log_t in;
1745
1746                 if (copy_from_user(&in, arg, sizeof(in)))
1747                         return -EFAULT;
1748
1749                 error = mnt_want_write_file(filp);
1750                 if (error)
1751                         return error;
1752                 error = xfs_growfs_log(mp, &in);
1753                 mnt_drop_write_file(filp);
1754                 return error;
1755         }
1756
1757         case XFS_IOC_FSGROWFSRT: {
1758                 xfs_growfs_rt_t in;
1759
1760                 if (copy_from_user(&in, arg, sizeof(in)))
1761                         return -EFAULT;
1762
1763                 error = mnt_want_write_file(filp);
1764                 if (error)
1765                         return error;
1766                 error = xfs_growfs_rt(mp, &in);
1767                 mnt_drop_write_file(filp);
1768                 return error;
1769         }
1770
1771         case XFS_IOC_GOINGDOWN: {
1772                 __uint32_t in;
1773
1774                 if (!capable(CAP_SYS_ADMIN))
1775                         return -EPERM;
1776
1777                 if (get_user(in, (__uint32_t __user *)arg))
1778                         return -EFAULT;
1779
1780                 return xfs_fs_goingdown(mp, in);
1781         }
1782
1783         case XFS_IOC_ERROR_INJECTION: {
1784                 xfs_error_injection_t in;
1785
1786                 if (!capable(CAP_SYS_ADMIN))
1787                         return -EPERM;
1788
1789                 if (copy_from_user(&in, arg, sizeof(in)))
1790                         return -EFAULT;
1791
1792                 return xfs_errortag_add(in.errtag, mp);
1793         }
1794
1795         case XFS_IOC_ERROR_CLEARALL:
1796                 if (!capable(CAP_SYS_ADMIN))
1797                         return -EPERM;
1798
1799                 return xfs_errortag_clearall(mp, 1);
1800
1801         case XFS_IOC_FREE_EOFBLOCKS: {
1802                 struct xfs_fs_eofblocks eofb;
1803                 struct xfs_eofblocks keofb;
1804
1805                 if (!capable(CAP_SYS_ADMIN))
1806                         return -EPERM;
1807
1808                 if (mp->m_flags & XFS_MOUNT_RDONLY)
1809                         return -EROFS;
1810
1811                 if (copy_from_user(&eofb, arg, sizeof(eofb)))
1812                         return -EFAULT;
1813
1814                 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
1815                 if (error)
1816                         return error;
1817
1818                 return xfs_icache_free_eofblocks(mp, &keofb);
1819         }
1820
1821         default:
1822                 return -ENOTTY;
1823         }
1824 }