827283fe95256c42f529df5f8f2cdc6c767feca6
[deliverable/linux.git] / fs / nilfs2 / ioctl.c
1 /*
2 * ioctl.c - NILFS ioctl operations.
3 *
4 * Copyright (C) 2007, 2008 Nippon Telegraph and Telephone Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * Written by Koji Sato.
17 */
18
19 #include <linux/fs.h>
20 #include <linux/wait.h>
21 #include <linux/slab.h>
22 #include <linux/capability.h> /* capable() */
23 #include <linux/uaccess.h> /* copy_from_user(), copy_to_user() */
24 #include <linux/vmalloc.h>
25 #include <linux/compat.h> /* compat_ptr() */
26 #include <linux/mount.h> /* mnt_want_write_file(), mnt_drop_write_file() */
27 #include <linux/buffer_head.h>
28 #include <linux/nilfs2_fs.h>
29 #include "nilfs.h"
30 #include "segment.h"
31 #include "bmap.h"
32 #include "cpfile.h"
33 #include "sufile.h"
34 #include "dat.h"
35
36 /**
37 * nilfs_ioctl_wrap_copy - wrapping function of get/set metadata info
38 * @nilfs: nilfs object
39 * @argv: vector of arguments from userspace
40 * @dir: set of direction flags
41 * @dofunc: concrete function of get/set metadata info
42 *
43 * Description: nilfs_ioctl_wrap_copy() gets/sets metadata info by means of
44 * calling dofunc() function on the basis of @argv argument.
45 *
46 * Return Value: On success, 0 is returned and requested metadata info
47 * is copied into userspace. On error, one of the following
48 * negative error codes is returned.
49 *
50 * %-EINVAL - Invalid arguments from userspace.
51 *
52 * %-ENOMEM - Insufficient amount of memory available.
53 *
54 * %-EFAULT - Failure during execution of requested operation.
55 */
56 static int nilfs_ioctl_wrap_copy(struct the_nilfs *nilfs,
57 struct nilfs_argv *argv, int dir,
58 ssize_t (*dofunc)(struct the_nilfs *,
59 __u64 *, int,
60 void *, size_t, size_t))
61 {
62 void *buf;
63 void __user *base = (void __user *)(unsigned long)argv->v_base;
64 size_t maxmembs, total, n;
65 ssize_t nr;
66 int ret, i;
67 __u64 pos, ppos;
68
69 if (argv->v_nmembs == 0)
70 return 0;
71
72 if (argv->v_size > PAGE_SIZE)
73 return -EINVAL;
74
75 /*
76 * Reject pairs of a start item position (argv->v_index) and a
77 * total count (argv->v_nmembs) which leads position 'pos' to
78 * overflow by the increment at the end of the loop.
79 */
80 if (argv->v_index > ~(__u64)0 - argv->v_nmembs)
81 return -EINVAL;
82
83 buf = (void *)__get_free_pages(GFP_NOFS, 0);
84 if (unlikely(!buf))
85 return -ENOMEM;
86 maxmembs = PAGE_SIZE / argv->v_size;
87
88 ret = 0;
89 total = 0;
90 pos = argv->v_index;
91 for (i = 0; i < argv->v_nmembs; i += n) {
92 n = (argv->v_nmembs - i < maxmembs) ?
93 argv->v_nmembs - i : maxmembs;
94 if ((dir & _IOC_WRITE) &&
95 copy_from_user(buf, base + argv->v_size * i,
96 argv->v_size * n)) {
97 ret = -EFAULT;
98 break;
99 }
100 ppos = pos;
101 nr = dofunc(nilfs, &pos, argv->v_flags, buf, argv->v_size,
102 n);
103 if (nr < 0) {
104 ret = nr;
105 break;
106 }
107 if ((dir & _IOC_READ) &&
108 copy_to_user(base + argv->v_size * i, buf,
109 argv->v_size * nr)) {
110 ret = -EFAULT;
111 break;
112 }
113 total += nr;
114 if ((size_t)nr < n)
115 break;
116 if (pos == ppos)
117 pos += n;
118 }
119 argv->v_nmembs = total;
120
121 free_pages((unsigned long)buf, 0);
122 return ret;
123 }
124
125 /**
126 * nilfs_ioctl_getflags - ioctl to support lsattr
127 */
128 static int nilfs_ioctl_getflags(struct inode *inode, void __user *argp)
129 {
130 unsigned int flags = NILFS_I(inode)->i_flags & FS_FL_USER_VISIBLE;
131
132 return put_user(flags, (int __user *)argp);
133 }
134
135 /**
136 * nilfs_ioctl_setflags - ioctl to support chattr
137 */
138 static int nilfs_ioctl_setflags(struct inode *inode, struct file *filp,
139 void __user *argp)
140 {
141 struct nilfs_transaction_info ti;
142 unsigned int flags, oldflags;
143 int ret;
144
145 if (!inode_owner_or_capable(inode))
146 return -EACCES;
147
148 if (get_user(flags, (int __user *)argp))
149 return -EFAULT;
150
151 ret = mnt_want_write_file(filp);
152 if (ret)
153 return ret;
154
155 flags = nilfs_mask_flags(inode->i_mode, flags);
156
157 inode_lock(inode);
158
159 oldflags = NILFS_I(inode)->i_flags;
160
161 /*
162 * The IMMUTABLE and APPEND_ONLY flags can only be changed by the
163 * relevant capability.
164 */
165 ret = -EPERM;
166 if (((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) &&
167 !capable(CAP_LINUX_IMMUTABLE))
168 goto out;
169
170 ret = nilfs_transaction_begin(inode->i_sb, &ti, 0);
171 if (ret)
172 goto out;
173
174 NILFS_I(inode)->i_flags = (oldflags & ~FS_FL_USER_MODIFIABLE) |
175 (flags & FS_FL_USER_MODIFIABLE);
176
177 nilfs_set_inode_flags(inode);
178 inode->i_ctime = CURRENT_TIME;
179 if (IS_SYNC(inode))
180 nilfs_set_transaction_flag(NILFS_TI_SYNC);
181
182 nilfs_mark_inode_dirty(inode);
183 ret = nilfs_transaction_commit(inode->i_sb);
184 out:
185 inode_unlock(inode);
186 mnt_drop_write_file(filp);
187 return ret;
188 }
189
190 /**
191 * nilfs_ioctl_getversion - get info about a file's version (generation number)
192 */
193 static int nilfs_ioctl_getversion(struct inode *inode, void __user *argp)
194 {
195 return put_user(inode->i_generation, (int __user *)argp);
196 }
197
198 /**
199 * nilfs_ioctl_change_cpmode - change checkpoint mode (checkpoint/snapshot)
200 * @inode: inode object
201 * @filp: file object
202 * @cmd: ioctl's request code
203 * @argp: pointer on argument from userspace
204 *
205 * Description: nilfs_ioctl_change_cpmode() function changes mode of
206 * given checkpoint between checkpoint and snapshot state. This ioctl
207 * is used in chcp and mkcp utilities.
208 *
209 * Return Value: On success, 0 is returned and mode of a checkpoint is
210 * changed. On error, one of the following negative error codes
211 * is returned.
212 *
213 * %-EPERM - Operation not permitted.
214 *
215 * %-EFAULT - Failure during checkpoint mode changing.
216 */
217 static int nilfs_ioctl_change_cpmode(struct inode *inode, struct file *filp,
218 unsigned int cmd, void __user *argp)
219 {
220 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
221 struct nilfs_transaction_info ti;
222 struct nilfs_cpmode cpmode;
223 int ret;
224
225 if (!capable(CAP_SYS_ADMIN))
226 return -EPERM;
227
228 ret = mnt_want_write_file(filp);
229 if (ret)
230 return ret;
231
232 ret = -EFAULT;
233 if (copy_from_user(&cpmode, argp, sizeof(cpmode)))
234 goto out;
235
236 mutex_lock(&nilfs->ns_snapshot_mount_mutex);
237
238 nilfs_transaction_begin(inode->i_sb, &ti, 0);
239 ret = nilfs_cpfile_change_cpmode(
240 nilfs->ns_cpfile, cpmode.cm_cno, cpmode.cm_mode);
241 if (unlikely(ret < 0))
242 nilfs_transaction_abort(inode->i_sb);
243 else
244 nilfs_transaction_commit(inode->i_sb); /* never fails */
245
246 mutex_unlock(&nilfs->ns_snapshot_mount_mutex);
247 out:
248 mnt_drop_write_file(filp);
249 return ret;
250 }
251
252 /**
253 * nilfs_ioctl_delete_checkpoint - remove checkpoint
254 * @inode: inode object
255 * @filp: file object
256 * @cmd: ioctl's request code
257 * @argp: pointer on argument from userspace
258 *
259 * Description: nilfs_ioctl_delete_checkpoint() function removes
260 * checkpoint from NILFS2 file system. This ioctl is used in rmcp
261 * utility.
262 *
263 * Return Value: On success, 0 is returned and a checkpoint is
264 * removed. On error, one of the following negative error codes
265 * is returned.
266 *
267 * %-EPERM - Operation not permitted.
268 *
269 * %-EFAULT - Failure during checkpoint removing.
270 */
271 static int
272 nilfs_ioctl_delete_checkpoint(struct inode *inode, struct file *filp,
273 unsigned int cmd, void __user *argp)
274 {
275 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
276 struct nilfs_transaction_info ti;
277 __u64 cno;
278 int ret;
279
280 if (!capable(CAP_SYS_ADMIN))
281 return -EPERM;
282
283 ret = mnt_want_write_file(filp);
284 if (ret)
285 return ret;
286
287 ret = -EFAULT;
288 if (copy_from_user(&cno, argp, sizeof(cno)))
289 goto out;
290
291 nilfs_transaction_begin(inode->i_sb, &ti, 0);
292 ret = nilfs_cpfile_delete_checkpoint(nilfs->ns_cpfile, cno);
293 if (unlikely(ret < 0))
294 nilfs_transaction_abort(inode->i_sb);
295 else
296 nilfs_transaction_commit(inode->i_sb); /* never fails */
297 out:
298 mnt_drop_write_file(filp);
299 return ret;
300 }
301
302 /**
303 * nilfs_ioctl_do_get_cpinfo - callback method getting info about checkpoints
304 * @nilfs: nilfs object
305 * @posp: pointer on array of checkpoint's numbers
306 * @flags: checkpoint mode (checkpoint or snapshot)
307 * @buf: buffer for storing checkponts' info
308 * @size: size in bytes of one checkpoint info item in array
309 * @nmembs: number of checkpoints in array (numbers and infos)
310 *
311 * Description: nilfs_ioctl_do_get_cpinfo() function returns info about
312 * requested checkpoints. The NILFS_IOCTL_GET_CPINFO ioctl is used in
313 * lscp utility and by nilfs_cleanerd daemon.
314 *
315 * Return value: count of nilfs_cpinfo structures in output buffer.
316 */
317 static ssize_t
318 nilfs_ioctl_do_get_cpinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
319 void *buf, size_t size, size_t nmembs)
320 {
321 int ret;
322
323 down_read(&nilfs->ns_segctor_sem);
324 ret = nilfs_cpfile_get_cpinfo(nilfs->ns_cpfile, posp, flags, buf,
325 size, nmembs);
326 up_read(&nilfs->ns_segctor_sem);
327 return ret;
328 }
329
330 /**
331 * nilfs_ioctl_get_cpstat - get checkpoints statistics
332 * @inode: inode object
333 * @filp: file object
334 * @cmd: ioctl's request code
335 * @argp: pointer on argument from userspace
336 *
337 * Description: nilfs_ioctl_get_cpstat() returns information about checkpoints.
338 * The NILFS_IOCTL_GET_CPSTAT ioctl is used by lscp, rmcp utilities
339 * and by nilfs_cleanerd daemon.
340 *
341 * Return Value: On success, 0 is returned, and checkpoints information is
342 * copied into userspace pointer @argp. On error, one of the following
343 * negative error codes is returned.
344 *
345 * %-EIO - I/O error.
346 *
347 * %-ENOMEM - Insufficient amount of memory available.
348 *
349 * %-EFAULT - Failure during getting checkpoints statistics.
350 */
351 static int nilfs_ioctl_get_cpstat(struct inode *inode, struct file *filp,
352 unsigned int cmd, void __user *argp)
353 {
354 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
355 struct nilfs_cpstat cpstat;
356 int ret;
357
358 down_read(&nilfs->ns_segctor_sem);
359 ret = nilfs_cpfile_get_stat(nilfs->ns_cpfile, &cpstat);
360 up_read(&nilfs->ns_segctor_sem);
361 if (ret < 0)
362 return ret;
363
364 if (copy_to_user(argp, &cpstat, sizeof(cpstat)))
365 ret = -EFAULT;
366 return ret;
367 }
368
369 /**
370 * nilfs_ioctl_do_get_suinfo - callback method getting segment usage info
371 * @nilfs: nilfs object
372 * @posp: pointer on array of segment numbers
373 * @flags: *not used*
374 * @buf: buffer for storing suinfo array
375 * @size: size in bytes of one suinfo item in array
376 * @nmembs: count of segment numbers and suinfos in array
377 *
378 * Description: nilfs_ioctl_do_get_suinfo() function returns segment usage
379 * info about requested segments. The NILFS_IOCTL_GET_SUINFO ioctl is used
380 * in lssu, nilfs_resize utilities and by nilfs_cleanerd daemon.
381 *
382 * Return value: count of nilfs_suinfo structures in output buffer.
383 */
384 static ssize_t
385 nilfs_ioctl_do_get_suinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
386 void *buf, size_t size, size_t nmembs)
387 {
388 int ret;
389
390 down_read(&nilfs->ns_segctor_sem);
391 ret = nilfs_sufile_get_suinfo(nilfs->ns_sufile, *posp, buf, size,
392 nmembs);
393 up_read(&nilfs->ns_segctor_sem);
394 return ret;
395 }
396
397 /**
398 * nilfs_ioctl_get_sustat - get segment usage statistics
399 * @inode: inode object
400 * @filp: file object
401 * @cmd: ioctl's request code
402 * @argp: pointer on argument from userspace
403 *
404 * Description: nilfs_ioctl_get_sustat() returns segment usage statistics.
405 * The NILFS_IOCTL_GET_SUSTAT ioctl is used in lssu, nilfs_resize utilities
406 * and by nilfs_cleanerd daemon.
407 *
408 * Return Value: On success, 0 is returned, and segment usage information is
409 * copied into userspace pointer @argp. On error, one of the following
410 * negative error codes is returned.
411 *
412 * %-EIO - I/O error.
413 *
414 * %-ENOMEM - Insufficient amount of memory available.
415 *
416 * %-EFAULT - Failure during getting segment usage statistics.
417 */
418 static int nilfs_ioctl_get_sustat(struct inode *inode, struct file *filp,
419 unsigned int cmd, void __user *argp)
420 {
421 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
422 struct nilfs_sustat sustat;
423 int ret;
424
425 down_read(&nilfs->ns_segctor_sem);
426 ret = nilfs_sufile_get_stat(nilfs->ns_sufile, &sustat);
427 up_read(&nilfs->ns_segctor_sem);
428 if (ret < 0)
429 return ret;
430
431 if (copy_to_user(argp, &sustat, sizeof(sustat)))
432 ret = -EFAULT;
433 return ret;
434 }
435
436 /**
437 * nilfs_ioctl_do_get_vinfo - callback method getting virtual blocks info
438 * @nilfs: nilfs object
439 * @posp: *not used*
440 * @flags: *not used*
441 * @buf: buffer for storing array of nilfs_vinfo structures
442 * @size: size in bytes of one vinfo item in array
443 * @nmembs: count of vinfos in array
444 *
445 * Description: nilfs_ioctl_do_get_vinfo() function returns information
446 * on virtual block addresses. The NILFS_IOCTL_GET_VINFO ioctl is used
447 * by nilfs_cleanerd daemon.
448 *
449 * Return value: count of nilfs_vinfo structures in output buffer.
450 */
451 static ssize_t
452 nilfs_ioctl_do_get_vinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
453 void *buf, size_t size, size_t nmembs)
454 {
455 int ret;
456
457 down_read(&nilfs->ns_segctor_sem);
458 ret = nilfs_dat_get_vinfo(nilfs->ns_dat, buf, size, nmembs);
459 up_read(&nilfs->ns_segctor_sem);
460 return ret;
461 }
462
463 /**
464 * nilfs_ioctl_do_get_bdescs - callback method getting disk block descriptors
465 * @nilfs: nilfs object
466 * @posp: *not used*
467 * @flags: *not used*
468 * @buf: buffer for storing array of nilfs_bdesc structures
469 * @size: size in bytes of one bdesc item in array
470 * @nmembs: count of bdescs in array
471 *
472 * Description: nilfs_ioctl_do_get_bdescs() function returns information
473 * about descriptors of disk block numbers. The NILFS_IOCTL_GET_BDESCS ioctl
474 * is used by nilfs_cleanerd daemon.
475 *
476 * Return value: count of nilfs_bdescs structures in output buffer.
477 */
478 static ssize_t
479 nilfs_ioctl_do_get_bdescs(struct the_nilfs *nilfs, __u64 *posp, int flags,
480 void *buf, size_t size, size_t nmembs)
481 {
482 struct nilfs_bmap *bmap = NILFS_I(nilfs->ns_dat)->i_bmap;
483 struct nilfs_bdesc *bdescs = buf;
484 int ret, i;
485
486 down_read(&nilfs->ns_segctor_sem);
487 for (i = 0; i < nmembs; i++) {
488 ret = nilfs_bmap_lookup_at_level(bmap,
489 bdescs[i].bd_offset,
490 bdescs[i].bd_level + 1,
491 &bdescs[i].bd_blocknr);
492 if (ret < 0) {
493 if (ret != -ENOENT) {
494 up_read(&nilfs->ns_segctor_sem);
495 return ret;
496 }
497 bdescs[i].bd_blocknr = 0;
498 }
499 }
500 up_read(&nilfs->ns_segctor_sem);
501 return nmembs;
502 }
503
504 /**
505 * nilfs_ioctl_get_bdescs - get disk block descriptors
506 * @inode: inode object
507 * @filp: file object
508 * @cmd: ioctl's request code
509 * @argp: pointer on argument from userspace
510 *
511 * Description: nilfs_ioctl_do_get_bdescs() function returns information
512 * about descriptors of disk block numbers. The NILFS_IOCTL_GET_BDESCS ioctl
513 * is used by nilfs_cleanerd daemon.
514 *
515 * Return Value: On success, 0 is returned, and disk block descriptors are
516 * copied into userspace pointer @argp. On error, one of the following
517 * negative error codes is returned.
518 *
519 * %-EINVAL - Invalid arguments from userspace.
520 *
521 * %-EIO - I/O error.
522 *
523 * %-ENOMEM - Insufficient amount of memory available.
524 *
525 * %-EFAULT - Failure during getting disk block descriptors.
526 */
527 static int nilfs_ioctl_get_bdescs(struct inode *inode, struct file *filp,
528 unsigned int cmd, void __user *argp)
529 {
530 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
531 struct nilfs_argv argv;
532 int ret;
533
534 if (copy_from_user(&argv, argp, sizeof(argv)))
535 return -EFAULT;
536
537 if (argv.v_size != sizeof(struct nilfs_bdesc))
538 return -EINVAL;
539
540 ret = nilfs_ioctl_wrap_copy(nilfs, &argv, _IOC_DIR(cmd),
541 nilfs_ioctl_do_get_bdescs);
542 if (ret < 0)
543 return ret;
544
545 if (copy_to_user(argp, &argv, sizeof(argv)))
546 ret = -EFAULT;
547 return ret;
548 }
549
550 /**
551 * nilfs_ioctl_move_inode_block - prepare data/node block for moving by GC
552 * @inode: inode object
553 * @vdesc: descriptor of virtual block number
554 * @buffers: list of moving buffers
555 *
556 * Description: nilfs_ioctl_move_inode_block() function registers data/node
557 * buffer in the GC pagecache and submit read request.
558 *
559 * Return Value: On success, 0 is returned. On error, one of the following
560 * negative error codes is returned.
561 *
562 * %-EIO - I/O error.
563 *
564 * %-ENOMEM - Insufficient amount of memory available.
565 *
566 * %-ENOENT - Requested block doesn't exist.
567 *
568 * %-EEXIST - Blocks conflict is detected.
569 */
570 static int nilfs_ioctl_move_inode_block(struct inode *inode,
571 struct nilfs_vdesc *vdesc,
572 struct list_head *buffers)
573 {
574 struct buffer_head *bh;
575 int ret;
576
577 if (vdesc->vd_flags == 0)
578 ret = nilfs_gccache_submit_read_data(
579 inode, vdesc->vd_offset, vdesc->vd_blocknr,
580 vdesc->vd_vblocknr, &bh);
581 else
582 ret = nilfs_gccache_submit_read_node(
583 inode, vdesc->vd_blocknr, vdesc->vd_vblocknr, &bh);
584
585 if (unlikely(ret < 0)) {
586 if (ret == -ENOENT)
587 nilfs_msg(inode->i_sb, KERN_CRIT,
588 "%s: invalid virtual block address (%s): ino=%llu, cno=%llu, offset=%llu, blocknr=%llu, vblocknr=%llu",
589 __func__, vdesc->vd_flags ? "node" : "data",
590 (unsigned long long)vdesc->vd_ino,
591 (unsigned long long)vdesc->vd_cno,
592 (unsigned long long)vdesc->vd_offset,
593 (unsigned long long)vdesc->vd_blocknr,
594 (unsigned long long)vdesc->vd_vblocknr);
595 return ret;
596 }
597 if (unlikely(!list_empty(&bh->b_assoc_buffers))) {
598 nilfs_msg(inode->i_sb, KERN_CRIT,
599 "%s: conflicting %s buffer: ino=%llu, cno=%llu, offset=%llu, blocknr=%llu, vblocknr=%llu",
600 __func__, vdesc->vd_flags ? "node" : "data",
601 (unsigned long long)vdesc->vd_ino,
602 (unsigned long long)vdesc->vd_cno,
603 (unsigned long long)vdesc->vd_offset,
604 (unsigned long long)vdesc->vd_blocknr,
605 (unsigned long long)vdesc->vd_vblocknr);
606 brelse(bh);
607 return -EEXIST;
608 }
609 list_add_tail(&bh->b_assoc_buffers, buffers);
610 return 0;
611 }
612
613 /**
614 * nilfs_ioctl_move_blocks - move valid inode's blocks during garbage collection
615 * @sb: superblock object
616 * @argv: vector of arguments from userspace
617 * @buf: array of nilfs_vdesc structures
618 *
619 * Description: nilfs_ioctl_move_blocks() function reads valid data/node
620 * blocks that garbage collector specified with the array of nilfs_vdesc
621 * structures and stores them into page caches of GC inodes.
622 *
623 * Return Value: Number of processed nilfs_vdesc structures or
624 * error code, otherwise.
625 */
626 static int nilfs_ioctl_move_blocks(struct super_block *sb,
627 struct nilfs_argv *argv, void *buf)
628 {
629 size_t nmembs = argv->v_nmembs;
630 struct the_nilfs *nilfs = sb->s_fs_info;
631 struct inode *inode;
632 struct nilfs_vdesc *vdesc;
633 struct buffer_head *bh, *n;
634 LIST_HEAD(buffers);
635 ino_t ino;
636 __u64 cno;
637 int i, ret;
638
639 for (i = 0, vdesc = buf; i < nmembs; ) {
640 ino = vdesc->vd_ino;
641 cno = vdesc->vd_cno;
642 inode = nilfs_iget_for_gc(sb, ino, cno);
643 if (IS_ERR(inode)) {
644 ret = PTR_ERR(inode);
645 goto failed;
646 }
647 if (list_empty(&NILFS_I(inode)->i_dirty)) {
648 /*
649 * Add the inode to GC inode list. Garbage Collection
650 * is serialized and no two processes manipulate the
651 * list simultaneously.
652 */
653 igrab(inode);
654 list_add(&NILFS_I(inode)->i_dirty,
655 &nilfs->ns_gc_inodes);
656 }
657
658 do {
659 ret = nilfs_ioctl_move_inode_block(inode, vdesc,
660 &buffers);
661 if (unlikely(ret < 0)) {
662 iput(inode);
663 goto failed;
664 }
665 vdesc++;
666 } while (++i < nmembs &&
667 vdesc->vd_ino == ino && vdesc->vd_cno == cno);
668
669 iput(inode); /* The inode still remains in GC inode list */
670 }
671
672 list_for_each_entry_safe(bh, n, &buffers, b_assoc_buffers) {
673 ret = nilfs_gccache_wait_and_mark_dirty(bh);
674 if (unlikely(ret < 0)) {
675 WARN_ON(ret == -EEXIST);
676 goto failed;
677 }
678 list_del_init(&bh->b_assoc_buffers);
679 brelse(bh);
680 }
681 return nmembs;
682
683 failed:
684 list_for_each_entry_safe(bh, n, &buffers, b_assoc_buffers) {
685 list_del_init(&bh->b_assoc_buffers);
686 brelse(bh);
687 }
688 return ret;
689 }
690
691 /**
692 * nilfs_ioctl_delete_checkpoints - delete checkpoints
693 * @nilfs: nilfs object
694 * @argv: vector of arguments from userspace
695 * @buf: array of periods of checkpoints numbers
696 *
697 * Description: nilfs_ioctl_delete_checkpoints() function deletes checkpoints
698 * in the period from p_start to p_end, excluding p_end itself. The checkpoints
699 * which have been already deleted are ignored.
700 *
701 * Return Value: Number of processed nilfs_period structures or
702 * error code, otherwise.
703 *
704 * %-EIO - I/O error.
705 *
706 * %-ENOMEM - Insufficient amount of memory available.
707 *
708 * %-EINVAL - invalid checkpoints.
709 */
710 static int nilfs_ioctl_delete_checkpoints(struct the_nilfs *nilfs,
711 struct nilfs_argv *argv, void *buf)
712 {
713 size_t nmembs = argv->v_nmembs;
714 struct inode *cpfile = nilfs->ns_cpfile;
715 struct nilfs_period *periods = buf;
716 int ret, i;
717
718 for (i = 0; i < nmembs; i++) {
719 ret = nilfs_cpfile_delete_checkpoints(
720 cpfile, periods[i].p_start, periods[i].p_end);
721 if (ret < 0)
722 return ret;
723 }
724 return nmembs;
725 }
726
727 /**
728 * nilfs_ioctl_free_vblocknrs - free virtual block numbers
729 * @nilfs: nilfs object
730 * @argv: vector of arguments from userspace
731 * @buf: array of virtual block numbers
732 *
733 * Description: nilfs_ioctl_free_vblocknrs() function frees
734 * the virtual block numbers specified by @buf and @argv->v_nmembs.
735 *
736 * Return Value: Number of processed virtual block numbers or
737 * error code, otherwise.
738 *
739 * %-EIO - I/O error.
740 *
741 * %-ENOMEM - Insufficient amount of memory available.
742 *
743 * %-ENOENT - The virtual block number have not been allocated.
744 */
745 static int nilfs_ioctl_free_vblocknrs(struct the_nilfs *nilfs,
746 struct nilfs_argv *argv, void *buf)
747 {
748 size_t nmembs = argv->v_nmembs;
749 int ret;
750
751 ret = nilfs_dat_freev(nilfs->ns_dat, buf, nmembs);
752
753 return (ret < 0) ? ret : nmembs;
754 }
755
756 /**
757 * nilfs_ioctl_mark_blocks_dirty - mark blocks dirty
758 * @nilfs: nilfs object
759 * @argv: vector of arguments from userspace
760 * @buf: array of block descriptors
761 *
762 * Description: nilfs_ioctl_mark_blocks_dirty() function marks
763 * metadata file or data blocks as dirty.
764 *
765 * Return Value: Number of processed block descriptors or
766 * error code, otherwise.
767 *
768 * %-ENOMEM - Insufficient memory available.
769 *
770 * %-EIO - I/O error
771 *
772 * %-ENOENT - the specified block does not exist (hole block)
773 */
774 static int nilfs_ioctl_mark_blocks_dirty(struct the_nilfs *nilfs,
775 struct nilfs_argv *argv, void *buf)
776 {
777 size_t nmembs = argv->v_nmembs;
778 struct nilfs_bmap *bmap = NILFS_I(nilfs->ns_dat)->i_bmap;
779 struct nilfs_bdesc *bdescs = buf;
780 struct buffer_head *bh;
781 int ret, i;
782
783 for (i = 0; i < nmembs; i++) {
784 /* XXX: use macro or inline func to check liveness */
785 ret = nilfs_bmap_lookup_at_level(bmap,
786 bdescs[i].bd_offset,
787 bdescs[i].bd_level + 1,
788 &bdescs[i].bd_blocknr);
789 if (ret < 0) {
790 if (ret != -ENOENT)
791 return ret;
792 bdescs[i].bd_blocknr = 0;
793 }
794 if (bdescs[i].bd_blocknr != bdescs[i].bd_oblocknr)
795 /* skip dead block */
796 continue;
797 if (bdescs[i].bd_level == 0) {
798 ret = nilfs_mdt_get_block(nilfs->ns_dat,
799 bdescs[i].bd_offset,
800 false, NULL, &bh);
801 if (unlikely(ret)) {
802 WARN_ON(ret == -ENOENT);
803 return ret;
804 }
805 mark_buffer_dirty(bh);
806 nilfs_mdt_mark_dirty(nilfs->ns_dat);
807 put_bh(bh);
808 } else {
809 ret = nilfs_bmap_mark(bmap, bdescs[i].bd_offset,
810 bdescs[i].bd_level);
811 if (ret < 0) {
812 WARN_ON(ret == -ENOENT);
813 return ret;
814 }
815 }
816 }
817 return nmembs;
818 }
819
820 int nilfs_ioctl_prepare_clean_segments(struct the_nilfs *nilfs,
821 struct nilfs_argv *argv, void **kbufs)
822 {
823 const char *msg;
824 int ret;
825
826 ret = nilfs_ioctl_delete_checkpoints(nilfs, &argv[1], kbufs[1]);
827 if (ret < 0) {
828 /*
829 * can safely abort because checkpoints can be removed
830 * independently.
831 */
832 msg = "cannot delete checkpoints";
833 goto failed;
834 }
835 ret = nilfs_ioctl_free_vblocknrs(nilfs, &argv[2], kbufs[2]);
836 if (ret < 0) {
837 /*
838 * can safely abort because DAT file is updated atomically
839 * using a copy-on-write technique.
840 */
841 msg = "cannot delete virtual blocks from DAT file";
842 goto failed;
843 }
844 ret = nilfs_ioctl_mark_blocks_dirty(nilfs, &argv[3], kbufs[3]);
845 if (ret < 0) {
846 /*
847 * can safely abort because the operation is nondestructive.
848 */
849 msg = "cannot mark copying blocks dirty";
850 goto failed;
851 }
852 return 0;
853
854 failed:
855 nilfs_msg(nilfs->ns_sb, KERN_ERR, "error %d preparing GC: %s", ret,
856 msg);
857 return ret;
858 }
859
860 /**
861 * nilfs_ioctl_clean_segments - clean segments
862 * @inode: inode object
863 * @filp: file object
864 * @cmd: ioctl's request code
865 * @argp: pointer on argument from userspace
866 *
867 * Description: nilfs_ioctl_clean_segments() function makes garbage
868 * collection operation in the environment of requested parameters
869 * from userspace. The NILFS_IOCTL_CLEAN_SEGMENTS ioctl is used by
870 * nilfs_cleanerd daemon.
871 *
872 * Return Value: On success, 0 is returned or error code, otherwise.
873 */
874 static int nilfs_ioctl_clean_segments(struct inode *inode, struct file *filp,
875 unsigned int cmd, void __user *argp)
876 {
877 struct nilfs_argv argv[5];
878 static const size_t argsz[5] = {
879 sizeof(struct nilfs_vdesc),
880 sizeof(struct nilfs_period),
881 sizeof(__u64),
882 sizeof(struct nilfs_bdesc),
883 sizeof(__u64),
884 };
885 void __user *base;
886 void *kbufs[5];
887 struct the_nilfs *nilfs;
888 size_t len, nsegs;
889 int n, ret;
890
891 if (!capable(CAP_SYS_ADMIN))
892 return -EPERM;
893
894 ret = mnt_want_write_file(filp);
895 if (ret)
896 return ret;
897
898 ret = -EFAULT;
899 if (copy_from_user(argv, argp, sizeof(argv)))
900 goto out;
901
902 ret = -EINVAL;
903 nsegs = argv[4].v_nmembs;
904 if (argv[4].v_size != argsz[4])
905 goto out;
906 if (nsegs > UINT_MAX / sizeof(__u64))
907 goto out;
908
909 /*
910 * argv[4] points to segment numbers this ioctl cleans. We
911 * use kmalloc() for its buffer because memory used for the
912 * segment numbers is enough small.
913 */
914 kbufs[4] = memdup_user((void __user *)(unsigned long)argv[4].v_base,
915 nsegs * sizeof(__u64));
916 if (IS_ERR(kbufs[4])) {
917 ret = PTR_ERR(kbufs[4]);
918 goto out;
919 }
920 nilfs = inode->i_sb->s_fs_info;
921
922 for (n = 0; n < 4; n++) {
923 ret = -EINVAL;
924 if (argv[n].v_size != argsz[n])
925 goto out_free;
926
927 if (argv[n].v_nmembs > nsegs * nilfs->ns_blocks_per_segment)
928 goto out_free;
929
930 if (argv[n].v_nmembs >= UINT_MAX / argv[n].v_size)
931 goto out_free;
932
933 len = argv[n].v_size * argv[n].v_nmembs;
934 base = (void __user *)(unsigned long)argv[n].v_base;
935 if (len == 0) {
936 kbufs[n] = NULL;
937 continue;
938 }
939
940 kbufs[n] = vmalloc(len);
941 if (!kbufs[n]) {
942 ret = -ENOMEM;
943 goto out_free;
944 }
945 if (copy_from_user(kbufs[n], base, len)) {
946 ret = -EFAULT;
947 vfree(kbufs[n]);
948 goto out_free;
949 }
950 }
951
952 /*
953 * nilfs_ioctl_move_blocks() will call nilfs_iget_for_gc(),
954 * which will operates an inode list without blocking.
955 * To protect the list from concurrent operations,
956 * nilfs_ioctl_move_blocks should be atomic operation.
957 */
958 if (test_and_set_bit(THE_NILFS_GC_RUNNING, &nilfs->ns_flags)) {
959 ret = -EBUSY;
960 goto out_free;
961 }
962
963 ret = nilfs_ioctl_move_blocks(inode->i_sb, &argv[0], kbufs[0]);
964 if (ret < 0) {
965 nilfs_msg(inode->i_sb, KERN_ERR,
966 "error %d preparing GC: cannot read source blocks",
967 ret);
968 } else {
969 if (nilfs_sb_need_update(nilfs))
970 set_nilfs_discontinued(nilfs);
971 ret = nilfs_clean_segments(inode->i_sb, argv, kbufs);
972 }
973
974 nilfs_remove_all_gcinodes(nilfs);
975 clear_nilfs_gc_running(nilfs);
976
977 out_free:
978 while (--n >= 0)
979 vfree(kbufs[n]);
980 kfree(kbufs[4]);
981 out:
982 mnt_drop_write_file(filp);
983 return ret;
984 }
985
986 /**
987 * nilfs_ioctl_sync - make a checkpoint
988 * @inode: inode object
989 * @filp: file object
990 * @cmd: ioctl's request code
991 * @argp: pointer on argument from userspace
992 *
993 * Description: nilfs_ioctl_sync() function constructs a logical segment
994 * for checkpointing. This function guarantees that all modified data
995 * and metadata are written out to the device when it successfully
996 * returned.
997 *
998 * Return Value: On success, 0 is retured. On errors, one of the following
999 * negative error code is returned.
1000 *
1001 * %-EROFS - Read only filesystem.
1002 *
1003 * %-EIO - I/O error
1004 *
1005 * %-ENOSPC - No space left on device (only in a panic state).
1006 *
1007 * %-ERESTARTSYS - Interrupted.
1008 *
1009 * %-ENOMEM - Insufficient memory available.
1010 *
1011 * %-EFAULT - Failure during execution of requested operation.
1012 */
1013 static int nilfs_ioctl_sync(struct inode *inode, struct file *filp,
1014 unsigned int cmd, void __user *argp)
1015 {
1016 __u64 cno;
1017 int ret;
1018 struct the_nilfs *nilfs;
1019
1020 ret = nilfs_construct_segment(inode->i_sb);
1021 if (ret < 0)
1022 return ret;
1023
1024 nilfs = inode->i_sb->s_fs_info;
1025 ret = nilfs_flush_device(nilfs);
1026 if (ret < 0)
1027 return ret;
1028
1029 if (argp != NULL) {
1030 down_read(&nilfs->ns_segctor_sem);
1031 cno = nilfs->ns_cno - 1;
1032 up_read(&nilfs->ns_segctor_sem);
1033 if (copy_to_user(argp, &cno, sizeof(cno)))
1034 return -EFAULT;
1035 }
1036 return 0;
1037 }
1038
1039 /**
1040 * nilfs_ioctl_resize - resize NILFS2 volume
1041 * @inode: inode object
1042 * @filp: file object
1043 * @argp: pointer on argument from userspace
1044 *
1045 * Return Value: On success, 0 is returned or error code, otherwise.
1046 */
1047 static int nilfs_ioctl_resize(struct inode *inode, struct file *filp,
1048 void __user *argp)
1049 {
1050 __u64 newsize;
1051 int ret = -EPERM;
1052
1053 if (!capable(CAP_SYS_ADMIN))
1054 goto out;
1055
1056 ret = mnt_want_write_file(filp);
1057 if (ret)
1058 goto out;
1059
1060 ret = -EFAULT;
1061 if (copy_from_user(&newsize, argp, sizeof(newsize)))
1062 goto out_drop_write;
1063
1064 ret = nilfs_resize_fs(inode->i_sb, newsize);
1065
1066 out_drop_write:
1067 mnt_drop_write_file(filp);
1068 out:
1069 return ret;
1070 }
1071
1072 /**
1073 * nilfs_ioctl_trim_fs() - trim ioctl handle function
1074 * @inode: inode object
1075 * @argp: pointer on argument from userspace
1076 *
1077 * Decription: nilfs_ioctl_trim_fs is the FITRIM ioctl handle function. It
1078 * checks the arguments from userspace and calls nilfs_sufile_trim_fs, which
1079 * performs the actual trim operation.
1080 *
1081 * Return Value: On success, 0 is returned or negative error code, otherwise.
1082 */
1083 static int nilfs_ioctl_trim_fs(struct inode *inode, void __user *argp)
1084 {
1085 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1086 struct request_queue *q = bdev_get_queue(nilfs->ns_bdev);
1087 struct fstrim_range range;
1088 int ret;
1089
1090 if (!capable(CAP_SYS_ADMIN))
1091 return -EPERM;
1092
1093 if (!blk_queue_discard(q))
1094 return -EOPNOTSUPP;
1095
1096 if (copy_from_user(&range, argp, sizeof(range)))
1097 return -EFAULT;
1098
1099 range.minlen = max_t(u64, range.minlen, q->limits.discard_granularity);
1100
1101 down_read(&nilfs->ns_segctor_sem);
1102 ret = nilfs_sufile_trim_fs(nilfs->ns_sufile, &range);
1103 up_read(&nilfs->ns_segctor_sem);
1104
1105 if (ret < 0)
1106 return ret;
1107
1108 if (copy_to_user(argp, &range, sizeof(range)))
1109 return -EFAULT;
1110
1111 return 0;
1112 }
1113
1114 /**
1115 * nilfs_ioctl_set_alloc_range - limit range of segments to be allocated
1116 * @inode: inode object
1117 * @argp: pointer on argument from userspace
1118 *
1119 * Decription: nilfs_ioctl_set_alloc_range() function defines lower limit
1120 * of segments in bytes and upper limit of segments in bytes.
1121 * The NILFS_IOCTL_SET_ALLOC_RANGE is used by nilfs_resize utility.
1122 *
1123 * Return Value: On success, 0 is returned or error code, otherwise.
1124 */
1125 static int nilfs_ioctl_set_alloc_range(struct inode *inode, void __user *argp)
1126 {
1127 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1128 __u64 range[2];
1129 __u64 minseg, maxseg;
1130 unsigned long segbytes;
1131 int ret = -EPERM;
1132
1133 if (!capable(CAP_SYS_ADMIN))
1134 goto out;
1135
1136 ret = -EFAULT;
1137 if (copy_from_user(range, argp, sizeof(__u64[2])))
1138 goto out;
1139
1140 ret = -ERANGE;
1141 if (range[1] > i_size_read(inode->i_sb->s_bdev->bd_inode))
1142 goto out;
1143
1144 segbytes = nilfs->ns_blocks_per_segment * nilfs->ns_blocksize;
1145
1146 minseg = range[0] + segbytes - 1;
1147 do_div(minseg, segbytes);
1148 maxseg = NILFS_SB2_OFFSET_BYTES(range[1]);
1149 do_div(maxseg, segbytes);
1150 maxseg--;
1151
1152 ret = nilfs_sufile_set_alloc_range(nilfs->ns_sufile, minseg, maxseg);
1153 out:
1154 return ret;
1155 }
1156
1157 /**
1158 * nilfs_ioctl_get_info - wrapping function of get metadata info
1159 * @inode: inode object
1160 * @filp: file object
1161 * @cmd: ioctl's request code
1162 * @argp: pointer on argument from userspace
1163 * @membsz: size of an item in bytes
1164 * @dofunc: concrete function of getting metadata info
1165 *
1166 * Description: nilfs_ioctl_get_info() gets metadata info by means of
1167 * calling dofunc() function.
1168 *
1169 * Return Value: On success, 0 is returned and requested metadata info
1170 * is copied into userspace. On error, one of the following
1171 * negative error codes is returned.
1172 *
1173 * %-EINVAL - Invalid arguments from userspace.
1174 *
1175 * %-ENOMEM - Insufficient amount of memory available.
1176 *
1177 * %-EFAULT - Failure during execution of requested operation.
1178 */
1179 static int nilfs_ioctl_get_info(struct inode *inode, struct file *filp,
1180 unsigned int cmd, void __user *argp,
1181 size_t membsz,
1182 ssize_t (*dofunc)(struct the_nilfs *,
1183 __u64 *, int,
1184 void *, size_t, size_t))
1185
1186 {
1187 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1188 struct nilfs_argv argv;
1189 int ret;
1190
1191 if (copy_from_user(&argv, argp, sizeof(argv)))
1192 return -EFAULT;
1193
1194 if (argv.v_size < membsz)
1195 return -EINVAL;
1196
1197 ret = nilfs_ioctl_wrap_copy(nilfs, &argv, _IOC_DIR(cmd), dofunc);
1198 if (ret < 0)
1199 return ret;
1200
1201 if (copy_to_user(argp, &argv, sizeof(argv)))
1202 ret = -EFAULT;
1203 return ret;
1204 }
1205
1206 /**
1207 * nilfs_ioctl_set_suinfo - set segment usage info
1208 * @inode: inode object
1209 * @filp: file object
1210 * @cmd: ioctl's request code
1211 * @argp: pointer on argument from userspace
1212 *
1213 * Description: Expects an array of nilfs_suinfo_update structures
1214 * encapsulated in nilfs_argv and updates the segment usage info
1215 * according to the flags in nilfs_suinfo_update.
1216 *
1217 * Return Value: On success, 0 is returned. On error, one of the
1218 * following negative error codes is returned.
1219 *
1220 * %-EPERM - Not enough permissions
1221 *
1222 * %-EFAULT - Error copying input data
1223 *
1224 * %-EIO - I/O error.
1225 *
1226 * %-ENOMEM - Insufficient amount of memory available.
1227 *
1228 * %-EINVAL - Invalid values in input (segment number, flags or nblocks)
1229 */
1230 static int nilfs_ioctl_set_suinfo(struct inode *inode, struct file *filp,
1231 unsigned int cmd, void __user *argp)
1232 {
1233 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1234 struct nilfs_transaction_info ti;
1235 struct nilfs_argv argv;
1236 size_t len;
1237 void __user *base;
1238 void *kbuf;
1239 int ret;
1240
1241 if (!capable(CAP_SYS_ADMIN))
1242 return -EPERM;
1243
1244 ret = mnt_want_write_file(filp);
1245 if (ret)
1246 return ret;
1247
1248 ret = -EFAULT;
1249 if (copy_from_user(&argv, argp, sizeof(argv)))
1250 goto out;
1251
1252 ret = -EINVAL;
1253 if (argv.v_size < sizeof(struct nilfs_suinfo_update))
1254 goto out;
1255
1256 if (argv.v_nmembs > nilfs->ns_nsegments)
1257 goto out;
1258
1259 if (argv.v_nmembs >= UINT_MAX / argv.v_size)
1260 goto out;
1261
1262 len = argv.v_size * argv.v_nmembs;
1263 if (!len) {
1264 ret = 0;
1265 goto out;
1266 }
1267
1268 base = (void __user *)(unsigned long)argv.v_base;
1269 kbuf = vmalloc(len);
1270 if (!kbuf) {
1271 ret = -ENOMEM;
1272 goto out;
1273 }
1274
1275 if (copy_from_user(kbuf, base, len)) {
1276 ret = -EFAULT;
1277 goto out_free;
1278 }
1279
1280 nilfs_transaction_begin(inode->i_sb, &ti, 0);
1281 ret = nilfs_sufile_set_suinfo(nilfs->ns_sufile, kbuf, argv.v_size,
1282 argv.v_nmembs);
1283 if (unlikely(ret < 0))
1284 nilfs_transaction_abort(inode->i_sb);
1285 else
1286 nilfs_transaction_commit(inode->i_sb); /* never fails */
1287
1288 out_free:
1289 vfree(kbuf);
1290 out:
1291 mnt_drop_write_file(filp);
1292 return ret;
1293 }
1294
1295 long nilfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1296 {
1297 struct inode *inode = file_inode(filp);
1298 void __user *argp = (void __user *)arg;
1299
1300 switch (cmd) {
1301 case FS_IOC_GETFLAGS:
1302 return nilfs_ioctl_getflags(inode, argp);
1303 case FS_IOC_SETFLAGS:
1304 return nilfs_ioctl_setflags(inode, filp, argp);
1305 case FS_IOC_GETVERSION:
1306 return nilfs_ioctl_getversion(inode, argp);
1307 case NILFS_IOCTL_CHANGE_CPMODE:
1308 return nilfs_ioctl_change_cpmode(inode, filp, cmd, argp);
1309 case NILFS_IOCTL_DELETE_CHECKPOINT:
1310 return nilfs_ioctl_delete_checkpoint(inode, filp, cmd, argp);
1311 case NILFS_IOCTL_GET_CPINFO:
1312 return nilfs_ioctl_get_info(inode, filp, cmd, argp,
1313 sizeof(struct nilfs_cpinfo),
1314 nilfs_ioctl_do_get_cpinfo);
1315 case NILFS_IOCTL_GET_CPSTAT:
1316 return nilfs_ioctl_get_cpstat(inode, filp, cmd, argp);
1317 case NILFS_IOCTL_GET_SUINFO:
1318 return nilfs_ioctl_get_info(inode, filp, cmd, argp,
1319 sizeof(struct nilfs_suinfo),
1320 nilfs_ioctl_do_get_suinfo);
1321 case NILFS_IOCTL_SET_SUINFO:
1322 return nilfs_ioctl_set_suinfo(inode, filp, cmd, argp);
1323 case NILFS_IOCTL_GET_SUSTAT:
1324 return nilfs_ioctl_get_sustat(inode, filp, cmd, argp);
1325 case NILFS_IOCTL_GET_VINFO:
1326 return nilfs_ioctl_get_info(inode, filp, cmd, argp,
1327 sizeof(struct nilfs_vinfo),
1328 nilfs_ioctl_do_get_vinfo);
1329 case NILFS_IOCTL_GET_BDESCS:
1330 return nilfs_ioctl_get_bdescs(inode, filp, cmd, argp);
1331 case NILFS_IOCTL_CLEAN_SEGMENTS:
1332 return nilfs_ioctl_clean_segments(inode, filp, cmd, argp);
1333 case NILFS_IOCTL_SYNC:
1334 return nilfs_ioctl_sync(inode, filp, cmd, argp);
1335 case NILFS_IOCTL_RESIZE:
1336 return nilfs_ioctl_resize(inode, filp, argp);
1337 case NILFS_IOCTL_SET_ALLOC_RANGE:
1338 return nilfs_ioctl_set_alloc_range(inode, argp);
1339 case FITRIM:
1340 return nilfs_ioctl_trim_fs(inode, argp);
1341 default:
1342 return -ENOTTY;
1343 }
1344 }
1345
1346 #ifdef CONFIG_COMPAT
1347 long nilfs_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1348 {
1349 switch (cmd) {
1350 case FS_IOC32_GETFLAGS:
1351 cmd = FS_IOC_GETFLAGS;
1352 break;
1353 case FS_IOC32_SETFLAGS:
1354 cmd = FS_IOC_SETFLAGS;
1355 break;
1356 case FS_IOC32_GETVERSION:
1357 cmd = FS_IOC_GETVERSION;
1358 break;
1359 case NILFS_IOCTL_CHANGE_CPMODE:
1360 case NILFS_IOCTL_DELETE_CHECKPOINT:
1361 case NILFS_IOCTL_GET_CPINFO:
1362 case NILFS_IOCTL_GET_CPSTAT:
1363 case NILFS_IOCTL_GET_SUINFO:
1364 case NILFS_IOCTL_SET_SUINFO:
1365 case NILFS_IOCTL_GET_SUSTAT:
1366 case NILFS_IOCTL_GET_VINFO:
1367 case NILFS_IOCTL_GET_BDESCS:
1368 case NILFS_IOCTL_CLEAN_SEGMENTS:
1369 case NILFS_IOCTL_SYNC:
1370 case NILFS_IOCTL_RESIZE:
1371 case NILFS_IOCTL_SET_ALLOC_RANGE:
1372 break;
1373 default:
1374 return -ENOIOCTLCMD;
1375 }
1376 return nilfs_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
1377 }
1378 #endif
This page took 0.064918 seconds and 4 git commands to generate.