blob: d100b5dfedbd2f1990b5aa7736f8124df87646ed [file] [log] [blame]
Miklos Szeredi334f4852005-09-09 13:10:27 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi1729a162008-11-26 12:03:54 +01003 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi334f4852005-09-09 13:10:27 -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>
13#include <linux/poll.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010014#include <linux/sched/signal.h>
Miklos Szeredi334f4852005-09-09 13:10:27 -070015#include <linux/uio.h>
16#include <linux/miscdevice.h>
17#include <linux/pagemap.h>
18#include <linux/file.h>
19#include <linux/slab.h>
Miklos Szeredidd3bb142010-05-25 15:06:06 +020020#include <linux/pipe_fs_i.h>
Miklos Szeredice534fb2010-05-25 15:06:07 +020021#include <linux/swap.h>
22#include <linux/splice.h>
Seth Forshee0b6e9ea2014-07-02 16:29:19 -050023#include <linux/sched.h>
Miklos Szeredi334f4852005-09-09 13:10:27 -070024
25MODULE_ALIAS_MISCDEV(FUSE_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +020026MODULE_ALIAS("devname:fuse");
Miklos Szeredi334f4852005-09-09 13:10:27 -070027
Kirill Tkhaic59fd852018-09-11 13:11:56 +030028/* Ordinary requests have even IDs, while interrupts IDs are odd */
29#define FUSE_INT_REQ_BIT (1ULL << 0)
30#define FUSE_REQ_ID_STEP (1ULL << 1)
31
Christoph Lametere18b8902006-12-06 20:33:20 -080032static struct kmem_cache *fuse_req_cachep;
Miklos Szeredi334f4852005-09-09 13:10:27 -070033
Miklos Szeredicc080e92015-07-01 16:26:08 +020034static struct fuse_dev *fuse_get_dev(struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -070035{
Miklos Szeredi0720b312006-04-10 22:54:55 -070036 /*
37 * Lockless access is OK, because file->private data is set
38 * once during mount and is valid until the file is released.
39 */
Mark Rutland6aa7de02017-10-23 14:07:29 -070040 return READ_ONCE(file->private_data);
Miklos Szeredi334f4852005-09-09 13:10:27 -070041}
42
Max Reitzfcee2162020-05-06 17:44:12 +020043static void fuse_request_init(struct fuse_mount *fm, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -070044{
Miklos Szeredi334f4852005-09-09 13:10:27 -070045 INIT_LIST_HEAD(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -070046 INIT_LIST_HEAD(&req->intr_entry);
Miklos Szeredi334f4852005-09-09 13:10:27 -070047 init_waitqueue_head(&req->waitq);
Elena Reshetovaec99f6d2017-03-03 11:04:04 +020048 refcount_set(&req->count, 1);
Miklos Szeredi33e14b42015-07-01 16:26:01 +020049 __set_bit(FR_PENDING, &req->flags);
Max Reitzfcee2162020-05-06 17:44:12 +020050 req->fm = fm;
Miklos Szeredi334f4852005-09-09 13:10:27 -070051}
52
Max Reitzfcee2162020-05-06 17:44:12 +020053static struct fuse_req *fuse_request_alloc(struct fuse_mount *fm, gfp_t flags)
Miklos Szeredi334f4852005-09-09 13:10:27 -070054{
Miklos Szeredi8a7aa282018-10-01 10:07:05 +020055 struct fuse_req *req = kmem_cache_zalloc(fuse_req_cachep, flags);
Miklos Szeredi72133942019-09-10 15:04:11 +020056 if (req)
Max Reitzfcee2162020-05-06 17:44:12 +020057 fuse_request_init(fm, req);
Maxim Patlasov4250c062012-10-26 19:48:07 +040058
Miklos Szeredi334f4852005-09-09 13:10:27 -070059 return req;
60}
Maxim Patlasov4250c062012-10-26 19:48:07 +040061
Miklos Szeredi66abc352019-09-10 15:04:11 +020062static void fuse_request_free(struct fuse_req *req)
Miklos Szeredie52a8252018-10-01 10:07:06 +020063{
Miklos Szeredi334f4852005-09-09 13:10:27 -070064 kmem_cache_free(fuse_req_cachep, req);
65}
66
Miklos Szeredi66abc352019-09-10 15:04:11 +020067static void __fuse_get_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -070068{
Elena Reshetovaec99f6d2017-03-03 11:04:04 +020069 refcount_inc(&req->count);
Miklos Szeredi334f4852005-09-09 13:10:27 -070070}
71
72/* Must be called with > 1 refcount */
73static void __fuse_put_request(struct fuse_req *req)
74{
Elena Reshetovaec99f6d2017-03-03 11:04:04 +020075 refcount_dec(&req->count);
Miklos Szeredi334f4852005-09-09 13:10:27 -070076}
77
Miklos Szeredi9759bd512015-01-06 10:45:35 +010078void fuse_set_initialized(struct fuse_conn *fc)
79{
80 /* Make sure stores before this are seen on another CPU */
81 smp_wmb();
82 fc->initialized = 1;
83}
84
Maxim Patlasov0aada882013-03-21 18:02:28 +040085static bool fuse_block_alloc(struct fuse_conn *fc, bool for_background)
86{
87 return !fc->initialized || (for_background && fc->blocked);
88}
89
Miklos Szeredib8f95e52018-07-26 16:13:11 +020090static void fuse_drop_waiting(struct fuse_conn *fc)
91{
Miklos Szeredi2d84a2d2018-11-09 15:52:16 +010092 /*
93 * lockess check of fc->connected is okay, because atomic_dec_and_test()
94 * provides a memory barrier mached with the one in fuse_wait_aborted()
95 * to ensure no wake-up is missed.
96 */
97 if (atomic_dec_and_test(&fc->num_waiting) &&
98 !READ_ONCE(fc->connected)) {
Miklos Szeredib8f95e52018-07-26 16:13:11 +020099 /* wake up aborters */
100 wake_up_all(&fc->blocked_waitq);
101 }
102}
103
Max Reitz8f622e92020-04-20 17:59:34 +0200104static void fuse_put_request(struct fuse_req *req);
Miklos Szeredi66abc352019-09-10 15:04:11 +0200105
Max Reitzfcee2162020-05-06 17:44:12 +0200106static struct fuse_req *fuse_get_req(struct fuse_mount *fm, bool for_background)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700107{
Max Reitzfcee2162020-05-06 17:44:12 +0200108 struct fuse_conn *fc = fm->fc;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700109 struct fuse_req *req;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700110 int err;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200111 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400112
113 if (fuse_block_alloc(fc, for_background)) {
Maxim Patlasov0aada882013-03-21 18:02:28 +0400114 err = -EINTR;
Al Viro7d3a07f2016-07-19 03:08:27 -0400115 if (wait_event_killable_exclusive(fc->blocked_waitq,
116 !fuse_block_alloc(fc, for_background)))
Maxim Patlasov0aada882013-03-21 18:02:28 +0400117 goto out;
118 }
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100119 /* Matches smp_wmb() in fuse_set_initialized() */
120 smp_rmb();
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700121
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700122 err = -ENOTCONN;
123 if (!fc->connected)
124 goto out;
125
Miklos Szeredide155222015-07-01 16:25:57 +0200126 err = -ECONNREFUSED;
127 if (fc->conn_error)
128 goto out;
129
Max Reitzfcee2162020-05-06 17:44:12 +0200130 req = fuse_request_alloc(fm, GFP_KERNEL);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200131 err = -ENOMEM;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400132 if (!req) {
133 if (for_background)
134 wake_up(&fc->blocked_waitq);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200135 goto out;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400136 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700137
Eric W. Biederman8cb08322018-02-21 11:18:07 -0600138 req->in.h.uid = from_kuid(fc->user_ns, current_fsuid());
139 req->in.h.gid = from_kgid(fc->user_ns, current_fsgid());
Eric W. Biedermanc9582eb2018-02-21 10:52:06 -0600140 req->in.h.pid = pid_nr_ns(task_pid(current), fc->pid_ns);
141
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200142 __set_bit(FR_WAITING, &req->flags);
143 if (for_background)
144 __set_bit(FR_BACKGROUND, &req->flags);
145
Eric W. Biedermanc9582eb2018-02-21 10:52:06 -0600146 if (unlikely(req->in.h.uid == ((uid_t)-1) ||
147 req->in.h.gid == ((gid_t)-1))) {
Max Reitz8f622e92020-04-20 17:59:34 +0200148 fuse_put_request(req);
Eric W. Biedermanc9582eb2018-02-21 10:52:06 -0600149 return ERR_PTR(-EOVERFLOW);
150 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700151 return req;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200152
153 out:
Miklos Szeredib8f95e52018-07-26 16:13:11 +0200154 fuse_drop_waiting(fc);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200155 return ERR_PTR(err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700156}
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400157
Max Reitz8f622e92020-04-20 17:59:34 +0200158static void fuse_put_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700159{
Max Reitzfcee2162020-05-06 17:44:12 +0200160 struct fuse_conn *fc = req->fm->fc;
Max Reitz8f622e92020-04-20 17:59:34 +0200161
Elena Reshetovaec99f6d2017-03-03 11:04:04 +0200162 if (refcount_dec_and_test(&req->count)) {
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200163 if (test_bit(FR_BACKGROUND, &req->flags)) {
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400164 /*
165 * We get here in the unlikely case that a background
166 * request was allocated but not sent
167 */
Kirill Tkhaiae2dffa2018-08-27 18:29:46 +0300168 spin_lock(&fc->bg_lock);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400169 if (!fc->blocked)
170 wake_up(&fc->blocked_waitq);
Kirill Tkhaiae2dffa2018-08-27 18:29:46 +0300171 spin_unlock(&fc->bg_lock);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400172 }
173
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200174 if (test_bit(FR_WAITING, &req->flags)) {
175 __clear_bit(FR_WAITING, &req->flags);
Miklos Szeredib8f95e52018-07-26 16:13:11 +0200176 fuse_drop_waiting(fc);
Miklos Szeredi73e0e732015-07-01 16:25:56 +0200177 }
Miklos Szeredi33649c92006-06-25 05:48:52 -0700178
Miklos Szeredi40ac7ab2019-09-10 15:04:08 +0200179 fuse_request_free(req);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800180 }
181}
182
Stefan Hajnoczi14d46d72018-06-21 09:34:25 +0100183unsigned int fuse_len_args(unsigned int numargs, struct fuse_arg *args)
Miklos Szeredid12def12008-02-06 01:38:39 -0800184{
185 unsigned nbytes = 0;
186 unsigned i;
187
188 for (i = 0; i < numargs; i++)
189 nbytes += args[i].size;
190
191 return nbytes;
192}
Stefan Hajnoczi14d46d72018-06-21 09:34:25 +0100193EXPORT_SYMBOL_GPL(fuse_len_args);
Miklos Szeredid12def12008-02-06 01:38:39 -0800194
Stefan Hajnoczi79d96ef2018-06-22 13:48:30 +0100195u64 fuse_get_unique(struct fuse_iqueue *fiq)
Miklos Szeredid12def12008-02-06 01:38:39 -0800196{
Kirill Tkhaic59fd852018-09-11 13:11:56 +0300197 fiq->reqctr += FUSE_REQ_ID_STEP;
198 return fiq->reqctr;
Miklos Szeredid12def12008-02-06 01:38:39 -0800199}
Stefan Hajnoczi79d96ef2018-06-22 13:48:30 +0100200EXPORT_SYMBOL_GPL(fuse_get_unique);
Miklos Szeredid12def12008-02-06 01:38:39 -0800201
Kirill Tkhaibe2ff422018-09-11 13:12:14 +0300202static unsigned int fuse_req_hash(u64 unique)
203{
204 return hash_long(unique & ~FUSE_INT_REQ_BIT, FUSE_PQ_HASH_BITS);
205}
206
Stefan Hajnocziae3aad72018-06-18 15:53:19 +0100207/**
208 * A new request is available, wake fiq->waitq
209 */
210static void fuse_dev_wake_and_unlock(struct fuse_iqueue *fiq)
211__releases(fiq->lock)
212{
213 wake_up(&fiq->waitq);
214 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
215 spin_unlock(&fiq->lock);
216}
217
218const struct fuse_iqueue_ops fuse_dev_fiq_ops = {
219 .wake_forget_and_unlock = fuse_dev_wake_and_unlock,
220 .wake_interrupt_and_unlock = fuse_dev_wake_and_unlock,
221 .wake_pending_and_unlock = fuse_dev_wake_and_unlock,
222};
223EXPORT_SYMBOL_GPL(fuse_dev_fiq_ops);
224
225static void queue_request_and_unlock(struct fuse_iqueue *fiq,
226 struct fuse_req *req)
227__releases(fiq->lock)
Miklos Szeredid12def12008-02-06 01:38:39 -0800228{
Miklos Szeredid12def12008-02-06 01:38:39 -0800229 req->in.h.len = sizeof(struct fuse_in_header) +
Stefan Hajnoczi14d46d72018-06-21 09:34:25 +0100230 fuse_len_args(req->args->in_numargs,
231 (struct fuse_arg *) req->args->in_args);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200232 list_add_tail(&req->list, &fiq->pending);
Stefan Hajnocziae3aad72018-06-18 15:53:19 +0100233 fiq->ops->wake_pending_and_unlock(fiq);
Miklos Szeredid12def12008-02-06 01:38:39 -0800234}
235
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100236void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
237 u64 nodeid, u64 nlookup)
238{
Miklos Szeredif88996a2015-07-01 16:26:01 +0200239 struct fuse_iqueue *fiq = &fc->iq;
240
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100241 forget->forget_one.nodeid = nodeid;
242 forget->forget_one.nlookup = nlookup;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100243
Eric Biggers76e43c82019-09-08 20:15:18 -0700244 spin_lock(&fiq->lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200245 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200246 fiq->forget_list_tail->next = forget;
247 fiq->forget_list_tail = forget;
Stefan Hajnocziae3aad72018-06-18 15:53:19 +0100248 fiq->ops->wake_forget_and_unlock(fiq);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200249 } else {
250 kfree(forget);
Stefan Hajnocziae3aad72018-06-18 15:53:19 +0100251 spin_unlock(&fiq->lock);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200252 }
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100253}
254
Miklos Szeredid12def12008-02-06 01:38:39 -0800255static void flush_bg_queue(struct fuse_conn *fc)
256{
Kirill Tkhaie2871792018-07-31 13:25:25 +0300257 struct fuse_iqueue *fiq = &fc->iq;
258
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700259 while (fc->active_background < fc->max_background &&
Miklos Szeredid12def12008-02-06 01:38:39 -0800260 !list_empty(&fc->bg_queue)) {
261 struct fuse_req *req;
262
Kirill Tkhaie2871792018-07-31 13:25:25 +0300263 req = list_first_entry(&fc->bg_queue, struct fuse_req, list);
Miklos Szeredid12def12008-02-06 01:38:39 -0800264 list_del(&req->list);
265 fc->active_background++;
Eric Biggers76e43c82019-09-08 20:15:18 -0700266 spin_lock(&fiq->lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200267 req->in.h.unique = fuse_get_unique(fiq);
Stefan Hajnocziae3aad72018-06-18 15:53:19 +0100268 queue_request_and_unlock(fiq, req);
Miklos Szeredid12def12008-02-06 01:38:39 -0800269 }
270}
271
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200272/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700273 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700274 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800275 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700276 * was closed. The requester thread is woken up (if still waiting),
277 * the 'end' callback is called if given, else the reference to the
278 * request is released
Miklos Szeredi334f4852005-09-09 13:10:27 -0700279 */
Max Reitz8f622e92020-04-20 17:59:34 +0200280void fuse_request_end(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700281{
Max Reitzfcee2162020-05-06 17:44:12 +0200282 struct fuse_mount *fm = req->fm;
283 struct fuse_conn *fc = fm->fc;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200284 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi365ae712015-07-01 16:26:06 +0200285
Miklos Szerediefe28002015-07-01 16:26:07 +0200286 if (test_and_set_bit(FR_FINISHED, &req->flags))
Miklos Szeredib8f95e52018-07-26 16:13:11 +0200287 goto put_request;
Miklos Szeredi2b319d12019-10-21 09:11:40 +0200288
Kirill Tkhai217316a2018-11-08 12:05:25 +0300289 /*
290 * test_and_set_bit() implies smp_mb() between bit
Miklos Szeredib7d4f312021-08-04 13:22:58 +0200291 * changing and below FR_INTERRUPTED check. Pairs with
Kirill Tkhai217316a2018-11-08 12:05:25 +0300292 * smp_mb() from queue_interrupt().
293 */
Miklos Szeredib7d4f312021-08-04 13:22:58 +0200294 if (test_bit(FR_INTERRUPTED, &req->flags)) {
Eric Biggers76e43c82019-09-08 20:15:18 -0700295 spin_lock(&fiq->lock);
Kirill Tkhai217316a2018-11-08 12:05:25 +0300296 list_del_init(&req->intr_entry);
Eric Biggers76e43c82019-09-08 20:15:18 -0700297 spin_unlock(&fiq->lock);
Kirill Tkhai217316a2018-11-08 12:05:25 +0300298 }
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200299 WARN_ON(test_bit(FR_PENDING, &req->flags));
300 WARN_ON(test_bit(FR_SENT, &req->flags));
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200301 if (test_bit(FR_BACKGROUND, &req->flags)) {
Kirill Tkhaiae2dffa2018-08-27 18:29:46 +0300302 spin_lock(&fc->bg_lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200303 clear_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi908a5722018-09-28 16:43:22 +0200304 if (fc->num_background == fc->max_background) {
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700305 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400306 wake_up(&fc->blocked_waitq);
Miklos Szeredi908a5722018-09-28 16:43:22 +0200307 } else if (!fc->blocked) {
308 /*
309 * Wake up next waiter, if any. It's okay to use
310 * waitqueue_active(), as we've already synced up
311 * fc->blocked with waiters with the wake_up() call
312 * above.
313 */
314 if (waitqueue_active(&fc->blocked_waitq))
315 wake_up(&fc->blocked_waitq);
316 }
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400317
Max Reitzfcee2162020-05-06 17:44:12 +0200318 if (fc->num_background == fc->congestion_threshold && fm->sb) {
319 clear_bdi_congested(fm->sb->s_bdi, BLK_RW_SYNC);
320 clear_bdi_congested(fm->sb->s_bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700321 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700322 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800323 fc->active_background--;
324 flush_bg_queue(fc);
Kirill Tkhaiae2dffa2018-08-27 18:29:46 +0300325 spin_unlock(&fc->bg_lock);
Kirill Tkhai5e0fed72018-11-08 12:05:31 +0300326 } else {
327 /* Wake up waiter sleeping in request_wait_answer() */
328 wake_up(&req->waitq);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700329 }
Kirill Tkhai5e0fed72018-11-08 12:05:31 +0300330
Miklos Szeredi3e8cb8b2020-02-13 09:16:07 +0100331 if (test_bit(FR_ASYNC, &req->flags))
Max Reitzfcee2162020-05-06 17:44:12 +0200332 req->args->end(fm, req->args, req->out.h.error);
Miklos Szeredib8f95e52018-07-26 16:13:11 +0200333put_request:
Max Reitz8f622e92020-04-20 17:59:34 +0200334 fuse_put_request(req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700335}
Stefan Hajnoczi04ec5af2018-06-21 09:33:40 +0100336EXPORT_SYMBOL_GPL(fuse_request_end);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700337
Max Reitz8f622e92020-04-20 17:59:34 +0200338static int queue_interrupt(struct fuse_req *req)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700339{
Max Reitzfcee2162020-05-06 17:44:12 +0200340 struct fuse_iqueue *fiq = &req->fm->fc->iq;
Max Reitz8f622e92020-04-20 17:59:34 +0200341
Eric Biggers76e43c82019-09-08 20:15:18 -0700342 spin_lock(&fiq->lock);
Kirill Tkhaib7829112018-11-08 12:05:42 +0300343 /* Check for we've sent request to interrupt this req */
344 if (unlikely(!test_bit(FR_INTERRUPTED, &req->flags))) {
Eric Biggers76e43c82019-09-08 20:15:18 -0700345 spin_unlock(&fiq->lock);
Kirill Tkhaib7829112018-11-08 12:05:42 +0300346 return -EINVAL;
347 }
348
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200349 if (list_empty(&req->intr_entry)) {
350 list_add_tail(&req->intr_entry, &fiq->interrupts);
Kirill Tkhai217316a2018-11-08 12:05:25 +0300351 /*
352 * Pairs with smp_mb() implied by test_and_set_bit()
Kirill Tkhai75d89252020-02-28 15:15:24 +0300353 * from fuse_request_end().
Kirill Tkhai217316a2018-11-08 12:05:25 +0300354 */
355 smp_mb();
356 if (test_bit(FR_FINISHED, &req->flags)) {
357 list_del_init(&req->intr_entry);
Eric Biggers76e43c82019-09-08 20:15:18 -0700358 spin_unlock(&fiq->lock);
Kirill Tkhaib7829112018-11-08 12:05:42 +0300359 return 0;
Kirill Tkhai217316a2018-11-08 12:05:25 +0300360 }
Stefan Hajnocziae3aad72018-06-18 15:53:19 +0100361 fiq->ops->wake_interrupt_and_unlock(fiq);
362 } else {
363 spin_unlock(&fiq->lock);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200364 }
Kirill Tkhaib7829112018-11-08 12:05:42 +0300365 return 0;
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700366}
367
Max Reitz8f622e92020-04-20 17:59:34 +0200368static void request_wait_answer(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700369{
Max Reitzfcee2162020-05-06 17:44:12 +0200370 struct fuse_conn *fc = req->fm->fc;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200371 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic4775262015-07-01 16:26:00 +0200372 int err;
373
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700374 if (!fc->no_interrupt) {
375 /* Any signal may interrupt this */
Miklos Szeredic4775262015-07-01 16:26:00 +0200376 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200377 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200378 if (!err)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700379 return;
380
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200381 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200382 /* matches barrier in fuse_dev_do_read() */
383 smp_mb__after_atomic();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200384 if (test_bit(FR_SENT, &req->flags))
Max Reitz8f622e92020-04-20 17:59:34 +0200385 queue_interrupt(req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700386 }
387
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200388 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700389 /* Only fatal signals may interrupt this */
Al Viro7d3a07f2016-07-19 03:08:27 -0400390 err = wait_event_killable(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200391 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200392 if (!err)
Miklos Szeredia131de02007-10-16 23:31:04 -0700393 return;
394
Eric Biggers76e43c82019-09-08 20:15:18 -0700395 spin_lock(&fiq->lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700396 /* Request is not yet in userspace, bail out */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200397 if (test_bit(FR_PENDING, &req->flags)) {
Miklos Szeredia131de02007-10-16 23:31:04 -0700398 list_del(&req->list);
Eric Biggers76e43c82019-09-08 20:15:18 -0700399 spin_unlock(&fiq->lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700400 __fuse_put_request(req);
401 req->out.h.error = -EINTR;
402 return;
403 }
Eric Biggers76e43c82019-09-08 20:15:18 -0700404 spin_unlock(&fiq->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700405 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700406
Miklos Szeredia131de02007-10-16 23:31:04 -0700407 /*
408 * Either request is already in userspace, or it was forced.
409 * Wait it out.
410 */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200411 wait_event(req->waitq, test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi334f4852005-09-09 13:10:27 -0700412}
413
Max Reitz8f622e92020-04-20 17:59:34 +0200414static void __fuse_request_send(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700415{
Max Reitzfcee2162020-05-06 17:44:12 +0200416 struct fuse_iqueue *fiq = &req->fm->fc->iq;
Miklos Szeredie16714d2015-07-01 16:26:01 +0200417
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200418 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Eric Biggers76e43c82019-09-08 20:15:18 -0700419 spin_lock(&fiq->lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200420 if (!fiq->connected) {
Eric Biggers76e43c82019-09-08 20:15:18 -0700421 spin_unlock(&fiq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700422 req->out.h.error = -ENOTCONN;
Miklos Szeredic4775262015-07-01 16:26:00 +0200423 } else {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200424 req->in.h.unique = fuse_get_unique(fiq);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700425 /* acquire extra reference, since request is still needed
Stefan Hajnoczi04ec5af2018-06-21 09:33:40 +0100426 after fuse_request_end() */
Miklos Szeredi334f4852005-09-09 13:10:27 -0700427 __fuse_get_request(req);
Stefan Hajnocziae3aad72018-06-18 15:53:19 +0100428 queue_request_and_unlock(fiq, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700429
Max Reitz8f622e92020-04-20 17:59:34 +0200430 request_wait_answer(req);
Stefan Hajnoczi04ec5af2018-06-21 09:33:40 +0100431 /* Pairs with smp_wmb() in fuse_request_end() */
Miklos Szeredic4775262015-07-01 16:26:00 +0200432 smp_rmb();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700433 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700434}
Eric Wong6a4e9222013-02-04 13:04:44 +0000435
Miklos Szeredi21f62172015-01-06 10:45:35 +0100436static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
437{
Miklos Szeredid5b48542019-09-10 15:04:08 +0200438 if (fc->minor < 4 && args->opcode == FUSE_STATFS)
439 args->out_args[0].size = FUSE_COMPAT_STATFS_SIZE;
Miklos Szeredi21f62172015-01-06 10:45:35 +0100440
441 if (fc->minor < 9) {
Miklos Szeredid5b48542019-09-10 15:04:08 +0200442 switch (args->opcode) {
Miklos Szeredi21f62172015-01-06 10:45:35 +0100443 case FUSE_LOOKUP:
444 case FUSE_CREATE:
445 case FUSE_MKNOD:
446 case FUSE_MKDIR:
447 case FUSE_SYMLINK:
448 case FUSE_LINK:
Miklos Szeredid5b48542019-09-10 15:04:08 +0200449 args->out_args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
Miklos Szeredi21f62172015-01-06 10:45:35 +0100450 break;
451 case FUSE_GETATTR:
452 case FUSE_SETATTR:
Miklos Szeredid5b48542019-09-10 15:04:08 +0200453 args->out_args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
Miklos Szeredi21f62172015-01-06 10:45:35 +0100454 break;
455 }
456 }
457 if (fc->minor < 12) {
Miklos Szeredid5b48542019-09-10 15:04:08 +0200458 switch (args->opcode) {
Miklos Szeredi21f62172015-01-06 10:45:35 +0100459 case FUSE_CREATE:
Miklos Szeredid5b48542019-09-10 15:04:08 +0200460 args->in_args[0].size = sizeof(struct fuse_open_in);
Miklos Szeredi21f62172015-01-06 10:45:35 +0100461 break;
462 case FUSE_MKNOD:
Miklos Szeredid5b48542019-09-10 15:04:08 +0200463 args->in_args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
Miklos Szeredi21f62172015-01-06 10:45:35 +0100464 break;
465 }
466 }
467}
468
Max Reitz8f622e92020-04-20 17:59:34 +0200469static void fuse_force_creds(struct fuse_req *req)
Miklos Szeredie4137542019-09-10 15:04:08 +0200470{
Max Reitzfcee2162020-05-06 17:44:12 +0200471 struct fuse_conn *fc = req->fm->fc;
Max Reitz8f622e92020-04-20 17:59:34 +0200472
Miklos Szeredie4137542019-09-10 15:04:08 +0200473 req->in.h.uid = from_kuid_munged(fc->user_ns, current_fsuid());
474 req->in.h.gid = from_kgid_munged(fc->user_ns, current_fsgid());
475 req->in.h.pid = pid_nr_ns(task_pid(current), fc->pid_ns);
476}
477
YueHaibing5addcd52019-09-23 13:52:31 +0800478static void fuse_args_to_req(struct fuse_req *req, struct fuse_args *args)
Miklos Szeredi68583162019-09-10 15:04:09 +0200479{
Miklos Szeredi68583162019-09-10 15:04:09 +0200480 req->in.h.opcode = args->opcode;
481 req->in.h.nodeid = args->nodeid;
Miklos Szeredid4993772019-09-10 15:04:11 +0200482 req->args = args;
Miklos Szeredi3e8cb8b2020-02-13 09:16:07 +0100483 if (args->end)
484 __set_bit(FR_ASYNC, &req->flags);
Miklos Szeredi68583162019-09-10 15:04:09 +0200485}
486
Max Reitzfcee2162020-05-06 17:44:12 +0200487ssize_t fuse_simple_request(struct fuse_mount *fm, struct fuse_args *args)
Miklos Szeredi70781872014-12-12 09:49:05 +0100488{
Max Reitzfcee2162020-05-06 17:44:12 +0200489 struct fuse_conn *fc = fm->fc;
Miklos Szeredi70781872014-12-12 09:49:05 +0100490 struct fuse_req *req;
491 ssize_t ret;
492
Miklos Szeredic500eba2019-09-10 15:04:08 +0200493 if (args->force) {
Miklos Szeredie4137542019-09-10 15:04:08 +0200494 atomic_inc(&fc->num_waiting);
Max Reitzfcee2162020-05-06 17:44:12 +0200495 req = fuse_request_alloc(fm, GFP_KERNEL | __GFP_NOFAIL);
Miklos Szeredie4137542019-09-10 15:04:08 +0200496
497 if (!args->nocreds)
Max Reitz8f622e92020-04-20 17:59:34 +0200498 fuse_force_creds(req);
Miklos Szeredie4137542019-09-10 15:04:08 +0200499
500 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredic500eba2019-09-10 15:04:08 +0200501 __set_bit(FR_FORCE, &req->flags);
502 } else {
Miklos Szeredie4137542019-09-10 15:04:08 +0200503 WARN_ON(args->nocreds);
Max Reitzfcee2162020-05-06 17:44:12 +0200504 req = fuse_get_req(fm, false);
Miklos Szeredic500eba2019-09-10 15:04:08 +0200505 if (IS_ERR(req))
506 return PTR_ERR(req);
507 }
Miklos Szeredi70781872014-12-12 09:49:05 +0100508
Miklos Szeredi21f62172015-01-06 10:45:35 +0100509 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
510 fuse_adjust_compat(fc, args);
Miklos Szeredi68583162019-09-10 15:04:09 +0200511 fuse_args_to_req(req, args);
Miklos Szeredi21f62172015-01-06 10:45:35 +0100512
Miklos Szeredi454a7612019-09-10 15:04:08 +0200513 if (!args->noreply)
514 __set_bit(FR_ISREPLY, &req->flags);
Max Reitz8f622e92020-04-20 17:59:34 +0200515 __fuse_request_send(req);
Miklos Szeredi70781872014-12-12 09:49:05 +0100516 ret = req->out.h.error;
Miklos Szeredid5b48542019-09-10 15:04:08 +0200517 if (!ret && args->out_argvar) {
Miklos Szeredi093f38a2019-09-10 15:04:09 +0200518 BUG_ON(args->out_numargs == 0);
Miklos Szeredid4993772019-09-10 15:04:11 +0200519 ret = args->out_args[args->out_numargs - 1].size;
Miklos Szeredi70781872014-12-12 09:49:05 +0100520 }
Max Reitz8f622e92020-04-20 17:59:34 +0200521 fuse_put_request(req);
Miklos Szeredi70781872014-12-12 09:49:05 +0100522
523 return ret;
524}
525
Max Reitz8f622e92020-04-20 17:59:34 +0200526static bool fuse_request_queue_background(struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800527{
Max Reitzfcee2162020-05-06 17:44:12 +0200528 struct fuse_mount *fm = req->fm;
529 struct fuse_conn *fc = fm->fc;
Kirill Tkhai63825b42018-08-27 18:29:56 +0300530 bool queued = false;
531
532 WARN_ON(!test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200533 if (!test_bit(FR_WAITING, &req->flags)) {
534 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200535 atomic_inc(&fc->num_waiting);
536 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200537 __set_bit(FR_ISREPLY, &req->flags);
Kirill Tkhaiae2dffa2018-08-27 18:29:46 +0300538 spin_lock(&fc->bg_lock);
Kirill Tkhai63825b42018-08-27 18:29:56 +0300539 if (likely(fc->connected)) {
540 fc->num_background++;
541 if (fc->num_background == fc->max_background)
542 fc->blocked = 1;
Max Reitzfcee2162020-05-06 17:44:12 +0200543 if (fc->num_background == fc->congestion_threshold && fm->sb) {
544 set_bdi_congested(fm->sb->s_bdi, BLK_RW_SYNC);
545 set_bdi_congested(fm->sb->s_bdi, BLK_RW_ASYNC);
Kirill Tkhai63825b42018-08-27 18:29:56 +0300546 }
547 list_add_tail(&req->list, &fc->bg_queue);
548 flush_bg_queue(fc);
549 queued = true;
Miklos Szeredid12def12008-02-06 01:38:39 -0800550 }
Kirill Tkhaiae2dffa2018-08-27 18:29:46 +0300551 spin_unlock(&fc->bg_lock);
Kirill Tkhai63825b42018-08-27 18:29:56 +0300552
553 return queued;
Miklos Szeredid12def12008-02-06 01:38:39 -0800554}
555
Max Reitzfcee2162020-05-06 17:44:12 +0200556int fuse_simple_background(struct fuse_mount *fm, struct fuse_args *args,
Miklos Szeredi12597282019-09-10 15:04:10 +0200557 gfp_t gfp_flags)
558{
559 struct fuse_req *req;
560
561 if (args->force) {
562 WARN_ON(!args->nocreds);
Max Reitzfcee2162020-05-06 17:44:12 +0200563 req = fuse_request_alloc(fm, gfp_flags);
Miklos Szeredi12597282019-09-10 15:04:10 +0200564 if (!req)
565 return -ENOMEM;
566 __set_bit(FR_BACKGROUND, &req->flags);
567 } else {
568 WARN_ON(args->nocreds);
Max Reitzfcee2162020-05-06 17:44:12 +0200569 req = fuse_get_req(fm, true);
Miklos Szeredi12597282019-09-10 15:04:10 +0200570 if (IS_ERR(req))
571 return PTR_ERR(req);
572 }
573
574 fuse_args_to_req(req, args);
575
Max Reitz8f622e92020-04-20 17:59:34 +0200576 if (!fuse_request_queue_background(req)) {
577 fuse_put_request(req);
Miklos Szeredi12597282019-09-10 15:04:10 +0200578 return -ENOTCONN;
579 }
580
581 return 0;
582}
583EXPORT_SYMBOL_GPL(fuse_simple_background);
584
Max Reitzfcee2162020-05-06 17:44:12 +0200585static int fuse_simple_notify_reply(struct fuse_mount *fm,
Miklos Szeredi75b399d2019-09-10 15:04:11 +0200586 struct fuse_args *args, u64 unique)
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200587{
Miklos Szeredi75b399d2019-09-10 15:04:11 +0200588 struct fuse_req *req;
Max Reitzfcee2162020-05-06 17:44:12 +0200589 struct fuse_iqueue *fiq = &fm->fc->iq;
Miklos Szeredi75b399d2019-09-10 15:04:11 +0200590 int err = 0;
591
Max Reitzfcee2162020-05-06 17:44:12 +0200592 req = fuse_get_req(fm, false);
Miklos Szeredi75b399d2019-09-10 15:04:11 +0200593 if (IS_ERR(req))
594 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200595
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200596 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200597 req->in.h.unique = unique;
Miklos Szeredi75b399d2019-09-10 15:04:11 +0200598
599 fuse_args_to_req(req, args);
Miklos Szeredi75b399d2019-09-10 15:04:11 +0200600
Eric Biggers76e43c82019-09-08 20:15:18 -0700601 spin_lock(&fiq->lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200602 if (fiq->connected) {
Stefan Hajnocziae3aad72018-06-18 15:53:19 +0100603 queue_request_and_unlock(fiq, req);
Miklos Szeredi75b399d2019-09-10 15:04:11 +0200604 } else {
605 err = -ENODEV;
606 spin_unlock(&fiq->lock);
Max Reitz8f622e92020-04-20 17:59:34 +0200607 fuse_put_request(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200608 }
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200609
610 return err;
611}
612
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700613/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700614 * Lock the request. Up to the next unlock_request() there mustn't be
615 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700616 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700617 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200618static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700619{
620 int err = 0;
621 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200622 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200623 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700624 err = -ENOENT;
625 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200626 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200627 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700628 }
629 return err;
630}
631
632/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200633 * Unlock request. If it was aborted while locked, caller is responsible
634 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700635 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200636static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700637{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200638 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700639 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200640 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200641 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200642 err = -ENOENT;
643 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200644 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200645 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700646 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200647 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700648}
649
650struct fuse_copy_state {
651 int write;
652 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400653 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200654 struct pipe_buffer *pipebufs;
655 struct pipe_buffer *currbuf;
656 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700657 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700658 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700659 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200660 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200661 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700662};
663
Miklos Szeredidc008092015-07-01 16:25:58 +0200664static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400665 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700666{
667 memset(cs, 0, sizeof(*cs));
668 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400669 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700670}
671
672/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800673static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700674{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200675 if (cs->currbuf) {
676 struct pipe_buffer *buf = cs->currbuf;
677
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200678 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200679 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200680 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200681 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700682 if (cs->write) {
683 flush_dcache_page(cs->pg);
684 set_page_dirty_lock(cs->pg);
685 }
686 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700687 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200688 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700689}
690
691/*
692 * Get another pagefull of userspace buffer, and map it to kernel
693 * address space, and lock request
694 */
695static int fuse_copy_fill(struct fuse_copy_state *cs)
696{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200697 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700698 int err;
699
Miklos Szeredidc008092015-07-01 16:25:58 +0200700 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200701 if (err)
702 return err;
703
Miklos Szeredi334f4852005-09-09 13:10:27 -0700704 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200705 if (cs->pipebufs) {
706 struct pipe_buffer *buf = cs->pipebufs;
707
Miklos Szeredic3021622010-05-25 15:06:07 +0200708 if (!cs->write) {
Miklos Szeredifba597d2016-09-27 10:45:12 +0200709 err = pipe_buf_confirm(cs->pipe, buf);
Miklos Szeredic3021622010-05-25 15:06:07 +0200710 if (err)
711 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200712
Miklos Szeredic3021622010-05-25 15:06:07 +0200713 BUG_ON(!cs->nr_segs);
714 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200715 cs->pg = buf->page;
716 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200717 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200718 cs->pipebufs++;
719 cs->nr_segs--;
720 } else {
David Howells6718b6f2019-10-16 16:47:32 +0100721 if (cs->nr_segs >= cs->pipe->max_usage)
Miklos Szeredic3021622010-05-25 15:06:07 +0200722 return -EIO;
723
724 page = alloc_page(GFP_HIGHUSER);
725 if (!page)
726 return -ENOMEM;
727
728 buf->page = page;
729 buf->offset = 0;
730 buf->len = 0;
731
732 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200733 cs->pg = page;
734 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200735 cs->len = PAGE_SIZE;
736 cs->pipebufs++;
737 cs->nr_segs++;
738 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200739 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400740 size_t off;
741 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200742 if (err < 0)
743 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400744 BUG_ON(!err);
745 cs->len = err;
746 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200747 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400748 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700749 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700750
Miklos Szeredidc008092015-07-01 16:25:58 +0200751 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700752}
753
754/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800755static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700756{
757 unsigned ncpy = min(*size, cs->len);
758 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200759 void *pgaddr = kmap_atomic(cs->pg);
760 void *buf = pgaddr + cs->offset;
761
Miklos Szeredi334f4852005-09-09 13:10:27 -0700762 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200763 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700764 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200765 memcpy(*val, buf, ncpy);
766
767 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700768 *val += ncpy;
769 }
770 *size -= ncpy;
771 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200772 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700773 return ncpy;
774}
775
Miklos Szeredice534fb2010-05-25 15:06:07 +0200776static int fuse_check_page(struct page *page)
777{
778 if (page_mapcount(page) ||
779 page->mapping != NULL ||
Miklos Szeredice534fb2010-05-25 15:06:07 +0200780 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
781 ~(1 << PG_locked |
782 1 << PG_referenced |
783 1 << PG_uptodate |
784 1 << PG_lru |
785 1 << PG_active |
Miklos Szeredi912e9852021-06-18 21:16:42 +0200786 1 << PG_workingset |
Miklos Szeredia5005c32020-05-19 14:50:37 +0200787 1 << PG_reclaim |
788 1 << PG_waiters))) {
Miklos Szeredi00589382020-05-19 14:50:37 +0200789 dump_page(page, "fuse: trying to steal weird page");
Miklos Szeredice534fb2010-05-25 15:06:07 +0200790 return 1;
791 }
792 return 0;
793}
794
795static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
796{
797 int err;
798 struct page *oldpage = *pagep;
799 struct page *newpage;
800 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200801
Miklos Szeredid78092e2020-09-18 10:36:50 +0200802 get_page(oldpage);
Miklos Szeredidc008092015-07-01 16:25:58 +0200803 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200804 if (err)
Miklos Szeredid78092e2020-09-18 10:36:50 +0200805 goto out_put_old;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200806
Miklos Szeredice534fb2010-05-25 15:06:07 +0200807 fuse_copy_finish(cs);
808
Miklos Szeredifba597d2016-09-27 10:45:12 +0200809 err = pipe_buf_confirm(cs->pipe, buf);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200810 if (err)
Miklos Szeredid78092e2020-09-18 10:36:50 +0200811 goto out_put_old;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200812
813 BUG_ON(!cs->nr_segs);
814 cs->currbuf = buf;
815 cs->len = buf->len;
816 cs->pipebufs++;
817 cs->nr_segs--;
818
819 if (cs->len != PAGE_SIZE)
820 goto out_fallback;
821
Christoph Hellwigc928f642020-05-20 17:58:16 +0200822 if (!pipe_buf_try_steal(cs->pipe, buf))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200823 goto out_fallback;
824
825 newpage = buf->page;
826
Miklos Szerediaa991b32015-02-26 11:45:47 +0100827 if (!PageUptodate(newpage))
828 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200829
830 ClearPageMappedToDisk(newpage);
831
832 if (fuse_check_page(newpage) != 0)
833 goto out_fallback_unlock;
834
Miklos Szeredice534fb2010-05-25 15:06:07 +0200835 /*
836 * This is a new and locked page, it shouldn't be mapped or
837 * have any special flags on it
838 */
839 if (WARN_ON(page_mapped(oldpage)))
840 goto out_fallback_unlock;
841 if (WARN_ON(page_has_private(oldpage)))
842 goto out_fallback_unlock;
843 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
844 goto out_fallback_unlock;
845 if (WARN_ON(PageMlocked(oldpage)))
846 goto out_fallback_unlock;
847
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700848 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200849 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700850 unlock_page(newpage);
Miklos Szeredid78092e2020-09-18 10:36:50 +0200851 goto out_put_old;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200852 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700853
Miklos Szeredi8f4d0712021-11-25 14:05:18 +0100854 get_page(newpage);
855
856 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
857 lru_cache_add(newpage);
858
Miklos Szeredib05eea12021-11-02 11:10:37 +0100859 /*
860 * Release while we have extra ref on stolen page. Otherwise
861 * anon_pipe_buf_release() might think the page can be reused.
862 */
863 pipe_buf_release(cs->pipe, buf);
864
Miklos Szeredice534fb2010-05-25 15:06:07 +0200865 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200866 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200867 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200868 err = -ENOENT;
869 else
870 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200871 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200872
873 if (err) {
874 unlock_page(newpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300875 put_page(newpage);
Miklos Szeredid78092e2020-09-18 10:36:50 +0200876 goto out_put_old;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200877 }
878
879 unlock_page(oldpage);
Miklos Szeredid78092e2020-09-18 10:36:50 +0200880 /* Drop ref for ap->pages[] array */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300881 put_page(oldpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200882 cs->len = 0;
883
Miklos Szeredid78092e2020-09-18 10:36:50 +0200884 err = 0;
885out_put_old:
886 /* Drop ref obtained in this function */
887 put_page(oldpage);
888 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200889
890out_fallback_unlock:
891 unlock_page(newpage);
892out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200893 cs->pg = buf->page;
894 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200895
Miklos Szeredidc008092015-07-01 16:25:58 +0200896 err = lock_request(cs->req);
Miklos Szeredid78092e2020-09-18 10:36:50 +0200897 if (!err)
898 err = 1;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200899
Miklos Szeredid78092e2020-09-18 10:36:50 +0200900 goto out_put_old;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200901}
902
Miklos Szeredic3021622010-05-25 15:06:07 +0200903static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
904 unsigned offset, unsigned count)
905{
906 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200907 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200908
David Howells6718b6f2019-10-16 16:47:32 +0100909 if (cs->nr_segs >= cs->pipe->max_usage)
Miklos Szeredic3021622010-05-25 15:06:07 +0200910 return -EIO;
911
Miklos Szeredid78092e2020-09-18 10:36:50 +0200912 get_page(page);
Miklos Szeredidc008092015-07-01 16:25:58 +0200913 err = unlock_request(cs->req);
Miklos Szeredid78092e2020-09-18 10:36:50 +0200914 if (err) {
915 put_page(page);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200916 return err;
Miklos Szeredid78092e2020-09-18 10:36:50 +0200917 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200918
Miklos Szeredic3021622010-05-25 15:06:07 +0200919 fuse_copy_finish(cs);
920
921 buf = cs->pipebufs;
Miklos Szeredic3021622010-05-25 15:06:07 +0200922 buf->page = page;
923 buf->offset = offset;
924 buf->len = count;
925
926 cs->pipebufs++;
927 cs->nr_segs++;
928 cs->len = 0;
929
930 return 0;
931}
932
Miklos Szeredi334f4852005-09-09 13:10:27 -0700933/*
934 * Copy a page in the request to/from the userspace buffer. Must be
935 * done atomically
936 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200937static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800938 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700939{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200940 int err;
941 struct page *page = *pagep;
942
Miklos Szeredib6777c42010-10-26 14:22:27 -0700943 if (page && zeroing && count < PAGE_SIZE)
944 clear_highpage(page);
945
Miklos Szeredi334f4852005-09-09 13:10:27 -0700946 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200947 if (cs->write && cs->pipebufs && page) {
948 return fuse_ref_page(cs, page, offset, count);
949 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200950 if (cs->move_pages && page &&
951 offset == 0 && count == PAGE_SIZE) {
952 err = fuse_try_move_page(cs, pagep);
953 if (err <= 0)
954 return err;
955 } else {
956 err = fuse_copy_fill(cs);
957 if (err)
958 return err;
959 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100960 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700961 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800962 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700963 void *buf = mapaddr + offset;
964 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +0800965 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700966 } else
967 offset += fuse_copy_do(cs, NULL, &count);
968 }
969 if (page && !cs->write)
970 flush_dcache_page(page);
971 return 0;
972}
973
974/* Copy pages in the request to/from userspace buffer */
975static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
976 int zeroing)
977{
978 unsigned i;
979 struct fuse_req *req = cs->req;
Miklos Szeredi05ea48c2019-09-10 15:04:11 +0200980 struct fuse_args_pages *ap = container_of(req->args, typeof(*ap), args);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700981
Miklos Szeredi05ea48c2019-09-10 15:04:11 +0200982
983 for (i = 0; i < ap->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200984 int err;
Miklos Szeredi05ea48c2019-09-10 15:04:11 +0200985 unsigned int offset = ap->descs[i].offset;
986 unsigned int count = min(nbytes, ap->descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200987
Miklos Szeredi05ea48c2019-09-10 15:04:11 +0200988 err = fuse_copy_page(cs, &ap->pages[i], offset, count, zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700989 if (err)
990 return err;
991
992 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700993 }
994 return 0;
995}
996
997/* Copy a single argument in the request to/from userspace buffer */
998static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
999{
1000 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001001 if (!cs->len) {
1002 int err = fuse_copy_fill(cs);
1003 if (err)
1004 return err;
1005 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001006 fuse_copy_do(cs, &val, &size);
1007 }
1008 return 0;
1009}
1010
1011/* Copy request arguments to/from userspace buffer */
1012static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1013 unsigned argpages, struct fuse_arg *args,
1014 int zeroing)
1015{
1016 int err = 0;
1017 unsigned i;
1018
1019 for (i = 0; !err && i < numargs; i++) {
1020 struct fuse_arg *arg = &args[i];
1021 if (i == numargs - 1 && argpages)
1022 err = fuse_copy_pages(cs, arg->size, zeroing);
1023 else
1024 err = fuse_copy_one(cs, arg->value, arg->size);
1025 }
1026 return err;
1027}
1028
Miklos Szeredif88996a2015-07-01 16:26:01 +02001029static int forget_pending(struct fuse_iqueue *fiq)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001030{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001031 return fiq->forget_list_head.next != NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001032}
1033
Miklos Szeredif88996a2015-07-01 16:26:01 +02001034static int request_pending(struct fuse_iqueue *fiq)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001035{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001036 return !list_empty(&fiq->pending) || !list_empty(&fiq->interrupts) ||
1037 forget_pending(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001038}
1039
Miklos Szeredi334f4852005-09-09 13:10:27 -07001040/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001041 * Transfer an interrupt request to userspace
1042 *
1043 * Unlike other requests this is assembled on demand, without a need
1044 * to allocate a separate fuse_req structure.
1045 *
Eric Biggers76e43c82019-09-08 20:15:18 -07001046 * Called with fiq->lock held, releases it
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001047 */
Miklos Szeredifd22d622015-07-01 16:26:03 +02001048static int fuse_read_interrupt(struct fuse_iqueue *fiq,
1049 struct fuse_copy_state *cs,
Miklos Szeredic3021622010-05-25 15:06:07 +02001050 size_t nbytes, struct fuse_req *req)
Eric Biggers76e43c82019-09-08 20:15:18 -07001051__releases(fiq->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001052{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001053 struct fuse_in_header ih;
1054 struct fuse_interrupt_in arg;
1055 unsigned reqsize = sizeof(ih) + sizeof(arg);
1056 int err;
1057
1058 list_del_init(&req->intr_entry);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001059 memset(&ih, 0, sizeof(ih));
1060 memset(&arg, 0, sizeof(arg));
1061 ih.len = reqsize;
1062 ih.opcode = FUSE_INTERRUPT;
Kirill Tkhai3a5358d2018-09-11 13:12:05 +03001063 ih.unique = (req->in.h.unique | FUSE_INT_REQ_BIT);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001064 arg.unique = req->in.h.unique;
1065
Eric Biggers76e43c82019-09-08 20:15:18 -07001066 spin_unlock(&fiq->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001067 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001068 return -EINVAL;
1069
Miklos Szeredic3021622010-05-25 15:06:07 +02001070 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001071 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001072 err = fuse_copy_one(cs, &arg, sizeof(arg));
1073 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001074
1075 return err ? err : reqsize;
1076}
1077
Vivek Goyal4388c5a2019-06-05 15:50:43 -04001078struct fuse_forget_link *fuse_dequeue_forget(struct fuse_iqueue *fiq,
1079 unsigned int max,
1080 unsigned int *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001081{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001082 struct fuse_forget_link *head = fiq->forget_list_head.next;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001083 struct fuse_forget_link **newhead = &head;
1084 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001085
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001086 for (count = 0; *newhead != NULL && count < max; count++)
1087 newhead = &(*newhead)->next;
1088
Miklos Szeredif88996a2015-07-01 16:26:01 +02001089 fiq->forget_list_head.next = *newhead;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001090 *newhead = NULL;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001091 if (fiq->forget_list_head.next == NULL)
1092 fiq->forget_list_tail = &fiq->forget_list_head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001093
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001094 if (countp != NULL)
1095 *countp = count;
1096
1097 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001098}
Vivek Goyal4388c5a2019-06-05 15:50:43 -04001099EXPORT_SYMBOL(fuse_dequeue_forget);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001100
Miklos Szeredifd22d622015-07-01 16:26:03 +02001101static int fuse_read_single_forget(struct fuse_iqueue *fiq,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001102 struct fuse_copy_state *cs,
1103 size_t nbytes)
Eric Biggers76e43c82019-09-08 20:15:18 -07001104__releases(fiq->lock)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001105{
1106 int err;
Vivek Goyal4388c5a2019-06-05 15:50:43 -04001107 struct fuse_forget_link *forget = fuse_dequeue_forget(fiq, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001108 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001109 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001110 };
1111 struct fuse_in_header ih = {
1112 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001113 .nodeid = forget->forget_one.nodeid,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001114 .unique = fuse_get_unique(fiq),
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001115 .len = sizeof(ih) + sizeof(arg),
1116 };
1117
Eric Biggers76e43c82019-09-08 20:15:18 -07001118 spin_unlock(&fiq->lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001119 kfree(forget);
1120 if (nbytes < ih.len)
1121 return -EINVAL;
1122
1123 err = fuse_copy_one(cs, &ih, sizeof(ih));
1124 if (!err)
1125 err = fuse_copy_one(cs, &arg, sizeof(arg));
1126 fuse_copy_finish(cs);
1127
1128 if (err)
1129 return err;
1130
1131 return ih.len;
1132}
1133
Miklos Szeredifd22d622015-07-01 16:26:03 +02001134static int fuse_read_batch_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001135 struct fuse_copy_state *cs, size_t nbytes)
Eric Biggers76e43c82019-09-08 20:15:18 -07001136__releases(fiq->lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001137{
1138 int err;
1139 unsigned max_forgets;
1140 unsigned count;
1141 struct fuse_forget_link *head;
1142 struct fuse_batch_forget_in arg = { .count = 0 };
1143 struct fuse_in_header ih = {
1144 .opcode = FUSE_BATCH_FORGET,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001145 .unique = fuse_get_unique(fiq),
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001146 .len = sizeof(ih) + sizeof(arg),
1147 };
1148
1149 if (nbytes < ih.len) {
Eric Biggers76e43c82019-09-08 20:15:18 -07001150 spin_unlock(&fiq->lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001151 return -EINVAL;
1152 }
1153
1154 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
Vivek Goyal4388c5a2019-06-05 15:50:43 -04001155 head = fuse_dequeue_forget(fiq, max_forgets, &count);
Eric Biggers76e43c82019-09-08 20:15:18 -07001156 spin_unlock(&fiq->lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001157
1158 arg.count = count;
1159 ih.len += count * sizeof(struct fuse_forget_one);
1160 err = fuse_copy_one(cs, &ih, sizeof(ih));
1161 if (!err)
1162 err = fuse_copy_one(cs, &arg, sizeof(arg));
1163
1164 while (head) {
1165 struct fuse_forget_link *forget = head;
1166
1167 if (!err) {
1168 err = fuse_copy_one(cs, &forget->forget_one,
1169 sizeof(forget->forget_one));
1170 }
1171 head = forget->next;
1172 kfree(forget);
1173 }
1174
1175 fuse_copy_finish(cs);
1176
1177 if (err)
1178 return err;
1179
1180 return ih.len;
1181}
1182
Miklos Szeredifd22d622015-07-01 16:26:03 +02001183static int fuse_read_forget(struct fuse_conn *fc, struct fuse_iqueue *fiq,
1184 struct fuse_copy_state *cs,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001185 size_t nbytes)
Eric Biggers76e43c82019-09-08 20:15:18 -07001186__releases(fiq->lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001187{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001188 if (fc->minor < 16 || fiq->forget_list_head.next->next == NULL)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001189 return fuse_read_single_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001190 else
Miklos Szeredifd22d622015-07-01 16:26:03 +02001191 return fuse_read_batch_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001192}
1193
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001194/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001195 * Read a single request into the userspace filesystem's buffer. This
1196 * function waits until a request is available, then removes it from
1197 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001198 * no reply is needed (FORGET) or request has been aborted or there
1199 * was an error during the copying then it's finished by calling
Stefan Hajnoczi04ec5af2018-06-21 09:33:40 +01001200 * fuse_request_end(). Otherwise add it to the processing list, and set
Miklos Szeredi334f4852005-09-09 13:10:27 -07001201 * the 'sent' flag.
1202 */
Miklos Szeredic36960462015-07-01 16:26:09 +02001203static ssize_t fuse_dev_do_read(struct fuse_dev *fud, struct file *file,
Miklos Szeredic3021622010-05-25 15:06:07 +02001204 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001205{
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001206 ssize_t err;
Miklos Szeredic36960462015-07-01 16:26:09 +02001207 struct fuse_conn *fc = fud->fc;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001208 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic36960462015-07-01 16:26:09 +02001209 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001210 struct fuse_req *req;
Miklos Szeredid4993772019-09-10 15:04:11 +02001211 struct fuse_args *args;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001212 unsigned reqsize;
Kirill Tkhaibe2ff422018-09-11 13:12:14 +03001213 unsigned int hash;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001214
Kirill Smelkov1fb027d2019-07-08 17:03:31 +00001215 /*
1216 * Require sane minimum read buffer - that has capacity for fixed part
1217 * of any request header + negotiated max_write room for data.
1218 *
1219 * Historically libfuse reserves 4K for fixed header room, but e.g.
1220 * GlusterFS reserves only 80 bytes
1221 *
1222 * = `sizeof(fuse_in_header) + sizeof(fuse_write_in)`
1223 *
1224 * which is the absolute minimum any sane filesystem should be using
1225 * for header room.
1226 */
1227 if (nbytes < max_t(size_t, FUSE_MIN_READ_BUFFER,
1228 sizeof(struct fuse_in_header) +
1229 sizeof(struct fuse_write_in) +
1230 fc->max_write))
1231 return -EINVAL;
1232
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001233 restart:
Eric Biggers76e43c82019-09-08 20:15:18 -07001234 for (;;) {
1235 spin_lock(&fiq->lock);
1236 if (!fiq->connected || request_pending(fiq))
1237 break;
1238 spin_unlock(&fiq->lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001239
Eric Biggers76e43c82019-09-08 20:15:18 -07001240 if (file->f_flags & O_NONBLOCK)
1241 return -EAGAIN;
1242 err = wait_event_interruptible_exclusive(fiq->waitq,
Miklos Szeredi52509212015-07-01 16:26:03 +02001243 !fiq->connected || request_pending(fiq));
Eric Biggers76e43c82019-09-08 20:15:18 -07001244 if (err)
1245 return err;
1246 }
Miklos Szeredi52509212015-07-01 16:26:03 +02001247
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01001248 if (!fiq->connected) {
Miklos Szeredieb98e3bd2019-01-24 10:40:16 +01001249 err = fc->aborted ? -ECONNABORTED : -ENODEV;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001250 goto err_unlock;
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01001251 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001252
Miklos Szeredif88996a2015-07-01 16:26:01 +02001253 if (!list_empty(&fiq->interrupts)) {
1254 req = list_entry(fiq->interrupts.next, struct fuse_req,
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001255 intr_entry);
Miklos Szeredifd22d622015-07-01 16:26:03 +02001256 return fuse_read_interrupt(fiq, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001257 }
1258
Miklos Szeredif88996a2015-07-01 16:26:01 +02001259 if (forget_pending(fiq)) {
1260 if (list_empty(&fiq->pending) || fiq->forget_batch-- > 0)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001261 return fuse_read_forget(fc, fiq, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001262
Miklos Szeredif88996a2015-07-01 16:26:01 +02001263 if (fiq->forget_batch <= -8)
1264 fiq->forget_batch = 16;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001265 }
1266
Miklos Szeredif88996a2015-07-01 16:26:01 +02001267 req = list_entry(fiq->pending.next, struct fuse_req, list);
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001268 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredief759252015-07-01 16:26:02 +02001269 list_del_init(&req->list);
Eric Biggers76e43c82019-09-08 20:15:18 -07001270 spin_unlock(&fiq->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001271
Miklos Szeredid4993772019-09-10 15:04:11 +02001272 args = req->args;
1273 reqsize = req->in.h.len;
Miklos Szeredi5d6d3a32017-09-12 16:57:53 +02001274
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001275 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001276 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001277 req->out.h.error = -EIO;
1278 /* SETXATTR is special, since it may contain too large data */
Miklos Szeredid4993772019-09-10 15:04:11 +02001279 if (args->opcode == FUSE_SETXATTR)
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001280 req->out.h.error = -E2BIG;
Max Reitz8f622e92020-04-20 17:59:34 +02001281 fuse_request_end(req);
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001282 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001283 }
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001284 spin_lock(&fpq->lock);
Miklos Szeredibb7ee902021-06-22 09:15:35 +02001285 /*
1286 * Must not put request on fpq->io queue after having been shut down by
1287 * fuse_abort_conn()
1288 */
1289 if (!fpq->connected) {
1290 req->out.h.error = err = -ECONNABORTED;
1291 goto out_end;
1292
1293 }
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001294 list_add(&req->list, &fpq->io);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001295 spin_unlock(&fpq->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001296 cs->req = req;
Miklos Szeredid4993772019-09-10 15:04:11 +02001297 err = fuse_copy_one(cs, &req->in.h, sizeof(req->in.h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001298 if (!err)
Miklos Szeredid4993772019-09-10 15:04:11 +02001299 err = fuse_copy_args(cs, args->in_numargs, args->in_pages,
1300 (struct fuse_arg *) args->in_args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001301 fuse_copy_finish(cs);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001302 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001303 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001304 if (!fpq->connected) {
Miklos Szeredieb98e3bd2019-01-24 10:40:16 +01001305 err = fc->aborted ? -ECONNABORTED : -ENODEV;
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001306 goto out_end;
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001307 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001308 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001309 req->out.h.error = -EIO;
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001310 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001311 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001312 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001313 err = reqsize;
1314 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001315 }
Kirill Tkhaibe2ff422018-09-11 13:12:14 +03001316 hash = fuse_req_hash(req->in.h.unique);
1317 list_move_tail(&req->list, &fpq->processing[hash]);
Kirill Tkhaibc78abb2018-09-25 12:28:55 +03001318 __fuse_get_request(req);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001319 set_bit(FR_SENT, &req->flags);
Miklos Szeredi4c316f22018-09-28 16:43:22 +02001320 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001321 /* matches barrier in request_wait_answer() */
1322 smp_mb__after_atomic();
1323 if (test_bit(FR_INTERRUPTED, &req->flags))
Max Reitz8f622e92020-04-20 17:59:34 +02001324 queue_interrupt(req);
1325 fuse_put_request(req);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001326
Miklos Szeredi334f4852005-09-09 13:10:27 -07001327 return reqsize;
1328
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001329out_end:
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001330 if (!test_bit(FR_PRIVATE, &req->flags))
1331 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001332 spin_unlock(&fpq->lock);
Max Reitz8f622e92020-04-20 17:59:34 +02001333 fuse_request_end(req);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001334 return err;
1335
Miklos Szeredi334f4852005-09-09 13:10:27 -07001336 err_unlock:
Eric Biggers76e43c82019-09-08 20:15:18 -07001337 spin_unlock(&fiq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001338 return err;
1339}
1340
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001341static int fuse_dev_open(struct inode *inode, struct file *file)
1342{
1343 /*
1344 * The fuse device's file's private_data is used to hold
1345 * the fuse_conn(ection) when it is mounted, and is used to
1346 * keep track of whether the file has been mounted already.
1347 */
1348 file->private_data = NULL;
1349 return 0;
1350}
1351
Al Virofbdbacc2015-04-03 21:53:39 -04001352static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001353{
1354 struct fuse_copy_state cs;
1355 struct file *file = iocb->ki_filp;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001356 struct fuse_dev *fud = fuse_get_dev(file);
1357
1358 if (!fud)
Miklos Szeredic3021622010-05-25 15:06:07 +02001359 return -EPERM;
1360
Al Virofbdbacc2015-04-03 21:53:39 -04001361 if (!iter_is_iovec(to))
1362 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001363
Miklos Szeredidc008092015-07-01 16:25:58 +02001364 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001365
Miklos Szeredic36960462015-07-01 16:26:09 +02001366 return fuse_dev_do_read(fud, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001367}
1368
Miklos Szeredic3021622010-05-25 15:06:07 +02001369static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1370 struct pipe_inode_info *pipe,
1371 size_t len, unsigned int flags)
1372{
Al Virod82718e2016-09-17 22:56:25 -04001373 int total, ret;
Miklos Szeredic3021622010-05-25 15:06:07 +02001374 int page_nr = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +02001375 struct pipe_buffer *bufs;
1376 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001377 struct fuse_dev *fud = fuse_get_dev(in);
1378
1379 if (!fud)
Miklos Szeredic3021622010-05-25 15:06:07 +02001380 return -EPERM;
1381
David Howells6718b6f2019-10-16 16:47:32 +01001382 bufs = kvmalloc_array(pipe->max_usage, sizeof(struct pipe_buffer),
Andrey Ryabinind6d931a2018-07-17 19:00:34 +03001383 GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001384 if (!bufs)
1385 return -ENOMEM;
1386
Miklos Szeredidc008092015-07-01 16:25:58 +02001387 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001388 cs.pipebufs = bufs;
1389 cs.pipe = pipe;
Miklos Szeredic36960462015-07-01 16:26:09 +02001390 ret = fuse_dev_do_read(fud, in, &cs, len);
Miklos Szeredic3021622010-05-25 15:06:07 +02001391 if (ret < 0)
1392 goto out;
1393
David Howells6718b6f2019-10-16 16:47:32 +01001394 if (pipe_occupancy(pipe->head, pipe->tail) + cs.nr_segs > pipe->max_usage) {
Miklos Szeredic3021622010-05-25 15:06:07 +02001395 ret = -EIO;
Al Virod82718e2016-09-17 22:56:25 -04001396 goto out;
Miklos Szeredic3021622010-05-25 15:06:07 +02001397 }
1398
Al Virod82718e2016-09-17 22:56:25 -04001399 for (ret = total = 0; page_nr < cs.nr_segs; total += ret) {
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001400 /*
1401 * Need to be careful about this. Having buf->ops in module
1402 * code can Oops if the buffer persists after module unload.
1403 */
Al Virod82718e2016-09-17 22:56:25 -04001404 bufs[page_nr].ops = &nosteal_pipe_buf_ops;
Miklos Szeredi84588a92017-02-16 15:08:20 +01001405 bufs[page_nr].flags = 0;
Al Virod82718e2016-09-17 22:56:25 -04001406 ret = add_to_pipe(pipe, &bufs[page_nr++]);
1407 if (unlikely(ret < 0))
1408 break;
Miklos Szeredic3021622010-05-25 15:06:07 +02001409 }
Al Virod82718e2016-09-17 22:56:25 -04001410 if (total)
1411 ret = total;
Miklos Szeredic3021622010-05-25 15:06:07 +02001412out:
1413 for (; page_nr < cs.nr_segs; page_nr++)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001414 put_page(bufs[page_nr].page);
Miklos Szeredic3021622010-05-25 15:06:07 +02001415
Andrey Ryabinind6d931a2018-07-17 19:00:34 +03001416 kvfree(bufs);
Miklos Szeredic3021622010-05-25 15:06:07 +02001417 return ret;
1418}
1419
Tejun Heo95668a62008-11-26 12:03:55 +01001420static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1421 struct fuse_copy_state *cs)
1422{
1423 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001424 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001425
1426 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001427 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001428
1429 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1430 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001431 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001432
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001433 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001434 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001435
1436err:
1437 fuse_copy_finish(cs);
1438 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001439}
1440
John Muir3b463ae2009-05-31 11:13:57 -04001441static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1442 struct fuse_copy_state *cs)
1443{
1444 struct fuse_notify_inval_inode_out outarg;
1445 int err = -EINVAL;
1446
1447 if (size != sizeof(outarg))
1448 goto err;
1449
1450 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1451 if (err)
1452 goto err;
1453 fuse_copy_finish(cs);
1454
1455 down_read(&fc->killsb);
Max Reitzfcee2162020-05-06 17:44:12 +02001456 err = fuse_reverse_inval_inode(fc, outarg.ino,
1457 outarg.off, outarg.len);
John Muir3b463ae2009-05-31 11:13:57 -04001458 up_read(&fc->killsb);
1459 return err;
1460
1461err:
1462 fuse_copy_finish(cs);
1463 return err;
1464}
1465
1466static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1467 struct fuse_copy_state *cs)
1468{
1469 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001470 int err = -ENOMEM;
1471 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001472 struct qstr name;
1473
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001474 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1475 if (!buf)
1476 goto err;
1477
1478 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001479 if (size < sizeof(outarg))
1480 goto err;
1481
1482 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1483 if (err)
1484 goto err;
1485
1486 err = -ENAMETOOLONG;
1487 if (outarg.namelen > FUSE_NAME_MAX)
1488 goto err;
1489
Miklos Szeredic2183d12011-08-24 10:20:17 +02001490 err = -EINVAL;
1491 if (size != sizeof(outarg) + outarg.namelen + 1)
1492 goto err;
1493
John Muir3b463ae2009-05-31 11:13:57 -04001494 name.name = buf;
1495 name.len = outarg.namelen;
1496 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1497 if (err)
1498 goto err;
1499 fuse_copy_finish(cs);
1500 buf[outarg.namelen] = 0;
John Muir3b463ae2009-05-31 11:13:57 -04001501
1502 down_read(&fc->killsb);
Max Reitzfcee2162020-05-06 17:44:12 +02001503 err = fuse_reverse_inval_entry(fc, outarg.parent, 0, &name);
John Muir451d0f52011-12-06 21:50:06 +01001504 up_read(&fc->killsb);
1505 kfree(buf);
1506 return err;
1507
1508err:
1509 kfree(buf);
1510 fuse_copy_finish(cs);
1511 return err;
1512}
1513
1514static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1515 struct fuse_copy_state *cs)
1516{
1517 struct fuse_notify_delete_out outarg;
1518 int err = -ENOMEM;
1519 char *buf;
1520 struct qstr name;
1521
1522 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1523 if (!buf)
1524 goto err;
1525
1526 err = -EINVAL;
1527 if (size < sizeof(outarg))
1528 goto err;
1529
1530 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1531 if (err)
1532 goto err;
1533
1534 err = -ENAMETOOLONG;
1535 if (outarg.namelen > FUSE_NAME_MAX)
1536 goto err;
1537
1538 err = -EINVAL;
1539 if (size != sizeof(outarg) + outarg.namelen + 1)
1540 goto err;
1541
1542 name.name = buf;
1543 name.len = outarg.namelen;
1544 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1545 if (err)
1546 goto err;
1547 fuse_copy_finish(cs);
1548 buf[outarg.namelen] = 0;
John Muir451d0f52011-12-06 21:50:06 +01001549
1550 down_read(&fc->killsb);
Max Reitzfcee2162020-05-06 17:44:12 +02001551 err = fuse_reverse_inval_entry(fc, outarg.parent, outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001552 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001553 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001554 return err;
1555
1556err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001557 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001558 fuse_copy_finish(cs);
1559 return err;
1560}
1561
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001562static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1563 struct fuse_copy_state *cs)
1564{
1565 struct fuse_notify_store_out outarg;
1566 struct inode *inode;
1567 struct address_space *mapping;
1568 u64 nodeid;
1569 int err;
1570 pgoff_t index;
1571 unsigned int offset;
1572 unsigned int num;
1573 loff_t file_size;
1574 loff_t end;
1575
1576 err = -EINVAL;
1577 if (size < sizeof(outarg))
1578 goto out_finish;
1579
1580 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1581 if (err)
1582 goto out_finish;
1583
1584 err = -EINVAL;
1585 if (size - sizeof(outarg) != outarg.size)
1586 goto out_finish;
1587
1588 nodeid = outarg.nodeid;
1589
1590 down_read(&fc->killsb);
1591
1592 err = -ENOENT;
Max Reitzfcee2162020-05-06 17:44:12 +02001593 inode = fuse_ilookup(fc, nodeid, NULL);
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001594 if (!inode)
1595 goto out_up_killsb;
1596
1597 mapping = inode->i_mapping;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001598 index = outarg.offset >> PAGE_SHIFT;
1599 offset = outarg.offset & ~PAGE_MASK;
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001600 file_size = i_size_read(inode);
1601 end = outarg.offset + outarg.size;
1602 if (end > file_size) {
1603 file_size = end;
1604 fuse_write_update_size(inode, file_size);
1605 }
1606
1607 num = outarg.size;
1608 while (num) {
1609 struct page *page;
1610 unsigned int this_num;
1611
1612 err = -ENOMEM;
1613 page = find_or_create_page(mapping, index,
1614 mapping_gfp_mask(mapping));
1615 if (!page)
1616 goto out_iput;
1617
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001618 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001619 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001620 if (!err && offset == 0 &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001621 (this_num == PAGE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001622 SetPageUptodate(page);
1623 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001624 put_page(page);
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001625
1626 if (err)
1627 goto out_iput;
1628
1629 num -= this_num;
1630 offset = 0;
1631 index++;
1632 }
1633
1634 err = 0;
1635
1636out_iput:
1637 iput(inode);
1638out_up_killsb:
1639 up_read(&fc->killsb);
1640out_finish:
1641 fuse_copy_finish(cs);
1642 return err;
1643}
1644
Miklos Szeredi75b399d2019-09-10 15:04:11 +02001645struct fuse_retrieve_args {
1646 struct fuse_args_pages ap;
1647 struct fuse_notify_retrieve_in inarg;
1648};
1649
Max Reitzfcee2162020-05-06 17:44:12 +02001650static void fuse_retrieve_end(struct fuse_mount *fm, struct fuse_args *args,
Miklos Szeredi75b399d2019-09-10 15:04:11 +02001651 int error)
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001652{
Miklos Szeredi75b399d2019-09-10 15:04:11 +02001653 struct fuse_retrieve_args *ra =
1654 container_of(args, typeof(*ra), ap.args);
1655
1656 release_pages(ra->ap.pages, ra->ap.num_pages);
1657 kfree(ra);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001658}
1659
Max Reitzfcee2162020-05-06 17:44:12 +02001660static int fuse_retrieve(struct fuse_mount *fm, struct inode *inode,
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001661 struct fuse_notify_retrieve_out *outarg)
1662{
1663 int err;
1664 struct address_space *mapping = inode->i_mapping;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001665 pgoff_t index;
1666 loff_t file_size;
1667 unsigned int num;
1668 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001669 size_t total_len = 0;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001670 unsigned int num_pages;
Max Reitzfcee2162020-05-06 17:44:12 +02001671 struct fuse_conn *fc = fm->fc;
Miklos Szeredi75b399d2019-09-10 15:04:11 +02001672 struct fuse_retrieve_args *ra;
1673 size_t args_size = sizeof(*ra);
1674 struct fuse_args_pages *ap;
1675 struct fuse_args *args;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001676
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001677 offset = outarg->offset & ~PAGE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001678 file_size = i_size_read(inode);
1679
Kirill Smelkov76406822019-03-27 10:15:19 +00001680 num = min(outarg->size, fc->max_write);
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001681 if (outarg->offset > file_size)
1682 num = 0;
1683 else if (outarg->offset + num > file_size)
1684 num = file_size - outarg->offset;
1685
1686 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
Constantine Shulyupin5da784c2018-09-06 15:37:06 +03001687 num_pages = min(num_pages, fc->max_pages);
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001688
Miklos Szeredi75b399d2019-09-10 15:04:11 +02001689 args_size += num_pages * (sizeof(ap->pages[0]) + sizeof(ap->descs[0]));
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001690
Miklos Szeredi75b399d2019-09-10 15:04:11 +02001691 ra = kzalloc(args_size, GFP_KERNEL);
1692 if (!ra)
1693 return -ENOMEM;
1694
1695 ap = &ra->ap;
1696 ap->pages = (void *) (ra + 1);
1697 ap->descs = (void *) (ap->pages + num_pages);
1698
1699 args = &ap->args;
1700 args->nodeid = outarg->nodeid;
1701 args->opcode = FUSE_NOTIFY_REPLY;
1702 args->in_numargs = 2;
1703 args->in_pages = true;
1704 args->end = fuse_retrieve_end;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001705
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001706 index = outarg->offset >> PAGE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001707
Miklos Szeredi75b399d2019-09-10 15:04:11 +02001708 while (num && ap->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001709 struct page *page;
1710 unsigned int this_num;
1711
1712 page = find_get_page(mapping, index);
1713 if (!page)
1714 break;
1715
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001716 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
Miklos Szeredi75b399d2019-09-10 15:04:11 +02001717 ap->pages[ap->num_pages] = page;
1718 ap->descs[ap->num_pages].offset = offset;
1719 ap->descs[ap->num_pages].length = this_num;
1720 ap->num_pages++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001721
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001722 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001723 num -= this_num;
1724 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001725 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001726 }
Miklos Szeredi75b399d2019-09-10 15:04:11 +02001727 ra->inarg.offset = outarg->offset;
1728 ra->inarg.size = total_len;
1729 args->in_args[0].size = sizeof(ra->inarg);
1730 args->in_args[0].value = &ra->inarg;
1731 args->in_args[1].size = total_len;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001732
Max Reitzfcee2162020-05-06 17:44:12 +02001733 err = fuse_simple_notify_reply(fm, args, outarg->notify_unique);
Miklos Szeredi75b399d2019-09-10 15:04:11 +02001734 if (err)
Max Reitzfcee2162020-05-06 17:44:12 +02001735 fuse_retrieve_end(fm, args, err);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001736
1737 return err;
1738}
1739
1740static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1741 struct fuse_copy_state *cs)
1742{
1743 struct fuse_notify_retrieve_out outarg;
Max Reitzfcee2162020-05-06 17:44:12 +02001744 struct fuse_mount *fm;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001745 struct inode *inode;
Max Reitzfcee2162020-05-06 17:44:12 +02001746 u64 nodeid;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001747 int err;
1748
1749 err = -EINVAL;
1750 if (size != sizeof(outarg))
1751 goto copy_finish;
1752
1753 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1754 if (err)
1755 goto copy_finish;
1756
1757 fuse_copy_finish(cs);
1758
1759 down_read(&fc->killsb);
1760 err = -ENOENT;
Max Reitzfcee2162020-05-06 17:44:12 +02001761 nodeid = outarg.nodeid;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001762
Max Reitzfcee2162020-05-06 17:44:12 +02001763 inode = fuse_ilookup(fc, nodeid, &fm);
1764 if (inode) {
1765 err = fuse_retrieve(fm, inode, &outarg);
1766 iput(inode);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001767 }
1768 up_read(&fc->killsb);
1769
1770 return err;
1771
1772copy_finish:
1773 fuse_copy_finish(cs);
1774 return err;
1775}
1776
Tejun Heo85993962008-11-26 12:03:55 +01001777static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1778 unsigned int size, struct fuse_copy_state *cs)
1779{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001780 /* Don't try to move pages (yet) */
1781 cs->move_pages = 0;
1782
Tejun Heo85993962008-11-26 12:03:55 +01001783 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001784 case FUSE_NOTIFY_POLL:
1785 return fuse_notify_poll(fc, size, cs);
1786
John Muir3b463ae2009-05-31 11:13:57 -04001787 case FUSE_NOTIFY_INVAL_INODE:
1788 return fuse_notify_inval_inode(fc, size, cs);
1789
1790 case FUSE_NOTIFY_INVAL_ENTRY:
1791 return fuse_notify_inval_entry(fc, size, cs);
1792
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001793 case FUSE_NOTIFY_STORE:
1794 return fuse_notify_store(fc, size, cs);
1795
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001796 case FUSE_NOTIFY_RETRIEVE:
1797 return fuse_notify_retrieve(fc, size, cs);
1798
John Muir451d0f52011-12-06 21:50:06 +01001799 case FUSE_NOTIFY_DELETE:
1800 return fuse_notify_delete(fc, size, cs);
1801
Tejun Heo85993962008-11-26 12:03:55 +01001802 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001803 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001804 return -EINVAL;
1805 }
1806}
1807
Miklos Szeredi334f4852005-09-09 13:10:27 -07001808/* Look up request on processing list by unique ID */
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001809static struct fuse_req *request_find(struct fuse_pqueue *fpq, u64 unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001810{
Kirill Tkhaibe2ff422018-09-11 13:12:14 +03001811 unsigned int hash = fuse_req_hash(unique);
Dong Fang05726ac2013-07-30 22:50:01 -04001812 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001813
Kirill Tkhaibe2ff422018-09-11 13:12:14 +03001814 list_for_each_entry(req, &fpq->processing[hash], list) {
Kirill Tkhai3a5358d2018-09-11 13:12:05 +03001815 if (req->in.h.unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001816 return req;
1817 }
1818 return NULL;
1819}
1820
Miklos Szeredid4993772019-09-10 15:04:11 +02001821static int copy_out_args(struct fuse_copy_state *cs, struct fuse_args *args,
Miklos Szeredi334f4852005-09-09 13:10:27 -07001822 unsigned nbytes)
1823{
1824 unsigned reqsize = sizeof(struct fuse_out_header);
1825
Stefan Hajnoczi14d46d72018-06-21 09:34:25 +01001826 reqsize += fuse_len_args(args->out_numargs, args->out_args);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001827
Miklos Szeredid4993772019-09-10 15:04:11 +02001828 if (reqsize < nbytes || (reqsize > nbytes && !args->out_argvar))
Miklos Szeredi334f4852005-09-09 13:10:27 -07001829 return -EINVAL;
1830 else if (reqsize > nbytes) {
Miklos Szeredid4993772019-09-10 15:04:11 +02001831 struct fuse_arg *lastarg = &args->out_args[args->out_numargs-1];
Miklos Szeredi334f4852005-09-09 13:10:27 -07001832 unsigned diffsize = reqsize - nbytes;
Miklos Szeredid4993772019-09-10 15:04:11 +02001833
Miklos Szeredi334f4852005-09-09 13:10:27 -07001834 if (diffsize > lastarg->size)
1835 return -EINVAL;
1836 lastarg->size -= diffsize;
1837 }
Miklos Szeredid4993772019-09-10 15:04:11 +02001838 return fuse_copy_args(cs, args->out_numargs, args->out_pages,
1839 args->out_args, args->page_zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001840}
1841
1842/*
1843 * Write a single reply to a request. First the header is copied from
1844 * the write buffer. The request is then searched on the processing
1845 * list by the unique ID found in the header. If found, then remove
1846 * it from the list and copy the rest of the buffer to the request.
Stefan Hajnoczi04ec5af2018-06-21 09:33:40 +01001847 * The request is finished by calling fuse_request_end().
Miklos Szeredi334f4852005-09-09 13:10:27 -07001848 */
Miklos Szeredic36960462015-07-01 16:26:09 +02001849static ssize_t fuse_dev_do_write(struct fuse_dev *fud,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001850 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001851{
1852 int err;
Miklos Szeredic36960462015-07-01 16:26:09 +02001853 struct fuse_conn *fc = fud->fc;
1854 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001855 struct fuse_req *req;
1856 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001857
Kirill Tkhai7407a102018-11-08 12:05:36 +03001858 err = -EINVAL;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001859 if (nbytes < sizeof(struct fuse_out_header))
Kirill Tkhai7407a102018-11-08 12:05:36 +03001860 goto out;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001861
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001862 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001863 if (err)
Kirill Tkhai7407a102018-11-08 12:05:36 +03001864 goto copy_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001865
Miklos Szeredi334f4852005-09-09 13:10:27 -07001866 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001867 if (oh.len != nbytes)
Kirill Tkhai7407a102018-11-08 12:05:36 +03001868 goto copy_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001869
1870 /*
1871 * Zero oh.unique indicates unsolicited notification message
1872 * and error contains notification code.
1873 */
1874 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001875 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Kirill Tkhai7407a102018-11-08 12:05:36 +03001876 goto out;
Tejun Heo85993962008-11-26 12:03:55 +01001877 }
1878
1879 err = -EINVAL;
Miklos Szeredi4eab2e22021-06-22 09:15:35 +02001880 if (oh.error <= -512 || oh.error > 0)
Kirill Tkhai7407a102018-11-08 12:05:36 +03001881 goto copy_finish;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001882
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001883 spin_lock(&fpq->lock);
Kirill Tkhai7407a102018-11-08 12:05:36 +03001884 req = NULL;
1885 if (fpq->connected)
1886 req = request_find(fpq, oh.unique & ~FUSE_INT_REQ_BIT);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001887
Kirill Tkhai7407a102018-11-08 12:05:36 +03001888 err = -ENOENT;
1889 if (!req) {
1890 spin_unlock(&fpq->lock);
1891 goto copy_finish;
1892 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001893
Kirill Tkhai3a5358d2018-09-11 13:12:05 +03001894 /* Is it an interrupt reply ID? */
1895 if (oh.unique & FUSE_INT_REQ_BIT) {
Kirill Tkhaid2d2d4f2018-09-25 12:52:42 +03001896 __fuse_get_request(req);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001897 spin_unlock(&fpq->lock);
1898
Kirill Tkhai7407a102018-11-08 12:05:36 +03001899 err = 0;
1900 if (nbytes != sizeof(struct fuse_out_header))
1901 err = -EINVAL;
1902 else if (oh.error == -ENOSYS)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001903 fc->no_interrupt = 1;
1904 else if (oh.error == -EAGAIN)
Max Reitz8f622e92020-04-20 17:59:34 +02001905 err = queue_interrupt(req);
Kirill Tkhai7407a102018-11-08 12:05:36 +03001906
Max Reitz8f622e92020-04-20 17:59:34 +02001907 fuse_put_request(req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001908
Kirill Tkhai7407a102018-11-08 12:05:36 +03001909 goto copy_finish;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001910 }
1911
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001912 clear_bit(FR_SENT, &req->flags);
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001913 list_move(&req->list, &fpq->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001914 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001915 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001916 spin_unlock(&fpq->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001917 cs->req = req;
Miklos Szeredid4993772019-09-10 15:04:11 +02001918 if (!req->args->page_replace)
Miklos Szeredice534fb2010-05-25 15:06:07 +02001919 cs->move_pages = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001920
Miklos Szeredid4993772019-09-10 15:04:11 +02001921 if (oh.error)
1922 err = nbytes != sizeof(oh) ? -EINVAL : 0;
1923 else
1924 err = copy_out_args(cs, req->args, nbytes);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001925 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001926
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001927 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001928 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001929 if (!fpq->connected)
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001930 err = -ENOENT;
1931 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001932 req->out.h.error = -EIO;
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001933 if (!test_bit(FR_PRIVATE, &req->flags))
1934 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001935 spin_unlock(&fpq->lock);
Miklos Szeredi46c34a32015-07-01 16:26:07 +02001936
Max Reitz8f622e92020-04-20 17:59:34 +02001937 fuse_request_end(req);
Kirill Tkhai7407a102018-11-08 12:05:36 +03001938out:
Miklos Szeredi334f4852005-09-09 13:10:27 -07001939 return err ? err : nbytes;
1940
Kirill Tkhai7407a102018-11-08 12:05:36 +03001941copy_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001942 fuse_copy_finish(cs);
Kirill Tkhai7407a102018-11-08 12:05:36 +03001943 goto out;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001944}
1945
Al Virofbdbacc2015-04-03 21:53:39 -04001946static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001947{
1948 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001949 struct fuse_dev *fud = fuse_get_dev(iocb->ki_filp);
1950
1951 if (!fud)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001952 return -EPERM;
1953
Al Virofbdbacc2015-04-03 21:53:39 -04001954 if (!iter_is_iovec(from))
1955 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001956
Miklos Szeredidc008092015-07-01 16:25:58 +02001957 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001958
Miklos Szeredic36960462015-07-01 16:26:09 +02001959 return fuse_dev_do_write(fud, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001960}
1961
1962static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1963 struct file *out, loff_t *ppos,
1964 size_t len, unsigned int flags)
1965{
David Howells8cefc102019-11-15 13:30:32 +00001966 unsigned int head, tail, mask, count;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001967 unsigned nbuf;
1968 unsigned idx;
1969 struct pipe_buffer *bufs;
1970 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001971 struct fuse_dev *fud;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001972 size_t rem;
1973 ssize_t ret;
1974
Miklos Szeredicc080e92015-07-01 16:26:08 +02001975 fud = fuse_get_dev(out);
1976 if (!fud)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001977 return -EPERM;
1978
Andrey Ryabinina2477b02018-07-17 19:00:33 +03001979 pipe_lock(pipe);
1980
David Howells8cefc102019-11-15 13:30:32 +00001981 head = pipe->head;
1982 tail = pipe->tail;
1983 mask = pipe->ring_size - 1;
1984 count = head - tail;
1985
1986 bufs = kvmalloc_array(count, sizeof(struct pipe_buffer), GFP_KERNEL);
Andrey Ryabinina2477b02018-07-17 19:00:33 +03001987 if (!bufs) {
1988 pipe_unlock(pipe);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001989 return -ENOMEM;
Andrey Ryabinina2477b02018-07-17 19:00:33 +03001990 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001991
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001992 nbuf = 0;
1993 rem = 0;
David Howells76f67772019-12-06 21:34:51 +00001994 for (idx = tail; idx != head && rem < len; idx++)
David Howells8cefc102019-11-15 13:30:32 +00001995 rem += pipe->bufs[idx & mask].len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001996
1997 ret = -EINVAL;
Matthew Wilcox15fab632019-04-05 14:02:10 -07001998 if (rem < len)
1999 goto out_free;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002000
2001 rem = len;
2002 while (rem) {
2003 struct pipe_buffer *ibuf;
2004 struct pipe_buffer *obuf;
2005
Vasily Averin0e9fb6f2019-08-19 09:53:50 +03002006 if (WARN_ON(nbuf >= count || tail == head))
2007 goto out_free;
2008
David Howells8cefc102019-11-15 13:30:32 +00002009 ibuf = &pipe->bufs[tail & mask];
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002010 obuf = &bufs[nbuf];
2011
2012 if (rem >= ibuf->len) {
2013 *obuf = *ibuf;
2014 ibuf->ops = NULL;
David Howells8cefc102019-11-15 13:30:32 +00002015 tail++;
2016 pipe->tail = tail;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002017 } else {
Matthew Wilcox15fab632019-04-05 14:02:10 -07002018 if (!pipe_buf_get(pipe, ibuf))
2019 goto out_free;
2020
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002021 *obuf = *ibuf;
2022 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2023 obuf->len = rem;
2024 ibuf->offset += obuf->len;
2025 ibuf->len -= obuf->len;
2026 }
2027 nbuf++;
2028 rem -= obuf->len;
2029 }
2030 pipe_unlock(pipe);
2031
Miklos Szeredidc008092015-07-01 16:25:58 +02002032 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002033 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04002034 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002035 cs.pipe = pipe;
2036
Miklos Szeredice534fb2010-05-25 15:06:07 +02002037 if (flags & SPLICE_F_MOVE)
2038 cs.move_pages = 1;
2039
Miklos Szeredic36960462015-07-01 16:26:09 +02002040 ret = fuse_dev_do_write(fud, &cs, len);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002041
Jann Horn95099412019-01-12 02:39:05 +01002042 pipe_lock(pipe);
Matthew Wilcox15fab632019-04-05 14:02:10 -07002043out_free:
Miklos Szeredib05eea12021-11-02 11:10:37 +01002044 for (idx = 0; idx < nbuf; idx++) {
2045 struct pipe_buffer *buf = &bufs[idx];
2046
2047 if (buf->ops)
2048 pipe_buf_release(pipe, buf);
2049 }
Jann Horn95099412019-01-12 02:39:05 +01002050 pipe_unlock(pipe);
Miklos Szeredia7796382016-09-27 10:45:12 +02002051
Andrey Ryabinind6d931a2018-07-17 19:00:34 +03002052 kvfree(bufs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002053 return ret;
2054}
2055
Al Viro076ccb72017-07-03 01:02:18 -04002056static __poll_t fuse_dev_poll(struct file *file, poll_table *wait)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002057{
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002058 __poll_t mask = EPOLLOUT | EPOLLWRNORM;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002059 struct fuse_iqueue *fiq;
Miklos Szeredicc080e92015-07-01 16:26:08 +02002060 struct fuse_dev *fud = fuse_get_dev(file);
2061
2062 if (!fud)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002063 return EPOLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002064
Miklos Szeredicc080e92015-07-01 16:26:08 +02002065 fiq = &fud->fc->iq;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002066 poll_wait(file, &fiq->waitq, wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002067
Eric Biggers76e43c82019-09-08 20:15:18 -07002068 spin_lock(&fiq->lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +02002069 if (!fiq->connected)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002070 mask = EPOLLERR;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002071 else if (request_pending(fiq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002072 mask |= EPOLLIN | EPOLLRDNORM;
Eric Biggers76e43c82019-09-08 20:15:18 -07002073 spin_unlock(&fiq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002074
2075 return mask;
2076}
2077
Kirill Tkhai34061752018-11-06 12:15:20 +03002078/* Abort all requests on the given list (pending or processing) */
Max Reitz8f622e92020-04-20 17:59:34 +02002079static void end_requests(struct list_head *head)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002080{
2081 while (!list_empty(head)) {
2082 struct fuse_req *req;
2083 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002084 req->out.h.error = -ECONNABORTED;
Miklos Szeredi33e14b42015-07-01 16:26:01 +02002085 clear_bit(FR_SENT, &req->flags);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002086 list_del_init(&req->list);
Max Reitz8f622e92020-04-20 17:59:34 +02002087 fuse_request_end(req);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002088 }
2089}
2090
Bryan Green357ccf22011-03-01 16:43:52 -08002091static void end_polls(struct fuse_conn *fc)
2092{
2093 struct rb_node *p;
2094
2095 p = rb_first(&fc->polled_files);
2096
2097 while (p) {
2098 struct fuse_file *ff;
2099 ff = rb_entry(p, struct fuse_file, polled_node);
2100 wake_up_interruptible_all(&ff->poll_wait);
2101
2102 p = rb_next(p);
2103 }
2104}
2105
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002106/*
2107 * Abort all requests.
2108 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002109 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2110 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002111 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002112 * The same effect is usually achievable through killing the filesystem daemon
2113 * and all users of the filesystem. The exception is the combination of an
2114 * asynchronous request and the tricky deadlock (see
Mauro Carvalho Chehab72ef5e52020-04-14 18:48:35 +02002115 * Documentation/filesystems/fuse.rst).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002116 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002117 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2118 * requests, they should be finished off immediately. Locked requests will be
2119 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2120 * requests. It is possible that some request will finish before we can. This
2121 * is OK, the request will in that case be removed from the list before we touch
2122 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002123 */
Miklos Szeredieb98e3bd2019-01-24 10:40:16 +01002124void fuse_abort_conn(struct fuse_conn *fc)
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002125{
Miklos Szeredif88996a2015-07-01 16:26:01 +02002126 struct fuse_iqueue *fiq = &fc->iq;
2127
Miklos Szeredid7133112006-04-10 22:54:55 -07002128 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002129 if (fc->connected) {
Miklos Szeredic36960462015-07-01 16:26:09 +02002130 struct fuse_dev *fud;
Miklos Szeredib716d422015-07-01 16:25:59 +02002131 struct fuse_req *req, *next;
Miklos Szeredi75f3ee42018-07-26 16:13:12 +02002132 LIST_HEAD(to_end);
Kirill Tkhaibe2ff422018-09-11 13:12:14 +03002133 unsigned int i;
Miklos Szeredib716d422015-07-01 16:25:59 +02002134
Kirill Tkhai63825b42018-08-27 18:29:56 +03002135 /* Background queuing checks fc->connected under bg_lock */
2136 spin_lock(&fc->bg_lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002137 fc->connected = 0;
Kirill Tkhai63825b42018-08-27 18:29:56 +03002138 spin_unlock(&fc->bg_lock);
2139
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002140 fuse_set_initialized(fc);
Miklos Szeredic36960462015-07-01 16:26:09 +02002141 list_for_each_entry(fud, &fc->devices, entry) {
2142 struct fuse_pqueue *fpq = &fud->pq;
2143
2144 spin_lock(&fpq->lock);
2145 fpq->connected = 0;
2146 list_for_each_entry_safe(req, next, &fpq->io, list) {
2147 req->out.h.error = -ECONNABORTED;
2148 spin_lock(&req->waitq.lock);
2149 set_bit(FR_ABORTED, &req->flags);
2150 if (!test_bit(FR_LOCKED, &req->flags)) {
2151 set_bit(FR_PRIVATE, &req->flags);
Miklos Szeredi87114372018-07-26 16:13:11 +02002152 __fuse_get_request(req);
Miklos Szeredi75f3ee42018-07-26 16:13:12 +02002153 list_move(&req->list, &to_end);
Miklos Szeredic36960462015-07-01 16:26:09 +02002154 }
2155 spin_unlock(&req->waitq.lock);
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02002156 }
Kirill Tkhaibe2ff422018-09-11 13:12:14 +03002157 for (i = 0; i < FUSE_PQ_HASH_SIZE; i++)
2158 list_splice_tail_init(&fpq->processing[i],
2159 &to_end);
Miklos Szeredic36960462015-07-01 16:26:09 +02002160 spin_unlock(&fpq->lock);
Miklos Szeredib716d422015-07-01 16:25:59 +02002161 }
Kirill Tkhaiae2dffa2018-08-27 18:29:46 +03002162 spin_lock(&fc->bg_lock);
2163 fc->blocked = 0;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002164 fc->max_background = UINT_MAX;
2165 flush_bg_queue(fc);
Kirill Tkhaiae2dffa2018-08-27 18:29:46 +03002166 spin_unlock(&fc->bg_lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002167
Eric Biggers76e43c82019-09-08 20:15:18 -07002168 spin_lock(&fiq->lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002169 fiq->connected = 0;
Miklos Szeredi75f3ee42018-07-26 16:13:12 +02002170 list_for_each_entry(req, &fiq->pending, list)
Tahsin Erdogana8a86d72017-01-12 12:04:04 -08002171 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredi75f3ee42018-07-26 16:13:12 +02002172 list_splice_tail_init(&fiq->pending, &to_end);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002173 while (forget_pending(fiq))
Vivek Goyal4388c5a2019-06-05 15:50:43 -04002174 kfree(fuse_dequeue_forget(fiq, 1, NULL));
Eric Biggers76e43c82019-09-08 20:15:18 -07002175 wake_up_all(&fiq->waitq);
2176 spin_unlock(&fiq->lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002177 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szerediee314a82015-07-01 16:26:08 +02002178 end_polls(fc);
2179 wake_up_all(&fc->blocked_waitq);
2180 spin_unlock(&fc->lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002181
Max Reitz8f622e92020-04-20 17:59:34 +02002182 end_requests(&to_end);
Miklos Szerediee314a82015-07-01 16:26:08 +02002183 } else {
2184 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002185 }
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002186}
Tejun Heo08cbf542009-04-14 10:54:53 +09002187EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002188
Miklos Szeredib8f95e52018-07-26 16:13:11 +02002189void fuse_wait_aborted(struct fuse_conn *fc)
2190{
Miklos Szeredi2d84a2d2018-11-09 15:52:16 +01002191 /* matches implicit memory barrier in fuse_drop_waiting() */
2192 smp_mb();
Miklos Szeredib8f95e52018-07-26 16:13:11 +02002193 wait_event(fc->blocked_waitq, atomic_read(&fc->num_waiting) == 0);
2194}
2195
Tejun Heo08cbf542009-04-14 10:54:53 +09002196int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002197{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002198 struct fuse_dev *fud = fuse_get_dev(file);
2199
2200 if (fud) {
2201 struct fuse_conn *fc = fud->fc;
Miklos Szeredic36960462015-07-01 16:26:09 +02002202 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi45ff3502018-07-26 16:13:11 +02002203 LIST_HEAD(to_end);
Kirill Tkhaibe2ff422018-09-11 13:12:14 +03002204 unsigned int i;
Miklos Szeredicc080e92015-07-01 16:26:08 +02002205
Miklos Szeredi45ff3502018-07-26 16:13:11 +02002206 spin_lock(&fpq->lock);
Miklos Szeredic36960462015-07-01 16:26:09 +02002207 WARN_ON(!list_empty(&fpq->io));
Kirill Tkhaibe2ff422018-09-11 13:12:14 +03002208 for (i = 0; i < FUSE_PQ_HASH_SIZE; i++)
2209 list_splice_init(&fpq->processing[i], &to_end);
Miklos Szeredi45ff3502018-07-26 16:13:11 +02002210 spin_unlock(&fpq->lock);
2211
Max Reitz8f622e92020-04-20 17:59:34 +02002212 end_requests(&to_end);
Miklos Szeredi45ff3502018-07-26 16:13:11 +02002213
Miklos Szeredic36960462015-07-01 16:26:09 +02002214 /* Are we the last open device? */
2215 if (atomic_dec_and_test(&fc->dev_count)) {
2216 WARN_ON(fc->iq.fasync != NULL);
Miklos Szeredieb98e3bd2019-01-24 10:40:16 +01002217 fuse_abort_conn(fc);
Miklos Szeredic36960462015-07-01 16:26:09 +02002218 }
Miklos Szeredicc080e92015-07-01 16:26:08 +02002219 fuse_dev_free(fud);
Jeff Dike385a17b2006-04-10 22:54:52 -07002220 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07002221 return 0;
2222}
Tejun Heo08cbf542009-04-14 10:54:53 +09002223EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002224
Jeff Dike385a17b2006-04-10 22:54:52 -07002225static int fuse_dev_fasync(int fd, struct file *file, int on)
2226{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002227 struct fuse_dev *fud = fuse_get_dev(file);
2228
2229 if (!fud)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002230 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002231
2232 /* No locking - fasync_helper does its own locking */
Miklos Szeredicc080e92015-07-01 16:26:08 +02002233 return fasync_helper(fd, file, on, &fud->fc->iq.fasync);
Jeff Dike385a17b2006-04-10 22:54:52 -07002234}
2235
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002236static int fuse_device_clone(struct fuse_conn *fc, struct file *new)
2237{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002238 struct fuse_dev *fud;
2239
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002240 if (new->private_data)
2241 return -EINVAL;
2242
Vivek Goyal0cd1eb9a2019-03-06 16:51:40 -05002243 fud = fuse_dev_alloc_install(fc);
Miklos Szeredicc080e92015-07-01 16:26:08 +02002244 if (!fud)
2245 return -ENOMEM;
2246
2247 new->private_data = fud;
Miklos Szeredic36960462015-07-01 16:26:09 +02002248 atomic_inc(&fc->dev_count);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002249
2250 return 0;
2251}
2252
2253static long fuse_dev_ioctl(struct file *file, unsigned int cmd,
2254 unsigned long arg)
2255{
2256 int err = -ENOTTY;
2257
2258 if (cmd == FUSE_DEV_IOC_CLONE) {
2259 int oldfd;
2260
2261 err = -EFAULT;
2262 if (!get_user(oldfd, (__u32 __user *) arg)) {
2263 struct file *old = fget(oldfd);
2264
2265 err = -EINVAL;
2266 if (old) {
Jann Horn8ed1f0e2015-08-16 20:27:01 +02002267 struct fuse_dev *fud = NULL;
2268
2269 /*
2270 * Check against file->f_op because CUSE
2271 * uses the same ioctl handler.
2272 */
2273 if (old->f_op == file->f_op &&
2274 old->f_cred->user_ns == file->f_cred->user_ns)
2275 fud = fuse_get_dev(old);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002276
Miklos Szeredicc080e92015-07-01 16:26:08 +02002277 if (fud) {
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002278 mutex_lock(&fuse_mutex);
Miklos Szeredicc080e92015-07-01 16:26:08 +02002279 err = fuse_device_clone(fud->fc, file);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002280 mutex_unlock(&fuse_mutex);
2281 }
2282 fput(old);
2283 }
2284 }
2285 }
2286 return err;
2287}
2288
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002289const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002290 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002291 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002292 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002293 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002294 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002295 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002296 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002297 .poll = fuse_dev_poll,
2298 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002299 .fasync = fuse_dev_fasync,
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002300 .unlocked_ioctl = fuse_dev_ioctl,
Arnd Bergmann1832f2d2018-09-11 21:59:08 +02002301 .compat_ioctl = compat_ptr_ioctl,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002302};
Tejun Heo08cbf542009-04-14 10:54:53 +09002303EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002304
2305static struct miscdevice fuse_miscdevice = {
2306 .minor = FUSE_MINOR,
2307 .name = "fuse",
2308 .fops = &fuse_dev_operations,
2309};
2310
2311int __init fuse_dev_init(void)
2312{
2313 int err = -ENOMEM;
2314 fuse_req_cachep = kmem_cache_create("fuse_request",
2315 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002316 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002317 if (!fuse_req_cachep)
2318 goto out;
2319
2320 err = misc_register(&fuse_miscdevice);
2321 if (err)
2322 goto out_cache_clean;
2323
2324 return 0;
2325
2326 out_cache_clean:
2327 kmem_cache_destroy(fuse_req_cachep);
2328 out:
2329 return err;
2330}
2331
2332void fuse_dev_cleanup(void)
2333{
2334 misc_deregister(&fuse_miscdevice);
2335 kmem_cache_destroy(fuse_req_cachep);
2336}