blob: 0882d166239a071985b8309362c257e3878dde19 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2004-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/ioctl.h>
Christoph Hellwig62e194e2009-01-19 02:03:03 +010020#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_fs.h"
Michal Marekfaa63e92007-07-11 11:10:19 +100024#include "xfs_bit.h"
25#include "xfs_log.h"
26#include "xfs_inum.h"
27#include "xfs_trans.h"
28#include "xfs_sb.h"
29#include "xfs_ag.h"
30#include "xfs_dir2.h"
31#include "xfs_dmapi.h"
32#include "xfs_mount.h"
33#include "xfs_bmap_btree.h"
34#include "xfs_attr_sf.h"
35#include "xfs_dir2_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_vnode.h"
Michal Marekfaa63e92007-07-11 11:10:19 +100037#include "xfs_dinode.h"
38#include "xfs_inode.h"
39#include "xfs_itable.h"
40#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_dfrag.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100042#include "xfs_vnodeops.h"
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060043#include "xfs_fsops.h"
sandeen@sandeen.net471d5912008-11-25 21:20:10 -060044#include "xfs_alloc.h"
45#include "xfs_rtalloc.h"
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -060046#include "xfs_attr.h"
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060047#include "xfs_ioctl.h"
David Chinnera8272ce2007-11-23 16:28:09 +110048#include "xfs_ioctl32.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Eric Sandeen526c4202005-09-05 08:25:06 +100050#define _NATIVE_IOC(cmd, type) \
51 _IOC(_IOC_DIR(cmd), _IOC_TYPE(cmd), _IOC_NR(cmd), sizeof(type))
52
sandeen@sandeen.netffae2632008-11-25 21:20:07 -060053#ifdef BROKEN_X86_ALIGNMENT
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060054STATIC int
55xfs_compat_flock64_copyin(
56 xfs_flock64_t *bf,
57 compat_xfs_flock64_t __user *arg32)
Eric Sandeen526c4202005-09-05 08:25:06 +100058{
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060059 if (get_user(bf->l_type, &arg32->l_type) ||
60 get_user(bf->l_whence, &arg32->l_whence) ||
61 get_user(bf->l_start, &arg32->l_start) ||
62 get_user(bf->l_len, &arg32->l_len) ||
63 get_user(bf->l_sysid, &arg32->l_sysid) ||
64 get_user(bf->l_pid, &arg32->l_pid) ||
65 copy_from_user(bf->l_pad, &arg32->l_pad, 4*sizeof(u32)))
66 return -XFS_ERROR(EFAULT);
67 return 0;
Eric Sandeen526c4202005-09-05 08:25:06 +100068}
69
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060070STATIC int
71xfs_compat_ioc_fsgeometry_v1(
72 struct xfs_mount *mp,
73 compat_xfs_fsop_geom_v1_t __user *arg32)
Michal Marek547e00c2007-07-11 11:09:57 +100074{
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060075 xfs_fsop_geom_t fsgeo;
76 int error;
Michal Marek547e00c2007-07-11 11:09:57 +100077
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060078 error = xfs_fs_geometry(mp, &fsgeo, 3);
79 if (error)
80 return -error;
81 /* The 32-bit variant simply has some padding at the end */
82 if (copy_to_user(arg32, &fsgeo, sizeof(struct compat_xfs_fsop_geom_v1)))
83 return -XFS_ERROR(EFAULT);
84 return 0;
Michal Marek547e00c2007-07-11 11:09:57 +100085}
86
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060087STATIC int
sandeen@sandeen.net471d5912008-11-25 21:20:10 -060088xfs_compat_growfs_data_copyin(
89 struct xfs_growfs_data *in,
90 compat_xfs_growfs_data_t __user *arg32)
91{
92 if (get_user(in->newblocks, &arg32->newblocks) ||
93 get_user(in->imaxpct, &arg32->imaxpct))
94 return -XFS_ERROR(EFAULT);
95 return 0;
96}
97
98STATIC int
99xfs_compat_growfs_rt_copyin(
100 struct xfs_growfs_rt *in,
101 compat_xfs_growfs_rt_t __user *arg32)
102{
103 if (get_user(in->newblocks, &arg32->newblocks) ||
104 get_user(in->extsize, &arg32->extsize))
105 return -XFS_ERROR(EFAULT);
106 return 0;
107}
108
109STATIC int
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600110xfs_inumbers_fmt_compat(
111 void __user *ubuffer,
112 const xfs_inogrp_t *buffer,
113 long count,
114 long *written)
Michal Marekfaa63e92007-07-11 11:10:19 +1000115{
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600116 compat_xfs_inogrp_t __user *p32 = ubuffer;
117 long i;
Michal Marekfaa63e92007-07-11 11:10:19 +1000118
119 for (i = 0; i < count; i++) {
120 if (put_user(buffer[i].xi_startino, &p32[i].xi_startino) ||
121 put_user(buffer[i].xi_alloccount, &p32[i].xi_alloccount) ||
122 put_user(buffer[i].xi_allocmask, &p32[i].xi_allocmask))
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600123 return -XFS_ERROR(EFAULT);
Michal Marekfaa63e92007-07-11 11:10:19 +1000124 }
125 *written = count * sizeof(*p32);
126 return 0;
127}
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#else
Michal Marekfaa63e92007-07-11 11:10:19 +1000130#define xfs_inumbers_fmt_compat xfs_inumbers_fmt
sandeen@sandeen.nete5d412f2008-11-25 21:20:17 -0600131#endif /* BROKEN_X86_ALIGNMENT */
Michal Marekfaa63e92007-07-11 11:10:19 +1000132
sandeen@sandeen.nete94fc4a2008-11-25 21:20:09 -0600133STATIC int
134xfs_ioctl32_bstime_copyin(
135 xfs_bstime_t *bstime,
136 compat_xfs_bstime_t __user *bstime32)
137{
138 compat_time_t sec32; /* tv_sec differs on 64 vs. 32 */
139
140 if (get_user(sec32, &bstime32->tv_sec) ||
141 get_user(bstime->tv_nsec, &bstime32->tv_nsec))
142 return -XFS_ERROR(EFAULT);
143 bstime->tv_sec = sec32;
144 return 0;
145}
146
147/* xfs_bstat_t has differing alignment on intel, & bstime_t sizes everywhere */
148STATIC int
149xfs_ioctl32_bstat_copyin(
150 xfs_bstat_t *bstat,
151 compat_xfs_bstat_t __user *bstat32)
152{
153 if (get_user(bstat->bs_ino, &bstat32->bs_ino) ||
154 get_user(bstat->bs_mode, &bstat32->bs_mode) ||
155 get_user(bstat->bs_nlink, &bstat32->bs_nlink) ||
156 get_user(bstat->bs_uid, &bstat32->bs_uid) ||
157 get_user(bstat->bs_gid, &bstat32->bs_gid) ||
158 get_user(bstat->bs_rdev, &bstat32->bs_rdev) ||
159 get_user(bstat->bs_blksize, &bstat32->bs_blksize) ||
160 get_user(bstat->bs_size, &bstat32->bs_size) ||
161 xfs_ioctl32_bstime_copyin(&bstat->bs_atime, &bstat32->bs_atime) ||
162 xfs_ioctl32_bstime_copyin(&bstat->bs_mtime, &bstat32->bs_mtime) ||
163 xfs_ioctl32_bstime_copyin(&bstat->bs_ctime, &bstat32->bs_ctime) ||
164 get_user(bstat->bs_blocks, &bstat32->bs_size) ||
165 get_user(bstat->bs_xflags, &bstat32->bs_size) ||
166 get_user(bstat->bs_extsize, &bstat32->bs_extsize) ||
167 get_user(bstat->bs_extents, &bstat32->bs_extents) ||
168 get_user(bstat->bs_gen, &bstat32->bs_gen) ||
169 get_user(bstat->bs_projid, &bstat32->bs_projid) ||
170 get_user(bstat->bs_dmevmask, &bstat32->bs_dmevmask) ||
171 get_user(bstat->bs_dmstate, &bstat32->bs_dmstate) ||
172 get_user(bstat->bs_aextents, &bstat32->bs_aextents))
173 return -XFS_ERROR(EFAULT);
174 return 0;
175}
176
Michal Marekfaa63e92007-07-11 11:10:19 +1000177/* XFS_IOC_FSBULKSTAT and friends */
178
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600179STATIC int
180xfs_bstime_store_compat(
181 compat_xfs_bstime_t __user *p32,
182 const xfs_bstime_t *p)
Michal Marekfaa63e92007-07-11 11:10:19 +1000183{
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600184 __s32 sec32;
Michal Marekfaa63e92007-07-11 11:10:19 +1000185
186 sec32 = p->tv_sec;
187 if (put_user(sec32, &p32->tv_sec) ||
188 put_user(p->tv_nsec, &p32->tv_nsec))
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600189 return -XFS_ERROR(EFAULT);
Michal Marekfaa63e92007-07-11 11:10:19 +1000190 return 0;
191}
192
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600193/* Return 0 on success or positive error (to xfs_bulkstat()) */
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600194STATIC int
195xfs_bulkstat_one_fmt_compat(
Michal Marekfaa63e92007-07-11 11:10:19 +1000196 void __user *ubuffer,
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600197 int ubsize,
198 int *ubused,
Michal Marekfaa63e92007-07-11 11:10:19 +1000199 const xfs_bstat_t *buffer)
200{
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600201 compat_xfs_bstat_t __user *p32 = ubuffer;
Michal Marekfaa63e92007-07-11 11:10:19 +1000202
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600203 if (ubsize < sizeof(*p32))
204 return XFS_ERROR(ENOMEM);
205
206 if (put_user(buffer->bs_ino, &p32->bs_ino) ||
207 put_user(buffer->bs_mode, &p32->bs_mode) ||
208 put_user(buffer->bs_nlink, &p32->bs_nlink) ||
209 put_user(buffer->bs_uid, &p32->bs_uid) ||
210 put_user(buffer->bs_gid, &p32->bs_gid) ||
211 put_user(buffer->bs_rdev, &p32->bs_rdev) ||
212 put_user(buffer->bs_blksize, &p32->bs_blksize) ||
213 put_user(buffer->bs_size, &p32->bs_size) ||
Michal Marekfaa63e92007-07-11 11:10:19 +1000214 xfs_bstime_store_compat(&p32->bs_atime, &buffer->bs_atime) ||
215 xfs_bstime_store_compat(&p32->bs_mtime, &buffer->bs_mtime) ||
216 xfs_bstime_store_compat(&p32->bs_ctime, &buffer->bs_ctime) ||
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600217 put_user(buffer->bs_blocks, &p32->bs_blocks) ||
218 put_user(buffer->bs_xflags, &p32->bs_xflags) ||
219 put_user(buffer->bs_extsize, &p32->bs_extsize) ||
220 put_user(buffer->bs_extents, &p32->bs_extents) ||
221 put_user(buffer->bs_gen, &p32->bs_gen) ||
222 put_user(buffer->bs_projid, &p32->bs_projid) ||
223 put_user(buffer->bs_dmevmask, &p32->bs_dmevmask) ||
224 put_user(buffer->bs_dmstate, &p32->bs_dmstate) ||
Michal Marekfaa63e92007-07-11 11:10:19 +1000225 put_user(buffer->bs_aextents, &p32->bs_aextents))
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600226 return XFS_ERROR(EFAULT);
227 if (ubused)
228 *ubused = sizeof(*p32);
229 return 0;
Michal Marekfaa63e92007-07-11 11:10:19 +1000230}
231
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600232STATIC int
233xfs_bulkstat_one_compat(
234 xfs_mount_t *mp, /* mount point for filesystem */
235 xfs_ino_t ino, /* inode number to get data for */
236 void __user *buffer, /* buffer to place output in */
237 int ubsize, /* size of buffer */
238 void *private_data, /* my private data */
239 xfs_daddr_t bno, /* starting bno of inode cluster */
240 int *ubused, /* bytes used by me */
241 void *dibuff, /* on-disk inode buffer */
242 int *stat) /* BULKSTAT_RV_... */
243{
244 return xfs_bulkstat_one_int(mp, ino, buffer, ubsize,
245 xfs_bulkstat_one_fmt_compat, bno,
246 ubused, dibuff, stat);
247}
248
Michal Marekfaa63e92007-07-11 11:10:19 +1000249/* copied from xfs_ioctl.c */
250STATIC int
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600251xfs_compat_ioc_bulkstat(
252 xfs_mount_t *mp,
253 unsigned int cmd,
254 compat_xfs_fsop_bulkreq_t __user *p32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 u32 addr;
Michal Marekfaa63e92007-07-11 11:10:19 +1000257 xfs_fsop_bulkreq_t bulkreq;
258 int count; /* # of records returned */
259 xfs_ino_t inlast; /* last inode number */
260 int done;
261 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Michal Marekfaa63e92007-07-11 11:10:19 +1000263 /* done = 1 if there are more stats to get and if bulkstat */
264 /* should be called again (unused here, but used in dmapi) */
265
266 if (!capable(CAP_SYS_ADMIN))
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600267 return -XFS_ERROR(EPERM);
Michal Marekfaa63e92007-07-11 11:10:19 +1000268
269 if (XFS_FORCED_SHUTDOWN(mp))
270 return -XFS_ERROR(EIO);
271
272 if (get_user(addr, &p32->lastip))
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600273 return -XFS_ERROR(EFAULT);
Michal Marekfaa63e92007-07-11 11:10:19 +1000274 bulkreq.lastip = compat_ptr(addr);
275 if (get_user(bulkreq.icount, &p32->icount) ||
276 get_user(addr, &p32->ubuffer))
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600277 return -XFS_ERROR(EFAULT);
Michal Marekfaa63e92007-07-11 11:10:19 +1000278 bulkreq.ubuffer = compat_ptr(addr);
279 if (get_user(addr, &p32->ocount))
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600280 return -XFS_ERROR(EFAULT);
Michal Marekfaa63e92007-07-11 11:10:19 +1000281 bulkreq.ocount = compat_ptr(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Michal Marekfaa63e92007-07-11 11:10:19 +1000283 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
284 return -XFS_ERROR(EFAULT);
285
286 if ((count = bulkreq.icount) <= 0)
287 return -XFS_ERROR(EINVAL);
288
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100289 if (bulkreq.ubuffer == NULL)
290 return -XFS_ERROR(EINVAL);
291
sandeen@sandeen.netaf819d22008-11-25 21:20:13 -0600292 if (cmd == XFS_IOC_FSINUMBERS_32) {
Michal Marekfaa63e92007-07-11 11:10:19 +1000293 error = xfs_inumbers(mp, &inlast, &count,
294 bulkreq.ubuffer, xfs_inumbers_fmt_compat);
sandeen@sandeen.netaf819d22008-11-25 21:20:13 -0600295 } else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE_32) {
296 int res;
297
298 error = xfs_bulkstat_one_compat(mp, inlast, bulkreq.ubuffer,
299 sizeof(compat_xfs_bstat_t),
300 NULL, 0, NULL, NULL, &res);
301 } else if (cmd == XFS_IOC_FSBULKSTAT_32) {
Michal Marekfaa63e92007-07-11 11:10:19 +1000302 error = xfs_bulkstat(mp, &inlast, &count,
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600303 xfs_bulkstat_one_compat, NULL,
Michal Marekfaa63e92007-07-11 11:10:19 +1000304 sizeof(compat_xfs_bstat_t), bulkreq.ubuffer,
305 BULKSTAT_FG_QUICK, &done);
sandeen@sandeen.netaf819d22008-11-25 21:20:13 -0600306 } else
307 error = XFS_ERROR(EINVAL);
Michal Marekfaa63e92007-07-11 11:10:19 +1000308 if (error)
309 return -error;
310
311 if (bulkreq.ocount != NULL) {
312 if (copy_to_user(bulkreq.lastip, &inlast,
313 sizeof(xfs_ino_t)))
314 return -XFS_ERROR(EFAULT);
315
316 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
317 return -XFS_ERROR(EFAULT);
318 }
319
320 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
Michal Marekfaa63e92007-07-11 11:10:19 +1000322
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600323STATIC int
324xfs_compat_handlereq_copyin(
325 xfs_fsop_handlereq_t *hreq,
326 compat_xfs_fsop_handlereq_t __user *arg32)
Michal Marek1fa503d2007-07-11 11:10:09 +1000327{
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600328 compat_xfs_fsop_handlereq_t hreq32;
Michal Marek1fa503d2007-07-11 11:10:09 +1000329
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600330 if (copy_from_user(&hreq32, arg32, sizeof(compat_xfs_fsop_handlereq_t)))
331 return -XFS_ERROR(EFAULT);
Michal Marek1fa503d2007-07-11 11:10:09 +1000332
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600333 hreq->fd = hreq32.fd;
334 hreq->path = compat_ptr(hreq32.path);
335 hreq->oflags = hreq32.oflags;
336 hreq->ihandle = compat_ptr(hreq32.ihandle);
337 hreq->ihandlen = hreq32.ihandlen;
338 hreq->ohandle = compat_ptr(hreq32.ohandle);
339 hreq->ohandlen = compat_ptr(hreq32.ohandlen);
340
341 return 0;
Michal Marek1fa503d2007-07-11 11:10:09 +1000342}
343
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100344STATIC struct dentry *
345xfs_compat_handlereq_to_dentry(
346 struct file *parfilp,
347 compat_xfs_fsop_handlereq_t *hreq)
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600348{
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100349 return xfs_handle_to_dentry(parfilp,
350 compat_ptr(hreq->ihandle), hreq->ihandlen);
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600351}
352
353STATIC int
354xfs_compat_attrlist_by_handle(
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100355 struct file *parfilp,
356 void __user *arg)
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600357{
358 int error;
359 attrlist_cursor_kern_t *cursor;
360 compat_xfs_fsop_attrlist_handlereq_t al_hreq;
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100361 struct dentry *dentry;
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600362 char *kbuf;
363
364 if (!capable(CAP_SYS_ADMIN))
365 return -XFS_ERROR(EPERM);
366 if (copy_from_user(&al_hreq, arg,
367 sizeof(compat_xfs_fsop_attrlist_handlereq_t)))
368 return -XFS_ERROR(EFAULT);
369 if (al_hreq.buflen > XATTR_LIST_MAX)
370 return -XFS_ERROR(EINVAL);
371
372 /*
373 * Reject flags, only allow namespaces.
374 */
375 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
376 return -XFS_ERROR(EINVAL);
377
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100378 dentry = xfs_compat_handlereq_to_dentry(parfilp, &al_hreq.hreq);
379 if (IS_ERR(dentry))
380 return PTR_ERR(dentry);
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600381
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100382 error = -ENOMEM;
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600383 kbuf = kmalloc(al_hreq.buflen, GFP_KERNEL);
384 if (!kbuf)
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100385 goto out_dput;
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600386
387 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100388 error = -xfs_attr_list(XFS_I(dentry->d_inode), kbuf, al_hreq.buflen,
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600389 al_hreq.flags, cursor);
390 if (error)
391 goto out_kfree;
392
393 if (copy_to_user(compat_ptr(al_hreq.buffer), kbuf, al_hreq.buflen))
394 error = -EFAULT;
395
396 out_kfree:
397 kfree(kbuf);
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100398 out_dput:
399 dput(dentry);
400 return error;
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600401}
402
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600403STATIC int
404xfs_compat_attrmulti_by_handle(
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100405 struct file *parfilp,
406 void __user *arg)
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600407{
408 int error;
409 compat_xfs_attr_multiop_t *ops;
410 compat_xfs_fsop_attrmulti_handlereq_t am_hreq;
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100411 struct dentry *dentry;
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600412 unsigned int i, size;
413 char *attr_name;
414
415 if (!capable(CAP_SYS_ADMIN))
416 return -XFS_ERROR(EPERM);
417 if (copy_from_user(&am_hreq, arg,
418 sizeof(compat_xfs_fsop_attrmulti_handlereq_t)))
419 return -XFS_ERROR(EFAULT);
420
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100421 dentry = xfs_compat_handlereq_to_dentry(parfilp, &am_hreq.hreq);
422 if (IS_ERR(dentry))
423 return PTR_ERR(dentry);
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600424
425 error = E2BIG;
426 size = am_hreq.opcount * sizeof(compat_xfs_attr_multiop_t);
427 if (!size || size > 16 * PAGE_SIZE)
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100428 goto out_dput;
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600429
Li Zefan0e639bd2009-04-08 15:08:04 +0800430 ops = memdup_user(compat_ptr(am_hreq.ops), size);
431 if (IS_ERR(ops)) {
432 error = PTR_ERR(ops);
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100433 goto out_dput;
Li Zefan0e639bd2009-04-08 15:08:04 +0800434 }
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600435
436 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
437 if (!attr_name)
438 goto out_kfree_ops;
439
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600440 error = 0;
441 for (i = 0; i < am_hreq.opcount; i++) {
442 ops[i].am_error = strncpy_from_user(attr_name,
443 compat_ptr(ops[i].am_attrname),
444 MAXNAMELEN);
445 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
446 error = -ERANGE;
447 if (ops[i].am_error < 0)
448 break;
449
450 switch (ops[i].am_opcode) {
451 case ATTR_OP_GET:
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100452 ops[i].am_error = xfs_attrmulti_attr_get(
453 dentry->d_inode, attr_name,
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600454 compat_ptr(ops[i].am_attrvalue),
455 &ops[i].am_length, ops[i].am_flags);
456 break;
457 case ATTR_OP_SET:
Christoph Hellwig62e194e2009-01-19 02:03:03 +0100458 ops[i].am_error = mnt_want_write(parfilp->f_path.mnt);
459 if (ops[i].am_error)
460 break;
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100461 ops[i].am_error = xfs_attrmulti_attr_set(
462 dentry->d_inode, attr_name,
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600463 compat_ptr(ops[i].am_attrvalue),
464 ops[i].am_length, ops[i].am_flags);
Christoph Hellwig62e194e2009-01-19 02:03:03 +0100465 mnt_drop_write(parfilp->f_path.mnt);
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600466 break;
467 case ATTR_OP_REMOVE:
Christoph Hellwig62e194e2009-01-19 02:03:03 +0100468 ops[i].am_error = mnt_want_write(parfilp->f_path.mnt);
469 if (ops[i].am_error)
470 break;
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100471 ops[i].am_error = xfs_attrmulti_attr_remove(
472 dentry->d_inode, attr_name,
473 ops[i].am_flags);
Christoph Hellwig62e194e2009-01-19 02:03:03 +0100474 mnt_drop_write(parfilp->f_path.mnt);
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600475 break;
476 default:
477 ops[i].am_error = EINVAL;
478 }
479 }
480
481 if (copy_to_user(compat_ptr(am_hreq.ops), ops, size))
482 error = XFS_ERROR(EFAULT);
483
484 kfree(attr_name);
485 out_kfree_ops:
486 kfree(ops);
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100487 out_dput:
488 dput(dentry);
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600489 return -error;
490}
491
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600492STATIC int
493xfs_compat_fssetdm_by_handle(
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100494 struct file *parfilp,
495 void __user *arg)
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600496{
497 int error;
498 struct fsdmidata fsd;
499 compat_xfs_fsop_setdm_handlereq_t dmhreq;
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100500 struct dentry *dentry;
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600501
502 if (!capable(CAP_MKNOD))
503 return -XFS_ERROR(EPERM);
504 if (copy_from_user(&dmhreq, arg,
505 sizeof(compat_xfs_fsop_setdm_handlereq_t)))
506 return -XFS_ERROR(EFAULT);
507
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100508 dentry = xfs_compat_handlereq_to_dentry(parfilp, &dmhreq.hreq);
509 if (IS_ERR(dentry))
510 return PTR_ERR(dentry);
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600511
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100512 if (IS_IMMUTABLE(dentry->d_inode) || IS_APPEND(dentry->d_inode)) {
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600513 error = -XFS_ERROR(EPERM);
514 goto out;
515 }
516
517 if (copy_from_user(&fsd, compat_ptr(dmhreq.data), sizeof(fsd))) {
518 error = -XFS_ERROR(EFAULT);
519 goto out;
520 }
521
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100522 error = -xfs_set_dmattrs(XFS_I(dentry->d_inode), fsd.fsd_dmevmask,
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600523 fsd.fsd_dmstate);
524
525out:
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100526 dput(dentry);
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600527 return error;
528}
529
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500530long
531xfs_file_compat_ioctl(
532 struct file *filp,
533 unsigned cmd,
534 unsigned long p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500536 struct inode *inode = filp->f_path.dentry->d_inode;
537 struct xfs_inode *ip = XFS_I(inode);
538 struct xfs_mount *mp = ip->i_mount;
539 void __user *arg = (void __user *)p;
540 int ioflags = 0;
541 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500543 if (filp->f_mode & FMODE_NOCMTIME)
544 ioflags |= IO_INVIS;
545
546 xfs_itrace_entry(ip);
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 switch (cmd) {
sandeen@sandeen.nete5d412f2008-11-25 21:20:17 -0600549 /* No size or alignment issues on any arch */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 case XFS_IOC_DIOINFO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 case XFS_IOC_FSGEOMETRY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 case XFS_IOC_FSGETXATTR:
553 case XFS_IOC_FSSETXATTR:
554 case XFS_IOC_FSGETXATTRA:
555 case XFS_IOC_FSSETDM:
556 case XFS_IOC_GETBMAP:
557 case XFS_IOC_GETBMAPA:
558 case XFS_IOC_GETBMAPX:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 case XFS_IOC_FSCOUNTS:
560 case XFS_IOC_SET_RESBLKS:
561 case XFS_IOC_GET_RESBLKS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 case XFS_IOC_FSGROWFSLOG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 case XFS_IOC_GOINGDOWN:
564 case XFS_IOC_ERROR_INJECTION:
565 case XFS_IOC_ERROR_CLEARALL:
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500566 return xfs_file_ioctl(filp, cmd, p);
sandeen@sandeen.nete5d412f2008-11-25 21:20:17 -0600567#ifndef BROKEN_X86_ALIGNMENT
568 /* These are handled fine if no alignment issues */
569 case XFS_IOC_ALLOCSP:
570 case XFS_IOC_FREESP:
571 case XFS_IOC_RESVSP:
572 case XFS_IOC_UNRESVSP:
573 case XFS_IOC_ALLOCSP64:
574 case XFS_IOC_FREESP64:
575 case XFS_IOC_RESVSP64:
576 case XFS_IOC_UNRESVSP64:
577 case XFS_IOC_FSGEOMETRY_V1:
578 case XFS_IOC_FSGROWFSDATA:
579 case XFS_IOC_FSGROWFSRT:
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500580 return xfs_file_ioctl(filp, cmd, p);
sandeen@sandeen.nete5d412f2008-11-25 21:20:17 -0600581#else
Eric Sandeen526c4202005-09-05 08:25:06 +1000582 case XFS_IOC_ALLOCSP_32:
583 case XFS_IOC_FREESP_32:
584 case XFS_IOC_ALLOCSP64_32:
585 case XFS_IOC_FREESP64_32:
586 case XFS_IOC_RESVSP_32:
587 case XFS_IOC_UNRESVSP_32:
588 case XFS_IOC_RESVSP64_32:
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600589 case XFS_IOC_UNRESVSP64_32: {
590 struct xfs_flock64 bf;
591
592 if (xfs_compat_flock64_copyin(&bf, arg))
593 return -XFS_ERROR(EFAULT);
Eric Sandeen526c4202005-09-05 08:25:06 +1000594 cmd = _NATIVE_IOC(cmd, struct xfs_flock64);
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600595 return xfs_ioc_space(ip, inode, filp, ioflags, cmd, &bf);
596 }
Michal Marek547e00c2007-07-11 11:09:57 +1000597 case XFS_IOC_FSGEOMETRY_V1_32:
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600598 return xfs_compat_ioc_fsgeometry_v1(mp, arg);
sandeen@sandeen.net471d5912008-11-25 21:20:10 -0600599 case XFS_IOC_FSGROWFSDATA_32: {
600 struct xfs_growfs_data in;
601
602 if (xfs_compat_growfs_data_copyin(&in, arg))
603 return -XFS_ERROR(EFAULT);
604 error = xfs_growfs_data(mp, &in);
605 return -error;
606 }
607 case XFS_IOC_FSGROWFSRT_32: {
608 struct xfs_growfs_rt in;
609
610 if (xfs_compat_growfs_rt_copyin(&in, arg))
611 return -XFS_ERROR(EFAULT);
612 error = xfs_growfs_rt(mp, &in);
613 return -error;
614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615#endif
sandeen@sandeen.nete5d412f2008-11-25 21:20:17 -0600616 /* long changes size, but xfs only copiese out 32 bits */
617 case XFS_IOC_GETXFLAGS_32:
618 case XFS_IOC_SETXFLAGS_32:
619 case XFS_IOC_GETVERSION_32:
620 cmd = _NATIVE_IOC(cmd, long);
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500621 return xfs_file_ioctl(filp, cmd, p);
sandeen@sandeen.nete5d412f2008-11-25 21:20:17 -0600622 case XFS_IOC_SWAPEXT: {
623 struct xfs_swapext sxp;
624 struct compat_xfs_swapext __user *sxu = arg;
625
626 /* Bulk copy in up to the sx_stat field, then copy bstat */
627 if (copy_from_user(&sxp, sxu,
628 offsetof(struct xfs_swapext, sx_stat)) ||
629 xfs_ioctl32_bstat_copyin(&sxp.sx_stat, &sxu->sx_stat))
630 return -XFS_ERROR(EFAULT);
631 error = xfs_swapext(&sxp);
632 return -error;
633 }
Michal Marekfaa63e92007-07-11 11:10:19 +1000634 case XFS_IOC_FSBULKSTAT_32:
635 case XFS_IOC_FSBULKSTAT_SINGLE_32:
636 case XFS_IOC_FSINUMBERS_32:
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600637 return xfs_compat_ioc_bulkstat(mp, cmd, arg);
Michal Marek1fa503d2007-07-11 11:10:09 +1000638 case XFS_IOC_FD_TO_HANDLE_32:
639 case XFS_IOC_PATH_TO_HANDLE_32:
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600640 case XFS_IOC_PATH_TO_FSHANDLE_32: {
641 struct xfs_fsop_handlereq hreq;
642
643 if (xfs_compat_handlereq_copyin(&hreq, arg))
644 return -XFS_ERROR(EFAULT);
Michal Marek1fa503d2007-07-11 11:10:09 +1000645 cmd = _NATIVE_IOC(cmd, struct xfs_fsop_handlereq);
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600646 return xfs_find_handle(cmd, &hreq);
647 }
648 case XFS_IOC_OPEN_BY_HANDLE_32: {
649 struct xfs_fsop_handlereq hreq;
650
651 if (xfs_compat_handlereq_copyin(&hreq, arg))
652 return -XFS_ERROR(EFAULT);
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100653 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600654 }
655 case XFS_IOC_READLINK_BY_HANDLE_32: {
656 struct xfs_fsop_handlereq hreq;
657
658 if (xfs_compat_handlereq_copyin(&hreq, arg))
659 return -XFS_ERROR(EFAULT);
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100660 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600661 }
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600662 case XFS_IOC_ATTRLIST_BY_HANDLE_32:
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100663 return xfs_compat_attrlist_by_handle(filp, arg);
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600664 case XFS_IOC_ATTRMULTI_BY_HANDLE_32:
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100665 return xfs_compat_attrmulti_by_handle(filp, arg);
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600666 case XFS_IOC_FSSETDM_BY_HANDLE_32:
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100667 return xfs_compat_fssetdm_by_handle(filp, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 default:
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600669 return -XFS_ERROR(ENOIOCTLCMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}