blob: 827283fe95256c42f529df5f8f2cdc6c767feca6 [file] [log] [blame]
Koji Sato7942b912009-04-06 19:01:41 -07001/*
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 *
Ryusuke Konishi4b420ab2016-05-23 16:23:09 -070016 * Written by Koji Sato.
Koji Sato7942b912009-04-06 19:01:41 -070017 */
18
19#include <linux/fs.h>
20#include <linux/wait.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Koji Sato7942b912009-04-06 19:01:41 -070022#include <linux/capability.h> /* capable() */
23#include <linux/uaccess.h> /* copy_from_user(), copy_to_user() */
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +090024#include <linux/vmalloc.h>
Ryusuke Konishi828b1c52011-02-03 21:26:17 +090025#include <linux/compat.h> /* compat_ptr() */
Al Viro2a79f172011-12-09 08:06:57 -050026#include <linux/mount.h> /* mnt_want_write_file(), mnt_drop_write_file() */
Ryusuke Konishiae191832011-02-04 01:19:38 +090027#include <linux/buffer_head.h>
Koji Sato7942b912009-04-06 19:01:41 -070028#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
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -080036/**
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 */
Koji Sato7942b912009-04-06 19:01:41 -070056static int nilfs_ioctl_wrap_copy(struct the_nilfs *nilfs,
57 struct nilfs_argv *argv, int dir,
58 ssize_t (*dofunc)(struct the_nilfs *,
Ryusuke Konishib028fcf2009-04-06 19:01:47 -070059 __u64 *, int,
Koji Sato7942b912009-04-06 19:01:41 -070060 void *, size_t, size_t))
61{
62 void *buf;
Ryusuke Konishidc498d02009-04-06 19:01:52 -070063 void __user *base = (void __user *)(unsigned long)argv->v_base;
Ryusuke Konishi3358b4a2009-04-06 19:01:43 -070064 size_t maxmembs, total, n;
Koji Sato7942b912009-04-06 19:01:41 -070065 ssize_t nr;
66 int ret, i;
Ryusuke Konishib028fcf2009-04-06 19:01:47 -070067 __u64 pos, ppos;
Koji Sato7942b912009-04-06 19:01:41 -070068
69 if (argv->v_nmembs == 0)
70 return 0;
71
Ryusuke Konishi3358b4a2009-04-06 19:01:43 -070072 if (argv->v_size > PAGE_SIZE)
73 return -EINVAL;
74
Wenliang Fan4b15d612014-01-23 15:55:22 -080075 /*
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
Ryusuke Konishi3358b4a2009-04-06 19:01:43 -070083 buf = (void *)__get_free_pages(GFP_NOFS, 0);
84 if (unlikely(!buf))
Koji Sato7942b912009-04-06 19:01:41 -070085 return -ENOMEM;
Ryusuke Konishi3358b4a2009-04-06 19:01:43 -070086 maxmembs = PAGE_SIZE / argv->v_size;
Koji Sato7942b912009-04-06 19:01:41 -070087
88 ret = 0;
89 total = 0;
Ryusuke Konishib028fcf2009-04-06 19:01:47 -070090 pos = argv->v_index;
Koji Sato7942b912009-04-06 19:01:41 -070091 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) &&
Ryusuke Konishidc498d02009-04-06 19:01:52 -070095 copy_from_user(buf, base + argv->v_size * i,
96 argv->v_size * n)) {
Koji Sato7942b912009-04-06 19:01:41 -070097 ret = -EFAULT;
98 break;
99 }
Ryusuke Konishib028fcf2009-04-06 19:01:47 -0700100 ppos = pos;
Pekka Enberg8acfbf02009-04-06 19:01:49 -0700101 nr = dofunc(nilfs, &pos, argv->v_flags, buf, argv->v_size,
Ryusuke Konishib028fcf2009-04-06 19:01:47 -0700102 n);
Koji Sato7942b912009-04-06 19:01:41 -0700103 if (nr < 0) {
104 ret = nr;
105 break;
106 }
107 if ((dir & _IOC_READ) &&
Ryusuke Konishidc498d02009-04-06 19:01:52 -0700108 copy_to_user(base + argv->v_size * i, buf,
109 argv->v_size * nr)) {
Koji Sato7942b912009-04-06 19:01:41 -0700110 ret = -EFAULT;
111 break;
112 }
113 total += nr;
Ryusuke Konishib028fcf2009-04-06 19:01:47 -0700114 if ((size_t)nr < n)
115 break;
116 if (pos == ppos)
117 pos += n;
Koji Sato7942b912009-04-06 19:01:41 -0700118 }
119 argv->v_nmembs = total;
120
Ryusuke Konishi3358b4a2009-04-06 19:01:43 -0700121 free_pages((unsigned long)buf, 0);
Koji Sato7942b912009-04-06 19:01:41 -0700122 return ret;
123}
124
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800125/**
126 * nilfs_ioctl_getflags - ioctl to support lsattr
127 */
Ryusuke Konishicde98f02011-01-20 02:09:53 +0900128static 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
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800135/**
136 * nilfs_ioctl_setflags - ioctl to support chattr
137 */
Ryusuke Konishicde98f02011-01-20 02:09:53 +0900138static 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
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700145 if (!inode_owner_or_capable(inode))
Ryusuke Konishicde98f02011-01-20 02:09:53 +0900146 return -EACCES;
147
148 if (get_user(flags, (int __user *)argp))
149 return -EFAULT;
150
Al Viroa561be72011-11-23 11:57:51 -0500151 ret = mnt_want_write_file(filp);
Ryusuke Konishicde98f02011-01-20 02:09:53 +0900152 if (ret)
153 return ret;
154
155 flags = nilfs_mask_flags(inode->i_mode, flags);
156
Al Viro59551022016-01-22 15:40:57 -0500157 inode_lock(inode);
Ryusuke Konishicde98f02011-01-20 02:09:53 +0900158
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);
184out:
Al Viro59551022016-01-22 15:40:57 -0500185 inode_unlock(inode);
Al Viro2a79f172011-12-09 08:06:57 -0500186 mnt_drop_write_file(filp);
Ryusuke Konishicde98f02011-01-20 02:09:53 +0900187 return ret;
188}
189
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800190/**
191 * nilfs_ioctl_getversion - get info about a file's version (generation number)
192 */
Ryusuke Konishicde98f02011-01-20 02:09:53 +0900193static int nilfs_ioctl_getversion(struct inode *inode, void __user *argp)
194{
195 return put_user(inode->i_generation, (int __user *)argp);
196}
197
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800198/**
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 */
Koji Sato7942b912009-04-06 19:01:41 -0700217static int nilfs_ioctl_change_cpmode(struct inode *inode, struct file *filp,
218 unsigned int cmd, void __user *argp)
219{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900220 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Koji Sato7942b912009-04-06 19:01:41 -0700221 struct nilfs_transaction_info ti;
222 struct nilfs_cpmode cpmode;
223 int ret;
224
225 if (!capable(CAP_SYS_ADMIN))
226 return -EPERM;
Ryusuke Konishi75124872010-01-26 13:59:40 +0900227
Al Viroa561be72011-11-23 11:57:51 -0500228 ret = mnt_want_write_file(filp);
Ryusuke Konishi75124872010-01-26 13:59:40 +0900229 if (ret)
230 return ret;
231
232 ret = -EFAULT;
Koji Sato7942b912009-04-06 19:01:41 -0700233 if (copy_from_user(&cpmode, argp, sizeof(cpmode)))
Ryusuke Konishi75124872010-01-26 13:59:40 +0900234 goto out;
Koji Sato7942b912009-04-06 19:01:41 -0700235
Ryusuke Konishi572d8b32012-07-30 14:42:07 -0700236 mutex_lock(&nilfs->ns_snapshot_mount_mutex);
Ryusuke Konishi75124872010-01-26 13:59:40 +0900237
Koji Sato7942b912009-04-06 19:01:41 -0700238 nilfs_transaction_begin(inode->i_sb, &ti, 0);
239 ret = nilfs_cpfile_change_cpmode(
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900240 nilfs->ns_cpfile, cpmode.cm_cno, cpmode.cm_mode);
Ryusuke Konishi75124872010-01-26 13:59:40 +0900241 if (unlikely(ret < 0))
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700242 nilfs_transaction_abort(inode->i_sb);
Ryusuke Konishi75124872010-01-26 13:59:40 +0900243 else
244 nilfs_transaction_commit(inode->i_sb); /* never fails */
245
Ryusuke Konishi572d8b32012-07-30 14:42:07 -0700246 mutex_unlock(&nilfs->ns_snapshot_mount_mutex);
Ryusuke Konishi75124872010-01-26 13:59:40 +0900247out:
Al Viro2a79f172011-12-09 08:06:57 -0500248 mnt_drop_write_file(filp);
Koji Sato7942b912009-04-06 19:01:41 -0700249 return ret;
250}
251
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800252/**
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 */
Koji Sato7942b912009-04-06 19:01:41 -0700271static int
272nilfs_ioctl_delete_checkpoint(struct inode *inode, struct file *filp,
273 unsigned int cmd, void __user *argp)
274{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900275 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Koji Sato7942b912009-04-06 19:01:41 -0700276 struct nilfs_transaction_info ti;
277 __u64 cno;
278 int ret;
279
280 if (!capable(CAP_SYS_ADMIN))
281 return -EPERM;
Ryusuke Konishi75124872010-01-26 13:59:40 +0900282
Al Viroa561be72011-11-23 11:57:51 -0500283 ret = mnt_want_write_file(filp);
Ryusuke Konishi75124872010-01-26 13:59:40 +0900284 if (ret)
285 return ret;
286
287 ret = -EFAULT;
Koji Sato7942b912009-04-06 19:01:41 -0700288 if (copy_from_user(&cno, argp, sizeof(cno)))
Ryusuke Konishi75124872010-01-26 13:59:40 +0900289 goto out;
Koji Sato7942b912009-04-06 19:01:41 -0700290
291 nilfs_transaction_begin(inode->i_sb, &ti, 0);
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900292 ret = nilfs_cpfile_delete_checkpoint(nilfs->ns_cpfile, cno);
Ryusuke Konishi75124872010-01-26 13:59:40 +0900293 if (unlikely(ret < 0))
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700294 nilfs_transaction_abort(inode->i_sb);
Ryusuke Konishi75124872010-01-26 13:59:40 +0900295 else
296 nilfs_transaction_commit(inode->i_sb); /* never fails */
297out:
Al Viro2a79f172011-12-09 08:06:57 -0500298 mnt_drop_write_file(filp);
Koji Sato7942b912009-04-06 19:01:41 -0700299 return ret;
300}
301
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800302/**
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 */
Koji Sato7942b912009-04-06 19:01:41 -0700317static ssize_t
Ryusuke Konishib028fcf2009-04-06 19:01:47 -0700318nilfs_ioctl_do_get_cpinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
Koji Sato7942b912009-04-06 19:01:41 -0700319 void *buf, size_t size, size_t nmembs)
320{
Koji Sato7942b912009-04-06 19:01:41 -0700321 int ret;
322
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700323 down_read(&nilfs->ns_segctor_sem);
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +0900324 ret = nilfs_cpfile_get_cpinfo(nilfs->ns_cpfile, posp, flags, buf,
Ryusuke Konishi003ff182009-05-12 03:58:47 +0900325 size, nmembs);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700326 up_read(&nilfs->ns_segctor_sem);
Koji Sato7942b912009-04-06 19:01:41 -0700327 return ret;
328}
329
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800330/**
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 */
Koji Sato7942b912009-04-06 19:01:41 -0700351static int nilfs_ioctl_get_cpstat(struct inode *inode, struct file *filp,
352 unsigned int cmd, void __user *argp)
353{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900354 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Koji Sato7942b912009-04-06 19:01:41 -0700355 struct nilfs_cpstat cpstat;
Koji Sato7942b912009-04-06 19:01:41 -0700356 int ret;
357
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700358 down_read(&nilfs->ns_segctor_sem);
359 ret = nilfs_cpfile_get_stat(nilfs->ns_cpfile, &cpstat);
360 up_read(&nilfs->ns_segctor_sem);
Koji Sato7942b912009-04-06 19:01:41 -0700361 if (ret < 0)
362 return ret;
363
364 if (copy_to_user(argp, &cpstat, sizeof(cpstat)))
365 ret = -EFAULT;
366 return ret;
367}
368
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800369/**
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 */
Koji Sato7942b912009-04-06 19:01:41 -0700384static ssize_t
Ryusuke Konishib028fcf2009-04-06 19:01:47 -0700385nilfs_ioctl_do_get_suinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
Koji Sato7942b912009-04-06 19:01:41 -0700386 void *buf, size_t size, size_t nmembs)
387{
Koji Sato7942b912009-04-06 19:01:41 -0700388 int ret;
389
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700390 down_read(&nilfs->ns_segctor_sem);
Ryusuke Konishi003ff182009-05-12 03:58:47 +0900391 ret = nilfs_sufile_get_suinfo(nilfs->ns_sufile, *posp, buf, size,
392 nmembs);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700393 up_read(&nilfs->ns_segctor_sem);
Koji Sato7942b912009-04-06 19:01:41 -0700394 return ret;
395}
396
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800397/**
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 */
Koji Sato7942b912009-04-06 19:01:41 -0700418static int nilfs_ioctl_get_sustat(struct inode *inode, struct file *filp,
419 unsigned int cmd, void __user *argp)
420{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900421 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Koji Sato7942b912009-04-06 19:01:41 -0700422 struct nilfs_sustat sustat;
Koji Sato7942b912009-04-06 19:01:41 -0700423 int ret;
424
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700425 down_read(&nilfs->ns_segctor_sem);
426 ret = nilfs_sufile_get_stat(nilfs->ns_sufile, &sustat);
427 up_read(&nilfs->ns_segctor_sem);
Koji Sato7942b912009-04-06 19:01:41 -0700428 if (ret < 0)
429 return ret;
430
431 if (copy_to_user(argp, &sustat, sizeof(sustat)))
432 ret = -EFAULT;
433 return ret;
434}
435
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800436/**
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 */
Koji Sato7942b912009-04-06 19:01:41 -0700451static ssize_t
Ryusuke Konishib028fcf2009-04-06 19:01:47 -0700452nilfs_ioctl_do_get_vinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
Koji Sato7942b912009-04-06 19:01:41 -0700453 void *buf, size_t size, size_t nmembs)
454{
Koji Sato7942b912009-04-06 19:01:41 -0700455 int ret;
456
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700457 down_read(&nilfs->ns_segctor_sem);
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900458 ret = nilfs_dat_get_vinfo(nilfs->ns_dat, buf, size, nmembs);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700459 up_read(&nilfs->ns_segctor_sem);
Koji Sato7942b912009-04-06 19:01:41 -0700460 return ret;
461}
462
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800463/**
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 */
Koji Sato7942b912009-04-06 19:01:41 -0700478static ssize_t
Ryusuke Konishib028fcf2009-04-06 19:01:47 -0700479nilfs_ioctl_do_get_bdescs(struct the_nilfs *nilfs, __u64 *posp, int flags,
Koji Sato7942b912009-04-06 19:01:41 -0700480 void *buf, size_t size, size_t nmembs)
481{
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900482 struct nilfs_bmap *bmap = NILFS_I(nilfs->ns_dat)->i_bmap;
Koji Sato7942b912009-04-06 19:01:41 -0700483 struct nilfs_bdesc *bdescs = buf;
484 int ret, i;
485
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +0900486 down_read(&nilfs->ns_segctor_sem);
Koji Sato7942b912009-04-06 19:01:41 -0700487 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) {
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +0900493 if (ret != -ENOENT) {
494 up_read(&nilfs->ns_segctor_sem);
Koji Sato7942b912009-04-06 19:01:41 -0700495 return ret;
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +0900496 }
Koji Sato7942b912009-04-06 19:01:41 -0700497 bdescs[i].bd_blocknr = 0;
498 }
499 }
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +0900500 up_read(&nilfs->ns_segctor_sem);
Koji Sato7942b912009-04-06 19:01:41 -0700501 return nmembs;
502}
503
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800504/**
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 */
Koji Sato7942b912009-04-06 19:01:41 -0700527static int nilfs_ioctl_get_bdescs(struct inode *inode, struct file *filp,
528 unsigned int cmd, void __user *argp)
529{
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900530 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Koji Sato7942b912009-04-06 19:01:41 -0700531 struct nilfs_argv argv;
Koji Sato7942b912009-04-06 19:01:41 -0700532 int ret;
533
534 if (copy_from_user(&argv, argp, sizeof(argv)))
535 return -EFAULT;
536
Ryusuke Konishi83aca8f2009-05-11 23:24:47 +0900537 if (argv.v_size != sizeof(struct nilfs_bdesc))
538 return -EINVAL;
539
Koji Sato7942b912009-04-06 19:01:41 -0700540 ret = nilfs_ioctl_wrap_copy(nilfs, &argv, _IOC_DIR(cmd),
541 nilfs_ioctl_do_get_bdescs);
Ryusuke Konishi47420c72009-04-06 19:01:45 -0700542 if (ret < 0)
543 return ret;
Koji Sato7942b912009-04-06 19:01:41 -0700544
545 if (copy_to_user(argp, &argv, sizeof(argv)))
546 ret = -EFAULT;
547 return ret;
548}
549
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800550/**
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 */
Koji Sato7942b912009-04-06 19:01:41 -0700570static 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)
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700587 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);
Koji Sato7942b912009-04-06 19:01:41 -0700595 return ret;
596 }
Ryusuke Konishi5399dd12009-11-07 18:45:16 +0900597 if (unlikely(!list_empty(&bh->b_assoc_buffers))) {
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700598 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);
Ryusuke Konishi5399dd12009-11-07 18:45:16 +0900606 brelse(bh);
607 return -EEXIST;
608 }
Koji Sato7942b912009-04-06 19:01:41 -0700609 list_add_tail(&bh->b_assoc_buffers, buffers);
610 return 0;
611}
612
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800613/**
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 */
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900626static int nilfs_ioctl_move_blocks(struct super_block *sb,
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900627 struct nilfs_argv *argv, void *buf)
Koji Sato7942b912009-04-06 19:01:41 -0700628{
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900629 size_t nmembs = argv->v_nmembs;
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900630 struct the_nilfs *nilfs = sb->s_fs_info;
Koji Sato7942b912009-04-06 19:01:41 -0700631 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;
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900642 inode = nilfs_iget_for_gc(sb, ino, cno);
Dan Carpenter103cfcf2010-11-23 09:26:02 +0300643 if (IS_ERR(inode)) {
644 ret = PTR_ERR(inode);
Koji Sato7942b912009-04-06 19:01:41 -0700645 goto failed;
646 }
Ryusuke Konishi947b10a2010-12-16 09:57:57 +0900647 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
Koji Sato7942b912009-04-06 19:01:41 -0700658 do {
659 ret = nilfs_ioctl_move_inode_block(inode, vdesc,
660 &buffers);
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900661 if (unlikely(ret < 0)) {
662 iput(inode);
Koji Sato7942b912009-04-06 19:01:41 -0700663 goto failed;
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900664 }
Koji Sato7942b912009-04-06 19:01:41 -0700665 vdesc++;
666 } while (++i < nmembs &&
667 vdesc->vd_ino == ino && vdesc->vd_cno == cno);
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900668
669 iput(inode); /* The inode still remains in GC inode list */
Koji Sato7942b912009-04-06 19:01:41 -0700670 }
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)) {
Ryusuke Konishi5399dd12009-11-07 18:45:16 +0900675 WARN_ON(ret == -EEXIST);
Koji Sato7942b912009-04-06 19:01:41 -0700676 goto failed;
677 }
678 list_del_init(&bh->b_assoc_buffers);
Koji Sato7942b912009-04-06 19:01:41 -0700679 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);
Koji Sato7942b912009-04-06 19:01:41 -0700686 brelse(bh);
687 }
688 return ret;
689}
690
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800691/**
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 */
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900710static int nilfs_ioctl_delete_checkpoints(struct the_nilfs *nilfs,
711 struct nilfs_argv *argv, void *buf)
Koji Sato7942b912009-04-06 19:01:41 -0700712{
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900713 size_t nmembs = argv->v_nmembs;
Koji Sato7942b912009-04-06 19:01:41 -0700714 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
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800727/**
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 */
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900745static int nilfs_ioctl_free_vblocknrs(struct the_nilfs *nilfs,
746 struct nilfs_argv *argv, void *buf)
Koji Sato7942b912009-04-06 19:01:41 -0700747{
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900748 size_t nmembs = argv->v_nmembs;
749 int ret;
Koji Sato7942b912009-04-06 19:01:41 -0700750
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900751 ret = nilfs_dat_freev(nilfs->ns_dat, buf, nmembs);
Koji Sato7942b912009-04-06 19:01:41 -0700752
753 return (ret < 0) ? ret : nmembs;
754}
755
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800756/**
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 */
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900774static int nilfs_ioctl_mark_blocks_dirty(struct the_nilfs *nilfs,
775 struct nilfs_argv *argv, void *buf)
Koji Sato7942b912009-04-06 19:01:41 -0700776{
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900777 size_t nmembs = argv->v_nmembs;
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900778 struct nilfs_bmap *bmap = NILFS_I(nilfs->ns_dat)->i_bmap;
Koji Sato7942b912009-04-06 19:01:41 -0700779 struct nilfs_bdesc *bdescs = buf;
Ryusuke Konishi24e20ea2016-05-23 16:23:17 -0700780 struct buffer_head *bh;
Koji Sato7942b912009-04-06 19:01:41 -0700781 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) {
Ryusuke Konishi24e20ea2016-05-23 16:23:17 -0700798 ret = nilfs_mdt_get_block(nilfs->ns_dat,
799 bdescs[i].bd_offset,
800 false, NULL, &bh);
801 if (unlikely(ret)) {
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700802 WARN_ON(ret == -ENOENT);
Koji Sato7942b912009-04-06 19:01:41 -0700803 return ret;
804 }
Ryusuke Konishi24e20ea2016-05-23 16:23:17 -0700805 mark_buffer_dirty(bh);
806 nilfs_mdt_mark_dirty(nilfs->ns_dat);
807 put_bh(bh);
Koji Sato7942b912009-04-06 19:01:41 -0700808 } else {
809 ret = nilfs_bmap_mark(bmap, bdescs[i].bd_offset,
810 bdescs[i].bd_level);
811 if (ret < 0) {
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700812 WARN_ON(ret == -ENOENT);
Koji Sato7942b912009-04-06 19:01:41 -0700813 return ret;
814 }
815 }
816 }
817 return nmembs;
818}
819
Koji Sato7942b912009-04-06 19:01:41 -0700820int nilfs_ioctl_prepare_clean_segments(struct the_nilfs *nilfs,
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900821 struct nilfs_argv *argv, void **kbufs)
Koji Sato7942b912009-04-06 19:01:41 -0700822{
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700823 const char *msg;
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900824 int ret;
Koji Sato7942b912009-04-06 19:01:41 -0700825
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900826 ret = nilfs_ioctl_delete_checkpoints(nilfs, &argv[1], kbufs[1]);
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700827 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 }
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900835 ret = nilfs_ioctl_free_vblocknrs(nilfs, &argv[2], kbufs[2]);
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700836 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 }
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900844 ret = nilfs_ioctl_mark_blocks_dirty(nilfs, &argv[3], kbufs[3]);
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700845 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 }
Koji Sato7942b912009-04-06 19:01:41 -0700852 return 0;
853
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700854 failed:
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700855 nilfs_msg(nilfs->ns_sb, KERN_ERR, "error %d preparing GC: %s", ret,
856 msg);
Koji Sato7942b912009-04-06 19:01:41 -0700857 return ret;
858}
859
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800860/**
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 */
Koji Sato7942b912009-04-06 19:01:41 -0700874static int nilfs_ioctl_clean_segments(struct inode *inode, struct file *filp,
875 unsigned int cmd, void __user *argp)
876{
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900877 struct nilfs_argv argv[5];
Tobias Klauser33e189b2009-12-23 13:57:47 +0100878 static const size_t argsz[5] = {
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900879 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
Koji Sato7942b912009-04-06 19:01:41 -0700891 if (!capable(CAP_SYS_ADMIN))
892 return -EPERM;
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900893
Al Viroa561be72011-11-23 11:57:51 -0500894 ret = mnt_want_write_file(filp);
Ryusuke Konishi75124872010-01-26 13:59:40 +0900895 if (ret)
896 return ret;
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900897
Ryusuke Konishi75124872010-01-26 13:59:40 +0900898 ret = -EFAULT;
899 if (copy_from_user(argv, argp, sizeof(argv)))
900 goto out;
901
902 ret = -EINVAL;
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900903 nsegs = argv[4].v_nmembs;
904 if (argv[4].v_size != argsz[4])
Ryusuke Konishi75124872010-01-26 13:59:40 +0900905 goto out;
Xi Wang1ecd3c72012-02-08 17:13:37 -0800906 if (nsegs > UINT_MAX / sizeof(__u64))
907 goto out;
Ryusuke Konishi75124872010-01-26 13:59:40 +0900908
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900909 /*
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));
Ryusuke Konishi75124872010-01-26 13:59:40 +0900916 if (IS_ERR(kbufs[4])) {
917 ret = PTR_ERR(kbufs[4]);
918 goto out;
919 }
Ryusuke Konishie3154e92011-03-09 11:05:08 +0900920 nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900921
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
Haogang Chen481fe172011-12-19 17:11:56 -0800930 if (argv[n].v_nmembs >= UINT_MAX / argv[n].v_size)
931 goto out_free;
932
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900933 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
Jiro SEKIBA1cf58fa2009-09-03 22:24:17 +0900952 /*
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900953 * nilfs_ioctl_move_blocks() will call nilfs_iget_for_gc(),
Jiro SEKIBA1cf58fa2009-09-03 22:24:17 +0900954 * 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
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900963 ret = nilfs_ioctl_move_blocks(inode->i_sb, &argv[0], kbufs[0]);
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700964 if (ret < 0) {
965 nilfs_msg(inode->i_sb, KERN_ERR,
966 "error %d preparing GC: cannot read source blocks",
967 ret);
968 } else {
Vyacheslav Dubeykoa9bae182013-02-04 14:28:41 -0800969 if (nilfs_sb_need_update(nilfs))
970 set_nilfs_discontinued(nilfs);
Jiro SEKIBA1cf58fa2009-09-03 22:24:17 +0900971 ret = nilfs_clean_segments(inode->i_sb, argv, kbufs);
Vyacheslav Dubeykoa9bae182013-02-04 14:28:41 -0800972 }
Jiro SEKIBA1cf58fa2009-09-03 22:24:17 +0900973
Ryusuke Konishi263d90c2010-08-20 19:06:11 +0900974 nilfs_remove_all_gcinodes(nilfs);
Jiro SEKIBA1cf58fa2009-09-03 22:24:17 +0900975 clear_nilfs_gc_running(nilfs);
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900976
Ryusuke Konishi75124872010-01-26 13:59:40 +0900977out_free:
Ryusuke Konishid50468532009-05-22 20:36:21 +0900978 while (--n >= 0)
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900979 vfree(kbufs[n]);
980 kfree(kbufs[4]);
Ryusuke Konishi75124872010-01-26 13:59:40 +0900981out:
Al Viro2a79f172011-12-09 08:06:57 -0500982 mnt_drop_write_file(filp);
Ryusuke Konishi4f6b8282009-05-10 22:41:43 +0900983 return ret;
Koji Sato7942b912009-04-06 19:01:41 -0700984}
985
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -0800986/**
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 */
Koji Sato7942b912009-04-06 19:01:41 -07001013static int nilfs_ioctl_sync(struct inode *inode, struct file *filp,
1014 unsigned int cmd, void __user *argp)
1015{
1016 __u64 cno;
1017 int ret;
Jiro SEKIBA0d561f12010-02-20 19:47:49 +09001018 struct the_nilfs *nilfs;
Koji Sato7942b912009-04-06 19:01:41 -07001019
1020 ret = nilfs_construct_segment(inode->i_sb);
1021 if (ret < 0)
1022 return ret;
1023
Ryusuke Konishi11475972012-05-31 16:26:11 -07001024 nilfs = inode->i_sb->s_fs_info;
Andreas Rohnere2c76172014-10-13 15:53:20 -07001025 ret = nilfs_flush_device(nilfs);
1026 if (ret < 0)
1027 return ret;
Ryusuke Konishi11475972012-05-31 16:26:11 -07001028
Koji Sato7942b912009-04-06 19:01:41 -07001029 if (argp != NULL) {
Jiro SEKIBA0d561f12010-02-20 19:47:49 +09001030 down_read(&nilfs->ns_segctor_sem);
1031 cno = nilfs->ns_cno - 1;
1032 up_read(&nilfs->ns_segctor_sem);
Koji Sato7942b912009-04-06 19:01:41 -07001033 if (copy_to_user(argp, &cno, sizeof(cno)))
1034 return -EFAULT;
1035 }
1036 return 0;
1037}
1038
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -08001039/**
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 */
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +09001047static 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
Al Viroa561be72011-11-23 11:57:51 -05001056 ret = mnt_want_write_file(filp);
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +09001057 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
1066out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05001067 mnt_drop_write_file(filp);
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +09001068out:
1069 return ret;
1070}
1071
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -08001072/**
Andreas Rohnerf9f32c42014-04-03 14:50:30 -07001073 * 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 */
1083static 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/**
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -08001115 * 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 */
Ryusuke Konishi619205d2011-05-05 01:23:57 +09001125static 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);
1153out:
1154 return ret;
1155}
1156
Vyacheslav Dubeykod623a942014-01-23 15:55:23 -08001157/**
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 */
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +09001179static int nilfs_ioctl_get_info(struct inode *inode, struct file *filp,
1180 unsigned int cmd, void __user *argp,
Ryusuke Konishi83aca8f2009-05-11 23:24:47 +09001181 size_t membsz,
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +09001182 ssize_t (*dofunc)(struct the_nilfs *,
1183 __u64 *, int,
1184 void *, size_t, size_t))
1185
1186{
Ryusuke Konishie3154e92011-03-09 11:05:08 +09001187 struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +09001188 struct nilfs_argv argv;
1189 int ret;
1190
1191 if (copy_from_user(&argv, argp, sizeof(argv)))
1192 return -EFAULT;
1193
Ryusuke Konishi003ff182009-05-12 03:58:47 +09001194 if (argv.v_size < membsz)
Ryusuke Konishi83aca8f2009-05-11 23:24:47 +09001195 return -EINVAL;
1196
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +09001197 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
Andreas Rohner2cc88f32014-04-03 14:50:28 -07001206/**
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 */
1230static 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
1288out_free:
1289 vfree(kbuf);
1290out:
1291 mnt_drop_write_file(filp);
1292 return ret;
1293}
1294
Ryusuke Konishi7a946192009-04-06 19:01:53 -07001295long nilfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Koji Sato7942b912009-04-06 19:01:41 -07001296{
Al Viro496ad9a2013-01-23 17:07:38 -05001297 struct inode *inode = file_inode(filp);
Li Hong75323402010-03-31 15:41:00 +08001298 void __user *argp = (void __user *)arg;
Koji Sato7942b912009-04-06 19:01:41 -07001299
1300 switch (cmd) {
Ryusuke Konishicde98f02011-01-20 02:09:53 +09001301 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);
Koji Sato7942b912009-04-06 19:01:41 -07001307 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:
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +09001312 return nilfs_ioctl_get_info(inode, filp, cmd, argp,
Ryusuke Konishi83aca8f2009-05-11 23:24:47 +09001313 sizeof(struct nilfs_cpinfo),
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +09001314 nilfs_ioctl_do_get_cpinfo);
Koji Sato7942b912009-04-06 19:01:41 -07001315 case NILFS_IOCTL_GET_CPSTAT:
1316 return nilfs_ioctl_get_cpstat(inode, filp, cmd, argp);
1317 case NILFS_IOCTL_GET_SUINFO:
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +09001318 return nilfs_ioctl_get_info(inode, filp, cmd, argp,
Ryusuke Konishi83aca8f2009-05-11 23:24:47 +09001319 sizeof(struct nilfs_suinfo),
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +09001320 nilfs_ioctl_do_get_suinfo);
Andreas Rohner2cc88f32014-04-03 14:50:28 -07001321 case NILFS_IOCTL_SET_SUINFO:
1322 return nilfs_ioctl_set_suinfo(inode, filp, cmd, argp);
Koji Sato7942b912009-04-06 19:01:41 -07001323 case NILFS_IOCTL_GET_SUSTAT:
1324 return nilfs_ioctl_get_sustat(inode, filp, cmd, argp);
1325 case NILFS_IOCTL_GET_VINFO:
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +09001326 return nilfs_ioctl_get_info(inode, filp, cmd, argp,
Ryusuke Konishi83aca8f2009-05-11 23:24:47 +09001327 sizeof(struct nilfs_vinfo),
Ryusuke Konishi47eb6b92009-04-30 02:21:00 +09001328 nilfs_ioctl_do_get_vinfo);
Koji Sato7942b912009-04-06 19:01:41 -07001329 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);
Koji Sato7942b912009-04-06 19:01:41 -07001333 case NILFS_IOCTL_SYNC:
1334 return nilfs_ioctl_sync(inode, filp, cmd, argp);
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +09001335 case NILFS_IOCTL_RESIZE:
1336 return nilfs_ioctl_resize(inode, filp, argp);
Ryusuke Konishi619205d2011-05-05 01:23:57 +09001337 case NILFS_IOCTL_SET_ALLOC_RANGE:
1338 return nilfs_ioctl_set_alloc_range(inode, argp);
Andreas Rohnerf9f32c42014-04-03 14:50:30 -07001339 case FITRIM:
1340 return nilfs_ioctl_trim_fs(inode, argp);
Koji Sato7942b912009-04-06 19:01:41 -07001341 default:
1342 return -ENOTTY;
1343 }
1344}
Ryusuke Konishi828b1c52011-02-03 21:26:17 +09001345
1346#ifdef CONFIG_COMPAT
1347long 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;
Thomas Meyer695c60f2011-12-19 17:11:55 -08001359 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:
Andreas Rohner2cc88f32014-04-03 14:50:28 -07001364 case NILFS_IOCTL_SET_SUINFO:
Thomas Meyer695c60f2011-12-19 17:11:55 -08001365 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;
Ryusuke Konishi828b1c52011-02-03 21:26:17 +09001373 default:
1374 return -ENOIOCTLCMD;
1375 }
1376 return nilfs_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
1377}
1378#endif