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