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