xfs: merge xfs_dinode.h into xfs_format.h
[linux-block.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_sb.h"
25 #include "xfs_ag.h"
26 #include "xfs_mount.h"
27 #include "xfs_inode.h"
28 #include "xfs_ioctl.h"
29 #include "xfs_alloc.h"
30 #include "xfs_rtalloc.h"
31 #include "xfs_itable.h"
32 #include "xfs_error.h"
33 #include "xfs_attr.h"
34 #include "xfs_bmap.h"
35 #include "xfs_bmap_util.h"
36 #include "xfs_fsops.h"
37 #include "xfs_discard.h"
38 #include "xfs_quota.h"
39 #include "xfs_export.h"
40 #include "xfs_trace.h"
41 #include "xfs_icache.h"
42 #include "xfs_symlink.h"
43 #include "xfs_trans.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 = path.dentry->d_inode;
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 = dentry->d_inode;
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 (!S_ISLNK(dentry->d_inode->i_mode)) {
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(dentry->d_inode), 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, 0);
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, 0);
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(dentry->d_inode) || IS_APPEND(dentry->d_inode)) {
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(dentry->d_inode), 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         xfs_fsop_attrlist_handlereq_t al_hreq;
407         struct dentry           *dentry;
408         char                    *kbuf;
409
410         if (!capable(CAP_SYS_ADMIN))
411                 return -EPERM;
412         if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
413                 return -EFAULT;
414         if (al_hreq.buflen < sizeof(struct attrlist) ||
415             al_hreq.buflen > XATTR_LIST_MAX)
416                 return -EINVAL;
417
418         /*
419          * Reject flags, only allow namespaces.
420          */
421         if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
422                 return -EINVAL;
423
424         dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
425         if (IS_ERR(dentry))
426                 return PTR_ERR(dentry);
427
428         kbuf = kmem_zalloc_large(al_hreq.buflen, KM_SLEEP);
429         if (!kbuf)
430                 goto out_dput;
431
432         cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
433         error = xfs_attr_list(XFS_I(dentry->d_inode), kbuf, al_hreq.buflen,
434                                         al_hreq.flags, cursor);
435         if (error)
436                 goto out_kfree;
437
438         if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
439                 error = -EFAULT;
440
441 out_kfree:
442         kmem_free(kbuf);
443 out_dput:
444         dput(dentry);
445         return error;
446 }
447
448 int
449 xfs_attrmulti_attr_get(
450         struct inode            *inode,
451         unsigned char           *name,
452         unsigned char           __user *ubuf,
453         __uint32_t              *len,
454         __uint32_t              flags)
455 {
456         unsigned char           *kbuf;
457         int                     error = -EFAULT;
458
459         if (*len > XATTR_SIZE_MAX)
460                 return -EINVAL;
461         kbuf = kmem_zalloc_large(*len, KM_SLEEP);
462         if (!kbuf)
463                 return -ENOMEM;
464
465         error = xfs_attr_get(XFS_I(inode), name, kbuf, (int *)len, flags);
466         if (error)
467                 goto out_kfree;
468
469         if (copy_to_user(ubuf, kbuf, *len))
470                 error = -EFAULT;
471
472 out_kfree:
473         kmem_free(kbuf);
474         return error;
475 }
476
477 int
478 xfs_attrmulti_attr_set(
479         struct inode            *inode,
480         unsigned char           *name,
481         const unsigned char     __user *ubuf,
482         __uint32_t              len,
483         __uint32_t              flags)
484 {
485         unsigned char           *kbuf;
486
487         if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
488                 return -EPERM;
489         if (len > XATTR_SIZE_MAX)
490                 return -EINVAL;
491
492         kbuf = memdup_user(ubuf, len);
493         if (IS_ERR(kbuf))
494                 return PTR_ERR(kbuf);
495
496         return xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
497 }
498
499 int
500 xfs_attrmulti_attr_remove(
501         struct inode            *inode,
502         unsigned char           *name,
503         __uint32_t              flags)
504 {
505         if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
506                 return -EPERM;
507         return xfs_attr_remove(XFS_I(inode), name, flags);
508 }
509
510 STATIC int
511 xfs_attrmulti_by_handle(
512         struct file             *parfilp,
513         void                    __user *arg)
514 {
515         int                     error;
516         xfs_attr_multiop_t      *ops;
517         xfs_fsop_attrmulti_handlereq_t am_hreq;
518         struct dentry           *dentry;
519         unsigned int            i, size;
520         unsigned char           *attr_name;
521
522         if (!capable(CAP_SYS_ADMIN))
523                 return -EPERM;
524         if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
525                 return -EFAULT;
526
527         /* overflow check */
528         if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
529                 return -E2BIG;
530
531         dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
532         if (IS_ERR(dentry))
533                 return PTR_ERR(dentry);
534
535         error = -E2BIG;
536         size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
537         if (!size || size > 16 * PAGE_SIZE)
538                 goto out_dput;
539
540         ops = memdup_user(am_hreq.ops, size);
541         if (IS_ERR(ops)) {
542                 error = PTR_ERR(ops);
543                 goto out_dput;
544         }
545
546         error = -ENOMEM;
547         attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
548         if (!attr_name)
549                 goto out_kfree_ops;
550
551         error = 0;
552         for (i = 0; i < am_hreq.opcount; i++) {
553                 ops[i].am_error = strncpy_from_user((char *)attr_name,
554                                 ops[i].am_attrname, MAXNAMELEN);
555                 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
556                         error = -ERANGE;
557                 if (ops[i].am_error < 0)
558                         break;
559
560                 switch (ops[i].am_opcode) {
561                 case ATTR_OP_GET:
562                         ops[i].am_error = xfs_attrmulti_attr_get(
563                                         dentry->d_inode, attr_name,
564                                         ops[i].am_attrvalue, &ops[i].am_length,
565                                         ops[i].am_flags);
566                         break;
567                 case ATTR_OP_SET:
568                         ops[i].am_error = mnt_want_write_file(parfilp);
569                         if (ops[i].am_error)
570                                 break;
571                         ops[i].am_error = xfs_attrmulti_attr_set(
572                                         dentry->d_inode, attr_name,
573                                         ops[i].am_attrvalue, ops[i].am_length,
574                                         ops[i].am_flags);
575                         mnt_drop_write_file(parfilp);
576                         break;
577                 case ATTR_OP_REMOVE:
578                         ops[i].am_error = mnt_want_write_file(parfilp);
579                         if (ops[i].am_error)
580                                 break;
581                         ops[i].am_error = xfs_attrmulti_attr_remove(
582                                         dentry->d_inode, attr_name,
583                                         ops[i].am_flags);
584                         mnt_drop_write_file(parfilp);
585                         break;
586                 default:
587                         ops[i].am_error = -EINVAL;
588                 }
589         }
590
591         if (copy_to_user(am_hreq.ops, ops, size))
592                 error = -EFAULT;
593
594         kfree(attr_name);
595  out_kfree_ops:
596         kfree(ops);
597  out_dput:
598         dput(dentry);
599         return error;
600 }
601
602 int
603 xfs_ioc_space(
604         struct xfs_inode        *ip,
605         struct inode            *inode,
606         struct file             *filp,
607         int                     ioflags,
608         unsigned int            cmd,
609         xfs_flock64_t           *bf)
610 {
611         struct xfs_mount        *mp = ip->i_mount;
612         struct xfs_trans        *tp;
613         struct iattr            iattr;
614         bool                    setprealloc = false;
615         bool                    clrprealloc = false;
616         int                     error;
617
618         /*
619          * Only allow the sys admin to reserve space unless
620          * unwritten extents are enabled.
621          */
622         if (!xfs_sb_version_hasextflgbit(&ip->i_mount->m_sb) &&
623             !capable(CAP_SYS_ADMIN))
624                 return -EPERM;
625
626         if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
627                 return -EPERM;
628
629         if (!(filp->f_mode & FMODE_WRITE))
630                 return -EBADF;
631
632         if (!S_ISREG(inode->i_mode))
633                 return -EINVAL;
634
635         error = mnt_want_write_file(filp);
636         if (error)
637                 return error;
638
639         xfs_ilock(ip, XFS_IOLOCK_EXCL);
640
641         switch (bf->l_whence) {
642         case 0: /*SEEK_SET*/
643                 break;
644         case 1: /*SEEK_CUR*/
645                 bf->l_start += filp->f_pos;
646                 break;
647         case 2: /*SEEK_END*/
648                 bf->l_start += XFS_ISIZE(ip);
649                 break;
650         default:
651                 error = -EINVAL;
652                 goto out_unlock;
653         }
654
655         /*
656          * length of <= 0 for resv/unresv/zero is invalid.  length for
657          * alloc/free is ignored completely and we have no idea what userspace
658          * might have set it to, so set it to zero to allow range
659          * checks to pass.
660          */
661         switch (cmd) {
662         case XFS_IOC_ZERO_RANGE:
663         case XFS_IOC_RESVSP:
664         case XFS_IOC_RESVSP64:
665         case XFS_IOC_UNRESVSP:
666         case XFS_IOC_UNRESVSP64:
667                 if (bf->l_len <= 0) {
668                         error = -EINVAL;
669                         goto out_unlock;
670                 }
671                 break;
672         default:
673                 bf->l_len = 0;
674                 break;
675         }
676
677         if (bf->l_start < 0 ||
678             bf->l_start > mp->m_super->s_maxbytes ||
679             bf->l_start + bf->l_len < 0 ||
680             bf->l_start + bf->l_len >= mp->m_super->s_maxbytes) {
681                 error = -EINVAL;
682                 goto out_unlock;
683         }
684
685         switch (cmd) {
686         case XFS_IOC_ZERO_RANGE:
687                 error = xfs_zero_file_space(ip, bf->l_start, bf->l_len);
688                 if (!error)
689                         setprealloc = true;
690                 break;
691         case XFS_IOC_RESVSP:
692         case XFS_IOC_RESVSP64:
693                 error = xfs_alloc_file_space(ip, bf->l_start, bf->l_len,
694                                                 XFS_BMAPI_PREALLOC);
695                 if (!error)
696                         setprealloc = true;
697                 break;
698         case XFS_IOC_UNRESVSP:
699         case XFS_IOC_UNRESVSP64:
700                 error = xfs_free_file_space(ip, bf->l_start, bf->l_len);
701                 break;
702         case XFS_IOC_ALLOCSP:
703         case XFS_IOC_ALLOCSP64:
704         case XFS_IOC_FREESP:
705         case XFS_IOC_FREESP64:
706                 if (bf->l_start > XFS_ISIZE(ip)) {
707                         error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
708                                         bf->l_start - XFS_ISIZE(ip), 0);
709                         if (error)
710                                 goto out_unlock;
711                 }
712
713                 iattr.ia_valid = ATTR_SIZE;
714                 iattr.ia_size = bf->l_start;
715
716                 error = xfs_setattr_size(ip, &iattr);
717                 if (!error)
718                         clrprealloc = true;
719                 break;
720         default:
721                 ASSERT(0);
722                 error = -EINVAL;
723         }
724
725         if (error)
726                 goto out_unlock;
727
728         tp = xfs_trans_alloc(mp, XFS_TRANS_WRITEID);
729         error = xfs_trans_reserve(tp, &M_RES(mp)->tr_writeid, 0, 0);
730         if (error) {
731                 xfs_trans_cancel(tp, 0);
732                 goto out_unlock;
733         }
734
735         xfs_ilock(ip, XFS_ILOCK_EXCL);
736         xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
737
738         if (!(ioflags & XFS_IO_INVIS)) {
739                 ip->i_d.di_mode &= ~S_ISUID;
740                 if (ip->i_d.di_mode & S_IXGRP)
741                         ip->i_d.di_mode &= ~S_ISGID;
742                 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
743         }
744
745         if (setprealloc)
746                 ip->i_d.di_flags |= XFS_DIFLAG_PREALLOC;
747         else if (clrprealloc)
748                 ip->i_d.di_flags &= ~XFS_DIFLAG_PREALLOC;
749
750         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
751         if (filp->f_flags & O_DSYNC)
752                 xfs_trans_set_sync(tp);
753         error = xfs_trans_commit(tp, 0);
754
755 out_unlock:
756         xfs_iunlock(ip, XFS_IOLOCK_EXCL);
757         mnt_drop_write_file(filp);
758         return error;
759 }
760
761 STATIC int
762 xfs_ioc_bulkstat(
763         xfs_mount_t             *mp,
764         unsigned int            cmd,
765         void                    __user *arg)
766 {
767         xfs_fsop_bulkreq_t      bulkreq;
768         int                     count;  /* # of records returned */
769         xfs_ino_t               inlast; /* last inode number */
770         int                     done;
771         int                     error;
772
773         /* done = 1 if there are more stats to get and if bulkstat */
774         /* should be called again (unused here, but used in dmapi) */
775
776         if (!capable(CAP_SYS_ADMIN))
777                 return -EPERM;
778
779         if (XFS_FORCED_SHUTDOWN(mp))
780                 return -EIO;
781
782         if (copy_from_user(&bulkreq, arg, sizeof(xfs_fsop_bulkreq_t)))
783                 return -EFAULT;
784
785         if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
786                 return -EFAULT;
787
788         if ((count = bulkreq.icount) <= 0)
789                 return -EINVAL;
790
791         if (bulkreq.ubuffer == NULL)
792                 return -EINVAL;
793
794         if (cmd == XFS_IOC_FSINUMBERS)
795                 error = xfs_inumbers(mp, &inlast, &count,
796                                         bulkreq.ubuffer, xfs_inumbers_fmt);
797         else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE)
798                 error = xfs_bulkstat_one(mp, inlast, bulkreq.ubuffer,
799                                         sizeof(xfs_bstat_t), NULL, &done);
800         else    /* XFS_IOC_FSBULKSTAT */
801                 error = xfs_bulkstat(mp, &inlast, &count, xfs_bulkstat_one,
802                                      sizeof(xfs_bstat_t), bulkreq.ubuffer,
803                                      &done);
804
805         if (error)
806                 return error;
807
808         if (bulkreq.ocount != NULL) {
809                 if (copy_to_user(bulkreq.lastip, &inlast,
810                                                 sizeof(xfs_ino_t)))
811                         return -EFAULT;
812
813                 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
814                         return -EFAULT;
815         }
816
817         return 0;
818 }
819
820 STATIC int
821 xfs_ioc_fsgeometry_v1(
822         xfs_mount_t             *mp,
823         void                    __user *arg)
824 {
825         xfs_fsop_geom_t         fsgeo;
826         int                     error;
827
828         error = xfs_fs_geometry(mp, &fsgeo, 3);
829         if (error)
830                 return error;
831
832         /*
833          * Caller should have passed an argument of type
834          * xfs_fsop_geom_v1_t.  This is a proper subset of the
835          * xfs_fsop_geom_t that xfs_fs_geometry() fills in.
836          */
837         if (copy_to_user(arg, &fsgeo, sizeof(xfs_fsop_geom_v1_t)))
838                 return -EFAULT;
839         return 0;
840 }
841
842 STATIC int
843 xfs_ioc_fsgeometry(
844         xfs_mount_t             *mp,
845         void                    __user *arg)
846 {
847         xfs_fsop_geom_t         fsgeo;
848         int                     error;
849
850         error = xfs_fs_geometry(mp, &fsgeo, 4);
851         if (error)
852                 return error;
853
854         if (copy_to_user(arg, &fsgeo, sizeof(fsgeo)))
855                 return -EFAULT;
856         return 0;
857 }
858
859 /*
860  * Linux extended inode flags interface.
861  */
862
863 STATIC unsigned int
864 xfs_merge_ioc_xflags(
865         unsigned int    flags,
866         unsigned int    start)
867 {
868         unsigned int    xflags = start;
869
870         if (flags & FS_IMMUTABLE_FL)
871                 xflags |= XFS_XFLAG_IMMUTABLE;
872         else
873                 xflags &= ~XFS_XFLAG_IMMUTABLE;
874         if (flags & FS_APPEND_FL)
875                 xflags |= XFS_XFLAG_APPEND;
876         else
877                 xflags &= ~XFS_XFLAG_APPEND;
878         if (flags & FS_SYNC_FL)
879                 xflags |= XFS_XFLAG_SYNC;
880         else
881                 xflags &= ~XFS_XFLAG_SYNC;
882         if (flags & FS_NOATIME_FL)
883                 xflags |= XFS_XFLAG_NOATIME;
884         else
885                 xflags &= ~XFS_XFLAG_NOATIME;
886         if (flags & FS_NODUMP_FL)
887                 xflags |= XFS_XFLAG_NODUMP;
888         else
889                 xflags &= ~XFS_XFLAG_NODUMP;
890
891         return xflags;
892 }
893
894 STATIC unsigned int
895 xfs_di2lxflags(
896         __uint16_t      di_flags)
897 {
898         unsigned int    flags = 0;
899
900         if (di_flags & XFS_DIFLAG_IMMUTABLE)
901                 flags |= FS_IMMUTABLE_FL;
902         if (di_flags & XFS_DIFLAG_APPEND)
903                 flags |= FS_APPEND_FL;
904         if (di_flags & XFS_DIFLAG_SYNC)
905                 flags |= FS_SYNC_FL;
906         if (di_flags & XFS_DIFLAG_NOATIME)
907                 flags |= FS_NOATIME_FL;
908         if (di_flags & XFS_DIFLAG_NODUMP)
909                 flags |= FS_NODUMP_FL;
910         return flags;
911 }
912
913 STATIC int
914 xfs_ioc_fsgetxattr(
915         xfs_inode_t             *ip,
916         int                     attr,
917         void                    __user *arg)
918 {
919         struct fsxattr          fa;
920
921         memset(&fa, 0, sizeof(struct fsxattr));
922
923         xfs_ilock(ip, XFS_ILOCK_SHARED);
924         fa.fsx_xflags = xfs_ip2xflags(ip);
925         fa.fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
926         fa.fsx_projid = xfs_get_projid(ip);
927
928         if (attr) {
929                 if (ip->i_afp) {
930                         if (ip->i_afp->if_flags & XFS_IFEXTENTS)
931                                 fa.fsx_nextents = ip->i_afp->if_bytes /
932                                                         sizeof(xfs_bmbt_rec_t);
933                         else
934                                 fa.fsx_nextents = ip->i_d.di_anextents;
935                 } else
936                         fa.fsx_nextents = 0;
937         } else {
938                 if (ip->i_df.if_flags & XFS_IFEXTENTS)
939                         fa.fsx_nextents = ip->i_df.if_bytes /
940                                                 sizeof(xfs_bmbt_rec_t);
941                 else
942                         fa.fsx_nextents = ip->i_d.di_nextents;
943         }
944         xfs_iunlock(ip, XFS_ILOCK_SHARED);
945
946         if (copy_to_user(arg, &fa, sizeof(fa)))
947                 return -EFAULT;
948         return 0;
949 }
950
951 STATIC void
952 xfs_set_diflags(
953         struct xfs_inode        *ip,
954         unsigned int            xflags)
955 {
956         unsigned int            di_flags;
957
958         /* can't set PREALLOC this way, just preserve it */
959         di_flags = (ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);
960         if (xflags & XFS_XFLAG_IMMUTABLE)
961                 di_flags |= XFS_DIFLAG_IMMUTABLE;
962         if (xflags & XFS_XFLAG_APPEND)
963                 di_flags |= XFS_DIFLAG_APPEND;
964         if (xflags & XFS_XFLAG_SYNC)
965                 di_flags |= XFS_DIFLAG_SYNC;
966         if (xflags & XFS_XFLAG_NOATIME)
967                 di_flags |= XFS_DIFLAG_NOATIME;
968         if (xflags & XFS_XFLAG_NODUMP)
969                 di_flags |= XFS_DIFLAG_NODUMP;
970         if (xflags & XFS_XFLAG_NODEFRAG)
971                 di_flags |= XFS_DIFLAG_NODEFRAG;
972         if (xflags & XFS_XFLAG_FILESTREAM)
973                 di_flags |= XFS_DIFLAG_FILESTREAM;
974         if (S_ISDIR(ip->i_d.di_mode)) {
975                 if (xflags & XFS_XFLAG_RTINHERIT)
976                         di_flags |= XFS_DIFLAG_RTINHERIT;
977                 if (xflags & XFS_XFLAG_NOSYMLINKS)
978                         di_flags |= XFS_DIFLAG_NOSYMLINKS;
979                 if (xflags & XFS_XFLAG_EXTSZINHERIT)
980                         di_flags |= XFS_DIFLAG_EXTSZINHERIT;
981                 if (xflags & XFS_XFLAG_PROJINHERIT)
982                         di_flags |= XFS_DIFLAG_PROJINHERIT;
983         } else if (S_ISREG(ip->i_d.di_mode)) {
984                 if (xflags & XFS_XFLAG_REALTIME)
985                         di_flags |= XFS_DIFLAG_REALTIME;
986                 if (xflags & XFS_XFLAG_EXTSIZE)
987                         di_flags |= XFS_DIFLAG_EXTSIZE;
988         }
989
990         ip->i_d.di_flags = di_flags;
991 }
992
993 STATIC void
994 xfs_diflags_to_linux(
995         struct xfs_inode        *ip)
996 {
997         struct inode            *inode = VFS_I(ip);
998         unsigned int            xflags = xfs_ip2xflags(ip);
999
1000         if (xflags & XFS_XFLAG_IMMUTABLE)
1001                 inode->i_flags |= S_IMMUTABLE;
1002         else
1003                 inode->i_flags &= ~S_IMMUTABLE;
1004         if (xflags & XFS_XFLAG_APPEND)
1005                 inode->i_flags |= S_APPEND;
1006         else
1007                 inode->i_flags &= ~S_APPEND;
1008         if (xflags & XFS_XFLAG_SYNC)
1009                 inode->i_flags |= S_SYNC;
1010         else
1011                 inode->i_flags &= ~S_SYNC;
1012         if (xflags & XFS_XFLAG_NOATIME)
1013                 inode->i_flags |= S_NOATIME;
1014         else
1015                 inode->i_flags &= ~S_NOATIME;
1016 }
1017
1018 #define FSX_PROJID      1
1019 #define FSX_EXTSIZE     2
1020 #define FSX_XFLAGS      4
1021 #define FSX_NONBLOCK    8
1022
1023 STATIC int
1024 xfs_ioctl_setattr(
1025         xfs_inode_t             *ip,
1026         struct fsxattr          *fa,
1027         int                     mask)
1028 {
1029         struct xfs_mount        *mp = ip->i_mount;
1030         struct xfs_trans        *tp;
1031         unsigned int            lock_flags = 0;
1032         struct xfs_dquot        *udqp = NULL;
1033         struct xfs_dquot        *pdqp = NULL;
1034         struct xfs_dquot        *olddquot = NULL;
1035         int                     code;
1036
1037         trace_xfs_ioctl_setattr(ip);
1038
1039         if (mp->m_flags & XFS_MOUNT_RDONLY)
1040                 return -EROFS;
1041         if (XFS_FORCED_SHUTDOWN(mp))
1042                 return -EIO;
1043
1044         /*
1045          * Disallow 32bit project ids when projid32bit feature is not enabled.
1046          */
1047         if ((mask & FSX_PROJID) && (fa->fsx_projid > (__uint16_t)-1) &&
1048                         !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
1049                 return -EINVAL;
1050
1051         /*
1052          * If disk quotas is on, we make sure that the dquots do exist on disk,
1053          * before we start any other transactions. Trying to do this later
1054          * is messy. We don't care to take a readlock to look at the ids
1055          * in inode here, because we can't hold it across the trans_reserve.
1056          * If the IDs do change before we take the ilock, we're covered
1057          * because the i_*dquot fields will get updated anyway.
1058          */
1059         if (XFS_IS_QUOTA_ON(mp) && (mask & FSX_PROJID)) {
1060                 code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
1061                                          ip->i_d.di_gid, fa->fsx_projid,
1062                                          XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
1063                 if (code)
1064                         return code;
1065         }
1066
1067         /*
1068          * For the other attributes, we acquire the inode lock and
1069          * first do an error checking pass.
1070          */
1071         tp = xfs_trans_alloc(mp, XFS_TRANS_SETATTR_NOT_SIZE);
1072         code = xfs_trans_reserve(tp, &M_RES(mp)->tr_ichange, 0, 0);
1073         if (code)
1074                 goto error_return;
1075
1076         lock_flags = XFS_ILOCK_EXCL;
1077         xfs_ilock(ip, lock_flags);
1078
1079         /*
1080          * CAP_FOWNER overrides the following restrictions:
1081          *
1082          * The user ID of the calling process must be equal
1083          * to the file owner ID, except in cases where the
1084          * CAP_FSETID capability is applicable.
1085          */
1086         if (!inode_owner_or_capable(VFS_I(ip))) {
1087                 code = -EPERM;
1088                 goto error_return;
1089         }
1090
1091         /*
1092          * Do a quota reservation only if projid is actually going to change.
1093          * Only allow changing of projid from init_user_ns since it is a
1094          * non user namespace aware identifier.
1095          */
1096         if (mask & FSX_PROJID) {
1097                 if (current_user_ns() != &init_user_ns) {
1098                         code = -EINVAL;
1099                         goto error_return;
1100                 }
1101
1102                 if (XFS_IS_QUOTA_RUNNING(mp) &&
1103                     XFS_IS_PQUOTA_ON(mp) &&
1104                     xfs_get_projid(ip) != fa->fsx_projid) {
1105                         ASSERT(tp);
1106                         code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL,
1107                                                 pdqp, capable(CAP_FOWNER) ?
1108                                                 XFS_QMOPT_FORCE_RES : 0);
1109                         if (code)       /* out of quota */
1110                                 goto error_return;
1111                 }
1112         }
1113
1114         if (mask & FSX_EXTSIZE) {
1115                 /*
1116                  * Can't change extent size if any extents are allocated.
1117                  */
1118                 if (ip->i_d.di_nextents &&
1119                     ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) !=
1120                      fa->fsx_extsize)) {
1121                         code = -EINVAL; /* EFBIG? */
1122                         goto error_return;
1123                 }
1124
1125                 /*
1126                  * Extent size must be a multiple of the appropriate block
1127                  * size, if set at all. It must also be smaller than the
1128                  * maximum extent size supported by the filesystem.
1129                  *
1130                  * Also, for non-realtime files, limit the extent size hint to
1131                  * half the size of the AGs in the filesystem so alignment
1132                  * doesn't result in extents larger than an AG.
1133                  */
1134                 if (fa->fsx_extsize != 0) {
1135                         xfs_extlen_t    size;
1136                         xfs_fsblock_t   extsize_fsb;
1137
1138                         extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
1139                         if (extsize_fsb > MAXEXTLEN) {
1140                                 code = -EINVAL;
1141                                 goto error_return;
1142                         }
1143
1144                         if (XFS_IS_REALTIME_INODE(ip) ||
1145                             ((mask & FSX_XFLAGS) &&
1146                             (fa->fsx_xflags & XFS_XFLAG_REALTIME))) {
1147                                 size = mp->m_sb.sb_rextsize <<
1148                                        mp->m_sb.sb_blocklog;
1149                         } else {
1150                                 size = mp->m_sb.sb_blocksize;
1151                                 if (extsize_fsb > mp->m_sb.sb_agblocks / 2) {
1152                                         code = -EINVAL;
1153                                         goto error_return;
1154                                 }
1155                         }
1156
1157                         if (fa->fsx_extsize % size) {
1158                                 code = -EINVAL;
1159                                 goto error_return;
1160                         }
1161                 }
1162         }
1163
1164
1165         if (mask & FSX_XFLAGS) {
1166                 /*
1167                  * Can't change realtime flag if any extents are allocated.
1168                  */
1169                 if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
1170                     (XFS_IS_REALTIME_INODE(ip)) !=
1171                     (fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
1172                         code = -EINVAL; /* EFBIG? */
1173                         goto error_return;
1174                 }
1175
1176                 /*
1177                  * If realtime flag is set then must have realtime data.
1178                  */
1179                 if ((fa->fsx_xflags & XFS_XFLAG_REALTIME)) {
1180                         if ((mp->m_sb.sb_rblocks == 0) ||
1181                             (mp->m_sb.sb_rextsize == 0) ||
1182                             (ip->i_d.di_extsize % mp->m_sb.sb_rextsize)) {
1183                                 code = -EINVAL;
1184                                 goto error_return;
1185                         }
1186                 }
1187
1188                 /*
1189                  * Can't modify an immutable/append-only file unless
1190                  * we have appropriate permission.
1191                  */
1192                 if ((ip->i_d.di_flags &
1193                                 (XFS_DIFLAG_IMMUTABLE|XFS_DIFLAG_APPEND) ||
1194                      (fa->fsx_xflags &
1195                                 (XFS_XFLAG_IMMUTABLE | XFS_XFLAG_APPEND))) &&
1196                     !capable(CAP_LINUX_IMMUTABLE)) {
1197                         code = -EPERM;
1198                         goto error_return;
1199                 }
1200         }
1201
1202         xfs_trans_ijoin(tp, ip, 0);
1203
1204         /*
1205          * Change file ownership.  Must be the owner or privileged.
1206          */
1207         if (mask & FSX_PROJID) {
1208                 /*
1209                  * CAP_FSETID overrides the following restrictions:
1210                  *
1211                  * The set-user-ID and set-group-ID bits of a file will be
1212                  * cleared upon successful return from chown()
1213                  */
1214                 if ((ip->i_d.di_mode & (S_ISUID|S_ISGID)) &&
1215                     !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
1216                         ip->i_d.di_mode &= ~(S_ISUID|S_ISGID);
1217
1218                 /*
1219                  * Change the ownerships and register quota modifications
1220                  * in the transaction.
1221                  */
1222                 if (xfs_get_projid(ip) != fa->fsx_projid) {
1223                         if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
1224                                 olddquot = xfs_qm_vop_chown(tp, ip,
1225                                                         &ip->i_pdquot, pdqp);
1226                         }
1227                         ASSERT(ip->i_d.di_version > 1);
1228                         xfs_set_projid(ip, fa->fsx_projid);
1229                 }
1230
1231         }
1232
1233         if (mask & FSX_XFLAGS) {
1234                 xfs_set_diflags(ip, fa->fsx_xflags);
1235                 xfs_diflags_to_linux(ip);
1236         }
1237
1238         /*
1239          * Only set the extent size hint if we've already determined that the
1240          * extent size hint should be set on the inode. If no extent size flags
1241          * are set on the inode then unconditionally clear the extent size hint.
1242          */
1243         if (mask & FSX_EXTSIZE) {
1244                 int     extsize = 0;
1245
1246                 if (ip->i_d.di_flags &
1247                                 (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
1248                         extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
1249                 ip->i_d.di_extsize = extsize;
1250         }
1251
1252         xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1253         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1254
1255         XFS_STATS_INC(xs_ig_attrchg);
1256
1257         /*
1258          * If this is a synchronous mount, make sure that the
1259          * transaction goes to disk before returning to the user.
1260          * This is slightly sub-optimal in that truncates require
1261          * two sync transactions instead of one for wsync filesystems.
1262          * One for the truncate and one for the timestamps since we
1263          * don't want to change the timestamps unless we're sure the
1264          * truncate worked.  Truncates are less than 1% of the laddis
1265          * mix so this probably isn't worth the trouble to optimize.
1266          */
1267         if (mp->m_flags & XFS_MOUNT_WSYNC)
1268                 xfs_trans_set_sync(tp);
1269         code = xfs_trans_commit(tp, 0);
1270         xfs_iunlock(ip, lock_flags);
1271
1272         /*
1273          * Release any dquot(s) the inode had kept before chown.
1274          */
1275         xfs_qm_dqrele(olddquot);
1276         xfs_qm_dqrele(udqp);
1277         xfs_qm_dqrele(pdqp);
1278
1279         return code;
1280
1281  error_return:
1282         xfs_qm_dqrele(udqp);
1283         xfs_qm_dqrele(pdqp);
1284         xfs_trans_cancel(tp, 0);
1285         if (lock_flags)
1286                 xfs_iunlock(ip, lock_flags);
1287         return code;
1288 }
1289
1290 STATIC int
1291 xfs_ioc_fssetxattr(
1292         xfs_inode_t             *ip,
1293         struct file             *filp,
1294         void                    __user *arg)
1295 {
1296         struct fsxattr          fa;
1297         unsigned int            mask;
1298         int error;
1299
1300         if (copy_from_user(&fa, arg, sizeof(fa)))
1301                 return -EFAULT;
1302
1303         mask = FSX_XFLAGS | FSX_EXTSIZE | FSX_PROJID;
1304         if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
1305                 mask |= FSX_NONBLOCK;
1306
1307         error = mnt_want_write_file(filp);
1308         if (error)
1309                 return error;
1310         error = xfs_ioctl_setattr(ip, &fa, mask);
1311         mnt_drop_write_file(filp);
1312         return error;
1313 }
1314
1315 STATIC int
1316 xfs_ioc_getxflags(
1317         xfs_inode_t             *ip,
1318         void                    __user *arg)
1319 {
1320         unsigned int            flags;
1321
1322         flags = xfs_di2lxflags(ip->i_d.di_flags);
1323         if (copy_to_user(arg, &flags, sizeof(flags)))
1324                 return -EFAULT;
1325         return 0;
1326 }
1327
1328 STATIC int
1329 xfs_ioc_setxflags(
1330         xfs_inode_t             *ip,
1331         struct file             *filp,
1332         void                    __user *arg)
1333 {
1334         struct fsxattr          fa;
1335         unsigned int            flags;
1336         unsigned int            mask;
1337         int error;
1338
1339         if (copy_from_user(&flags, arg, sizeof(flags)))
1340                 return -EFAULT;
1341
1342         if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
1343                       FS_NOATIME_FL | FS_NODUMP_FL | \
1344                       FS_SYNC_FL))
1345                 return -EOPNOTSUPP;
1346
1347         mask = FSX_XFLAGS;
1348         if (filp->f_flags & (O_NDELAY|O_NONBLOCK))
1349                 mask |= FSX_NONBLOCK;
1350         fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
1351
1352         error = mnt_want_write_file(filp);
1353         if (error)
1354                 return error;
1355         error = xfs_ioctl_setattr(ip, &fa, mask);
1356         mnt_drop_write_file(filp);
1357         return error;
1358 }
1359
1360 STATIC int
1361 xfs_getbmap_format(void **ap, struct getbmapx *bmv, int *full)
1362 {
1363         struct getbmap __user   *base = (struct getbmap __user *)*ap;
1364
1365         /* copy only getbmap portion (not getbmapx) */
1366         if (copy_to_user(base, bmv, sizeof(struct getbmap)))
1367                 return -EFAULT;
1368
1369         *ap += sizeof(struct getbmap);
1370         return 0;
1371 }
1372
1373 STATIC int
1374 xfs_ioc_getbmap(
1375         struct xfs_inode        *ip,
1376         int                     ioflags,
1377         unsigned int            cmd,
1378         void                    __user *arg)
1379 {
1380         struct getbmapx         bmx;
1381         int                     error;
1382
1383         if (copy_from_user(&bmx, arg, sizeof(struct getbmapx)))
1384                 return -EFAULT;
1385
1386         if (bmx.bmv_count < 2)
1387                 return -EINVAL;
1388
1389         bmx.bmv_iflags = (cmd == XFS_IOC_GETBMAPA ? BMV_IF_ATTRFORK : 0);
1390         if (ioflags & XFS_IO_INVIS)
1391                 bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
1392
1393         error = xfs_getbmap(ip, &bmx, xfs_getbmap_format,
1394                             (__force struct getbmap *)arg+1);
1395         if (error)
1396                 return error;
1397
1398         /* copy back header - only size of getbmap */
1399         if (copy_to_user(arg, &bmx, sizeof(struct getbmap)))
1400                 return -EFAULT;
1401         return 0;
1402 }
1403
1404 STATIC int
1405 xfs_getbmapx_format(void **ap, struct getbmapx *bmv, int *full)
1406 {
1407         struct getbmapx __user  *base = (struct getbmapx __user *)*ap;
1408
1409         if (copy_to_user(base, bmv, sizeof(struct getbmapx)))
1410                 return -EFAULT;
1411
1412         *ap += sizeof(struct getbmapx);
1413         return 0;
1414 }
1415
1416 STATIC int
1417 xfs_ioc_getbmapx(
1418         struct xfs_inode        *ip,
1419         void                    __user *arg)
1420 {
1421         struct getbmapx         bmx;
1422         int                     error;
1423
1424         if (copy_from_user(&bmx, arg, sizeof(bmx)))
1425                 return -EFAULT;
1426
1427         if (bmx.bmv_count < 2)
1428                 return -EINVAL;
1429
1430         if (bmx.bmv_iflags & (~BMV_IF_VALID))
1431                 return -EINVAL;
1432
1433         error = xfs_getbmap(ip, &bmx, xfs_getbmapx_format,
1434                             (__force struct getbmapx *)arg+1);
1435         if (error)
1436                 return error;
1437
1438         /* copy back header */
1439         if (copy_to_user(arg, &bmx, sizeof(struct getbmapx)))
1440                 return -EFAULT;
1441
1442         return 0;
1443 }
1444
1445 int
1446 xfs_ioc_swapext(
1447         xfs_swapext_t   *sxp)
1448 {
1449         xfs_inode_t     *ip, *tip;
1450         struct fd       f, tmp;
1451         int             error = 0;
1452
1453         /* Pull information for the target fd */
1454         f = fdget((int)sxp->sx_fdtarget);
1455         if (!f.file) {
1456                 error = -EINVAL;
1457                 goto out;
1458         }
1459
1460         if (!(f.file->f_mode & FMODE_WRITE) ||
1461             !(f.file->f_mode & FMODE_READ) ||
1462             (f.file->f_flags & O_APPEND)) {
1463                 error = -EBADF;
1464                 goto out_put_file;
1465         }
1466
1467         tmp = fdget((int)sxp->sx_fdtmp);
1468         if (!tmp.file) {
1469                 error = -EINVAL;
1470                 goto out_put_file;
1471         }
1472
1473         if (!(tmp.file->f_mode & FMODE_WRITE) ||
1474             !(tmp.file->f_mode & FMODE_READ) ||
1475             (tmp.file->f_flags & O_APPEND)) {
1476                 error = -EBADF;
1477                 goto out_put_tmp_file;
1478         }
1479
1480         if (IS_SWAPFILE(file_inode(f.file)) ||
1481             IS_SWAPFILE(file_inode(tmp.file))) {
1482                 error = -EINVAL;
1483                 goto out_put_tmp_file;
1484         }
1485
1486         ip = XFS_I(file_inode(f.file));
1487         tip = XFS_I(file_inode(tmp.file));
1488
1489         if (ip->i_mount != tip->i_mount) {
1490                 error = -EINVAL;
1491                 goto out_put_tmp_file;
1492         }
1493
1494         if (ip->i_ino == tip->i_ino) {
1495                 error = -EINVAL;
1496                 goto out_put_tmp_file;
1497         }
1498
1499         if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
1500                 error = -EIO;
1501                 goto out_put_tmp_file;
1502         }
1503
1504         error = xfs_swap_extents(ip, tip, sxp);
1505
1506  out_put_tmp_file:
1507         fdput(tmp);
1508  out_put_file:
1509         fdput(f);
1510  out:
1511         return error;
1512 }
1513
1514 /*
1515  * Note: some of the ioctl's return positive numbers as a
1516  * byte count indicating success, such as readlink_by_handle.
1517  * So we don't "sign flip" like most other routines.  This means
1518  * true errors need to be returned as a negative value.
1519  */
1520 long
1521 xfs_file_ioctl(
1522         struct file             *filp,
1523         unsigned int            cmd,
1524         unsigned long           p)
1525 {
1526         struct inode            *inode = file_inode(filp);
1527         struct xfs_inode        *ip = XFS_I(inode);
1528         struct xfs_mount        *mp = ip->i_mount;
1529         void                    __user *arg = (void __user *)p;
1530         int                     ioflags = 0;
1531         int                     error;
1532
1533         if (filp->f_mode & FMODE_NOCMTIME)
1534                 ioflags |= XFS_IO_INVIS;
1535
1536         trace_xfs_file_ioctl(ip);
1537
1538         switch (cmd) {
1539         case FITRIM:
1540                 return xfs_ioc_trim(mp, arg);
1541         case XFS_IOC_ALLOCSP:
1542         case XFS_IOC_FREESP:
1543         case XFS_IOC_RESVSP:
1544         case XFS_IOC_UNRESVSP:
1545         case XFS_IOC_ALLOCSP64:
1546         case XFS_IOC_FREESP64:
1547         case XFS_IOC_RESVSP64:
1548         case XFS_IOC_UNRESVSP64:
1549         case XFS_IOC_ZERO_RANGE: {
1550                 xfs_flock64_t           bf;
1551
1552                 if (copy_from_user(&bf, arg, sizeof(bf)))
1553                         return -EFAULT;
1554                 return xfs_ioc_space(ip, inode, filp, ioflags, cmd, &bf);
1555         }
1556         case XFS_IOC_DIOINFO: {
1557                 struct dioattr  da;
1558                 xfs_buftarg_t   *target =
1559                         XFS_IS_REALTIME_INODE(ip) ?
1560                         mp->m_rtdev_targp : mp->m_ddev_targp;
1561
1562                 da.d_mem =  da.d_miniosz = target->bt_logical_sectorsize;
1563                 da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);
1564
1565                 if (copy_to_user(arg, &da, sizeof(da)))
1566                         return -EFAULT;
1567                 return 0;
1568         }
1569
1570         case XFS_IOC_FSBULKSTAT_SINGLE:
1571         case XFS_IOC_FSBULKSTAT:
1572         case XFS_IOC_FSINUMBERS:
1573                 return xfs_ioc_bulkstat(mp, cmd, arg);
1574
1575         case XFS_IOC_FSGEOMETRY_V1:
1576                 return xfs_ioc_fsgeometry_v1(mp, arg);
1577
1578         case XFS_IOC_FSGEOMETRY:
1579                 return xfs_ioc_fsgeometry(mp, arg);
1580
1581         case XFS_IOC_GETVERSION:
1582                 return put_user(inode->i_generation, (int __user *)arg);
1583
1584         case XFS_IOC_FSGETXATTR:
1585                 return xfs_ioc_fsgetxattr(ip, 0, arg);
1586         case XFS_IOC_FSGETXATTRA:
1587                 return xfs_ioc_fsgetxattr(ip, 1, arg);
1588         case XFS_IOC_FSSETXATTR:
1589                 return xfs_ioc_fssetxattr(ip, filp, arg);
1590         case XFS_IOC_GETXFLAGS:
1591                 return xfs_ioc_getxflags(ip, arg);
1592         case XFS_IOC_SETXFLAGS:
1593                 return xfs_ioc_setxflags(ip, filp, arg);
1594
1595         case XFS_IOC_FSSETDM: {
1596                 struct fsdmidata        dmi;
1597
1598                 if (copy_from_user(&dmi, arg, sizeof(dmi)))
1599                         return -EFAULT;
1600
1601                 error = mnt_want_write_file(filp);
1602                 if (error)
1603                         return error;
1604
1605                 error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
1606                                 dmi.fsd_dmstate);
1607                 mnt_drop_write_file(filp);
1608                 return error;
1609         }
1610
1611         case XFS_IOC_GETBMAP:
1612         case XFS_IOC_GETBMAPA:
1613                 return xfs_ioc_getbmap(ip, ioflags, cmd, arg);
1614
1615         case XFS_IOC_GETBMAPX:
1616                 return xfs_ioc_getbmapx(ip, arg);
1617
1618         case XFS_IOC_FD_TO_HANDLE:
1619         case XFS_IOC_PATH_TO_HANDLE:
1620         case XFS_IOC_PATH_TO_FSHANDLE: {
1621                 xfs_fsop_handlereq_t    hreq;
1622
1623                 if (copy_from_user(&hreq, arg, sizeof(hreq)))
1624                         return -EFAULT;
1625                 return xfs_find_handle(cmd, &hreq);
1626         }
1627         case XFS_IOC_OPEN_BY_HANDLE: {
1628                 xfs_fsop_handlereq_t    hreq;
1629
1630                 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
1631                         return -EFAULT;
1632                 return xfs_open_by_handle(filp, &hreq);
1633         }
1634         case XFS_IOC_FSSETDM_BY_HANDLE:
1635                 return xfs_fssetdm_by_handle(filp, arg);
1636
1637         case XFS_IOC_READLINK_BY_HANDLE: {
1638                 xfs_fsop_handlereq_t    hreq;
1639
1640                 if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
1641                         return -EFAULT;
1642                 return xfs_readlink_by_handle(filp, &hreq);
1643         }
1644         case XFS_IOC_ATTRLIST_BY_HANDLE:
1645                 return xfs_attrlist_by_handle(filp, arg);
1646
1647         case XFS_IOC_ATTRMULTI_BY_HANDLE:
1648                 return xfs_attrmulti_by_handle(filp, arg);
1649
1650         case XFS_IOC_SWAPEXT: {
1651                 struct xfs_swapext      sxp;
1652
1653                 if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
1654                         return -EFAULT;
1655                 error = mnt_want_write_file(filp);
1656                 if (error)
1657                         return error;
1658                 error = xfs_ioc_swapext(&sxp);
1659                 mnt_drop_write_file(filp);
1660                 return error;
1661         }
1662
1663         case XFS_IOC_FSCOUNTS: {
1664                 xfs_fsop_counts_t out;
1665
1666                 error = xfs_fs_counts(mp, &out);
1667                 if (error)
1668                         return error;
1669
1670                 if (copy_to_user(arg, &out, sizeof(out)))
1671                         return -EFAULT;
1672                 return 0;
1673         }
1674
1675         case XFS_IOC_SET_RESBLKS: {
1676                 xfs_fsop_resblks_t inout;
1677                 __uint64_t         in;
1678
1679                 if (!capable(CAP_SYS_ADMIN))
1680                         return -EPERM;
1681
1682                 if (mp->m_flags & XFS_MOUNT_RDONLY)
1683                         return -EROFS;
1684
1685                 if (copy_from_user(&inout, arg, sizeof(inout)))
1686                         return -EFAULT;
1687
1688                 error = mnt_want_write_file(filp);
1689                 if (error)
1690                         return error;
1691
1692                 /* input parameter is passed in resblks field of structure */
1693                 in = inout.resblks;
1694                 error = xfs_reserve_blocks(mp, &in, &inout);
1695                 mnt_drop_write_file(filp);
1696                 if (error)
1697                         return error;
1698
1699                 if (copy_to_user(arg, &inout, sizeof(inout)))
1700                         return -EFAULT;
1701                 return 0;
1702         }
1703
1704         case XFS_IOC_GET_RESBLKS: {
1705                 xfs_fsop_resblks_t out;
1706
1707                 if (!capable(CAP_SYS_ADMIN))
1708                         return -EPERM;
1709
1710                 error = xfs_reserve_blocks(mp, NULL, &out);
1711                 if (error)
1712                         return error;
1713
1714                 if (copy_to_user(arg, &out, sizeof(out)))
1715                         return -EFAULT;
1716
1717                 return 0;
1718         }
1719
1720         case XFS_IOC_FSGROWFSDATA: {
1721                 xfs_growfs_data_t in;
1722
1723                 if (copy_from_user(&in, arg, sizeof(in)))
1724                         return -EFAULT;
1725
1726                 error = mnt_want_write_file(filp);
1727                 if (error)
1728                         return error;
1729                 error = xfs_growfs_data(mp, &in);
1730                 mnt_drop_write_file(filp);
1731                 return error;
1732         }
1733
1734         case XFS_IOC_FSGROWFSLOG: {
1735                 xfs_growfs_log_t in;
1736
1737                 if (copy_from_user(&in, arg, sizeof(in)))
1738                         return -EFAULT;
1739
1740                 error = mnt_want_write_file(filp);
1741                 if (error)
1742                         return error;
1743                 error = xfs_growfs_log(mp, &in);
1744                 mnt_drop_write_file(filp);
1745                 return error;
1746         }
1747
1748         case XFS_IOC_FSGROWFSRT: {
1749                 xfs_growfs_rt_t in;
1750
1751                 if (copy_from_user(&in, arg, sizeof(in)))
1752                         return -EFAULT;
1753
1754                 error = mnt_want_write_file(filp);
1755                 if (error)
1756                         return error;
1757                 error = xfs_growfs_rt(mp, &in);
1758                 mnt_drop_write_file(filp);
1759                 return error;
1760         }
1761
1762         case XFS_IOC_GOINGDOWN: {
1763                 __uint32_t in;
1764
1765                 if (!capable(CAP_SYS_ADMIN))
1766                         return -EPERM;
1767
1768                 if (get_user(in, (__uint32_t __user *)arg))
1769                         return -EFAULT;
1770
1771                 return xfs_fs_goingdown(mp, in);
1772         }
1773
1774         case XFS_IOC_ERROR_INJECTION: {
1775                 xfs_error_injection_t in;
1776
1777                 if (!capable(CAP_SYS_ADMIN))
1778                         return -EPERM;
1779
1780                 if (copy_from_user(&in, arg, sizeof(in)))
1781                         return -EFAULT;
1782
1783                 return xfs_errortag_add(in.errtag, mp);
1784         }
1785
1786         case XFS_IOC_ERROR_CLEARALL:
1787                 if (!capable(CAP_SYS_ADMIN))
1788                         return -EPERM;
1789
1790                 return xfs_errortag_clearall(mp, 1);
1791
1792         case XFS_IOC_FREE_EOFBLOCKS: {
1793                 struct xfs_fs_eofblocks eofb;
1794                 struct xfs_eofblocks keofb;
1795
1796                 if (!capable(CAP_SYS_ADMIN))
1797                         return -EPERM;
1798
1799                 if (mp->m_flags & XFS_MOUNT_RDONLY)
1800                         return -EROFS;
1801
1802                 if (copy_from_user(&eofb, arg, sizeof(eofb)))
1803                         return -EFAULT;
1804
1805                 error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
1806                 if (error)
1807                         return error;
1808
1809                 return xfs_icache_free_eofblocks(mp, &keofb);
1810         }
1811
1812         default:
1813                 return -ENOTTY;
1814         }
1815 }