blob: 686631f12001c407c50c1b820e7719f1c5af370a [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
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700388 if (fc->num_background == fc->congestion_threshold &&
Jan Kara7fbbe972017-04-12 12:24:41 +0200389 fc->connected && fc->sb) {
Jan Kara5f7f7542017-04-12 12:24:40 +0200390 clear_bdi_congested(fc->sb->s_bdi, BLK_RW_SYNC);
391 clear_bdi_congested(fc->sb->s_bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700392 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700393 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800394 fc->active_background--;
395 flush_bg_queue(fc);
Miklos Szerediefe28002015-07-01 16:26:07 +0200396 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700397 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700398 wake_up(&req->waitq);
Miklos Szeredi1e6881c2015-07-01 16:26:07 +0200399 if (req->end)
400 req->end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100401 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700402}
403
Miklos Szeredif88996a2015-07-01 16:26:01 +0200404static void queue_interrupt(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700405{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200406 spin_lock(&fiq->waitq.lock);
Sahitya Tummala6ba4d272017-02-08 20:30:56 +0530407 if (test_bit(FR_FINISHED, &req->flags)) {
408 spin_unlock(&fiq->waitq.lock);
409 return;
410 }
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200411 if (list_empty(&req->intr_entry)) {
412 list_add_tail(&req->intr_entry, &fiq->interrupts);
413 wake_up_locked(&fiq->waitq);
414 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200415 spin_unlock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200416 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700417}
418
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700419static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700420{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200421 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic4775262015-07-01 16:26:00 +0200422 int err;
423
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700424 if (!fc->no_interrupt) {
425 /* Any signal may interrupt this */
Miklos Szeredic4775262015-07-01 16:26:00 +0200426 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200427 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200428 if (!err)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700429 return;
430
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200431 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200432 /* matches barrier in fuse_dev_do_read() */
433 smp_mb__after_atomic();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200434 if (test_bit(FR_SENT, &req->flags))
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200435 queue_interrupt(fiq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700436 }
437
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200438 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700439 /* Only fatal signals may interrupt this */
Al Viro7d3a07f2016-07-19 03:08:27 -0400440 err = wait_event_killable(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200441 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200442 if (!err)
Miklos Szeredia131de02007-10-16 23:31:04 -0700443 return;
444
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200445 spin_lock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700446 /* Request is not yet in userspace, bail out */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200447 if (test_bit(FR_PENDING, &req->flags)) {
Miklos Szeredia131de02007-10-16 23:31:04 -0700448 list_del(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200449 spin_unlock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700450 __fuse_put_request(req);
451 req->out.h.error = -EINTR;
452 return;
453 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200454 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700455 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700456
Miklos Szeredia131de02007-10-16 23:31:04 -0700457 /*
458 * Either request is already in userspace, or it was forced.
459 * Wait it out.
460 */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200461 wait_event(req->waitq, test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi334f4852005-09-09 13:10:27 -0700462}
463
Eric Wong6a4e9222013-02-04 13:04:44 +0000464static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700465{
Miklos Szeredie16714d2015-07-01 16:26:01 +0200466 struct fuse_iqueue *fiq = &fc->iq;
467
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200468 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200469 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200470 if (!fiq->connected) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200471 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700472 req->out.h.error = -ENOTCONN;
Miklos Szeredic4775262015-07-01 16:26:00 +0200473 } else {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200474 req->in.h.unique = fuse_get_unique(fiq);
475 queue_request(fiq, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700476 /* acquire extra reference, since request is still needed
477 after request_end() */
478 __fuse_get_request(req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200479 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700480
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700481 request_wait_answer(fc, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200482 /* Pairs with smp_wmb() in request_end() */
483 smp_rmb();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700484 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700485}
Eric Wong6a4e9222013-02-04 13:04:44 +0000486
487void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
488{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200489 __set_bit(FR_ISREPLY, &req->flags);
490 if (!test_bit(FR_WAITING, &req->flags)) {
491 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200492 atomic_inc(&fc->num_waiting);
493 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000494 __fuse_request_send(fc, req);
495}
Tejun Heo08cbf542009-04-14 10:54:53 +0900496EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700497
Miklos Szeredi21f62172015-01-06 10:45:35 +0100498static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
499{
500 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
501 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
502
503 if (fc->minor < 9) {
504 switch (args->in.h.opcode) {
505 case FUSE_LOOKUP:
506 case FUSE_CREATE:
507 case FUSE_MKNOD:
508 case FUSE_MKDIR:
509 case FUSE_SYMLINK:
510 case FUSE_LINK:
511 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
512 break;
513 case FUSE_GETATTR:
514 case FUSE_SETATTR:
515 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
516 break;
517 }
518 }
519 if (fc->minor < 12) {
520 switch (args->in.h.opcode) {
521 case FUSE_CREATE:
522 args->in.args[0].size = sizeof(struct fuse_open_in);
523 break;
524 case FUSE_MKNOD:
525 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
526 break;
527 }
528 }
529}
530
Miklos Szeredi70781872014-12-12 09:49:05 +0100531ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
532{
533 struct fuse_req *req;
534 ssize_t ret;
535
536 req = fuse_get_req(fc, 0);
537 if (IS_ERR(req))
538 return PTR_ERR(req);
539
Miklos Szeredi21f62172015-01-06 10:45:35 +0100540 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
541 fuse_adjust_compat(fc, args);
542
Miklos Szeredi70781872014-12-12 09:49:05 +0100543 req->in.h.opcode = args->in.h.opcode;
544 req->in.h.nodeid = args->in.h.nodeid;
545 req->in.numargs = args->in.numargs;
546 memcpy(req->in.args, args->in.args,
547 args->in.numargs * sizeof(struct fuse_in_arg));
548 req->out.argvar = args->out.argvar;
549 req->out.numargs = args->out.numargs;
550 memcpy(req->out.args, args->out.args,
551 args->out.numargs * sizeof(struct fuse_arg));
552 fuse_request_send(fc, req);
553 ret = req->out.h.error;
554 if (!ret && args->out.argvar) {
555 BUG_ON(args->out.numargs != 1);
556 ret = req->out.args[0].size;
557 }
558 fuse_put_request(fc, req);
559
560 return ret;
561}
562
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200563/*
564 * Called under fc->lock
565 *
566 * fc->connected must have been checked previously
567 */
568void fuse_request_send_background_locked(struct fuse_conn *fc,
569 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800570{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200571 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
572 if (!test_bit(FR_WAITING, &req->flags)) {
573 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200574 atomic_inc(&fc->num_waiting);
575 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200576 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800577 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700578 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800579 fc->blocked = 1;
Jan Kara7fbbe972017-04-12 12:24:41 +0200580 if (fc->num_background == fc->congestion_threshold && fc->sb) {
Jan Kara5f7f7542017-04-12 12:24:40 +0200581 set_bdi_congested(fc->sb->s_bdi, BLK_RW_SYNC);
582 set_bdi_congested(fc->sb->s_bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800583 }
584 list_add_tail(&req->list, &fc->bg_queue);
585 flush_bg_queue(fc);
586}
587
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200588void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700589{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200590 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700591 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700592 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200593 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700594 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700595 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200596 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700597 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200598 req->end(fc, req);
599 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700600 }
601}
Tejun Heo08cbf542009-04-14 10:54:53 +0900602EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700603
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200604static int fuse_request_send_notify_reply(struct fuse_conn *fc,
605 struct fuse_req *req, u64 unique)
606{
607 int err = -ENODEV;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200608 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200609
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200610 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200611 req->in.h.unique = unique;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200612 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200613 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200614 queue_request(fiq, req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200615 err = 0;
616 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200617 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200618
619 return err;
620}
621
Anand V. Avati0b05b182012-08-19 08:53:23 -0400622void fuse_force_forget(struct file *file, u64 nodeid)
623{
Al Viro6131ffa2013-02-27 16:59:05 -0500624 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400625 struct fuse_conn *fc = get_fuse_conn(inode);
626 struct fuse_req *req;
627 struct fuse_forget_in inarg;
628
629 memset(&inarg, 0, sizeof(inarg));
630 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400631 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400632 req->in.h.opcode = FUSE_FORGET;
633 req->in.h.nodeid = nodeid;
634 req->in.numargs = 1;
635 req->in.args[0].size = sizeof(inarg);
636 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200637 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000638 __fuse_request_send(fc, req);
639 /* ignore errors */
640 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400641}
642
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700643/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700644 * Lock the request. Up to the next unlock_request() there mustn't be
645 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700646 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700647 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200648static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700649{
650 int err = 0;
651 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200652 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200653 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700654 err = -ENOENT;
655 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200656 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200657 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700658 }
659 return err;
660}
661
662/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200663 * Unlock request. If it was aborted while locked, caller is responsible
664 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700665 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200666static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700667{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200668 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700669 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200670 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200671 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200672 err = -ENOENT;
673 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200674 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200675 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700676 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200677 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700678}
679
680struct fuse_copy_state {
681 int write;
682 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400683 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200684 struct pipe_buffer *pipebufs;
685 struct pipe_buffer *currbuf;
686 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700687 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700688 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700689 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200690 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200691 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700692};
693
Miklos Szeredidc008092015-07-01 16:25:58 +0200694static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400695 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700696{
697 memset(cs, 0, sizeof(*cs));
698 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400699 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700700}
701
702/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800703static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700704{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200705 if (cs->currbuf) {
706 struct pipe_buffer *buf = cs->currbuf;
707
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200708 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200709 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200710 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200711 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700712 if (cs->write) {
713 flush_dcache_page(cs->pg);
714 set_page_dirty_lock(cs->pg);
715 }
716 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700717 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200718 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700719}
720
721/*
722 * Get another pagefull of userspace buffer, and map it to kernel
723 * address space, and lock request
724 */
725static int fuse_copy_fill(struct fuse_copy_state *cs)
726{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200727 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700728 int err;
729
Miklos Szeredidc008092015-07-01 16:25:58 +0200730 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200731 if (err)
732 return err;
733
Miklos Szeredi334f4852005-09-09 13:10:27 -0700734 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200735 if (cs->pipebufs) {
736 struct pipe_buffer *buf = cs->pipebufs;
737
Miklos Szeredic3021622010-05-25 15:06:07 +0200738 if (!cs->write) {
Miklos Szeredifba597d2016-09-27 10:45:12 +0200739 err = pipe_buf_confirm(cs->pipe, buf);
Miklos Szeredic3021622010-05-25 15:06:07 +0200740 if (err)
741 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200742
Miklos Szeredic3021622010-05-25 15:06:07 +0200743 BUG_ON(!cs->nr_segs);
744 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200745 cs->pg = buf->page;
746 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200747 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200748 cs->pipebufs++;
749 cs->nr_segs--;
750 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200751 if (cs->nr_segs == cs->pipe->buffers)
752 return -EIO;
753
754 page = alloc_page(GFP_HIGHUSER);
755 if (!page)
756 return -ENOMEM;
757
758 buf->page = page;
759 buf->offset = 0;
760 buf->len = 0;
761
762 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200763 cs->pg = page;
764 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200765 cs->len = PAGE_SIZE;
766 cs->pipebufs++;
767 cs->nr_segs++;
768 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200769 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400770 size_t off;
771 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200772 if (err < 0)
773 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400774 BUG_ON(!err);
775 cs->len = err;
776 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200777 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400778 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700779 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700780
Miklos Szeredidc008092015-07-01 16:25:58 +0200781 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700782}
783
784/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800785static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700786{
787 unsigned ncpy = min(*size, cs->len);
788 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200789 void *pgaddr = kmap_atomic(cs->pg);
790 void *buf = pgaddr + cs->offset;
791
Miklos Szeredi334f4852005-09-09 13:10:27 -0700792 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200793 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700794 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200795 memcpy(*val, buf, ncpy);
796
797 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700798 *val += ncpy;
799 }
800 *size -= ncpy;
801 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200802 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700803 return ncpy;
804}
805
Miklos Szeredice534fb2010-05-25 15:06:07 +0200806static int fuse_check_page(struct page *page)
807{
808 if (page_mapcount(page) ||
809 page->mapping != NULL ||
810 page_count(page) != 1 ||
811 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
812 ~(1 << PG_locked |
813 1 << PG_referenced |
814 1 << PG_uptodate |
815 1 << PG_lru |
816 1 << PG_active |
817 1 << PG_reclaim))) {
818 printk(KERN_WARNING "fuse: trying to steal weird page\n");
819 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);
820 return 1;
821 }
822 return 0;
823}
824
825static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
826{
827 int err;
828 struct page *oldpage = *pagep;
829 struct page *newpage;
830 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200831
Miklos Szeredidc008092015-07-01 16:25:58 +0200832 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200833 if (err)
834 return err;
835
Miklos Szeredice534fb2010-05-25 15:06:07 +0200836 fuse_copy_finish(cs);
837
Miklos Szeredifba597d2016-09-27 10:45:12 +0200838 err = pipe_buf_confirm(cs->pipe, buf);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200839 if (err)
840 return err;
841
842 BUG_ON(!cs->nr_segs);
843 cs->currbuf = buf;
844 cs->len = buf->len;
845 cs->pipebufs++;
846 cs->nr_segs--;
847
848 if (cs->len != PAGE_SIZE)
849 goto out_fallback;
850
Miklos Szeredica76f5b2016-09-27 10:45:12 +0200851 if (pipe_buf_steal(cs->pipe, buf) != 0)
Miklos Szeredice534fb2010-05-25 15:06:07 +0200852 goto out_fallback;
853
854 newpage = buf->page;
855
Miklos Szerediaa991b32015-02-26 11:45:47 +0100856 if (!PageUptodate(newpage))
857 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200858
859 ClearPageMappedToDisk(newpage);
860
861 if (fuse_check_page(newpage) != 0)
862 goto out_fallback_unlock;
863
Miklos Szeredice534fb2010-05-25 15:06:07 +0200864 /*
865 * This is a new and locked page, it shouldn't be mapped or
866 * have any special flags on it
867 */
868 if (WARN_ON(page_mapped(oldpage)))
869 goto out_fallback_unlock;
870 if (WARN_ON(page_has_private(oldpage)))
871 goto out_fallback_unlock;
872 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
873 goto out_fallback_unlock;
874 if (WARN_ON(PageMlocked(oldpage)))
875 goto out_fallback_unlock;
876
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700877 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200878 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700879 unlock_page(newpage);
880 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200881 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700882
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300883 get_page(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200884
885 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
886 lru_cache_add_file(newpage);
887
888 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200889 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200890 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200891 err = -ENOENT;
892 else
893 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200894 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200895
896 if (err) {
897 unlock_page(newpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300898 put_page(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200899 return err;
900 }
901
902 unlock_page(oldpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300903 put_page(oldpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200904 cs->len = 0;
905
906 return 0;
907
908out_fallback_unlock:
909 unlock_page(newpage);
910out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200911 cs->pg = buf->page;
912 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200913
Miklos Szeredidc008092015-07-01 16:25:58 +0200914 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200915 if (err)
916 return err;
917
918 return 1;
919}
920
Miklos Szeredic3021622010-05-25 15:06:07 +0200921static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
922 unsigned offset, unsigned count)
923{
924 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200925 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200926
927 if (cs->nr_segs == cs->pipe->buffers)
928 return -EIO;
929
Miklos Szeredidc008092015-07-01 16:25:58 +0200930 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200931 if (err)
932 return err;
933
Miklos Szeredic3021622010-05-25 15:06:07 +0200934 fuse_copy_finish(cs);
935
936 buf = cs->pipebufs;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300937 get_page(page);
Miklos Szeredic3021622010-05-25 15:06:07 +0200938 buf->page = page;
939 buf->offset = offset;
940 buf->len = count;
941
942 cs->pipebufs++;
943 cs->nr_segs++;
944 cs->len = 0;
945
946 return 0;
947}
948
Miklos Szeredi334f4852005-09-09 13:10:27 -0700949/*
950 * Copy a page in the request to/from the userspace buffer. Must be
951 * done atomically
952 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200953static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800954 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700955{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200956 int err;
957 struct page *page = *pagep;
958
Miklos Szeredib6777c42010-10-26 14:22:27 -0700959 if (page && zeroing && count < PAGE_SIZE)
960 clear_highpage(page);
961
Miklos Szeredi334f4852005-09-09 13:10:27 -0700962 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200963 if (cs->write && cs->pipebufs && page) {
964 return fuse_ref_page(cs, page, offset, count);
965 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200966 if (cs->move_pages && page &&
967 offset == 0 && count == PAGE_SIZE) {
968 err = fuse_try_move_page(cs, pagep);
969 if (err <= 0)
970 return err;
971 } else {
972 err = fuse_copy_fill(cs);
973 if (err)
974 return err;
975 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100976 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700977 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800978 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700979 void *buf = mapaddr + offset;
980 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +0800981 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700982 } else
983 offset += fuse_copy_do(cs, NULL, &count);
984 }
985 if (page && !cs->write)
986 flush_dcache_page(page);
987 return 0;
988}
989
990/* Copy pages in the request to/from userspace buffer */
991static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
992 int zeroing)
993{
994 unsigned i;
995 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700996
997 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200998 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400999 unsigned offset = req->page_descs[i].offset;
1000 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001001
1002 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1003 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001004 if (err)
1005 return err;
1006
1007 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001008 }
1009 return 0;
1010}
1011
1012/* Copy a single argument in the request to/from userspace buffer */
1013static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1014{
1015 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001016 if (!cs->len) {
1017 int err = fuse_copy_fill(cs);
1018 if (err)
1019 return err;
1020 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001021 fuse_copy_do(cs, &val, &size);
1022 }
1023 return 0;
1024}
1025
1026/* Copy request arguments to/from userspace buffer */
1027static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1028 unsigned argpages, struct fuse_arg *args,
1029 int zeroing)
1030{
1031 int err = 0;
1032 unsigned i;
1033
1034 for (i = 0; !err && i < numargs; i++) {
1035 struct fuse_arg *arg = &args[i];
1036 if (i == numargs - 1 && argpages)
1037 err = fuse_copy_pages(cs, arg->size, zeroing);
1038 else
1039 err = fuse_copy_one(cs, arg->value, arg->size);
1040 }
1041 return err;
1042}
1043
Miklos Szeredif88996a2015-07-01 16:26:01 +02001044static int forget_pending(struct fuse_iqueue *fiq)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001045{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001046 return fiq->forget_list_head.next != NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001047}
1048
Miklos Szeredif88996a2015-07-01 16:26:01 +02001049static int request_pending(struct fuse_iqueue *fiq)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001050{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001051 return !list_empty(&fiq->pending) || !list_empty(&fiq->interrupts) ||
1052 forget_pending(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001053}
1054
Miklos Szeredi334f4852005-09-09 13:10:27 -07001055/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001056 * Transfer an interrupt request to userspace
1057 *
1058 * Unlike other requests this is assembled on demand, without a need
1059 * to allocate a separate fuse_req structure.
1060 *
Miklos Szeredifd22d622015-07-01 16:26:03 +02001061 * Called with fiq->waitq.lock held, releases it
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001062 */
Miklos Szeredifd22d622015-07-01 16:26:03 +02001063static int fuse_read_interrupt(struct fuse_iqueue *fiq,
1064 struct fuse_copy_state *cs,
Miklos Szeredic3021622010-05-25 15:06:07 +02001065 size_t nbytes, struct fuse_req *req)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001066__releases(fiq->waitq.lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001067{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001068 struct fuse_in_header ih;
1069 struct fuse_interrupt_in arg;
1070 unsigned reqsize = sizeof(ih) + sizeof(arg);
1071 int err;
1072
1073 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001074 req->intr_unique = fuse_get_unique(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001075 memset(&ih, 0, sizeof(ih));
1076 memset(&arg, 0, sizeof(arg));
1077 ih.len = reqsize;
1078 ih.opcode = FUSE_INTERRUPT;
1079 ih.unique = req->intr_unique;
1080 arg.unique = req->in.h.unique;
1081
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001082 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001083 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001084 return -EINVAL;
1085
Miklos Szeredic3021622010-05-25 15:06:07 +02001086 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001087 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001088 err = fuse_copy_one(cs, &arg, sizeof(arg));
1089 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001090
1091 return err ? err : reqsize;
1092}
1093
Miklos Szeredif88996a2015-07-01 16:26:01 +02001094static struct fuse_forget_link *dequeue_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001095 unsigned max,
1096 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001097{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001098 struct fuse_forget_link *head = fiq->forget_list_head.next;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001099 struct fuse_forget_link **newhead = &head;
1100 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001101
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001102 for (count = 0; *newhead != NULL && count < max; count++)
1103 newhead = &(*newhead)->next;
1104
Miklos Szeredif88996a2015-07-01 16:26:01 +02001105 fiq->forget_list_head.next = *newhead;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001106 *newhead = NULL;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001107 if (fiq->forget_list_head.next == NULL)
1108 fiq->forget_list_tail = &fiq->forget_list_head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001109
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001110 if (countp != NULL)
1111 *countp = count;
1112
1113 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001114}
1115
Miklos Szeredifd22d622015-07-01 16:26:03 +02001116static int fuse_read_single_forget(struct fuse_iqueue *fiq,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001117 struct fuse_copy_state *cs,
1118 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001119__releases(fiq->waitq.lock)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001120{
1121 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001122 struct fuse_forget_link *forget = dequeue_forget(fiq, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001123 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001124 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001125 };
1126 struct fuse_in_header ih = {
1127 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001128 .nodeid = forget->forget_one.nodeid,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001129 .unique = fuse_get_unique(fiq),
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001130 .len = sizeof(ih) + sizeof(arg),
1131 };
1132
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001133 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001134 kfree(forget);
1135 if (nbytes < ih.len)
1136 return -EINVAL;
1137
1138 err = fuse_copy_one(cs, &ih, sizeof(ih));
1139 if (!err)
1140 err = fuse_copy_one(cs, &arg, sizeof(arg));
1141 fuse_copy_finish(cs);
1142
1143 if (err)
1144 return err;
1145
1146 return ih.len;
1147}
1148
Miklos Szeredifd22d622015-07-01 16:26:03 +02001149static int fuse_read_batch_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001150 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001151__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001152{
1153 int err;
1154 unsigned max_forgets;
1155 unsigned count;
1156 struct fuse_forget_link *head;
1157 struct fuse_batch_forget_in arg = { .count = 0 };
1158 struct fuse_in_header ih = {
1159 .opcode = FUSE_BATCH_FORGET,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001160 .unique = fuse_get_unique(fiq),
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001161 .len = sizeof(ih) + sizeof(arg),
1162 };
1163
1164 if (nbytes < ih.len) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001165 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001166 return -EINVAL;
1167 }
1168
1169 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001170 head = dequeue_forget(fiq, max_forgets, &count);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001171 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001172
1173 arg.count = count;
1174 ih.len += count * sizeof(struct fuse_forget_one);
1175 err = fuse_copy_one(cs, &ih, sizeof(ih));
1176 if (!err)
1177 err = fuse_copy_one(cs, &arg, sizeof(arg));
1178
1179 while (head) {
1180 struct fuse_forget_link *forget = head;
1181
1182 if (!err) {
1183 err = fuse_copy_one(cs, &forget->forget_one,
1184 sizeof(forget->forget_one));
1185 }
1186 head = forget->next;
1187 kfree(forget);
1188 }
1189
1190 fuse_copy_finish(cs);
1191
1192 if (err)
1193 return err;
1194
1195 return ih.len;
1196}
1197
Miklos Szeredifd22d622015-07-01 16:26:03 +02001198static int fuse_read_forget(struct fuse_conn *fc, struct fuse_iqueue *fiq,
1199 struct fuse_copy_state *cs,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001200 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001201__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001202{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001203 if (fc->minor < 16 || fiq->forget_list_head.next->next == NULL)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001204 return fuse_read_single_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001205 else
Miklos Szeredifd22d622015-07-01 16:26:03 +02001206 return fuse_read_batch_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001207}
1208
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001209/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001210 * Read a single request into the userspace filesystem's buffer. This
1211 * function waits until a request is available, then removes it from
1212 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001213 * no reply is needed (FORGET) or request has been aborted or there
1214 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001215 * request_end(). Otherwise add it to the processing list, and set
1216 * the 'sent' flag.
1217 */
Miklos Szeredic36960462015-07-01 16:26:09 +02001218static ssize_t fuse_dev_do_read(struct fuse_dev *fud, struct file *file,
Miklos Szeredic3021622010-05-25 15:06:07 +02001219 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001220{
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001221 ssize_t err;
Miklos Szeredic36960462015-07-01 16:26:09 +02001222 struct fuse_conn *fc = fud->fc;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001223 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic36960462015-07-01 16:26:09 +02001224 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001225 struct fuse_req *req;
1226 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001227 unsigned reqsize;
1228
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001229 restart:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001230 spin_lock(&fiq->waitq.lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001231 err = -EAGAIN;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001232 if ((file->f_flags & O_NONBLOCK) && fiq->connected &&
Miklos Szeredif88996a2015-07-01 16:26:01 +02001233 !request_pending(fiq))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001234 goto err_unlock;
1235
Miklos Szeredi52509212015-07-01 16:26:03 +02001236 err = wait_event_interruptible_exclusive_locked(fiq->waitq,
1237 !fiq->connected || request_pending(fiq));
1238 if (err)
1239 goto err_unlock;
1240
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01001241 if (!fiq->connected) {
1242 err = (fc->aborted && fc->abort_err) ? -ECONNABORTED : -ENODEV;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001243 goto err_unlock;
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01001244 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001245
Miklos Szeredif88996a2015-07-01 16:26:01 +02001246 if (!list_empty(&fiq->interrupts)) {
1247 req = list_entry(fiq->interrupts.next, struct fuse_req,
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001248 intr_entry);
Miklos Szeredifd22d622015-07-01 16:26:03 +02001249 return fuse_read_interrupt(fiq, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001250 }
1251
Miklos Szeredif88996a2015-07-01 16:26:01 +02001252 if (forget_pending(fiq)) {
1253 if (list_empty(&fiq->pending) || fiq->forget_batch-- > 0)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001254 return fuse_read_forget(fc, fiq, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001255
Miklos Szeredif88996a2015-07-01 16:26:01 +02001256 if (fiq->forget_batch <= -8)
1257 fiq->forget_batch = 16;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001258 }
1259
Miklos Szeredif88996a2015-07-01 16:26:01 +02001260 req = list_entry(fiq->pending.next, struct fuse_req, list);
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001261 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredief759252015-07-01 16:26:02 +02001262 list_del_init(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001263 spin_unlock(&fiq->waitq.lock);
1264
Miklos Szeredi334f4852005-09-09 13:10:27 -07001265 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001266 reqsize = in->h.len;
Miklos Szeredi5d6d3a32017-09-12 16:57:53 +02001267
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001268 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001269 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001270 req->out.h.error = -EIO;
1271 /* SETXATTR is special, since it may contain too large data */
1272 if (in->h.opcode == FUSE_SETXATTR)
1273 req->out.h.error = -E2BIG;
1274 request_end(fc, req);
1275 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001276 }
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001277 spin_lock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001278 list_add(&req->list, &fpq->io);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001279 spin_unlock(&fpq->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001280 cs->req = req;
1281 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001282 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001283 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001284 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001285 fuse_copy_finish(cs);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001286 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001287 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001288 if (!fpq->connected) {
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01001289 err = (fc->aborted && fc->abort_err) ? -ECONNABORTED : -ENODEV;
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001290 goto out_end;
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001291 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001292 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001293 req->out.h.error = -EIO;
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001294 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001295 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001296 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001297 err = reqsize;
1298 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001299 }
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001300 list_move_tail(&req->list, &fpq->processing);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001301 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001302 set_bit(FR_SENT, &req->flags);
1303 /* matches barrier in request_wait_answer() */
1304 smp_mb__after_atomic();
1305 if (test_bit(FR_INTERRUPTED, &req->flags))
1306 queue_interrupt(fiq, req);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001307
Miklos Szeredi334f4852005-09-09 13:10:27 -07001308 return reqsize;
1309
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001310out_end:
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001311 if (!test_bit(FR_PRIVATE, &req->flags))
1312 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001313 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001314 request_end(fc, req);
1315 return err;
1316
Miklos Szeredi334f4852005-09-09 13:10:27 -07001317 err_unlock:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001318 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001319 return err;
1320}
1321
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001322static int fuse_dev_open(struct inode *inode, struct file *file)
1323{
1324 /*
1325 * The fuse device's file's private_data is used to hold
1326 * the fuse_conn(ection) when it is mounted, and is used to
1327 * keep track of whether the file has been mounted already.
1328 */
1329 file->private_data = NULL;
1330 return 0;
1331}
1332
Al Virofbdbacc2015-04-03 21:53:39 -04001333static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001334{
1335 struct fuse_copy_state cs;
1336 struct file *file = iocb->ki_filp;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001337 struct fuse_dev *fud = fuse_get_dev(file);
1338
1339 if (!fud)
Miklos Szeredic3021622010-05-25 15:06:07 +02001340 return -EPERM;
1341
Al Virofbdbacc2015-04-03 21:53:39 -04001342 if (!iter_is_iovec(to))
1343 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001344
Miklos Szeredidc008092015-07-01 16:25:58 +02001345 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001346
Miklos Szeredic36960462015-07-01 16:26:09 +02001347 return fuse_dev_do_read(fud, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001348}
1349
Miklos Szeredic3021622010-05-25 15:06:07 +02001350static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1351 struct pipe_inode_info *pipe,
1352 size_t len, unsigned int flags)
1353{
Al Virod82718e2016-09-17 22:56:25 -04001354 int total, ret;
Miklos Szeredic3021622010-05-25 15:06:07 +02001355 int page_nr = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +02001356 struct pipe_buffer *bufs;
1357 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001358 struct fuse_dev *fud = fuse_get_dev(in);
1359
1360 if (!fud)
Miklos Szeredic3021622010-05-25 15:06:07 +02001361 return -EPERM;
1362
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001363 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001364 if (!bufs)
1365 return -ENOMEM;
1366
Miklos Szeredidc008092015-07-01 16:25:58 +02001367 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001368 cs.pipebufs = bufs;
1369 cs.pipe = pipe;
Miklos Szeredic36960462015-07-01 16:26:09 +02001370 ret = fuse_dev_do_read(fud, in, &cs, len);
Miklos Szeredic3021622010-05-25 15:06:07 +02001371 if (ret < 0)
1372 goto out;
1373
Miklos Szeredic3021622010-05-25 15:06:07 +02001374 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1375 ret = -EIO;
Al Virod82718e2016-09-17 22:56:25 -04001376 goto out;
Miklos Szeredic3021622010-05-25 15:06:07 +02001377 }
1378
Al Virod82718e2016-09-17 22:56:25 -04001379 for (ret = total = 0; page_nr < cs.nr_segs; total += ret) {
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001380 /*
1381 * Need to be careful about this. Having buf->ops in module
1382 * code can Oops if the buffer persists after module unload.
1383 */
Al Virod82718e2016-09-17 22:56:25 -04001384 bufs[page_nr].ops = &nosteal_pipe_buf_ops;
Miklos Szeredi84588a92017-02-16 15:08:20 +01001385 bufs[page_nr].flags = 0;
Al Virod82718e2016-09-17 22:56:25 -04001386 ret = add_to_pipe(pipe, &bufs[page_nr++]);
1387 if (unlikely(ret < 0))
1388 break;
Miklos Szeredic3021622010-05-25 15:06:07 +02001389 }
Al Virod82718e2016-09-17 22:56:25 -04001390 if (total)
1391 ret = total;
Miklos Szeredic3021622010-05-25 15:06:07 +02001392out:
1393 for (; page_nr < cs.nr_segs; page_nr++)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001394 put_page(bufs[page_nr].page);
Miklos Szeredic3021622010-05-25 15:06:07 +02001395
1396 kfree(bufs);
1397 return ret;
1398}
1399
Tejun Heo95668a62008-11-26 12:03:55 +01001400static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1401 struct fuse_copy_state *cs)
1402{
1403 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001404 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001405
1406 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001407 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001408
1409 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1410 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001411 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001412
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001413 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001414 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001415
1416err:
1417 fuse_copy_finish(cs);
1418 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001419}
1420
John Muir3b463ae2009-05-31 11:13:57 -04001421static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1422 struct fuse_copy_state *cs)
1423{
1424 struct fuse_notify_inval_inode_out outarg;
1425 int err = -EINVAL;
1426
1427 if (size != sizeof(outarg))
1428 goto err;
1429
1430 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1431 if (err)
1432 goto err;
1433 fuse_copy_finish(cs);
1434
1435 down_read(&fc->killsb);
1436 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001437 if (fc->sb) {
1438 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1439 outarg.off, outarg.len);
1440 }
John Muir3b463ae2009-05-31 11:13:57 -04001441 up_read(&fc->killsb);
1442 return err;
1443
1444err:
1445 fuse_copy_finish(cs);
1446 return err;
1447}
1448
1449static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1450 struct fuse_copy_state *cs)
1451{
1452 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001453 int err = -ENOMEM;
1454 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001455 struct qstr name;
1456
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001457 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1458 if (!buf)
1459 goto err;
1460
1461 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001462 if (size < sizeof(outarg))
1463 goto err;
1464
1465 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1466 if (err)
1467 goto err;
1468
1469 err = -ENAMETOOLONG;
1470 if (outarg.namelen > FUSE_NAME_MAX)
1471 goto err;
1472
Miklos Szeredic2183d12011-08-24 10:20:17 +02001473 err = -EINVAL;
1474 if (size != sizeof(outarg) + outarg.namelen + 1)
1475 goto err;
1476
John Muir3b463ae2009-05-31 11:13:57 -04001477 name.name = buf;
1478 name.len = outarg.namelen;
1479 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1480 if (err)
1481 goto err;
1482 fuse_copy_finish(cs);
1483 buf[outarg.namelen] = 0;
John Muir3b463ae2009-05-31 11:13:57 -04001484
1485 down_read(&fc->killsb);
1486 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001487 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001488 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1489 up_read(&fc->killsb);
1490 kfree(buf);
1491 return err;
1492
1493err:
1494 kfree(buf);
1495 fuse_copy_finish(cs);
1496 return err;
1497}
1498
1499static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1500 struct fuse_copy_state *cs)
1501{
1502 struct fuse_notify_delete_out outarg;
1503 int err = -ENOMEM;
1504 char *buf;
1505 struct qstr name;
1506
1507 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1508 if (!buf)
1509 goto err;
1510
1511 err = -EINVAL;
1512 if (size < sizeof(outarg))
1513 goto err;
1514
1515 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1516 if (err)
1517 goto err;
1518
1519 err = -ENAMETOOLONG;
1520 if (outarg.namelen > FUSE_NAME_MAX)
1521 goto err;
1522
1523 err = -EINVAL;
1524 if (size != sizeof(outarg) + outarg.namelen + 1)
1525 goto err;
1526
1527 name.name = buf;
1528 name.len = outarg.namelen;
1529 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1530 if (err)
1531 goto err;
1532 fuse_copy_finish(cs);
1533 buf[outarg.namelen] = 0;
John Muir451d0f52011-12-06 21:50:06 +01001534
1535 down_read(&fc->killsb);
1536 err = -ENOENT;
1537 if (fc->sb)
1538 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1539 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001540 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001541 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001542 return err;
1543
1544err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001545 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001546 fuse_copy_finish(cs);
1547 return err;
1548}
1549
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001550static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1551 struct fuse_copy_state *cs)
1552{
1553 struct fuse_notify_store_out outarg;
1554 struct inode *inode;
1555 struct address_space *mapping;
1556 u64 nodeid;
1557 int err;
1558 pgoff_t index;
1559 unsigned int offset;
1560 unsigned int num;
1561 loff_t file_size;
1562 loff_t end;
1563
1564 err = -EINVAL;
1565 if (size < sizeof(outarg))
1566 goto out_finish;
1567
1568 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1569 if (err)
1570 goto out_finish;
1571
1572 err = -EINVAL;
1573 if (size - sizeof(outarg) != outarg.size)
1574 goto out_finish;
1575
1576 nodeid = outarg.nodeid;
1577
1578 down_read(&fc->killsb);
1579
1580 err = -ENOENT;
1581 if (!fc->sb)
1582 goto out_up_killsb;
1583
1584 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1585 if (!inode)
1586 goto out_up_killsb;
1587
1588 mapping = inode->i_mapping;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001589 index = outarg.offset >> PAGE_SHIFT;
1590 offset = outarg.offset & ~PAGE_MASK;
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001591 file_size = i_size_read(inode);
1592 end = outarg.offset + outarg.size;
1593 if (end > file_size) {
1594 file_size = end;
1595 fuse_write_update_size(inode, file_size);
1596 }
1597
1598 num = outarg.size;
1599 while (num) {
1600 struct page *page;
1601 unsigned int this_num;
1602
1603 err = -ENOMEM;
1604 page = find_or_create_page(mapping, index,
1605 mapping_gfp_mask(mapping));
1606 if (!page)
1607 goto out_iput;
1608
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001609 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001610 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001611 if (!err && offset == 0 &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001612 (this_num == PAGE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001613 SetPageUptodate(page);
1614 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001615 put_page(page);
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001616
1617 if (err)
1618 goto out_iput;
1619
1620 num -= this_num;
1621 offset = 0;
1622 index++;
1623 }
1624
1625 err = 0;
1626
1627out_iput:
1628 iput(inode);
1629out_up_killsb:
1630 up_read(&fc->killsb);
1631out_finish:
1632 fuse_copy_finish(cs);
1633 return err;
1634}
1635
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001636static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1637{
Mel Gormanc6f92f92017-11-15 17:37:55 -08001638 release_pages(req->pages, req->num_pages);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001639}
1640
1641static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1642 struct fuse_notify_retrieve_out *outarg)
1643{
1644 int err;
1645 struct address_space *mapping = inode->i_mapping;
1646 struct fuse_req *req;
1647 pgoff_t index;
1648 loff_t file_size;
1649 unsigned int num;
1650 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001651 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001652 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001653
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001654 offset = outarg->offset & ~PAGE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001655 file_size = i_size_read(inode);
1656
1657 num = outarg->size;
1658 if (outarg->offset > file_size)
1659 num = 0;
1660 else if (outarg->offset + num > file_size)
1661 num = file_size - outarg->offset;
1662
1663 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1664 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1665
1666 req = fuse_get_req(fc, num_pages);
1667 if (IS_ERR(req))
1668 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001669
1670 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1671 req->in.h.nodeid = outarg->nodeid;
1672 req->in.numargs = 2;
1673 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001674 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001675 req->end = fuse_retrieve_end;
1676
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001677 index = outarg->offset >> PAGE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001678
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001679 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001680 struct page *page;
1681 unsigned int this_num;
1682
1683 page = find_get_page(mapping, index);
1684 if (!page)
1685 break;
1686
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001687 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001688 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001689 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001690 req->num_pages++;
1691
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001692 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001693 num -= this_num;
1694 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001695 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001696 }
1697 req->misc.retrieve_in.offset = outarg->offset;
1698 req->misc.retrieve_in.size = total_len;
1699 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1700 req->in.args[0].value = &req->misc.retrieve_in;
1701 req->in.args[1].size = total_len;
1702
1703 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1704 if (err)
1705 fuse_retrieve_end(fc, req);
1706
1707 return err;
1708}
1709
1710static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1711 struct fuse_copy_state *cs)
1712{
1713 struct fuse_notify_retrieve_out outarg;
1714 struct inode *inode;
1715 int err;
1716
1717 err = -EINVAL;
1718 if (size != sizeof(outarg))
1719 goto copy_finish;
1720
1721 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1722 if (err)
1723 goto copy_finish;
1724
1725 fuse_copy_finish(cs);
1726
1727 down_read(&fc->killsb);
1728 err = -ENOENT;
1729 if (fc->sb) {
1730 u64 nodeid = outarg.nodeid;
1731
1732 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1733 if (inode) {
1734 err = fuse_retrieve(fc, inode, &outarg);
1735 iput(inode);
1736 }
1737 }
1738 up_read(&fc->killsb);
1739
1740 return err;
1741
1742copy_finish:
1743 fuse_copy_finish(cs);
1744 return err;
1745}
1746
Tejun Heo85993962008-11-26 12:03:55 +01001747static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1748 unsigned int size, struct fuse_copy_state *cs)
1749{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001750 /* Don't try to move pages (yet) */
1751 cs->move_pages = 0;
1752
Tejun Heo85993962008-11-26 12:03:55 +01001753 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001754 case FUSE_NOTIFY_POLL:
1755 return fuse_notify_poll(fc, size, cs);
1756
John Muir3b463ae2009-05-31 11:13:57 -04001757 case FUSE_NOTIFY_INVAL_INODE:
1758 return fuse_notify_inval_inode(fc, size, cs);
1759
1760 case FUSE_NOTIFY_INVAL_ENTRY:
1761 return fuse_notify_inval_entry(fc, size, cs);
1762
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001763 case FUSE_NOTIFY_STORE:
1764 return fuse_notify_store(fc, size, cs);
1765
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001766 case FUSE_NOTIFY_RETRIEVE:
1767 return fuse_notify_retrieve(fc, size, cs);
1768
John Muir451d0f52011-12-06 21:50:06 +01001769 case FUSE_NOTIFY_DELETE:
1770 return fuse_notify_delete(fc, size, cs);
1771
Tejun Heo85993962008-11-26 12:03:55 +01001772 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001773 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001774 return -EINVAL;
1775 }
1776}
1777
Miklos Szeredi334f4852005-09-09 13:10:27 -07001778/* Look up request on processing list by unique ID */
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001779static struct fuse_req *request_find(struct fuse_pqueue *fpq, u64 unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001780{
Dong Fang05726ac2013-07-30 22:50:01 -04001781 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001782
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001783 list_for_each_entry(req, &fpq->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001784 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001785 return req;
1786 }
1787 return NULL;
1788}
1789
1790static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1791 unsigned nbytes)
1792{
1793 unsigned reqsize = sizeof(struct fuse_out_header);
1794
1795 if (out->h.error)
1796 return nbytes != reqsize ? -EINVAL : 0;
1797
1798 reqsize += len_args(out->numargs, out->args);
1799
1800 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1801 return -EINVAL;
1802 else if (reqsize > nbytes) {
1803 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1804 unsigned diffsize = reqsize - nbytes;
1805 if (diffsize > lastarg->size)
1806 return -EINVAL;
1807 lastarg->size -= diffsize;
1808 }
1809 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1810 out->page_zeroing);
1811}
1812
1813/*
1814 * Write a single reply to a request. First the header is copied from
1815 * the write buffer. The request is then searched on the processing
1816 * list by the unique ID found in the header. If found, then remove
1817 * it from the list and copy the rest of the buffer to the request.
1818 * The request is finished by calling request_end()
1819 */
Miklos Szeredic36960462015-07-01 16:26:09 +02001820static ssize_t fuse_dev_do_write(struct fuse_dev *fud,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001821 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001822{
1823 int err;
Miklos Szeredic36960462015-07-01 16:26:09 +02001824 struct fuse_conn *fc = fud->fc;
1825 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001826 struct fuse_req *req;
1827 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001828
Miklos Szeredi334f4852005-09-09 13:10:27 -07001829 if (nbytes < sizeof(struct fuse_out_header))
1830 return -EINVAL;
1831
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001832 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001833 if (err)
1834 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001835
Miklos Szeredi334f4852005-09-09 13:10:27 -07001836 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001837 if (oh.len != nbytes)
1838 goto err_finish;
1839
1840 /*
1841 * Zero oh.unique indicates unsolicited notification message
1842 * and error contains notification code.
1843 */
1844 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001845 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001846 return err ? err : nbytes;
1847 }
1848
1849 err = -EINVAL;
1850 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001851 goto err_finish;
1852
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001853 spin_lock(&fpq->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001854 err = -ENOENT;
Miklos Szeredie96edd92015-07-01 16:26:04 +02001855 if (!fpq->connected)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001856 goto err_unlock_pq;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001857
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001858 req = request_find(fpq, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001859 if (!req)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001860 goto err_unlock_pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001861
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001862 /* Is it an interrupt reply? */
1863 if (req->intr_unique == oh.unique) {
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001864 spin_unlock(&fpq->lock);
1865
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001866 err = -EINVAL;
1867 if (nbytes != sizeof(struct fuse_out_header))
Miklos Szeredi46c34a32015-07-01 16:26:07 +02001868 goto err_finish;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001869
1870 if (oh.error == -ENOSYS)
1871 fc->no_interrupt = 1;
1872 else if (oh.error == -EAGAIN)
Miklos Szeredif88996a2015-07-01 16:26:01 +02001873 queue_interrupt(&fc->iq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001874
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001875 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001876 return nbytes;
1877 }
1878
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001879 clear_bit(FR_SENT, &req->flags);
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001880 list_move(&req->list, &fpq->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001881 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001882 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001883 spin_unlock(&fpq->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001884 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001885 if (!req->out.page_replace)
1886 cs->move_pages = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001887
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001888 err = copy_out_args(cs, &req->out, nbytes);
1889 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001890
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001891 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001892 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001893 if (!fpq->connected)
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001894 err = -ENOENT;
1895 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001896 req->out.h.error = -EIO;
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001897 if (!test_bit(FR_PRIVATE, &req->flags))
1898 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001899 spin_unlock(&fpq->lock);
Miklos Szeredi46c34a32015-07-01 16:26:07 +02001900
Miklos Szeredi334f4852005-09-09 13:10:27 -07001901 request_end(fc, req);
1902
1903 return err ? err : nbytes;
1904
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001905 err_unlock_pq:
1906 spin_unlock(&fpq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001907 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001908 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001909 return err;
1910}
1911
Al Virofbdbacc2015-04-03 21:53:39 -04001912static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001913{
1914 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001915 struct fuse_dev *fud = fuse_get_dev(iocb->ki_filp);
1916
1917 if (!fud)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001918 return -EPERM;
1919
Al Virofbdbacc2015-04-03 21:53:39 -04001920 if (!iter_is_iovec(from))
1921 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001922
Miklos Szeredidc008092015-07-01 16:25:58 +02001923 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001924
Miklos Szeredic36960462015-07-01 16:26:09 +02001925 return fuse_dev_do_write(fud, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001926}
1927
1928static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1929 struct file *out, loff_t *ppos,
1930 size_t len, unsigned int flags)
1931{
1932 unsigned nbuf;
1933 unsigned idx;
1934 struct pipe_buffer *bufs;
1935 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001936 struct fuse_dev *fud;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001937 size_t rem;
1938 ssize_t ret;
1939
Miklos Szeredicc080e92015-07-01 16:26:08 +02001940 fud = fuse_get_dev(out);
1941 if (!fud)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001942 return -EPERM;
1943
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001944 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001945 if (!bufs)
1946 return -ENOMEM;
1947
1948 pipe_lock(pipe);
1949 nbuf = 0;
1950 rem = 0;
1951 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
1952 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
1953
1954 ret = -EINVAL;
1955 if (rem < len) {
1956 pipe_unlock(pipe);
1957 goto out;
1958 }
1959
1960 rem = len;
1961 while (rem) {
1962 struct pipe_buffer *ibuf;
1963 struct pipe_buffer *obuf;
1964
1965 BUG_ON(nbuf >= pipe->buffers);
1966 BUG_ON(!pipe->nrbufs);
1967 ibuf = &pipe->bufs[pipe->curbuf];
1968 obuf = &bufs[nbuf];
1969
1970 if (rem >= ibuf->len) {
1971 *obuf = *ibuf;
1972 ibuf->ops = NULL;
1973 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
1974 pipe->nrbufs--;
1975 } else {
Miklos Szeredi7bf2d1d2016-09-27 10:45:12 +02001976 pipe_buf_get(pipe, ibuf);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001977 *obuf = *ibuf;
1978 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1979 obuf->len = rem;
1980 ibuf->offset += obuf->len;
1981 ibuf->len -= obuf->len;
1982 }
1983 nbuf++;
1984 rem -= obuf->len;
1985 }
1986 pipe_unlock(pipe);
1987
Miklos Szeredidc008092015-07-01 16:25:58 +02001988 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001989 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04001990 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001991 cs.pipe = pipe;
1992
Miklos Szeredice534fb2010-05-25 15:06:07 +02001993 if (flags & SPLICE_F_MOVE)
1994 cs.move_pages = 1;
1995
Miklos Szeredic36960462015-07-01 16:26:09 +02001996 ret = fuse_dev_do_write(fud, &cs, len);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001997
Miklos Szeredia7796382016-09-27 10:45:12 +02001998 for (idx = 0; idx < nbuf; idx++)
1999 pipe_buf_release(pipe, &bufs[idx]);
2000
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002001out:
2002 kfree(bufs);
2003 return ret;
2004}
2005
Al Viro076ccb72017-07-03 01:02:18 -04002006static __poll_t fuse_dev_poll(struct file *file, poll_table *wait)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002007{
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002008 __poll_t mask = EPOLLOUT | EPOLLWRNORM;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002009 struct fuse_iqueue *fiq;
Miklos Szeredicc080e92015-07-01 16:26:08 +02002010 struct fuse_dev *fud = fuse_get_dev(file);
2011
2012 if (!fud)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002013 return EPOLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002014
Miklos Szeredicc080e92015-07-01 16:26:08 +02002015 fiq = &fud->fc->iq;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002016 poll_wait(file, &fiq->waitq, wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002017
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002018 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +02002019 if (!fiq->connected)
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002020 mask = EPOLLERR;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002021 else if (request_pending(fiq))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002022 mask |= EPOLLIN | EPOLLRDNORM;
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002023 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002024
2025 return mask;
2026}
2027
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002028/*
2029 * Abort all requests on the given list (pending or processing)
2030 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002031 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002032 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002033static void end_requests(struct fuse_conn *fc, struct list_head *head)
2034{
2035 while (!list_empty(head)) {
2036 struct fuse_req *req;
2037 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002038 req->out.h.error = -ECONNABORTED;
Miklos Szeredi33e14b42015-07-01 16:26:01 +02002039 clear_bit(FR_SENT, &req->flags);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002040 list_del_init(&req->list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002041 request_end(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002042 }
2043}
2044
Bryan Green357ccf22011-03-01 16:43:52 -08002045static void end_polls(struct fuse_conn *fc)
2046{
2047 struct rb_node *p;
2048
2049 p = rb_first(&fc->polled_files);
2050
2051 while (p) {
2052 struct fuse_file *ff;
2053 ff = rb_entry(p, struct fuse_file, polled_node);
2054 wake_up_interruptible_all(&ff->poll_wait);
2055
2056 p = rb_next(p);
2057 }
2058}
2059
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002060/*
2061 * Abort all requests.
2062 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002063 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2064 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002065 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002066 * The same effect is usually achievable through killing the filesystem daemon
2067 * and all users of the filesystem. The exception is the combination of an
2068 * asynchronous request and the tricky deadlock (see
2069 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002070 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002071 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2072 * requests, they should be finished off immediately. Locked requests will be
2073 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2074 * requests. It is possible that some request will finish before we can. This
2075 * is OK, the request will in that case be removed from the list before we touch
2076 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002077 */
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01002078void fuse_abort_conn(struct fuse_conn *fc, bool is_abort)
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002079{
Miklos Szeredif88996a2015-07-01 16:26:01 +02002080 struct fuse_iqueue *fiq = &fc->iq;
2081
Miklos Szeredid7133112006-04-10 22:54:55 -07002082 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002083 if (fc->connected) {
Miklos Szeredic36960462015-07-01 16:26:09 +02002084 struct fuse_dev *fud;
Miklos Szeredib716d422015-07-01 16:25:59 +02002085 struct fuse_req *req, *next;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002086 LIST_HEAD(to_end1);
2087 LIST_HEAD(to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002088
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002089 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002090 fc->blocked = 0;
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01002091 fc->aborted = is_abort;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002092 fuse_set_initialized(fc);
Miklos Szeredic36960462015-07-01 16:26:09 +02002093 list_for_each_entry(fud, &fc->devices, entry) {
2094 struct fuse_pqueue *fpq = &fud->pq;
2095
2096 spin_lock(&fpq->lock);
2097 fpq->connected = 0;
2098 list_for_each_entry_safe(req, next, &fpq->io, list) {
2099 req->out.h.error = -ECONNABORTED;
2100 spin_lock(&req->waitq.lock);
2101 set_bit(FR_ABORTED, &req->flags);
2102 if (!test_bit(FR_LOCKED, &req->flags)) {
2103 set_bit(FR_PRIVATE, &req->flags);
2104 list_move(&req->list, &to_end1);
2105 }
2106 spin_unlock(&req->waitq.lock);
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02002107 }
Miklos Szeredic36960462015-07-01 16:26:09 +02002108 list_splice_init(&fpq->processing, &to_end2);
2109 spin_unlock(&fpq->lock);
Miklos Szeredib716d422015-07-01 16:25:59 +02002110 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002111 fc->max_background = UINT_MAX;
2112 flush_bg_queue(fc);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002113
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002114 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002115 fiq->connected = 0;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002116 list_splice_init(&fiq->pending, &to_end2);
Tahsin Erdogana8a86d72017-01-12 12:04:04 -08002117 list_for_each_entry(req, &to_end2, list)
2118 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002119 while (forget_pending(fiq))
2120 kfree(dequeue_forget(fiq, 1, NULL));
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002121 wake_up_all_locked(&fiq->waitq);
2122 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002123 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szerediee314a82015-07-01 16:26:08 +02002124 end_polls(fc);
2125 wake_up_all(&fc->blocked_waitq);
2126 spin_unlock(&fc->lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002127
Miklos Szeredi41f98272015-07-01 16:25:59 +02002128 while (!list_empty(&to_end1)) {
2129 req = list_first_entry(&to_end1, struct fuse_req, list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002130 __fuse_get_request(req);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002131 list_del_init(&req->list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002132 request_end(fc, req);
Miklos Szeredib716d422015-07-01 16:25:59 +02002133 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002134 end_requests(fc, &to_end2);
Miklos Szerediee314a82015-07-01 16:26:08 +02002135 } else {
2136 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002137 }
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002138}
Tejun Heo08cbf542009-04-14 10:54:53 +09002139EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002140
Tejun Heo08cbf542009-04-14 10:54:53 +09002141int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002142{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002143 struct fuse_dev *fud = fuse_get_dev(file);
2144
2145 if (fud) {
2146 struct fuse_conn *fc = fud->fc;
Miklos Szeredic36960462015-07-01 16:26:09 +02002147 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredicc080e92015-07-01 16:26:08 +02002148
Miklos Szeredic36960462015-07-01 16:26:09 +02002149 WARN_ON(!list_empty(&fpq->io));
2150 end_requests(fc, &fpq->processing);
2151 /* Are we the last open device? */
2152 if (atomic_dec_and_test(&fc->dev_count)) {
2153 WARN_ON(fc->iq.fasync != NULL);
Szymon Lukasz3b7008b2017-11-09 21:23:35 +01002154 fuse_abort_conn(fc, false);
Miklos Szeredic36960462015-07-01 16:26:09 +02002155 }
Miklos Szeredicc080e92015-07-01 16:26:08 +02002156 fuse_dev_free(fud);
Jeff Dike385a17b2006-04-10 22:54:52 -07002157 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07002158 return 0;
2159}
Tejun Heo08cbf542009-04-14 10:54:53 +09002160EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002161
Jeff Dike385a17b2006-04-10 22:54:52 -07002162static int fuse_dev_fasync(int fd, struct file *file, int on)
2163{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002164 struct fuse_dev *fud = fuse_get_dev(file);
2165
2166 if (!fud)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002167 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002168
2169 /* No locking - fasync_helper does its own locking */
Miklos Szeredicc080e92015-07-01 16:26:08 +02002170 return fasync_helper(fd, file, on, &fud->fc->iq.fasync);
Jeff Dike385a17b2006-04-10 22:54:52 -07002171}
2172
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002173static int fuse_device_clone(struct fuse_conn *fc, struct file *new)
2174{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002175 struct fuse_dev *fud;
2176
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002177 if (new->private_data)
2178 return -EINVAL;
2179
Miklos Szeredicc080e92015-07-01 16:26:08 +02002180 fud = fuse_dev_alloc(fc);
2181 if (!fud)
2182 return -ENOMEM;
2183
2184 new->private_data = fud;
Miklos Szeredic36960462015-07-01 16:26:09 +02002185 atomic_inc(&fc->dev_count);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002186
2187 return 0;
2188}
2189
2190static long fuse_dev_ioctl(struct file *file, unsigned int cmd,
2191 unsigned long arg)
2192{
2193 int err = -ENOTTY;
2194
2195 if (cmd == FUSE_DEV_IOC_CLONE) {
2196 int oldfd;
2197
2198 err = -EFAULT;
2199 if (!get_user(oldfd, (__u32 __user *) arg)) {
2200 struct file *old = fget(oldfd);
2201
2202 err = -EINVAL;
2203 if (old) {
Jann Horn8ed1f0e2015-08-16 20:27:01 +02002204 struct fuse_dev *fud = NULL;
2205
2206 /*
2207 * Check against file->f_op because CUSE
2208 * uses the same ioctl handler.
2209 */
2210 if (old->f_op == file->f_op &&
2211 old->f_cred->user_ns == file->f_cred->user_ns)
2212 fud = fuse_get_dev(old);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002213
Miklos Szeredicc080e92015-07-01 16:26:08 +02002214 if (fud) {
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002215 mutex_lock(&fuse_mutex);
Miklos Szeredicc080e92015-07-01 16:26:08 +02002216 err = fuse_device_clone(fud->fc, file);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002217 mutex_unlock(&fuse_mutex);
2218 }
2219 fput(old);
2220 }
2221 }
2222 }
2223 return err;
2224}
2225
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002226const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002227 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002228 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002229 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002230 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002231 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002232 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002233 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002234 .poll = fuse_dev_poll,
2235 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002236 .fasync = fuse_dev_fasync,
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002237 .unlocked_ioctl = fuse_dev_ioctl,
2238 .compat_ioctl = fuse_dev_ioctl,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002239};
Tejun Heo08cbf542009-04-14 10:54:53 +09002240EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002241
2242static struct miscdevice fuse_miscdevice = {
2243 .minor = FUSE_MINOR,
2244 .name = "fuse",
2245 .fops = &fuse_dev_operations,
2246};
2247
2248int __init fuse_dev_init(void)
2249{
2250 int err = -ENOMEM;
2251 fuse_req_cachep = kmem_cache_create("fuse_request",
2252 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002253 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002254 if (!fuse_req_cachep)
2255 goto out;
2256
2257 err = misc_register(&fuse_miscdevice);
2258 if (err)
2259 goto out_cache_clean;
2260
2261 return 0;
2262
2263 out_cache_clean:
2264 kmem_cache_destroy(fuse_req_cachep);
2265 out:
2266 return err;
2267}
2268
2269void fuse_dev_cleanup(void)
2270{
2271 misc_deregister(&fuse_miscdevice);
2272 kmem_cache_destroy(fuse_req_cachep);
2273}