blob: fd4362063f25e172e633156a22f5fbfed3e79722 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_fs.h"
Michal Marekfaa63e92007-07-11 11:10:19 +100023#include "xfs_bit.h"
24#include "xfs_log.h"
25#include "xfs_inum.h"
26#include "xfs_trans.h"
27#include "xfs_sb.h"
28#include "xfs_ag.h"
29#include "xfs_dir2.h"
30#include "xfs_dmapi.h"
31#include "xfs_mount.h"
32#include "xfs_bmap_btree.h"
33#include "xfs_attr_sf.h"
34#include "xfs_dir2_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_vnode.h"
Michal Marekfaa63e92007-07-11 11:10:19 +100036#include "xfs_dinode.h"
37#include "xfs_inode.h"
38#include "xfs_itable.h"
39#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_dfrag.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100041#include "xfs_vnodeops.h"
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060042#include "xfs_fsops.h"
sandeen@sandeen.net471d5912008-11-25 21:20:10 -060043#include "xfs_alloc.h"
44#include "xfs_rtalloc.h"
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -060045#include "xfs_attr.h"
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060046#include "xfs_ioctl.h"
David Chinnera8272ce2007-11-23 16:28:09 +110047#include "xfs_ioctl32.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Eric Sandeen526c4202005-09-05 08:25:06 +100049#define _NATIVE_IOC(cmd, type) \
50 _IOC(_IOC_DIR(cmd), _IOC_TYPE(cmd), _IOC_NR(cmd), sizeof(type))
51
sandeen@sandeen.netffae2632008-11-25 21:20:07 -060052#ifdef BROKEN_X86_ALIGNMENT
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060053STATIC int
54xfs_compat_flock64_copyin(
55 xfs_flock64_t *bf,
56 compat_xfs_flock64_t __user *arg32)
Eric Sandeen526c4202005-09-05 08:25:06 +100057{
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060058 if (get_user(bf->l_type, &arg32->l_type) ||
59 get_user(bf->l_whence, &arg32->l_whence) ||
60 get_user(bf->l_start, &arg32->l_start) ||
61 get_user(bf->l_len, &arg32->l_len) ||
62 get_user(bf->l_sysid, &arg32->l_sysid) ||
63 get_user(bf->l_pid, &arg32->l_pid) ||
64 copy_from_user(bf->l_pad, &arg32->l_pad, 4*sizeof(u32)))
65 return -XFS_ERROR(EFAULT);
66 return 0;
Eric Sandeen526c4202005-09-05 08:25:06 +100067}
68
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060069STATIC int
70xfs_compat_ioc_fsgeometry_v1(
71 struct xfs_mount *mp,
72 compat_xfs_fsop_geom_v1_t __user *arg32)
Michal Marek547e00c2007-07-11 11:09:57 +100073{
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060074 xfs_fsop_geom_t fsgeo;
75 int error;
Michal Marek547e00c2007-07-11 11:09:57 +100076
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060077 error = xfs_fs_geometry(mp, &fsgeo, 3);
78 if (error)
79 return -error;
80 /* The 32-bit variant simply has some padding at the end */
81 if (copy_to_user(arg32, &fsgeo, sizeof(struct compat_xfs_fsop_geom_v1)))
82 return -XFS_ERROR(EFAULT);
83 return 0;
Michal Marek547e00c2007-07-11 11:09:57 +100084}
85
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -060086STATIC int
sandeen@sandeen.net471d5912008-11-25 21:20:10 -060087xfs_compat_growfs_data_copyin(
88 struct xfs_growfs_data *in,
89 compat_xfs_growfs_data_t __user *arg32)
90{
91 if (get_user(in->newblocks, &arg32->newblocks) ||
92 get_user(in->imaxpct, &arg32->imaxpct))
93 return -XFS_ERROR(EFAULT);
94 return 0;
95}
96
97STATIC int
98xfs_compat_growfs_rt_copyin(
99 struct xfs_growfs_rt *in,
100 compat_xfs_growfs_rt_t __user *arg32)
101{
102 if (get_user(in->newblocks, &arg32->newblocks) ||
103 get_user(in->extsize, &arg32->extsize))
104 return -XFS_ERROR(EFAULT);
105 return 0;
106}
107
108STATIC int
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600109xfs_inumbers_fmt_compat(
110 void __user *ubuffer,
111 const xfs_inogrp_t *buffer,
112 long count,
113 long *written)
Michal Marekfaa63e92007-07-11 11:10:19 +1000114{
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600115 compat_xfs_inogrp_t __user *p32 = ubuffer;
116 long i;
Michal Marekfaa63e92007-07-11 11:10:19 +1000117
118 for (i = 0; i < count; i++) {
119 if (put_user(buffer[i].xi_startino, &p32[i].xi_startino) ||
120 put_user(buffer[i].xi_alloccount, &p32[i].xi_alloccount) ||
121 put_user(buffer[i].xi_allocmask, &p32[i].xi_allocmask))
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600122 return -XFS_ERROR(EFAULT);
Michal Marekfaa63e92007-07-11 11:10:19 +1000123 }
124 *written = count * sizeof(*p32);
125 return 0;
126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#else
Michal Marekfaa63e92007-07-11 11:10:19 +1000129#define xfs_inumbers_fmt_compat xfs_inumbers_fmt
sandeen@sandeen.nete5d412f2008-11-25 21:20:17 -0600130#endif /* BROKEN_X86_ALIGNMENT */
Michal Marekfaa63e92007-07-11 11:10:19 +1000131
sandeen@sandeen.nete94fc4a2008-11-25 21:20:09 -0600132STATIC int
133xfs_ioctl32_bstime_copyin(
134 xfs_bstime_t *bstime,
135 compat_xfs_bstime_t __user *bstime32)
136{
137 compat_time_t sec32; /* tv_sec differs on 64 vs. 32 */
138
139 if (get_user(sec32, &bstime32->tv_sec) ||
140 get_user(bstime->tv_nsec, &bstime32->tv_nsec))
141 return -XFS_ERROR(EFAULT);
142 bstime->tv_sec = sec32;
143 return 0;
144}
145
146/* xfs_bstat_t has differing alignment on intel, & bstime_t sizes everywhere */
147STATIC int
148xfs_ioctl32_bstat_copyin(
149 xfs_bstat_t *bstat,
150 compat_xfs_bstat_t __user *bstat32)
151{
152 if (get_user(bstat->bs_ino, &bstat32->bs_ino) ||
153 get_user(bstat->bs_mode, &bstat32->bs_mode) ||
154 get_user(bstat->bs_nlink, &bstat32->bs_nlink) ||
155 get_user(bstat->bs_uid, &bstat32->bs_uid) ||
156 get_user(bstat->bs_gid, &bstat32->bs_gid) ||
157 get_user(bstat->bs_rdev, &bstat32->bs_rdev) ||
158 get_user(bstat->bs_blksize, &bstat32->bs_blksize) ||
159 get_user(bstat->bs_size, &bstat32->bs_size) ||
160 xfs_ioctl32_bstime_copyin(&bstat->bs_atime, &bstat32->bs_atime) ||
161 xfs_ioctl32_bstime_copyin(&bstat->bs_mtime, &bstat32->bs_mtime) ||
162 xfs_ioctl32_bstime_copyin(&bstat->bs_ctime, &bstat32->bs_ctime) ||
163 get_user(bstat->bs_blocks, &bstat32->bs_size) ||
164 get_user(bstat->bs_xflags, &bstat32->bs_size) ||
165 get_user(bstat->bs_extsize, &bstat32->bs_extsize) ||
166 get_user(bstat->bs_extents, &bstat32->bs_extents) ||
167 get_user(bstat->bs_gen, &bstat32->bs_gen) ||
168 get_user(bstat->bs_projid, &bstat32->bs_projid) ||
169 get_user(bstat->bs_dmevmask, &bstat32->bs_dmevmask) ||
170 get_user(bstat->bs_dmstate, &bstat32->bs_dmstate) ||
171 get_user(bstat->bs_aextents, &bstat32->bs_aextents))
172 return -XFS_ERROR(EFAULT);
173 return 0;
174}
175
Michal Marekfaa63e92007-07-11 11:10:19 +1000176/* XFS_IOC_FSBULKSTAT and friends */
177
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600178STATIC int
179xfs_bstime_store_compat(
180 compat_xfs_bstime_t __user *p32,
181 const xfs_bstime_t *p)
Michal Marekfaa63e92007-07-11 11:10:19 +1000182{
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600183 __s32 sec32;
Michal Marekfaa63e92007-07-11 11:10:19 +1000184
185 sec32 = p->tv_sec;
186 if (put_user(sec32, &p32->tv_sec) ||
187 put_user(p->tv_nsec, &p32->tv_nsec))
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600188 return -XFS_ERROR(EFAULT);
Michal Marekfaa63e92007-07-11 11:10:19 +1000189 return 0;
190}
191
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600192/* Return 0 on success or positive error (to xfs_bulkstat()) */
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600193STATIC int
194xfs_bulkstat_one_fmt_compat(
Michal Marekfaa63e92007-07-11 11:10:19 +1000195 void __user *ubuffer,
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600196 int ubsize,
197 int *ubused,
Michal Marekfaa63e92007-07-11 11:10:19 +1000198 const xfs_bstat_t *buffer)
199{
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600200 compat_xfs_bstat_t __user *p32 = ubuffer;
Michal Marekfaa63e92007-07-11 11:10:19 +1000201
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600202 if (ubsize < sizeof(*p32))
203 return XFS_ERROR(ENOMEM);
204
205 if (put_user(buffer->bs_ino, &p32->bs_ino) ||
206 put_user(buffer->bs_mode, &p32->bs_mode) ||
207 put_user(buffer->bs_nlink, &p32->bs_nlink) ||
208 put_user(buffer->bs_uid, &p32->bs_uid) ||
209 put_user(buffer->bs_gid, &p32->bs_gid) ||
210 put_user(buffer->bs_rdev, &p32->bs_rdev) ||
211 put_user(buffer->bs_blksize, &p32->bs_blksize) ||
212 put_user(buffer->bs_size, &p32->bs_size) ||
Michal Marekfaa63e92007-07-11 11:10:19 +1000213 xfs_bstime_store_compat(&p32->bs_atime, &buffer->bs_atime) ||
214 xfs_bstime_store_compat(&p32->bs_mtime, &buffer->bs_mtime) ||
215 xfs_bstime_store_compat(&p32->bs_ctime, &buffer->bs_ctime) ||
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600216 put_user(buffer->bs_blocks, &p32->bs_blocks) ||
217 put_user(buffer->bs_xflags, &p32->bs_xflags) ||
218 put_user(buffer->bs_extsize, &p32->bs_extsize) ||
219 put_user(buffer->bs_extents, &p32->bs_extents) ||
220 put_user(buffer->bs_gen, &p32->bs_gen) ||
221 put_user(buffer->bs_projid, &p32->bs_projid) ||
222 put_user(buffer->bs_dmevmask, &p32->bs_dmevmask) ||
223 put_user(buffer->bs_dmstate, &p32->bs_dmstate) ||
Michal Marekfaa63e92007-07-11 11:10:19 +1000224 put_user(buffer->bs_aextents, &p32->bs_aextents))
sandeen@sandeen.net65fbaf22008-11-25 21:20:12 -0600225 return XFS_ERROR(EFAULT);
226 if (ubused)
227 *ubused = sizeof(*p32);
228 return 0;
Michal Marekfaa63e92007-07-11 11:10:19 +1000229}
230
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600231STATIC int
232xfs_bulkstat_one_compat(
233 xfs_mount_t *mp, /* mount point for filesystem */
234 xfs_ino_t ino, /* inode number to get data for */
235 void __user *buffer, /* buffer to place output in */
236 int ubsize, /* size of buffer */
237 void *private_data, /* my private data */
238 xfs_daddr_t bno, /* starting bno of inode cluster */
239 int *ubused, /* bytes used by me */
240 void *dibuff, /* on-disk inode buffer */
241 int *stat) /* BULKSTAT_RV_... */
242{
243 return xfs_bulkstat_one_int(mp, ino, buffer, ubsize,
244 xfs_bulkstat_one_fmt_compat, bno,
245 ubused, dibuff, stat);
246}
247
Michal Marekfaa63e92007-07-11 11:10:19 +1000248/* copied from xfs_ioctl.c */
249STATIC int
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600250xfs_compat_ioc_bulkstat(
251 xfs_mount_t *mp,
252 unsigned int cmd,
253 compat_xfs_fsop_bulkreq_t __user *p32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 u32 addr;
Michal Marekfaa63e92007-07-11 11:10:19 +1000256 xfs_fsop_bulkreq_t bulkreq;
257 int count; /* # of records returned */
258 xfs_ino_t inlast; /* last inode number */
259 int done;
260 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Michal Marekfaa63e92007-07-11 11:10:19 +1000262 /* done = 1 if there are more stats to get and if bulkstat */
263 /* should be called again (unused here, but used in dmapi) */
264
265 if (!capable(CAP_SYS_ADMIN))
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600266 return -XFS_ERROR(EPERM);
Michal Marekfaa63e92007-07-11 11:10:19 +1000267
268 if (XFS_FORCED_SHUTDOWN(mp))
269 return -XFS_ERROR(EIO);
270
271 if (get_user(addr, &p32->lastip))
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600272 return -XFS_ERROR(EFAULT);
Michal Marekfaa63e92007-07-11 11:10:19 +1000273 bulkreq.lastip = compat_ptr(addr);
274 if (get_user(bulkreq.icount, &p32->icount) ||
275 get_user(addr, &p32->ubuffer))
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600276 return -XFS_ERROR(EFAULT);
Michal Marekfaa63e92007-07-11 11:10:19 +1000277 bulkreq.ubuffer = compat_ptr(addr);
278 if (get_user(addr, &p32->ocount))
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600279 return -XFS_ERROR(EFAULT);
Michal Marekfaa63e92007-07-11 11:10:19 +1000280 bulkreq.ocount = compat_ptr(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Michal Marekfaa63e92007-07-11 11:10:19 +1000282 if (copy_from_user(&inlast, bulkreq.lastip, sizeof(__s64)))
283 return -XFS_ERROR(EFAULT);
284
285 if ((count = bulkreq.icount) <= 0)
286 return -XFS_ERROR(EINVAL);
287
Lachlan McIlroycd57e592007-11-23 16:30:32 +1100288 if (bulkreq.ubuffer == NULL)
289 return -XFS_ERROR(EINVAL);
290
sandeen@sandeen.netaf819d22008-11-25 21:20:13 -0600291 if (cmd == XFS_IOC_FSINUMBERS_32) {
Michal Marekfaa63e92007-07-11 11:10:19 +1000292 error = xfs_inumbers(mp, &inlast, &count,
293 bulkreq.ubuffer, xfs_inumbers_fmt_compat);
sandeen@sandeen.netaf819d22008-11-25 21:20:13 -0600294 } else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE_32) {
295 int res;
296
297 error = xfs_bulkstat_one_compat(mp, inlast, bulkreq.ubuffer,
298 sizeof(compat_xfs_bstat_t),
299 NULL, 0, NULL, NULL, &res);
300 } else if (cmd == XFS_IOC_FSBULKSTAT_32) {
Michal Marekfaa63e92007-07-11 11:10:19 +1000301 error = xfs_bulkstat(mp, &inlast, &count,
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600302 xfs_bulkstat_one_compat, NULL,
Michal Marekfaa63e92007-07-11 11:10:19 +1000303 sizeof(compat_xfs_bstat_t), bulkreq.ubuffer,
304 BULKSTAT_FG_QUICK, &done);
sandeen@sandeen.netaf819d22008-11-25 21:20:13 -0600305 } else
306 error = XFS_ERROR(EINVAL);
Michal Marekfaa63e92007-07-11 11:10:19 +1000307 if (error)
308 return -error;
309
310 if (bulkreq.ocount != NULL) {
311 if (copy_to_user(bulkreq.lastip, &inlast,
312 sizeof(xfs_ino_t)))
313 return -XFS_ERROR(EFAULT);
314
315 if (copy_to_user(bulkreq.ocount, &count, sizeof(count)))
316 return -XFS_ERROR(EFAULT);
317 }
318
319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
Michal Marekfaa63e92007-07-11 11:10:19 +1000321
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600322STATIC int
323xfs_compat_handlereq_copyin(
324 xfs_fsop_handlereq_t *hreq,
325 compat_xfs_fsop_handlereq_t __user *arg32)
Michal Marek1fa503d2007-07-11 11:10:09 +1000326{
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600327 compat_xfs_fsop_handlereq_t hreq32;
Michal Marek1fa503d2007-07-11 11:10:09 +1000328
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600329 if (copy_from_user(&hreq32, arg32, sizeof(compat_xfs_fsop_handlereq_t)))
330 return -XFS_ERROR(EFAULT);
Michal Marek1fa503d2007-07-11 11:10:09 +1000331
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600332 hreq->fd = hreq32.fd;
333 hreq->path = compat_ptr(hreq32.path);
334 hreq->oflags = hreq32.oflags;
335 hreq->ihandle = compat_ptr(hreq32.ihandle);
336 hreq->ihandlen = hreq32.ihandlen;
337 hreq->ohandle = compat_ptr(hreq32.ohandle);
338 hreq->ohandlen = compat_ptr(hreq32.ohandlen);
339
340 return 0;
Michal Marek1fa503d2007-07-11 11:10:09 +1000341}
342
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100343STATIC struct dentry *
344xfs_compat_handlereq_to_dentry(
345 struct file *parfilp,
346 compat_xfs_fsop_handlereq_t *hreq)
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600347{
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100348 return xfs_handle_to_dentry(parfilp,
349 compat_ptr(hreq->ihandle), hreq->ihandlen);
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600350}
351
352STATIC int
353xfs_compat_attrlist_by_handle(
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100354 struct file *parfilp,
355 void __user *arg)
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600356{
357 int error;
358 attrlist_cursor_kern_t *cursor;
359 compat_xfs_fsop_attrlist_handlereq_t al_hreq;
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100360 struct dentry *dentry;
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600361 char *kbuf;
362
363 if (!capable(CAP_SYS_ADMIN))
364 return -XFS_ERROR(EPERM);
365 if (copy_from_user(&al_hreq, arg,
366 sizeof(compat_xfs_fsop_attrlist_handlereq_t)))
367 return -XFS_ERROR(EFAULT);
368 if (al_hreq.buflen > XATTR_LIST_MAX)
369 return -XFS_ERROR(EINVAL);
370
371 /*
372 * Reject flags, only allow namespaces.
373 */
374 if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
375 return -XFS_ERROR(EINVAL);
376
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100377 dentry = xfs_compat_handlereq_to_dentry(parfilp, &al_hreq.hreq);
378 if (IS_ERR(dentry))
379 return PTR_ERR(dentry);
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600380
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100381 error = -ENOMEM;
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600382 kbuf = kmalloc(al_hreq.buflen, GFP_KERNEL);
383 if (!kbuf)
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100384 goto out_dput;
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600385
386 cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100387 error = -xfs_attr_list(XFS_I(dentry->d_inode), kbuf, al_hreq.buflen,
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600388 al_hreq.flags, cursor);
389 if (error)
390 goto out_kfree;
391
392 if (copy_to_user(compat_ptr(al_hreq.buffer), kbuf, al_hreq.buflen))
393 error = -EFAULT;
394
395 out_kfree:
396 kfree(kbuf);
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100397 out_dput:
398 dput(dentry);
399 return error;
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600400}
401
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600402STATIC int
403xfs_compat_attrmulti_by_handle(
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100404 struct file *parfilp,
405 void __user *arg)
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600406{
407 int error;
408 compat_xfs_attr_multiop_t *ops;
409 compat_xfs_fsop_attrmulti_handlereq_t am_hreq;
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100410 struct dentry *dentry;
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600411 unsigned int i, size;
412 char *attr_name;
413
414 if (!capable(CAP_SYS_ADMIN))
415 return -XFS_ERROR(EPERM);
416 if (copy_from_user(&am_hreq, arg,
417 sizeof(compat_xfs_fsop_attrmulti_handlereq_t)))
418 return -XFS_ERROR(EFAULT);
419
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100420 dentry = xfs_compat_handlereq_to_dentry(parfilp, &am_hreq.hreq);
421 if (IS_ERR(dentry))
422 return PTR_ERR(dentry);
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600423
424 error = E2BIG;
425 size = am_hreq.opcount * sizeof(compat_xfs_attr_multiop_t);
426 if (!size || size > 16 * PAGE_SIZE)
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100427 goto out_dput;
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600428
429 error = ENOMEM;
430 ops = kmalloc(size, GFP_KERNEL);
431 if (!ops)
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100432 goto out_dput;
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600433
434 error = EFAULT;
435 if (copy_from_user(ops, compat_ptr(am_hreq.ops), size))
436 goto out_kfree_ops;
437
438 attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
439 if (!attr_name)
440 goto out_kfree_ops;
441
442
443 error = 0;
444 for (i = 0; i < am_hreq.opcount; i++) {
445 ops[i].am_error = strncpy_from_user(attr_name,
446 compat_ptr(ops[i].am_attrname),
447 MAXNAMELEN);
448 if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
449 error = -ERANGE;
450 if (ops[i].am_error < 0)
451 break;
452
453 switch (ops[i].am_opcode) {
454 case ATTR_OP_GET:
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100455 ops[i].am_error = xfs_attrmulti_attr_get(
456 dentry->d_inode, attr_name,
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600457 compat_ptr(ops[i].am_attrvalue),
458 &ops[i].am_length, ops[i].am_flags);
459 break;
460 case ATTR_OP_SET:
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);
465 break;
466 case ATTR_OP_REMOVE:
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100467 ops[i].am_error = xfs_attrmulti_attr_remove(
468 dentry->d_inode, attr_name,
469 ops[i].am_flags);
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600470 break;
471 default:
472 ops[i].am_error = EINVAL;
473 }
474 }
475
476 if (copy_to_user(compat_ptr(am_hreq.ops), ops, size))
477 error = XFS_ERROR(EFAULT);
478
479 kfree(attr_name);
480 out_kfree_ops:
481 kfree(ops);
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100482 out_dput:
483 dput(dentry);
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600484 return -error;
485}
486
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600487STATIC int
488xfs_compat_fssetdm_by_handle(
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100489 struct file *parfilp,
490 void __user *arg)
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600491{
492 int error;
493 struct fsdmidata fsd;
494 compat_xfs_fsop_setdm_handlereq_t dmhreq;
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100495 struct dentry *dentry;
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600496
497 if (!capable(CAP_MKNOD))
498 return -XFS_ERROR(EPERM);
499 if (copy_from_user(&dmhreq, arg,
500 sizeof(compat_xfs_fsop_setdm_handlereq_t)))
501 return -XFS_ERROR(EFAULT);
502
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100503 dentry = xfs_compat_handlereq_to_dentry(parfilp, &dmhreq.hreq);
504 if (IS_ERR(dentry))
505 return PTR_ERR(dentry);
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600506
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100507 if (IS_IMMUTABLE(dentry->d_inode) || IS_APPEND(dentry->d_inode)) {
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600508 error = -XFS_ERROR(EPERM);
509 goto out;
510 }
511
512 if (copy_from_user(&fsd, compat_ptr(dmhreq.data), sizeof(fsd))) {
513 error = -XFS_ERROR(EFAULT);
514 goto out;
515 }
516
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100517 error = -xfs_set_dmattrs(XFS_I(dentry->d_inode), fsd.fsd_dmevmask,
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600518 fsd.fsd_dmstate);
519
520out:
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100521 dput(dentry);
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600522 return error;
523}
524
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500525long
526xfs_file_compat_ioctl(
527 struct file *filp,
528 unsigned cmd,
529 unsigned long p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500531 struct inode *inode = filp->f_path.dentry->d_inode;
532 struct xfs_inode *ip = XFS_I(inode);
533 struct xfs_mount *mp = ip->i_mount;
534 void __user *arg = (void __user *)p;
535 int ioflags = 0;
536 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500538 if (filp->f_mode & FMODE_NOCMTIME)
539 ioflags |= IO_INVIS;
540
541 xfs_itrace_entry(ip);
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 switch (cmd) {
sandeen@sandeen.nete5d412f2008-11-25 21:20:17 -0600544 /* No size or alignment issues on any arch */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 case XFS_IOC_DIOINFO:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 case XFS_IOC_FSGEOMETRY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 case XFS_IOC_FSGETXATTR:
548 case XFS_IOC_FSSETXATTR:
549 case XFS_IOC_FSGETXATTRA:
550 case XFS_IOC_FSSETDM:
551 case XFS_IOC_GETBMAP:
552 case XFS_IOC_GETBMAPA:
553 case XFS_IOC_GETBMAPX:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 case XFS_IOC_FSCOUNTS:
555 case XFS_IOC_SET_RESBLKS:
556 case XFS_IOC_GET_RESBLKS:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 case XFS_IOC_FSGROWFSLOG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 case XFS_IOC_GOINGDOWN:
559 case XFS_IOC_ERROR_INJECTION:
560 case XFS_IOC_ERROR_CLEARALL:
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500561 return xfs_file_ioctl(filp, cmd, p);
sandeen@sandeen.nete5d412f2008-11-25 21:20:17 -0600562#ifndef BROKEN_X86_ALIGNMENT
563 /* These are handled fine if no alignment issues */
564 case XFS_IOC_ALLOCSP:
565 case XFS_IOC_FREESP:
566 case XFS_IOC_RESVSP:
567 case XFS_IOC_UNRESVSP:
568 case XFS_IOC_ALLOCSP64:
569 case XFS_IOC_FREESP64:
570 case XFS_IOC_RESVSP64:
571 case XFS_IOC_UNRESVSP64:
572 case XFS_IOC_FSGEOMETRY_V1:
573 case XFS_IOC_FSGROWFSDATA:
574 case XFS_IOC_FSGROWFSRT:
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500575 return xfs_file_ioctl(filp, cmd, p);
sandeen@sandeen.nete5d412f2008-11-25 21:20:17 -0600576#else
Eric Sandeen526c4202005-09-05 08:25:06 +1000577 case XFS_IOC_ALLOCSP_32:
578 case XFS_IOC_FREESP_32:
579 case XFS_IOC_ALLOCSP64_32:
580 case XFS_IOC_FREESP64_32:
581 case XFS_IOC_RESVSP_32:
582 case XFS_IOC_UNRESVSP_32:
583 case XFS_IOC_RESVSP64_32:
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600584 case XFS_IOC_UNRESVSP64_32: {
585 struct xfs_flock64 bf;
586
587 if (xfs_compat_flock64_copyin(&bf, arg))
588 return -XFS_ERROR(EFAULT);
Eric Sandeen526c4202005-09-05 08:25:06 +1000589 cmd = _NATIVE_IOC(cmd, struct xfs_flock64);
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600590 return xfs_ioc_space(ip, inode, filp, ioflags, cmd, &bf);
591 }
Michal Marek547e00c2007-07-11 11:09:57 +1000592 case XFS_IOC_FSGEOMETRY_V1_32:
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600593 return xfs_compat_ioc_fsgeometry_v1(mp, arg);
sandeen@sandeen.net471d5912008-11-25 21:20:10 -0600594 case XFS_IOC_FSGROWFSDATA_32: {
595 struct xfs_growfs_data in;
596
597 if (xfs_compat_growfs_data_copyin(&in, arg))
598 return -XFS_ERROR(EFAULT);
599 error = xfs_growfs_data(mp, &in);
600 return -error;
601 }
602 case XFS_IOC_FSGROWFSRT_32: {
603 struct xfs_growfs_rt in;
604
605 if (xfs_compat_growfs_rt_copyin(&in, arg))
606 return -XFS_ERROR(EFAULT);
607 error = xfs_growfs_rt(mp, &in);
608 return -error;
609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610#endif
sandeen@sandeen.nete5d412f2008-11-25 21:20:17 -0600611 /* long changes size, but xfs only copiese out 32 bits */
612 case XFS_IOC_GETXFLAGS_32:
613 case XFS_IOC_SETXFLAGS_32:
614 case XFS_IOC_GETVERSION_32:
615 cmd = _NATIVE_IOC(cmd, long);
Christoph Hellwig4d4be482008-12-09 04:47:33 -0500616 return xfs_file_ioctl(filp, cmd, p);
sandeen@sandeen.nete5d412f2008-11-25 21:20:17 -0600617 case XFS_IOC_SWAPEXT: {
618 struct xfs_swapext sxp;
619 struct compat_xfs_swapext __user *sxu = arg;
620
621 /* Bulk copy in up to the sx_stat field, then copy bstat */
622 if (copy_from_user(&sxp, sxu,
623 offsetof(struct xfs_swapext, sx_stat)) ||
624 xfs_ioctl32_bstat_copyin(&sxp.sx_stat, &sxu->sx_stat))
625 return -XFS_ERROR(EFAULT);
626 error = xfs_swapext(&sxp);
627 return -error;
628 }
Michal Marekfaa63e92007-07-11 11:10:19 +1000629 case XFS_IOC_FSBULKSTAT_32:
630 case XFS_IOC_FSBULKSTAT_SINGLE_32:
631 case XFS_IOC_FSINUMBERS_32:
sandeen@sandeen.net2ee4fa52008-11-25 21:20:11 -0600632 return xfs_compat_ioc_bulkstat(mp, cmd, arg);
Michal Marek1fa503d2007-07-11 11:10:09 +1000633 case XFS_IOC_FD_TO_HANDLE_32:
634 case XFS_IOC_PATH_TO_HANDLE_32:
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600635 case XFS_IOC_PATH_TO_FSHANDLE_32: {
636 struct xfs_fsop_handlereq hreq;
637
638 if (xfs_compat_handlereq_copyin(&hreq, arg))
639 return -XFS_ERROR(EFAULT);
Michal Marek1fa503d2007-07-11 11:10:09 +1000640 cmd = _NATIVE_IOC(cmd, struct xfs_fsop_handlereq);
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600641 return xfs_find_handle(cmd, &hreq);
642 }
643 case XFS_IOC_OPEN_BY_HANDLE_32: {
644 struct xfs_fsop_handlereq hreq;
645
646 if (xfs_compat_handlereq_copyin(&hreq, arg))
647 return -XFS_ERROR(EFAULT);
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100648 return xfs_open_by_handle(filp, &hreq);
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600649 }
650 case XFS_IOC_READLINK_BY_HANDLE_32: {
651 struct xfs_fsop_handlereq hreq;
652
653 if (xfs_compat_handlereq_copyin(&hreq, arg))
654 return -XFS_ERROR(EFAULT);
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100655 return xfs_readlink_by_handle(filp, &hreq);
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600656 }
sandeen@sandeen.netebeecd22008-11-25 21:20:14 -0600657 case XFS_IOC_ATTRLIST_BY_HANDLE_32:
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100658 return xfs_compat_attrlist_by_handle(filp, arg);
sandeen@sandeen.net28750972008-11-25 21:20:15 -0600659 case XFS_IOC_ATTRMULTI_BY_HANDLE_32:
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100660 return xfs_compat_attrmulti_by_handle(filp, arg);
sandeen@sandeen.net710d62a2008-11-25 21:20:16 -0600661 case XFS_IOC_FSSETDM_BY_HANDLE_32:
Christoph Hellwigab596ad2009-01-19 02:02:57 +0100662 return xfs_compat_fssetdm_by_handle(filp, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 default:
sandeen@sandeen.netd5547f92008-11-25 21:20:08 -0600664 return -XFS_ERROR(ENOIOCTLCMD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}