nilfs2: remove FSF mailing address from GPL notices
[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 <koji@osrg.net>.
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 printk(KERN_CRIT
588 "%s: invalid virtual block address (%s): "
589 "ino=%llu, cno=%llu, offset=%llu, "
590 "blocknr=%llu, vblocknr=%llu\n",
591 __func__, vdesc->vd_flags ? "node" : "data",
592 (unsigned long long)vdesc->vd_ino,
593 (unsigned long long)vdesc->vd_cno,
594 (unsigned long long)vdesc->vd_offset,
595 (unsigned long long)vdesc->vd_blocknr,
596 (unsigned long long)vdesc->vd_vblocknr);
597 return ret;
598 }
599 if (unlikely(!list_empty(&bh->b_assoc_buffers))) {
600 printk(KERN_CRIT "%s: conflicting %s buffer: ino=%llu, "
601 "cno=%llu, offset=%llu, blocknr=%llu, vblocknr=%llu\n",
602 __func__, vdesc->vd_flags ? "node" : "data",
603 (unsigned long long)vdesc->vd_ino,
604 (unsigned long long)vdesc->vd_cno,
605 (unsigned long long)vdesc->vd_offset,
606 (unsigned long long)vdesc->vd_blocknr,
607 (unsigned long long)vdesc->vd_vblocknr);
608 brelse(bh);
609 return -EEXIST;
610 }
611 list_add_tail(&bh->b_assoc_buffers, buffers);
612 return 0;
613 }
614
615 /**
616 * nilfs_ioctl_move_blocks - move valid inode's blocks during garbage collection
617 * @sb: superblock object
618 * @argv: vector of arguments from userspace
619 * @buf: array of nilfs_vdesc structures
620 *
621 * Description: nilfs_ioctl_move_blocks() function reads valid data/node
622 * blocks that garbage collector specified with the array of nilfs_vdesc
623 * structures and stores them into page caches of GC inodes.
624 *
625 * Return Value: Number of processed nilfs_vdesc structures or
626 * error code, otherwise.
627 */
628 static int nilfs_ioctl_move_blocks(struct super_block *sb,
629 struct nilfs_argv *argv, void *buf)
630 {
631 size_t nmembs = argv->v_nmembs;
632 struct the_nilfs *nilfs = sb->s_fs_info;
633 struct inode *inode;
634 struct nilfs_vdesc *vdesc;
635 struct buffer_head *bh, *n;
636 LIST_HEAD(buffers);
637 ino_t ino;
638 __u64 cno;
639 int i, ret;
640
641 for (i = 0, vdesc = buf; i < nmembs; ) {
642 ino = vdesc->vd_ino;
643 cno = vdesc->vd_cno;
644 inode = nilfs_iget_for_gc(sb, ino, cno);
645 if (IS_ERR(inode)) {
646 ret = PTR_ERR(inode);
647 goto failed;
648 }
649 if (list_empty(&NILFS_I(inode)->i_dirty)) {
650 /*
651 * Add the inode to GC inode list. Garbage Collection
652 * is serialized and no two processes manipulate the
653 * list simultaneously.
654 */
655 igrab(inode);
656 list_add(&NILFS_I(inode)->i_dirty,
657 &nilfs->ns_gc_inodes);
658 }
659
660 do {
661 ret = nilfs_ioctl_move_inode_block(inode, vdesc,
662 &buffers);
663 if (unlikely(ret < 0)) {
664 iput(inode);
665 goto failed;
666 }
667 vdesc++;
668 } while (++i < nmembs &&
669 vdesc->vd_ino == ino && vdesc->vd_cno == cno);
670
671 iput(inode); /* The inode still remains in GC inode list */
672 }
673
674 list_for_each_entry_safe(bh, n, &buffers, b_assoc_buffers) {
675 ret = nilfs_gccache_wait_and_mark_dirty(bh);
676 if (unlikely(ret < 0)) {
677 WARN_ON(ret == -EEXIST);
678 goto failed;
679 }
680 list_del_init(&bh->b_assoc_buffers);
681 brelse(bh);
682 }
683 return nmembs;
684
685 failed:
686 list_for_each_entry_safe(bh, n, &buffers, b_assoc_buffers) {
687 list_del_init(&bh->b_assoc_buffers);
688 brelse(bh);
689 }
690 return ret;
691 }
692
693 /**
694 * nilfs_ioctl_delete_checkpoints - delete checkpoints
695 * @nilfs: nilfs object
696 * @argv: vector of arguments from userspace
697 * @buf: array of periods of checkpoints numbers
698 *
699 * Description: nilfs_ioctl_delete_checkpoints() function deletes checkpoints
700 * in the period from p_start to p_end, excluding p_end itself. The checkpoints
701 * which have been already deleted are ignored.
702 *
703 * Return Value: Number of processed nilfs_period structures or
704 * error code, otherwise.
705 *
706 * %-EIO - I/O error.
707 *
708 * %-ENOMEM - Insufficient amount of memory available.
709 *
710 * %-EINVAL - invalid checkpoints.
711 */
712 static int nilfs_ioctl_delete_checkpoints(struct the_nilfs *nilfs,
713 struct nilfs_argv *argv, void *buf)
714 {
715 size_t nmembs = argv->v_nmembs;
716 struct inode *cpfile = nilfs->ns_cpfile;
717 struct nilfs_period *periods = buf;
718 int ret, i;
719
720 for (i = 0; i < nmembs; i++) {
721 ret = nilfs_cpfile_delete_checkpoints(
722 cpfile, periods[i].p_start, periods[i].p_end);
723 if (ret < 0)
724 return ret;
725 }
726 return nmembs;
727 }
728
729 /**
730 * nilfs_ioctl_free_vblocknrs - free virtual block numbers
731 * @nilfs: nilfs object
732 * @argv: vector of arguments from userspace
733 * @buf: array of virtual block numbers
734 *
735 * Description: nilfs_ioctl_free_vblocknrs() function frees
736 * the virtual block numbers specified by @buf and @argv->v_nmembs.
737 *
738 * Return Value: Number of processed virtual block numbers or
739 * error code, otherwise.
740 *
741 * %-EIO - I/O error.
742 *
743 * %-ENOMEM - Insufficient amount of memory available.
744 *
745 * %-ENOENT - The virtual block number have not been allocated.
746 */
747 static int nilfs_ioctl_free_vblocknrs(struct the_nilfs *nilfs,
748 struct nilfs_argv *argv, void *buf)
749 {
750 size_t nmembs = argv->v_nmembs;
751 int ret;
752
753 ret = nilfs_dat_freev(nilfs->ns_dat, buf, nmembs);
754
755 return (ret < 0) ? ret : nmembs;
756 }
757
758 /**
759 * nilfs_ioctl_mark_blocks_dirty - mark blocks dirty
760 * @nilfs: nilfs object
761 * @argv: vector of arguments from userspace
762 * @buf: array of block descriptors
763 *
764 * Description: nilfs_ioctl_mark_blocks_dirty() function marks
765 * metadata file or data blocks as dirty.
766 *
767 * Return Value: Number of processed block descriptors or
768 * error code, otherwise.
769 *
770 * %-ENOMEM - Insufficient memory available.
771 *
772 * %-EIO - I/O error
773 *
774 * %-ENOENT - the specified block does not exist (hole block)
775 */
776 static int nilfs_ioctl_mark_blocks_dirty(struct the_nilfs *nilfs,
777 struct nilfs_argv *argv, void *buf)
778 {
779 size_t nmembs = argv->v_nmembs;
780 struct nilfs_bmap *bmap = NILFS_I(nilfs->ns_dat)->i_bmap;
781 struct nilfs_bdesc *bdescs = buf;
782 int ret, i;
783
784 for (i = 0; i < nmembs; i++) {
785 /* XXX: use macro or inline func to check liveness */
786 ret = nilfs_bmap_lookup_at_level(bmap,
787 bdescs[i].bd_offset,
788 bdescs[i].bd_level + 1,
789 &bdescs[i].bd_blocknr);
790 if (ret < 0) {
791 if (ret != -ENOENT)
792 return ret;
793 bdescs[i].bd_blocknr = 0;
794 }
795 if (bdescs[i].bd_blocknr != bdescs[i].bd_oblocknr)
796 /* skip dead block */
797 continue;
798 if (bdescs[i].bd_level == 0) {
799 ret = nilfs_mdt_mark_block_dirty(nilfs->ns_dat,
800 bdescs[i].bd_offset);
801 if (ret < 0) {
802 WARN_ON(ret == -ENOENT);
803 return ret;
804 }
805 } else {
806 ret = nilfs_bmap_mark(bmap, bdescs[i].bd_offset,
807 bdescs[i].bd_level);
808 if (ret < 0) {
809 WARN_ON(ret == -ENOENT);
810 return ret;
811 }
812 }
813 }
814 return nmembs;
815 }
816
817 int nilfs_ioctl_prepare_clean_segments(struct the_nilfs *nilfs,
818 struct nilfs_argv *argv, void **kbufs)
819 {
820 const char *msg;
821 int ret;
822
823 ret = nilfs_ioctl_delete_checkpoints(nilfs, &argv[1], kbufs[1]);
824 if (ret < 0) {
825 /*
826 * can safely abort because checkpoints can be removed
827 * independently.
828 */
829 msg = "cannot delete checkpoints";
830 goto failed;
831 }
832 ret = nilfs_ioctl_free_vblocknrs(nilfs, &argv[2], kbufs[2]);
833 if (ret < 0) {
834 /*
835 * can safely abort because DAT file is updated atomically
836 * using a copy-on-write technique.
837 */
838 msg = "cannot delete virtual blocks from DAT file";
839 goto failed;
840 }
841 ret = nilfs_ioctl_mark_blocks_dirty(nilfs, &argv[3], kbufs[3]);
842 if (ret < 0) {
843 /*
844 * can safely abort because the operation is nondestructive.
845 */
846 msg = "cannot mark copying blocks dirty";
847 goto failed;
848 }
849 return 0;
850
851 failed:
852 printk(KERN_ERR "NILFS: GC failed during preparation: %s: err=%d\n",
853 msg, ret);
854 return ret;
855 }
856
857 /**
858 * nilfs_ioctl_clean_segments - clean segments
859 * @inode: inode object
860 * @filp: file object
861 * @cmd: ioctl's request code
862 * @argp: pointer on argument from userspace
863 *
864 * Description: nilfs_ioctl_clean_segments() function makes garbage
865 * collection operation in the environment of requested parameters
866 * from userspace. The NILFS_IOCTL_CLEAN_SEGMENTS ioctl is used by
867 * nilfs_cleanerd daemon.
868 *
869 * Return Value: On success, 0 is returned or error code, otherwise.
870 */
871 static int nilfs_ioctl_clean_segments(struct inode *inode, struct file *filp,
872 unsigned int cmd, void __user *argp)
873 {
874 struct nilfs_argv argv[5];
875 static const size_t argsz[5] = {
876 sizeof(struct nilfs_vdesc),
877 sizeof(struct nilfs_period),
878 sizeof(__u64),
879 sizeof(struct nilfs_bdesc),
880 sizeof(__u64),
881 };
882 void __user *base;
883 void *kbufs[5];
884 struct the_nilfs *nilfs;
885 size_t len, nsegs;
886 int n, ret;
887
888 if (!capable(CAP_SYS_ADMIN))
889 return -EPERM;
890
891 ret = mnt_want_write_file(filp);
892 if (ret)
893 return ret;
894
895 ret = -EFAULT;
896 if (copy_from_user(argv, argp, sizeof(argv)))
897 goto out;
898
899 ret = -EINVAL;
900 nsegs = argv[4].v_nmembs;
901 if (argv[4].v_size != argsz[4])
902 goto out;
903 if (nsegs > UINT_MAX / sizeof(__u64))
904 goto out;
905
906 /*
907 * argv[4] points to segment numbers this ioctl cleans. We
908 * use kmalloc() for its buffer because memory used for the
909 * segment numbers is enough small.
910 */
911 kbufs[4] = memdup_user((void __user *)(unsigned long)argv[4].v_base,
912 nsegs * sizeof(__u64));
913 if (IS_ERR(kbufs[4])) {
914 ret = PTR_ERR(kbufs[4]);
915 goto out;
916 }
917 nilfs = inode->i_sb->s_fs_info;
918
919 for (n = 0; n < 4; n++) {
920 ret = -EINVAL;
921 if (argv[n].v_size != argsz[n])
922 goto out_free;
923
924 if (argv[n].v_nmembs > nsegs * nilfs->ns_blocks_per_segment)
925 goto out_free;
926
927 if (argv[n].v_nmembs >= UINT_MAX / argv[n].v_size)
928 goto out_free;
929
930 len = argv[n].v_size * argv[n].v_nmembs;
931 base = (void __user *)(unsigned long)argv[n].v_base;
932 if (len == 0) {
933 kbufs[n] = NULL;
934 continue;
935 }
936
937 kbufs[n] = vmalloc(len);
938 if (!kbufs[n]) {
939 ret = -ENOMEM;
940 goto out_free;
941 }
942 if (copy_from_user(kbufs[n], base, len)) {
943 ret = -EFAULT;
944 vfree(kbufs[n]);
945 goto out_free;
946 }
947 }
948
949 /*
950 * nilfs_ioctl_move_blocks() will call nilfs_iget_for_gc(),
951 * which will operates an inode list without blocking.
952 * To protect the list from concurrent operations,
953 * nilfs_ioctl_move_blocks should be atomic operation.
954 */
955 if (test_and_set_bit(THE_NILFS_GC_RUNNING, &nilfs->ns_flags)) {
956 ret = -EBUSY;
957 goto out_free;
958 }
959
960 ret = nilfs_ioctl_move_blocks(inode->i_sb, &argv[0], kbufs[0]);
961 if (ret < 0)
962 printk(KERN_ERR "NILFS: GC failed during preparation: "
963 "cannot read source blocks: err=%d\n", ret);
964 else {
965 if (nilfs_sb_need_update(nilfs))
966 set_nilfs_discontinued(nilfs);
967 ret = nilfs_clean_segments(inode->i_sb, argv, kbufs);
968 }
969
970 nilfs_remove_all_gcinodes(nilfs);
971 clear_nilfs_gc_running(nilfs);
972
973 out_free:
974 while (--n >= 0)
975 vfree(kbufs[n]);
976 kfree(kbufs[4]);
977 out:
978 mnt_drop_write_file(filp);
979 return ret;
980 }
981
982 /**
983 * nilfs_ioctl_sync - make a checkpoint
984 * @inode: inode object
985 * @filp: file object
986 * @cmd: ioctl's request code
987 * @argp: pointer on argument from userspace
988 *
989 * Description: nilfs_ioctl_sync() function constructs a logical segment
990 * for checkpointing. This function guarantees that all modified data
991 * and metadata are written out to the device when it successfully
992 * returned.
993 *
994 * Return Value: On success, 0 is retured. On errors, one of the following
995 * negative error code is returned.
996 *
997 * %-EROFS - Read only filesystem.
998 *
999 * %-EIO - I/O error
1000 *
1001 * %-ENOSPC - No space left on device (only in a panic state).
1002 *
1003 * %-ERESTARTSYS - Interrupted.
1004 *
1005 * %-ENOMEM - Insufficient memory available.
1006 *
1007 * %-EFAULT - Failure during execution of requested operation.
1008 */
1009 static int nilfs_ioctl_sync(struct inode *inode, struct file *filp,
1010 unsigned int cmd, void __user *argp)
1011 {
1012 __u64 cno;
1013 int ret;
1014 struct the_nilfs *nilfs;
1015
1016 ret = nilfs_construct_segment(inode->i_sb);
1017 if (ret < 0)
1018 return ret;
1019
1020 nilfs = inode->i_sb->s_fs_info;
1021 ret = nilfs_flush_device(nilfs);
1022 if (ret < 0)
1023 return ret;
1024
1025 if (argp != NULL) {
1026 down_read(&nilfs->ns_segctor_sem);
1027 cno = nilfs->ns_cno - 1;
1028 up_read(&nilfs->ns_segctor_sem);
1029 if (copy_to_user(argp, &cno, sizeof(cno)))
1030 return -EFAULT;
1031 }
1032 return 0;
1033 }
1034
1035 /**
1036 * nilfs_ioctl_resize - resize NILFS2 volume
1037 * @inode: inode object
1038 * @filp: file object
1039 * @argp: pointer on argument from userspace
1040 *
1041 * Return Value: On success, 0 is returned or error code, otherwise.
1042 */
1043 static int nilfs_ioctl_resize(struct inode *inode, struct file *filp,
1044 void __user *argp)
1045 {
1046 __u64 newsize;
1047 int ret = -EPERM;
1048
1049 if (!capable(CAP_SYS_ADMIN))
1050 goto out;
1051
1052 ret = mnt_want_write_file(filp);
1053 if (ret)
1054 goto out;
1055
1056 ret = -EFAULT;
1057 if (copy_from_user(&newsize, argp, sizeof(newsize)))
1058 goto out_drop_write;
1059
1060 ret = nilfs_resize_fs(inode->i_sb, newsize);
1061
1062 out_drop_write:
1063 mnt_drop_write_file(filp);
1064 out:
1065 return ret;
1066 }
1067
1068 /**
1069 * nilfs_ioctl_trim_fs() - trim ioctl handle function
1070 * @inode: inode object
1071 * @argp: pointer on argument from userspace
1072 *
1073 * Decription: nilfs_ioctl_trim_fs is the FITRIM ioctl handle function. It
1074 * checks the arguments from userspace and calls nilfs_sufile_trim_fs, which
1075 * performs the actual trim operation.
1076 *
1077 * Return Value: On success, 0 is returned or negative error code, otherwise.
1078 */
1079 static int nilfs_ioctl_trim_fs(struct inode *inode, void __user *argp)
1080 {
1081 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1082 struct request_queue *q = bdev_get_queue(nilfs->ns_bdev);
1083 struct fstrim_range range;
1084 int ret;
1085
1086 if (!capable(CAP_SYS_ADMIN))
1087 return -EPERM;
1088
1089 if (!blk_queue_discard(q))
1090 return -EOPNOTSUPP;
1091
1092 if (copy_from_user(&range, argp, sizeof(range)))
1093 return -EFAULT;
1094
1095 range.minlen = max_t(u64, range.minlen, q->limits.discard_granularity);
1096
1097 down_read(&nilfs->ns_segctor_sem);
1098 ret = nilfs_sufile_trim_fs(nilfs->ns_sufile, &range);
1099 up_read(&nilfs->ns_segctor_sem);
1100
1101 if (ret < 0)
1102 return ret;
1103
1104 if (copy_to_user(argp, &range, sizeof(range)))
1105 return -EFAULT;
1106
1107 return 0;
1108 }
1109
1110 /**
1111 * nilfs_ioctl_set_alloc_range - limit range of segments to be allocated
1112 * @inode: inode object
1113 * @argp: pointer on argument from userspace
1114 *
1115 * Decription: nilfs_ioctl_set_alloc_range() function defines lower limit
1116 * of segments in bytes and upper limit of segments in bytes.
1117 * The NILFS_IOCTL_SET_ALLOC_RANGE is used by nilfs_resize utility.
1118 *
1119 * Return Value: On success, 0 is returned or error code, otherwise.
1120 */
1121 static int nilfs_ioctl_set_alloc_range(struct inode *inode, void __user *argp)
1122 {
1123 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1124 __u64 range[2];
1125 __u64 minseg, maxseg;
1126 unsigned long segbytes;
1127 int ret = -EPERM;
1128
1129 if (!capable(CAP_SYS_ADMIN))
1130 goto out;
1131
1132 ret = -EFAULT;
1133 if (copy_from_user(range, argp, sizeof(__u64[2])))
1134 goto out;
1135
1136 ret = -ERANGE;
1137 if (range[1] > i_size_read(inode->i_sb->s_bdev->bd_inode))
1138 goto out;
1139
1140 segbytes = nilfs->ns_blocks_per_segment * nilfs->ns_blocksize;
1141
1142 minseg = range[0] + segbytes - 1;
1143 do_div(minseg, segbytes);
1144 maxseg = NILFS_SB2_OFFSET_BYTES(range[1]);
1145 do_div(maxseg, segbytes);
1146 maxseg--;
1147
1148 ret = nilfs_sufile_set_alloc_range(nilfs->ns_sufile, minseg, maxseg);
1149 out:
1150 return ret;
1151 }
1152
1153 /**
1154 * nilfs_ioctl_get_info - wrapping function of get metadata info
1155 * @inode: inode object
1156 * @filp: file object
1157 * @cmd: ioctl's request code
1158 * @argp: pointer on argument from userspace
1159 * @membsz: size of an item in bytes
1160 * @dofunc: concrete function of getting metadata info
1161 *
1162 * Description: nilfs_ioctl_get_info() gets metadata info by means of
1163 * calling dofunc() function.
1164 *
1165 * Return Value: On success, 0 is returned and requested metadata info
1166 * is copied into userspace. On error, one of the following
1167 * negative error codes is returned.
1168 *
1169 * %-EINVAL - Invalid arguments from userspace.
1170 *
1171 * %-ENOMEM - Insufficient amount of memory available.
1172 *
1173 * %-EFAULT - Failure during execution of requested operation.
1174 */
1175 static int nilfs_ioctl_get_info(struct inode *inode, struct file *filp,
1176 unsigned int cmd, void __user *argp,
1177 size_t membsz,
1178 ssize_t (*dofunc)(struct the_nilfs *,
1179 __u64 *, int,
1180 void *, size_t, size_t))
1181
1182 {
1183 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1184 struct nilfs_argv argv;
1185 int ret;
1186
1187 if (copy_from_user(&argv, argp, sizeof(argv)))
1188 return -EFAULT;
1189
1190 if (argv.v_size < membsz)
1191 return -EINVAL;
1192
1193 ret = nilfs_ioctl_wrap_copy(nilfs, &argv, _IOC_DIR(cmd), dofunc);
1194 if (ret < 0)
1195 return ret;
1196
1197 if (copy_to_user(argp, &argv, sizeof(argv)))
1198 ret = -EFAULT;
1199 return ret;
1200 }
1201
1202 /**
1203 * nilfs_ioctl_set_suinfo - set segment usage info
1204 * @inode: inode object
1205 * @filp: file object
1206 * @cmd: ioctl's request code
1207 * @argp: pointer on argument from userspace
1208 *
1209 * Description: Expects an array of nilfs_suinfo_update structures
1210 * encapsulated in nilfs_argv and updates the segment usage info
1211 * according to the flags in nilfs_suinfo_update.
1212 *
1213 * Return Value: On success, 0 is returned. On error, one of the
1214 * following negative error codes is returned.
1215 *
1216 * %-EPERM - Not enough permissions
1217 *
1218 * %-EFAULT - Error copying input data
1219 *
1220 * %-EIO - I/O error.
1221 *
1222 * %-ENOMEM - Insufficient amount of memory available.
1223 *
1224 * %-EINVAL - Invalid values in input (segment number, flags or nblocks)
1225 */
1226 static int nilfs_ioctl_set_suinfo(struct inode *inode, struct file *filp,
1227 unsigned int cmd, void __user *argp)
1228 {
1229 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1230 struct nilfs_transaction_info ti;
1231 struct nilfs_argv argv;
1232 size_t len;
1233 void __user *base;
1234 void *kbuf;
1235 int ret;
1236
1237 if (!capable(CAP_SYS_ADMIN))
1238 return -EPERM;
1239
1240 ret = mnt_want_write_file(filp);
1241 if (ret)
1242 return ret;
1243
1244 ret = -EFAULT;
1245 if (copy_from_user(&argv, argp, sizeof(argv)))
1246 goto out;
1247
1248 ret = -EINVAL;
1249 if (argv.v_size < sizeof(struct nilfs_suinfo_update))
1250 goto out;
1251
1252 if (argv.v_nmembs > nilfs->ns_nsegments)
1253 goto out;
1254
1255 if (argv.v_nmembs >= UINT_MAX / argv.v_size)
1256 goto out;
1257
1258 len = argv.v_size * argv.v_nmembs;
1259 if (!len) {
1260 ret = 0;
1261 goto out;
1262 }
1263
1264 base = (void __user *)(unsigned long)argv.v_base;
1265 kbuf = vmalloc(len);
1266 if (!kbuf) {
1267 ret = -ENOMEM;
1268 goto out;
1269 }
1270
1271 if (copy_from_user(kbuf, base, len)) {
1272 ret = -EFAULT;
1273 goto out_free;
1274 }
1275
1276 nilfs_transaction_begin(inode->i_sb, &ti, 0);
1277 ret = nilfs_sufile_set_suinfo(nilfs->ns_sufile, kbuf, argv.v_size,
1278 argv.v_nmembs);
1279 if (unlikely(ret < 0))
1280 nilfs_transaction_abort(inode->i_sb);
1281 else
1282 nilfs_transaction_commit(inode->i_sb); /* never fails */
1283
1284 out_free:
1285 vfree(kbuf);
1286 out:
1287 mnt_drop_write_file(filp);
1288 return ret;
1289 }
1290
1291 long nilfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1292 {
1293 struct inode *inode = file_inode(filp);
1294 void __user *argp = (void __user *)arg;
1295
1296 switch (cmd) {
1297 case FS_IOC_GETFLAGS:
1298 return nilfs_ioctl_getflags(inode, argp);
1299 case FS_IOC_SETFLAGS:
1300 return nilfs_ioctl_setflags(inode, filp, argp);
1301 case FS_IOC_GETVERSION:
1302 return nilfs_ioctl_getversion(inode, argp);
1303 case NILFS_IOCTL_CHANGE_CPMODE:
1304 return nilfs_ioctl_change_cpmode(inode, filp, cmd, argp);
1305 case NILFS_IOCTL_DELETE_CHECKPOINT:
1306 return nilfs_ioctl_delete_checkpoint(inode, filp, cmd, argp);
1307 case NILFS_IOCTL_GET_CPINFO:
1308 return nilfs_ioctl_get_info(inode, filp, cmd, argp,
1309 sizeof(struct nilfs_cpinfo),
1310 nilfs_ioctl_do_get_cpinfo);
1311 case NILFS_IOCTL_GET_CPSTAT:
1312 return nilfs_ioctl_get_cpstat(inode, filp, cmd, argp);
1313 case NILFS_IOCTL_GET_SUINFO:
1314 return nilfs_ioctl_get_info(inode, filp, cmd, argp,
1315 sizeof(struct nilfs_suinfo),
1316 nilfs_ioctl_do_get_suinfo);
1317 case NILFS_IOCTL_SET_SUINFO:
1318 return nilfs_ioctl_set_suinfo(inode, filp, cmd, argp);
1319 case NILFS_IOCTL_GET_SUSTAT:
1320 return nilfs_ioctl_get_sustat(inode, filp, cmd, argp);
1321 case NILFS_IOCTL_GET_VINFO:
1322 return nilfs_ioctl_get_info(inode, filp, cmd, argp,
1323 sizeof(struct nilfs_vinfo),
1324 nilfs_ioctl_do_get_vinfo);
1325 case NILFS_IOCTL_GET_BDESCS:
1326 return nilfs_ioctl_get_bdescs(inode, filp, cmd, argp);
1327 case NILFS_IOCTL_CLEAN_SEGMENTS:
1328 return nilfs_ioctl_clean_segments(inode, filp, cmd, argp);
1329 case NILFS_IOCTL_SYNC:
1330 return nilfs_ioctl_sync(inode, filp, cmd, argp);
1331 case NILFS_IOCTL_RESIZE:
1332 return nilfs_ioctl_resize(inode, filp, argp);
1333 case NILFS_IOCTL_SET_ALLOC_RANGE:
1334 return nilfs_ioctl_set_alloc_range(inode, argp);
1335 case FITRIM:
1336 return nilfs_ioctl_trim_fs(inode, argp);
1337 default:
1338 return -ENOTTY;
1339 }
1340 }
1341
1342 #ifdef CONFIG_COMPAT
1343 long nilfs_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1344 {
1345 switch (cmd) {
1346 case FS_IOC32_GETFLAGS:
1347 cmd = FS_IOC_GETFLAGS;
1348 break;
1349 case FS_IOC32_SETFLAGS:
1350 cmd = FS_IOC_SETFLAGS;
1351 break;
1352 case FS_IOC32_GETVERSION:
1353 cmd = FS_IOC_GETVERSION;
1354 break;
1355 case NILFS_IOCTL_CHANGE_CPMODE:
1356 case NILFS_IOCTL_DELETE_CHECKPOINT:
1357 case NILFS_IOCTL_GET_CPINFO:
1358 case NILFS_IOCTL_GET_CPSTAT:
1359 case NILFS_IOCTL_GET_SUINFO:
1360 case NILFS_IOCTL_SET_SUINFO:
1361 case NILFS_IOCTL_GET_SUSTAT:
1362 case NILFS_IOCTL_GET_VINFO:
1363 case NILFS_IOCTL_GET_BDESCS:
1364 case NILFS_IOCTL_CLEAN_SEGMENTS:
1365 case NILFS_IOCTL_SYNC:
1366 case NILFS_IOCTL_RESIZE:
1367 case NILFS_IOCTL_SET_ALLOC_RANGE:
1368 break;
1369 default:
1370 return -ENOIOCTLCMD;
1371 }
1372 return nilfs_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
1373 }
1374 #endif
This page took 0.139631 seconds and 6 git commands to generate.