blob: 09c4ab120422f4f8a73ac7076250ffdc1ae03741 [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
Christoph Lametere18b8902006-12-06 20:33:20 -080028static struct kmem_cache *fuse_req_cachep;
Miklos Szeredi334f4852005-09-09 13:10:27 -070029
Miklos Szeredicc080e92015-07-01 16:26:08 +020030static struct fuse_dev *fuse_get_dev(struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -070031{
Miklos Szeredi0720b312006-04-10 22:54:55 -070032 /*
33 * Lockless access is OK, because file->private data is set
34 * once during mount and is valid until the file is released.
35 */
Mark Rutland6aa7de02017-10-23 14:07:29 -070036 return READ_ONCE(file->private_data);
Miklos Szeredi334f4852005-09-09 13:10:27 -070037}
38
Maxim Patlasov4250c062012-10-26 19:48:07 +040039static void fuse_request_init(struct fuse_req *req, struct page **pages,
Maxim Patlasovb2430d72012-10-26 19:49:24 +040040 struct fuse_page_desc *page_descs,
Maxim Patlasov4250c062012-10-26 19:48:07 +040041 unsigned npages)
Miklos Szeredi334f4852005-09-09 13:10:27 -070042{
43 memset(req, 0, sizeof(*req));
Maxim Patlasov4250c062012-10-26 19:48:07 +040044 memset(pages, 0, sizeof(*pages) * npages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040045 memset(page_descs, 0, sizeof(*page_descs) * npages);
Miklos Szeredi334f4852005-09-09 13:10:27 -070046 INIT_LIST_HEAD(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -070047 INIT_LIST_HEAD(&req->intr_entry);
Miklos Szeredi334f4852005-09-09 13:10:27 -070048 init_waitqueue_head(&req->waitq);
Elena Reshetovaec99f6d2017-03-03 11:04:04 +020049 refcount_set(&req->count, 1);
Maxim Patlasov4250c062012-10-26 19:48:07 +040050 req->pages = pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040051 req->page_descs = page_descs;
Maxim Patlasov4250c062012-10-26 19:48:07 +040052 req->max_pages = npages;
Miklos Szeredi33e14b42015-07-01 16:26:01 +020053 __set_bit(FR_PENDING, &req->flags);
Miklos Szeredi334f4852005-09-09 13:10:27 -070054}
55
Maxim Patlasov4250c062012-10-26 19:48:07 +040056static struct fuse_req *__fuse_request_alloc(unsigned npages, gfp_t flags)
Miklos Szeredi334f4852005-09-09 13:10:27 -070057{
Maxim Patlasov4250c062012-10-26 19:48:07 +040058 struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, flags);
59 if (req) {
60 struct page **pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040061 struct fuse_page_desc *page_descs;
Maxim Patlasov4250c062012-10-26 19:48:07 +040062
Maxim Patlasovb2430d72012-10-26 19:49:24 +040063 if (npages <= FUSE_REQ_INLINE_PAGES) {
Maxim Patlasov4250c062012-10-26 19:48:07 +040064 pages = req->inline_pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040065 page_descs = req->inline_page_descs;
66 } else {
Kees Cook6da2ec52018-06-12 13:55:00 -070067 pages = kmalloc_array(npages, sizeof(struct page *),
68 flags);
69 page_descs =
70 kmalloc_array(npages,
71 sizeof(struct fuse_page_desc),
72 flags);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040073 }
Maxim Patlasov4250c062012-10-26 19:48:07 +040074
Maxim Patlasovb2430d72012-10-26 19:49:24 +040075 if (!pages || !page_descs) {
76 kfree(pages);
77 kfree(page_descs);
Maxim Patlasov4250c062012-10-26 19:48:07 +040078 kmem_cache_free(fuse_req_cachep, req);
79 return NULL;
80 }
81
Maxim Patlasovb2430d72012-10-26 19:49:24 +040082 fuse_request_init(req, pages, page_descs, npages);
Maxim Patlasov4250c062012-10-26 19:48:07 +040083 }
Miklos Szeredi334f4852005-09-09 13:10:27 -070084 return req;
85}
Maxim Patlasov4250c062012-10-26 19:48:07 +040086
87struct fuse_req *fuse_request_alloc(unsigned npages)
88{
89 return __fuse_request_alloc(npages, GFP_KERNEL);
90}
Tejun Heo08cbf542009-04-14 10:54:53 +090091EXPORT_SYMBOL_GPL(fuse_request_alloc);
Miklos Szeredi334f4852005-09-09 13:10:27 -070092
Maxim Patlasov4250c062012-10-26 19:48:07 +040093struct fuse_req *fuse_request_alloc_nofs(unsigned npages)
Miklos Szeredi3be5a522008-04-30 00:54:41 -070094{
Maxim Patlasov4250c062012-10-26 19:48:07 +040095 return __fuse_request_alloc(npages, GFP_NOFS);
Miklos Szeredi3be5a522008-04-30 00:54:41 -070096}
97
Miklos Szeredi334f4852005-09-09 13:10:27 -070098void fuse_request_free(struct fuse_req *req)
99{
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400100 if (req->pages != req->inline_pages) {
Maxim Patlasov4250c062012-10-26 19:48:07 +0400101 kfree(req->pages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400102 kfree(req->page_descs);
103 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700104 kmem_cache_free(fuse_req_cachep, req);
105}
106
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400107void __fuse_get_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700108{
Elena Reshetovaec99f6d2017-03-03 11:04:04 +0200109 refcount_inc(&req->count);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700110}
111
112/* Must be called with > 1 refcount */
113static void __fuse_put_request(struct fuse_req *req)
114{
Elena Reshetovaec99f6d2017-03-03 11:04:04 +0200115 refcount_dec(&req->count);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700116}
117
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100118void fuse_set_initialized(struct fuse_conn *fc)
119{
120 /* Make sure stores before this are seen on another CPU */
121 smp_wmb();
122 fc->initialized = 1;
123}
124
Maxim Patlasov0aada882013-03-21 18:02:28 +0400125static bool fuse_block_alloc(struct fuse_conn *fc, bool for_background)
126{
127 return !fc->initialized || (for_background && fc->blocked);
128}
129
Miklos Szeredib8f95e52018-07-26 16:13:11 +0200130static void fuse_drop_waiting(struct fuse_conn *fc)
131{
132 if (fc->connected) {
133 atomic_dec(&fc->num_waiting);
134 } else if (atomic_dec_and_test(&fc->num_waiting)) {
135 /* wake up aborters */
136 wake_up_all(&fc->blocked_waitq);
137 }
138}
139
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400140static struct fuse_req *__fuse_get_req(struct fuse_conn *fc, unsigned npages,
141 bool for_background)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700142{
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700143 struct fuse_req *req;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700144 int err;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200145 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400146
147 if (fuse_block_alloc(fc, for_background)) {
Maxim Patlasov0aada882013-03-21 18:02:28 +0400148 err = -EINTR;
Al Viro7d3a07f2016-07-19 03:08:27 -0400149 if (wait_event_killable_exclusive(fc->blocked_waitq,
150 !fuse_block_alloc(fc, for_background)))
Maxim Patlasov0aada882013-03-21 18:02:28 +0400151 goto out;
152 }
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100153 /* Matches smp_wmb() in fuse_set_initialized() */
154 smp_rmb();
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700155
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700156 err = -ENOTCONN;
157 if (!fc->connected)
158 goto out;
159
Miklos Szeredide155222015-07-01 16:25:57 +0200160 err = -ECONNREFUSED;
161 if (fc->conn_error)
162 goto out;
163
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400164 req = fuse_request_alloc(npages);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200165 err = -ENOMEM;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400166 if (!req) {
167 if (for_background)
168 wake_up(&fc->blocked_waitq);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200169 goto out;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400170 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700171
Eric W. Biederman8cb08322018-02-21 11:18:07 -0600172 req->in.h.uid = from_kuid(fc->user_ns, current_fsuid());
173 req->in.h.gid = from_kgid(fc->user_ns, current_fsgid());
Eric W. Biedermanc9582eb2018-02-21 10:52:06 -0600174 req->in.h.pid = pid_nr_ns(task_pid(current), fc->pid_ns);
175
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200176 __set_bit(FR_WAITING, &req->flags);
177 if (for_background)
178 __set_bit(FR_BACKGROUND, &req->flags);
179
Eric W. Biedermanc9582eb2018-02-21 10:52:06 -0600180 if (unlikely(req->in.h.uid == ((uid_t)-1) ||
181 req->in.h.gid == ((gid_t)-1))) {
182 fuse_put_request(fc, req);
183 return ERR_PTR(-EOVERFLOW);
184 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700185 return req;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200186
187 out:
Miklos Szeredib8f95e52018-07-26 16:13:11 +0200188 fuse_drop_waiting(fc);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200189 return ERR_PTR(err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700190}
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400191
192struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages)
193{
194 return __fuse_get_req(fc, npages, false);
195}
Tejun Heo08cbf542009-04-14 10:54:53 +0900196EXPORT_SYMBOL_GPL(fuse_get_req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700197
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400198struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc,
199 unsigned npages)
200{
201 return __fuse_get_req(fc, npages, true);
202}
203EXPORT_SYMBOL_GPL(fuse_get_req_for_background);
204
Miklos Szeredi33649c92006-06-25 05:48:52 -0700205/*
206 * Return request in fuse_file->reserved_req. However that may
207 * currently be in use. If that is the case, wait for it to become
208 * available.
209 */
210static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
211 struct file *file)
212{
213 struct fuse_req *req = NULL;
214 struct fuse_file *ff = file->private_data;
215
216 do {
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700217 wait_event(fc->reserved_req_waitq, ff->reserved_req);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700218 spin_lock(&fc->lock);
219 if (ff->reserved_req) {
220 req = ff->reserved_req;
221 ff->reserved_req = NULL;
Al Virocb0942b2012-08-27 14:48:26 -0400222 req->stolen_file = get_file(file);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700223 }
224 spin_unlock(&fc->lock);
225 } while (!req);
226
227 return req;
228}
229
230/*
231 * Put stolen request back into fuse_file->reserved_req
232 */
233static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
234{
235 struct file *file = req->stolen_file;
236 struct fuse_file *ff = file->private_data;
237
238 spin_lock(&fc->lock);
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400239 fuse_request_init(req, req->pages, req->page_descs, req->max_pages);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700240 BUG_ON(ff->reserved_req);
241 ff->reserved_req = req;
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700242 wake_up_all(&fc->reserved_req_waitq);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700243 spin_unlock(&fc->lock);
244 fput(file);
245}
246
247/*
248 * Gets a requests for a file operation, always succeeds
249 *
250 * This is used for sending the FLUSH request, which must get to
251 * userspace, due to POSIX locks which may need to be unlocked.
252 *
253 * If allocation fails due to OOM, use the reserved request in
254 * fuse_file.
255 *
256 * This is very unlikely to deadlock accidentally, since the
257 * filesystem should not have it's own file open. If deadlock is
258 * intentional, it can still be broken by "aborting" the filesystem.
259 */
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400260struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc,
261 struct file *file)
Miklos Szeredi33649c92006-06-25 05:48:52 -0700262{
263 struct fuse_req *req;
264
265 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400266 wait_event(fc->blocked_waitq, fc->initialized);
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100267 /* Matches smp_wmb() in fuse_set_initialized() */
268 smp_rmb();
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400269 req = fuse_request_alloc(0);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700270 if (!req)
271 req = get_reserved_req(fc, file);
272
Eric W. Biederman8cb08322018-02-21 11:18:07 -0600273 req->in.h.uid = from_kuid_munged(fc->user_ns, current_fsuid());
274 req->in.h.gid = from_kgid_munged(fc->user_ns, current_fsgid());
Eric W. Biedermanc9582eb2018-02-21 10:52:06 -0600275 req->in.h.pid = pid_nr_ns(task_pid(current), fc->pid_ns);
276
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200277 __set_bit(FR_WAITING, &req->flags);
278 __clear_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700279 return req;
280}
281
Miklos Szeredi334f4852005-09-09 13:10:27 -0700282void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
283{
Elena Reshetovaec99f6d2017-03-03 11:04:04 +0200284 if (refcount_dec_and_test(&req->count)) {
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200285 if (test_bit(FR_BACKGROUND, &req->flags)) {
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400286 /*
287 * We get here in the unlikely case that a background
288 * request was allocated but not sent
289 */
290 spin_lock(&fc->lock);
291 if (!fc->blocked)
292 wake_up(&fc->blocked_waitq);
293 spin_unlock(&fc->lock);
294 }
295
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200296 if (test_bit(FR_WAITING, &req->flags)) {
297 __clear_bit(FR_WAITING, &req->flags);
Miklos Szeredib8f95e52018-07-26 16:13:11 +0200298 fuse_drop_waiting(fc);
Miklos Szeredi73e0e732015-07-01 16:25:56 +0200299 }
Miklos Szeredi33649c92006-06-25 05:48:52 -0700300
301 if (req->stolen_file)
302 put_reserved_req(fc, req);
303 else
304 fuse_request_free(req);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800305 }
306}
Tejun Heo08cbf542009-04-14 10:54:53 +0900307EXPORT_SYMBOL_GPL(fuse_put_request);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800308
Miklos Szeredid12def12008-02-06 01:38:39 -0800309static unsigned len_args(unsigned numargs, struct fuse_arg *args)
310{
311 unsigned nbytes = 0;
312 unsigned i;
313
314 for (i = 0; i < numargs; i++)
315 nbytes += args[i].size;
316
317 return nbytes;
318}
319
Miklos Szeredif88996a2015-07-01 16:26:01 +0200320static u64 fuse_get_unique(struct fuse_iqueue *fiq)
Miklos Szeredid12def12008-02-06 01:38:39 -0800321{
Miklos Szeredif88996a2015-07-01 16:26:01 +0200322 return ++fiq->reqctr;
Miklos Szeredid12def12008-02-06 01:38:39 -0800323}
324
Miklos Szeredif88996a2015-07-01 16:26:01 +0200325static void queue_request(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800326{
Miklos Szeredid12def12008-02-06 01:38:39 -0800327 req->in.h.len = sizeof(struct fuse_in_header) +
328 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200329 list_add_tail(&req->list, &fiq->pending);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200330 wake_up_locked(&fiq->waitq);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200331 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredid12def12008-02-06 01:38:39 -0800332}
333
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100334void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
335 u64 nodeid, u64 nlookup)
336{
Miklos Szeredif88996a2015-07-01 16:26:01 +0200337 struct fuse_iqueue *fiq = &fc->iq;
338
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100339 forget->forget_one.nodeid = nodeid;
340 forget->forget_one.nlookup = nlookup;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100341
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200342 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200343 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200344 fiq->forget_list_tail->next = forget;
345 fiq->forget_list_tail = forget;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200346 wake_up_locked(&fiq->waitq);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200347 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200348 } else {
349 kfree(forget);
350 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200351 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100352}
353
Miklos Szeredid12def12008-02-06 01:38:39 -0800354static void flush_bg_queue(struct fuse_conn *fc)
355{
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700356 while (fc->active_background < fc->max_background &&
Miklos Szeredid12def12008-02-06 01:38:39 -0800357 !list_empty(&fc->bg_queue)) {
358 struct fuse_req *req;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200359 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredid12def12008-02-06 01:38:39 -0800360
361 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
362 list_del(&req->list);
363 fc->active_background++;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200364 spin_lock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200365 req->in.h.unique = fuse_get_unique(fiq);
366 queue_request(fiq, req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200367 spin_unlock(&fiq->waitq.lock);
Miklos Szeredid12def12008-02-06 01:38:39 -0800368 }
369}
370
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200371/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700372 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700373 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800374 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700375 * was closed. The requester thread is woken up (if still waiting),
376 * the 'end' callback is called if given, else the reference to the
377 * request is released
Miklos Szeredi334f4852005-09-09 13:10:27 -0700378 */
379static void request_end(struct fuse_conn *fc, struct fuse_req *req)
380{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200381 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi365ae712015-07-01 16:26:06 +0200382
Miklos Szerediefe28002015-07-01 16:26:07 +0200383 if (test_and_set_bit(FR_FINISHED, &req->flags))
Miklos Szeredib8f95e52018-07-26 16:13:11 +0200384 goto put_request;
Miklos Szeredi365ae712015-07-01 16:26:06 +0200385
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200386 spin_lock(&fiq->waitq.lock);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200387 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200388 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200389 WARN_ON(test_bit(FR_PENDING, &req->flags));
390 WARN_ON(test_bit(FR_SENT, &req->flags));
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200391 if (test_bit(FR_BACKGROUND, &req->flags)) {
Miklos Szerediefe28002015-07-01 16:26:07 +0200392 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200393 clear_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi1ed087a2018-09-28 16:43:22 +0200394 if (fc->num_background == fc->max_background) {
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700395 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400396 wake_up(&fc->blocked_waitq);
Miklos Szeredi1ed087a2018-09-28 16:43:22 +0200397 } else if (!fc->blocked) {
398 /*
399 * Wake up next waiter, if any. It's okay to use
400 * waitqueue_active(), as we've already synced up
401 * fc->blocked with waiters with the wake_up() call
402 * above.
403 */
404 if (waitqueue_active(&fc->blocked_waitq))
405 wake_up(&fc->blocked_waitq);
406 }
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400407
Tejun Heo8a301eb2018-02-02 09:54:14 -0800408 if (fc->num_background == fc->congestion_threshold && fc->sb) {
Jan Kara5f7f7542017-04-12 12:24:40 +0200409 clear_bdi_congested(fc->sb->s_bdi, BLK_RW_SYNC);
410 clear_bdi_congested(fc->sb->s_bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700411 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700412 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800413 fc->active_background--;
414 flush_bg_queue(fc);
Miklos Szerediefe28002015-07-01 16:26:07 +0200415 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700416 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700417 wake_up(&req->waitq);
Miklos Szeredi1e6881c2015-07-01 16:26:07 +0200418 if (req->end)
419 req->end(fc, req);
Miklos Szeredib8f95e52018-07-26 16:13:11 +0200420put_request:
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100421 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700422}
423
Miklos Szeredif88996a2015-07-01 16:26:01 +0200424static void queue_interrupt(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700425{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200426 spin_lock(&fiq->waitq.lock);
Sahitya Tummala6ba4d272017-02-08 20:30:56 +0530427 if (test_bit(FR_FINISHED, &req->flags)) {
428 spin_unlock(&fiq->waitq.lock);
429 return;
430 }
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200431 if (list_empty(&req->intr_entry)) {
432 list_add_tail(&req->intr_entry, &fiq->interrupts);
433 wake_up_locked(&fiq->waitq);
434 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200435 spin_unlock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200436 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700437}
438
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700439static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700440{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200441 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic4775262015-07-01 16:26:00 +0200442 int err;
443
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700444 if (!fc->no_interrupt) {
445 /* Any signal may interrupt this */
Miklos Szeredic4775262015-07-01 16:26:00 +0200446 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200447 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200448 if (!err)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700449 return;
450
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200451 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200452 /* matches barrier in fuse_dev_do_read() */
453 smp_mb__after_atomic();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200454 if (test_bit(FR_SENT, &req->flags))
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200455 queue_interrupt(fiq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700456 }
457
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200458 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700459 /* Only fatal signals may interrupt this */
Al Viro7d3a07f2016-07-19 03:08:27 -0400460 err = wait_event_killable(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200461 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200462 if (!err)
Miklos Szeredia131de02007-10-16 23:31:04 -0700463 return;
464
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200465 spin_lock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700466 /* Request is not yet in userspace, bail out */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200467 if (test_bit(FR_PENDING, &req->flags)) {
Miklos Szeredia131de02007-10-16 23:31:04 -0700468 list_del(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200469 spin_unlock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700470 __fuse_put_request(req);
471 req->out.h.error = -EINTR;
472 return;
473 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200474 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700475 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700476
Miklos Szeredia131de02007-10-16 23:31:04 -0700477 /*
478 * Either request is already in userspace, or it was forced.
479 * Wait it out.
480 */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200481 wait_event(req->waitq, test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi334f4852005-09-09 13:10:27 -0700482}
483
Eric Wong6a4e9222013-02-04 13:04:44 +0000484static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700485{
Miklos Szeredie16714d2015-07-01 16:26:01 +0200486 struct fuse_iqueue *fiq = &fc->iq;
487
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200488 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200489 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200490 if (!fiq->connected) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200491 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700492 req->out.h.error = -ENOTCONN;
Miklos Szeredic4775262015-07-01 16:26:00 +0200493 } else {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200494 req->in.h.unique = fuse_get_unique(fiq);
495 queue_request(fiq, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700496 /* acquire extra reference, since request is still needed
497 after request_end() */
498 __fuse_get_request(req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200499 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700500
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700501 request_wait_answer(fc, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200502 /* Pairs with smp_wmb() in request_end() */
503 smp_rmb();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700504 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700505}
Eric Wong6a4e9222013-02-04 13:04:44 +0000506
507void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
508{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200509 __set_bit(FR_ISREPLY, &req->flags);
510 if (!test_bit(FR_WAITING, &req->flags)) {
511 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200512 atomic_inc(&fc->num_waiting);
513 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000514 __fuse_request_send(fc, req);
515}
Tejun Heo08cbf542009-04-14 10:54:53 +0900516EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700517
Miklos Szeredi21f62172015-01-06 10:45:35 +0100518static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
519{
520 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
521 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
522
523 if (fc->minor < 9) {
524 switch (args->in.h.opcode) {
525 case FUSE_LOOKUP:
526 case FUSE_CREATE:
527 case FUSE_MKNOD:
528 case FUSE_MKDIR:
529 case FUSE_SYMLINK:
530 case FUSE_LINK:
531 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
532 break;
533 case FUSE_GETATTR:
534 case FUSE_SETATTR:
535 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
536 break;
537 }
538 }
539 if (fc->minor < 12) {
540 switch (args->in.h.opcode) {
541 case FUSE_CREATE:
542 args->in.args[0].size = sizeof(struct fuse_open_in);
543 break;
544 case FUSE_MKNOD:
545 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
546 break;
547 }
548 }
549}
550
Miklos Szeredi70781872014-12-12 09:49:05 +0100551ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
552{
553 struct fuse_req *req;
554 ssize_t ret;
555
556 req = fuse_get_req(fc, 0);
557 if (IS_ERR(req))
558 return PTR_ERR(req);
559
Miklos Szeredi21f62172015-01-06 10:45:35 +0100560 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
561 fuse_adjust_compat(fc, args);
562
Miklos Szeredi70781872014-12-12 09:49:05 +0100563 req->in.h.opcode = args->in.h.opcode;
564 req->in.h.nodeid = args->in.h.nodeid;
565 req->in.numargs = args->in.numargs;
566 memcpy(req->in.args, args->in.args,
567 args->in.numargs * sizeof(struct fuse_in_arg));
568 req->out.argvar = args->out.argvar;
569 req->out.numargs = args->out.numargs;
570 memcpy(req->out.args, args->out.args,
571 args->out.numargs * sizeof(struct fuse_arg));
572 fuse_request_send(fc, req);
573 ret = req->out.h.error;
574 if (!ret && args->out.argvar) {
575 BUG_ON(args->out.numargs != 1);
576 ret = req->out.args[0].size;
577 }
578 fuse_put_request(fc, req);
579
580 return ret;
581}
582
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200583/*
584 * Called under fc->lock
585 *
586 * fc->connected must have been checked previously
587 */
588void fuse_request_send_background_locked(struct fuse_conn *fc,
589 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800590{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200591 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
592 if (!test_bit(FR_WAITING, &req->flags)) {
593 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200594 atomic_inc(&fc->num_waiting);
595 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200596 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800597 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700598 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800599 fc->blocked = 1;
Jan Kara7fbbe972017-04-12 12:24:41 +0200600 if (fc->num_background == fc->congestion_threshold && fc->sb) {
Jan Kara5f7f7542017-04-12 12:24:40 +0200601 set_bdi_congested(fc->sb->s_bdi, BLK_RW_SYNC);
602 set_bdi_congested(fc->sb->s_bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800603 }
604 list_add_tail(&req->list, &fc->bg_queue);
605 flush_bg_queue(fc);
606}
607
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200608void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700609{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200610 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700611 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700612 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200613 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700614 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700615 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200616 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700617 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200618 req->end(fc, req);
619 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700620 }
621}
Tejun Heo08cbf542009-04-14 10:54:53 +0900622EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700623
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200624static int fuse_request_send_notify_reply(struct fuse_conn *fc,
625 struct fuse_req *req, u64 unique)
626{
627 int err = -ENODEV;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200628 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200629
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200630 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200631 req->in.h.unique = unique;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200632 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200633 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200634 queue_request(fiq, req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200635 err = 0;
636 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200637 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200638
639 return err;
640}
641
Anand V. Avati0b05b182012-08-19 08:53:23 -0400642void fuse_force_forget(struct file *file, u64 nodeid)
643{
Al Viro6131ffa2013-02-27 16:59:05 -0500644 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400645 struct fuse_conn *fc = get_fuse_conn(inode);
646 struct fuse_req *req;
647 struct fuse_forget_in inarg;
648
649 memset(&inarg, 0, sizeof(inarg));
650 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400651 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400652 req->in.h.opcode = FUSE_FORGET;
653 req->in.h.nodeid = nodeid;
654 req->in.numargs = 1;
655 req->in.args[0].size = sizeof(inarg);
656 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200657 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000658 __fuse_request_send(fc, req);
659 /* ignore errors */
660 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400661}
662
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700663/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700664 * Lock the request. Up to the next unlock_request() there mustn't be
665 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700666 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700667 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200668static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700669{
670 int err = 0;
671 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200672 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200673 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700674 err = -ENOENT;
675 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200676 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200677 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700678 }
679 return err;
680}
681
682/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200683 * Unlock request. If it was aborted while locked, caller is responsible
684 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700685 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200686static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700687{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200688 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700689 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200690 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200691 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200692 err = -ENOENT;
693 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200694 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200695 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700696 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200697 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700698}
699
700struct fuse_copy_state {
701 int write;
702 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400703 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200704 struct pipe_buffer *pipebufs;
705 struct pipe_buffer *currbuf;
706 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700707 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700708 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700709 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200710 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200711 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700712};
713
Miklos Szeredidc008092015-07-01 16:25:58 +0200714static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400715 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700716{
717 memset(cs, 0, sizeof(*cs));
718 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400719 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700720}
721
722/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800723static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700724{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200725 if (cs->currbuf) {
726 struct pipe_buffer *buf = cs->currbuf;
727
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200728 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200729 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200730 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200731 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700732 if (cs->write) {
733 flush_dcache_page(cs->pg);
734 set_page_dirty_lock(cs->pg);
735 }
736 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700737 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200738 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700739}
740
741/*
742 * Get another pagefull of userspace buffer, and map it to kernel
743 * address space, and lock request
744 */
745static int fuse_copy_fill(struct fuse_copy_state *cs)
746{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200747 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700748 int err;
749
Miklos Szeredidc008092015-07-01 16:25:58 +0200750 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200751 if (err)
752 return err;
753
Miklos Szeredi334f4852005-09-09 13:10:27 -0700754 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200755 if (cs->pipebufs) {
756 struct pipe_buffer *buf = cs->pipebufs;
757
Miklos Szeredic3021622010-05-25 15:06:07 +0200758 if (!cs->write) {
Miklos Szeredifba597d2016-09-27 10:45:12 +0200759 err = pipe_buf_confirm(cs->pipe, buf);
Miklos Szeredic3021622010-05-25 15:06:07 +0200760 if (err)
761 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200762
Miklos Szeredic3021622010-05-25 15:06:07 +0200763 BUG_ON(!cs->nr_segs);
764 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200765 cs->pg = buf->page;
766 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200767 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200768 cs->pipebufs++;
769 cs->nr_segs--;
770 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200771 if (cs->nr_segs == cs->pipe->buffers)
772 return -EIO;
773
774 page = alloc_page(GFP_HIGHUSER);
775 if (!page)
776 return -ENOMEM;
777
778 buf->page = page;
779 buf->offset = 0;
780 buf->len = 0;
781
782 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200783 cs->pg = page;
784 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200785 cs->len = PAGE_SIZE;
786 cs->pipebufs++;
787 cs->nr_segs++;
788 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200789 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400790 size_t off;
791 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200792 if (err < 0)
793 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400794 BUG_ON(!err);
795 cs->len = err;
796 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200797 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400798 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700799 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700800
Miklos Szeredidc008092015-07-01 16:25:58 +0200801 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700802}
803
804/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800805static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700806{
807 unsigned ncpy = min(*size, cs->len);
808 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200809 void *pgaddr = kmap_atomic(cs->pg);
810 void *buf = pgaddr + cs->offset;
811
Miklos Szeredi334f4852005-09-09 13:10:27 -0700812 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200813 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700814 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200815 memcpy(*val, buf, ncpy);
816
817 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700818 *val += ncpy;
819 }
820 *size -= ncpy;
821 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200822 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700823 return ncpy;
824}
825
Miklos Szeredice534fb2010-05-25 15:06:07 +0200826static int fuse_check_page(struct page *page)
827{
828 if (page_mapcount(page) ||
829 page->mapping != NULL ||
830 page_count(page) != 1 ||
831 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
832 ~(1 << PG_locked |
833 1 << PG_referenced |
834 1 << PG_uptodate |
835 1 << PG_lru |
836 1 << PG_active |
837 1 << PG_reclaim))) {
838 printk(KERN_WARNING "fuse: trying to steal weird page\n");
839 printk(KERN_WARNING " page=%p index=%li flags=%08lx, count=%i, mapcount=%i, mapping=%p\n", page, page->index, page->flags, page_count(page), page_mapcount(page), page->mapping);
840 return 1;
841 }
842 return 0;
843}
844
845static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
846{
847 int err;
848 struct page *oldpage = *pagep;
849 struct page *newpage;
850 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200851
Miklos Szeredidc008092015-07-01 16:25:58 +0200852 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200853 if (err)
854 return err;
855
Miklos Szeredice534fb2010-05-25 15:06:07 +0200856 fuse_copy_finish(cs);
857
Miklos Szeredifba597d2016-09-27 10:45:12 +0200858 err = pipe_buf_confirm(cs->pipe, buf);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200859 if (err)
860 return err;
861
862 BUG_ON(!cs->nr_segs);
863 cs->currbuf = buf;
864 cs->len = buf->len;
865 cs->pipebufs++;
866 cs->nr_segs--;
867
868 if (cs->len != PAGE_SIZE)
869 goto out_fallback;
870
Miklos Szeredica76f5b2016-09-27 10:45:12 +0200871 if (pipe_buf_steal(cs->pipe, buf) != 0)
Miklos Szeredice534fb2010-05-25 15:06:07 +0200872 goto out_fallback;
873
874 newpage = buf->page;
875
Miklos Szerediaa991b32015-02-26 11:45:47 +0100876 if (!PageUptodate(newpage))
877 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200878
879 ClearPageMappedToDisk(newpage);
880
881 if (fuse_check_page(newpage) != 0)
882 goto out_fallback_unlock;
883
Miklos Szeredice534fb2010-05-25 15:06:07 +0200884 /*
885 * This is a new and locked page, it shouldn't be mapped or
886 * have any special flags on it
887 */
888 if (WARN_ON(page_mapped(oldpage)))
889 goto out_fallback_unlock;
890 if (WARN_ON(page_has_private(oldpage)))
891 goto out_fallback_unlock;
892 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
893 goto out_fallback_unlock;
894 if (WARN_ON(PageMlocked(oldpage)))
895 goto out_fallback_unlock;
896
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700897 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200898 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700899 unlock_page(newpage);
900 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200901 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700902
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300903 get_page(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200904
905 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
906 lru_cache_add_file(newpage);
907
908 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200909 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200910 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200911 err = -ENOENT;
912 else
913 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200914 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200915
916 if (err) {
917 unlock_page(newpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300918 put_page(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200919 return err;
920 }
921
922 unlock_page(oldpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300923 put_page(oldpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200924 cs->len = 0;
925
926 return 0;
927
928out_fallback_unlock:
929 unlock_page(newpage);
930out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200931 cs->pg = buf->page;
932 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200933
Miklos Szeredidc008092015-07-01 16:25:58 +0200934 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200935 if (err)
936 return err;
937
938 return 1;
939}
940
Miklos Szeredic3021622010-05-25 15:06:07 +0200941static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
942 unsigned offset, unsigned count)
943{
944 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200945 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200946
947 if (cs->nr_segs == cs->pipe->buffers)
948 return -EIO;
949
Miklos Szeredidc008092015-07-01 16:25:58 +0200950 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200951 if (err)
952 return err;
953
Miklos Szeredic3021622010-05-25 15:06:07 +0200954 fuse_copy_finish(cs);
955
956 buf = cs->pipebufs;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300957 get_page(page);
Miklos Szeredic3021622010-05-25 15:06:07 +0200958 buf->page = page;
959 buf->offset = offset;
960 buf->len = count;
961
962 cs->pipebufs++;
963 cs->nr_segs++;
964 cs->len = 0;
965
966 return 0;
967}
968
Miklos Szeredi334f4852005-09-09 13:10:27 -0700969/*
970 * Copy a page in the request to/from the userspace buffer. Must be
971 * done atomically
972 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200973static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800974 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700975{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200976 int err;
977 struct page *page = *pagep;
978
Miklos Szeredib6777c42010-10-26 14:22:27 -0700979 if (page && zeroing && count < PAGE_SIZE)
980 clear_highpage(page);
981
Miklos Szeredi334f4852005-09-09 13:10:27 -0700982 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200983 if (cs->write && cs->pipebufs && page) {
984 return fuse_ref_page(cs, page, offset, count);
985 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200986 if (cs->move_pages && page &&
987 offset == 0 && count == PAGE_SIZE) {
988 err = fuse_try_move_page(cs, pagep);
989 if (err <= 0)
990 return err;
991 } else {
992 err = fuse_copy_fill(cs);
993 if (err)
994 return err;
995 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100996 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700997 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800998 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700999 void *buf = mapaddr + offset;
1000 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +08001001 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001002 } else
1003 offset += fuse_copy_do(cs, NULL, &count);
1004 }
1005 if (page && !cs->write)
1006 flush_dcache_page(page);
1007 return 0;
1008}
1009
1010/* Copy pages in the request to/from userspace buffer */
1011static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
1012 int zeroing)
1013{
1014 unsigned i;
1015 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001016
1017 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +02001018 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001019 unsigned offset = req->page_descs[i].offset;
1020 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001021
1022 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1023 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001024 if (err)
1025 return err;
1026
1027 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001028 }
1029 return 0;
1030}
1031
1032/* Copy a single argument in the request to/from userspace buffer */
1033static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1034{
1035 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001036 if (!cs->len) {
1037 int err = fuse_copy_fill(cs);
1038 if (err)
1039 return err;
1040 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001041 fuse_copy_do(cs, &val, &size);
1042 }
1043 return 0;
1044}
1045
1046/* Copy request arguments to/from userspace buffer */
1047static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1048 unsigned argpages, struct fuse_arg *args,
1049 int zeroing)
1050{
1051 int err = 0;
1052 unsigned i;
1053
1054 for (i = 0; !err && i < numargs; i++) {
1055 struct fuse_arg *arg = &args[i];
1056 if (i == numargs - 1 && argpages)
1057 err = fuse_copy_pages(cs, arg->size, zeroing);
1058 else
1059 err = fuse_copy_one(cs, arg->value, arg->size);
1060 }
1061 return err;
1062}
1063
Miklos Szeredif88996a2015-07-01 16:26:01 +02001064static int forget_pending(struct fuse_iqueue *fiq)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001065{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001066 return fiq->forget_list_head.next != NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001067}
1068
Miklos Szeredif88996a2015-07-01 16:26:01 +02001069static int request_pending(struct fuse_iqueue *fiq)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001070{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001071 return !list_empty(&fiq->pending) || !list_empty(&fiq->interrupts) ||
1072 forget_pending(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001073}
1074
Miklos Szeredi334f4852005-09-09 13:10:27 -07001075/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001076 * Transfer an interrupt request to userspace
1077 *
1078 * Unlike other requests this is assembled on demand, without a need
1079 * to allocate a separate fuse_req structure.
1080 *
Miklos Szeredifd22d622015-07-01 16:26:03 +02001081 * Called with fiq->waitq.lock held, releases it
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001082 */
Miklos Szeredifd22d622015-07-01 16:26:03 +02001083static int fuse_read_interrupt(struct fuse_iqueue *fiq,
1084 struct fuse_copy_state *cs,
Miklos Szeredic3021622010-05-25 15:06:07 +02001085 size_t nbytes, struct fuse_req *req)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001086__releases(fiq->waitq.lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001087{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001088 struct fuse_in_header ih;
1089 struct fuse_interrupt_in arg;
1090 unsigned reqsize = sizeof(ih) + sizeof(arg);
1091 int err;
1092
1093 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001094 req->intr_unique = fuse_get_unique(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001095 memset(&ih, 0, sizeof(ih));
1096 memset(&arg, 0, sizeof(arg));
1097 ih.len = reqsize;
1098 ih.opcode = FUSE_INTERRUPT;
1099 ih.unique = req->intr_unique;
1100 arg.unique = req->in.h.unique;
1101
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001102 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001103 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001104 return -EINVAL;
1105
Miklos Szeredic3021622010-05-25 15:06:07 +02001106 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001107 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001108 err = fuse_copy_one(cs, &arg, sizeof(arg));
1109 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001110
1111 return err ? err : reqsize;
1112}
1113
Miklos Szeredif88996a2015-07-01 16:26:01 +02001114static struct fuse_forget_link *dequeue_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001115 unsigned max,
1116 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001117{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001118 struct fuse_forget_link *head = fiq->forget_list_head.next;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001119 struct fuse_forget_link **newhead = &head;
1120 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001121
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001122 for (count = 0; *newhead != NULL && count < max; count++)
1123 newhead = &(*newhead)->next;
1124
Miklos Szeredif88996a2015-07-01 16:26:01 +02001125 fiq->forget_list_head.next = *newhead;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001126 *newhead = NULL;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001127 if (fiq->forget_list_head.next == NULL)
1128 fiq->forget_list_tail = &fiq->forget_list_head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001129
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001130 if (countp != NULL)
1131 *countp = count;
1132
1133 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001134}
1135
Miklos Szeredifd22d622015-07-01 16:26:03 +02001136static int fuse_read_single_forget(struct fuse_iqueue *fiq,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001137 struct fuse_copy_state *cs,
1138 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001139__releases(fiq->waitq.lock)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001140{
1141 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001142 struct fuse_forget_link *forget = dequeue_forget(fiq, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001143 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001144 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001145 };
1146 struct fuse_in_header ih = {
1147 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001148 .nodeid = forget->forget_one.nodeid,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001149 .unique = fuse_get_unique(fiq),
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001150 .len = sizeof(ih) + sizeof(arg),
1151 };
1152
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001153 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001154 kfree(forget);
1155 if (nbytes < ih.len)
1156 return -EINVAL;
1157
1158 err = fuse_copy_one(cs, &ih, sizeof(ih));
1159 if (!err)
1160 err = fuse_copy_one(cs, &arg, sizeof(arg));
1161 fuse_copy_finish(cs);
1162
1163 if (err)
1164 return err;
1165
1166 return ih.len;
1167}
1168
Miklos Szeredifd22d622015-07-01 16:26:03 +02001169static int fuse_read_batch_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001170 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001171__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001172{
1173 int err;
1174 unsigned max_forgets;
1175 unsigned count;
1176 struct fuse_forget_link *head;
1177 struct fuse_batch_forget_in arg = { .count = 0 };
1178 struct fuse_in_header ih = {
1179 .opcode = FUSE_BATCH_FORGET,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001180 .unique = fuse_get_unique(fiq),
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001181 .len = sizeof(ih) + sizeof(arg),
1182 };
1183
1184 if (nbytes < ih.len) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001185 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001186 return -EINVAL;
1187 }
1188
1189 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001190 head = dequeue_forget(fiq, max_forgets, &count);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001191 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001192
1193 arg.count = count;
1194 ih.len += count * sizeof(struct fuse_forget_one);
1195 err = fuse_copy_one(cs, &ih, sizeof(ih));
1196 if (!err)
1197 err = fuse_copy_one(cs, &arg, sizeof(arg));
1198
1199 while (head) {
1200 struct fuse_forget_link *forget = head;
1201
1202 if (!err) {
1203 err = fuse_copy_one(cs, &forget->forget_one,
1204 sizeof(forget->forget_one));
1205 }
1206 head = forget->next;
1207 kfree(forget);
1208 }
1209
1210 fuse_copy_finish(cs);
1211
1212 if (err)
1213 return err;
1214
1215 return ih.len;
1216}
1217
Miklos Szeredifd22d622015-07-01 16:26:03 +02001218static int fuse_read_forget(struct fuse_conn *fc, struct fuse_iqueue *fiq,
1219 struct fuse_copy_state *cs,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001220 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001221__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001222{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001223 if (fc->minor < 16 || fiq->forget_list_head.next->next == NULL)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001224 return fuse_read_single_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001225 else
Miklos Szeredifd22d622015-07-01 16:26:03 +02001226 return fuse_read_batch_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001227}
1228
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001229/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001230 * Read a single request into the userspace filesystem's buffer. This
1231 * function waits until a request is available, then removes it from
1232 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001233 * no reply is needed (FORGET) or request has been aborted or there
1234 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001235 * request_end(). Otherwise add it to the processing list, and set
1236 * the 'sent' flag.
1237 */
Miklos Szeredic36960462015-07-01 16:26:09 +02001238static ssize_t fuse_dev_do_read(struct fuse_dev *fud, struct file *file,
Miklos Szeredic3021622010-05-25 15:06:07 +02001239 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001240{
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001241 ssize_t err;
Miklos Szeredic36960462015-07-01 16:26:09 +02001242 struct fuse_conn *fc = fud->fc;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001243 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic36960462015-07-01 16:26:09 +02001244 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001245 struct fuse_req *req;
1246 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001247 unsigned reqsize;
1248
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001249 restart:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001250 spin_lock(&fiq->waitq.lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001251 err = -EAGAIN;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001252 if ((file->f_flags & O_NONBLOCK) && fiq->connected &&
Miklos Szeredif88996a2015-07-01 16:26:01 +02001253 !request_pending(fiq))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001254 goto err_unlock;
1255
Miklos Szeredi52509212015-07-01 16:26:03 +02001256 err = wait_event_interruptible_exclusive_locked(fiq->waitq,
1257 !fiq->connected || request_pending(fiq));
1258 if (err)
1259 goto err_unlock;
1260
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01001261 if (!fiq->connected) {
1262 err = (fc->aborted && fc->abort_err) ? -ECONNABORTED : -ENODEV;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001263 goto err_unlock;
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01001264 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001265
Miklos Szeredif88996a2015-07-01 16:26:01 +02001266 if (!list_empty(&fiq->interrupts)) {
1267 req = list_entry(fiq->interrupts.next, struct fuse_req,
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001268 intr_entry);
Miklos Szeredifd22d622015-07-01 16:26:03 +02001269 return fuse_read_interrupt(fiq, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001270 }
1271
Miklos Szeredif88996a2015-07-01 16:26:01 +02001272 if (forget_pending(fiq)) {
1273 if (list_empty(&fiq->pending) || fiq->forget_batch-- > 0)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001274 return fuse_read_forget(fc, fiq, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001275
Miklos Szeredif88996a2015-07-01 16:26:01 +02001276 if (fiq->forget_batch <= -8)
1277 fiq->forget_batch = 16;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001278 }
1279
Miklos Szeredif88996a2015-07-01 16:26:01 +02001280 req = list_entry(fiq->pending.next, struct fuse_req, list);
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001281 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredief759252015-07-01 16:26:02 +02001282 list_del_init(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001283 spin_unlock(&fiq->waitq.lock);
1284
Miklos Szeredi334f4852005-09-09 13:10:27 -07001285 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001286 reqsize = in->h.len;
Miklos Szeredi5d6d3a32017-09-12 16:57:53 +02001287
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001288 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001289 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001290 req->out.h.error = -EIO;
1291 /* SETXATTR is special, since it may contain too large data */
1292 if (in->h.opcode == FUSE_SETXATTR)
1293 req->out.h.error = -E2BIG;
1294 request_end(fc, req);
1295 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001296 }
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001297 spin_lock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001298 list_add(&req->list, &fpq->io);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001299 spin_unlock(&fpq->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001300 cs->req = req;
1301 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001302 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001303 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001304 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001305 fuse_copy_finish(cs);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001306 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001307 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001308 if (!fpq->connected) {
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01001309 err = (fc->aborted && fc->abort_err) ? -ECONNABORTED : -ENODEV;
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001310 goto out_end;
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001311 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001312 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001313 req->out.h.error = -EIO;
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001314 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001315 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001316 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001317 err = reqsize;
1318 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001319 }
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001320 list_move_tail(&req->list, &fpq->processing);
Kirill Tkhaie8e17b12018-09-25 12:28:55 +03001321 __fuse_get_request(req);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001322 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001323 set_bit(FR_SENT, &req->flags);
1324 /* matches barrier in request_wait_answer() */
1325 smp_mb__after_atomic();
1326 if (test_bit(FR_INTERRUPTED, &req->flags))
1327 queue_interrupt(fiq, req);
Kirill Tkhaie8e17b12018-09-25 12:28:55 +03001328 fuse_put_request(fc, req);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001329
Miklos Szeredi334f4852005-09-09 13:10:27 -07001330 return reqsize;
1331
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001332out_end:
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001333 if (!test_bit(FR_PRIVATE, &req->flags))
1334 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001335 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001336 request_end(fc, req);
1337 return err;
1338
Miklos Szeredi334f4852005-09-09 13:10:27 -07001339 err_unlock:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001340 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001341 return err;
1342}
1343
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001344static int fuse_dev_open(struct inode *inode, struct file *file)
1345{
1346 /*
1347 * The fuse device's file's private_data is used to hold
1348 * the fuse_conn(ection) when it is mounted, and is used to
1349 * keep track of whether the file has been mounted already.
1350 */
1351 file->private_data = NULL;
1352 return 0;
1353}
1354
Al Virofbdbacc2015-04-03 21:53:39 -04001355static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001356{
1357 struct fuse_copy_state cs;
1358 struct file *file = iocb->ki_filp;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001359 struct fuse_dev *fud = fuse_get_dev(file);
1360
1361 if (!fud)
Miklos Szeredic3021622010-05-25 15:06:07 +02001362 return -EPERM;
1363
Al Virofbdbacc2015-04-03 21:53:39 -04001364 if (!iter_is_iovec(to))
1365 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001366
Miklos Szeredidc008092015-07-01 16:25:58 +02001367 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001368
Miklos Szeredic36960462015-07-01 16:26:09 +02001369 return fuse_dev_do_read(fud, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001370}
1371
Miklos Szeredic3021622010-05-25 15:06:07 +02001372static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1373 struct pipe_inode_info *pipe,
1374 size_t len, unsigned int flags)
1375{
Al Virod82718e2016-09-17 22:56:25 -04001376 int total, ret;
Miklos Szeredic3021622010-05-25 15:06:07 +02001377 int page_nr = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +02001378 struct pipe_buffer *bufs;
1379 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001380 struct fuse_dev *fud = fuse_get_dev(in);
1381
1382 if (!fud)
Miklos Szeredic3021622010-05-25 15:06:07 +02001383 return -EPERM;
1384
Andrey Ryabinind6d931a2018-07-17 19:00:34 +03001385 bufs = kvmalloc_array(pipe->buffers, sizeof(struct pipe_buffer),
1386 GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001387 if (!bufs)
1388 return -ENOMEM;
1389
Miklos Szeredidc008092015-07-01 16:25:58 +02001390 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001391 cs.pipebufs = bufs;
1392 cs.pipe = pipe;
Miklos Szeredic36960462015-07-01 16:26:09 +02001393 ret = fuse_dev_do_read(fud, in, &cs, len);
Miklos Szeredic3021622010-05-25 15:06:07 +02001394 if (ret < 0)
1395 goto out;
1396
Miklos Szeredic3021622010-05-25 15:06:07 +02001397 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1398 ret = -EIO;
Al Virod82718e2016-09-17 22:56:25 -04001399 goto out;
Miklos Szeredic3021622010-05-25 15:06:07 +02001400 }
1401
Al Virod82718e2016-09-17 22:56:25 -04001402 for (ret = total = 0; page_nr < cs.nr_segs; total += ret) {
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001403 /*
1404 * Need to be careful about this. Having buf->ops in module
1405 * code can Oops if the buffer persists after module unload.
1406 */
Al Virod82718e2016-09-17 22:56:25 -04001407 bufs[page_nr].ops = &nosteal_pipe_buf_ops;
Miklos Szeredi84588a92017-02-16 15:08:20 +01001408 bufs[page_nr].flags = 0;
Al Virod82718e2016-09-17 22:56:25 -04001409 ret = add_to_pipe(pipe, &bufs[page_nr++]);
1410 if (unlikely(ret < 0))
1411 break;
Miklos Szeredic3021622010-05-25 15:06:07 +02001412 }
Al Virod82718e2016-09-17 22:56:25 -04001413 if (total)
1414 ret = total;
Miklos Szeredic3021622010-05-25 15:06:07 +02001415out:
1416 for (; page_nr < cs.nr_segs; page_nr++)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001417 put_page(bufs[page_nr].page);
Miklos Szeredic3021622010-05-25 15:06:07 +02001418
Andrey Ryabinind6d931a2018-07-17 19:00:34 +03001419 kvfree(bufs);
Miklos Szeredic3021622010-05-25 15:06:07 +02001420 return ret;
1421}
1422
Tejun Heo95668a62008-11-26 12:03:55 +01001423static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1424 struct fuse_copy_state *cs)
1425{
1426 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001427 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001428
1429 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001430 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001431
1432 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1433 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001434 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001435
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001436 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001437 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001438
1439err:
1440 fuse_copy_finish(cs);
1441 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001442}
1443
John Muir3b463ae2009-05-31 11:13:57 -04001444static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1445 struct fuse_copy_state *cs)
1446{
1447 struct fuse_notify_inval_inode_out outarg;
1448 int err = -EINVAL;
1449
1450 if (size != sizeof(outarg))
1451 goto err;
1452
1453 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1454 if (err)
1455 goto err;
1456 fuse_copy_finish(cs);
1457
1458 down_read(&fc->killsb);
1459 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001460 if (fc->sb) {
1461 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1462 outarg.off, outarg.len);
1463 }
John Muir3b463ae2009-05-31 11:13:57 -04001464 up_read(&fc->killsb);
1465 return err;
1466
1467err:
1468 fuse_copy_finish(cs);
1469 return err;
1470}
1471
1472static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1473 struct fuse_copy_state *cs)
1474{
1475 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001476 int err = -ENOMEM;
1477 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001478 struct qstr name;
1479
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001480 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1481 if (!buf)
1482 goto err;
1483
1484 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001485 if (size < sizeof(outarg))
1486 goto err;
1487
1488 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1489 if (err)
1490 goto err;
1491
1492 err = -ENAMETOOLONG;
1493 if (outarg.namelen > FUSE_NAME_MAX)
1494 goto err;
1495
Miklos Szeredic2183d12011-08-24 10:20:17 +02001496 err = -EINVAL;
1497 if (size != sizeof(outarg) + outarg.namelen + 1)
1498 goto err;
1499
John Muir3b463ae2009-05-31 11:13:57 -04001500 name.name = buf;
1501 name.len = outarg.namelen;
1502 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1503 if (err)
1504 goto err;
1505 fuse_copy_finish(cs);
1506 buf[outarg.namelen] = 0;
John Muir3b463ae2009-05-31 11:13:57 -04001507
1508 down_read(&fc->killsb);
1509 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001510 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001511 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1512 up_read(&fc->killsb);
1513 kfree(buf);
1514 return err;
1515
1516err:
1517 kfree(buf);
1518 fuse_copy_finish(cs);
1519 return err;
1520}
1521
1522static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1523 struct fuse_copy_state *cs)
1524{
1525 struct fuse_notify_delete_out outarg;
1526 int err = -ENOMEM;
1527 char *buf;
1528 struct qstr name;
1529
1530 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1531 if (!buf)
1532 goto err;
1533
1534 err = -EINVAL;
1535 if (size < sizeof(outarg))
1536 goto err;
1537
1538 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1539 if (err)
1540 goto err;
1541
1542 err = -ENAMETOOLONG;
1543 if (outarg.namelen > FUSE_NAME_MAX)
1544 goto err;
1545
1546 err = -EINVAL;
1547 if (size != sizeof(outarg) + outarg.namelen + 1)
1548 goto err;
1549
1550 name.name = buf;
1551 name.len = outarg.namelen;
1552 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1553 if (err)
1554 goto err;
1555 fuse_copy_finish(cs);
1556 buf[outarg.namelen] = 0;
John Muir451d0f52011-12-06 21:50:06 +01001557
1558 down_read(&fc->killsb);
1559 err = -ENOENT;
1560 if (fc->sb)
1561 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1562 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001563 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001564 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001565 return err;
1566
1567err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001568 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001569 fuse_copy_finish(cs);
1570 return err;
1571}
1572
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001573static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1574 struct fuse_copy_state *cs)
1575{
1576 struct fuse_notify_store_out outarg;
1577 struct inode *inode;
1578 struct address_space *mapping;
1579 u64 nodeid;
1580 int err;
1581 pgoff_t index;
1582 unsigned int offset;
1583 unsigned int num;
1584 loff_t file_size;
1585 loff_t end;
1586
1587 err = -EINVAL;
1588 if (size < sizeof(outarg))
1589 goto out_finish;
1590
1591 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1592 if (err)
1593 goto out_finish;
1594
1595 err = -EINVAL;
1596 if (size - sizeof(outarg) != outarg.size)
1597 goto out_finish;
1598
1599 nodeid = outarg.nodeid;
1600
1601 down_read(&fc->killsb);
1602
1603 err = -ENOENT;
1604 if (!fc->sb)
1605 goto out_up_killsb;
1606
1607 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1608 if (!inode)
1609 goto out_up_killsb;
1610
1611 mapping = inode->i_mapping;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001612 index = outarg.offset >> PAGE_SHIFT;
1613 offset = outarg.offset & ~PAGE_MASK;
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001614 file_size = i_size_read(inode);
1615 end = outarg.offset + outarg.size;
1616 if (end > file_size) {
1617 file_size = end;
1618 fuse_write_update_size(inode, file_size);
1619 }
1620
1621 num = outarg.size;
1622 while (num) {
1623 struct page *page;
1624 unsigned int this_num;
1625
1626 err = -ENOMEM;
1627 page = find_or_create_page(mapping, index,
1628 mapping_gfp_mask(mapping));
1629 if (!page)
1630 goto out_iput;
1631
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001632 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001633 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001634 if (!err && offset == 0 &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001635 (this_num == PAGE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001636 SetPageUptodate(page);
1637 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001638 put_page(page);
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001639
1640 if (err)
1641 goto out_iput;
1642
1643 num -= this_num;
1644 offset = 0;
1645 index++;
1646 }
1647
1648 err = 0;
1649
1650out_iput:
1651 iput(inode);
1652out_up_killsb:
1653 up_read(&fc->killsb);
1654out_finish:
1655 fuse_copy_finish(cs);
1656 return err;
1657}
1658
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001659static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1660{
Mel Gormanc6f92f92017-11-15 17:37:55 -08001661 release_pages(req->pages, req->num_pages);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001662}
1663
1664static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1665 struct fuse_notify_retrieve_out *outarg)
1666{
1667 int err;
1668 struct address_space *mapping = inode->i_mapping;
1669 struct fuse_req *req;
1670 pgoff_t index;
1671 loff_t file_size;
1672 unsigned int num;
1673 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001674 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001675 int num_pages;
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
1680 num = outarg->size;
1681 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;
1687 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1688
1689 req = fuse_get_req(fc, num_pages);
1690 if (IS_ERR(req))
1691 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001692
1693 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1694 req->in.h.nodeid = outarg->nodeid;
1695 req->in.numargs = 2;
1696 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001697 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001698 req->end = fuse_retrieve_end;
1699
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001700 index = outarg->offset >> PAGE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001701
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001702 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001703 struct page *page;
1704 unsigned int this_num;
1705
1706 page = find_get_page(mapping, index);
1707 if (!page)
1708 break;
1709
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001710 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001711 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001712 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001713 req->num_pages++;
1714
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001715 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001716 num -= this_num;
1717 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001718 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001719 }
1720 req->misc.retrieve_in.offset = outarg->offset;
1721 req->misc.retrieve_in.size = total_len;
1722 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1723 req->in.args[0].value = &req->misc.retrieve_in;
1724 req->in.args[1].size = total_len;
1725
1726 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1727 if (err)
1728 fuse_retrieve_end(fc, req);
1729
1730 return err;
1731}
1732
1733static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1734 struct fuse_copy_state *cs)
1735{
1736 struct fuse_notify_retrieve_out outarg;
1737 struct inode *inode;
1738 int err;
1739
1740 err = -EINVAL;
1741 if (size != sizeof(outarg))
1742 goto copy_finish;
1743
1744 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1745 if (err)
1746 goto copy_finish;
1747
1748 fuse_copy_finish(cs);
1749
1750 down_read(&fc->killsb);
1751 err = -ENOENT;
1752 if (fc->sb) {
1753 u64 nodeid = outarg.nodeid;
1754
1755 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1756 if (inode) {
1757 err = fuse_retrieve(fc, inode, &outarg);
1758 iput(inode);
1759 }
1760 }
1761 up_read(&fc->killsb);
1762
1763 return err;
1764
1765copy_finish:
1766 fuse_copy_finish(cs);
1767 return err;
1768}
1769
Tejun Heo85993962008-11-26 12:03:55 +01001770static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1771 unsigned int size, struct fuse_copy_state *cs)
1772{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001773 /* Don't try to move pages (yet) */
1774 cs->move_pages = 0;
1775
Tejun Heo85993962008-11-26 12:03:55 +01001776 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001777 case FUSE_NOTIFY_POLL:
1778 return fuse_notify_poll(fc, size, cs);
1779
John Muir3b463ae2009-05-31 11:13:57 -04001780 case FUSE_NOTIFY_INVAL_INODE:
1781 return fuse_notify_inval_inode(fc, size, cs);
1782
1783 case FUSE_NOTIFY_INVAL_ENTRY:
1784 return fuse_notify_inval_entry(fc, size, cs);
1785
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001786 case FUSE_NOTIFY_STORE:
1787 return fuse_notify_store(fc, size, cs);
1788
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001789 case FUSE_NOTIFY_RETRIEVE:
1790 return fuse_notify_retrieve(fc, size, cs);
1791
John Muir451d0f52011-12-06 21:50:06 +01001792 case FUSE_NOTIFY_DELETE:
1793 return fuse_notify_delete(fc, size, cs);
1794
Tejun Heo85993962008-11-26 12:03:55 +01001795 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001796 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001797 return -EINVAL;
1798 }
1799}
1800
Miklos Szeredi334f4852005-09-09 13:10:27 -07001801/* Look up request on processing list by unique ID */
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001802static struct fuse_req *request_find(struct fuse_pqueue *fpq, u64 unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001803{
Dong Fang05726ac2013-07-30 22:50:01 -04001804 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001805
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001806 list_for_each_entry(req, &fpq->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001807 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001808 return req;
1809 }
1810 return NULL;
1811}
1812
1813static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1814 unsigned nbytes)
1815{
1816 unsigned reqsize = sizeof(struct fuse_out_header);
1817
1818 if (out->h.error)
1819 return nbytes != reqsize ? -EINVAL : 0;
1820
1821 reqsize += len_args(out->numargs, out->args);
1822
1823 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1824 return -EINVAL;
1825 else if (reqsize > nbytes) {
1826 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1827 unsigned diffsize = reqsize - nbytes;
1828 if (diffsize > lastarg->size)
1829 return -EINVAL;
1830 lastarg->size -= diffsize;
1831 }
1832 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1833 out->page_zeroing);
1834}
1835
1836/*
1837 * Write a single reply to a request. First the header is copied from
1838 * the write buffer. The request is then searched on the processing
1839 * list by the unique ID found in the header. If found, then remove
1840 * it from the list and copy the rest of the buffer to the request.
1841 * The request is finished by calling request_end()
1842 */
Miklos Szeredic36960462015-07-01 16:26:09 +02001843static ssize_t fuse_dev_do_write(struct fuse_dev *fud,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001844 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001845{
1846 int err;
Miklos Szeredic36960462015-07-01 16:26:09 +02001847 struct fuse_conn *fc = fud->fc;
1848 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001849 struct fuse_req *req;
1850 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001851
Miklos Szeredi334f4852005-09-09 13:10:27 -07001852 if (nbytes < sizeof(struct fuse_out_header))
1853 return -EINVAL;
1854
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001855 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001856 if (err)
1857 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001858
Miklos Szeredi334f4852005-09-09 13:10:27 -07001859 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001860 if (oh.len != nbytes)
1861 goto err_finish;
1862
1863 /*
1864 * Zero oh.unique indicates unsolicited notification message
1865 * and error contains notification code.
1866 */
1867 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001868 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001869 return err ? err : nbytes;
1870 }
1871
1872 err = -EINVAL;
1873 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001874 goto err_finish;
1875
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001876 spin_lock(&fpq->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001877 err = -ENOENT;
Miklos Szeredie96edd92015-07-01 16:26:04 +02001878 if (!fpq->connected)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001879 goto err_unlock_pq;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001880
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001881 req = request_find(fpq, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001882 if (!req)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001883 goto err_unlock_pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001884
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001885 /* Is it an interrupt reply? */
1886 if (req->intr_unique == oh.unique) {
Kirill Tkhai569fda52018-09-25 12:52:42 +03001887 __fuse_get_request(req);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001888 spin_unlock(&fpq->lock);
1889
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001890 err = -EINVAL;
Kirill Tkhai569fda52018-09-25 12:52:42 +03001891 if (nbytes != sizeof(struct fuse_out_header)) {
1892 fuse_put_request(fc, req);
Miklos Szeredi46c34a32015-07-01 16:26:07 +02001893 goto err_finish;
Kirill Tkhai569fda52018-09-25 12:52:42 +03001894 }
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001895
1896 if (oh.error == -ENOSYS)
1897 fc->no_interrupt = 1;
1898 else if (oh.error == -EAGAIN)
Miklos Szeredif88996a2015-07-01 16:26:01 +02001899 queue_interrupt(&fc->iq, req);
Kirill Tkhai569fda52018-09-25 12:52:42 +03001900 fuse_put_request(fc, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001901
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001902 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001903 return nbytes;
1904 }
1905
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001906 clear_bit(FR_SENT, &req->flags);
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001907 list_move(&req->list, &fpq->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001908 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001909 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001910 spin_unlock(&fpq->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001911 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001912 if (!req->out.page_replace)
1913 cs->move_pages = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001914
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001915 err = copy_out_args(cs, &req->out, nbytes);
1916 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001917
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001918 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001919 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001920 if (!fpq->connected)
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001921 err = -ENOENT;
1922 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001923 req->out.h.error = -EIO;
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001924 if (!test_bit(FR_PRIVATE, &req->flags))
1925 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001926 spin_unlock(&fpq->lock);
Miklos Szeredi46c34a32015-07-01 16:26:07 +02001927
Miklos Szeredi334f4852005-09-09 13:10:27 -07001928 request_end(fc, req);
1929
1930 return err ? err : nbytes;
1931
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001932 err_unlock_pq:
1933 spin_unlock(&fpq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001934 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001935 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001936 return err;
1937}
1938
Al Virofbdbacc2015-04-03 21:53:39 -04001939static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001940{
1941 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001942 struct fuse_dev *fud = fuse_get_dev(iocb->ki_filp);
1943
1944 if (!fud)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001945 return -EPERM;
1946
Al Virofbdbacc2015-04-03 21:53:39 -04001947 if (!iter_is_iovec(from))
1948 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001949
Miklos Szeredidc008092015-07-01 16:25:58 +02001950 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001951
Miklos Szeredic36960462015-07-01 16:26:09 +02001952 return fuse_dev_do_write(fud, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001953}
1954
1955static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1956 struct file *out, loff_t *ppos,
1957 size_t len, unsigned int flags)
1958{
1959 unsigned nbuf;
1960 unsigned idx;
1961 struct pipe_buffer *bufs;
1962 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001963 struct fuse_dev *fud;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001964 size_t rem;
1965 ssize_t ret;
1966
Miklos Szeredicc080e92015-07-01 16:26:08 +02001967 fud = fuse_get_dev(out);
1968 if (!fud)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001969 return -EPERM;
1970
Andrey Ryabinina2477b02018-07-17 19:00:33 +03001971 pipe_lock(pipe);
1972
Andrey Ryabinin96354532018-07-17 19:00:35 +03001973 bufs = kvmalloc_array(pipe->nrbufs, sizeof(struct pipe_buffer),
Andrey Ryabinind6d931a2018-07-17 19:00:34 +03001974 GFP_KERNEL);
Andrey Ryabinina2477b02018-07-17 19:00:33 +03001975 if (!bufs) {
1976 pipe_unlock(pipe);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001977 return -ENOMEM;
Andrey Ryabinina2477b02018-07-17 19:00:33 +03001978 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001979
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001980 nbuf = 0;
1981 rem = 0;
1982 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
1983 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
1984
1985 ret = -EINVAL;
1986 if (rem < len) {
1987 pipe_unlock(pipe);
1988 goto out;
1989 }
1990
1991 rem = len;
1992 while (rem) {
1993 struct pipe_buffer *ibuf;
1994 struct pipe_buffer *obuf;
1995
1996 BUG_ON(nbuf >= pipe->buffers);
1997 BUG_ON(!pipe->nrbufs);
1998 ibuf = &pipe->bufs[pipe->curbuf];
1999 obuf = &bufs[nbuf];
2000
2001 if (rem >= ibuf->len) {
2002 *obuf = *ibuf;
2003 ibuf->ops = NULL;
2004 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
2005 pipe->nrbufs--;
2006 } else {
Miklos Szeredi7bf2d1d2016-09-27 10:45:12 +02002007 pipe_buf_get(pipe, ibuf);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002008 *obuf = *ibuf;
2009 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2010 obuf->len = rem;
2011 ibuf->offset += obuf->len;
2012 ibuf->len -= obuf->len;
2013 }
2014 nbuf++;
2015 rem -= obuf->len;
2016 }
2017 pipe_unlock(pipe);
2018
Miklos Szeredidc008092015-07-01 16:25:58 +02002019 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002020 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04002021 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002022 cs.pipe = pipe;
2023
Miklos Szeredice534fb2010-05-25 15:06:07 +02002024 if (flags & SPLICE_F_MOVE)
2025 cs.move_pages = 1;
2026
Miklos Szeredic36960462015-07-01 16:26:09 +02002027 ret = fuse_dev_do_write(fud, &cs, len);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002028
Miklos Szeredia7796382016-09-27 10:45:12 +02002029 for (idx = 0; idx < nbuf; idx++)
2030 pipe_buf_release(pipe, &bufs[idx]);
2031
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002032out:
Andrey Ryabinind6d931a2018-07-17 19:00:34 +03002033 kvfree(bufs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002034 return ret;
2035}
2036
Al Viro076ccb72017-07-03 01:02:18 -04002037static __poll_t fuse_dev_poll(struct file *file, poll_table *wait)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002038{
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002039 __poll_t mask = EPOLLOUT | EPOLLWRNORM;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002040 struct fuse_iqueue *fiq;
Miklos Szeredicc080e92015-07-01 16:26:08 +02002041 struct fuse_dev *fud = fuse_get_dev(file);
2042
2043 if (!fud)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002044 return EPOLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002045
Miklos Szeredicc080e92015-07-01 16:26:08 +02002046 fiq = &fud->fc->iq;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002047 poll_wait(file, &fiq->waitq, wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002048
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002049 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +02002050 if (!fiq->connected)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002051 mask = EPOLLERR;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002052 else if (request_pending(fiq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002053 mask |= EPOLLIN | EPOLLRDNORM;
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002054 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002055
2056 return mask;
2057}
2058
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002059/*
2060 * Abort all requests on the given list (pending or processing)
2061 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002062 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002063 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002064static void end_requests(struct fuse_conn *fc, struct list_head *head)
2065{
2066 while (!list_empty(head)) {
2067 struct fuse_req *req;
2068 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002069 req->out.h.error = -ECONNABORTED;
Miklos Szeredi33e14b42015-07-01 16:26:01 +02002070 clear_bit(FR_SENT, &req->flags);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002071 list_del_init(&req->list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002072 request_end(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002073 }
2074}
2075
Bryan Green357ccf22011-03-01 16:43:52 -08002076static void end_polls(struct fuse_conn *fc)
2077{
2078 struct rb_node *p;
2079
2080 p = rb_first(&fc->polled_files);
2081
2082 while (p) {
2083 struct fuse_file *ff;
2084 ff = rb_entry(p, struct fuse_file, polled_node);
2085 wake_up_interruptible_all(&ff->poll_wait);
2086
2087 p = rb_next(p);
2088 }
2089}
2090
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002091/*
2092 * Abort all requests.
2093 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002094 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2095 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002096 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002097 * The same effect is usually achievable through killing the filesystem daemon
2098 * and all users of the filesystem. The exception is the combination of an
2099 * asynchronous request and the tricky deadlock (see
2100 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002101 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002102 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2103 * requests, they should be finished off immediately. Locked requests will be
2104 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2105 * requests. It is possible that some request will finish before we can. This
2106 * is OK, the request will in that case be removed from the list before we touch
2107 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002108 */
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01002109void fuse_abort_conn(struct fuse_conn *fc, bool is_abort)
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002110{
Miklos Szeredif88996a2015-07-01 16:26:01 +02002111 struct fuse_iqueue *fiq = &fc->iq;
2112
Miklos Szeredid7133112006-04-10 22:54:55 -07002113 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002114 if (fc->connected) {
Miklos Szeredic36960462015-07-01 16:26:09 +02002115 struct fuse_dev *fud;
Miklos Szeredib716d422015-07-01 16:25:59 +02002116 struct fuse_req *req, *next;
Miklos Szeredi75f3ee42018-07-26 16:13:12 +02002117 LIST_HEAD(to_end);
Miklos Szeredib716d422015-07-01 16:25:59 +02002118
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002119 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002120 fc->blocked = 0;
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01002121 fc->aborted = is_abort;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002122 fuse_set_initialized(fc);
Miklos Szeredic36960462015-07-01 16:26:09 +02002123 list_for_each_entry(fud, &fc->devices, entry) {
2124 struct fuse_pqueue *fpq = &fud->pq;
2125
2126 spin_lock(&fpq->lock);
2127 fpq->connected = 0;
2128 list_for_each_entry_safe(req, next, &fpq->io, list) {
2129 req->out.h.error = -ECONNABORTED;
2130 spin_lock(&req->waitq.lock);
2131 set_bit(FR_ABORTED, &req->flags);
2132 if (!test_bit(FR_LOCKED, &req->flags)) {
2133 set_bit(FR_PRIVATE, &req->flags);
Miklos Szeredi87114372018-07-26 16:13:11 +02002134 __fuse_get_request(req);
Miklos Szeredi75f3ee42018-07-26 16:13:12 +02002135 list_move(&req->list, &to_end);
Miklos Szeredic36960462015-07-01 16:26:09 +02002136 }
2137 spin_unlock(&req->waitq.lock);
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02002138 }
Miklos Szeredi75f3ee42018-07-26 16:13:12 +02002139 list_splice_tail_init(&fpq->processing, &to_end);
Miklos Szeredic36960462015-07-01 16:26:09 +02002140 spin_unlock(&fpq->lock);
Miklos Szeredib716d422015-07-01 16:25:59 +02002141 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002142 fc->max_background = UINT_MAX;
2143 flush_bg_queue(fc);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002144
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002145 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002146 fiq->connected = 0;
Miklos Szeredi75f3ee42018-07-26 16:13:12 +02002147 list_for_each_entry(req, &fiq->pending, list)
Tahsin Erdogana8a86d72017-01-12 12:04:04 -08002148 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredi75f3ee42018-07-26 16:13:12 +02002149 list_splice_tail_init(&fiq->pending, &to_end);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002150 while (forget_pending(fiq))
2151 kfree(dequeue_forget(fiq, 1, NULL));
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002152 wake_up_all_locked(&fiq->waitq);
2153 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002154 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szerediee314a82015-07-01 16:26:08 +02002155 end_polls(fc);
2156 wake_up_all(&fc->blocked_waitq);
2157 spin_unlock(&fc->lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002158
Miklos Szeredi75f3ee42018-07-26 16:13:12 +02002159 end_requests(fc, &to_end);
Miklos Szerediee314a82015-07-01 16:26:08 +02002160 } else {
2161 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002162 }
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002163}
Tejun Heo08cbf542009-04-14 10:54:53 +09002164EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002165
Miklos Szeredib8f95e52018-07-26 16:13:11 +02002166void fuse_wait_aborted(struct fuse_conn *fc)
2167{
2168 wait_event(fc->blocked_waitq, atomic_read(&fc->num_waiting) == 0);
2169}
2170
Tejun Heo08cbf542009-04-14 10:54:53 +09002171int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002172{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002173 struct fuse_dev *fud = fuse_get_dev(file);
2174
2175 if (fud) {
2176 struct fuse_conn *fc = fud->fc;
Miklos Szeredic36960462015-07-01 16:26:09 +02002177 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi45ff3502018-07-26 16:13:11 +02002178 LIST_HEAD(to_end);
Miklos Szeredicc080e92015-07-01 16:26:08 +02002179
Miklos Szeredi45ff3502018-07-26 16:13:11 +02002180 spin_lock(&fpq->lock);
Miklos Szeredic36960462015-07-01 16:26:09 +02002181 WARN_ON(!list_empty(&fpq->io));
Miklos Szeredi45ff3502018-07-26 16:13:11 +02002182 list_splice_init(&fpq->processing, &to_end);
2183 spin_unlock(&fpq->lock);
2184
2185 end_requests(fc, &to_end);
2186
Miklos Szeredic36960462015-07-01 16:26:09 +02002187 /* Are we the last open device? */
2188 if (atomic_dec_and_test(&fc->dev_count)) {
2189 WARN_ON(fc->iq.fasync != NULL);
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01002190 fuse_abort_conn(fc, false);
Miklos Szeredic36960462015-07-01 16:26:09 +02002191 }
Miklos Szeredicc080e92015-07-01 16:26:08 +02002192 fuse_dev_free(fud);
Jeff Dike385a17b2006-04-10 22:54:52 -07002193 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07002194 return 0;
2195}
Tejun Heo08cbf542009-04-14 10:54:53 +09002196EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002197
Jeff Dike385a17b2006-04-10 22:54:52 -07002198static int fuse_dev_fasync(int fd, struct file *file, int on)
2199{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002200 struct fuse_dev *fud = fuse_get_dev(file);
2201
2202 if (!fud)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002203 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002204
2205 /* No locking - fasync_helper does its own locking */
Miklos Szeredicc080e92015-07-01 16:26:08 +02002206 return fasync_helper(fd, file, on, &fud->fc->iq.fasync);
Jeff Dike385a17b2006-04-10 22:54:52 -07002207}
2208
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002209static int fuse_device_clone(struct fuse_conn *fc, struct file *new)
2210{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002211 struct fuse_dev *fud;
2212
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002213 if (new->private_data)
2214 return -EINVAL;
2215
Miklos Szeredicc080e92015-07-01 16:26:08 +02002216 fud = fuse_dev_alloc(fc);
2217 if (!fud)
2218 return -ENOMEM;
2219
2220 new->private_data = fud;
Miklos Szeredic36960462015-07-01 16:26:09 +02002221 atomic_inc(&fc->dev_count);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002222
2223 return 0;
2224}
2225
2226static long fuse_dev_ioctl(struct file *file, unsigned int cmd,
2227 unsigned long arg)
2228{
2229 int err = -ENOTTY;
2230
2231 if (cmd == FUSE_DEV_IOC_CLONE) {
2232 int oldfd;
2233
2234 err = -EFAULT;
2235 if (!get_user(oldfd, (__u32 __user *) arg)) {
2236 struct file *old = fget(oldfd);
2237
2238 err = -EINVAL;
2239 if (old) {
Jann Horn8ed1f0e2015-08-16 20:27:01 +02002240 struct fuse_dev *fud = NULL;
2241
2242 /*
2243 * Check against file->f_op because CUSE
2244 * uses the same ioctl handler.
2245 */
2246 if (old->f_op == file->f_op &&
2247 old->f_cred->user_ns == file->f_cred->user_ns)
2248 fud = fuse_get_dev(old);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002249
Miklos Szeredicc080e92015-07-01 16:26:08 +02002250 if (fud) {
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002251 mutex_lock(&fuse_mutex);
Miklos Szeredicc080e92015-07-01 16:26:08 +02002252 err = fuse_device_clone(fud->fc, file);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002253 mutex_unlock(&fuse_mutex);
2254 }
2255 fput(old);
2256 }
2257 }
2258 }
2259 return err;
2260}
2261
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002262const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002263 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002264 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002265 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002266 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002267 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002268 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002269 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002270 .poll = fuse_dev_poll,
2271 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002272 .fasync = fuse_dev_fasync,
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002273 .unlocked_ioctl = fuse_dev_ioctl,
2274 .compat_ioctl = fuse_dev_ioctl,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002275};
Tejun Heo08cbf542009-04-14 10:54:53 +09002276EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002277
2278static struct miscdevice fuse_miscdevice = {
2279 .minor = FUSE_MINOR,
2280 .name = "fuse",
2281 .fops = &fuse_dev_operations,
2282};
2283
2284int __init fuse_dev_init(void)
2285{
2286 int err = -ENOMEM;
2287 fuse_req_cachep = kmem_cache_create("fuse_request",
2288 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002289 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002290 if (!fuse_req_cachep)
2291 goto out;
2292
2293 err = misc_register(&fuse_miscdevice);
2294 if (err)
2295 goto out_cache_clean;
2296
2297 return 0;
2298
2299 out_cache_clean:
2300 kmem_cache_destroy(fuse_req_cachep);
2301 out:
2302 return err;
2303}
2304
2305void fuse_dev_cleanup(void)
2306{
2307 misc_deregister(&fuse_miscdevice);
2308 kmem_cache_destroy(fuse_req_cachep);
2309}