xfs_ioctl.c 53.4 KB
Newer Older
D
Dave Chinner 已提交
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2
/*
3 4
 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
 * All Rights Reserved.
L
Linus Torvalds 已提交
5 6 7
 */
#include "xfs.h"
#include "xfs_fs.h"
8
#include "xfs_shared.h"
9 10 11
#include "xfs_format.h"
#include "xfs_log_format.h"
#include "xfs_trans_resv.h"
L
Linus Torvalds 已提交
12 13 14
#include "xfs_mount.h"
#include "xfs_inode.h"
#include "xfs_rtalloc.h"
15
#include "xfs_iwalk.h"
L
Linus Torvalds 已提交
16
#include "xfs_itable.h"
17
#include "xfs_error.h"
L
Linus Torvalds 已提交
18
#include "xfs_attr.h"
19
#include "xfs_bmap.h"
D
Dave Chinner 已提交
20
#include "xfs_bmap_util.h"
L
Linus Torvalds 已提交
21
#include "xfs_fsops.h"
C
Christoph Hellwig 已提交
22
#include "xfs_discard.h"
23
#include "xfs_quota.h"
24
#include "xfs_export.h"
C
Christoph Hellwig 已提交
25
#include "xfs_trace.h"
26
#include "xfs_icache.h"
27
#include "xfs_trans.h"
28
#include "xfs_acl.h"
29 30 31
#include "xfs_btree.h"
#include <linux/fsmap.h>
#include "xfs_fsmap.h"
32
#include "scrub/xfs_scrub.h"
33
#include "xfs_sb.h"
34
#include "xfs_ag.h"
35
#include "xfs_health.h"
36
#include "xfs_reflink.h"
L
Linus Torvalds 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

#include <linux/mount.h>
#include <linux/namei.h>

/*
 * xfs_find_handle maps from userspace xfs_fsop_handlereq structure to
 * a file or fs handle.
 *
 * XFS_IOC_PATH_TO_FSHANDLE
 *    returns fs handle for a mount point or path within that mount point
 * XFS_IOC_FD_TO_HANDLE
 *    returns full handle for a FD opened in user space
 * XFS_IOC_PATH_TO_HANDLE
 *    returns full handle for a path
 */
52
int
L
Linus Torvalds 已提交
53 54
xfs_find_handle(
	unsigned int		cmd,
55
	xfs_fsop_handlereq_t	*hreq)
L
Linus Torvalds 已提交
56 57 58 59
{
	int			hsize;
	xfs_handle_t		handle;
	struct inode		*inode;
60
	struct fd		f = {NULL};
C
Christoph Hellwig 已提交
61
	struct path		path;
62
	int			error;
C
Christoph Hellwig 已提交
63
	struct xfs_inode	*ip;
L
Linus Torvalds 已提交
64

C
Christoph Hellwig 已提交
65
	if (cmd == XFS_IOC_FD_TO_HANDLE) {
66 67
		f = fdget(hreq->fd);
		if (!f.file)
C
Christoph Hellwig 已提交
68
			return -EBADF;
A
Al Viro 已提交
69
		inode = file_inode(f.file);
C
Christoph Hellwig 已提交
70
	} else {
71
		error = user_path_at(AT_FDCWD, hreq->path, 0, &path);
C
Christoph Hellwig 已提交
72 73
		if (error)
			return error;
74
		inode = d_inode(path.dentry);
L
Linus Torvalds 已提交
75
	}
C
Christoph Hellwig 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
	ip = XFS_I(inode);

	/*
	 * We can only generate handles for inodes residing on a XFS filesystem,
	 * and only for regular files, directories or symbolic links.
	 */
	error = -EINVAL;
	if (inode->i_sb->s_magic != XFS_SB_MAGIC)
		goto out_put;

	error = -EBADF;
	if (!S_ISREG(inode->i_mode) &&
	    !S_ISDIR(inode->i_mode) &&
	    !S_ISLNK(inode->i_mode))
		goto out_put;


	memcpy(&handle.ha_fsid, ip->i_mount->m_fixedfsid, sizeof(xfs_fsid_t));

	if (cmd == XFS_IOC_PATH_TO_FSHANDLE) {
		/*
		 * This handle only contains an fsid, zero the rest.
		 */
		memset(&handle.ha_fid, 0, sizeof(handle.ha_fid));
		hsize = sizeof(xfs_fsid_t);
	} else {
C
Christoph Hellwig 已提交
102 103 104
		handle.ha_fid.fid_len = sizeof(xfs_fid_t) -
					sizeof(handle.ha_fid.fid_len);
		handle.ha_fid.fid_pad = 0;
105
		handle.ha_fid.fid_gen = inode->i_generation;
C
Christoph Hellwig 已提交
106
		handle.ha_fid.fid_ino = ip->i_ino;
C
Christoph Hellwig 已提交
107
		hsize = sizeof(xfs_handle_t);
L
Linus Torvalds 已提交
108 109
	}

C
Christoph Hellwig 已提交
110
	error = -EFAULT;
111
	if (copy_to_user(hreq->ohandle, &handle, hsize) ||
C
Christoph Hellwig 已提交
112 113
	    copy_to_user(hreq->ohandlen, &hsize, sizeof(__s32)))
		goto out_put;
L
Linus Torvalds 已提交
114

C
Christoph Hellwig 已提交
115 116 117 118
	error = 0;

 out_put:
	if (cmd == XFS_IOC_FD_TO_HANDLE)
119
		fdput(f);
C
Christoph Hellwig 已提交
120 121 122
	else
		path_put(&path);
	return error;
L
Linus Torvalds 已提交
123 124 125
}

/*
126 127
 * No need to do permission checks on the various pathname components
 * as the handle operations are privileged.
L
Linus Torvalds 已提交
128 129
 */
STATIC int
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
xfs_handle_acceptable(
	void			*context,
	struct dentry		*dentry)
{
	return 1;
}

/*
 * Convert userspace handle data into a dentry.
 */
struct dentry *
xfs_handle_to_dentry(
	struct file		*parfilp,
	void __user		*uhandle,
	u32			hlen)
L
Linus Torvalds 已提交
145 146
{
	xfs_handle_t		handle;
147
	struct xfs_fid64	fid;
L
Linus Torvalds 已提交
148 149 150 151

	/*
	 * Only allow handle opens under a directory.
	 */
A
Al Viro 已提交
152
	if (!S_ISDIR(file_inode(parfilp)->i_mode))
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
		return ERR_PTR(-ENOTDIR);

	if (hlen != sizeof(xfs_handle_t))
		return ERR_PTR(-EINVAL);
	if (copy_from_user(&handle, uhandle, hlen))
		return ERR_PTR(-EFAULT);
	if (handle.ha_fid.fid_len !=
	    sizeof(handle.ha_fid) - sizeof(handle.ha_fid.fid_len))
		return ERR_PTR(-EINVAL);

	memset(&fid, 0, sizeof(struct fid));
	fid.ino = handle.ha_fid.fid_ino;
	fid.gen = handle.ha_fid.fid_gen;

	return exportfs_decode_fh(parfilp->f_path.mnt, (struct fid *)&fid, 3,
			FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG,
			xfs_handle_acceptable, NULL);
}
L
Linus Torvalds 已提交
171

172 173 174 175 176 177
STATIC struct dentry *
xfs_handlereq_to_dentry(
	struct file		*parfilp,
	xfs_fsop_handlereq_t	*hreq)
{
	return xfs_handle_to_dentry(parfilp, hreq->ihandle, hreq->ihandlen);
L
Linus Torvalds 已提交
178 179
}

180
int
L
Linus Torvalds 已提交
181 182
xfs_open_by_handle(
	struct file		*parfilp,
183
	xfs_fsop_handlereq_t	*hreq)
L
Linus Torvalds 已提交
184
{
185
	const struct cred	*cred = current_cred();
L
Linus Torvalds 已提交
186
	int			error;
187
	int			fd;
L
Linus Torvalds 已提交
188 189 190 191
	int			permflag;
	struct file		*filp;
	struct inode		*inode;
	struct dentry		*dentry;
192
	fmode_t			fmode;
193
	struct path		path;
L
Linus Torvalds 已提交
194 195

	if (!capable(CAP_SYS_ADMIN))
E
Eric Sandeen 已提交
196
		return -EPERM;
L
Linus Torvalds 已提交
197

198 199 200
	dentry = xfs_handlereq_to_dentry(parfilp, hreq);
	if (IS_ERR(dentry))
		return PTR_ERR(dentry);
201
	inode = d_inode(dentry);
L
Linus Torvalds 已提交
202 203 204

	/* Restrict xfs_open_by_handle to directories & regular files. */
	if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode))) {
E
Eric Sandeen 已提交
205
		error = -EPERM;
206
		goto out_dput;
L
Linus Torvalds 已提交
207 208 209
	}

#if BITS_PER_LONG != 32
210
	hreq->oflags |= O_LARGEFILE;
L
Linus Torvalds 已提交
211
#endif
212

213
	permflag = hreq->oflags;
214
	fmode = OPEN_FMODE(permflag);
L
Linus Torvalds 已提交
215
	if ((!(permflag & O_APPEND) || (permflag & O_TRUNC)) &&
216
	    (fmode & FMODE_WRITE) && IS_APPEND(inode)) {
E
Eric Sandeen 已提交
217
		error = -EPERM;
218
		goto out_dput;
L
Linus Torvalds 已提交
219 220
	}

221
	if ((fmode & FMODE_WRITE) && IS_IMMUTABLE(inode)) {
E
Eryu Guan 已提交
222
		error = -EPERM;
223
		goto out_dput;
L
Linus Torvalds 已提交
224 225 226
	}

	/* Can't write directories. */
227
	if (S_ISDIR(inode->i_mode) && (fmode & FMODE_WRITE)) {
E
Eric Sandeen 已提交
228
		error = -EISDIR;
229
		goto out_dput;
L
Linus Torvalds 已提交
230 231
	}

232
	fd = get_unused_fd_flags(0);
233 234 235
	if (fd < 0) {
		error = fd;
		goto out_dput;
L
Linus Torvalds 已提交
236 237
	}

238 239 240 241
	path.mnt = parfilp->f_path.mnt;
	path.dentry = dentry;
	filp = dentry_open(&path, hreq->oflags, cred);
	dput(dentry);
L
Linus Torvalds 已提交
242
	if (IS_ERR(filp)) {
243 244
		put_unused_fd(fd);
		return PTR_ERR(filp);
L
Linus Torvalds 已提交
245
	}
246

A
Al Viro 已提交
247
	if (S_ISREG(inode->i_mode)) {
248
		filp->f_flags |= O_NOATIME;
249
		filp->f_mode |= FMODE_NOCMTIME;
250
	}
L
Linus Torvalds 已提交
251

252 253 254 255 256 257
	fd_install(fd, filp);
	return fd;

 out_dput:
	dput(dentry);
	return error;
L
Linus Torvalds 已提交
258 259
}

260
int
L
Linus Torvalds 已提交
261
xfs_readlink_by_handle(
262 263
	struct file		*parfilp,
	xfs_fsop_handlereq_t	*hreq)
L
Linus Torvalds 已提交
264
{
265
	struct dentry		*dentry;
L
Linus Torvalds 已提交
266
	__u32			olen;
267
	int			error;
L
Linus Torvalds 已提交
268 269

	if (!capable(CAP_SYS_ADMIN))
E
Eric Sandeen 已提交
270
		return -EPERM;
L
Linus Torvalds 已提交
271

272 273 274
	dentry = xfs_handlereq_to_dentry(parfilp, hreq);
	if (IS_ERR(dentry))
		return PTR_ERR(dentry);
L
Linus Torvalds 已提交
275 276

	/* Restrict this handle operation to symlinks only. */
277
	if (!d_is_symlink(dentry)) {
E
Eric Sandeen 已提交
278
		error = -EINVAL;
279
		goto out_dput;
L
Linus Torvalds 已提交
280 281
	}

282
	if (copy_from_user(&olen, hreq->ohandlen, sizeof(__u32))) {
E
Eric Sandeen 已提交
283
		error = -EFAULT;
284
		goto out_dput;
L
Linus Torvalds 已提交
285 286
	}

287
	error = vfs_readlink(dentry, hreq->ohandle, olen);
288

289 290
 out_dput:
	dput(dentry);
291
	return error;
L
Linus Torvalds 已提交
292 293
}

D
Dave Chinner 已提交
294 295 296
int
xfs_set_dmattrs(
	xfs_inode_t     *ip,
D
Darrick J. Wong 已提交
297 298
	uint		evmask,
	uint16_t	state)
D
Dave Chinner 已提交
299 300 301 302 303 304
{
	xfs_mount_t	*mp = ip->i_mount;
	xfs_trans_t	*tp;
	int		error;

	if (!capable(CAP_SYS_ADMIN))
D
Dave Chinner 已提交
305
		return -EPERM;
D
Dave Chinner 已提交
306 307

	if (XFS_FORCED_SHUTDOWN(mp))
D
Dave Chinner 已提交
308
		return -EIO;
D
Dave Chinner 已提交
309

310 311
	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
	if (error)
D
Dave Chinner 已提交
312
		return error;
313

D
Dave Chinner 已提交
314 315 316 317 318 319 320
	xfs_ilock(ip, XFS_ILOCK_EXCL);
	xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);

	ip->i_d.di_dmevmask = evmask;
	ip->i_d.di_dmstate  = state;

	xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
321
	error = xfs_trans_commit(tp);
D
Dave Chinner 已提交
322 323 324 325

	return error;
}

L
Linus Torvalds 已提交
326 327
STATIC int
xfs_fssetdm_by_handle(
328 329
	struct file		*parfilp,
	void			__user *arg)
L
Linus Torvalds 已提交
330 331 332 333
{
	int			error;
	struct fsdmidata	fsd;
	xfs_fsop_setdm_handlereq_t dmhreq;
334
	struct dentry		*dentry;
L
Linus Torvalds 已提交
335 336

	if (!capable(CAP_MKNOD))
E
Eric Sandeen 已提交
337
		return -EPERM;
L
Linus Torvalds 已提交
338
	if (copy_from_user(&dmhreq, arg, sizeof(xfs_fsop_setdm_handlereq_t)))
E
Eric Sandeen 已提交
339
		return -EFAULT;
L
Linus Torvalds 已提交
340

J
Jan Kara 已提交
341 342 343 344
	error = mnt_want_write_file(parfilp);
	if (error)
		return error;

345
	dentry = xfs_handlereq_to_dentry(parfilp, &dmhreq.hreq);
J
Jan Kara 已提交
346 347
	if (IS_ERR(dentry)) {
		mnt_drop_write_file(parfilp);
348
		return PTR_ERR(dentry);
J
Jan Kara 已提交
349
	}
L
Linus Torvalds 已提交
350

351
	if (IS_IMMUTABLE(d_inode(dentry)) || IS_APPEND(d_inode(dentry))) {
E
Eric Sandeen 已提交
352
		error = -EPERM;
353
		goto out;
L
Linus Torvalds 已提交
354 355 356
	}

	if (copy_from_user(&fsd, dmhreq.data, sizeof(fsd))) {
E
Eric Sandeen 已提交
357
		error = -EFAULT;
358
		goto out;
L
Linus Torvalds 已提交
359 360
	}

361
	error = xfs_set_dmattrs(XFS_I(d_inode(dentry)), fsd.fsd_dmevmask,
362
				 fsd.fsd_dmstate);
L
Linus Torvalds 已提交
363

364
 out:
J
Jan Kara 已提交
365
	mnt_drop_write_file(parfilp);
366
	dput(dentry);
367
	return error;
L
Linus Torvalds 已提交
368 369 370 371
}

STATIC int
xfs_attrlist_by_handle(
372 373
	struct file		*parfilp,
	void			__user *arg)
L
Linus Torvalds 已提交
374
{
375
	int			error = -ENOMEM;
L
Linus Torvalds 已提交
376
	attrlist_cursor_kern_t	*cursor;
377
	struct xfs_fsop_attrlist_handlereq __user	*p = arg;
L
Linus Torvalds 已提交
378
	xfs_fsop_attrlist_handlereq_t al_hreq;
379
	struct dentry		*dentry;
L
Linus Torvalds 已提交
380 381 382
	char			*kbuf;

	if (!capable(CAP_SYS_ADMIN))
E
Eric Sandeen 已提交
383
		return -EPERM;
L
Linus Torvalds 已提交
384
	if (copy_from_user(&al_hreq, arg, sizeof(xfs_fsop_attrlist_handlereq_t)))
E
Eric Sandeen 已提交
385
		return -EFAULT;
386
	if (al_hreq.buflen < sizeof(struct attrlist) ||
J
Jan Tulak 已提交
387
	    al_hreq.buflen > XFS_XATTR_LIST_MAX)
E
Eric Sandeen 已提交
388
		return -EINVAL;
L
Linus Torvalds 已提交
389

390 391 392 393
	/*
	 * Reject flags, only allow namespaces.
	 */
	if (al_hreq.flags & ~(ATTR_ROOT | ATTR_SECURE))
E
Eric Sandeen 已提交
394
		return -EINVAL;
395

396 397 398
	dentry = xfs_handlereq_to_dentry(parfilp, &al_hreq.hreq);
	if (IS_ERR(dentry))
		return PTR_ERR(dentry);
L
Linus Torvalds 已提交
399

400
	kbuf = kmem_zalloc_large(al_hreq.buflen, 0);
401 402
	if (!kbuf)
		goto out_dput;
L
Linus Torvalds 已提交
403 404

	cursor = (attrlist_cursor_kern_t *)&al_hreq.pos;
405
	error = xfs_attr_list(XFS_I(d_inode(dentry)), kbuf, al_hreq.buflen,
406
					al_hreq.flags, cursor);
L
Linus Torvalds 已提交
407 408 409
	if (error)
		goto out_kfree;

410 411 412 413 414
	if (copy_to_user(&p->pos, cursor, sizeof(attrlist_cursor_kern_t))) {
		error = -EFAULT;
		goto out_kfree;
	}

L
Linus Torvalds 已提交
415 416 417
	if (copy_to_user(al_hreq.buffer, kbuf, al_hreq.buflen))
		error = -EFAULT;

418 419 420
out_kfree:
	kmem_free(kbuf);
out_dput:
421 422
	dput(dentry);
	return error;
L
Linus Torvalds 已提交
423 424
}

425
int
L
Linus Torvalds 已提交
426
xfs_attrmulti_attr_get(
427
	struct inode		*inode,
428 429
	unsigned char		*name,
	unsigned char		__user *ubuf,
430 431
	uint32_t		*len,
	uint32_t		flags)
L
Linus Torvalds 已提交
432
{
433
	unsigned char		*kbuf;
D
Dave Chinner 已提交
434
	int			error = -EFAULT;
435

436
	if (*len > XFS_XATTR_SIZE_MAX)
D
Dave Chinner 已提交
437
		return -EINVAL;
438
	kbuf = kmem_zalloc_large(*len, 0);
439
	if (!kbuf)
D
Dave Chinner 已提交
440
		return -ENOMEM;
L
Linus Torvalds 已提交
441

442
	error = xfs_attr_get(XFS_I(inode), name, &kbuf, (int *)len, flags);
L
Linus Torvalds 已提交
443 444 445 446
	if (error)
		goto out_kfree;

	if (copy_to_user(ubuf, kbuf, *len))
D
Dave Chinner 已提交
447
		error = -EFAULT;
L
Linus Torvalds 已提交
448

449 450
out_kfree:
	kmem_free(kbuf);
L
Linus Torvalds 已提交
451 452 453
	return error;
}

454
int
L
Linus Torvalds 已提交
455
xfs_attrmulti_attr_set(
456
	struct inode		*inode,
457 458
	unsigned char		*name,
	const unsigned char	__user *ubuf,
459 460
	uint32_t		len,
	uint32_t		flags)
L
Linus Torvalds 已提交
461
{
462
	unsigned char		*kbuf;
463
	int			error;
L
Linus Torvalds 已提交
464

465
	if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
D
Dave Chinner 已提交
466
		return -EPERM;
467
	if (len > XFS_XATTR_SIZE_MAX)
D
Dave Chinner 已提交
468
		return -EINVAL;
L
Linus Torvalds 已提交
469

L
Li Zefan 已提交
470 471 472
	kbuf = memdup_user(ubuf, len);
	if (IS_ERR(kbuf))
		return PTR_ERR(kbuf);
473

474
	error = xfs_attr_set(XFS_I(inode), name, kbuf, len, flags);
475 476
	if (!error)
		xfs_forget_acl(inode, name, flags);
477 478
	kfree(kbuf);
	return error;
L
Linus Torvalds 已提交
479 480
}

481
int
L
Linus Torvalds 已提交
482
xfs_attrmulti_attr_remove(
483
	struct inode		*inode,
484
	unsigned char		*name,
485
	uint32_t		flags)
L
Linus Torvalds 已提交
486
{
487 488
	int			error;

489
	if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
D
Dave Chinner 已提交
490
		return -EPERM;
491 492 493 494
	error = xfs_attr_remove(XFS_I(inode), name, flags);
	if (!error)
		xfs_forget_acl(inode, name, flags);
	return error;
L
Linus Torvalds 已提交
495 496 497 498
}

STATIC int
xfs_attrmulti_by_handle(
499
	struct file		*parfilp,
500
	void			__user *arg)
L
Linus Torvalds 已提交
501 502 503 504
{
	int			error;
	xfs_attr_multiop_t	*ops;
	xfs_fsop_attrmulti_handlereq_t am_hreq;
505
	struct dentry		*dentry;
L
Linus Torvalds 已提交
506
	unsigned int		i, size;
507
	unsigned char		*attr_name;
L
Linus Torvalds 已提交
508 509

	if (!capable(CAP_SYS_ADMIN))
E
Eric Sandeen 已提交
510
		return -EPERM;
L
Linus Torvalds 已提交
511
	if (copy_from_user(&am_hreq, arg, sizeof(xfs_fsop_attrmulti_handlereq_t)))
E
Eric Sandeen 已提交
512
		return -EFAULT;
L
Linus Torvalds 已提交
513

514 515 516 517
	/* overflow check */
	if (am_hreq.opcount >= INT_MAX / sizeof(xfs_attr_multiop_t))
		return -E2BIG;

518 519 520
	dentry = xfs_handlereq_to_dentry(parfilp, &am_hreq.hreq);
	if (IS_ERR(dentry))
		return PTR_ERR(dentry);
L
Linus Torvalds 已提交
521

D
Dave Chinner 已提交
522
	error = -E2BIG;
C
Christoph Hellwig 已提交
523
	size = am_hreq.opcount * sizeof(xfs_attr_multiop_t);
L
Linus Torvalds 已提交
524
	if (!size || size > 16 * PAGE_SIZE)
525
		goto out_dput;
L
Linus Torvalds 已提交
526

L
Li Zefan 已提交
527 528
	ops = memdup_user(am_hreq.ops, size);
	if (IS_ERR(ops)) {
D
Dave Chinner 已提交
529
		error = PTR_ERR(ops);
530
		goto out_dput;
L
Li Zefan 已提交
531
	}
L
Linus Torvalds 已提交
532

D
Dave Chinner 已提交
533
	error = -ENOMEM;
L
Linus Torvalds 已提交
534 535 536 537 538 539
	attr_name = kmalloc(MAXNAMELEN, GFP_KERNEL);
	if (!attr_name)
		goto out_kfree_ops;

	error = 0;
	for (i = 0; i < am_hreq.opcount; i++) {
540
		ops[i].am_error = strncpy_from_user((char *)attr_name,
L
Linus Torvalds 已提交
541 542
				ops[i].am_attrname, MAXNAMELEN);
		if (ops[i].am_error == 0 || ops[i].am_error == MAXNAMELEN)
D
Dave Chinner 已提交
543
			error = -ERANGE;
L
Linus Torvalds 已提交
544 545 546 547 548
		if (ops[i].am_error < 0)
			break;

		switch (ops[i].am_opcode) {
		case ATTR_OP_GET:
549
			ops[i].am_error = xfs_attrmulti_attr_get(
550
					d_inode(dentry), attr_name,
551 552
					ops[i].am_attrvalue, &ops[i].am_length,
					ops[i].am_flags);
L
Linus Torvalds 已提交
553 554
			break;
		case ATTR_OP_SET:
555
			ops[i].am_error = mnt_want_write_file(parfilp);
556 557
			if (ops[i].am_error)
				break;
558
			ops[i].am_error = xfs_attrmulti_attr_set(
559
					d_inode(dentry), attr_name,
560 561
					ops[i].am_attrvalue, ops[i].am_length,
					ops[i].am_flags);
A
Al Viro 已提交
562
			mnt_drop_write_file(parfilp);
L
Linus Torvalds 已提交
563 564
			break;
		case ATTR_OP_REMOVE:
565
			ops[i].am_error = mnt_want_write_file(parfilp);
566 567
			if (ops[i].am_error)
				break;
568
			ops[i].am_error = xfs_attrmulti_attr_remove(
569
					d_inode(dentry), attr_name,
570
					ops[i].am_flags);
A
Al Viro 已提交
571
			mnt_drop_write_file(parfilp);
L
Linus Torvalds 已提交
572 573
			break;
		default:
D
Dave Chinner 已提交
574
			ops[i].am_error = -EINVAL;
L
Linus Torvalds 已提交
575 576 577 578
		}
	}

	if (copy_to_user(am_hreq.ops, ops, size))
D
Dave Chinner 已提交
579
		error = -EFAULT;
L
Linus Torvalds 已提交
580 581 582 583

	kfree(attr_name);
 out_kfree_ops:
	kfree(ops);
584 585
 out_dput:
	dput(dentry);
D
Dave Chinner 已提交
586
	return error;
L
Linus Torvalds 已提交
587 588
}

589
int
L
Linus Torvalds 已提交
590 591
xfs_ioc_space(
	struct file		*filp,
592
	xfs_flock64_t		*bf)
L
Linus Torvalds 已提交
593
{
594 595
	struct inode		*inode = file_inode(filp);
	struct xfs_inode	*ip = XFS_I(inode);
596
	struct iattr		iattr;
597
	enum xfs_prealloc_flags	flags = XFS_PREALLOC_CLEAR;
598
	uint			iolock = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
L
Linus Torvalds 已提交
599 600
	int			error;

601
	if (inode->i_flags & (S_IMMUTABLE|S_APPEND))
E
Eric Sandeen 已提交
602
		return -EPERM;
L
Linus Torvalds 已提交
603

604
	if (!(filp->f_mode & FMODE_WRITE))
E
Eric Sandeen 已提交
605
		return -EBADF;
L
Linus Torvalds 已提交
606

607
	if (!S_ISREG(inode->i_mode))
E
Eric Sandeen 已提交
608
		return -EINVAL;
L
Linus Torvalds 已提交
609

610 611 612
	if (xfs_is_always_cow_inode(ip))
		return -EOPNOTSUPP;

613 614
	if (filp->f_flags & O_DSYNC)
		flags |= XFS_PREALLOC_SYNC;
615
	if (filp->f_mode & FMODE_NOCMTIME)
616 617
		flags |= XFS_PREALLOC_INVISIBLE;

J
Jan Kara 已提交
618 619 620
	error = mnt_want_write_file(filp);
	if (error)
		return error;
621

622
	xfs_ilock(ip, iolock);
623
	error = xfs_break_layouts(inode, &iolock, BREAK_UNMAP);
624 625
	if (error)
		goto out_unlock;
626
	inode_dio_wait(inode);
627 628 629 630 631 632 633 634 635 636 637

	switch (bf->l_whence) {
	case 0: /*SEEK_SET*/
		break;
	case 1: /*SEEK_CUR*/
		bf->l_start += filp->f_pos;
		break;
	case 2: /*SEEK_END*/
		bf->l_start += XFS_ISIZE(ip);
		break;
	default:
D
Dave Chinner 已提交
638
		error = -EINVAL;
639 640 641
		goto out_unlock;
	}

642
	if (bf->l_start < 0 || bf->l_start > inode->i_sb->s_maxbytes) {
D
Dave Chinner 已提交
643
		error = -EINVAL;
644 645 646
		goto out_unlock;
	}

647 648 649 650 651
	if (bf->l_start > XFS_ISIZE(ip)) {
		error = xfs_alloc_file_space(ip, XFS_ISIZE(ip),
				bf->l_start - XFS_ISIZE(ip), 0);
		if (error)
			goto out_unlock;
652 653
	}

654 655 656
	iattr.ia_valid = ATTR_SIZE;
	iattr.ia_size = bf->l_start;
	error = xfs_vn_setattr_size(file_dentry(filp), &iattr);
657 658 659
	if (error)
		goto out_unlock;

660
	error = xfs_update_prealloc_flags(ip, flags);
661 662

out_unlock:
663
	xfs_iunlock(ip, iolock);
J
Jan Kara 已提交
664
	mnt_drop_write_file(filp);
D
Dave Chinner 已提交
665
	return error;
L
Linus Torvalds 已提交
666 667
}

668 669
/* Return 0 on success or positive error */
int
D
Darrick J. Wong 已提交
670
xfs_fsbulkstat_one_fmt(
671 672
	struct xfs_ibulk		*breq,
	const struct xfs_bulkstat	*bstat)
673
{
674 675 676 677
	struct xfs_bstat		bs1;

	xfs_bulkstat_to_bstat(breq->mp, &bs1, bstat);
	if (copy_to_user(breq->ubuffer, &bs1, sizeof(bs1)))
678 679 680 681
		return -EFAULT;
	return xfs_ibulk_advance(breq, sizeof(struct xfs_bstat));
}

682
int
D
Darrick J. Wong 已提交
683
xfs_fsinumbers_fmt(
684 685
	struct xfs_ibulk		*breq,
	const struct xfs_inumbers	*igrp)
686
{
687 688 689 690
	struct xfs_inogrp		ig1;

	xfs_inumbers_to_inogrp(&ig1, igrp);
	if (copy_to_user(breq->ubuffer, &ig1, sizeof(struct xfs_inogrp)))
691 692 693 694
		return -EFAULT;
	return xfs_ibulk_advance(breq, sizeof(struct xfs_inogrp));
}

L
Linus Torvalds 已提交
695
STATIC int
D
Darrick J. Wong 已提交
696
xfs_ioc_fsbulkstat(
L
Linus Torvalds 已提交
697 698 699 700
	xfs_mount_t		*mp,
	unsigned int		cmd,
	void			__user *arg)
{
701 702 703 704 705 706
	struct xfs_fsop_bulkreq	bulkreq;
	struct xfs_ibulk	breq = {
		.mp		= mp,
		.ocount		= 0,
	};
	xfs_ino_t		lastino;
L
Linus Torvalds 已提交
707 708 709 710 711 712 713 714 715
	int			error;

	/* done = 1 if there are more stats to get and if bulkstat */
	/* should be called again (unused here, but used in dmapi) */

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

	if (XFS_FORCED_SHUTDOWN(mp))
E
Eric Sandeen 已提交
716
		return -EIO;
L
Linus Torvalds 已提交
717

718
	if (copy_from_user(&bulkreq, arg, sizeof(struct xfs_fsop_bulkreq)))
E
Eric Sandeen 已提交
719
		return -EFAULT;
L
Linus Torvalds 已提交
720

721
	if (copy_from_user(&lastino, bulkreq.lastip, sizeof(__s64)))
E
Eric Sandeen 已提交
722
		return -EFAULT;
L
Linus Torvalds 已提交
723

724
	if (bulkreq.icount <= 0)
E
Eric Sandeen 已提交
725
		return -EINVAL;
L
Linus Torvalds 已提交
726

727
	if (bulkreq.ubuffer == NULL)
E
Eric Sandeen 已提交
728
		return -EINVAL;
729

730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
	breq.ubuffer = bulkreq.ubuffer;
	breq.icount = bulkreq.icount;

	/*
	 * FSBULKSTAT_SINGLE expects that *lastip contains the inode number
	 * that we want to stat.  However, FSINUMBERS and FSBULKSTAT expect
	 * that *lastip contains either zero or the number of the last inode to
	 * be examined by the previous call and return results starting with
	 * the next inode after that.  The new bulk request back end functions
	 * take the inode to start with, so we have to compute the startino
	 * parameter from lastino to maintain correct function.  lastino == 0
	 * is a special case because it has traditionally meant "first inode
	 * in filesystem".
	 */
	if (cmd == XFS_IOC_FSINUMBERS) {
745
		breq.startino = lastino ? lastino + 1 : 0;
D
Darrick J. Wong 已提交
746
		error = xfs_inumbers(&breq, xfs_fsinumbers_fmt);
747
		lastino = breq.startino - 1;
748 749 750
	} else if (cmd == XFS_IOC_FSBULKSTAT_SINGLE) {
		breq.startino = lastino;
		breq.icount = 1;
D
Darrick J. Wong 已提交
751
		error = xfs_bulkstat_one(&breq, xfs_fsbulkstat_one_fmt);
752 753
	} else {	/* XFS_IOC_FSBULKSTAT */
		breq.startino = lastino ? lastino + 1 : 0;
D
Darrick J. Wong 已提交
754
		error = xfs_bulkstat(&breq, xfs_fsbulkstat_one_fmt);
755 756
		lastino = breq.startino - 1;
	}
L
Linus Torvalds 已提交
757 758

	if (error)
D
Dave Chinner 已提交
759
		return error;
L
Linus Torvalds 已提交
760

761
	if (bulkreq.lastip != NULL &&
762
	    copy_to_user(bulkreq.lastip, &lastino, sizeof(xfs_ino_t)))
763
		return -EFAULT;
L
Linus Torvalds 已提交
764

765
	if (bulkreq.ocount != NULL &&
766
	    copy_to_user(bulkreq.ocount, &breq.ocount, sizeof(__s32)))
767
		return -EFAULT;
L
Linus Torvalds 已提交
768 769 770 771

	return 0;
}

772 773 774 775 776 777 778 779 780 781 782 783 784 785
/* Return 0 on success or positive error */
static int
xfs_bulkstat_fmt(
	struct xfs_ibulk		*breq,
	const struct xfs_bulkstat	*bstat)
{
	if (copy_to_user(breq->ubuffer, bstat, sizeof(struct xfs_bulkstat)))
		return -EFAULT;
	return xfs_ibulk_advance(breq, sizeof(struct xfs_bulkstat));
}

/*
 * Check the incoming bulk request @hdr from userspace and initialize the
 * internal @breq bulk request appropriately.  Returns 0 if the bulk request
786
 * should proceed; -ECANCELED if there's nothing to do; or the usual
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804
 * negative error code.
 */
static int
xfs_bulk_ireq_setup(
	struct xfs_mount	*mp,
	struct xfs_bulk_ireq	*hdr,
	struct xfs_ibulk	*breq,
	void __user		*ubuffer)
{
	if (hdr->icount == 0 ||
	    (hdr->flags & ~XFS_BULK_IREQ_FLAGS_ALL) ||
	    memchr_inv(hdr->reserved, 0, sizeof(hdr->reserved)))
		return -EINVAL;

	breq->startino = hdr->ino;
	breq->ubuffer = ubuffer;
	breq->icount = hdr->icount;
	breq->ocount = 0;
D
Darrick J. Wong 已提交
805 806
	breq->flags = 0;

807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
	/*
	 * The @ino parameter is a special value, so we must look it up here.
	 * We're not allowed to have IREQ_AGNO, and we only return one inode
	 * worth of data.
	 */
	if (hdr->flags & XFS_BULK_IREQ_SPECIAL) {
		if (hdr->flags & XFS_BULK_IREQ_AGNO)
			return -EINVAL;

		switch (hdr->ino) {
		case XFS_BULK_IREQ_SPECIAL_ROOT:
			hdr->ino = mp->m_sb.sb_rootino;
			break;
		default:
			return -EINVAL;
		}
		breq->icount = 1;
L
Linus Torvalds 已提交
824 825
	}

D
Darrick J. Wong 已提交
826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
	/*
	 * The IREQ_AGNO flag means that we only want results from a given AG.
	 * If @hdr->ino is zero, we start iterating in that AG.  If @hdr->ino is
	 * beyond the specified AG then we return no results.
	 */
	if (hdr->flags & XFS_BULK_IREQ_AGNO) {
		if (hdr->agno >= mp->m_sb.sb_agcount)
			return -EINVAL;

		if (breq->startino == 0)
			breq->startino = XFS_AGINO_TO_INO(mp, hdr->agno, 0);
		else if (XFS_INO_TO_AGNO(mp, breq->startino) < hdr->agno)
			return -EINVAL;

		breq->flags |= XFS_IBULK_SAME_AG;

		/* Asking for an inode past the end of the AG?  We're done! */
		if (XFS_INO_TO_AGNO(mp, breq->startino) > hdr->agno)
844
			return -ECANCELED;
D
Darrick J. Wong 已提交
845 846
	} else if (hdr->agno)
		return -EINVAL;
847 848 849

	/* Asking for an inode past the end of the FS?  We're done! */
	if (XFS_INO_TO_AGNO(mp, breq->startino) >= mp->m_sb.sb_agcount)
850
		return -ECANCELED;
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890

	return 0;
}

/*
 * Update the userspace bulk request @hdr to reflect the end state of the
 * internal bulk request @breq.
 */
static void
xfs_bulk_ireq_teardown(
	struct xfs_bulk_ireq	*hdr,
	struct xfs_ibulk	*breq)
{
	hdr->ino = breq->startino;
	hdr->ocount = breq->ocount;
}

/* Handle the v5 bulkstat ioctl. */
STATIC int
xfs_ioc_bulkstat(
	struct xfs_mount		*mp,
	unsigned int			cmd,
	struct xfs_bulkstat_req __user	*arg)
{
	struct xfs_bulk_ireq		hdr;
	struct xfs_ibulk		breq = {
		.mp			= mp,
	};
	int				error;

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

	if (XFS_FORCED_SHUTDOWN(mp))
		return -EIO;

	if (copy_from_user(&hdr, &arg->hdr, sizeof(hdr)))
		return -EFAULT;

	error = xfs_bulk_ireq_setup(mp, &hdr, &breq, arg->bulkstat);
891
	if (error == -ECANCELED)
892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
		goto out_teardown;
	if (error < 0)
		return error;

	error = xfs_bulkstat(&breq, xfs_bulkstat_fmt);
	if (error)
		return error;

out_teardown:
	xfs_bulk_ireq_teardown(&hdr, &breq);
	if (copy_to_user(&arg->hdr, &hdr, sizeof(hdr)))
		return -EFAULT;

	return 0;
}

908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940
STATIC int
xfs_inumbers_fmt(
	struct xfs_ibulk		*breq,
	const struct xfs_inumbers	*igrp)
{
	if (copy_to_user(breq->ubuffer, igrp, sizeof(struct xfs_inumbers)))
		return -EFAULT;
	return xfs_ibulk_advance(breq, sizeof(struct xfs_inumbers));
}

/* Handle the v5 inumbers ioctl. */
STATIC int
xfs_ioc_inumbers(
	struct xfs_mount		*mp,
	unsigned int			cmd,
	struct xfs_inumbers_req __user	*arg)
{
	struct xfs_bulk_ireq		hdr;
	struct xfs_ibulk		breq = {
		.mp			= mp,
	};
	int				error;

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

	if (XFS_FORCED_SHUTDOWN(mp))
		return -EIO;

	if (copy_from_user(&hdr, &arg->hdr, sizeof(hdr)))
		return -EFAULT;

	error = xfs_bulk_ireq_setup(mp, &hdr, &breq, arg->inumbers);
941
	if (error == -ECANCELED)
942 943 944 945 946 947 948 949 950 951 952 953 954
		goto out_teardown;
	if (error < 0)
		return error;

	error = xfs_inumbers(&breq, xfs_inumbers_fmt);
	if (error)
		return error;

out_teardown:
	xfs_bulk_ireq_teardown(&hdr, &breq);
	if (copy_to_user(&arg->hdr, &hdr, sizeof(hdr)))
		return -EFAULT;

L
Linus Torvalds 已提交
955 956 957 958 959
	return 0;
}

STATIC int
xfs_ioc_fsgeometry(
960 961 962
	struct xfs_mount	*mp,
	void			__user *arg,
	int			struct_version)
L
Linus Torvalds 已提交
963
{
964 965
	struct xfs_fsop_geom	fsgeo;
	size_t			len;
L
Linus Torvalds 已提交
966

967
	xfs_fs_geometry(&mp->m_sb, &fsgeo, struct_version);
L
Linus Torvalds 已提交
968

969 970 971 972
	if (struct_version <= 3)
		len = sizeof(struct xfs_fsop_geom_v1);
	else if (struct_version == 4)
		len = sizeof(struct xfs_fsop_geom_v4);
973 974
	else {
		xfs_fsop_geom_health(mp, &fsgeo);
975
		len = sizeof(fsgeo);
976
	}
977 978

	if (copy_to_user(arg, &fsgeo, len))
E
Eric Sandeen 已提交
979
		return -EFAULT;
L
Linus Torvalds 已提交
980 981 982
	return 0;
}

983 984 985 986 987 988 989 990 991 992
STATIC int
xfs_ioc_ag_geometry(
	struct xfs_mount	*mp,
	void			__user *arg)
{
	struct xfs_ag_geometry	ageo;
	int			error;

	if (copy_from_user(&ageo, arg, sizeof(ageo)))
		return -EFAULT;
993 994 995 996
	if (ageo.ag_flags)
		return -EINVAL;
	if (memchr_inv(&ageo.ag_reserved, 0, sizeof(ageo.ag_reserved)))
		return -EINVAL;
997 998 999 1000 1001 1002 1003 1004 1005 1006

	error = xfs_ag_get_geometry(mp, ageo.ag_number, &ageo);
	if (error)
		return error;

	if (copy_to_user(arg, &ageo, sizeof(ageo)))
		return -EFAULT;
	return 0;
}

L
Linus Torvalds 已提交
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
/*
 * Linux extended inode flags interface.
 */

STATIC unsigned int
xfs_merge_ioc_xflags(
	unsigned int	flags,
	unsigned int	start)
{
	unsigned int	xflags = start;

1018
	if (flags & FS_IMMUTABLE_FL)
1019
		xflags |= FS_XFLAG_IMMUTABLE;
L
Linus Torvalds 已提交
1020
	else
1021
		xflags &= ~FS_XFLAG_IMMUTABLE;
1022
	if (flags & FS_APPEND_FL)
1023
		xflags |= FS_XFLAG_APPEND;
L
Linus Torvalds 已提交
1024
	else
1025
		xflags &= ~FS_XFLAG_APPEND;
1026
	if (flags & FS_SYNC_FL)
1027
		xflags |= FS_XFLAG_SYNC;
L
Linus Torvalds 已提交
1028
	else
1029
		xflags &= ~FS_XFLAG_SYNC;
1030
	if (flags & FS_NOATIME_FL)
1031
		xflags |= FS_XFLAG_NOATIME;
L
Linus Torvalds 已提交
1032
	else
1033
		xflags &= ~FS_XFLAG_NOATIME;
1034
	if (flags & FS_NODUMP_FL)
1035
		xflags |= FS_XFLAG_NODUMP;
L
Linus Torvalds 已提交
1036
	else
1037
		xflags &= ~FS_XFLAG_NODUMP;
L
Linus Torvalds 已提交
1038 1039 1040 1041 1042 1043

	return xflags;
}

STATIC unsigned int
xfs_di2lxflags(
1044
	uint16_t	di_flags)
L
Linus Torvalds 已提交
1045 1046 1047 1048
{
	unsigned int	flags = 0;

	if (di_flags & XFS_DIFLAG_IMMUTABLE)
1049
		flags |= FS_IMMUTABLE_FL;
L
Linus Torvalds 已提交
1050
	if (di_flags & XFS_DIFLAG_APPEND)
1051
		flags |= FS_APPEND_FL;
L
Linus Torvalds 已提交
1052
	if (di_flags & XFS_DIFLAG_SYNC)
1053
		flags |= FS_SYNC_FL;
L
Linus Torvalds 已提交
1054
	if (di_flags & XFS_DIFLAG_NOATIME)
1055
		flags |= FS_NOATIME_FL;
L
Linus Torvalds 已提交
1056
	if (di_flags & XFS_DIFLAG_NODUMP)
1057
		flags |= FS_NODUMP_FL;
L
Linus Torvalds 已提交
1058 1059 1060
	return flags;
}

1061 1062 1063 1064 1065
static void
xfs_fill_fsxattr(
	struct xfs_inode	*ip,
	bool			attr,
	struct fsxattr		*fa)
1066
{
1067 1068 1069
	simple_fill_fsxattr(fa, xfs_ip2xflags(ip));
	fa->fsx_extsize = ip->i_d.di_extsize << ip->i_mount->m_sb.sb_blocklog;
	fa->fsx_cowextsize = ip->i_d.di_cowextsize <<
1070
			ip->i_mount->m_sb.sb_blocklog;
1071
	fa->fsx_projid = xfs_get_projid(ip);
1072 1073 1074 1075

	if (attr) {
		if (ip->i_afp) {
			if (ip->i_afp->if_flags & XFS_IFEXTENTS)
1076
				fa->fsx_nextents = xfs_iext_count(ip->i_afp);
1077
			else
1078
				fa->fsx_nextents = ip->i_d.di_anextents;
1079
		} else
1080
			fa->fsx_nextents = 0;
1081 1082
	} else {
		if (ip->i_df.if_flags & XFS_IFEXTENTS)
1083
			fa->fsx_nextents = xfs_iext_count(&ip->i_df);
1084
		else
1085
			fa->fsx_nextents = ip->i_d.di_nextents;
1086
	}
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098
}

STATIC int
xfs_ioc_fsgetxattr(
	xfs_inode_t		*ip,
	int			attr,
	void			__user *arg)
{
	struct fsxattr		fa;

	xfs_ilock(ip, XFS_ILOCK_SHARED);
	xfs_fill_fsxattr(ip, attr, &fa);
1099 1100 1101 1102 1103 1104 1105
	xfs_iunlock(ip, XFS_ILOCK_SHARED);

	if (copy_to_user(arg, &fa, sizeof(fa)))
		return -EFAULT;
	return 0;
}

1106 1107
STATIC uint16_t
xfs_flags2diflags(
1108 1109 1110 1111
	struct xfs_inode	*ip,
	unsigned int		xflags)
{
	/* can't set PREALLOC this way, just preserve it */
1112 1113 1114
	uint16_t		di_flags =
		(ip->i_d.di_flags & XFS_DIFLAG_PREALLOC);

1115
	if (xflags & FS_XFLAG_IMMUTABLE)
1116
		di_flags |= XFS_DIFLAG_IMMUTABLE;
1117
	if (xflags & FS_XFLAG_APPEND)
1118
		di_flags |= XFS_DIFLAG_APPEND;
1119
	if (xflags & FS_XFLAG_SYNC)
1120
		di_flags |= XFS_DIFLAG_SYNC;
1121
	if (xflags & FS_XFLAG_NOATIME)
1122
		di_flags |= XFS_DIFLAG_NOATIME;
1123
	if (xflags & FS_XFLAG_NODUMP)
1124
		di_flags |= XFS_DIFLAG_NODUMP;
1125
	if (xflags & FS_XFLAG_NODEFRAG)
1126
		di_flags |= XFS_DIFLAG_NODEFRAG;
1127
	if (xflags & FS_XFLAG_FILESTREAM)
1128
		di_flags |= XFS_DIFLAG_FILESTREAM;
D
Dave Chinner 已提交
1129
	if (S_ISDIR(VFS_I(ip)->i_mode)) {
1130
		if (xflags & FS_XFLAG_RTINHERIT)
1131
			di_flags |= XFS_DIFLAG_RTINHERIT;
1132
		if (xflags & FS_XFLAG_NOSYMLINKS)
1133
			di_flags |= XFS_DIFLAG_NOSYMLINKS;
1134
		if (xflags & FS_XFLAG_EXTSZINHERIT)
1135
			di_flags |= XFS_DIFLAG_EXTSZINHERIT;
1136
		if (xflags & FS_XFLAG_PROJINHERIT)
1137
			di_flags |= XFS_DIFLAG_PROJINHERIT;
D
Dave Chinner 已提交
1138
	} else if (S_ISREG(VFS_I(ip)->i_mode)) {
1139
		if (xflags & FS_XFLAG_REALTIME)
1140
			di_flags |= XFS_DIFLAG_REALTIME;
1141
		if (xflags & FS_XFLAG_EXTSIZE)
1142 1143
			di_flags |= XFS_DIFLAG_EXTSIZE;
	}
1144

1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
	return di_flags;
}

STATIC uint64_t
xfs_flags2diflags2(
	struct xfs_inode	*ip,
	unsigned int		xflags)
{
	uint64_t		di_flags2 =
		(ip->i_d.di_flags2 & XFS_DIFLAG2_REFLINK);
1155 1156 1157

	if (xflags & FS_XFLAG_DAX)
		di_flags2 |= XFS_DIFLAG2_DAX;
1158 1159
	if (xflags & FS_XFLAG_COWEXTSIZE)
		di_flags2 |= XFS_DIFLAG2_COWEXTSIZE;
1160

1161
	return di_flags2;
1162 1163
}

1164 1165 1166 1167
STATIC void
xfs_diflags_to_linux(
	struct xfs_inode	*ip)
{
1168
	struct inode		*inode = VFS_I(ip);
1169 1170
	unsigned int		xflags = xfs_ip2xflags(ip);

1171
	if (xflags & FS_XFLAG_IMMUTABLE)
1172 1173 1174
		inode->i_flags |= S_IMMUTABLE;
	else
		inode->i_flags &= ~S_IMMUTABLE;
1175
	if (xflags & FS_XFLAG_APPEND)
1176 1177 1178
		inode->i_flags |= S_APPEND;
	else
		inode->i_flags &= ~S_APPEND;
1179
	if (xflags & FS_XFLAG_SYNC)
1180 1181 1182
		inode->i_flags |= S_SYNC;
	else
		inode->i_flags &= ~S_SYNC;
1183
	if (xflags & FS_XFLAG_NOATIME)
1184 1185 1186
		inode->i_flags |= S_NOATIME;
	else
		inode->i_flags &= ~S_NOATIME;
1187
#if 0	/* disabled until the flag switching races are sorted out */
1188 1189 1190 1191
	if (xflags & FS_XFLAG_DAX)
		inode->i_flags |= S_DAX;
	else
		inode->i_flags &= ~S_DAX;
1192
#endif
1193
}
1194

1195 1196 1197 1198 1199 1200 1201
static int
xfs_ioctl_setattr_xflags(
	struct xfs_trans	*tp,
	struct xfs_inode	*ip,
	struct fsxattr		*fa)
{
	struct xfs_mount	*mp = ip->i_mount;
1202
	uint64_t		di_flags2;
1203 1204 1205

	/* Can't change realtime flag if any extents are allocated. */
	if ((ip->i_d.di_nextents || ip->i_delayed_blks) &&
1206
	    XFS_IS_REALTIME_INODE(ip) != (fa->fsx_xflags & FS_XFLAG_REALTIME))
1207 1208 1209
		return -EINVAL;

	/* If realtime flag is set then must have realtime device */
1210
	if (fa->fsx_xflags & FS_XFLAG_REALTIME) {
1211 1212 1213 1214 1215
		if (mp->m_sb.sb_rblocks == 0 || mp->m_sb.sb_rextsize == 0 ||
		    (ip->i_d.di_extsize % mp->m_sb.sb_rextsize))
			return -EINVAL;
	}

1216
	/* Clear reflink if we are actually able to set the rt flag. */
1217
	if ((fa->fsx_xflags & FS_XFLAG_REALTIME) && xfs_is_reflink_inode(ip))
1218
		ip->i_d.di_flags2 &= ~XFS_DIFLAG2_REFLINK;
1219

1220 1221 1222 1223
	/* Don't allow us to set DAX mode for a reflinked file for now. */
	if ((fa->fsx_xflags & FS_XFLAG_DAX) && xfs_is_reflink_inode(ip))
		return -EINVAL;

1224 1225 1226 1227 1228 1229 1230 1231
	/* diflags2 only valid for v3 inodes. */
	di_flags2 = xfs_flags2diflags2(ip, fa->fsx_xflags);
	if (di_flags2 && ip->i_d.di_version < 3)
		return -EINVAL;

	ip->i_d.di_flags = xfs_flags2diflags(ip, fa->fsx_xflags);
	ip->i_d.di_flags2 = di_flags2;

1232 1233 1234
	xfs_diflags_to_linux(ip);
	xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
	xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1235
	XFS_STATS_INC(mp, xs_ig_attrchg);
1236 1237 1238
	return 0;
}

1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253
/*
 * If we are changing DAX flags, we have to ensure the file is clean and any
 * cached objects in the address space are invalidated and removed. This
 * requires us to lock out other IO and page faults similar to a truncate
 * operation. The locks need to be held until the transaction has been committed
 * so that the cache invalidation is atomic with respect to the DAX flag
 * manipulation.
 */
static int
xfs_ioctl_setattr_dax_invalidate(
	struct xfs_inode	*ip,
	struct fsxattr		*fa,
	int			*join_flags)
{
	struct inode		*inode = VFS_I(ip);
1254
	struct super_block	*sb = inode->i_sb;
1255 1256 1257 1258
	int			error;

	*join_flags = 0;

1259 1260
	/*
	 * It is only valid to set the DAX flag on regular files and
1261
	 * directories on filesystems where the block size is equal to the page
1262 1263
	 * size. On directories it serves as an inherited hint so we don't
	 * have to check the device for dax support or flush pagecache.
1264
	 */
1265
	if (fa->fsx_xflags & FS_XFLAG_DAX) {
1266 1267 1268
		struct xfs_buftarg	*target = xfs_inode_buftarg(ip);

		if (!bdev_dax_supported(target->bt_bdev, sb->s_blocksize))
1269 1270
			return -EINVAL;
	}
1271

1272 1273 1274 1275 1276 1277
	/* If the DAX state is not changing, we have nothing to do here. */
	if ((fa->fsx_xflags & FS_XFLAG_DAX) && IS_DAX(inode))
		return 0;
	if (!(fa->fsx_xflags & FS_XFLAG_DAX) && !IS_DAX(inode))
		return 0;

1278 1279 1280
	if (S_ISDIR(inode->i_mode))
		return 0;

1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
	/* lock, flush and invalidate mapping in preparation for flag change */
	xfs_ilock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
	error = filemap_write_and_wait(inode->i_mapping);
	if (error)
		goto out_unlock;
	error = invalidate_inode_pages2(inode->i_mapping);
	if (error)
		goto out_unlock;

	*join_flags = XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL;
1291
	return 0;
1292 1293 1294 1295 1296

out_unlock:
	xfs_iunlock(ip, XFS_MMAPLOCK_EXCL | XFS_IOLOCK_EXCL);
	return error;

1297 1298
}

1299 1300 1301 1302 1303
/*
 * Set up the transaction structure for the setattr operation, checking that we
 * have permission to do so. On success, return a clean transaction and the
 * inode locked exclusively ready for further operation specific checks. On
 * failure, return an error without modifying or locking the inode.
1304 1305 1306 1307 1308 1309
 *
 * The inode might already be IO locked on call. If this is the case, it is
 * indicated in @join_flags and we take full responsibility for ensuring they
 * are unlocked from now on. Hence if we have an error here, we still have to
 * unlock them. Otherwise, once they are joined to the transaction, they will
 * be unlocked on commit/cancel.
1310 1311 1312
 */
static struct xfs_trans *
xfs_ioctl_setattr_get_trans(
1313 1314
	struct xfs_inode	*ip,
	int			join_flags)
1315 1316 1317
{
	struct xfs_mount	*mp = ip->i_mount;
	struct xfs_trans	*tp;
1318
	int			error = -EROFS;
1319 1320

	if (mp->m_flags & XFS_MOUNT_RDONLY)
1321 1322
		goto out_unlock;
	error = -EIO;
1323
	if (XFS_FORCED_SHUTDOWN(mp))
1324
		goto out_unlock;
1325

1326
	error = xfs_trans_alloc(mp, &M_RES(mp)->tr_ichange, 0, 0, 0, &tp);
1327
	if (error)
1328
		goto out_unlock;
1329 1330

	xfs_ilock(ip, XFS_ILOCK_EXCL);
1331 1332
	xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL | join_flags);
	join_flags = 0;
1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350

	/*
	 * CAP_FOWNER overrides the following restrictions:
	 *
	 * The user ID of the calling process must be equal to the file owner
	 * ID, except in cases where the CAP_FSETID capability is applicable.
	 */
	if (!inode_owner_or_capable(VFS_I(ip))) {
		error = -EPERM;
		goto out_cancel;
	}

	if (mp->m_flags & XFS_MOUNT_WSYNC)
		xfs_trans_set_sync(tp);

	return tp;

out_cancel:
1351
	xfs_trans_cancel(tp);
1352 1353 1354
out_unlock:
	if (join_flags)
		xfs_iunlock(ip, join_flags);
1355 1356 1357
	return ERR_PTR(error);
}

1358 1359 1360 1361
/*
 * extent size hint validation is somewhat cumbersome. Rules are:
 *
 * 1. extent size hint is only valid for directories and regular files
1362 1363
 * 2. FS_XFLAG_EXTSIZE is only valid for regular files
 * 3. FS_XFLAG_EXTSZINHERIT is only valid for directories.
1364 1365 1366 1367 1368 1369 1370
 * 4. can only be changed on regular files if no extents are allocated
 * 5. can be changed on directories at any time
 * 6. extsize hint of 0 turns off hints, clears inode flags.
 * 7. Extent size must be a multiple of the appropriate block size.
 * 8. for non-realtime files, the extent size hint must be limited
 *    to half the AG size to avoid alignment extending the extent beyond the
 *    limits of the AG.
D
Darrick J. Wong 已提交
1371 1372
 *
 * Please keep this function in sync with xfs_scrub_inode_extsize.
1373
 */
1374
static int
1375 1376 1377 1378 1379
xfs_ioctl_setattr_check_extsize(
	struct xfs_inode	*ip,
	struct fsxattr		*fa)
{
	struct xfs_mount	*mp = ip->i_mount;
1380 1381
	xfs_extlen_t		size;
	xfs_fsblock_t		extsize_fsb;
1382

D
Dave Chinner 已提交
1383
	if (S_ISREG(VFS_I(ip)->i_mode) && ip->i_d.di_nextents &&
1384 1385 1386
	    ((ip->i_d.di_extsize << mp->m_sb.sb_blocklog) != fa->fsx_extsize))
		return -EINVAL;

1387 1388
	if (fa->fsx_extsize == 0)
		return 0;
1389

1390 1391 1392
	extsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_extsize);
	if (extsize_fsb > MAXEXTLEN)
		return -EINVAL;
1393

1394 1395 1396 1397 1398 1399
	if (XFS_IS_REALTIME_INODE(ip) ||
	    (fa->fsx_xflags & FS_XFLAG_REALTIME)) {
		size = mp->m_sb.sb_rextsize << mp->m_sb.sb_blocklog;
	} else {
		size = mp->m_sb.sb_blocksize;
		if (extsize_fsb > mp->m_sb.sb_agblocks / 2)
1400
			return -EINVAL;
1401 1402 1403 1404
	}

	if (fa->fsx_extsize % size)
		return -EINVAL;
1405

1406 1407 1408
	return 0;
}

1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420
/*
 * CoW extent size hint validation rules are:
 *
 * 1. CoW extent size hint can only be set if reflink is enabled on the fs.
 *    The inode does not have to have any shared blocks, but it must be a v3.
 * 2. FS_XFLAG_COWEXTSIZE is only valid for directories and regular files;
 *    for a directory, the hint is propagated to new files.
 * 3. Can be changed on files & directories at any time.
 * 4. CoW extsize hint of 0 turns off hints, clears inode flags.
 * 5. Extent size must be a multiple of the appropriate block size.
 * 6. The extent size hint must be limited to half the AG size to avoid
 *    alignment extending the extent beyond the limits of the AG.
D
Darrick J. Wong 已提交
1421 1422
 *
 * Please keep this function in sync with xfs_scrub_inode_cowextsize.
1423 1424 1425 1426 1427 1428 1429
 */
static int
xfs_ioctl_setattr_check_cowextsize(
	struct xfs_inode	*ip,
	struct fsxattr		*fa)
{
	struct xfs_mount	*mp = ip->i_mount;
1430 1431
	xfs_extlen_t		size;
	xfs_fsblock_t		cowextsize_fsb;
1432 1433 1434 1435 1436 1437 1438 1439

	if (!(fa->fsx_xflags & FS_XFLAG_COWEXTSIZE))
		return 0;

	if (!xfs_sb_version_hasreflink(&ip->i_mount->m_sb) ||
	    ip->i_d.di_version != 3)
		return -EINVAL;

1440 1441
	if (fa->fsx_cowextsize == 0)
		return 0;
1442

1443 1444 1445
	cowextsize_fsb = XFS_B_TO_FSB(mp, fa->fsx_cowextsize);
	if (cowextsize_fsb > MAXEXTLEN)
		return -EINVAL;
1446

1447 1448 1449
	size = mp->m_sb.sb_blocksize;
	if (cowextsize_fsb > mp->m_sb.sb_agblocks / 2)
		return -EINVAL;
1450

1451 1452
	if (fa->fsx_cowextsize % size)
		return -EINVAL;
1453 1454 1455 1456

	return 0;
}

1457
static int
1458 1459 1460 1461 1462
xfs_ioctl_setattr_check_projid(
	struct xfs_inode	*ip,
	struct fsxattr		*fa)
{
	/* Disallow 32bit project ids if projid32bit feature is not enabled. */
1463
	if (fa->fsx_projid > (uint16_t)-1 &&
1464 1465 1466 1467
	    !xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb))
		return -EINVAL;
	return 0;
}
1468 1469 1470 1471

STATIC int
xfs_ioctl_setattr(
	xfs_inode_t		*ip,
1472
	struct fsxattr		*fa)
1473
{
1474
	struct fsxattr		old_fa;
1475 1476
	struct xfs_mount	*mp = ip->i_mount;
	struct xfs_trans	*tp;
C
Christoph Hellwig 已提交
1477
	struct xfs_dquot	*udqp = NULL;
1478
	struct xfs_dquot	*pdqp = NULL;
1479 1480
	struct xfs_dquot	*olddquot = NULL;
	int			code;
1481
	int			join_flags = 0;
1482

C
Christoph Hellwig 已提交
1483
	trace_xfs_ioctl_setattr(ip);
1484

1485 1486 1487
	code = xfs_ioctl_setattr_check_projid(ip, fa);
	if (code)
		return code;
1488

1489 1490 1491 1492 1493 1494 1495 1496
	/*
	 * If disk quotas is on, we make sure that the dquots do exist on disk,
	 * before we start any other transactions. Trying to do this later
	 * is messy. We don't care to take a readlock to look at the ids
	 * in inode here, because we can't hold it across the trans_reserve.
	 * If the IDs do change before we take the ilock, we're covered
	 * because the i_*dquot fields will get updated anyway.
	 */
1497
	if (XFS_IS_QUOTA_ON(mp)) {
C
Christoph Hellwig 已提交
1498
		code = xfs_qm_vop_dqalloc(ip, ip->i_d.di_uid,
1499
					 ip->i_d.di_gid, fa->fsx_projid,
1500
					 XFS_QMOPT_PQUOTA, &udqp, NULL, &pdqp);
1501 1502 1503 1504
		if (code)
			return code;
	}

1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
	/*
	 * Changing DAX config may require inode locking for mapping
	 * invalidation. These need to be held all the way to transaction commit
	 * or cancel time, so need to be passed through to
	 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
	 * appropriately.
	 */
	code = xfs_ioctl_setattr_dax_invalidate(ip, fa, &join_flags);
	if (code)
		goto error_free_dquots;

	tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
1517 1518 1519
	if (IS_ERR(tp)) {
		code = PTR_ERR(tp);
		goto error_free_dquots;
1520 1521
	}

1522 1523 1524 1525 1526
	if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp) &&
	    xfs_get_projid(ip) != fa->fsx_projid) {
		code = xfs_qm_vop_chown_reserve(tp, ip, udqp, NULL, pdqp,
				capable(CAP_FOWNER) ?  XFS_QMOPT_FORCE_RES : 0);
		if (code)	/* out of quota */
1527
			goto error_trans_cancel;
1528 1529
	}

1530 1531 1532 1533 1534
	xfs_fill_fsxattr(ip, false, &old_fa);
	code = vfs_ioc_fssetxattr_check(VFS_I(ip), &old_fa, fa);
	if (code)
		goto error_trans_cancel;

1535 1536 1537
	code = xfs_ioctl_setattr_check_extsize(ip, fa);
	if (code)
		goto error_trans_cancel;
1538

1539 1540 1541 1542
	code = xfs_ioctl_setattr_check_cowextsize(ip, fa);
	if (code)
		goto error_trans_cancel;

1543 1544
	code = xfs_ioctl_setattr_xflags(tp, ip, fa);
	if (code)
1545
		goto error_trans_cancel;
1546 1547

	/*
1548 1549 1550 1551 1552
	 * Change file ownership.  Must be the owner or privileged.  CAP_FSETID
	 * overrides the following restrictions:
	 *
	 * The set-user-ID and set-group-ID bits of a file will be cleared upon
	 * successful return from chown()
1553 1554
	 */

D
Dave Chinner 已提交
1555
	if ((VFS_I(ip)->i_mode & (S_ISUID|S_ISGID)) &&
1556
	    !capable_wrt_inode_uidgid(VFS_I(ip), CAP_FSETID))
D
Dave Chinner 已提交
1557
		VFS_I(ip)->i_mode &= ~(S_ISUID|S_ISGID);
1558

1559 1560 1561 1562 1563 1564 1565 1566
	/* Change the ownerships and register project quota modifications */
	if (xfs_get_projid(ip) != fa->fsx_projid) {
		if (XFS_IS_QUOTA_RUNNING(mp) && XFS_IS_PQUOTA_ON(mp)) {
			olddquot = xfs_qm_vop_chown(tp, ip,
						&ip->i_pdquot, pdqp);
		}
		ASSERT(ip->i_d.di_version > 1);
		xfs_set_projid(ip, fa->fsx_projid);
1567
	}
1568

1569 1570 1571 1572 1573
	/*
	 * Only set the extent size hint if we've already determined that the
	 * extent size hint should be set on the inode. If no extent size flags
	 * are set on the inode then unconditionally clear the extent size hint.
	 */
1574 1575 1576 1577
	if (ip->i_d.di_flags & (XFS_DIFLAG_EXTSIZE | XFS_DIFLAG_EXTSZINHERIT))
		ip->i_d.di_extsize = fa->fsx_extsize >> mp->m_sb.sb_blocklog;
	else
		ip->i_d.di_extsize = 0;
1578 1579 1580 1581 1582 1583
	if (ip->i_d.di_version == 3 &&
	    (ip->i_d.di_flags2 & XFS_DIFLAG2_COWEXTSIZE))
		ip->i_d.di_cowextsize = fa->fsx_cowextsize >>
				mp->m_sb.sb_blocklog;
	else
		ip->i_d.di_cowextsize = 0;
1584

1585
	code = xfs_trans_commit(tp);
1586 1587 1588 1589

	/*
	 * Release any dquot(s) the inode had kept before chown.
	 */
C
Christoph Hellwig 已提交
1590 1591
	xfs_qm_dqrele(olddquot);
	xfs_qm_dqrele(udqp);
1592
	xfs_qm_dqrele(pdqp);
1593

C
Christoph Hellwig 已提交
1594
	return code;
1595

1596
error_trans_cancel:
1597
	xfs_trans_cancel(tp);
1598
error_free_dquots:
C
Christoph Hellwig 已提交
1599
	xfs_qm_dqrele(udqp);
1600
	xfs_qm_dqrele(pdqp);
1601 1602 1603
	return code;
}

L
Linus Torvalds 已提交
1604
STATIC int
L
Lachlan McIlroy 已提交
1605
xfs_ioc_fssetxattr(
L
Linus Torvalds 已提交
1606 1607 1608 1609 1610
	xfs_inode_t		*ip,
	struct file		*filp,
	void			__user *arg)
{
	struct fsxattr		fa;
J
Jan Kara 已提交
1611
	int error;
L
Lachlan McIlroy 已提交
1612 1613 1614

	if (copy_from_user(&fa, arg, sizeof(fa)))
		return -EFAULT;
L
Linus Torvalds 已提交
1615

J
Jan Kara 已提交
1616 1617 1618
	error = mnt_want_write_file(filp);
	if (error)
		return error;
1619
	error = xfs_ioctl_setattr(ip, &fa);
J
Jan Kara 已提交
1620
	mnt_drop_write_file(filp);
D
Dave Chinner 已提交
1621
	return error;
L
Lachlan McIlroy 已提交
1622
}
L
Linus Torvalds 已提交
1623

L
Lachlan McIlroy 已提交
1624 1625 1626 1627 1628 1629
STATIC int
xfs_ioc_getxflags(
	xfs_inode_t		*ip,
	void			__user *arg)
{
	unsigned int		flags;
L
Linus Torvalds 已提交
1630

L
Lachlan McIlroy 已提交
1631 1632 1633 1634 1635
	flags = xfs_di2lxflags(ip->i_d.di_flags);
	if (copy_to_user(arg, &flags, sizeof(flags)))
		return -EFAULT;
	return 0;
}
L
Linus Torvalds 已提交
1636

L
Lachlan McIlroy 已提交
1637 1638
STATIC int
xfs_ioc_setxflags(
1639
	struct xfs_inode	*ip,
L
Lachlan McIlroy 已提交
1640 1641 1642
	struct file		*filp,
	void			__user *arg)
{
1643
	struct xfs_trans	*tp;
1644
	struct fsxattr		fa;
1645
	struct fsxattr		old_fa;
L
Lachlan McIlroy 已提交
1646
	unsigned int		flags;
1647
	int			join_flags = 0;
1648
	int			error;
L
Linus Torvalds 已提交
1649

L
Lachlan McIlroy 已提交
1650 1651
	if (copy_from_user(&flags, arg, sizeof(flags)))
		return -EFAULT;
L
Linus Torvalds 已提交
1652

L
Lachlan McIlroy 已提交
1653 1654 1655 1656
	if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
		      FS_NOATIME_FL | FS_NODUMP_FL | \
		      FS_SYNC_FL))
		return -EOPNOTSUPP;
L
Linus Torvalds 已提交
1657

1658
	fa.fsx_xflags = xfs_merge_ioc_xflags(flags, xfs_ip2xflags(ip));
L
Linus Torvalds 已提交
1659

J
Jan Kara 已提交
1660 1661 1662
	error = mnt_want_write_file(filp);
	if (error)
		return error;
1663

1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675
	/*
	 * Changing DAX config may require inode locking for mapping
	 * invalidation. These need to be held all the way to transaction commit
	 * or cancel time, so need to be passed through to
	 * xfs_ioctl_setattr_get_trans() so it can apply them to the join call
	 * appropriately.
	 */
	error = xfs_ioctl_setattr_dax_invalidate(ip, &fa, &join_flags);
	if (error)
		goto out_drop_write;

	tp = xfs_ioctl_setattr_get_trans(ip, join_flags);
1676 1677 1678 1679 1680
	if (IS_ERR(tp)) {
		error = PTR_ERR(tp);
		goto out_drop_write;
	}

1681 1682 1683 1684 1685 1686 1687
	xfs_fill_fsxattr(ip, false, &old_fa);
	error = vfs_ioc_fssetxattr_check(VFS_I(ip), &old_fa, &fa);
	if (error) {
		xfs_trans_cancel(tp);
		goto out_drop_write;
	}

1688 1689
	error = xfs_ioctl_setattr_xflags(tp, ip, &fa);
	if (error) {
1690
		xfs_trans_cancel(tp);
1691 1692 1693
		goto out_drop_write;
	}

1694
	error = xfs_trans_commit(tp);
1695
out_drop_write:
J
Jan Kara 已提交
1696
	mnt_drop_write_file(filp);
D
Dave Chinner 已提交
1697
	return error;
L
Linus Torvalds 已提交
1698 1699
}

1700 1701 1702 1703 1704
static bool
xfs_getbmap_format(
	struct kgetbmap		*p,
	struct getbmapx __user	*u,
	size_t			recsize)
1705
{
1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719
	if (put_user(p->bmv_offset, &u->bmv_offset) ||
	    put_user(p->bmv_block, &u->bmv_block) ||
	    put_user(p->bmv_length, &u->bmv_length) ||
	    put_user(0, &u->bmv_count) ||
	    put_user(0, &u->bmv_entries))
		return false;
	if (recsize < sizeof(struct getbmapx))
		return true;
	if (put_user(0, &u->bmv_iflags) ||
	    put_user(p->bmv_oflags, &u->bmv_oflags) ||
	    put_user(0, &u->bmv_unused1) ||
	    put_user(0, &u->bmv_unused2))
		return false;
	return true;
1720 1721
}

L
Linus Torvalds 已提交
1722 1723
STATIC int
xfs_ioc_getbmap(
1724
	struct file		*file,
L
Linus Torvalds 已提交
1725 1726 1727
	unsigned int		cmd,
	void			__user *arg)
{
1728
	struct getbmapx		bmx = { 0 };
1729 1730 1731
	struct kgetbmap		*buf;
	size_t			recsize;
	int			error, i;
L
Linus Torvalds 已提交
1732

1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746
	switch (cmd) {
	case XFS_IOC_GETBMAPA:
		bmx.bmv_iflags = BMV_IF_ATTRFORK;
		/*FALLTHRU*/
	case XFS_IOC_GETBMAP:
		if (file->f_mode & FMODE_NOCMTIME)
			bmx.bmv_iflags |= BMV_IF_NO_DMAPI_READ;
		/* struct getbmap is a strict subset of struct getbmapx. */
		recsize = sizeof(struct getbmap);
		break;
	case XFS_IOC_GETBMAPX:
		recsize = sizeof(struct getbmapx);
		break;
	default:
E
Eric Sandeen 已提交
1747
		return -EINVAL;
1748
	}
L
Linus Torvalds 已提交
1749

1750
	if (copy_from_user(&bmx, arg, recsize))
E
Eric Sandeen 已提交
1751
		return -EFAULT;
L
Linus Torvalds 已提交
1752 1753

	if (bmx.bmv_count < 2)
E
Eric Sandeen 已提交
1754
		return -EINVAL;
1755 1756
	if (bmx.bmv_count > ULONG_MAX / recsize)
		return -ENOMEM;
L
Linus Torvalds 已提交
1757

1758 1759 1760
	buf = kmem_zalloc_large(bmx.bmv_count * sizeof(*buf), 0);
	if (!buf)
		return -ENOMEM;
L
Linus Torvalds 已提交
1761

1762
	error = xfs_getbmap(XFS_I(file_inode(file)), &bmx, buf);
L
Linus Torvalds 已提交
1763
	if (error)
1764
		goto out_free_buf;
L
Linus Torvalds 已提交
1765

1766 1767 1768 1769 1770 1771 1772 1773 1774 1775
	error = -EFAULT;
	if (copy_to_user(arg, &bmx, recsize))
		goto out_free_buf;
	arg += recsize;

	for (i = 0; i < bmx.bmv_entries; i++) {
		if (!xfs_getbmap_format(buf + i, arg, recsize))
			goto out_free_buf;
		arg += recsize;
	}
L
Linus Torvalds 已提交
1776

1777 1778 1779
	error = 0;
out_free_buf:
	kmem_free(buf);
1780
	return error;
L
Linus Torvalds 已提交
1781
}
L
Lachlan McIlroy 已提交
1782

1783 1784
struct getfsmap_info {
	struct xfs_mount	*mp;
1785 1786
	struct fsmap_head __user *data;
	unsigned int		idx;
1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799
	__u32			last_flags;
};

STATIC int
xfs_getfsmap_format(struct xfs_fsmap *xfm, void *priv)
{
	struct getfsmap_info	*info = priv;
	struct fsmap		fm;

	trace_xfs_getfsmap_mapping(info->mp, xfm);

	info->last_flags = xfm->fmr_flags;
	xfs_fsmap_from_internal(&fm, xfm);
1800 1801
	if (copy_to_user(&info->data->fmh_recs[info->idx++], &fm,
			sizeof(struct fsmap)))
1802 1803 1804 1805 1806 1807 1808 1809
		return -EFAULT;

	return 0;
}

STATIC int
xfs_ioc_getfsmap(
	struct xfs_inode	*ip,
1810
	struct fsmap_head	__user *arg)
1811
{
1812
	struct getfsmap_info	info = { NULL };
1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835
	struct xfs_fsmap_head	xhead = {0};
	struct fsmap_head	head;
	bool			aborted = false;
	int			error;

	if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
		return -EFAULT;
	if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
	    memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
		       sizeof(head.fmh_keys[0].fmr_reserved)) ||
	    memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
		       sizeof(head.fmh_keys[1].fmr_reserved)))
		return -EINVAL;

	xhead.fmh_iflags = head.fmh_iflags;
	xhead.fmh_count = head.fmh_count;
	xfs_fsmap_to_internal(&xhead.fmh_keys[0], &head.fmh_keys[0]);
	xfs_fsmap_to_internal(&xhead.fmh_keys[1], &head.fmh_keys[1]);

	trace_xfs_getfsmap_low_key(ip->i_mount, &xhead.fmh_keys[0]);
	trace_xfs_getfsmap_high_key(ip->i_mount, &xhead.fmh_keys[1]);

	info.mp = ip->i_mount;
1836
	info.data = arg;
1837
	error = xfs_getfsmap(ip->i_mount, &xhead, xfs_getfsmap_format, &info);
1838
	if (error == -ECANCELED) {
1839 1840 1841 1842 1843 1844
		error = 0;
		aborted = true;
	} else if (error)
		return error;

	/* If we didn't abort, set the "last" flag in the last fmx */
1845
	if (!aborted && info.idx) {
1846
		info.last_flags |= FMR_OF_LAST;
1847 1848
		if (copy_to_user(&info.data->fmh_recs[info.idx - 1].fmr_flags,
				&info.last_flags, sizeof(info.last_flags)))
1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860
			return -EFAULT;
	}

	/* copy back header */
	head.fmh_entries = xhead.fmh_entries;
	head.fmh_oflags = xhead.fmh_oflags;
	if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
		return -EFAULT;

	return 0;
}

1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884
STATIC int
xfs_ioc_scrub_metadata(
	struct xfs_inode		*ip,
	void				__user *arg)
{
	struct xfs_scrub_metadata	scrub;
	int				error;

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;

	if (copy_from_user(&scrub, arg, sizeof(scrub)))
		return -EFAULT;

	error = xfs_scrub_metadata(ip, &scrub);
	if (error)
		return error;

	if (copy_to_user(arg, &scrub, sizeof(scrub)))
		return -EFAULT;

	return 0;
}

D
Dave Chinner 已提交
1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895
int
xfs_ioc_swapext(
	xfs_swapext_t	*sxp)
{
	xfs_inode_t     *ip, *tip;
	struct fd	f, tmp;
	int		error = 0;

	/* Pull information for the target fd */
	f = fdget((int)sxp->sx_fdtarget);
	if (!f.file) {
D
Dave Chinner 已提交
1896
		error = -EINVAL;
D
Dave Chinner 已提交
1897 1898 1899 1900 1901 1902
		goto out;
	}

	if (!(f.file->f_mode & FMODE_WRITE) ||
	    !(f.file->f_mode & FMODE_READ) ||
	    (f.file->f_flags & O_APPEND)) {
D
Dave Chinner 已提交
1903
		error = -EBADF;
D
Dave Chinner 已提交
1904 1905 1906 1907 1908
		goto out_put_file;
	}

	tmp = fdget((int)sxp->sx_fdtmp);
	if (!tmp.file) {
D
Dave Chinner 已提交
1909
		error = -EINVAL;
D
Dave Chinner 已提交
1910 1911 1912 1913 1914 1915
		goto out_put_file;
	}

	if (!(tmp.file->f_mode & FMODE_WRITE) ||
	    !(tmp.file->f_mode & FMODE_READ) ||
	    (tmp.file->f_flags & O_APPEND)) {
D
Dave Chinner 已提交
1916
		error = -EBADF;
D
Dave Chinner 已提交
1917 1918 1919 1920 1921
		goto out_put_tmp_file;
	}

	if (IS_SWAPFILE(file_inode(f.file)) ||
	    IS_SWAPFILE(file_inode(tmp.file))) {
D
Dave Chinner 已提交
1922
		error = -EINVAL;
D
Dave Chinner 已提交
1923 1924 1925
		goto out_put_tmp_file;
	}

1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936
	/*
	 * We need to ensure that the fds passed in point to XFS inodes
	 * before we cast and access them as XFS structures as we have no
	 * control over what the user passes us here.
	 */
	if (f.file->f_op != &xfs_file_operations ||
	    tmp.file->f_op != &xfs_file_operations) {
		error = -EINVAL;
		goto out_put_tmp_file;
	}

D
Dave Chinner 已提交
1937 1938 1939 1940
	ip = XFS_I(file_inode(f.file));
	tip = XFS_I(file_inode(tmp.file));

	if (ip->i_mount != tip->i_mount) {
D
Dave Chinner 已提交
1941
		error = -EINVAL;
D
Dave Chinner 已提交
1942 1943 1944 1945
		goto out_put_tmp_file;
	}

	if (ip->i_ino == tip->i_ino) {
D
Dave Chinner 已提交
1946
		error = -EINVAL;
D
Dave Chinner 已提交
1947 1948 1949 1950
		goto out_put_tmp_file;
	}

	if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
D
Dave Chinner 已提交
1951
		error = -EIO;
D
Dave Chinner 已提交
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964
		goto out_put_tmp_file;
	}

	error = xfs_swap_extents(ip, tip, sxp);

 out_put_tmp_file:
	fdput(tmp);
 out_put_file:
	fdput(f);
 out:
	return error;
}

1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975
static int
xfs_ioc_getlabel(
	struct xfs_mount	*mp,
	char			__user *user_label)
{
	struct xfs_sb		*sbp = &mp->m_sb;
	char			label[XFSLABEL_MAX + 1];

	/* Paranoia */
	BUILD_BUG_ON(sizeof(sbp->sb_fname) > FSLABEL_MAX);

1976 1977
	/* 1 larger than sb_fname, so this ensures a trailing NUL char */
	memset(label, 0, sizeof(label));
1978
	spin_lock(&mp->m_sb_lock);
1979
	strncpy(label, sbp->sb_fname, XFSLABEL_MAX);
1980 1981
	spin_unlock(&mp->m_sb_lock);

1982
	if (copy_to_user(user_label, label, sizeof(label)))
1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
		return -EFAULT;
	return 0;
}

static int
xfs_ioc_setlabel(
	struct file		*filp,
	struct xfs_mount	*mp,
	char			__user *newlabel)
{
	struct xfs_sb		*sbp = &mp->m_sb;
	char			label[XFSLABEL_MAX + 1];
	size_t			len;
	int			error;

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;
	/*
	 * The generic ioctl allows up to FSLABEL_MAX chars, but XFS is much
	 * smaller, at 12 bytes.  We copy one more to be sure we find the
	 * (required) NULL character to test the incoming label length.
	 * NB: The on disk label doesn't need to be null terminated.
	 */
	if (copy_from_user(label, newlabel, XFSLABEL_MAX + 1))
		return -EFAULT;
	len = strnlen(label, XFSLABEL_MAX + 1);
	if (len > sizeof(sbp->sb_fname))
		return -EINVAL;

	error = mnt_want_write_file(filp);
	if (error)
		return error;

	spin_lock(&mp->m_sb_lock);
	memset(sbp->sb_fname, 0, sizeof(sbp->sb_fname));
2018
	memcpy(sbp->sb_fname, label, len);
2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046
	spin_unlock(&mp->m_sb_lock);

	/*
	 * Now we do several things to satisfy userspace.
	 * In addition to normal logging of the primary superblock, we also
	 * immediately write these changes to sector zero for the primary, then
	 * update all backup supers (as xfs_db does for a label change), then
	 * invalidate the block device page cache.  This is so that any prior
	 * buffered reads from userspace (i.e. from blkid) are invalidated,
	 * and userspace will see the newly-written label.
	 */
	error = xfs_sync_sb_buf(mp);
	if (error)
		goto out;
	/*
	 * growfs also updates backup supers so lock against that.
	 */
	mutex_lock(&mp->m_growlock);
	error = xfs_update_secondary_sbs(mp);
	mutex_unlock(&mp->m_growlock);

	invalidate_bdev(mp->m_ddev_targp->bt_bdev);

out:
	mnt_drop_write_file(filp);
	return error;
}

2047 2048 2049 2050 2051 2052 2053 2054
/*
 * Note: some of the ioctl's return positive numbers as a
 * byte count indicating success, such as readlink_by_handle.
 * So we don't "sign flip" like most other routines.  This means
 * true errors need to be returned as a negative value.
 */
long
xfs_file_ioctl(
L
Lachlan McIlroy 已提交
2055 2056
	struct file		*filp,
	unsigned int		cmd,
2057
	unsigned long		p)
L
Lachlan McIlroy 已提交
2058
{
A
Al Viro 已提交
2059
	struct inode		*inode = file_inode(filp);
2060 2061 2062
	struct xfs_inode	*ip = XFS_I(inode);
	struct xfs_mount	*mp = ip->i_mount;
	void			__user *arg = (void __user *)p;
L
Lachlan McIlroy 已提交
2063 2064
	int			error;

C
Christoph Hellwig 已提交
2065
	trace_xfs_file_ioctl(ip);
2066 2067

	switch (cmd) {
C
Christoph Hellwig 已提交
2068 2069
	case FITRIM:
		return xfs_ioc_trim(mp, arg);
2070 2071 2072 2073
	case FS_IOC_GETFSLABEL:
		return xfs_ioc_getlabel(mp, arg);
	case FS_IOC_SETFSLABEL:
		return xfs_ioc_setlabel(filp, mp, arg);
L
Lachlan McIlroy 已提交
2074 2075 2076
	case XFS_IOC_ALLOCSP:
	case XFS_IOC_FREESP:
	case XFS_IOC_ALLOCSP64:
2077
	case XFS_IOC_FREESP64: {
2078
		xfs_flock64_t		bf;
L
Lachlan McIlroy 已提交
2079

2080
		if (copy_from_user(&bf, arg, sizeof(bf)))
E
Eric Sandeen 已提交
2081
			return -EFAULT;
2082
		return xfs_ioc_space(filp, &bf);
2083
	}
L
Lachlan McIlroy 已提交
2084
	case XFS_IOC_DIOINFO: {
2085 2086
		struct xfs_buftarg	*target = xfs_inode_buftarg(ip);
		struct dioattr		da;
L
Lachlan McIlroy 已提交
2087

2088
		da.d_mem =  da.d_miniosz = target->bt_logical_sectorsize;
L
Lachlan McIlroy 已提交
2089 2090 2091
		da.d_maxiosz = INT_MAX & ~(da.d_miniosz - 1);

		if (copy_to_user(arg, &da, sizeof(da)))
E
Eric Sandeen 已提交
2092
			return -EFAULT;
L
Lachlan McIlroy 已提交
2093 2094 2095 2096 2097 2098
		return 0;
	}

	case XFS_IOC_FSBULKSTAT_SINGLE:
	case XFS_IOC_FSBULKSTAT:
	case XFS_IOC_FSINUMBERS:
D
Darrick J. Wong 已提交
2099
		return xfs_ioc_fsbulkstat(mp, cmd, arg);
L
Lachlan McIlroy 已提交
2100

2101
	case XFS_IOC_BULKSTAT:
L
Lachlan McIlroy 已提交
2102
		return xfs_ioc_bulkstat(mp, cmd, arg);
2103 2104
	case XFS_IOC_INUMBERS:
		return xfs_ioc_inumbers(mp, cmd, arg);
L
Lachlan McIlroy 已提交
2105 2106

	case XFS_IOC_FSGEOMETRY_V1:
2107 2108 2109
		return xfs_ioc_fsgeometry(mp, arg, 3);
	case XFS_IOC_FSGEOMETRY_V4:
		return xfs_ioc_fsgeometry(mp, arg, 4);
L
Lachlan McIlroy 已提交
2110
	case XFS_IOC_FSGEOMETRY:
2111
		return xfs_ioc_fsgeometry(mp, arg, 5);
L
Lachlan McIlroy 已提交
2112

2113 2114 2115
	case XFS_IOC_AG_GEOMETRY:
		return xfs_ioc_ag_geometry(mp, arg);

L
Lachlan McIlroy 已提交
2116 2117 2118 2119 2120 2121 2122
	case XFS_IOC_GETVERSION:
		return put_user(inode->i_generation, (int __user *)arg);

	case XFS_IOC_FSGETXATTR:
		return xfs_ioc_fsgetxattr(ip, 0, arg);
	case XFS_IOC_FSGETXATTRA:
		return xfs_ioc_fsgetxattr(ip, 1, arg);
L
Lachlan McIlroy 已提交
2123 2124
	case XFS_IOC_FSSETXATTR:
		return xfs_ioc_fssetxattr(ip, filp, arg);
L
Lachlan McIlroy 已提交
2125
	case XFS_IOC_GETXFLAGS:
L
Lachlan McIlroy 已提交
2126
		return xfs_ioc_getxflags(ip, arg);
L
Lachlan McIlroy 已提交
2127
	case XFS_IOC_SETXFLAGS:
L
Lachlan McIlroy 已提交
2128
		return xfs_ioc_setxflags(ip, filp, arg);
L
Lachlan McIlroy 已提交
2129 2130 2131 2132 2133

	case XFS_IOC_FSSETDM: {
		struct fsdmidata	dmi;

		if (copy_from_user(&dmi, arg, sizeof(dmi)))
E
Eric Sandeen 已提交
2134
			return -EFAULT;
L
Lachlan McIlroy 已提交
2135

J
Jan Kara 已提交
2136 2137 2138 2139
		error = mnt_want_write_file(filp);
		if (error)
			return error;

L
Lachlan McIlroy 已提交
2140 2141
		error = xfs_set_dmattrs(ip, dmi.fsd_dmevmask,
				dmi.fsd_dmstate);
J
Jan Kara 已提交
2142
		mnt_drop_write_file(filp);
D
Dave Chinner 已提交
2143
		return error;
L
Lachlan McIlroy 已提交
2144 2145 2146 2147 2148
	}

	case XFS_IOC_GETBMAP:
	case XFS_IOC_GETBMAPA:
	case XFS_IOC_GETBMAPX:
2149
		return xfs_ioc_getbmap(filp, cmd, arg);
L
Lachlan McIlroy 已提交
2150

2151 2152 2153
	case FS_IOC_GETFSMAP:
		return xfs_ioc_getfsmap(ip, arg);

2154 2155 2156
	case XFS_IOC_SCRUB_METADATA:
		return xfs_ioc_scrub_metadata(ip, arg);

L
Lachlan McIlroy 已提交
2157 2158
	case XFS_IOC_FD_TO_HANDLE:
	case XFS_IOC_PATH_TO_HANDLE:
2159 2160
	case XFS_IOC_PATH_TO_FSHANDLE: {
		xfs_fsop_handlereq_t	hreq;
L
Lachlan McIlroy 已提交
2161

2162
		if (copy_from_user(&hreq, arg, sizeof(hreq)))
E
Eric Sandeen 已提交
2163
			return -EFAULT;
2164 2165 2166 2167
		return xfs_find_handle(cmd, &hreq);
	}
	case XFS_IOC_OPEN_BY_HANDLE: {
		xfs_fsop_handlereq_t	hreq;
L
Lachlan McIlroy 已提交
2168

2169
		if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
E
Eric Sandeen 已提交
2170
			return -EFAULT;
2171
		return xfs_open_by_handle(filp, &hreq);
2172
	}
L
Lachlan McIlroy 已提交
2173
	case XFS_IOC_FSSETDM_BY_HANDLE:
2174
		return xfs_fssetdm_by_handle(filp, arg);
L
Lachlan McIlroy 已提交
2175

2176 2177
	case XFS_IOC_READLINK_BY_HANDLE: {
		xfs_fsop_handlereq_t	hreq;
L
Lachlan McIlroy 已提交
2178

2179
		if (copy_from_user(&hreq, arg, sizeof(xfs_fsop_handlereq_t)))
E
Eric Sandeen 已提交
2180
			return -EFAULT;
2181
		return xfs_readlink_by_handle(filp, &hreq);
2182
	}
L
Lachlan McIlroy 已提交
2183
	case XFS_IOC_ATTRLIST_BY_HANDLE:
2184
		return xfs_attrlist_by_handle(filp, arg);
L
Lachlan McIlroy 已提交
2185 2186

	case XFS_IOC_ATTRMULTI_BY_HANDLE:
2187
		return xfs_attrmulti_by_handle(filp, arg);
L
Lachlan McIlroy 已提交
2188 2189

	case XFS_IOC_SWAPEXT: {
2190 2191 2192
		struct xfs_swapext	sxp;

		if (copy_from_user(&sxp, arg, sizeof(xfs_swapext_t)))
E
Eric Sandeen 已提交
2193
			return -EFAULT;
J
Jan Kara 已提交
2194 2195 2196
		error = mnt_want_write_file(filp);
		if (error)
			return error;
D
Dave Chinner 已提交
2197
		error = xfs_ioc_swapext(&sxp);
J
Jan Kara 已提交
2198
		mnt_drop_write_file(filp);
D
Dave Chinner 已提交
2199
		return error;
L
Lachlan McIlroy 已提交
2200 2201 2202 2203 2204
	}

	case XFS_IOC_FSCOUNTS: {
		xfs_fsop_counts_t out;

2205
		xfs_fs_counts(mp, &out);
L
Lachlan McIlroy 已提交
2206 2207

		if (copy_to_user(arg, &out, sizeof(out)))
E
Eric Sandeen 已提交
2208
			return -EFAULT;
L
Lachlan McIlroy 已提交
2209 2210 2211 2212 2213
		return 0;
	}

	case XFS_IOC_SET_RESBLKS: {
		xfs_fsop_resblks_t inout;
2214
		uint64_t	   in;
L
Lachlan McIlroy 已提交
2215 2216 2217 2218

		if (!capable(CAP_SYS_ADMIN))
			return -EPERM;

E
Eric Sandeen 已提交
2219
		if (mp->m_flags & XFS_MOUNT_RDONLY)
E
Eric Sandeen 已提交
2220
			return -EROFS;
E
Eric Sandeen 已提交
2221

L
Lachlan McIlroy 已提交
2222
		if (copy_from_user(&inout, arg, sizeof(inout)))
E
Eric Sandeen 已提交
2223
			return -EFAULT;
L
Lachlan McIlroy 已提交
2224

J
Jan Kara 已提交
2225 2226 2227 2228
		error = mnt_want_write_file(filp);
		if (error)
			return error;

L
Lachlan McIlroy 已提交
2229 2230 2231
		/* input parameter is passed in resblks field of structure */
		in = inout.resblks;
		error = xfs_reserve_blocks(mp, &in, &inout);
J
Jan Kara 已提交
2232
		mnt_drop_write_file(filp);
L
Lachlan McIlroy 已提交
2233
		if (error)
D
Dave Chinner 已提交
2234
			return error;
L
Lachlan McIlroy 已提交
2235 2236

		if (copy_to_user(arg, &inout, sizeof(inout)))
E
Eric Sandeen 已提交
2237
			return -EFAULT;
L
Lachlan McIlroy 已提交
2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248
		return 0;
	}

	case XFS_IOC_GET_RESBLKS: {
		xfs_fsop_resblks_t out;

		if (!capable(CAP_SYS_ADMIN))
			return -EPERM;

		error = xfs_reserve_blocks(mp, NULL, &out);
		if (error)
D
Dave Chinner 已提交
2249
			return error;
L
Lachlan McIlroy 已提交
2250 2251

		if (copy_to_user(arg, &out, sizeof(out)))
E
Eric Sandeen 已提交
2252
			return -EFAULT;
L
Lachlan McIlroy 已提交
2253 2254 2255 2256 2257 2258 2259 2260

		return 0;
	}

	case XFS_IOC_FSGROWFSDATA: {
		xfs_growfs_data_t in;

		if (copy_from_user(&in, arg, sizeof(in)))
E
Eric Sandeen 已提交
2261
			return -EFAULT;
L
Lachlan McIlroy 已提交
2262

J
Jan Kara 已提交
2263 2264 2265
		error = mnt_want_write_file(filp);
		if (error)
			return error;
L
Lachlan McIlroy 已提交
2266
		error = xfs_growfs_data(mp, &in);
J
Jan Kara 已提交
2267
		mnt_drop_write_file(filp);
D
Dave Chinner 已提交
2268
		return error;
L
Lachlan McIlroy 已提交
2269 2270 2271 2272 2273 2274
	}

	case XFS_IOC_FSGROWFSLOG: {
		xfs_growfs_log_t in;

		if (copy_from_user(&in, arg, sizeof(in)))
E
Eric Sandeen 已提交
2275
			return -EFAULT;
L
Lachlan McIlroy 已提交
2276

J
Jan Kara 已提交
2277 2278 2279
		error = mnt_want_write_file(filp);
		if (error)
			return error;
L
Lachlan McIlroy 已提交
2280
		error = xfs_growfs_log(mp, &in);
J
Jan Kara 已提交
2281
		mnt_drop_write_file(filp);
D
Dave Chinner 已提交
2282
		return error;
L
Lachlan McIlroy 已提交
2283 2284 2285 2286 2287 2288
	}

	case XFS_IOC_FSGROWFSRT: {
		xfs_growfs_rt_t in;

		if (copy_from_user(&in, arg, sizeof(in)))
E
Eric Sandeen 已提交
2289
			return -EFAULT;
L
Lachlan McIlroy 已提交
2290

J
Jan Kara 已提交
2291 2292 2293
		error = mnt_want_write_file(filp);
		if (error)
			return error;
L
Lachlan McIlroy 已提交
2294
		error = xfs_growfs_rt(mp, &in);
J
Jan Kara 已提交
2295
		mnt_drop_write_file(filp);
D
Dave Chinner 已提交
2296
		return error;
L
Lachlan McIlroy 已提交
2297 2298 2299
	}

	case XFS_IOC_GOINGDOWN: {
2300
		uint32_t in;
L
Lachlan McIlroy 已提交
2301 2302 2303 2304

		if (!capable(CAP_SYS_ADMIN))
			return -EPERM;

2305
		if (get_user(in, (uint32_t __user *)arg))
E
Eric Sandeen 已提交
2306
			return -EFAULT;
L
Lachlan McIlroy 已提交
2307

D
Dave Chinner 已提交
2308
		return xfs_fs_goingdown(mp, in);
L
Lachlan McIlroy 已提交
2309 2310 2311 2312 2313 2314 2315 2316 2317
	}

	case XFS_IOC_ERROR_INJECTION: {
		xfs_error_injection_t in;

		if (!capable(CAP_SYS_ADMIN))
			return -EPERM;

		if (copy_from_user(&in, arg, sizeof(in)))
E
Eric Sandeen 已提交
2318
			return -EFAULT;
L
Lachlan McIlroy 已提交
2319

2320
		return xfs_errortag_add(mp, in.errtag);
L
Lachlan McIlroy 已提交
2321 2322 2323 2324 2325 2326
	}

	case XFS_IOC_ERROR_CLEARALL:
		if (!capable(CAP_SYS_ADMIN))
			return -EPERM;

2327
		return xfs_errortag_clearall(mp);
L
Lachlan McIlroy 已提交
2328

2329
	case XFS_IOC_FREE_EOFBLOCKS: {
2330 2331
		struct xfs_fs_eofblocks eofb;
		struct xfs_eofblocks keofb;
2332

2333 2334 2335 2336
		if (!capable(CAP_SYS_ADMIN))
			return -EPERM;

		if (mp->m_flags & XFS_MOUNT_RDONLY)
E
Eric Sandeen 已提交
2337
			return -EROFS;
2338

2339
		if (copy_from_user(&eofb, arg, sizeof(eofb)))
E
Eric Sandeen 已提交
2340
			return -EFAULT;
2341

2342 2343
		error = xfs_fs_eofblocks_from_user(&eofb, &keofb);
		if (error)
D
Dave Chinner 已提交
2344
			return error;
2345

D
Dave Chinner 已提交
2346
		return xfs_icache_free_eofblocks(mp, &keofb);
2347 2348
	}

L
Lachlan McIlroy 已提交
2349 2350 2351 2352
	default:
		return -ENOTTY;
	}
}