blob: e03ca14f40e957703ad901e83c2f6ec90f46fc56 [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 {
Maxim Patlasov4250c062012-10-26 19:48:07 +040067 pages = kmalloc(sizeof(struct page *) * npages, flags);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040068 page_descs = kmalloc(sizeof(struct fuse_page_desc) *
69 npages, flags);
70 }
Maxim Patlasov4250c062012-10-26 19:48:07 +040071
Maxim Patlasovb2430d72012-10-26 19:49:24 +040072 if (!pages || !page_descs) {
73 kfree(pages);
74 kfree(page_descs);
Maxim Patlasov4250c062012-10-26 19:48:07 +040075 kmem_cache_free(fuse_req_cachep, req);
76 return NULL;
77 }
78
Maxim Patlasovb2430d72012-10-26 19:49:24 +040079 fuse_request_init(req, pages, page_descs, npages);
Maxim Patlasov4250c062012-10-26 19:48:07 +040080 }
Miklos Szeredi334f4852005-09-09 13:10:27 -070081 return req;
82}
Maxim Patlasov4250c062012-10-26 19:48:07 +040083
84struct fuse_req *fuse_request_alloc(unsigned npages)
85{
86 return __fuse_request_alloc(npages, GFP_KERNEL);
87}
Tejun Heo08cbf542009-04-14 10:54:53 +090088EXPORT_SYMBOL_GPL(fuse_request_alloc);
Miklos Szeredi334f4852005-09-09 13:10:27 -070089
Maxim Patlasov4250c062012-10-26 19:48:07 +040090struct fuse_req *fuse_request_alloc_nofs(unsigned npages)
Miklos Szeredi3be5a522008-04-30 00:54:41 -070091{
Maxim Patlasov4250c062012-10-26 19:48:07 +040092 return __fuse_request_alloc(npages, GFP_NOFS);
Miklos Szeredi3be5a522008-04-30 00:54:41 -070093}
94
Miklos Szeredi334f4852005-09-09 13:10:27 -070095void fuse_request_free(struct fuse_req *req)
96{
Maxim Patlasovb2430d72012-10-26 19:49:24 +040097 if (req->pages != req->inline_pages) {
Maxim Patlasov4250c062012-10-26 19:48:07 +040098 kfree(req->pages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040099 kfree(req->page_descs);
100 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700101 kmem_cache_free(fuse_req_cachep, req);
102}
103
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400104void __fuse_get_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700105{
Elena Reshetovaec99f6d2017-03-03 11:04:04 +0200106 refcount_inc(&req->count);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700107}
108
109/* Must be called with > 1 refcount */
110static void __fuse_put_request(struct fuse_req *req)
111{
Elena Reshetovaec99f6d2017-03-03 11:04:04 +0200112 refcount_dec(&req->count);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700113}
114
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100115void fuse_set_initialized(struct fuse_conn *fc)
116{
117 /* Make sure stores before this are seen on another CPU */
118 smp_wmb();
119 fc->initialized = 1;
120}
121
Maxim Patlasov0aada882013-03-21 18:02:28 +0400122static bool fuse_block_alloc(struct fuse_conn *fc, bool for_background)
123{
124 return !fc->initialized || (for_background && fc->blocked);
125}
126
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400127static struct fuse_req *__fuse_get_req(struct fuse_conn *fc, unsigned npages,
128 bool for_background)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700129{
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700130 struct fuse_req *req;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700131 int err;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200132 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400133
134 if (fuse_block_alloc(fc, for_background)) {
Maxim Patlasov0aada882013-03-21 18:02:28 +0400135 err = -EINTR;
Al Viro7d3a07f2016-07-19 03:08:27 -0400136 if (wait_event_killable_exclusive(fc->blocked_waitq,
137 !fuse_block_alloc(fc, for_background)))
Maxim Patlasov0aada882013-03-21 18:02:28 +0400138 goto out;
139 }
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100140 /* Matches smp_wmb() in fuse_set_initialized() */
141 smp_rmb();
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700142
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700143 err = -ENOTCONN;
144 if (!fc->connected)
145 goto out;
146
Miklos Szeredide155222015-07-01 16:25:57 +0200147 err = -ECONNREFUSED;
148 if (fc->conn_error)
149 goto out;
150
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400151 req = fuse_request_alloc(npages);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200152 err = -ENOMEM;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400153 if (!req) {
154 if (for_background)
155 wake_up(&fc->blocked_waitq);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200156 goto out;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400157 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700158
Eric W. Biederman8cb08322018-02-21 11:18:07 -0600159 req->in.h.uid = from_kuid(fc->user_ns, current_fsuid());
160 req->in.h.gid = from_kgid(fc->user_ns, current_fsgid());
Eric W. Biedermanc9582eb2018-02-21 10:52:06 -0600161 req->in.h.pid = pid_nr_ns(task_pid(current), fc->pid_ns);
162
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200163 __set_bit(FR_WAITING, &req->flags);
164 if (for_background)
165 __set_bit(FR_BACKGROUND, &req->flags);
166
Eric W. Biedermanc9582eb2018-02-21 10:52:06 -0600167 if (unlikely(req->in.h.uid == ((uid_t)-1) ||
168 req->in.h.gid == ((gid_t)-1))) {
169 fuse_put_request(fc, req);
170 return ERR_PTR(-EOVERFLOW);
171 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700172 return req;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200173
174 out:
175 atomic_dec(&fc->num_waiting);
176 return ERR_PTR(err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700177}
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400178
179struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages)
180{
181 return __fuse_get_req(fc, npages, false);
182}
Tejun Heo08cbf542009-04-14 10:54:53 +0900183EXPORT_SYMBOL_GPL(fuse_get_req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700184
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400185struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc,
186 unsigned npages)
187{
188 return __fuse_get_req(fc, npages, true);
189}
190EXPORT_SYMBOL_GPL(fuse_get_req_for_background);
191
Miklos Szeredi33649c92006-06-25 05:48:52 -0700192/*
193 * Return request in fuse_file->reserved_req. However that may
194 * currently be in use. If that is the case, wait for it to become
195 * available.
196 */
197static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
198 struct file *file)
199{
200 struct fuse_req *req = NULL;
201 struct fuse_file *ff = file->private_data;
202
203 do {
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700204 wait_event(fc->reserved_req_waitq, ff->reserved_req);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700205 spin_lock(&fc->lock);
206 if (ff->reserved_req) {
207 req = ff->reserved_req;
208 ff->reserved_req = NULL;
Al Virocb0942b2012-08-27 14:48:26 -0400209 req->stolen_file = get_file(file);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700210 }
211 spin_unlock(&fc->lock);
212 } while (!req);
213
214 return req;
215}
216
217/*
218 * Put stolen request back into fuse_file->reserved_req
219 */
220static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
221{
222 struct file *file = req->stolen_file;
223 struct fuse_file *ff = file->private_data;
224
225 spin_lock(&fc->lock);
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400226 fuse_request_init(req, req->pages, req->page_descs, req->max_pages);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700227 BUG_ON(ff->reserved_req);
228 ff->reserved_req = req;
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700229 wake_up_all(&fc->reserved_req_waitq);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700230 spin_unlock(&fc->lock);
231 fput(file);
232}
233
234/*
235 * Gets a requests for a file operation, always succeeds
236 *
237 * This is used for sending the FLUSH request, which must get to
238 * userspace, due to POSIX locks which may need to be unlocked.
239 *
240 * If allocation fails due to OOM, use the reserved request in
241 * fuse_file.
242 *
243 * This is very unlikely to deadlock accidentally, since the
244 * filesystem should not have it's own file open. If deadlock is
245 * intentional, it can still be broken by "aborting" the filesystem.
246 */
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400247struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc,
248 struct file *file)
Miklos Szeredi33649c92006-06-25 05:48:52 -0700249{
250 struct fuse_req *req;
251
252 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400253 wait_event(fc->blocked_waitq, fc->initialized);
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100254 /* Matches smp_wmb() in fuse_set_initialized() */
255 smp_rmb();
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400256 req = fuse_request_alloc(0);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700257 if (!req)
258 req = get_reserved_req(fc, file);
259
Eric W. Biederman8cb08322018-02-21 11:18:07 -0600260 req->in.h.uid = from_kuid_munged(fc->user_ns, current_fsuid());
261 req->in.h.gid = from_kgid_munged(fc->user_ns, current_fsgid());
Eric W. Biedermanc9582eb2018-02-21 10:52:06 -0600262 req->in.h.pid = pid_nr_ns(task_pid(current), fc->pid_ns);
263
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200264 __set_bit(FR_WAITING, &req->flags);
265 __clear_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700266 return req;
267}
268
Miklos Szeredi334f4852005-09-09 13:10:27 -0700269void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
270{
Elena Reshetovaec99f6d2017-03-03 11:04:04 +0200271 if (refcount_dec_and_test(&req->count)) {
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200272 if (test_bit(FR_BACKGROUND, &req->flags)) {
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400273 /*
274 * We get here in the unlikely case that a background
275 * request was allocated but not sent
276 */
277 spin_lock(&fc->lock);
278 if (!fc->blocked)
279 wake_up(&fc->blocked_waitq);
280 spin_unlock(&fc->lock);
281 }
282
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200283 if (test_bit(FR_WAITING, &req->flags)) {
284 __clear_bit(FR_WAITING, &req->flags);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200285 atomic_dec(&fc->num_waiting);
Miklos Szeredi73e0e732015-07-01 16:25:56 +0200286 }
Miklos Szeredi33649c92006-06-25 05:48:52 -0700287
288 if (req->stolen_file)
289 put_reserved_req(fc, req);
290 else
291 fuse_request_free(req);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800292 }
293}
Tejun Heo08cbf542009-04-14 10:54:53 +0900294EXPORT_SYMBOL_GPL(fuse_put_request);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800295
Miklos Szeredid12def12008-02-06 01:38:39 -0800296static unsigned len_args(unsigned numargs, struct fuse_arg *args)
297{
298 unsigned nbytes = 0;
299 unsigned i;
300
301 for (i = 0; i < numargs; i++)
302 nbytes += args[i].size;
303
304 return nbytes;
305}
306
Miklos Szeredif88996a2015-07-01 16:26:01 +0200307static u64 fuse_get_unique(struct fuse_iqueue *fiq)
Miklos Szeredid12def12008-02-06 01:38:39 -0800308{
Miklos Szeredif88996a2015-07-01 16:26:01 +0200309 return ++fiq->reqctr;
Miklos Szeredid12def12008-02-06 01:38:39 -0800310}
311
Miklos Szeredif88996a2015-07-01 16:26:01 +0200312static void queue_request(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800313{
Miklos Szeredid12def12008-02-06 01:38:39 -0800314 req->in.h.len = sizeof(struct fuse_in_header) +
315 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200316 list_add_tail(&req->list, &fiq->pending);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200317 wake_up_locked(&fiq->waitq);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200318 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredid12def12008-02-06 01:38:39 -0800319}
320
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100321void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
322 u64 nodeid, u64 nlookup)
323{
Miklos Szeredif88996a2015-07-01 16:26:01 +0200324 struct fuse_iqueue *fiq = &fc->iq;
325
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100326 forget->forget_one.nodeid = nodeid;
327 forget->forget_one.nlookup = nlookup;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100328
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200329 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200330 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200331 fiq->forget_list_tail->next = forget;
332 fiq->forget_list_tail = forget;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200333 wake_up_locked(&fiq->waitq);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200334 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200335 } else {
336 kfree(forget);
337 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200338 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100339}
340
Miklos Szeredid12def12008-02-06 01:38:39 -0800341static void flush_bg_queue(struct fuse_conn *fc)
342{
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700343 while (fc->active_background < fc->max_background &&
Miklos Szeredid12def12008-02-06 01:38:39 -0800344 !list_empty(&fc->bg_queue)) {
345 struct fuse_req *req;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200346 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredid12def12008-02-06 01:38:39 -0800347
348 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
349 list_del(&req->list);
350 fc->active_background++;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200351 spin_lock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200352 req->in.h.unique = fuse_get_unique(fiq);
353 queue_request(fiq, req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200354 spin_unlock(&fiq->waitq.lock);
Miklos Szeredid12def12008-02-06 01:38:39 -0800355 }
356}
357
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200358/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700359 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700360 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800361 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700362 * was closed. The requester thread is woken up (if still waiting),
363 * the 'end' callback is called if given, else the reference to the
364 * request is released
Miklos Szeredi334f4852005-09-09 13:10:27 -0700365 */
366static void request_end(struct fuse_conn *fc, struct fuse_req *req)
367{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200368 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi365ae712015-07-01 16:26:06 +0200369
Miklos Szerediefe28002015-07-01 16:26:07 +0200370 if (test_and_set_bit(FR_FINISHED, &req->flags))
Miklos Szeredi365ae712015-07-01 16:26:06 +0200371 return;
Miklos Szeredi365ae712015-07-01 16:26:06 +0200372
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200373 spin_lock(&fiq->waitq.lock);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200374 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200375 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200376 WARN_ON(test_bit(FR_PENDING, &req->flags));
377 WARN_ON(test_bit(FR_SENT, &req->flags));
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200378 if (test_bit(FR_BACKGROUND, &req->flags)) {
Miklos Szerediefe28002015-07-01 16:26:07 +0200379 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200380 clear_bit(FR_BACKGROUND, &req->flags);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400381 if (fc->num_background == fc->max_background)
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700382 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400383
384 /* Wake up next waiter, if any */
Miklos Szeredi3c18ef82013-04-17 21:50:58 +0200385 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400386 wake_up(&fc->blocked_waitq);
387
Tejun Heo8a301eb2018-02-02 09:54:14 -0800388 if (fc->num_background == fc->congestion_threshold && fc->sb) {
Jan Kara5f7f7542017-04-12 12:24:40 +0200389 clear_bdi_congested(fc->sb->s_bdi, BLK_RW_SYNC);
390 clear_bdi_congested(fc->sb->s_bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700391 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700392 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800393 fc->active_background--;
394 flush_bg_queue(fc);
Miklos Szerediefe28002015-07-01 16:26:07 +0200395 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700396 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700397 wake_up(&req->waitq);
Miklos Szeredi1e6881c2015-07-01 16:26:07 +0200398 if (req->end)
399 req->end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100400 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700401}
402
Miklos Szeredif88996a2015-07-01 16:26:01 +0200403static void queue_interrupt(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700404{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200405 spin_lock(&fiq->waitq.lock);
Sahitya Tummala6ba4d272017-02-08 20:30:56 +0530406 if (test_bit(FR_FINISHED, &req->flags)) {
407 spin_unlock(&fiq->waitq.lock);
408 return;
409 }
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200410 if (list_empty(&req->intr_entry)) {
411 list_add_tail(&req->intr_entry, &fiq->interrupts);
412 wake_up_locked(&fiq->waitq);
413 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200414 spin_unlock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200415 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700416}
417
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700418static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700419{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200420 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic4775262015-07-01 16:26:00 +0200421 int err;
422
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700423 if (!fc->no_interrupt) {
424 /* Any signal may interrupt this */
Miklos Szeredic4775262015-07-01 16:26:00 +0200425 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200426 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200427 if (!err)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700428 return;
429
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200430 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200431 /* matches barrier in fuse_dev_do_read() */
432 smp_mb__after_atomic();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200433 if (test_bit(FR_SENT, &req->flags))
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200434 queue_interrupt(fiq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700435 }
436
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200437 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700438 /* Only fatal signals may interrupt this */
Al Viro7d3a07f2016-07-19 03:08:27 -0400439 err = wait_event_killable(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200440 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200441 if (!err)
Miklos Szeredia131de02007-10-16 23:31:04 -0700442 return;
443
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200444 spin_lock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700445 /* Request is not yet in userspace, bail out */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200446 if (test_bit(FR_PENDING, &req->flags)) {
Miklos Szeredia131de02007-10-16 23:31:04 -0700447 list_del(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200448 spin_unlock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700449 __fuse_put_request(req);
450 req->out.h.error = -EINTR;
451 return;
452 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200453 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700454 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700455
Miklos Szeredia131de02007-10-16 23:31:04 -0700456 /*
457 * Either request is already in userspace, or it was forced.
458 * Wait it out.
459 */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200460 wait_event(req->waitq, test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi334f4852005-09-09 13:10:27 -0700461}
462
Eric Wong6a4e9222013-02-04 13:04:44 +0000463static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700464{
Miklos Szeredie16714d2015-07-01 16:26:01 +0200465 struct fuse_iqueue *fiq = &fc->iq;
466
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200467 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200468 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200469 if (!fiq->connected) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200470 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700471 req->out.h.error = -ENOTCONN;
Miklos Szeredic4775262015-07-01 16:26:00 +0200472 } else {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200473 req->in.h.unique = fuse_get_unique(fiq);
474 queue_request(fiq, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700475 /* acquire extra reference, since request is still needed
476 after request_end() */
477 __fuse_get_request(req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200478 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700479
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700480 request_wait_answer(fc, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200481 /* Pairs with smp_wmb() in request_end() */
482 smp_rmb();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700483 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700484}
Eric Wong6a4e9222013-02-04 13:04:44 +0000485
486void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
487{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200488 __set_bit(FR_ISREPLY, &req->flags);
489 if (!test_bit(FR_WAITING, &req->flags)) {
490 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200491 atomic_inc(&fc->num_waiting);
492 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000493 __fuse_request_send(fc, req);
494}
Tejun Heo08cbf542009-04-14 10:54:53 +0900495EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700496
Miklos Szeredi21f62172015-01-06 10:45:35 +0100497static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
498{
499 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
500 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
501
502 if (fc->minor < 9) {
503 switch (args->in.h.opcode) {
504 case FUSE_LOOKUP:
505 case FUSE_CREATE:
506 case FUSE_MKNOD:
507 case FUSE_MKDIR:
508 case FUSE_SYMLINK:
509 case FUSE_LINK:
510 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
511 break;
512 case FUSE_GETATTR:
513 case FUSE_SETATTR:
514 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
515 break;
516 }
517 }
518 if (fc->minor < 12) {
519 switch (args->in.h.opcode) {
520 case FUSE_CREATE:
521 args->in.args[0].size = sizeof(struct fuse_open_in);
522 break;
523 case FUSE_MKNOD:
524 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
525 break;
526 }
527 }
528}
529
Miklos Szeredi70781872014-12-12 09:49:05 +0100530ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
531{
532 struct fuse_req *req;
533 ssize_t ret;
534
535 req = fuse_get_req(fc, 0);
536 if (IS_ERR(req))
537 return PTR_ERR(req);
538
Miklos Szeredi21f62172015-01-06 10:45:35 +0100539 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
540 fuse_adjust_compat(fc, args);
541
Miklos Szeredi70781872014-12-12 09:49:05 +0100542 req->in.h.opcode = args->in.h.opcode;
543 req->in.h.nodeid = args->in.h.nodeid;
544 req->in.numargs = args->in.numargs;
545 memcpy(req->in.args, args->in.args,
546 args->in.numargs * sizeof(struct fuse_in_arg));
547 req->out.argvar = args->out.argvar;
548 req->out.numargs = args->out.numargs;
549 memcpy(req->out.args, args->out.args,
550 args->out.numargs * sizeof(struct fuse_arg));
551 fuse_request_send(fc, req);
552 ret = req->out.h.error;
553 if (!ret && args->out.argvar) {
554 BUG_ON(args->out.numargs != 1);
555 ret = req->out.args[0].size;
556 }
557 fuse_put_request(fc, req);
558
559 return ret;
560}
561
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200562/*
563 * Called under fc->lock
564 *
565 * fc->connected must have been checked previously
566 */
567void fuse_request_send_background_locked(struct fuse_conn *fc,
568 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800569{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200570 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
571 if (!test_bit(FR_WAITING, &req->flags)) {
572 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200573 atomic_inc(&fc->num_waiting);
574 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200575 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800576 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700577 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800578 fc->blocked = 1;
Jan Kara7fbbe972017-04-12 12:24:41 +0200579 if (fc->num_background == fc->congestion_threshold && fc->sb) {
Jan Kara5f7f7542017-04-12 12:24:40 +0200580 set_bdi_congested(fc->sb->s_bdi, BLK_RW_SYNC);
581 set_bdi_congested(fc->sb->s_bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800582 }
583 list_add_tail(&req->list, &fc->bg_queue);
584 flush_bg_queue(fc);
585}
586
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200587void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700588{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200589 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700590 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700591 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200592 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700593 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700594 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200595 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700596 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200597 req->end(fc, req);
598 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700599 }
600}
Tejun Heo08cbf542009-04-14 10:54:53 +0900601EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700602
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200603static int fuse_request_send_notify_reply(struct fuse_conn *fc,
604 struct fuse_req *req, u64 unique)
605{
606 int err = -ENODEV;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200607 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200608
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200609 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200610 req->in.h.unique = unique;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200611 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200612 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200613 queue_request(fiq, req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200614 err = 0;
615 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200616 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200617
618 return err;
619}
620
Anand V. Avati0b05b182012-08-19 08:53:23 -0400621void fuse_force_forget(struct file *file, u64 nodeid)
622{
Al Viro6131ffa2013-02-27 16:59:05 -0500623 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400624 struct fuse_conn *fc = get_fuse_conn(inode);
625 struct fuse_req *req;
626 struct fuse_forget_in inarg;
627
628 memset(&inarg, 0, sizeof(inarg));
629 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400630 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400631 req->in.h.opcode = FUSE_FORGET;
632 req->in.h.nodeid = nodeid;
633 req->in.numargs = 1;
634 req->in.args[0].size = sizeof(inarg);
635 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200636 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000637 __fuse_request_send(fc, req);
638 /* ignore errors */
639 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400640}
641
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700642/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700643 * Lock the request. Up to the next unlock_request() there mustn't be
644 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700645 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700646 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200647static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700648{
649 int err = 0;
650 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200651 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200652 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700653 err = -ENOENT;
654 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200655 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200656 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700657 }
658 return err;
659}
660
661/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200662 * Unlock request. If it was aborted while locked, caller is responsible
663 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700664 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200665static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700666{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200667 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700668 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200669 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200670 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200671 err = -ENOENT;
672 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200673 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200674 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700675 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200676 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700677}
678
679struct fuse_copy_state {
680 int write;
681 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400682 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200683 struct pipe_buffer *pipebufs;
684 struct pipe_buffer *currbuf;
685 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700686 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700687 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700688 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200689 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200690 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700691};
692
Miklos Szeredidc008092015-07-01 16:25:58 +0200693static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400694 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700695{
696 memset(cs, 0, sizeof(*cs));
697 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400698 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700699}
700
701/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800702static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700703{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200704 if (cs->currbuf) {
705 struct pipe_buffer *buf = cs->currbuf;
706
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200707 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200708 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200709 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200710 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700711 if (cs->write) {
712 flush_dcache_page(cs->pg);
713 set_page_dirty_lock(cs->pg);
714 }
715 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700716 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200717 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700718}
719
720/*
721 * Get another pagefull of userspace buffer, and map it to kernel
722 * address space, and lock request
723 */
724static int fuse_copy_fill(struct fuse_copy_state *cs)
725{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200726 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700727 int err;
728
Miklos Szeredidc008092015-07-01 16:25:58 +0200729 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200730 if (err)
731 return err;
732
Miklos Szeredi334f4852005-09-09 13:10:27 -0700733 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200734 if (cs->pipebufs) {
735 struct pipe_buffer *buf = cs->pipebufs;
736
Miklos Szeredic3021622010-05-25 15:06:07 +0200737 if (!cs->write) {
Miklos Szeredifba597d2016-09-27 10:45:12 +0200738 err = pipe_buf_confirm(cs->pipe, buf);
Miklos Szeredic3021622010-05-25 15:06:07 +0200739 if (err)
740 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200741
Miklos Szeredic3021622010-05-25 15:06:07 +0200742 BUG_ON(!cs->nr_segs);
743 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200744 cs->pg = buf->page;
745 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200746 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200747 cs->pipebufs++;
748 cs->nr_segs--;
749 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200750 if (cs->nr_segs == cs->pipe->buffers)
751 return -EIO;
752
753 page = alloc_page(GFP_HIGHUSER);
754 if (!page)
755 return -ENOMEM;
756
757 buf->page = page;
758 buf->offset = 0;
759 buf->len = 0;
760
761 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200762 cs->pg = page;
763 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200764 cs->len = PAGE_SIZE;
765 cs->pipebufs++;
766 cs->nr_segs++;
767 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200768 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400769 size_t off;
770 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200771 if (err < 0)
772 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400773 BUG_ON(!err);
774 cs->len = err;
775 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200776 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400777 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700778 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700779
Miklos Szeredidc008092015-07-01 16:25:58 +0200780 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700781}
782
783/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800784static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700785{
786 unsigned ncpy = min(*size, cs->len);
787 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200788 void *pgaddr = kmap_atomic(cs->pg);
789 void *buf = pgaddr + cs->offset;
790
Miklos Szeredi334f4852005-09-09 13:10:27 -0700791 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200792 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700793 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200794 memcpy(*val, buf, ncpy);
795
796 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700797 *val += ncpy;
798 }
799 *size -= ncpy;
800 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200801 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700802 return ncpy;
803}
804
Miklos Szeredice534fb2010-05-25 15:06:07 +0200805static int fuse_check_page(struct page *page)
806{
807 if (page_mapcount(page) ||
808 page->mapping != NULL ||
809 page_count(page) != 1 ||
810 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
811 ~(1 << PG_locked |
812 1 << PG_referenced |
813 1 << PG_uptodate |
814 1 << PG_lru |
815 1 << PG_active |
816 1 << PG_reclaim))) {
817 printk(KERN_WARNING "fuse: trying to steal weird page\n");
818 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);
819 return 1;
820 }
821 return 0;
822}
823
824static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
825{
826 int err;
827 struct page *oldpage = *pagep;
828 struct page *newpage;
829 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200830
Miklos Szeredidc008092015-07-01 16:25:58 +0200831 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200832 if (err)
833 return err;
834
Miklos Szeredice534fb2010-05-25 15:06:07 +0200835 fuse_copy_finish(cs);
836
Miklos Szeredifba597d2016-09-27 10:45:12 +0200837 err = pipe_buf_confirm(cs->pipe, buf);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200838 if (err)
839 return err;
840
841 BUG_ON(!cs->nr_segs);
842 cs->currbuf = buf;
843 cs->len = buf->len;
844 cs->pipebufs++;
845 cs->nr_segs--;
846
847 if (cs->len != PAGE_SIZE)
848 goto out_fallback;
849
Miklos Szeredica76f5b2016-09-27 10:45:12 +0200850 if (pipe_buf_steal(cs->pipe, buf) != 0)
Miklos Szeredice534fb2010-05-25 15:06:07 +0200851 goto out_fallback;
852
853 newpage = buf->page;
854
Miklos Szerediaa991b32015-02-26 11:45:47 +0100855 if (!PageUptodate(newpage))
856 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200857
858 ClearPageMappedToDisk(newpage);
859
860 if (fuse_check_page(newpage) != 0)
861 goto out_fallback_unlock;
862
Miklos Szeredice534fb2010-05-25 15:06:07 +0200863 /*
864 * This is a new and locked page, it shouldn't be mapped or
865 * have any special flags on it
866 */
867 if (WARN_ON(page_mapped(oldpage)))
868 goto out_fallback_unlock;
869 if (WARN_ON(page_has_private(oldpage)))
870 goto out_fallback_unlock;
871 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
872 goto out_fallback_unlock;
873 if (WARN_ON(PageMlocked(oldpage)))
874 goto out_fallback_unlock;
875
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700876 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200877 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700878 unlock_page(newpage);
879 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200880 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700881
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300882 get_page(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200883
884 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
885 lru_cache_add_file(newpage);
886
887 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200888 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200889 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200890 err = -ENOENT;
891 else
892 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200893 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200894
895 if (err) {
896 unlock_page(newpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300897 put_page(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200898 return err;
899 }
900
901 unlock_page(oldpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300902 put_page(oldpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200903 cs->len = 0;
904
905 return 0;
906
907out_fallback_unlock:
908 unlock_page(newpage);
909out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200910 cs->pg = buf->page;
911 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200912
Miklos Szeredidc008092015-07-01 16:25:58 +0200913 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200914 if (err)
915 return err;
916
917 return 1;
918}
919
Miklos Szeredic3021622010-05-25 15:06:07 +0200920static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
921 unsigned offset, unsigned count)
922{
923 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200924 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200925
926 if (cs->nr_segs == cs->pipe->buffers)
927 return -EIO;
928
Miklos Szeredidc008092015-07-01 16:25:58 +0200929 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200930 if (err)
931 return err;
932
Miklos Szeredic3021622010-05-25 15:06:07 +0200933 fuse_copy_finish(cs);
934
935 buf = cs->pipebufs;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300936 get_page(page);
Miklos Szeredic3021622010-05-25 15:06:07 +0200937 buf->page = page;
938 buf->offset = offset;
939 buf->len = count;
940
941 cs->pipebufs++;
942 cs->nr_segs++;
943 cs->len = 0;
944
945 return 0;
946}
947
Miklos Szeredi334f4852005-09-09 13:10:27 -0700948/*
949 * Copy a page in the request to/from the userspace buffer. Must be
950 * done atomically
951 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200952static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800953 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700954{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200955 int err;
956 struct page *page = *pagep;
957
Miklos Szeredib6777c42010-10-26 14:22:27 -0700958 if (page && zeroing && count < PAGE_SIZE)
959 clear_highpage(page);
960
Miklos Szeredi334f4852005-09-09 13:10:27 -0700961 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200962 if (cs->write && cs->pipebufs && page) {
963 return fuse_ref_page(cs, page, offset, count);
964 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200965 if (cs->move_pages && page &&
966 offset == 0 && count == PAGE_SIZE) {
967 err = fuse_try_move_page(cs, pagep);
968 if (err <= 0)
969 return err;
970 } else {
971 err = fuse_copy_fill(cs);
972 if (err)
973 return err;
974 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100975 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700976 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800977 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700978 void *buf = mapaddr + offset;
979 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +0800980 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700981 } else
982 offset += fuse_copy_do(cs, NULL, &count);
983 }
984 if (page && !cs->write)
985 flush_dcache_page(page);
986 return 0;
987}
988
989/* Copy pages in the request to/from userspace buffer */
990static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
991 int zeroing)
992{
993 unsigned i;
994 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700995
996 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200997 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400998 unsigned offset = req->page_descs[i].offset;
999 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001000
1001 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1002 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001003 if (err)
1004 return err;
1005
1006 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001007 }
1008 return 0;
1009}
1010
1011/* Copy a single argument in the request to/from userspace buffer */
1012static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1013{
1014 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001015 if (!cs->len) {
1016 int err = fuse_copy_fill(cs);
1017 if (err)
1018 return err;
1019 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001020 fuse_copy_do(cs, &val, &size);
1021 }
1022 return 0;
1023}
1024
1025/* Copy request arguments to/from userspace buffer */
1026static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1027 unsigned argpages, struct fuse_arg *args,
1028 int zeroing)
1029{
1030 int err = 0;
1031 unsigned i;
1032
1033 for (i = 0; !err && i < numargs; i++) {
1034 struct fuse_arg *arg = &args[i];
1035 if (i == numargs - 1 && argpages)
1036 err = fuse_copy_pages(cs, arg->size, zeroing);
1037 else
1038 err = fuse_copy_one(cs, arg->value, arg->size);
1039 }
1040 return err;
1041}
1042
Miklos Szeredif88996a2015-07-01 16:26:01 +02001043static int forget_pending(struct fuse_iqueue *fiq)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001044{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001045 return fiq->forget_list_head.next != NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001046}
1047
Miklos Szeredif88996a2015-07-01 16:26:01 +02001048static int request_pending(struct fuse_iqueue *fiq)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001049{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001050 return !list_empty(&fiq->pending) || !list_empty(&fiq->interrupts) ||
1051 forget_pending(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001052}
1053
Miklos Szeredi334f4852005-09-09 13:10:27 -07001054/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001055 * Transfer an interrupt request to userspace
1056 *
1057 * Unlike other requests this is assembled on demand, without a need
1058 * to allocate a separate fuse_req structure.
1059 *
Miklos Szeredifd22d622015-07-01 16:26:03 +02001060 * Called with fiq->waitq.lock held, releases it
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001061 */
Miklos Szeredifd22d622015-07-01 16:26:03 +02001062static int fuse_read_interrupt(struct fuse_iqueue *fiq,
1063 struct fuse_copy_state *cs,
Miklos Szeredic3021622010-05-25 15:06:07 +02001064 size_t nbytes, struct fuse_req *req)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001065__releases(fiq->waitq.lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001066{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001067 struct fuse_in_header ih;
1068 struct fuse_interrupt_in arg;
1069 unsigned reqsize = sizeof(ih) + sizeof(arg);
1070 int err;
1071
1072 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001073 req->intr_unique = fuse_get_unique(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001074 memset(&ih, 0, sizeof(ih));
1075 memset(&arg, 0, sizeof(arg));
1076 ih.len = reqsize;
1077 ih.opcode = FUSE_INTERRUPT;
1078 ih.unique = req->intr_unique;
1079 arg.unique = req->in.h.unique;
1080
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001081 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001082 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001083 return -EINVAL;
1084
Miklos Szeredic3021622010-05-25 15:06:07 +02001085 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001086 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001087 err = fuse_copy_one(cs, &arg, sizeof(arg));
1088 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001089
1090 return err ? err : reqsize;
1091}
1092
Miklos Szeredif88996a2015-07-01 16:26:01 +02001093static struct fuse_forget_link *dequeue_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001094 unsigned max,
1095 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001096{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001097 struct fuse_forget_link *head = fiq->forget_list_head.next;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001098 struct fuse_forget_link **newhead = &head;
1099 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001100
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001101 for (count = 0; *newhead != NULL && count < max; count++)
1102 newhead = &(*newhead)->next;
1103
Miklos Szeredif88996a2015-07-01 16:26:01 +02001104 fiq->forget_list_head.next = *newhead;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001105 *newhead = NULL;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001106 if (fiq->forget_list_head.next == NULL)
1107 fiq->forget_list_tail = &fiq->forget_list_head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001108
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001109 if (countp != NULL)
1110 *countp = count;
1111
1112 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001113}
1114
Miklos Szeredifd22d622015-07-01 16:26:03 +02001115static int fuse_read_single_forget(struct fuse_iqueue *fiq,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001116 struct fuse_copy_state *cs,
1117 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001118__releases(fiq->waitq.lock)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001119{
1120 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001121 struct fuse_forget_link *forget = dequeue_forget(fiq, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001122 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001123 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001124 };
1125 struct fuse_in_header ih = {
1126 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001127 .nodeid = forget->forget_one.nodeid,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001128 .unique = fuse_get_unique(fiq),
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001129 .len = sizeof(ih) + sizeof(arg),
1130 };
1131
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001132 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001133 kfree(forget);
1134 if (nbytes < ih.len)
1135 return -EINVAL;
1136
1137 err = fuse_copy_one(cs, &ih, sizeof(ih));
1138 if (!err)
1139 err = fuse_copy_one(cs, &arg, sizeof(arg));
1140 fuse_copy_finish(cs);
1141
1142 if (err)
1143 return err;
1144
1145 return ih.len;
1146}
1147
Miklos Szeredifd22d622015-07-01 16:26:03 +02001148static int fuse_read_batch_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001149 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001150__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001151{
1152 int err;
1153 unsigned max_forgets;
1154 unsigned count;
1155 struct fuse_forget_link *head;
1156 struct fuse_batch_forget_in arg = { .count = 0 };
1157 struct fuse_in_header ih = {
1158 .opcode = FUSE_BATCH_FORGET,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001159 .unique = fuse_get_unique(fiq),
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001160 .len = sizeof(ih) + sizeof(arg),
1161 };
1162
1163 if (nbytes < ih.len) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001164 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001165 return -EINVAL;
1166 }
1167
1168 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001169 head = dequeue_forget(fiq, max_forgets, &count);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001170 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001171
1172 arg.count = count;
1173 ih.len += count * sizeof(struct fuse_forget_one);
1174 err = fuse_copy_one(cs, &ih, sizeof(ih));
1175 if (!err)
1176 err = fuse_copy_one(cs, &arg, sizeof(arg));
1177
1178 while (head) {
1179 struct fuse_forget_link *forget = head;
1180
1181 if (!err) {
1182 err = fuse_copy_one(cs, &forget->forget_one,
1183 sizeof(forget->forget_one));
1184 }
1185 head = forget->next;
1186 kfree(forget);
1187 }
1188
1189 fuse_copy_finish(cs);
1190
1191 if (err)
1192 return err;
1193
1194 return ih.len;
1195}
1196
Miklos Szeredifd22d622015-07-01 16:26:03 +02001197static int fuse_read_forget(struct fuse_conn *fc, struct fuse_iqueue *fiq,
1198 struct fuse_copy_state *cs,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001199 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001200__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001201{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001202 if (fc->minor < 16 || fiq->forget_list_head.next->next == NULL)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001203 return fuse_read_single_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001204 else
Miklos Szeredifd22d622015-07-01 16:26:03 +02001205 return fuse_read_batch_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001206}
1207
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001208/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001209 * Read a single request into the userspace filesystem's buffer. This
1210 * function waits until a request is available, then removes it from
1211 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001212 * no reply is needed (FORGET) or request has been aborted or there
1213 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001214 * request_end(). Otherwise add it to the processing list, and set
1215 * the 'sent' flag.
1216 */
Miklos Szeredic36960462015-07-01 16:26:09 +02001217static ssize_t fuse_dev_do_read(struct fuse_dev *fud, struct file *file,
Miklos Szeredic3021622010-05-25 15:06:07 +02001218 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001219{
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001220 ssize_t err;
Miklos Szeredic36960462015-07-01 16:26:09 +02001221 struct fuse_conn *fc = fud->fc;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001222 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic36960462015-07-01 16:26:09 +02001223 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001224 struct fuse_req *req;
1225 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001226 unsigned reqsize;
1227
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001228 restart:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001229 spin_lock(&fiq->waitq.lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001230 err = -EAGAIN;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001231 if ((file->f_flags & O_NONBLOCK) && fiq->connected &&
Miklos Szeredif88996a2015-07-01 16:26:01 +02001232 !request_pending(fiq))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001233 goto err_unlock;
1234
Miklos Szeredi52509212015-07-01 16:26:03 +02001235 err = wait_event_interruptible_exclusive_locked(fiq->waitq,
1236 !fiq->connected || request_pending(fiq));
1237 if (err)
1238 goto err_unlock;
1239
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01001240 if (!fiq->connected) {
1241 err = (fc->aborted && fc->abort_err) ? -ECONNABORTED : -ENODEV;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001242 goto err_unlock;
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01001243 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001244
Miklos Szeredif88996a2015-07-01 16:26:01 +02001245 if (!list_empty(&fiq->interrupts)) {
1246 req = list_entry(fiq->interrupts.next, struct fuse_req,
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001247 intr_entry);
Miklos Szeredifd22d622015-07-01 16:26:03 +02001248 return fuse_read_interrupt(fiq, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001249 }
1250
Miklos Szeredif88996a2015-07-01 16:26:01 +02001251 if (forget_pending(fiq)) {
1252 if (list_empty(&fiq->pending) || fiq->forget_batch-- > 0)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001253 return fuse_read_forget(fc, fiq, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001254
Miklos Szeredif88996a2015-07-01 16:26:01 +02001255 if (fiq->forget_batch <= -8)
1256 fiq->forget_batch = 16;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001257 }
1258
Miklos Szeredif88996a2015-07-01 16:26:01 +02001259 req = list_entry(fiq->pending.next, struct fuse_req, list);
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001260 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredief759252015-07-01 16:26:02 +02001261 list_del_init(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001262 spin_unlock(&fiq->waitq.lock);
1263
Miklos Szeredi334f4852005-09-09 13:10:27 -07001264 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001265 reqsize = in->h.len;
Miklos Szeredi5d6d3a32017-09-12 16:57:53 +02001266
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001267 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001268 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001269 req->out.h.error = -EIO;
1270 /* SETXATTR is special, since it may contain too large data */
1271 if (in->h.opcode == FUSE_SETXATTR)
1272 req->out.h.error = -E2BIG;
1273 request_end(fc, req);
1274 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001275 }
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001276 spin_lock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001277 list_add(&req->list, &fpq->io);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001278 spin_unlock(&fpq->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001279 cs->req = req;
1280 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001281 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001282 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001283 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001284 fuse_copy_finish(cs);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001285 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001286 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001287 if (!fpq->connected) {
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01001288 err = (fc->aborted && fc->abort_err) ? -ECONNABORTED : -ENODEV;
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001289 goto out_end;
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001290 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001291 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001292 req->out.h.error = -EIO;
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001293 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001294 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001295 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001296 err = reqsize;
1297 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001298 }
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001299 list_move_tail(&req->list, &fpq->processing);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001300 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001301 set_bit(FR_SENT, &req->flags);
1302 /* matches barrier in request_wait_answer() */
1303 smp_mb__after_atomic();
1304 if (test_bit(FR_INTERRUPTED, &req->flags))
1305 queue_interrupt(fiq, req);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001306
Miklos Szeredi334f4852005-09-09 13:10:27 -07001307 return reqsize;
1308
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001309out_end:
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001310 if (!test_bit(FR_PRIVATE, &req->flags))
1311 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001312 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001313 request_end(fc, req);
1314 return err;
1315
Miklos Szeredi334f4852005-09-09 13:10:27 -07001316 err_unlock:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001317 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001318 return err;
1319}
1320
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001321static int fuse_dev_open(struct inode *inode, struct file *file)
1322{
1323 /*
1324 * The fuse device's file's private_data is used to hold
1325 * the fuse_conn(ection) when it is mounted, and is used to
1326 * keep track of whether the file has been mounted already.
1327 */
1328 file->private_data = NULL;
1329 return 0;
1330}
1331
Al Virofbdbacc2015-04-03 21:53:39 -04001332static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001333{
1334 struct fuse_copy_state cs;
1335 struct file *file = iocb->ki_filp;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001336 struct fuse_dev *fud = fuse_get_dev(file);
1337
1338 if (!fud)
Miklos Szeredic3021622010-05-25 15:06:07 +02001339 return -EPERM;
1340
Al Virofbdbacc2015-04-03 21:53:39 -04001341 if (!iter_is_iovec(to))
1342 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001343
Miklos Szeredidc008092015-07-01 16:25:58 +02001344 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001345
Miklos Szeredic36960462015-07-01 16:26:09 +02001346 return fuse_dev_do_read(fud, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001347}
1348
Miklos Szeredic3021622010-05-25 15:06:07 +02001349static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1350 struct pipe_inode_info *pipe,
1351 size_t len, unsigned int flags)
1352{
Al Virod82718e2016-09-17 22:56:25 -04001353 int total, ret;
Miklos Szeredic3021622010-05-25 15:06:07 +02001354 int page_nr = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +02001355 struct pipe_buffer *bufs;
1356 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001357 struct fuse_dev *fud = fuse_get_dev(in);
1358
1359 if (!fud)
Miklos Szeredic3021622010-05-25 15:06:07 +02001360 return -EPERM;
1361
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001362 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001363 if (!bufs)
1364 return -ENOMEM;
1365
Miklos Szeredidc008092015-07-01 16:25:58 +02001366 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001367 cs.pipebufs = bufs;
1368 cs.pipe = pipe;
Miklos Szeredic36960462015-07-01 16:26:09 +02001369 ret = fuse_dev_do_read(fud, in, &cs, len);
Miklos Szeredic3021622010-05-25 15:06:07 +02001370 if (ret < 0)
1371 goto out;
1372
Miklos Szeredic3021622010-05-25 15:06:07 +02001373 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1374 ret = -EIO;
Al Virod82718e2016-09-17 22:56:25 -04001375 goto out;
Miklos Szeredic3021622010-05-25 15:06:07 +02001376 }
1377
Al Virod82718e2016-09-17 22:56:25 -04001378 for (ret = total = 0; page_nr < cs.nr_segs; total += ret) {
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001379 /*
1380 * Need to be careful about this. Having buf->ops in module
1381 * code can Oops if the buffer persists after module unload.
1382 */
Al Virod82718e2016-09-17 22:56:25 -04001383 bufs[page_nr].ops = &nosteal_pipe_buf_ops;
Miklos Szeredi84588a92017-02-16 15:08:20 +01001384 bufs[page_nr].flags = 0;
Al Virod82718e2016-09-17 22:56:25 -04001385 ret = add_to_pipe(pipe, &bufs[page_nr++]);
1386 if (unlikely(ret < 0))
1387 break;
Miklos Szeredic3021622010-05-25 15:06:07 +02001388 }
Al Virod82718e2016-09-17 22:56:25 -04001389 if (total)
1390 ret = total;
Miklos Szeredic3021622010-05-25 15:06:07 +02001391out:
1392 for (; page_nr < cs.nr_segs; page_nr++)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001393 put_page(bufs[page_nr].page);
Miklos Szeredic3021622010-05-25 15:06:07 +02001394
1395 kfree(bufs);
1396 return ret;
1397}
1398
Tejun Heo95668a62008-11-26 12:03:55 +01001399static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1400 struct fuse_copy_state *cs)
1401{
1402 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001403 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001404
1405 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001406 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001407
1408 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1409 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001410 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001411
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001412 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001413 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001414
1415err:
1416 fuse_copy_finish(cs);
1417 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001418}
1419
John Muir3b463ae2009-05-31 11:13:57 -04001420static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1421 struct fuse_copy_state *cs)
1422{
1423 struct fuse_notify_inval_inode_out outarg;
1424 int err = -EINVAL;
1425
1426 if (size != sizeof(outarg))
1427 goto err;
1428
1429 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1430 if (err)
1431 goto err;
1432 fuse_copy_finish(cs);
1433
1434 down_read(&fc->killsb);
1435 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001436 if (fc->sb) {
1437 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1438 outarg.off, outarg.len);
1439 }
John Muir3b463ae2009-05-31 11:13:57 -04001440 up_read(&fc->killsb);
1441 return err;
1442
1443err:
1444 fuse_copy_finish(cs);
1445 return err;
1446}
1447
1448static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1449 struct fuse_copy_state *cs)
1450{
1451 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001452 int err = -ENOMEM;
1453 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001454 struct qstr name;
1455
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001456 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1457 if (!buf)
1458 goto err;
1459
1460 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001461 if (size < sizeof(outarg))
1462 goto err;
1463
1464 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1465 if (err)
1466 goto err;
1467
1468 err = -ENAMETOOLONG;
1469 if (outarg.namelen > FUSE_NAME_MAX)
1470 goto err;
1471
Miklos Szeredic2183d12011-08-24 10:20:17 +02001472 err = -EINVAL;
1473 if (size != sizeof(outarg) + outarg.namelen + 1)
1474 goto err;
1475
John Muir3b463ae2009-05-31 11:13:57 -04001476 name.name = buf;
1477 name.len = outarg.namelen;
1478 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1479 if (err)
1480 goto err;
1481 fuse_copy_finish(cs);
1482 buf[outarg.namelen] = 0;
John Muir3b463ae2009-05-31 11:13:57 -04001483
1484 down_read(&fc->killsb);
1485 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001486 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001487 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1488 up_read(&fc->killsb);
1489 kfree(buf);
1490 return err;
1491
1492err:
1493 kfree(buf);
1494 fuse_copy_finish(cs);
1495 return err;
1496}
1497
1498static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1499 struct fuse_copy_state *cs)
1500{
1501 struct fuse_notify_delete_out outarg;
1502 int err = -ENOMEM;
1503 char *buf;
1504 struct qstr name;
1505
1506 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1507 if (!buf)
1508 goto err;
1509
1510 err = -EINVAL;
1511 if (size < sizeof(outarg))
1512 goto err;
1513
1514 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1515 if (err)
1516 goto err;
1517
1518 err = -ENAMETOOLONG;
1519 if (outarg.namelen > FUSE_NAME_MAX)
1520 goto err;
1521
1522 err = -EINVAL;
1523 if (size != sizeof(outarg) + outarg.namelen + 1)
1524 goto err;
1525
1526 name.name = buf;
1527 name.len = outarg.namelen;
1528 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1529 if (err)
1530 goto err;
1531 fuse_copy_finish(cs);
1532 buf[outarg.namelen] = 0;
John Muir451d0f52011-12-06 21:50:06 +01001533
1534 down_read(&fc->killsb);
1535 err = -ENOENT;
1536 if (fc->sb)
1537 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1538 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001539 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001540 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001541 return err;
1542
1543err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001544 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001545 fuse_copy_finish(cs);
1546 return err;
1547}
1548
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001549static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1550 struct fuse_copy_state *cs)
1551{
1552 struct fuse_notify_store_out outarg;
1553 struct inode *inode;
1554 struct address_space *mapping;
1555 u64 nodeid;
1556 int err;
1557 pgoff_t index;
1558 unsigned int offset;
1559 unsigned int num;
1560 loff_t file_size;
1561 loff_t end;
1562
1563 err = -EINVAL;
1564 if (size < sizeof(outarg))
1565 goto out_finish;
1566
1567 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1568 if (err)
1569 goto out_finish;
1570
1571 err = -EINVAL;
1572 if (size - sizeof(outarg) != outarg.size)
1573 goto out_finish;
1574
1575 nodeid = outarg.nodeid;
1576
1577 down_read(&fc->killsb);
1578
1579 err = -ENOENT;
1580 if (!fc->sb)
1581 goto out_up_killsb;
1582
1583 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1584 if (!inode)
1585 goto out_up_killsb;
1586
1587 mapping = inode->i_mapping;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001588 index = outarg.offset >> PAGE_SHIFT;
1589 offset = outarg.offset & ~PAGE_MASK;
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001590 file_size = i_size_read(inode);
1591 end = outarg.offset + outarg.size;
1592 if (end > file_size) {
1593 file_size = end;
1594 fuse_write_update_size(inode, file_size);
1595 }
1596
1597 num = outarg.size;
1598 while (num) {
1599 struct page *page;
1600 unsigned int this_num;
1601
1602 err = -ENOMEM;
1603 page = find_or_create_page(mapping, index,
1604 mapping_gfp_mask(mapping));
1605 if (!page)
1606 goto out_iput;
1607
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001608 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001609 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001610 if (!err && offset == 0 &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001611 (this_num == PAGE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001612 SetPageUptodate(page);
1613 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001614 put_page(page);
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001615
1616 if (err)
1617 goto out_iput;
1618
1619 num -= this_num;
1620 offset = 0;
1621 index++;
1622 }
1623
1624 err = 0;
1625
1626out_iput:
1627 iput(inode);
1628out_up_killsb:
1629 up_read(&fc->killsb);
1630out_finish:
1631 fuse_copy_finish(cs);
1632 return err;
1633}
1634
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001635static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1636{
Mel Gormanc6f92f92017-11-15 17:37:55 -08001637 release_pages(req->pages, req->num_pages);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001638}
1639
1640static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1641 struct fuse_notify_retrieve_out *outarg)
1642{
1643 int err;
1644 struct address_space *mapping = inode->i_mapping;
1645 struct fuse_req *req;
1646 pgoff_t index;
1647 loff_t file_size;
1648 unsigned int num;
1649 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001650 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001651 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001652
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001653 offset = outarg->offset & ~PAGE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001654 file_size = i_size_read(inode);
1655
1656 num = outarg->size;
1657 if (outarg->offset > file_size)
1658 num = 0;
1659 else if (outarg->offset + num > file_size)
1660 num = file_size - outarg->offset;
1661
1662 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1663 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1664
1665 req = fuse_get_req(fc, num_pages);
1666 if (IS_ERR(req))
1667 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001668
1669 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1670 req->in.h.nodeid = outarg->nodeid;
1671 req->in.numargs = 2;
1672 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001673 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001674 req->end = fuse_retrieve_end;
1675
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001676 index = outarg->offset >> PAGE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001677
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001678 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001679 struct page *page;
1680 unsigned int this_num;
1681
1682 page = find_get_page(mapping, index);
1683 if (!page)
1684 break;
1685
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001686 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001687 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001688 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001689 req->num_pages++;
1690
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001691 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001692 num -= this_num;
1693 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001694 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001695 }
1696 req->misc.retrieve_in.offset = outarg->offset;
1697 req->misc.retrieve_in.size = total_len;
1698 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1699 req->in.args[0].value = &req->misc.retrieve_in;
1700 req->in.args[1].size = total_len;
1701
1702 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1703 if (err)
1704 fuse_retrieve_end(fc, req);
1705
1706 return err;
1707}
1708
1709static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1710 struct fuse_copy_state *cs)
1711{
1712 struct fuse_notify_retrieve_out outarg;
1713 struct inode *inode;
1714 int err;
1715
1716 err = -EINVAL;
1717 if (size != sizeof(outarg))
1718 goto copy_finish;
1719
1720 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1721 if (err)
1722 goto copy_finish;
1723
1724 fuse_copy_finish(cs);
1725
1726 down_read(&fc->killsb);
1727 err = -ENOENT;
1728 if (fc->sb) {
1729 u64 nodeid = outarg.nodeid;
1730
1731 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1732 if (inode) {
1733 err = fuse_retrieve(fc, inode, &outarg);
1734 iput(inode);
1735 }
1736 }
1737 up_read(&fc->killsb);
1738
1739 return err;
1740
1741copy_finish:
1742 fuse_copy_finish(cs);
1743 return err;
1744}
1745
Tejun Heo85993962008-11-26 12:03:55 +01001746static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1747 unsigned int size, struct fuse_copy_state *cs)
1748{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001749 /* Don't try to move pages (yet) */
1750 cs->move_pages = 0;
1751
Tejun Heo85993962008-11-26 12:03:55 +01001752 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001753 case FUSE_NOTIFY_POLL:
1754 return fuse_notify_poll(fc, size, cs);
1755
John Muir3b463ae2009-05-31 11:13:57 -04001756 case FUSE_NOTIFY_INVAL_INODE:
1757 return fuse_notify_inval_inode(fc, size, cs);
1758
1759 case FUSE_NOTIFY_INVAL_ENTRY:
1760 return fuse_notify_inval_entry(fc, size, cs);
1761
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001762 case FUSE_NOTIFY_STORE:
1763 return fuse_notify_store(fc, size, cs);
1764
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001765 case FUSE_NOTIFY_RETRIEVE:
1766 return fuse_notify_retrieve(fc, size, cs);
1767
John Muir451d0f52011-12-06 21:50:06 +01001768 case FUSE_NOTIFY_DELETE:
1769 return fuse_notify_delete(fc, size, cs);
1770
Tejun Heo85993962008-11-26 12:03:55 +01001771 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001772 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001773 return -EINVAL;
1774 }
1775}
1776
Miklos Szeredi334f4852005-09-09 13:10:27 -07001777/* Look up request on processing list by unique ID */
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001778static struct fuse_req *request_find(struct fuse_pqueue *fpq, u64 unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001779{
Dong Fang05726ac2013-07-30 22:50:01 -04001780 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001781
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001782 list_for_each_entry(req, &fpq->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001783 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001784 return req;
1785 }
1786 return NULL;
1787}
1788
1789static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1790 unsigned nbytes)
1791{
1792 unsigned reqsize = sizeof(struct fuse_out_header);
1793
1794 if (out->h.error)
1795 return nbytes != reqsize ? -EINVAL : 0;
1796
1797 reqsize += len_args(out->numargs, out->args);
1798
1799 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1800 return -EINVAL;
1801 else if (reqsize > nbytes) {
1802 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1803 unsigned diffsize = reqsize - nbytes;
1804 if (diffsize > lastarg->size)
1805 return -EINVAL;
1806 lastarg->size -= diffsize;
1807 }
1808 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1809 out->page_zeroing);
1810}
1811
1812/*
1813 * Write a single reply to a request. First the header is copied from
1814 * the write buffer. The request is then searched on the processing
1815 * list by the unique ID found in the header. If found, then remove
1816 * it from the list and copy the rest of the buffer to the request.
1817 * The request is finished by calling request_end()
1818 */
Miklos Szeredic36960462015-07-01 16:26:09 +02001819static ssize_t fuse_dev_do_write(struct fuse_dev *fud,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001820 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001821{
1822 int err;
Miklos Szeredic36960462015-07-01 16:26:09 +02001823 struct fuse_conn *fc = fud->fc;
1824 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001825 struct fuse_req *req;
1826 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001827
Miklos Szeredi334f4852005-09-09 13:10:27 -07001828 if (nbytes < sizeof(struct fuse_out_header))
1829 return -EINVAL;
1830
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001831 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001832 if (err)
1833 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001834
Miklos Szeredi334f4852005-09-09 13:10:27 -07001835 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001836 if (oh.len != nbytes)
1837 goto err_finish;
1838
1839 /*
1840 * Zero oh.unique indicates unsolicited notification message
1841 * and error contains notification code.
1842 */
1843 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001844 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001845 return err ? err : nbytes;
1846 }
1847
1848 err = -EINVAL;
1849 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001850 goto err_finish;
1851
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001852 spin_lock(&fpq->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001853 err = -ENOENT;
Miklos Szeredie96edd92015-07-01 16:26:04 +02001854 if (!fpq->connected)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001855 goto err_unlock_pq;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001856
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001857 req = request_find(fpq, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001858 if (!req)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001859 goto err_unlock_pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001860
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001861 /* Is it an interrupt reply? */
1862 if (req->intr_unique == oh.unique) {
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001863 spin_unlock(&fpq->lock);
1864
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001865 err = -EINVAL;
1866 if (nbytes != sizeof(struct fuse_out_header))
Miklos Szeredi46c34a32015-07-01 16:26:07 +02001867 goto err_finish;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001868
1869 if (oh.error == -ENOSYS)
1870 fc->no_interrupt = 1;
1871 else if (oh.error == -EAGAIN)
Miklos Szeredif88996a2015-07-01 16:26:01 +02001872 queue_interrupt(&fc->iq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001873
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001874 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001875 return nbytes;
1876 }
1877
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001878 clear_bit(FR_SENT, &req->flags);
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001879 list_move(&req->list, &fpq->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001880 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001881 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001882 spin_unlock(&fpq->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001883 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001884 if (!req->out.page_replace)
1885 cs->move_pages = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001886
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001887 err = copy_out_args(cs, &req->out, nbytes);
1888 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001889
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001890 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001891 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001892 if (!fpq->connected)
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001893 err = -ENOENT;
1894 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001895 req->out.h.error = -EIO;
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001896 if (!test_bit(FR_PRIVATE, &req->flags))
1897 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001898 spin_unlock(&fpq->lock);
Miklos Szeredi46c34a32015-07-01 16:26:07 +02001899
Miklos Szeredi334f4852005-09-09 13:10:27 -07001900 request_end(fc, req);
1901
1902 return err ? err : nbytes;
1903
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001904 err_unlock_pq:
1905 spin_unlock(&fpq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001906 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001907 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001908 return err;
1909}
1910
Al Virofbdbacc2015-04-03 21:53:39 -04001911static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001912{
1913 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001914 struct fuse_dev *fud = fuse_get_dev(iocb->ki_filp);
1915
1916 if (!fud)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001917 return -EPERM;
1918
Al Virofbdbacc2015-04-03 21:53:39 -04001919 if (!iter_is_iovec(from))
1920 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001921
Miklos Szeredidc008092015-07-01 16:25:58 +02001922 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001923
Miklos Szeredic36960462015-07-01 16:26:09 +02001924 return fuse_dev_do_write(fud, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001925}
1926
1927static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1928 struct file *out, loff_t *ppos,
1929 size_t len, unsigned int flags)
1930{
1931 unsigned nbuf;
1932 unsigned idx;
1933 struct pipe_buffer *bufs;
1934 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001935 struct fuse_dev *fud;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001936 size_t rem;
1937 ssize_t ret;
1938
Miklos Szeredicc080e92015-07-01 16:26:08 +02001939 fud = fuse_get_dev(out);
1940 if (!fud)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001941 return -EPERM;
1942
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001943 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001944 if (!bufs)
1945 return -ENOMEM;
1946
1947 pipe_lock(pipe);
1948 nbuf = 0;
1949 rem = 0;
1950 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
1951 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
1952
1953 ret = -EINVAL;
1954 if (rem < len) {
1955 pipe_unlock(pipe);
1956 goto out;
1957 }
1958
1959 rem = len;
1960 while (rem) {
1961 struct pipe_buffer *ibuf;
1962 struct pipe_buffer *obuf;
1963
1964 BUG_ON(nbuf >= pipe->buffers);
1965 BUG_ON(!pipe->nrbufs);
1966 ibuf = &pipe->bufs[pipe->curbuf];
1967 obuf = &bufs[nbuf];
1968
1969 if (rem >= ibuf->len) {
1970 *obuf = *ibuf;
1971 ibuf->ops = NULL;
1972 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
1973 pipe->nrbufs--;
1974 } else {
Miklos Szeredi7bf2d1d2016-09-27 10:45:12 +02001975 pipe_buf_get(pipe, ibuf);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001976 *obuf = *ibuf;
1977 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1978 obuf->len = rem;
1979 ibuf->offset += obuf->len;
1980 ibuf->len -= obuf->len;
1981 }
1982 nbuf++;
1983 rem -= obuf->len;
1984 }
1985 pipe_unlock(pipe);
1986
Miklos Szeredidc008092015-07-01 16:25:58 +02001987 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001988 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04001989 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001990 cs.pipe = pipe;
1991
Miklos Szeredice534fb2010-05-25 15:06:07 +02001992 if (flags & SPLICE_F_MOVE)
1993 cs.move_pages = 1;
1994
Miklos Szeredic36960462015-07-01 16:26:09 +02001995 ret = fuse_dev_do_write(fud, &cs, len);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001996
Miklos Szeredia7796382016-09-27 10:45:12 +02001997 for (idx = 0; idx < nbuf; idx++)
1998 pipe_buf_release(pipe, &bufs[idx]);
1999
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002000out:
2001 kfree(bufs);
2002 return ret;
2003}
2004
Al Viro076ccb72017-07-03 01:02:18 -04002005static __poll_t fuse_dev_poll(struct file *file, poll_table *wait)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002006{
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002007 __poll_t mask = EPOLLOUT | EPOLLWRNORM;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002008 struct fuse_iqueue *fiq;
Miklos Szeredicc080e92015-07-01 16:26:08 +02002009 struct fuse_dev *fud = fuse_get_dev(file);
2010
2011 if (!fud)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002012 return EPOLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002013
Miklos Szeredicc080e92015-07-01 16:26:08 +02002014 fiq = &fud->fc->iq;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002015 poll_wait(file, &fiq->waitq, wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002016
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002017 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +02002018 if (!fiq->connected)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002019 mask = EPOLLERR;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002020 else if (request_pending(fiq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002021 mask |= EPOLLIN | EPOLLRDNORM;
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002022 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002023
2024 return mask;
2025}
2026
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002027/*
2028 * Abort all requests on the given list (pending or processing)
2029 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002030 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002031 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002032static void end_requests(struct fuse_conn *fc, struct list_head *head)
2033{
2034 while (!list_empty(head)) {
2035 struct fuse_req *req;
2036 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002037 req->out.h.error = -ECONNABORTED;
Miklos Szeredi33e14b42015-07-01 16:26:01 +02002038 clear_bit(FR_SENT, &req->flags);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002039 list_del_init(&req->list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002040 request_end(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002041 }
2042}
2043
Bryan Green357ccf22011-03-01 16:43:52 -08002044static void end_polls(struct fuse_conn *fc)
2045{
2046 struct rb_node *p;
2047
2048 p = rb_first(&fc->polled_files);
2049
2050 while (p) {
2051 struct fuse_file *ff;
2052 ff = rb_entry(p, struct fuse_file, polled_node);
2053 wake_up_interruptible_all(&ff->poll_wait);
2054
2055 p = rb_next(p);
2056 }
2057}
2058
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002059/*
2060 * Abort all requests.
2061 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002062 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2063 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002064 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002065 * The same effect is usually achievable through killing the filesystem daemon
2066 * and all users of the filesystem. The exception is the combination of an
2067 * asynchronous request and the tricky deadlock (see
2068 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002069 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002070 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2071 * requests, they should be finished off immediately. Locked requests will be
2072 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2073 * requests. It is possible that some request will finish before we can. This
2074 * is OK, the request will in that case be removed from the list before we touch
2075 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002076 */
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01002077void fuse_abort_conn(struct fuse_conn *fc, bool is_abort)
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002078{
Miklos Szeredif88996a2015-07-01 16:26:01 +02002079 struct fuse_iqueue *fiq = &fc->iq;
2080
Miklos Szeredid7133112006-04-10 22:54:55 -07002081 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002082 if (fc->connected) {
Miklos Szeredic36960462015-07-01 16:26:09 +02002083 struct fuse_dev *fud;
Miklos Szeredib716d422015-07-01 16:25:59 +02002084 struct fuse_req *req, *next;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002085 LIST_HEAD(to_end1);
2086 LIST_HEAD(to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002087
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002088 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002089 fc->blocked = 0;
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01002090 fc->aborted = is_abort;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002091 fuse_set_initialized(fc);
Miklos Szeredic36960462015-07-01 16:26:09 +02002092 list_for_each_entry(fud, &fc->devices, entry) {
2093 struct fuse_pqueue *fpq = &fud->pq;
2094
2095 spin_lock(&fpq->lock);
2096 fpq->connected = 0;
2097 list_for_each_entry_safe(req, next, &fpq->io, list) {
2098 req->out.h.error = -ECONNABORTED;
2099 spin_lock(&req->waitq.lock);
2100 set_bit(FR_ABORTED, &req->flags);
2101 if (!test_bit(FR_LOCKED, &req->flags)) {
2102 set_bit(FR_PRIVATE, &req->flags);
2103 list_move(&req->list, &to_end1);
2104 }
2105 spin_unlock(&req->waitq.lock);
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02002106 }
Miklos Szeredic36960462015-07-01 16:26:09 +02002107 list_splice_init(&fpq->processing, &to_end2);
2108 spin_unlock(&fpq->lock);
Miklos Szeredib716d422015-07-01 16:25:59 +02002109 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002110 fc->max_background = UINT_MAX;
2111 flush_bg_queue(fc);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002112
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002113 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002114 fiq->connected = 0;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002115 list_splice_init(&fiq->pending, &to_end2);
Tahsin Erdogana8a86d72017-01-12 12:04:04 -08002116 list_for_each_entry(req, &to_end2, list)
2117 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002118 while (forget_pending(fiq))
2119 kfree(dequeue_forget(fiq, 1, NULL));
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002120 wake_up_all_locked(&fiq->waitq);
2121 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002122 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szerediee314a82015-07-01 16:26:08 +02002123 end_polls(fc);
2124 wake_up_all(&fc->blocked_waitq);
2125 spin_unlock(&fc->lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002126
Miklos Szeredi41f98272015-07-01 16:25:59 +02002127 while (!list_empty(&to_end1)) {
2128 req = list_first_entry(&to_end1, struct fuse_req, list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002129 __fuse_get_request(req);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002130 list_del_init(&req->list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002131 request_end(fc, req);
Miklos Szeredib716d422015-07-01 16:25:59 +02002132 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002133 end_requests(fc, &to_end2);
Miklos Szerediee314a82015-07-01 16:26:08 +02002134 } else {
2135 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002136 }
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002137}
Tejun Heo08cbf542009-04-14 10:54:53 +09002138EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002139
Tejun Heo08cbf542009-04-14 10:54:53 +09002140int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002141{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002142 struct fuse_dev *fud = fuse_get_dev(file);
2143
2144 if (fud) {
2145 struct fuse_conn *fc = fud->fc;
Miklos Szeredic36960462015-07-01 16:26:09 +02002146 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredicc080e92015-07-01 16:26:08 +02002147
Miklos Szeredic36960462015-07-01 16:26:09 +02002148 WARN_ON(!list_empty(&fpq->io));
2149 end_requests(fc, &fpq->processing);
2150 /* Are we the last open device? */
2151 if (atomic_dec_and_test(&fc->dev_count)) {
2152 WARN_ON(fc->iq.fasync != NULL);
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01002153 fuse_abort_conn(fc, false);
Miklos Szeredic36960462015-07-01 16:26:09 +02002154 }
Miklos Szeredicc080e92015-07-01 16:26:08 +02002155 fuse_dev_free(fud);
Jeff Dike385a17b2006-04-10 22:54:52 -07002156 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07002157 return 0;
2158}
Tejun Heo08cbf542009-04-14 10:54:53 +09002159EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002160
Jeff Dike385a17b2006-04-10 22:54:52 -07002161static int fuse_dev_fasync(int fd, struct file *file, int on)
2162{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002163 struct fuse_dev *fud = fuse_get_dev(file);
2164
2165 if (!fud)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002166 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002167
2168 /* No locking - fasync_helper does its own locking */
Miklos Szeredicc080e92015-07-01 16:26:08 +02002169 return fasync_helper(fd, file, on, &fud->fc->iq.fasync);
Jeff Dike385a17b2006-04-10 22:54:52 -07002170}
2171
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002172static int fuse_device_clone(struct fuse_conn *fc, struct file *new)
2173{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002174 struct fuse_dev *fud;
2175
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002176 if (new->private_data)
2177 return -EINVAL;
2178
Miklos Szeredicc080e92015-07-01 16:26:08 +02002179 fud = fuse_dev_alloc(fc);
2180 if (!fud)
2181 return -ENOMEM;
2182
2183 new->private_data = fud;
Miklos Szeredic36960462015-07-01 16:26:09 +02002184 atomic_inc(&fc->dev_count);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002185
2186 return 0;
2187}
2188
2189static long fuse_dev_ioctl(struct file *file, unsigned int cmd,
2190 unsigned long arg)
2191{
2192 int err = -ENOTTY;
2193
2194 if (cmd == FUSE_DEV_IOC_CLONE) {
2195 int oldfd;
2196
2197 err = -EFAULT;
2198 if (!get_user(oldfd, (__u32 __user *) arg)) {
2199 struct file *old = fget(oldfd);
2200
2201 err = -EINVAL;
2202 if (old) {
Jann Horn8ed1f0e2015-08-16 20:27:01 +02002203 struct fuse_dev *fud = NULL;
2204
2205 /*
2206 * Check against file->f_op because CUSE
2207 * uses the same ioctl handler.
2208 */
2209 if (old->f_op == file->f_op &&
2210 old->f_cred->user_ns == file->f_cred->user_ns)
2211 fud = fuse_get_dev(old);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002212
Miklos Szeredicc080e92015-07-01 16:26:08 +02002213 if (fud) {
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002214 mutex_lock(&fuse_mutex);
Miklos Szeredicc080e92015-07-01 16:26:08 +02002215 err = fuse_device_clone(fud->fc, file);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002216 mutex_unlock(&fuse_mutex);
2217 }
2218 fput(old);
2219 }
2220 }
2221 }
2222 return err;
2223}
2224
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002225const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002226 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002227 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002228 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002229 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002230 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002231 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002232 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002233 .poll = fuse_dev_poll,
2234 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002235 .fasync = fuse_dev_fasync,
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002236 .unlocked_ioctl = fuse_dev_ioctl,
2237 .compat_ioctl = fuse_dev_ioctl,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002238};
Tejun Heo08cbf542009-04-14 10:54:53 +09002239EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002240
2241static struct miscdevice fuse_miscdevice = {
2242 .minor = FUSE_MINOR,
2243 .name = "fuse",
2244 .fops = &fuse_dev_operations,
2245};
2246
2247int __init fuse_dev_init(void)
2248{
2249 int err = -ENOMEM;
2250 fuse_req_cachep = kmem_cache_create("fuse_request",
2251 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002252 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002253 if (!fuse_req_cachep)
2254 goto out;
2255
2256 err = misc_register(&fuse_miscdevice);
2257 if (err)
2258 goto out_cache_clean;
2259
2260 return 0;
2261
2262 out_cache_clean:
2263 kmem_cache_destroy(fuse_req_cachep);
2264 out:
2265 return err;
2266}
2267
2268void fuse_dev_cleanup(void)
2269{
2270 misc_deregister(&fuse_miscdevice);
2271 kmem_cache_destroy(fuse_req_cachep);
2272}