blob: 000d2e5627e99c677951b42593bd5c055b37a006 [file] [log] [blame]
Miklos Szeredibafa9652006-06-25 05:48:51 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi1729a162008-11-26 12:03:54 +01003 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredibafa9652006-06-25 05:48:51 -07004
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
9#include "fuse_i.h"
10
11#include <linux/init.h>
12#include <linux/module.h>
David Howells29cc02d2019-03-27 23:44:19 +000013#include <linux/fs_context.h>
Miklos Szeredibafa9652006-06-25 05:48:51 -070014
15#define FUSE_CTL_SUPER_MAGIC 0x65735543
16
17/*
18 * This is non-NULL when the single instance of the control filesystem
19 * exists. Protected by fuse_mutex
20 */
21static struct super_block *fuse_control_sb;
22
23static struct fuse_conn *fuse_ctl_file_conn_get(struct file *file)
24{
25 struct fuse_conn *fc;
26 mutex_lock(&fuse_mutex);
Al Viro496ad9a2013-01-23 17:07:38 -050027 fc = file_inode(file)->i_private;
Miklos Szeredibafa9652006-06-25 05:48:51 -070028 if (fc)
29 fc = fuse_conn_get(fc);
30 mutex_unlock(&fuse_mutex);
31 return fc;
32}
33
34static ssize_t fuse_conn_abort_write(struct file *file, const char __user *buf,
35 size_t count, loff_t *ppos)
36{
37 struct fuse_conn *fc = fuse_ctl_file_conn_get(file);
38 if (fc) {
Miklos Szeredieb98e3bd2019-01-24 10:40:16 +010039 if (fc->abort_err)
40 fc->aborted = true;
41 fuse_abort_conn(fc);
Miklos Szeredibafa9652006-06-25 05:48:51 -070042 fuse_conn_put(fc);
43 }
44 return count;
45}
46
47static ssize_t fuse_conn_waiting_read(struct file *file, char __user *buf,
48 size_t len, loff_t *ppos)
49{
50 char tmp[32];
51 size_t size;
52
53 if (!*ppos) {
Miklos Szeredi1729a162008-11-26 12:03:54 +010054 long value;
Miklos Szeredibafa9652006-06-25 05:48:51 -070055 struct fuse_conn *fc = fuse_ctl_file_conn_get(file);
56 if (!fc)
57 return 0;
58
Miklos Szeredi1729a162008-11-26 12:03:54 +010059 value = atomic_read(&fc->num_waiting);
60 file->private_data = (void *)value;
Miklos Szeredibafa9652006-06-25 05:48:51 -070061 fuse_conn_put(fc);
62 }
63 size = sprintf(tmp, "%ld\n", (long)file->private_data);
64 return simple_read_from_buffer(buf, len, ppos, tmp, size);
65}
66
Csaba Henk79a9d992009-08-26 19:18:24 +020067static ssize_t fuse_conn_limit_read(struct file *file, char __user *buf,
68 size_t len, loff_t *ppos, unsigned val)
69{
70 char tmp[32];
71 size_t size = sprintf(tmp, "%u\n", val);
72
73 return simple_read_from_buffer(buf, len, ppos, tmp, size);
74}
75
76static ssize_t fuse_conn_limit_write(struct file *file, const char __user *buf,
77 size_t count, loff_t *ppos, unsigned *val,
78 unsigned global_limit)
79{
80 unsigned long t;
Csaba Henk79a9d992009-08-26 19:18:24 +020081 unsigned limit = (1 << 16) - 1;
82 int err;
83
Peter Huewee2690692012-04-15 02:20:27 +020084 if (*ppos)
Csaba Henk79a9d992009-08-26 19:18:24 +020085 return -EINVAL;
86
Peter Huewee2690692012-04-15 02:20:27 +020087 err = kstrtoul_from_user(buf, count, 0, &t);
Csaba Henk79a9d992009-08-26 19:18:24 +020088 if (err)
89 return err;
90
91 if (!capable(CAP_SYS_ADMIN))
92 limit = min(limit, global_limit);
93
94 if (t > limit)
95 return -EINVAL;
96
97 *val = t;
98
99 return count;
100}
101
102static ssize_t fuse_conn_max_background_read(struct file *file,
103 char __user *buf, size_t len,
104 loff_t *ppos)
105{
106 struct fuse_conn *fc;
107 unsigned val;
108
109 fc = fuse_ctl_file_conn_get(file);
110 if (!fc)
111 return 0;
112
Kirill Tkhai2a23f2b2018-08-27 18:29:29 +0300113 val = READ_ONCE(fc->max_background);
Csaba Henk79a9d992009-08-26 19:18:24 +0200114 fuse_conn_put(fc);
115
116 return fuse_conn_limit_read(file, buf, len, ppos, val);
117}
118
119static ssize_t fuse_conn_max_background_write(struct file *file,
120 const char __user *buf,
121 size_t count, loff_t *ppos)
122{
Kees Cook3f649ab2020-06-03 13:09:38 -0700123 unsigned val;
Csaba Henk79a9d992009-08-26 19:18:24 +0200124 ssize_t ret;
125
126 ret = fuse_conn_limit_write(file, buf, count, ppos, &val,
127 max_user_bgreq);
128 if (ret > 0) {
129 struct fuse_conn *fc = fuse_ctl_file_conn_get(file);
130 if (fc) {
Kirill Tkhaiae2dffa2018-08-27 18:29:46 +0300131 spin_lock(&fc->bg_lock);
Csaba Henk79a9d992009-08-26 19:18:24 +0200132 fc->max_background = val;
Kirill Tkhai2b30a532018-08-27 18:29:37 +0300133 fc->blocked = fc->num_background >= fc->max_background;
134 if (!fc->blocked)
135 wake_up(&fc->blocked_waitq);
Kirill Tkhaiae2dffa2018-08-27 18:29:46 +0300136 spin_unlock(&fc->bg_lock);
Csaba Henk79a9d992009-08-26 19:18:24 +0200137 fuse_conn_put(fc);
138 }
139 }
140
141 return ret;
142}
143
144static ssize_t fuse_conn_congestion_threshold_read(struct file *file,
145 char __user *buf, size_t len,
146 loff_t *ppos)
147{
148 struct fuse_conn *fc;
149 unsigned val;
150
151 fc = fuse_ctl_file_conn_get(file);
152 if (!fc)
153 return 0;
154
Kirill Tkhai2a23f2b2018-08-27 18:29:29 +0300155 val = READ_ONCE(fc->congestion_threshold);
Csaba Henk79a9d992009-08-26 19:18:24 +0200156 fuse_conn_put(fc);
157
158 return fuse_conn_limit_read(file, buf, len, ppos, val);
159}
160
161static ssize_t fuse_conn_congestion_threshold_write(struct file *file,
162 const char __user *buf,
163 size_t count, loff_t *ppos)
164{
Kees Cook3f649ab2020-06-03 13:09:38 -0700165 unsigned val;
Kirill Tkhai2b30a532018-08-27 18:29:37 +0300166 struct fuse_conn *fc;
Max Reitzfcee2162020-05-06 17:44:12 +0200167 struct fuse_mount *fm;
Csaba Henk79a9d992009-08-26 19:18:24 +0200168 ssize_t ret;
169
170 ret = fuse_conn_limit_write(file, buf, count, ppos, &val,
171 max_user_congthresh);
Kirill Tkhai2b30a532018-08-27 18:29:37 +0300172 if (ret <= 0)
173 goto out;
174 fc = fuse_ctl_file_conn_get(file);
175 if (!fc)
176 goto out;
177
Max Reitzfcee2162020-05-06 17:44:12 +0200178 down_read(&fc->killsb);
Kirill Tkhaiae2dffa2018-08-27 18:29:46 +0300179 spin_lock(&fc->bg_lock);
Kirill Tkhai2b30a532018-08-27 18:29:37 +0300180 fc->congestion_threshold = val;
Max Reitzfcee2162020-05-06 17:44:12 +0200181
182 /*
183 * Get any fuse_mount belonging to this fuse_conn; s_bdi is
184 * shared between all of them
185 */
186
187 if (!list_empty(&fc->mounts)) {
188 fm = list_first_entry(&fc->mounts, struct fuse_mount, fc_entry);
Kirill Tkhai2b30a532018-08-27 18:29:37 +0300189 if (fc->num_background < fc->congestion_threshold) {
Max Reitzfcee2162020-05-06 17:44:12 +0200190 clear_bdi_congested(fm->sb->s_bdi, BLK_RW_SYNC);
191 clear_bdi_congested(fm->sb->s_bdi, BLK_RW_ASYNC);
Kirill Tkhai2b30a532018-08-27 18:29:37 +0300192 } else {
Max Reitzfcee2162020-05-06 17:44:12 +0200193 set_bdi_congested(fm->sb->s_bdi, BLK_RW_SYNC);
194 set_bdi_congested(fm->sb->s_bdi, BLK_RW_ASYNC);
Csaba Henk79a9d992009-08-26 19:18:24 +0200195 }
196 }
Kirill Tkhaiae2dffa2018-08-27 18:29:46 +0300197 spin_unlock(&fc->bg_lock);
Max Reitzfcee2162020-05-06 17:44:12 +0200198 up_read(&fc->killsb);
Kirill Tkhai2b30a532018-08-27 18:29:37 +0300199 fuse_conn_put(fc);
200out:
Csaba Henk79a9d992009-08-26 19:18:24 +0200201 return ret;
202}
203
Miklos Szeredibafa9652006-06-25 05:48:51 -0700204static const struct file_operations fuse_ctl_abort_ops = {
205 .open = nonseekable_open,
206 .write = fuse_conn_abort_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200207 .llseek = no_llseek,
Miklos Szeredibafa9652006-06-25 05:48:51 -0700208};
209
210static const struct file_operations fuse_ctl_waiting_ops = {
211 .open = nonseekable_open,
212 .read = fuse_conn_waiting_read,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200213 .llseek = no_llseek,
Miklos Szeredibafa9652006-06-25 05:48:51 -0700214};
215
Csaba Henk79a9d992009-08-26 19:18:24 +0200216static const struct file_operations fuse_conn_max_background_ops = {
217 .open = nonseekable_open,
218 .read = fuse_conn_max_background_read,
219 .write = fuse_conn_max_background_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200220 .llseek = no_llseek,
Csaba Henk79a9d992009-08-26 19:18:24 +0200221};
222
223static const struct file_operations fuse_conn_congestion_threshold_ops = {
224 .open = nonseekable_open,
225 .read = fuse_conn_congestion_threshold_read,
226 .write = fuse_conn_congestion_threshold_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200227 .llseek = no_llseek,
Csaba Henk79a9d992009-08-26 19:18:24 +0200228};
229
Miklos Szeredibafa9652006-06-25 05:48:51 -0700230static struct dentry *fuse_ctl_add_dentry(struct dentry *parent,
231 struct fuse_conn *fc,
232 const char *name,
233 int mode, int nlink,
Arjan van de Ven754661f2007-02-12 00:55:38 -0800234 const struct inode_operations *iop,
Miklos Szeredibafa9652006-06-25 05:48:51 -0700235 const struct file_operations *fop)
236{
237 struct dentry *dentry;
238 struct inode *inode;
239
240 BUG_ON(fc->ctl_ndents >= FUSE_CTL_NUM_DENTRIES);
241 dentry = d_alloc_name(parent, name);
242 if (!dentry)
243 return NULL;
244
Miklos Szeredibafa9652006-06-25 05:48:51 -0700245 inode = new_inode(fuse_control_sb);
Miklos Szeredi6becdb62018-05-31 12:26:10 +0200246 if (!inode) {
247 dput(dentry);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700248 return NULL;
Miklos Szeredi6becdb62018-05-31 12:26:10 +0200249 }
Miklos Szeredibafa9652006-06-25 05:48:51 -0700250
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400251 inode->i_ino = get_next_ino();
Miklos Szeredibafa9652006-06-25 05:48:51 -0700252 inode->i_mode = mode;
253 inode->i_uid = fc->user_id;
254 inode->i_gid = fc->group_id;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700255 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700256 /* setting ->i_op to NULL is not allowed */
257 if (iop)
258 inode->i_op = iop;
259 inode->i_fop = fop;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200260 set_nlink(inode, nlink);
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700261 inode->i_private = fc;
Miklos Szeredibafa9652006-06-25 05:48:51 -0700262 d_add(dentry, inode);
Miklos Szeredi6becdb62018-05-31 12:26:10 +0200263
264 fc->ctl_dentry[fc->ctl_ndents++] = dentry;
265
Miklos Szeredibafa9652006-06-25 05:48:51 -0700266 return dentry;
267}
268
269/*
270 * Add a connection to the control filesystem (if it exists). Caller
Miklos Szeredi873302c2006-07-30 03:04:10 -0700271 * must hold fuse_mutex
Miklos Szeredibafa9652006-06-25 05:48:51 -0700272 */
273int fuse_ctl_add_conn(struct fuse_conn *fc)
274{
275 struct dentry *parent;
276 char name[32];
277
278 if (!fuse_control_sb)
279 return 0;
280
281 parent = fuse_control_sb->s_root;
David Howells2b0143b2015-03-17 22:25:59 +0000282 inc_nlink(d_inode(parent));
Miklos Szeredib6f2fcb2008-04-30 00:54:34 -0700283 sprintf(name, "%u", fc->dev);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700284 parent = fuse_ctl_add_dentry(parent, fc, name, S_IFDIR | 0500, 2,
285 &simple_dir_inode_operations,
286 &simple_dir_operations);
287 if (!parent)
288 goto err;
289
290 if (!fuse_ctl_add_dentry(parent, fc, "waiting", S_IFREG | 0400, 1,
Csaba Henk79a9d992009-08-26 19:18:24 +0200291 NULL, &fuse_ctl_waiting_ops) ||
Miklos Szeredibafa9652006-06-25 05:48:51 -0700292 !fuse_ctl_add_dentry(parent, fc, "abort", S_IFREG | 0200, 1,
Csaba Henk79a9d992009-08-26 19:18:24 +0200293 NULL, &fuse_ctl_abort_ops) ||
294 !fuse_ctl_add_dentry(parent, fc, "max_background", S_IFREG | 0600,
295 1, NULL, &fuse_conn_max_background_ops) ||
296 !fuse_ctl_add_dentry(parent, fc, "congestion_threshold",
297 S_IFREG | 0600, 1, NULL,
298 &fuse_conn_congestion_threshold_ops))
Miklos Szeredibafa9652006-06-25 05:48:51 -0700299 goto err;
300
301 return 0;
302
303 err:
304 fuse_ctl_remove_conn(fc);
305 return -ENOMEM;
306}
307
308/*
309 * Remove a connection from the control filesystem (if it exists).
Miklos Szeredi873302c2006-07-30 03:04:10 -0700310 * Caller must hold fuse_mutex
Miklos Szeredibafa9652006-06-25 05:48:51 -0700311 */
312void fuse_ctl_remove_conn(struct fuse_conn *fc)
313{
314 int i;
315
316 if (!fuse_control_sb)
317 return;
318
319 for (i = fc->ctl_ndents - 1; i >= 0; i--) {
320 struct dentry *dentry = fc->ctl_dentry[i];
David Howells2b0143b2015-03-17 22:25:59 +0000321 d_inode(dentry)->i_private = NULL;
Miklos Szeredi6becdb62018-05-31 12:26:10 +0200322 if (!i) {
323 /* Get rid of submounts: */
324 d_invalidate(dentry);
325 }
Miklos Szeredibafa9652006-06-25 05:48:51 -0700326 dput(dentry);
327 }
David Howells2b0143b2015-03-17 22:25:59 +0000328 drop_nlink(d_inode(fuse_control_sb->s_root));
Miklos Szeredibafa9652006-06-25 05:48:51 -0700329}
330
Miklos Szeredi84c21502021-08-04 13:22:58 +0200331static int fuse_ctl_fill_super(struct super_block *sb, struct fs_context *fsc)
Miklos Szeredibafa9652006-06-25 05:48:51 -0700332{
Eric Biggerscda37122017-03-25 21:15:37 -0700333 static const struct tree_descr empty_descr = {""};
Miklos Szeredibafa9652006-06-25 05:48:51 -0700334 struct fuse_conn *fc;
335 int err;
336
337 err = simple_fill_super(sb, FUSE_CTL_SUPER_MAGIC, &empty_descr);
338 if (err)
339 return err;
340
341 mutex_lock(&fuse_mutex);
342 BUG_ON(fuse_control_sb);
343 fuse_control_sb = sb;
344 list_for_each_entry(fc, &fuse_conn_list, entry) {
345 err = fuse_ctl_add_conn(fc);
346 if (err) {
347 fuse_control_sb = NULL;
348 mutex_unlock(&fuse_mutex);
349 return err;
350 }
351 }
352 mutex_unlock(&fuse_mutex);
353
354 return 0;
355}
356
Miklos Szeredi84c21502021-08-04 13:22:58 +0200357static int fuse_ctl_get_tree(struct fs_context *fsc)
Miklos Szeredibafa9652006-06-25 05:48:51 -0700358{
Miklos Szeredi84c21502021-08-04 13:22:58 +0200359 return get_tree_single(fsc, fuse_ctl_fill_super);
David Howells29cc02d2019-03-27 23:44:19 +0000360}
361
362static const struct fs_context_operations fuse_ctl_context_ops = {
363 .get_tree = fuse_ctl_get_tree,
364};
365
Miklos Szeredi84c21502021-08-04 13:22:58 +0200366static int fuse_ctl_init_fs_context(struct fs_context *fsc)
David Howells29cc02d2019-03-27 23:44:19 +0000367{
Miklos Szeredi84c21502021-08-04 13:22:58 +0200368 fsc->ops = &fuse_ctl_context_ops;
David Howells29cc02d2019-03-27 23:44:19 +0000369 return 0;
Miklos Szeredibafa9652006-06-25 05:48:51 -0700370}
371
372static void fuse_ctl_kill_sb(struct super_block *sb)
373{
Miklos Szerediff795442007-01-29 13:19:54 -0800374 struct fuse_conn *fc;
375
Miklos Szeredibafa9652006-06-25 05:48:51 -0700376 mutex_lock(&fuse_mutex);
377 fuse_control_sb = NULL;
Miklos Szerediff795442007-01-29 13:19:54 -0800378 list_for_each_entry(fc, &fuse_conn_list, entry)
379 fc->ctl_ndents = 0;
Miklos Szeredibafa9652006-06-25 05:48:51 -0700380 mutex_unlock(&fuse_mutex);
381
382 kill_litter_super(sb);
383}
384
385static struct file_system_type fuse_ctl_fs_type = {
386 .owner = THIS_MODULE,
387 .name = "fusectl",
David Howells29cc02d2019-03-27 23:44:19 +0000388 .init_fs_context = fuse_ctl_init_fs_context,
Miklos Szeredibafa9652006-06-25 05:48:51 -0700389 .kill_sb = fuse_ctl_kill_sb,
390};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800391MODULE_ALIAS_FS("fusectl");
Miklos Szeredibafa9652006-06-25 05:48:51 -0700392
393int __init fuse_ctl_init(void)
394{
395 return register_filesystem(&fuse_ctl_fs_type);
396}
397
Fabian Frederick7736e8c2014-04-23 18:14:42 +0200398void __exit fuse_ctl_cleanup(void)
Miklos Szeredibafa9652006-06-25 05:48:51 -0700399{
400 unregister_filesystem(&fuse_ctl_fs_type);
401}