xfs: introduce new v5 bulkstat structure
[platform/kernel/linux-rpi.git] / fs / xfs / xfs_ioctl32.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2004-2005 Silicon Graphics, Inc.
4  * All Rights Reserved.
5  */
6 #include <linux/mount.h>
7 #include <linux/fsmap.h>
8 #include "xfs.h"
9 #include "xfs_fs.h"
10 #include "xfs_shared.h"
11 #include "xfs_format.h"
12 #include "xfs_log_format.h"
13 #include "xfs_trans_resv.h"
14 #include "xfs_mount.h"
15 #include "xfs_inode.h"
16 #include "xfs_iwalk.h"
17 #include "xfs_itable.h"
18 #include "xfs_fsops.h"
19 #include "xfs_rtalloc.h"
20 #include "xfs_attr.h"
21 #include "xfs_ioctl.h"
22 #include "xfs_ioctl32.h"
23 #include "xfs_trace.h"
24 #include "xfs_sb.h"
25
26 #define  _NATIVE_IOC(cmd, type) \
27           _IOC(_IOC_DIR(cmd), _IOC_TYPE(cmd), _IOC_NR(cmd), sizeof(type))
28
29 #ifdef BROKEN_X86_ALIGNMENT
30 STATIC int
31 xfs_compat_flock64_copyin(
32         xfs_flock64_t           *bf,
33         compat_xfs_flock64_t    __user *arg32)
34 {
35         if (get_user(bf->l_type,        &arg32->l_type) ||
36             get_user(bf->l_whence,      &arg32->l_whence) ||
37             get_user(bf->l_start,       &arg32->l_start) ||
38             get_user(bf->l_len,         &arg32->l_len) ||
39             get_user(bf->l_sysid,       &arg32->l_sysid) ||
40             get_user(bf->l_pid,         &arg32->l_pid) ||
41             copy_from_user(bf->l_pad,   &arg32->l_pad,  4*sizeof(u32)))
42                 return -EFAULT;
43         return 0;
44 }
45
46 STATIC int
47 xfs_compat_ioc_fsgeometry_v1(
48         struct xfs_mount          *mp,
49         compat_xfs_fsop_geom_v1_t __user *arg32)
50 {
51         struct xfs_fsop_geom      fsgeo;
52
53         xfs_fs_geometry(&mp->m_sb, &fsgeo, 3);
54         /* The 32-bit variant simply has some padding at the end */
55         if (copy_to_user(arg32, &fsgeo, sizeof(struct compat_xfs_fsop_geom_v1)))
56                 return -EFAULT;
57         return 0;
58 }
59
60 STATIC int
61 xfs_compat_growfs_data_copyin(
62         struct xfs_growfs_data   *in,
63         compat_xfs_growfs_data_t __user *arg32)
64 {
65         if (get_user(in->newblocks, &arg32->newblocks) ||
66             get_user(in->imaxpct,   &arg32->imaxpct))
67                 return -EFAULT;
68         return 0;
69 }
70
71 STATIC int
72 xfs_compat_growfs_rt_copyin(
73         struct xfs_growfs_rt     *in,
74         compat_xfs_growfs_rt_t  __user *arg32)
75 {
76         if (get_user(in->newblocks, &arg32->newblocks) ||
77             get_user(in->extsize,   &arg32->extsize))
78                 return -EFAULT;
79         return 0;
80 }
81
82 STATIC int
83 xfs_fsinumbers_fmt_compat(
84         struct xfs_ibulk        *breq,
85         const struct xfs_inogrp *igrp)
86 {
87         struct compat_xfs_inogrp __user *p32 = breq->ubuffer;
88
89         if (put_user(igrp->xi_startino,   &p32->xi_startino) ||
90             put_user(igrp->xi_alloccount, &p32->xi_alloccount) ||
91             put_user(igrp->xi_allocmask,  &p32->xi_allocmask))
92                 return -EFAULT;
93
94         return xfs_ibulk_advance(breq, sizeof(struct compat_xfs_inogrp));
95 }
96
97 #else
98 #define xfs_fsinumbers_fmt_compat xfs_fsinumbers_fmt
99 #endif  /* BROKEN_X86_ALIGNMENT */
100
101 STATIC int
102 xfs_ioctl32_bstime_copyin(
103         xfs_bstime_t            *bstime,
104         compat_xfs_bstime_t     __user *bstime32)
105 {
106         compat_time_t           sec32;  /* tv_sec differs on 64 vs. 32 */
107
108         if (get_user(sec32,             &bstime32->tv_sec)      ||
109             get_user(bstime->tv_nsec,   &bstime32->tv_nsec))
110                 return -EFAULT;
111         bstime->tv_sec = sec32;
112         return 0;
113 }
114
115 /*
116  * struct xfs_bstat has differing alignment on intel, & bstime_t sizes
117  * everywhere
118  */
119 STATIC int
120 xfs_ioctl32_bstat_copyin(
121         struct xfs_bstat                *bstat,
122         struct compat_xfs_bstat __user  *bstat32)
123 {
124         if (get_user(bstat->bs_ino,     &bstat32->bs_ino)       ||
125             get_user(bstat->bs_mode,    &bstat32->bs_mode)      ||
126             get_user(bstat->bs_nlink,   &bstat32->bs_nlink)     ||
127             get_user(bstat->bs_uid,     &bstat32->bs_uid)       ||
128             get_user(bstat->bs_gid,     &bstat32->bs_gid)       ||
129             get_user(bstat->bs_rdev,    &bstat32->bs_rdev)      ||
130             get_user(bstat->bs_blksize, &bstat32->bs_blksize)   ||
131             get_user(bstat->bs_size,    &bstat32->bs_size)      ||
132             xfs_ioctl32_bstime_copyin(&bstat->bs_atime, &bstat32->bs_atime) ||
133             xfs_ioctl32_bstime_copyin(&bstat->bs_mtime, &bstat32->bs_mtime) ||
134             xfs_ioctl32_bstime_copyin(&bstat->bs_ctime, &bstat32->bs_ctime) ||
135             get_user(bstat->bs_blocks,  &bstat32->bs_size)      ||
136             get_user(bstat->bs_xflags,  &bstat32->bs_size)      ||
137             get_user(bstat->bs_extsize, &bstat32->bs_extsize)   ||
138             get_user(bstat->bs_extents, &bstat32->bs_extents)   ||
139             get_user(bstat->bs_gen,     &bstat32->bs_gen)       ||
140             get_user(bstat->bs_projid_lo, &bstat32->bs_projid_lo) ||
141             get_user(bstat->bs_projid_hi, &bstat32->bs_projid_hi) ||
142             get_user(bstat->bs_forkoff, &bstat32->bs_forkoff)   ||
143             get_user(bstat->bs_dmevmask, &bstat32->bs_dmevmask) ||
144             get_user(bstat->bs_dmstate, &bstat32->bs_dmstate)   ||
145             get_user(bstat->bs_aextents, &bstat32->bs_aextents))
146                 return -EFAULT;
147         return 0;
148 }
149
150 /* XFS_IOC_FSBULKSTAT and friends */
151
152 STATIC int
153 xfs_bstime_store_compat(
154         compat_xfs_bstime_t     __user *p32,
155         const xfs_bstime_t      *p)
156 {
157         __s32                   sec32;
158
159         sec32 = p->tv_sec;
160         if (put_user(sec32, &p32->tv_sec) ||
161             put_user(p->tv_nsec, &p32->tv_nsec))
162                 return -EFAULT;
163         return 0;
164 }
165
166 /* Return 0 on success or positive error (to xfs_bulkstat()) */
167 STATIC int
168 xfs_fsbulkstat_one_fmt_compat(
169         struct xfs_ibulk                *breq,
170         const struct xfs_bulkstat       *bstat)
171 {
172         struct compat_xfs_bstat __user  *p32 = breq->ubuffer;
173         struct xfs_bstat                bs1;
174         struct xfs_bstat                *buffer = &bs1;
175
176         xfs_bulkstat_to_bstat(breq->mp, &bs1, bstat);
177
178         if (put_user(buffer->bs_ino,      &p32->bs_ino)         ||
179             put_user(buffer->bs_mode,     &p32->bs_mode)        ||
180             put_user(buffer->bs_nlink,    &p32->bs_nlink)       ||
181             put_user(buffer->bs_uid,      &p32->bs_uid)         ||
182             put_user(buffer->bs_gid,      &p32->bs_gid)         ||
183             put_user(buffer->bs_rdev,     &p32->bs_rdev)        ||
184             put_user(buffer->bs_blksize,  &p32->bs_blksize)     ||
185             put_user(buffer->bs_size,     &p32->bs_size)        ||
186             xfs_bstime_store_compat(&p32->bs_atime, &buffer->bs_atime) ||
187             xfs_bstime_store_compat(&p32->bs_mtime, &buffer->bs_mtime) ||
188             xfs_bstime_store_compat(&p32->bs_ctime, &buffer->bs_ctime) ||
189             put_user(buffer->bs_blocks,   &p32->bs_blocks)      ||
190             put_user(buffer->bs_xflags,   &p32->bs_xflags)      ||
191             put_user(buffer->bs_extsize,  &p32->bs_extsize)     ||
192             put_user(buffer->bs_extents,  &p32->bs_extents)     ||
193             put_user(buffer->bs_gen,      &p32->bs_gen)         ||
194             put_user(buffer->bs_projid,   &p32->bs_projid)      ||
195             put_user(buffer->bs_projid_hi,      &p32->bs_projid_hi)     ||
196             put_user(buffer->bs_forkoff,  &p32->bs_forkoff)     ||
197             put_user(buffer->bs_dmevmask, &p32->bs_dmevmask)    ||
198             put_user(buffer->bs_dmstate,  &p32->bs_dmstate)     ||
199             put_user(buffer->bs_aextents, &p32->bs_aextents))
200                 return -EFAULT;
201
202         return xfs_ibulk_advance(breq, sizeof(struct compat_xfs_bstat));
203 }
204
205 /* copied from xfs_ioctl.c */
206 STATIC int
207 xfs_compat_ioc_fsbulkstat(
208         xfs_mount_t               *mp,
209         unsigned int              cmd,
210         struct compat_xfs_fsop_bulkreq __user *p32)
211 {
212         u32                     addr;
213         struct xfs_fsop_bulkreq bulkreq;
214         struct xfs_ibulk        breq = {
215                 .mp             = mp,
216                 .ocount         = 0,
217         };
218         xfs_ino_t               lastino;
219         int                     error;
220
221         /*
222          * Output structure handling functions.  Depending on the command,
223          * either the xfs_bstat and xfs_inogrp structures are written out
224          * to userpace memory via bulkreq.ubuffer.  Normally the compat
225          * functions and structure size are the correct ones to use ...
226          */
227         inumbers_fmt_pf         inumbers_func = xfs_fsinumbers_fmt_compat;
228         bulkstat_one_fmt_pf     bs_one_func = xfs_fsbulkstat_one_fmt_compat;
229
230 #ifdef CONFIG_X86_X32
231         if (in_x32_syscall()) {
232                 /*
233                  * ... but on x32 the input xfs_fsop_bulkreq has pointers
234                  * which must be handled in the "compat" (32-bit) way, while
235                  * the xfs_bstat and xfs_inogrp structures follow native 64-
236                  * bit layout convention.  So adjust accordingly, otherwise
237                  * the data written out in compat layout will not match what
238                  * x32 userspace expects.
239                  */
240                 inumbers_func = xfs_fsinumbers_fmt;
241                 bs_one_func = xfs_fsbulkstat_one_fmt;
242         }
243 #endif
244
245         /* done = 1 if there are more stats to get and if bulkstat */
246         /* should be called again (unused here, but used in dmapi) */
247
248         if (!capable(CAP_SYS_ADMIN))
249                 return -EPERM;
250
251         if (XFS_FORCED_SHUTDOWN(mp))
252                 return -EIO;
253
254         if (get_user(addr, &p32->lastip))
255                 return -EFAULT;
256         bulkreq.lastip = compat_ptr(addr);
257         if (get_user(bulkreq.icount, &p32->icount) ||
258             get_user(addr, &p32->ubuffer))
259                 return -EFAULT;
260         bulkreq.ubuffer = compat_ptr(addr);
261         if (get_user(addr, &p32->ocount))
262                 return -EFAULT;
263         bulkreq.ocount = compat_ptr(addr);
264
265         if (copy_from_user(&lastino, bulkreq.lastip, sizeof(__s64)))
266                 return -EFAULT;
267
268         if (bulkreq.icount <= 0)
269                 return -EINVAL;
270
271         if (bulkreq.ubuffer == NULL)
272                 return -EINVAL;
273
274         breq.ubuffer = bulkreq.ubuffer;
275         breq.icount = bulkreq.icount;
276
277         /*
278          * FSBULKSTAT_SINGLE expects that *lastip contains the inode number
279          * that we want to stat.  However, FSINUMBERS and FSBULKSTAT expect
280          * that *lastip contains either zero or the number of the last inode to
281          * be examined by the previous call and return results starting with
282          * the next inode after that.  The new bulk request back end functions
283          * take the inode to start with, so we have to compute the startino
284          * parameter from lastino to maintain correct function.  lastino == 0
285          * is a special case because it has traditionally meant "first inode
286          * in filesystem".
287          */
288         if (cmd == XFS_IOC_FSINUMBERS_32) {
289                 breq.startino = lastino ? lastino + 1 : 0;
290                 error = xfs_inumbers(&breq, inumbers_func);
291                 lastino = breq.startino - 1;
292         } else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE_32) {
293                 breq.startino = lastino;
294                 breq.icount = 1;
295                 error = xfs_bulkstat_one(&breq, bs_one_func);
296                 lastino = breq.startino;
297         } else if (cmd == XFS_IOC_FSBULKSTAT_32) {
298                 breq.startino = lastino ? lastino + 1 : 0;
299                 error = xfs_bulkstat(&breq, bs_one_func);
300                 lastino = breq.startino - 1;
301         } else {
302                 error = -EINVAL;
303         }
304         if (error)
305                 return error;
306
307         if (bulkreq.lastip != NULL &&
308             copy_to_user(bulkreq.lastip, &lastino, sizeof(xfs_ino_t)))
309                 return -EFAULT;
310
311         if (bulkreq.ocount != NULL &&
312             copy_to_user(bulkreq.ocount, &breq.ocount, sizeof(__s32)))
313                 return -EFAULT;
314
315         return 0;
316 }
317
318 STATIC int
319 xfs_compat_handlereq_copyin(
320         xfs_fsop_handlereq_t            *hreq,
321         compat_xfs_fsop_handlereq_t     __user *arg32)
322 {
323         compat_xfs_fsop_handlereq_t     hreq32;
324
325         if (copy_from_user(&hreq32, arg32, sizeof(compat_xfs_fsop_handlereq_t)))
326                 return -EFAULT;
327
328         hreq->fd = hreq32.fd;
329         hreq->path = compat_ptr(hreq32.path);
330         hreq->oflags = hreq32.oflags;
331         hreq->ihandle = compat_ptr(hreq32.ihandle);
332         hreq->ihandlen = hreq32.ihandlen;
333         hreq->ohandle = compat_ptr(hreq32.ohandle);
334         hreq->ohandlen = compat_ptr(hreq32.ohandlen);
335
336         return 0;
337 }
338
339 STATIC struct dentry *
340 xfs_compat_handlereq_to_dentry(
341         struct file             *parfilp,
342         compat_xfs_fsop_handlereq_t *hreq)
343 {
344         return xfs_handle_to_dentry(parfilp,
345                         compat_ptr(hreq->ihandle), hreq->ihandlen);
346 }
347
348 STATIC int
349 xfs_compat_attrlist_by_handle(
350         struct file             *parfilp,
351         void                    __user *arg)
352 {
353         int                     error;
354         attrlist_cursor_kern_t  *cursor;
355         compat_xfs_fsop_attrlist_handlereq_t __user *p = arg;
356         compat_xfs_fsop_attrlist_handlereq_t al_hreq;
357         struct dentry           *dentry;
358         char                    *kbuf;
359
360         if (!capable(CAP_SYS_ADMIN))
361                 return -EPERM;
362         if (copy_from_user(&al_hreq, arg,
363                            sizeof(compat_xfs_fsop_attrlist_handlereq_t)))
364                 return -EFAULT;
365         if (al_hreq.buflen < sizeof(struct attrlist) ||
366             al_hreq.buflen > XFS_XATTR_LIST_MAX)
367                 return -EINVAL;
368
369         /*
370          * Reject flags, only allow namespaces.
371          */
372         if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
373                 return -EINVAL;
374
375         dentry = xfs_compat_handlereq_to_dentry(parfilp, &al_hreq.hreq);
376         if (IS_ERR(dentry))
377                 return PTR_ERR(dentry);
378
379         error = -ENOMEM;
380         kbuf = kmem_zalloc_large(al_hreq.buflen, KM_SLEEP);
381         if (!kbuf)
382                 goto out_dput;
383
384         cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
385         error = xfs_attr_list(XFS_I(d_inode(dentry)), kbuf, al_hreq.buflen,
386                                         al_hreq.flags, cursor);
387         if (error)
388                 goto out_kfree;
389
390         if (copy_to_user(&p->pos, cursor, sizeof(attrlist_cursor_kern_t))) {
391                 error = -EFAULT;
392                 goto out_kfree;
393         }
394
395         if (copy_to_user(compat_ptr(al_hreq.buffer), kbuf, al_hreq.buflen))
396                 error = -EFAULT;
397
398 out_kfree:
399         kmem_free(kbuf);
400 out_dput:
401         dput(dentry);
402         return error;
403 }
404
405 STATIC int
406 xfs_compat_attrmulti_by_handle(
407         struct file                             *parfilp,
408         void                                    __user *arg)
409 {
410         int                                     error;
411         compat_xfs_attr_multiop_t               *ops;
412         compat_xfs_fsop_attrmulti_handlereq_t   am_hreq;
413         struct dentry                           *dentry;
414         unsigned int                            i, size;
415         unsigned char                           *attr_name;
416
417         if (!capable(CAP_SYS_ADMIN))
418                 return -EPERM;
419         if (copy_from_user(&am_hreq, arg,
420                            sizeof(compat_xfs_fsop_attrmulti_handlereq_t)))
421                 return -EFAULT;
422
423         /* overflow check */
424         if (am_hreq.opcount >= INT_MAX / sizeof(compat_xfs_attr_multiop_t))
425                 return -E2BIG;
426
427         dentry = xfs_compat_handlereq_to_dentry(parfilp, &am_hreq.hreq);
428         if (IS_ERR(dentry))
429                 return PTR_ERR(dentry);
430
431         error = -E2BIG;
432         size = am_hreq.opcount * sizeof(compat_xfs_attr_multiop_t);
433         if (!size || size > 16 * PAGE_SIZE)
434                 goto out_dput;
435
436         ops = memdup_user(compat_ptr(am_hreq.ops), size);
437         if (IS_ERR(ops)) {
438                 error = PTR_ERR(ops);
439                 goto out_dput;
440         }
441
442         error = -ENOMEM;
443         attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
444         if (!attr_name)
445                 goto out_kfree_ops;
446
447         error = 0;
448         for (i = 0; i < am_hreq.opcount; i++) {
449                 ops[i].am_error = strncpy_from_user((char *)attr_name,
450                                 compat_ptr(ops[i].am_attrname),
451                                 MAXNAMELEN);
452                 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
453                         error = -ERANGE;
454                 if (ops[i].am_error < 0)
455                         break;
456
457                 switch (ops[i].am_opcode) {
458                 case ATTR_OP_GET:
459                         ops[i].am_error = xfs_attrmulti_attr_get(
460                                         d_inode(dentry), attr_name,
461                                         compat_ptr(ops[i].am_attrvalue),
462                                         &ops[i].am_length, ops[i].am_flags);
463                         break;
464                 case ATTR_OP_SET:
465                         ops[i].am_error = mnt_want_write_file(parfilp);
466                         if (ops[i].am_error)
467                                 break;
468                         ops[i].am_error = xfs_attrmulti_attr_set(
469                                         d_inode(dentry), attr_name,
470                                         compat_ptr(ops[i].am_attrvalue),
471                                         ops[i].am_length, ops[i].am_flags);
472                         mnt_drop_write_file(parfilp);
473                         break;
474                 case ATTR_OP_REMOVE:
475                         ops[i].am_error = mnt_want_write_file(parfilp);
476                         if (ops[i].am_error)
477                                 break;
478                         ops[i].am_error = xfs_attrmulti_attr_remove(
479                                         d_inode(dentry), attr_name,
480                                         ops[i].am_flags);
481                         mnt_drop_write_file(parfilp);
482                         break;
483                 default:
484                         ops[i].am_error = -EINVAL;
485                 }
486         }
487
488         if (copy_to_user(compat_ptr(am_hreq.ops), ops, size))
489                 error = -EFAULT;
490
491         kfree(attr_name);
492  out_kfree_ops:
493         kfree(ops);
494  out_dput:
495         dput(dentry);
496         return error;
497 }
498
499 STATIC int
500 xfs_compat_fssetdm_by_handle(
501         struct file             *parfilp,
502         void                    __user *arg)
503 {
504         int                     error;
505         struct fsdmidata        fsd;
506         compat_xfs_fsop_setdm_handlereq_t dmhreq;
507         struct dentry           *dentry;
508
509         if (!capable(CAP_MKNOD))
510                 return -EPERM;
511         if (copy_from_user(&dmhreq, arg,
512                            sizeof(compat_xfs_fsop_setdm_handlereq_t)))
513                 return -EFAULT;
514
515         dentry = xfs_compat_handlereq_to_dentry(parfilp, &dmhreq.hreq);
516         if (IS_ERR(dentry))
517                 return PTR_ERR(dentry);
518
519         if (IS_IMMUTABLE(d_inode(dentry)) || IS_APPEND(d_inode(dentry))) {
520                 error = -EPERM;
521                 goto out;
522         }
523
524         if (copy_from_user(&fsd, compat_ptr(dmhreq.data), sizeof(fsd))) {
525                 error = -EFAULT;
526                 goto out;
527         }
528
529         error = xfs_set_dmattrs(XFS_I(d_inode(dentry)), fsd.fsd_dmevmask,
530                                  fsd.fsd_dmstate);
531
532 out:
533         dput(dentry);
534         return error;
535 }
536
537 long
538 xfs_file_compat_ioctl(
539         struct file             *filp,
540         unsigned                cmd,
541         unsigned long           p)
542 {
543         struct inode            *inode = file_inode(filp);
544         struct xfs_inode        *ip = XFS_I(inode);
545         struct xfs_mount        *mp = ip->i_mount;
546         void                    __user *arg = (void __user *)p;
547         int                     error;
548
549         trace_xfs_file_compat_ioctl(ip);
550
551         switch (cmd) {
552         /* No size or alignment issues on any arch */
553         case XFS_IOC_DIOINFO:
554         case XFS_IOC_FSGEOMETRY_V4:
555         case XFS_IOC_FSGEOMETRY:
556         case XFS_IOC_AG_GEOMETRY:
557         case XFS_IOC_FSGETXATTR:
558         case XFS_IOC_FSSETXATTR:
559         case XFS_IOC_FSGETXATTRA:
560         case XFS_IOC_FSSETDM:
561         case XFS_IOC_GETBMAP:
562         case XFS_IOC_GETBMAPA:
563         case XFS_IOC_GETBMAPX:
564         case XFS_IOC_FSCOUNTS:
565         case XFS_IOC_SET_RESBLKS:
566         case XFS_IOC_GET_RESBLKS:
567         case XFS_IOC_FSGROWFSLOG:
568         case XFS_IOC_GOINGDOWN:
569         case XFS_IOC_ERROR_INJECTION:
570         case XFS_IOC_ERROR_CLEARALL:
571         case FS_IOC_GETFSMAP:
572         case XFS_IOC_SCRUB_METADATA:
573                 return xfs_file_ioctl(filp, cmd, p);
574 #if !defined(BROKEN_X86_ALIGNMENT) || defined(CONFIG_X86_X32)
575         /*
576          * These are handled fine if no alignment issues.  To support x32
577          * which uses native 64-bit alignment we must emit these cases in
578          * addition to the ia-32 compat set below.
579          */
580         case XFS_IOC_ALLOCSP:
581         case XFS_IOC_FREESP:
582         case XFS_IOC_RESVSP:
583         case XFS_IOC_UNRESVSP:
584         case XFS_IOC_ALLOCSP64:
585         case XFS_IOC_FREESP64:
586         case XFS_IOC_RESVSP64:
587         case XFS_IOC_UNRESVSP64:
588         case XFS_IOC_FSGEOMETRY_V1:
589         case XFS_IOC_FSGROWFSDATA:
590         case XFS_IOC_FSGROWFSRT:
591         case XFS_IOC_ZERO_RANGE:
592 #ifdef CONFIG_X86_X32
593         /*
594          * x32 special: this gets a different cmd number from the ia-32 compat
595          * case below; the associated data will match native 64-bit alignment.
596          */
597         case XFS_IOC_SWAPEXT:
598 #endif
599                 return xfs_file_ioctl(filp, cmd, p);
600 #endif
601 #if defined(BROKEN_X86_ALIGNMENT)
602         case XFS_IOC_ALLOCSP_32:
603         case XFS_IOC_FREESP_32:
604         case XFS_IOC_ALLOCSP64_32:
605         case XFS_IOC_FREESP64_32:
606         case XFS_IOC_RESVSP_32:
607         case XFS_IOC_UNRESVSP_32:
608         case XFS_IOC_RESVSP64_32:
609         case XFS_IOC_UNRESVSP64_32:
610         case XFS_IOC_ZERO_RANGE_32: {
611                 struct xfs_flock64      bf;
612
613                 if (xfs_compat_flock64_copyin(&bf, arg))
614                         return -EFAULT;
615                 cmd = _NATIVE_IOC(cmd, struct xfs_flock64);
616                 return xfs_ioc_space(filp, cmd, &bf);
617         }
618         case XFS_IOC_FSGEOMETRY_V1_32:
619                 return xfs_compat_ioc_fsgeometry_v1(mp, arg);
620         case XFS_IOC_FSGROWFSDATA_32: {
621                 struct xfs_growfs_data  in;
622
623                 if (xfs_compat_growfs_data_copyin(&in, arg))
624                         return -EFAULT;
625                 error = mnt_want_write_file(filp);
626                 if (error)
627                         return error;
628                 error = xfs_growfs_data(mp, &in);
629                 mnt_drop_write_file(filp);
630                 return error;
631         }
632         case XFS_IOC_FSGROWFSRT_32: {
633                 struct xfs_growfs_rt    in;
634
635                 if (xfs_compat_growfs_rt_copyin(&in, arg))
636                         return -EFAULT;
637                 error = mnt_want_write_file(filp);
638                 if (error)
639                         return error;
640                 error = xfs_growfs_rt(mp, &in);
641                 mnt_drop_write_file(filp);
642                 return error;
643         }
644 #endif
645         /* long changes size, but xfs only copiese out 32 bits */
646         case XFS_IOC_GETXFLAGS_32:
647         case XFS_IOC_SETXFLAGS_32:
648         case XFS_IOC_GETVERSION_32:
649                 cmd = _NATIVE_IOC(cmd, long);
650                 return xfs_file_ioctl(filp, cmd, p);
651         case XFS_IOC_SWAPEXT_32: {
652                 struct xfs_swapext        sxp;
653                 struct compat_xfs_swapext __user *sxu = arg;
654
655                 /* Bulk copy in up to the sx_stat field, then copy bstat */
656                 if (copy_from_user(&sxp, sxu,
657                                    offsetof(struct xfs_swapext, sx_stat)) ||
658                     xfs_ioctl32_bstat_copyin(&sxp.sx_stat, &sxu->sx_stat))
659                         return -EFAULT;
660                 error = mnt_want_write_file(filp);
661                 if (error)
662                         return error;
663                 error = xfs_ioc_swapext(&sxp);
664                 mnt_drop_write_file(filp);
665                 return error;
666         }
667         case XFS_IOC_FSBULKSTAT_32:
668         case XFS_IOC_FSBULKSTAT_SINGLE_32:
669         case XFS_IOC_FSINUMBERS_32:
670                 return xfs_compat_ioc_fsbulkstat(mp, cmd, arg);
671         case XFS_IOC_FD_TO_HANDLE_32:
672         case XFS_IOC_PATH_TO_HANDLE_32:
673         case XFS_IOC_PATH_TO_FSHANDLE_32: {
674                 struct xfs_fsop_handlereq       hreq;
675
676                 if (xfs_compat_handlereq_copyin(&hreq, arg))
677                         return -EFAULT;
678                 cmd = _NATIVE_IOC(cmd, struct xfs_fsop_handlereq);
679                 return xfs_find_handle(cmd, &hreq);
680         }
681         case XFS_IOC_OPEN_BY_HANDLE_32: {
682                 struct xfs_fsop_handlereq       hreq;
683
684                 if (xfs_compat_handlereq_copyin(&hreq, arg))
685                         return -EFAULT;
686                 return xfs_open_by_handle(filp, &hreq);
687         }
688         case XFS_IOC_READLINK_BY_HANDLE_32: {
689                 struct xfs_fsop_handlereq       hreq;
690
691                 if (xfs_compat_handlereq_copyin(&hreq, arg))
692                         return -EFAULT;
693                 return xfs_readlink_by_handle(filp, &hreq);
694         }
695         case XFS_IOC_ATTRLIST_BY_HANDLE_32:
696                 return xfs_compat_attrlist_by_handle(filp, arg);
697         case XFS_IOC_ATTRMULTI_BY_HANDLE_32:
698                 return xfs_compat_attrmulti_by_handle(filp, arg);
699         case XFS_IOC_FSSETDM_BY_HANDLE_32:
700                 return xfs_compat_fssetdm_by_handle(filp, arg);
701         default:
702                 return -ENOIOCTLCMD;
703         }
704 }