blob: 35453f229ef353495464df71df0d7d2c71a4fa60 [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>
14#include <linux/uio.h>
15#include <linux/miscdevice.h>
16#include <linux/pagemap.h>
17#include <linux/file.h>
18#include <linux/slab.h>
Miklos Szeredidd3bb142010-05-25 15:06:06 +020019#include <linux/pipe_fs_i.h>
Miklos Szeredice534fb2010-05-25 15:06:07 +020020#include <linux/swap.h>
21#include <linux/splice.h>
Miklos Szeredi334f4852005-09-09 13:10:27 -070022
23MODULE_ALIAS_MISCDEV(FUSE_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +020024MODULE_ALIAS("devname:fuse");
Miklos Szeredi334f4852005-09-09 13:10:27 -070025
Christoph Lametere18b8902006-12-06 20:33:20 -080026static struct kmem_cache *fuse_req_cachep;
Miklos Szeredi334f4852005-09-09 13:10:27 -070027
Miklos Szeredi8bfc0162006-01-16 22:14:28 -080028static struct fuse_conn *fuse_get_conn(struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -070029{
Miklos Szeredi0720b312006-04-10 22:54:55 -070030 /*
31 * Lockless access is OK, because file->private data is set
32 * once during mount and is valid until the file is released.
33 */
34 return file->private_data;
Miklos Szeredi334f4852005-09-09 13:10:27 -070035}
36
Maxim Patlasov4250c062012-10-26 19:48:07 +040037static void fuse_request_init(struct fuse_req *req, struct page **pages,
Maxim Patlasovb2430d72012-10-26 19:49:24 +040038 struct fuse_page_desc *page_descs,
Maxim Patlasov4250c062012-10-26 19:48:07 +040039 unsigned npages)
Miklos Szeredi334f4852005-09-09 13:10:27 -070040{
41 memset(req, 0, sizeof(*req));
Maxim Patlasov4250c062012-10-26 19:48:07 +040042 memset(pages, 0, sizeof(*pages) * npages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040043 memset(page_descs, 0, sizeof(*page_descs) * npages);
Miklos Szeredi334f4852005-09-09 13:10:27 -070044 INIT_LIST_HEAD(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -070045 INIT_LIST_HEAD(&req->intr_entry);
Miklos Szeredi334f4852005-09-09 13:10:27 -070046 init_waitqueue_head(&req->waitq);
47 atomic_set(&req->count, 1);
Maxim Patlasov4250c062012-10-26 19:48:07 +040048 req->pages = pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040049 req->page_descs = page_descs;
Maxim Patlasov4250c062012-10-26 19:48:07 +040050 req->max_pages = npages;
Miklos Szeredi33e14b42015-07-01 16:26:01 +020051 __set_bit(FR_PENDING, &req->flags);
Miklos Szeredi334f4852005-09-09 13:10:27 -070052}
53
Maxim Patlasov4250c062012-10-26 19:48:07 +040054static struct fuse_req *__fuse_request_alloc(unsigned npages, gfp_t flags)
Miklos Szeredi334f4852005-09-09 13:10:27 -070055{
Maxim Patlasov4250c062012-10-26 19:48:07 +040056 struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, flags);
57 if (req) {
58 struct page **pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040059 struct fuse_page_desc *page_descs;
Maxim Patlasov4250c062012-10-26 19:48:07 +040060
Maxim Patlasovb2430d72012-10-26 19:49:24 +040061 if (npages <= FUSE_REQ_INLINE_PAGES) {
Maxim Patlasov4250c062012-10-26 19:48:07 +040062 pages = req->inline_pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040063 page_descs = req->inline_page_descs;
64 } else {
Maxim Patlasov4250c062012-10-26 19:48:07 +040065 pages = kmalloc(sizeof(struct page *) * npages, flags);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040066 page_descs = kmalloc(sizeof(struct fuse_page_desc) *
67 npages, flags);
68 }
Maxim Patlasov4250c062012-10-26 19:48:07 +040069
Maxim Patlasovb2430d72012-10-26 19:49:24 +040070 if (!pages || !page_descs) {
71 kfree(pages);
72 kfree(page_descs);
Maxim Patlasov4250c062012-10-26 19:48:07 +040073 kmem_cache_free(fuse_req_cachep, req);
74 return NULL;
75 }
76
Maxim Patlasovb2430d72012-10-26 19:49:24 +040077 fuse_request_init(req, pages, page_descs, npages);
Maxim Patlasov4250c062012-10-26 19:48:07 +040078 }
Miklos Szeredi334f4852005-09-09 13:10:27 -070079 return req;
80}
Maxim Patlasov4250c062012-10-26 19:48:07 +040081
82struct fuse_req *fuse_request_alloc(unsigned npages)
83{
84 return __fuse_request_alloc(npages, GFP_KERNEL);
85}
Tejun Heo08cbf542009-04-14 10:54:53 +090086EXPORT_SYMBOL_GPL(fuse_request_alloc);
Miklos Szeredi334f4852005-09-09 13:10:27 -070087
Maxim Patlasov4250c062012-10-26 19:48:07 +040088struct fuse_req *fuse_request_alloc_nofs(unsigned npages)
Miklos Szeredi3be5a522008-04-30 00:54:41 -070089{
Maxim Patlasov4250c062012-10-26 19:48:07 +040090 return __fuse_request_alloc(npages, GFP_NOFS);
Miklos Szeredi3be5a522008-04-30 00:54:41 -070091}
92
Miklos Szeredi334f4852005-09-09 13:10:27 -070093void fuse_request_free(struct fuse_req *req)
94{
Maxim Patlasovb2430d72012-10-26 19:49:24 +040095 if (req->pages != req->inline_pages) {
Maxim Patlasov4250c062012-10-26 19:48:07 +040096 kfree(req->pages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040097 kfree(req->page_descs);
98 }
Miklos Szeredi334f4852005-09-09 13:10:27 -070099 kmem_cache_free(fuse_req_cachep, req);
100}
101
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800102static void block_sigs(sigset_t *oldset)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700103{
104 sigset_t mask;
105
106 siginitsetinv(&mask, sigmask(SIGKILL));
107 sigprocmask(SIG_BLOCK, &mask, oldset);
108}
109
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800110static void restore_sigs(sigset_t *oldset)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700111{
112 sigprocmask(SIG_SETMASK, oldset, NULL);
113}
114
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400115void __fuse_get_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700116{
117 atomic_inc(&req->count);
118}
119
120/* Must be called with > 1 refcount */
121static void __fuse_put_request(struct fuse_req *req)
122{
123 BUG_ON(atomic_read(&req->count) < 2);
124 atomic_dec(&req->count);
125}
126
Miklos Szeredi33649c92006-06-25 05:48:52 -0700127static void fuse_req_init_context(struct fuse_req *req)
128{
Eric W. Biederman499dcf22012-02-07 16:26:03 -0800129 req->in.h.uid = from_kuid_munged(&init_user_ns, current_fsuid());
130 req->in.h.gid = from_kgid_munged(&init_user_ns, current_fsgid());
Miklos Szeredi33649c92006-06-25 05:48:52 -0700131 req->in.h.pid = current->pid;
132}
133
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100134void fuse_set_initialized(struct fuse_conn *fc)
135{
136 /* Make sure stores before this are seen on another CPU */
137 smp_wmb();
138 fc->initialized = 1;
139}
140
Maxim Patlasov0aada882013-03-21 18:02:28 +0400141static bool fuse_block_alloc(struct fuse_conn *fc, bool for_background)
142{
143 return !fc->initialized || (for_background && fc->blocked);
144}
145
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400146static struct fuse_req *__fuse_get_req(struct fuse_conn *fc, unsigned npages,
147 bool for_background)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700148{
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700149 struct fuse_req *req;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700150 int err;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200151 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400152
153 if (fuse_block_alloc(fc, for_background)) {
154 sigset_t oldset;
155 int intr;
156
157 block_sigs(&oldset);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400158 intr = wait_event_interruptible_exclusive(fc->blocked_waitq,
Maxim Patlasov0aada882013-03-21 18:02:28 +0400159 !fuse_block_alloc(fc, for_background));
160 restore_sigs(&oldset);
161 err = -EINTR;
162 if (intr)
163 goto out;
164 }
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100165 /* Matches smp_wmb() in fuse_set_initialized() */
166 smp_rmb();
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700167
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700168 err = -ENOTCONN;
169 if (!fc->connected)
170 goto out;
171
Miklos Szeredide155222015-07-01 16:25:57 +0200172 err = -ECONNREFUSED;
173 if (fc->conn_error)
174 goto out;
175
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400176 req = fuse_request_alloc(npages);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200177 err = -ENOMEM;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400178 if (!req) {
179 if (for_background)
180 wake_up(&fc->blocked_waitq);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200181 goto out;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400182 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700183
Miklos Szeredi33649c92006-06-25 05:48:52 -0700184 fuse_req_init_context(req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200185 __set_bit(FR_WAITING, &req->flags);
186 if (for_background)
187 __set_bit(FR_BACKGROUND, &req->flags);
188
Miklos Szeredi334f4852005-09-09 13:10:27 -0700189 return req;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200190
191 out:
192 atomic_dec(&fc->num_waiting);
193 return ERR_PTR(err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700194}
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400195
196struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages)
197{
198 return __fuse_get_req(fc, npages, false);
199}
Tejun Heo08cbf542009-04-14 10:54:53 +0900200EXPORT_SYMBOL_GPL(fuse_get_req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700201
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400202struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc,
203 unsigned npages)
204{
205 return __fuse_get_req(fc, npages, true);
206}
207EXPORT_SYMBOL_GPL(fuse_get_req_for_background);
208
Miklos Szeredi33649c92006-06-25 05:48:52 -0700209/*
210 * Return request in fuse_file->reserved_req. However that may
211 * currently be in use. If that is the case, wait for it to become
212 * available.
213 */
214static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
215 struct file *file)
216{
217 struct fuse_req *req = NULL;
218 struct fuse_file *ff = file->private_data;
219
220 do {
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700221 wait_event(fc->reserved_req_waitq, ff->reserved_req);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700222 spin_lock(&fc->lock);
223 if (ff->reserved_req) {
224 req = ff->reserved_req;
225 ff->reserved_req = NULL;
Al Virocb0942b2012-08-27 14:48:26 -0400226 req->stolen_file = get_file(file);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700227 }
228 spin_unlock(&fc->lock);
229 } while (!req);
230
231 return req;
232}
233
234/*
235 * Put stolen request back into fuse_file->reserved_req
236 */
237static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
238{
239 struct file *file = req->stolen_file;
240 struct fuse_file *ff = file->private_data;
241
242 spin_lock(&fc->lock);
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400243 fuse_request_init(req, req->pages, req->page_descs, req->max_pages);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700244 BUG_ON(ff->reserved_req);
245 ff->reserved_req = req;
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700246 wake_up_all(&fc->reserved_req_waitq);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700247 spin_unlock(&fc->lock);
248 fput(file);
249}
250
251/*
252 * Gets a requests for a file operation, always succeeds
253 *
254 * This is used for sending the FLUSH request, which must get to
255 * userspace, due to POSIX locks which may need to be unlocked.
256 *
257 * If allocation fails due to OOM, use the reserved request in
258 * fuse_file.
259 *
260 * This is very unlikely to deadlock accidentally, since the
261 * filesystem should not have it's own file open. If deadlock is
262 * intentional, it can still be broken by "aborting" the filesystem.
263 */
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400264struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc,
265 struct file *file)
Miklos Szeredi33649c92006-06-25 05:48:52 -0700266{
267 struct fuse_req *req;
268
269 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400270 wait_event(fc->blocked_waitq, fc->initialized);
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100271 /* Matches smp_wmb() in fuse_set_initialized() */
272 smp_rmb();
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400273 req = fuse_request_alloc(0);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700274 if (!req)
275 req = get_reserved_req(fc, file);
276
277 fuse_req_init_context(req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200278 __set_bit(FR_WAITING, &req->flags);
279 __clear_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700280 return req;
281}
282
Miklos Szeredi334f4852005-09-09 13:10:27 -0700283void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
284{
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800285 if (atomic_dec_and_test(&req->count)) {
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200286 if (test_bit(FR_BACKGROUND, &req->flags)) {
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400287 /*
288 * We get here in the unlikely case that a background
289 * request was allocated but not sent
290 */
291 spin_lock(&fc->lock);
292 if (!fc->blocked)
293 wake_up(&fc->blocked_waitq);
294 spin_unlock(&fc->lock);
295 }
296
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200297 if (test_bit(FR_WAITING, &req->flags)) {
298 __clear_bit(FR_WAITING, &req->flags);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200299 atomic_dec(&fc->num_waiting);
Miklos Szeredi73e0e732015-07-01 16:25:56 +0200300 }
Miklos Szeredi33649c92006-06-25 05:48:52 -0700301
302 if (req->stolen_file)
303 put_reserved_req(fc, req);
304 else
305 fuse_request_free(req);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800306 }
307}
Tejun Heo08cbf542009-04-14 10:54:53 +0900308EXPORT_SYMBOL_GPL(fuse_put_request);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800309
Miklos Szeredid12def12008-02-06 01:38:39 -0800310static unsigned len_args(unsigned numargs, struct fuse_arg *args)
311{
312 unsigned nbytes = 0;
313 unsigned i;
314
315 for (i = 0; i < numargs; i++)
316 nbytes += args[i].size;
317
318 return nbytes;
319}
320
Miklos Szeredif88996a2015-07-01 16:26:01 +0200321static u64 fuse_get_unique(struct fuse_iqueue *fiq)
Miklos Szeredid12def12008-02-06 01:38:39 -0800322{
Miklos Szeredif88996a2015-07-01 16:26:01 +0200323 return ++fiq->reqctr;
Miklos Szeredid12def12008-02-06 01:38:39 -0800324}
325
Miklos Szeredif88996a2015-07-01 16:26:01 +0200326static void queue_request(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800327{
Miklos Szeredid12def12008-02-06 01:38:39 -0800328 req->in.h.len = sizeof(struct fuse_in_header) +
329 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200330 list_add_tail(&req->list, &fiq->pending);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200331 wake_up_locked(&fiq->waitq);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200332 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredid12def12008-02-06 01:38:39 -0800333}
334
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100335void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
336 u64 nodeid, u64 nlookup)
337{
Miklos Szeredif88996a2015-07-01 16:26:01 +0200338 struct fuse_iqueue *fiq = &fc->iq;
339
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100340 forget->forget_one.nodeid = nodeid;
341 forget->forget_one.nlookup = nlookup;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100342
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200343 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200344 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200345 fiq->forget_list_tail->next = forget;
346 fiq->forget_list_tail = forget;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200347 wake_up_locked(&fiq->waitq);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200348 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200349 } else {
350 kfree(forget);
351 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200352 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100353}
354
Miklos Szeredid12def12008-02-06 01:38:39 -0800355static void flush_bg_queue(struct fuse_conn *fc)
356{
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700357 while (fc->active_background < fc->max_background &&
Miklos Szeredid12def12008-02-06 01:38:39 -0800358 !list_empty(&fc->bg_queue)) {
359 struct fuse_req *req;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200360 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredid12def12008-02-06 01:38:39 -0800361
362 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
363 list_del(&req->list);
364 fc->active_background++;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200365 spin_lock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200366 req->in.h.unique = fuse_get_unique(fiq);
367 queue_request(fiq, req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200368 spin_unlock(&fiq->waitq.lock);
Miklos Szeredid12def12008-02-06 01:38:39 -0800369 }
370}
371
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200372/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700373 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700374 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800375 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700376 * was closed. The requester thread is woken up (if still waiting),
377 * the 'end' callback is called if given, else the reference to the
378 * request is released
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800379 *
Miklos Szeredid7133112006-04-10 22:54:55 -0700380 * Called with fc->lock, unlocks it
Miklos Szeredi334f4852005-09-09 13:10:27 -0700381 */
382static void request_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200383__releases(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700384{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200385 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700386 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
387 req->end = NULL;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200388 list_del_init(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200389 spin_lock(&fiq->waitq.lock);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200390 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200391 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200392 WARN_ON(test_bit(FR_PENDING, &req->flags));
393 WARN_ON(test_bit(FR_SENT, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200394 smp_wmb();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200395 set_bit(FR_FINISHED, &req->flags);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200396 if (test_bit(FR_BACKGROUND, &req->flags)) {
397 clear_bit(FR_BACKGROUND, &req->flags);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400398 if (fc->num_background == fc->max_background)
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700399 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400400
401 /* Wake up next waiter, if any */
Miklos Szeredi3c18ef82013-04-17 21:50:58 +0200402 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400403 wake_up(&fc->blocked_waitq);
404
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700405 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900406 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200407 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
408 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700409 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700410 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800411 fc->active_background--;
412 flush_bg_queue(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700413 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700414 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700415 wake_up(&req->waitq);
416 if (end)
417 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100418 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700419}
420
Miklos Szeredif88996a2015-07-01 16:26:01 +0200421static void queue_interrupt(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700422{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200423 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200424 if (list_empty(&req->intr_entry)) {
425 list_add_tail(&req->intr_entry, &fiq->interrupts);
426 wake_up_locked(&fiq->waitq);
427 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200428 spin_unlock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200429 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700430}
431
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700432static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700433{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200434 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic4775262015-07-01 16:26:00 +0200435 int err;
436
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700437 if (!fc->no_interrupt) {
438 /* Any signal may interrupt this */
Miklos Szeredic4775262015-07-01 16:26:00 +0200439 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200440 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200441 if (!err)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700442 return;
443
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200444 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200445 /* matches barrier in fuse_dev_do_read() */
446 smp_mb__after_atomic();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200447 if (test_bit(FR_SENT, &req->flags))
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200448 queue_interrupt(fiq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700449 }
450
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200451 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700452 sigset_t oldset;
453
454 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700455 block_sigs(&oldset);
Miklos Szeredic4775262015-07-01 16:26:00 +0200456 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200457 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700458 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700459
Miklos Szeredic4775262015-07-01 16:26:00 +0200460 if (!err)
Miklos Szeredia131de02007-10-16 23:31:04 -0700461 return;
462
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200463 spin_lock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700464 /* Request is not yet in userspace, bail out */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200465 if (test_bit(FR_PENDING, &req->flags)) {
Miklos Szeredia131de02007-10-16 23:31:04 -0700466 list_del(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200467 spin_unlock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700468 __fuse_put_request(req);
469 req->out.h.error = -EINTR;
470 return;
471 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200472 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700473 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700474
Miklos Szeredia131de02007-10-16 23:31:04 -0700475 /*
476 * Either request is already in userspace, or it was forced.
477 * Wait it out.
478 */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200479 wait_event(req->waitq, test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi334f4852005-09-09 13:10:27 -0700480}
481
Eric Wong6a4e9222013-02-04 13:04:44 +0000482static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700483{
Miklos Szeredie16714d2015-07-01 16:26:01 +0200484 struct fuse_iqueue *fiq = &fc->iq;
485
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200486 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200487 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200488 if (!fiq->connected) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200489 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700490 req->out.h.error = -ENOTCONN;
Miklos Szeredic4775262015-07-01 16:26:00 +0200491 } else {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200492 req->in.h.unique = fuse_get_unique(fiq);
493 queue_request(fiq, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700494 /* acquire extra reference, since request is still needed
495 after request_end() */
496 __fuse_get_request(req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200497 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700498
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700499 request_wait_answer(fc, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200500 /* Pairs with smp_wmb() in request_end() */
501 smp_rmb();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700502 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700503}
Eric Wong6a4e9222013-02-04 13:04:44 +0000504
505void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
506{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200507 __set_bit(FR_ISREPLY, &req->flags);
508 if (!test_bit(FR_WAITING, &req->flags)) {
509 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200510 atomic_inc(&fc->num_waiting);
511 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000512 __fuse_request_send(fc, req);
513}
Tejun Heo08cbf542009-04-14 10:54:53 +0900514EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700515
Miklos Szeredi21f62172015-01-06 10:45:35 +0100516static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
517{
518 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
519 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
520
521 if (fc->minor < 9) {
522 switch (args->in.h.opcode) {
523 case FUSE_LOOKUP:
524 case FUSE_CREATE:
525 case FUSE_MKNOD:
526 case FUSE_MKDIR:
527 case FUSE_SYMLINK:
528 case FUSE_LINK:
529 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
530 break;
531 case FUSE_GETATTR:
532 case FUSE_SETATTR:
533 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
534 break;
535 }
536 }
537 if (fc->minor < 12) {
538 switch (args->in.h.opcode) {
539 case FUSE_CREATE:
540 args->in.args[0].size = sizeof(struct fuse_open_in);
541 break;
542 case FUSE_MKNOD:
543 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
544 break;
545 }
546 }
547}
548
Miklos Szeredi70781872014-12-12 09:49:05 +0100549ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
550{
551 struct fuse_req *req;
552 ssize_t ret;
553
554 req = fuse_get_req(fc, 0);
555 if (IS_ERR(req))
556 return PTR_ERR(req);
557
Miklos Szeredi21f62172015-01-06 10:45:35 +0100558 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
559 fuse_adjust_compat(fc, args);
560
Miklos Szeredi70781872014-12-12 09:49:05 +0100561 req->in.h.opcode = args->in.h.opcode;
562 req->in.h.nodeid = args->in.h.nodeid;
563 req->in.numargs = args->in.numargs;
564 memcpy(req->in.args, args->in.args,
565 args->in.numargs * sizeof(struct fuse_in_arg));
566 req->out.argvar = args->out.argvar;
567 req->out.numargs = args->out.numargs;
568 memcpy(req->out.args, args->out.args,
569 args->out.numargs * sizeof(struct fuse_arg));
570 fuse_request_send(fc, req);
571 ret = req->out.h.error;
572 if (!ret && args->out.argvar) {
573 BUG_ON(args->out.numargs != 1);
574 ret = req->out.args[0].size;
575 }
576 fuse_put_request(fc, req);
577
578 return ret;
579}
580
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200581/*
582 * Called under fc->lock
583 *
584 * fc->connected must have been checked previously
585 */
586void fuse_request_send_background_locked(struct fuse_conn *fc,
587 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800588{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200589 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
590 if (!test_bit(FR_WAITING, &req->flags)) {
591 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200592 atomic_inc(&fc->num_waiting);
593 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200594 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800595 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700596 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800597 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700598 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900599 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200600 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
601 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800602 }
603 list_add_tail(&req->list, &fc->bg_queue);
604 flush_bg_queue(fc);
605}
606
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200607void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700608{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200609 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700610 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700611 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200612 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700613 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700614 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200615 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700616 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200617 req->end(fc, req);
618 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700619 }
620}
Tejun Heo08cbf542009-04-14 10:54:53 +0900621EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700622
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200623static int fuse_request_send_notify_reply(struct fuse_conn *fc,
624 struct fuse_req *req, u64 unique)
625{
626 int err = -ENODEV;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200627 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200628
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200629 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200630 req->in.h.unique = unique;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200631 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200632 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200633 queue_request(fiq, req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200634 err = 0;
635 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200636 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200637
638 return err;
639}
640
Anand V. Avati0b05b182012-08-19 08:53:23 -0400641void fuse_force_forget(struct file *file, u64 nodeid)
642{
Al Viro6131ffa2013-02-27 16:59:05 -0500643 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400644 struct fuse_conn *fc = get_fuse_conn(inode);
645 struct fuse_req *req;
646 struct fuse_forget_in inarg;
647
648 memset(&inarg, 0, sizeof(inarg));
649 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400650 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400651 req->in.h.opcode = FUSE_FORGET;
652 req->in.h.nodeid = nodeid;
653 req->in.numargs = 1;
654 req->in.args[0].size = sizeof(inarg);
655 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200656 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000657 __fuse_request_send(fc, req);
658 /* ignore errors */
659 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400660}
661
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700662/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700663 * Lock the request. Up to the next unlock_request() there mustn't be
664 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700665 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700666 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200667static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700668{
669 int err = 0;
670 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200671 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200672 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700673 err = -ENOENT;
674 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200675 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200676 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700677 }
678 return err;
679}
680
681/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200682 * Unlock request. If it was aborted while locked, caller is responsible
683 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700684 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200685static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700686{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200687 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700688 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200689 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200690 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200691 err = -ENOENT;
692 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200693 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200694 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700695 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200696 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700697}
698
699struct fuse_copy_state {
700 int write;
701 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400702 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200703 struct pipe_buffer *pipebufs;
704 struct pipe_buffer *currbuf;
705 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700706 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700707 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700708 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200709 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200710 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700711};
712
Miklos Szeredidc008092015-07-01 16:25:58 +0200713static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400714 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700715{
716 memset(cs, 0, sizeof(*cs));
717 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400718 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700719}
720
721/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800722static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700723{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200724 if (cs->currbuf) {
725 struct pipe_buffer *buf = cs->currbuf;
726
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200727 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200728 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200729 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200730 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700731 if (cs->write) {
732 flush_dcache_page(cs->pg);
733 set_page_dirty_lock(cs->pg);
734 }
735 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700736 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200737 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700738}
739
740/*
741 * Get another pagefull of userspace buffer, and map it to kernel
742 * address space, and lock request
743 */
744static int fuse_copy_fill(struct fuse_copy_state *cs)
745{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200746 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700747 int err;
748
Miklos Szeredidc008092015-07-01 16:25:58 +0200749 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200750 if (err)
751 return err;
752
Miklos Szeredi334f4852005-09-09 13:10:27 -0700753 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200754 if (cs->pipebufs) {
755 struct pipe_buffer *buf = cs->pipebufs;
756
Miklos Szeredic3021622010-05-25 15:06:07 +0200757 if (!cs->write) {
758 err = buf->ops->confirm(cs->pipe, buf);
759 if (err)
760 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200761
Miklos Szeredic3021622010-05-25 15:06:07 +0200762 BUG_ON(!cs->nr_segs);
763 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200764 cs->pg = buf->page;
765 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200766 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200767 cs->pipebufs++;
768 cs->nr_segs--;
769 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200770 if (cs->nr_segs == cs->pipe->buffers)
771 return -EIO;
772
773 page = alloc_page(GFP_HIGHUSER);
774 if (!page)
775 return -ENOMEM;
776
777 buf->page = page;
778 buf->offset = 0;
779 buf->len = 0;
780
781 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200782 cs->pg = page;
783 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200784 cs->len = PAGE_SIZE;
785 cs->pipebufs++;
786 cs->nr_segs++;
787 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200788 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400789 size_t off;
790 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200791 if (err < 0)
792 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400793 BUG_ON(!err);
794 cs->len = err;
795 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200796 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400797 cs->offset = off;
798 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700799 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700800
Miklos Szeredidc008092015-07-01 16:25:58 +0200801 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700802}
803
804/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800805static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700806{
807 unsigned ncpy = min(*size, cs->len);
808 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200809 void *pgaddr = kmap_atomic(cs->pg);
810 void *buf = pgaddr + cs->offset;
811
Miklos Szeredi334f4852005-09-09 13:10:27 -0700812 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200813 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700814 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200815 memcpy(*val, buf, ncpy);
816
817 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700818 *val += ncpy;
819 }
820 *size -= ncpy;
821 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200822 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700823 return ncpy;
824}
825
Miklos Szeredice534fb2010-05-25 15:06:07 +0200826static int fuse_check_page(struct page *page)
827{
828 if (page_mapcount(page) ||
829 page->mapping != NULL ||
830 page_count(page) != 1 ||
831 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
832 ~(1 << PG_locked |
833 1 << PG_referenced |
834 1 << PG_uptodate |
835 1 << PG_lru |
836 1 << PG_active |
837 1 << PG_reclaim))) {
838 printk(KERN_WARNING "fuse: trying to steal weird page\n");
839 printk(KERN_WARNING " page=%p index=%li flags=%08lx, count=%i, mapcount=%i, mapping=%p\n", page, page->index, page->flags, page_count(page), page_mapcount(page), page->mapping);
840 return 1;
841 }
842 return 0;
843}
844
845static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
846{
847 int err;
848 struct page *oldpage = *pagep;
849 struct page *newpage;
850 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200851
Miklos Szeredidc008092015-07-01 16:25:58 +0200852 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200853 if (err)
854 return err;
855
Miklos Szeredice534fb2010-05-25 15:06:07 +0200856 fuse_copy_finish(cs);
857
858 err = buf->ops->confirm(cs->pipe, buf);
859 if (err)
860 return err;
861
862 BUG_ON(!cs->nr_segs);
863 cs->currbuf = buf;
864 cs->len = buf->len;
865 cs->pipebufs++;
866 cs->nr_segs--;
867
868 if (cs->len != PAGE_SIZE)
869 goto out_fallback;
870
871 if (buf->ops->steal(cs->pipe, buf) != 0)
872 goto out_fallback;
873
874 newpage = buf->page;
875
Miklos Szerediaa991b32015-02-26 11:45:47 +0100876 if (!PageUptodate(newpage))
877 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200878
879 ClearPageMappedToDisk(newpage);
880
881 if (fuse_check_page(newpage) != 0)
882 goto out_fallback_unlock;
883
Miklos Szeredice534fb2010-05-25 15:06:07 +0200884 /*
885 * This is a new and locked page, it shouldn't be mapped or
886 * have any special flags on it
887 */
888 if (WARN_ON(page_mapped(oldpage)))
889 goto out_fallback_unlock;
890 if (WARN_ON(page_has_private(oldpage)))
891 goto out_fallback_unlock;
892 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
893 goto out_fallback_unlock;
894 if (WARN_ON(PageMlocked(oldpage)))
895 goto out_fallback_unlock;
896
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700897 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200898 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700899 unlock_page(newpage);
900 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200901 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700902
Miklos Szeredice534fb2010-05-25 15:06:07 +0200903 page_cache_get(newpage);
904
905 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
906 lru_cache_add_file(newpage);
907
908 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200909 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200910 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200911 err = -ENOENT;
912 else
913 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200914 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200915
916 if (err) {
917 unlock_page(newpage);
918 page_cache_release(newpage);
919 return err;
920 }
921
922 unlock_page(oldpage);
923 page_cache_release(oldpage);
924 cs->len = 0;
925
926 return 0;
927
928out_fallback_unlock:
929 unlock_page(newpage);
930out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200931 cs->pg = buf->page;
932 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200933
Miklos Szeredidc008092015-07-01 16:25:58 +0200934 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200935 if (err)
936 return err;
937
938 return 1;
939}
940
Miklos Szeredic3021622010-05-25 15:06:07 +0200941static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
942 unsigned offset, unsigned count)
943{
944 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200945 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200946
947 if (cs->nr_segs == cs->pipe->buffers)
948 return -EIO;
949
Miklos Szeredidc008092015-07-01 16:25:58 +0200950 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200951 if (err)
952 return err;
953
Miklos Szeredic3021622010-05-25 15:06:07 +0200954 fuse_copy_finish(cs);
955
956 buf = cs->pipebufs;
957 page_cache_get(page);
958 buf->page = page;
959 buf->offset = offset;
960 buf->len = count;
961
962 cs->pipebufs++;
963 cs->nr_segs++;
964 cs->len = 0;
965
966 return 0;
967}
968
Miklos Szeredi334f4852005-09-09 13:10:27 -0700969/*
970 * Copy a page in the request to/from the userspace buffer. Must be
971 * done atomically
972 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200973static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800974 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700975{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200976 int err;
977 struct page *page = *pagep;
978
Miklos Szeredib6777c42010-10-26 14:22:27 -0700979 if (page && zeroing && count < PAGE_SIZE)
980 clear_highpage(page);
981
Miklos Szeredi334f4852005-09-09 13:10:27 -0700982 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200983 if (cs->write && cs->pipebufs && page) {
984 return fuse_ref_page(cs, page, offset, count);
985 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200986 if (cs->move_pages && page &&
987 offset == 0 && count == PAGE_SIZE) {
988 err = fuse_try_move_page(cs, pagep);
989 if (err <= 0)
990 return err;
991 } else {
992 err = fuse_copy_fill(cs);
993 if (err)
994 return err;
995 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100996 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700997 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800998 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700999 void *buf = mapaddr + offset;
1000 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +08001001 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001002 } else
1003 offset += fuse_copy_do(cs, NULL, &count);
1004 }
1005 if (page && !cs->write)
1006 flush_dcache_page(page);
1007 return 0;
1008}
1009
1010/* Copy pages in the request to/from userspace buffer */
1011static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
1012 int zeroing)
1013{
1014 unsigned i;
1015 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001016
1017 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +02001018 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001019 unsigned offset = req->page_descs[i].offset;
1020 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001021
1022 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1023 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001024 if (err)
1025 return err;
1026
1027 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001028 }
1029 return 0;
1030}
1031
1032/* Copy a single argument in the request to/from userspace buffer */
1033static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1034{
1035 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001036 if (!cs->len) {
1037 int err = fuse_copy_fill(cs);
1038 if (err)
1039 return err;
1040 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001041 fuse_copy_do(cs, &val, &size);
1042 }
1043 return 0;
1044}
1045
1046/* Copy request arguments to/from userspace buffer */
1047static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1048 unsigned argpages, struct fuse_arg *args,
1049 int zeroing)
1050{
1051 int err = 0;
1052 unsigned i;
1053
1054 for (i = 0; !err && i < numargs; i++) {
1055 struct fuse_arg *arg = &args[i];
1056 if (i == numargs - 1 && argpages)
1057 err = fuse_copy_pages(cs, arg->size, zeroing);
1058 else
1059 err = fuse_copy_one(cs, arg->value, arg->size);
1060 }
1061 return err;
1062}
1063
Miklos Szeredif88996a2015-07-01 16:26:01 +02001064static int forget_pending(struct fuse_iqueue *fiq)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001065{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001066 return fiq->forget_list_head.next != NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001067}
1068
Miklos Szeredif88996a2015-07-01 16:26:01 +02001069static int request_pending(struct fuse_iqueue *fiq)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001070{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001071 return !list_empty(&fiq->pending) || !list_empty(&fiq->interrupts) ||
1072 forget_pending(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001073}
1074
Miklos Szeredi334f4852005-09-09 13:10:27 -07001075/* Wait until a request is available on the pending list */
Miklos Szeredifd22d622015-07-01 16:26:03 +02001076static void request_wait(struct fuse_iqueue *fiq)
1077__releases(fiq->waitq.lock)
1078__acquires(fiq->waitq.lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001079{
1080 DECLARE_WAITQUEUE(wait, current);
1081
Miklos Szeredif88996a2015-07-01 16:26:01 +02001082 add_wait_queue_exclusive(&fiq->waitq, &wait);
Miklos Szeredie16714d2015-07-01 16:26:01 +02001083 while (fiq->connected && !request_pending(fiq)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001084 set_current_state(TASK_INTERRUPTIBLE);
1085 if (signal_pending(current))
1086 break;
1087
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001088 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001089 schedule();
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001090 spin_lock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001091 }
1092 set_current_state(TASK_RUNNING);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001093 remove_wait_queue(&fiq->waitq, &wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001094}
1095
1096/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001097 * Transfer an interrupt request to userspace
1098 *
1099 * Unlike other requests this is assembled on demand, without a need
1100 * to allocate a separate fuse_req structure.
1101 *
Miklos Szeredifd22d622015-07-01 16:26:03 +02001102 * Called with fiq->waitq.lock held, releases it
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001103 */
Miklos Szeredifd22d622015-07-01 16:26:03 +02001104static int fuse_read_interrupt(struct fuse_iqueue *fiq,
1105 struct fuse_copy_state *cs,
Miklos Szeredic3021622010-05-25 15:06:07 +02001106 size_t nbytes, struct fuse_req *req)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001107__releases(fiq->waitq.lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001108{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001109 struct fuse_in_header ih;
1110 struct fuse_interrupt_in arg;
1111 unsigned reqsize = sizeof(ih) + sizeof(arg);
1112 int err;
1113
1114 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001115 req->intr_unique = fuse_get_unique(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001116 memset(&ih, 0, sizeof(ih));
1117 memset(&arg, 0, sizeof(arg));
1118 ih.len = reqsize;
1119 ih.opcode = FUSE_INTERRUPT;
1120 ih.unique = req->intr_unique;
1121 arg.unique = req->in.h.unique;
1122
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001123 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001124 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001125 return -EINVAL;
1126
Miklos Szeredic3021622010-05-25 15:06:07 +02001127 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001128 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001129 err = fuse_copy_one(cs, &arg, sizeof(arg));
1130 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001131
1132 return err ? err : reqsize;
1133}
1134
Miklos Szeredif88996a2015-07-01 16:26:01 +02001135static struct fuse_forget_link *dequeue_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001136 unsigned max,
1137 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001138{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001139 struct fuse_forget_link *head = fiq->forget_list_head.next;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001140 struct fuse_forget_link **newhead = &head;
1141 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001142
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001143 for (count = 0; *newhead != NULL && count < max; count++)
1144 newhead = &(*newhead)->next;
1145
Miklos Szeredif88996a2015-07-01 16:26:01 +02001146 fiq->forget_list_head.next = *newhead;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001147 *newhead = NULL;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001148 if (fiq->forget_list_head.next == NULL)
1149 fiq->forget_list_tail = &fiq->forget_list_head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001150
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001151 if (countp != NULL)
1152 *countp = count;
1153
1154 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001155}
1156
Miklos Szeredifd22d622015-07-01 16:26:03 +02001157static int fuse_read_single_forget(struct fuse_iqueue *fiq,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001158 struct fuse_copy_state *cs,
1159 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001160__releases(fiq->waitq.lock)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001161{
1162 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001163 struct fuse_forget_link *forget = dequeue_forget(fiq, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001164 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001165 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001166 };
1167 struct fuse_in_header ih = {
1168 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001169 .nodeid = forget->forget_one.nodeid,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001170 .unique = fuse_get_unique(fiq),
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001171 .len = sizeof(ih) + sizeof(arg),
1172 };
1173
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001174 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001175 kfree(forget);
1176 if (nbytes < ih.len)
1177 return -EINVAL;
1178
1179 err = fuse_copy_one(cs, &ih, sizeof(ih));
1180 if (!err)
1181 err = fuse_copy_one(cs, &arg, sizeof(arg));
1182 fuse_copy_finish(cs);
1183
1184 if (err)
1185 return err;
1186
1187 return ih.len;
1188}
1189
Miklos Szeredifd22d622015-07-01 16:26:03 +02001190static int fuse_read_batch_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001191 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001192__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001193{
1194 int err;
1195 unsigned max_forgets;
1196 unsigned count;
1197 struct fuse_forget_link *head;
1198 struct fuse_batch_forget_in arg = { .count = 0 };
1199 struct fuse_in_header ih = {
1200 .opcode = FUSE_BATCH_FORGET,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001201 .unique = fuse_get_unique(fiq),
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001202 .len = sizeof(ih) + sizeof(arg),
1203 };
1204
1205 if (nbytes < ih.len) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001206 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001207 return -EINVAL;
1208 }
1209
1210 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001211 head = dequeue_forget(fiq, max_forgets, &count);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001212 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001213
1214 arg.count = count;
1215 ih.len += count * sizeof(struct fuse_forget_one);
1216 err = fuse_copy_one(cs, &ih, sizeof(ih));
1217 if (!err)
1218 err = fuse_copy_one(cs, &arg, sizeof(arg));
1219
1220 while (head) {
1221 struct fuse_forget_link *forget = head;
1222
1223 if (!err) {
1224 err = fuse_copy_one(cs, &forget->forget_one,
1225 sizeof(forget->forget_one));
1226 }
1227 head = forget->next;
1228 kfree(forget);
1229 }
1230
1231 fuse_copy_finish(cs);
1232
1233 if (err)
1234 return err;
1235
1236 return ih.len;
1237}
1238
Miklos Szeredifd22d622015-07-01 16:26:03 +02001239static int fuse_read_forget(struct fuse_conn *fc, struct fuse_iqueue *fiq,
1240 struct fuse_copy_state *cs,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001241 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001242__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001243{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001244 if (fc->minor < 16 || fiq->forget_list_head.next->next == NULL)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001245 return fuse_read_single_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001246 else
Miklos Szeredifd22d622015-07-01 16:26:03 +02001247 return fuse_read_batch_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001248}
1249
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001250/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001251 * Read a single request into the userspace filesystem's buffer. This
1252 * function waits until a request is available, then removes it from
1253 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001254 * no reply is needed (FORGET) or request has been aborted or there
1255 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001256 * request_end(). Otherwise add it to the processing list, and set
1257 * the 'sent' flag.
1258 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001259static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1260 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001261{
1262 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001263 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001264 struct fuse_req *req;
1265 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001266 unsigned reqsize;
1267
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001268 restart:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001269 spin_lock(&fiq->waitq.lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001270 err = -EAGAIN;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001271 if ((file->f_flags & O_NONBLOCK) && fiq->connected &&
Miklos Szeredif88996a2015-07-01 16:26:01 +02001272 !request_pending(fiq))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001273 goto err_unlock;
1274
Miklos Szeredifd22d622015-07-01 16:26:03 +02001275 request_wait(fiq);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001276 err = -ENODEV;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001277 if (!fiq->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001278 goto err_unlock;
1279 err = -ERESTARTSYS;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001280 if (!request_pending(fiq))
Miklos Szeredi334f4852005-09-09 13:10:27 -07001281 goto err_unlock;
1282
Miklos Szeredif88996a2015-07-01 16:26:01 +02001283 if (!list_empty(&fiq->interrupts)) {
1284 req = list_entry(fiq->interrupts.next, struct fuse_req,
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001285 intr_entry);
Miklos Szeredifd22d622015-07-01 16:26:03 +02001286 return fuse_read_interrupt(fiq, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001287 }
1288
Miklos Szeredif88996a2015-07-01 16:26:01 +02001289 if (forget_pending(fiq)) {
1290 if (list_empty(&fiq->pending) || fiq->forget_batch-- > 0)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001291 return fuse_read_forget(fc, fiq, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001292
Miklos Szeredif88996a2015-07-01 16:26:01 +02001293 if (fiq->forget_batch <= -8)
1294 fiq->forget_batch = 16;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001295 }
1296
Miklos Szeredif88996a2015-07-01 16:26:01 +02001297 req = list_entry(fiq->pending.next, struct fuse_req, list);
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001298 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredief759252015-07-01 16:26:02 +02001299 list_del_init(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001300 spin_unlock(&fiq->waitq.lock);
1301
Miklos Szeredifd22d622015-07-01 16:26:03 +02001302 spin_lock(&fc->lock);
Miklos Szeredief759252015-07-01 16:26:02 +02001303 list_add(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001304
1305 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001306 reqsize = in->h.len;
1307 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001308 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001309 req->out.h.error = -EIO;
1310 /* SETXATTR is special, since it may contain too large data */
1311 if (in->h.opcode == FUSE_SETXATTR)
1312 req->out.h.error = -E2BIG;
1313 request_end(fc, req);
1314 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001315 }
Miklos Szeredid7133112006-04-10 22:54:55 -07001316 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001317 cs->req = req;
1318 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001319 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001320 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001321 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001322 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001323 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001324 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001325 if (!fc->connected) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001326 request_end(fc, req);
1327 return -ENODEV;
1328 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001329 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001330 req->out.h.error = -EIO;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001331 request_end(fc, req);
1332 return err;
1333 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001334 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001335 request_end(fc, req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001336 } else {
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001337 list_move_tail(&req->list, &fc->processing);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +02001338 set_bit(FR_SENT, &req->flags);
1339 /* matches barrier in request_wait_answer() */
1340 smp_mb__after_atomic();
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001341 if (test_bit(FR_INTERRUPTED, &req->flags))
Miklos Szeredif88996a2015-07-01 16:26:01 +02001342 queue_interrupt(fiq, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001343 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001344 }
1345 return reqsize;
1346
1347 err_unlock:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001348 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001349 return err;
1350}
1351
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001352static int fuse_dev_open(struct inode *inode, struct file *file)
1353{
1354 /*
1355 * The fuse device's file's private_data is used to hold
1356 * the fuse_conn(ection) when it is mounted, and is used to
1357 * keep track of whether the file has been mounted already.
1358 */
1359 file->private_data = NULL;
1360 return 0;
1361}
1362
Al Virofbdbacc2015-04-03 21:53:39 -04001363static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001364{
1365 struct fuse_copy_state cs;
1366 struct file *file = iocb->ki_filp;
1367 struct fuse_conn *fc = fuse_get_conn(file);
1368 if (!fc)
1369 return -EPERM;
1370
Al Virofbdbacc2015-04-03 21:53:39 -04001371 if (!iter_is_iovec(to))
1372 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001373
Miklos Szeredidc008092015-07-01 16:25:58 +02001374 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001375
1376 return fuse_dev_do_read(fc, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001377}
1378
Miklos Szeredic3021622010-05-25 15:06:07 +02001379static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1380 struct pipe_inode_info *pipe,
1381 size_t len, unsigned int flags)
1382{
1383 int ret;
1384 int page_nr = 0;
1385 int do_wakeup = 0;
1386 struct pipe_buffer *bufs;
1387 struct fuse_copy_state cs;
1388 struct fuse_conn *fc = fuse_get_conn(in);
1389 if (!fc)
1390 return -EPERM;
1391
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001392 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001393 if (!bufs)
1394 return -ENOMEM;
1395
Miklos Szeredidc008092015-07-01 16:25:58 +02001396 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001397 cs.pipebufs = bufs;
1398 cs.pipe = pipe;
1399 ret = fuse_dev_do_read(fc, in, &cs, len);
1400 if (ret < 0)
1401 goto out;
1402
1403 ret = 0;
1404 pipe_lock(pipe);
1405
1406 if (!pipe->readers) {
1407 send_sig(SIGPIPE, current, 0);
1408 if (!ret)
1409 ret = -EPIPE;
1410 goto out_unlock;
1411 }
1412
1413 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1414 ret = -EIO;
1415 goto out_unlock;
1416 }
1417
1418 while (page_nr < cs.nr_segs) {
1419 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1420 struct pipe_buffer *buf = pipe->bufs + newbuf;
1421
1422 buf->page = bufs[page_nr].page;
1423 buf->offset = bufs[page_nr].offset;
1424 buf->len = bufs[page_nr].len;
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001425 /*
1426 * Need to be careful about this. Having buf->ops in module
1427 * code can Oops if the buffer persists after module unload.
1428 */
1429 buf->ops = &nosteal_pipe_buf_ops;
Miklos Szeredic3021622010-05-25 15:06:07 +02001430
1431 pipe->nrbufs++;
1432 page_nr++;
1433 ret += buf->len;
1434
Al Viro6447a3c2013-03-21 11:01:38 -04001435 if (pipe->files)
Miklos Szeredic3021622010-05-25 15:06:07 +02001436 do_wakeup = 1;
1437 }
1438
1439out_unlock:
1440 pipe_unlock(pipe);
1441
1442 if (do_wakeup) {
1443 smp_mb();
1444 if (waitqueue_active(&pipe->wait))
1445 wake_up_interruptible(&pipe->wait);
1446 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1447 }
1448
1449out:
1450 for (; page_nr < cs.nr_segs; page_nr++)
1451 page_cache_release(bufs[page_nr].page);
1452
1453 kfree(bufs);
1454 return ret;
1455}
1456
Tejun Heo95668a62008-11-26 12:03:55 +01001457static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1458 struct fuse_copy_state *cs)
1459{
1460 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001461 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001462
1463 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001464 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001465
1466 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1467 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001468 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001469
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001470 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001471 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001472
1473err:
1474 fuse_copy_finish(cs);
1475 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001476}
1477
John Muir3b463ae2009-05-31 11:13:57 -04001478static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1479 struct fuse_copy_state *cs)
1480{
1481 struct fuse_notify_inval_inode_out outarg;
1482 int err = -EINVAL;
1483
1484 if (size != sizeof(outarg))
1485 goto err;
1486
1487 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1488 if (err)
1489 goto err;
1490 fuse_copy_finish(cs);
1491
1492 down_read(&fc->killsb);
1493 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001494 if (fc->sb) {
1495 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1496 outarg.off, outarg.len);
1497 }
John Muir3b463ae2009-05-31 11:13:57 -04001498 up_read(&fc->killsb);
1499 return err;
1500
1501err:
1502 fuse_copy_finish(cs);
1503 return err;
1504}
1505
1506static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1507 struct fuse_copy_state *cs)
1508{
1509 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001510 int err = -ENOMEM;
1511 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001512 struct qstr name;
1513
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001514 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1515 if (!buf)
1516 goto err;
1517
1518 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001519 if (size < sizeof(outarg))
1520 goto err;
1521
1522 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1523 if (err)
1524 goto err;
1525
1526 err = -ENAMETOOLONG;
1527 if (outarg.namelen > FUSE_NAME_MAX)
1528 goto err;
1529
Miklos Szeredic2183d12011-08-24 10:20:17 +02001530 err = -EINVAL;
1531 if (size != sizeof(outarg) + outarg.namelen + 1)
1532 goto err;
1533
John Muir3b463ae2009-05-31 11:13:57 -04001534 name.name = buf;
1535 name.len = outarg.namelen;
1536 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1537 if (err)
1538 goto err;
1539 fuse_copy_finish(cs);
1540 buf[outarg.namelen] = 0;
1541 name.hash = full_name_hash(name.name, name.len);
1542
1543 down_read(&fc->killsb);
1544 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001545 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001546 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1547 up_read(&fc->killsb);
1548 kfree(buf);
1549 return err;
1550
1551err:
1552 kfree(buf);
1553 fuse_copy_finish(cs);
1554 return err;
1555}
1556
1557static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1558 struct fuse_copy_state *cs)
1559{
1560 struct fuse_notify_delete_out outarg;
1561 int err = -ENOMEM;
1562 char *buf;
1563 struct qstr name;
1564
1565 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1566 if (!buf)
1567 goto err;
1568
1569 err = -EINVAL;
1570 if (size < sizeof(outarg))
1571 goto err;
1572
1573 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1574 if (err)
1575 goto err;
1576
1577 err = -ENAMETOOLONG;
1578 if (outarg.namelen > FUSE_NAME_MAX)
1579 goto err;
1580
1581 err = -EINVAL;
1582 if (size != sizeof(outarg) + outarg.namelen + 1)
1583 goto err;
1584
1585 name.name = buf;
1586 name.len = outarg.namelen;
1587 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1588 if (err)
1589 goto err;
1590 fuse_copy_finish(cs);
1591 buf[outarg.namelen] = 0;
1592 name.hash = full_name_hash(name.name, name.len);
1593
1594 down_read(&fc->killsb);
1595 err = -ENOENT;
1596 if (fc->sb)
1597 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1598 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001599 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001600 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001601 return err;
1602
1603err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001604 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001605 fuse_copy_finish(cs);
1606 return err;
1607}
1608
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001609static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1610 struct fuse_copy_state *cs)
1611{
1612 struct fuse_notify_store_out outarg;
1613 struct inode *inode;
1614 struct address_space *mapping;
1615 u64 nodeid;
1616 int err;
1617 pgoff_t index;
1618 unsigned int offset;
1619 unsigned int num;
1620 loff_t file_size;
1621 loff_t end;
1622
1623 err = -EINVAL;
1624 if (size < sizeof(outarg))
1625 goto out_finish;
1626
1627 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1628 if (err)
1629 goto out_finish;
1630
1631 err = -EINVAL;
1632 if (size - sizeof(outarg) != outarg.size)
1633 goto out_finish;
1634
1635 nodeid = outarg.nodeid;
1636
1637 down_read(&fc->killsb);
1638
1639 err = -ENOENT;
1640 if (!fc->sb)
1641 goto out_up_killsb;
1642
1643 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1644 if (!inode)
1645 goto out_up_killsb;
1646
1647 mapping = inode->i_mapping;
1648 index = outarg.offset >> PAGE_CACHE_SHIFT;
1649 offset = outarg.offset & ~PAGE_CACHE_MASK;
1650 file_size = i_size_read(inode);
1651 end = outarg.offset + outarg.size;
1652 if (end > file_size) {
1653 file_size = end;
1654 fuse_write_update_size(inode, file_size);
1655 }
1656
1657 num = outarg.size;
1658 while (num) {
1659 struct page *page;
1660 unsigned int this_num;
1661
1662 err = -ENOMEM;
1663 page = find_or_create_page(mapping, index,
1664 mapping_gfp_mask(mapping));
1665 if (!page)
1666 goto out_iput;
1667
1668 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1669 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001670 if (!err && offset == 0 &&
1671 (this_num == PAGE_CACHE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001672 SetPageUptodate(page);
1673 unlock_page(page);
1674 page_cache_release(page);
1675
1676 if (err)
1677 goto out_iput;
1678
1679 num -= this_num;
1680 offset = 0;
1681 index++;
1682 }
1683
1684 err = 0;
1685
1686out_iput:
1687 iput(inode);
1688out_up_killsb:
1689 up_read(&fc->killsb);
1690out_finish:
1691 fuse_copy_finish(cs);
1692 return err;
1693}
1694
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001695static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1696{
Mel Gormanb745bc82014-06-04 16:10:22 -07001697 release_pages(req->pages, req->num_pages, false);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001698}
1699
1700static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1701 struct fuse_notify_retrieve_out *outarg)
1702{
1703 int err;
1704 struct address_space *mapping = inode->i_mapping;
1705 struct fuse_req *req;
1706 pgoff_t index;
1707 loff_t file_size;
1708 unsigned int num;
1709 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001710 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001711 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001712
1713 offset = outarg->offset & ~PAGE_CACHE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001714 file_size = i_size_read(inode);
1715
1716 num = outarg->size;
1717 if (outarg->offset > file_size)
1718 num = 0;
1719 else if (outarg->offset + num > file_size)
1720 num = file_size - outarg->offset;
1721
1722 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1723 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1724
1725 req = fuse_get_req(fc, num_pages);
1726 if (IS_ERR(req))
1727 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001728
1729 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1730 req->in.h.nodeid = outarg->nodeid;
1731 req->in.numargs = 2;
1732 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001733 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001734 req->end = fuse_retrieve_end;
1735
1736 index = outarg->offset >> PAGE_CACHE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001737
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001738 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001739 struct page *page;
1740 unsigned int this_num;
1741
1742 page = find_get_page(mapping, index);
1743 if (!page)
1744 break;
1745
1746 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1747 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001748 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001749 req->num_pages++;
1750
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001751 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001752 num -= this_num;
1753 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001754 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001755 }
1756 req->misc.retrieve_in.offset = outarg->offset;
1757 req->misc.retrieve_in.size = total_len;
1758 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1759 req->in.args[0].value = &req->misc.retrieve_in;
1760 req->in.args[1].size = total_len;
1761
1762 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1763 if (err)
1764 fuse_retrieve_end(fc, req);
1765
1766 return err;
1767}
1768
1769static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1770 struct fuse_copy_state *cs)
1771{
1772 struct fuse_notify_retrieve_out outarg;
1773 struct inode *inode;
1774 int err;
1775
1776 err = -EINVAL;
1777 if (size != sizeof(outarg))
1778 goto copy_finish;
1779
1780 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1781 if (err)
1782 goto copy_finish;
1783
1784 fuse_copy_finish(cs);
1785
1786 down_read(&fc->killsb);
1787 err = -ENOENT;
1788 if (fc->sb) {
1789 u64 nodeid = outarg.nodeid;
1790
1791 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1792 if (inode) {
1793 err = fuse_retrieve(fc, inode, &outarg);
1794 iput(inode);
1795 }
1796 }
1797 up_read(&fc->killsb);
1798
1799 return err;
1800
1801copy_finish:
1802 fuse_copy_finish(cs);
1803 return err;
1804}
1805
Tejun Heo85993962008-11-26 12:03:55 +01001806static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1807 unsigned int size, struct fuse_copy_state *cs)
1808{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001809 /* Don't try to move pages (yet) */
1810 cs->move_pages = 0;
1811
Tejun Heo85993962008-11-26 12:03:55 +01001812 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001813 case FUSE_NOTIFY_POLL:
1814 return fuse_notify_poll(fc, size, cs);
1815
John Muir3b463ae2009-05-31 11:13:57 -04001816 case FUSE_NOTIFY_INVAL_INODE:
1817 return fuse_notify_inval_inode(fc, size, cs);
1818
1819 case FUSE_NOTIFY_INVAL_ENTRY:
1820 return fuse_notify_inval_entry(fc, size, cs);
1821
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001822 case FUSE_NOTIFY_STORE:
1823 return fuse_notify_store(fc, size, cs);
1824
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001825 case FUSE_NOTIFY_RETRIEVE:
1826 return fuse_notify_retrieve(fc, size, cs);
1827
John Muir451d0f52011-12-06 21:50:06 +01001828 case FUSE_NOTIFY_DELETE:
1829 return fuse_notify_delete(fc, size, cs);
1830
Tejun Heo85993962008-11-26 12:03:55 +01001831 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001832 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001833 return -EINVAL;
1834 }
1835}
1836
Miklos Szeredi334f4852005-09-09 13:10:27 -07001837/* Look up request on processing list by unique ID */
1838static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
1839{
Dong Fang05726ac2013-07-30 22:50:01 -04001840 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001841
Dong Fang05726ac2013-07-30 22:50:01 -04001842 list_for_each_entry(req, &fc->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001843 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001844 return req;
1845 }
1846 return NULL;
1847}
1848
1849static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1850 unsigned nbytes)
1851{
1852 unsigned reqsize = sizeof(struct fuse_out_header);
1853
1854 if (out->h.error)
1855 return nbytes != reqsize ? -EINVAL : 0;
1856
1857 reqsize += len_args(out->numargs, out->args);
1858
1859 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1860 return -EINVAL;
1861 else if (reqsize > nbytes) {
1862 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1863 unsigned diffsize = reqsize - nbytes;
1864 if (diffsize > lastarg->size)
1865 return -EINVAL;
1866 lastarg->size -= diffsize;
1867 }
1868 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1869 out->page_zeroing);
1870}
1871
1872/*
1873 * Write a single reply to a request. First the header is copied from
1874 * the write buffer. The request is then searched on the processing
1875 * list by the unique ID found in the header. If found, then remove
1876 * it from the list and copy the rest of the buffer to the request.
1877 * The request is finished by calling request_end()
1878 */
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001879static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1880 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001881{
1882 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001883 struct fuse_req *req;
1884 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001885
Miklos Szeredi334f4852005-09-09 13:10:27 -07001886 if (nbytes < sizeof(struct fuse_out_header))
1887 return -EINVAL;
1888
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001889 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001890 if (err)
1891 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001892
Miklos Szeredi334f4852005-09-09 13:10:27 -07001893 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001894 if (oh.len != nbytes)
1895 goto err_finish;
1896
1897 /*
1898 * Zero oh.unique indicates unsolicited notification message
1899 * and error contains notification code.
1900 */
1901 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001902 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001903 return err ? err : nbytes;
1904 }
1905
1906 err = -EINVAL;
1907 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001908 goto err_finish;
1909
Miklos Szeredid7133112006-04-10 22:54:55 -07001910 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001911 err = -ENOENT;
1912 if (!fc->connected)
1913 goto err_unlock;
1914
Miklos Szeredi334f4852005-09-09 13:10:27 -07001915 req = request_find(fc, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001916 if (!req)
1917 goto err_unlock;
1918
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001919 /* Is it an interrupt reply? */
1920 if (req->intr_unique == oh.unique) {
1921 err = -EINVAL;
1922 if (nbytes != sizeof(struct fuse_out_header))
1923 goto err_unlock;
1924
1925 if (oh.error == -ENOSYS)
1926 fc->no_interrupt = 1;
1927 else if (oh.error == -EAGAIN)
Miklos Szeredif88996a2015-07-01 16:26:01 +02001928 queue_interrupt(&fc->iq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001929
1930 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001931 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001932 return nbytes;
1933 }
1934
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001935 clear_bit(FR_SENT, &req->flags);
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001936 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001937 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001938 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001939 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001940 if (!req->out.page_replace)
1941 cs->move_pages = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -07001942 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001943
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001944 err = copy_out_args(cs, &req->out, nbytes);
1945 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001946
Miklos Szeredid7133112006-04-10 22:54:55 -07001947 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001948 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001949 if (!fc->connected)
1950 err = -ENOENT;
1951 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001952 req->out.h.error = -EIO;
1953 request_end(fc, req);
1954
1955 return err ? err : nbytes;
1956
1957 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001958 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001959 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001960 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001961 return err;
1962}
1963
Al Virofbdbacc2015-04-03 21:53:39 -04001964static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001965{
1966 struct fuse_copy_state cs;
1967 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1968 if (!fc)
1969 return -EPERM;
1970
Al Virofbdbacc2015-04-03 21:53:39 -04001971 if (!iter_is_iovec(from))
1972 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001973
Miklos Szeredidc008092015-07-01 16:25:58 +02001974 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001975
1976 return fuse_dev_do_write(fc, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001977}
1978
1979static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1980 struct file *out, loff_t *ppos,
1981 size_t len, unsigned int flags)
1982{
1983 unsigned nbuf;
1984 unsigned idx;
1985 struct pipe_buffer *bufs;
1986 struct fuse_copy_state cs;
1987 struct fuse_conn *fc;
1988 size_t rem;
1989 ssize_t ret;
1990
1991 fc = fuse_get_conn(out);
1992 if (!fc)
1993 return -EPERM;
1994
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001995 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001996 if (!bufs)
1997 return -ENOMEM;
1998
1999 pipe_lock(pipe);
2000 nbuf = 0;
2001 rem = 0;
2002 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
2003 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
2004
2005 ret = -EINVAL;
2006 if (rem < len) {
2007 pipe_unlock(pipe);
2008 goto out;
2009 }
2010
2011 rem = len;
2012 while (rem) {
2013 struct pipe_buffer *ibuf;
2014 struct pipe_buffer *obuf;
2015
2016 BUG_ON(nbuf >= pipe->buffers);
2017 BUG_ON(!pipe->nrbufs);
2018 ibuf = &pipe->bufs[pipe->curbuf];
2019 obuf = &bufs[nbuf];
2020
2021 if (rem >= ibuf->len) {
2022 *obuf = *ibuf;
2023 ibuf->ops = NULL;
2024 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
2025 pipe->nrbufs--;
2026 } else {
2027 ibuf->ops->get(pipe, ibuf);
2028 *obuf = *ibuf;
2029 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2030 obuf->len = rem;
2031 ibuf->offset += obuf->len;
2032 ibuf->len -= obuf->len;
2033 }
2034 nbuf++;
2035 rem -= obuf->len;
2036 }
2037 pipe_unlock(pipe);
2038
Miklos Szeredidc008092015-07-01 16:25:58 +02002039 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002040 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04002041 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002042 cs.pipe = pipe;
2043
Miklos Szeredice534fb2010-05-25 15:06:07 +02002044 if (flags & SPLICE_F_MOVE)
2045 cs.move_pages = 1;
2046
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002047 ret = fuse_dev_do_write(fc, &cs, len);
2048
2049 for (idx = 0; idx < nbuf; idx++) {
2050 struct pipe_buffer *buf = &bufs[idx];
2051 buf->ops->release(pipe, buf);
2052 }
2053out:
2054 kfree(bufs);
2055 return ret;
2056}
2057
Miklos Szeredi334f4852005-09-09 13:10:27 -07002058static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2059{
Miklos Szeredi334f4852005-09-09 13:10:27 -07002060 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002061 struct fuse_iqueue *fiq;
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002062 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002063 if (!fc)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002064 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002065
Miklos Szeredif88996a2015-07-01 16:26:01 +02002066 fiq = &fc->iq;
2067 poll_wait(file, &fiq->waitq, wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002068
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002069 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +02002070 if (!fiq->connected)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002071 mask = POLLERR;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002072 else if (request_pending(fiq))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002073 mask |= POLLIN | POLLRDNORM;
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002074 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002075
2076 return mask;
2077}
2078
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002079/*
2080 * Abort all requests on the given list (pending or processing)
2081 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002082 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002083 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002084static void end_requests(struct fuse_conn *fc, struct list_head *head)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02002085__releases(fc->lock)
2086__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002087{
2088 while (!list_empty(head)) {
2089 struct fuse_req *req;
2090 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002091 req->out.h.error = -ECONNABORTED;
Miklos Szeredi33e14b42015-07-01 16:26:01 +02002092 clear_bit(FR_PENDING, &req->flags);
2093 clear_bit(FR_SENT, &req->flags);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002094 request_end(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07002095 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002096 }
2097}
2098
Bryan Green357ccf22011-03-01 16:43:52 -08002099static void end_polls(struct fuse_conn *fc)
2100{
2101 struct rb_node *p;
2102
2103 p = rb_first(&fc->polled_files);
2104
2105 while (p) {
2106 struct fuse_file *ff;
2107 ff = rb_entry(p, struct fuse_file, polled_node);
2108 wake_up_interruptible_all(&ff->poll_wait);
2109
2110 p = rb_next(p);
2111 }
2112}
2113
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002114/*
2115 * Abort all requests.
2116 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002117 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2118 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002119 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002120 * The same effect is usually achievable through killing the filesystem daemon
2121 * and all users of the filesystem. The exception is the combination of an
2122 * asynchronous request and the tricky deadlock (see
2123 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002124 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002125 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2126 * requests, they should be finished off immediately. Locked requests will be
2127 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2128 * requests. It is possible that some request will finish before we can. This
2129 * is OK, the request will in that case be removed from the list before we touch
2130 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002131 */
2132void fuse_abort_conn(struct fuse_conn *fc)
2133{
Miklos Szeredif88996a2015-07-01 16:26:01 +02002134 struct fuse_iqueue *fiq = &fc->iq;
2135
Miklos Szeredid7133112006-04-10 22:54:55 -07002136 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002137 if (fc->connected) {
Miklos Szeredib716d422015-07-01 16:25:59 +02002138 struct fuse_req *req, *next;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002139 LIST_HEAD(to_end1);
2140 LIST_HEAD(to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002141
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002142 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002143 fc->blocked = 0;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002144 fuse_set_initialized(fc);
Miklos Szeredib716d422015-07-01 16:25:59 +02002145 list_for_each_entry_safe(req, next, &fc->io, list) {
2146 req->out.h.error = -ECONNABORTED;
2147 spin_lock(&req->waitq.lock);
2148 set_bit(FR_ABORTED, &req->flags);
2149 if (!test_bit(FR_LOCKED, &req->flags))
Miklos Szeredi41f98272015-07-01 16:25:59 +02002150 list_move(&req->list, &to_end1);
Miklos Szeredib716d422015-07-01 16:25:59 +02002151 spin_unlock(&req->waitq.lock);
2152 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002153 fc->max_background = UINT_MAX;
2154 flush_bg_queue(fc);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002155
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002156 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002157 fiq->connected = 0;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002158 list_splice_init(&fiq->pending, &to_end2);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002159 while (forget_pending(fiq))
2160 kfree(dequeue_forget(fiq, 1, NULL));
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002161 wake_up_all_locked(&fiq->waitq);
2162 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002163 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
2164
Miklos Szeredi41f98272015-07-01 16:25:59 +02002165 list_splice_init(&fc->processing, &to_end2);
2166 while (!list_empty(&to_end1)) {
2167 req = list_first_entry(&to_end1, struct fuse_req, list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002168 __fuse_get_request(req);
2169 request_end(fc, req);
2170 spin_lock(&fc->lock);
2171 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002172 end_requests(fc, &to_end2);
Bryan Green357ccf22011-03-01 16:43:52 -08002173 end_polls(fc);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002174 wake_up_all(&fc->blocked_waitq);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002175 }
Miklos Szeredid7133112006-04-10 22:54:55 -07002176 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002177}
Tejun Heo08cbf542009-04-14 10:54:53 +09002178EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002179
Tejun Heo08cbf542009-04-14 10:54:53 +09002180int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002181{
Miklos Szeredi0720b312006-04-10 22:54:55 -07002182 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002183 if (fc) {
Miklos Szerediccd0a0b2015-07-01 16:25:57 +02002184 WARN_ON(!list_empty(&fc->io));
Miklos Szeredif88996a2015-07-01 16:26:01 +02002185 WARN_ON(fc->iq.fasync != NULL);
Miklos Szerediccd0a0b2015-07-01 16:25:57 +02002186 fuse_abort_conn(fc);
Miklos Szeredibafa9652006-06-25 05:48:51 -07002187 fuse_conn_put(fc);
Jeff Dike385a17b2006-04-10 22:54:52 -07002188 }
Miklos Szeredif543f252006-01-16 22:14:35 -08002189
Miklos Szeredi334f4852005-09-09 13:10:27 -07002190 return 0;
2191}
Tejun Heo08cbf542009-04-14 10:54:53 +09002192EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002193
Jeff Dike385a17b2006-04-10 22:54:52 -07002194static int fuse_dev_fasync(int fd, struct file *file, int on)
2195{
2196 struct fuse_conn *fc = fuse_get_conn(file);
2197 if (!fc)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002198 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002199
2200 /* No locking - fasync_helper does its own locking */
Miklos Szeredif88996a2015-07-01 16:26:01 +02002201 return fasync_helper(fd, file, on, &fc->iq.fasync);
Jeff Dike385a17b2006-04-10 22:54:52 -07002202}
2203
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002204const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002205 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002206 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002207 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002208 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002209 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002210 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002211 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002212 .poll = fuse_dev_poll,
2213 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002214 .fasync = fuse_dev_fasync,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002215};
Tejun Heo08cbf542009-04-14 10:54:53 +09002216EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002217
2218static struct miscdevice fuse_miscdevice = {
2219 .minor = FUSE_MINOR,
2220 .name = "fuse",
2221 .fops = &fuse_dev_operations,
2222};
2223
2224int __init fuse_dev_init(void)
2225{
2226 int err = -ENOMEM;
2227 fuse_req_cachep = kmem_cache_create("fuse_request",
2228 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002229 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002230 if (!fuse_req_cachep)
2231 goto out;
2232
2233 err = misc_register(&fuse_miscdevice);
2234 if (err)
2235 goto out_cache_clean;
2236
2237 return 0;
2238
2239 out_cache_clean:
2240 kmem_cache_destroy(fuse_req_cachep);
2241 out:
2242 return err;
2243}
2244
2245void fuse_dev_cleanup(void)
2246{
2247 misc_deregister(&fuse_miscdevice);
2248 kmem_cache_destroy(fuse_req_cachep);
2249}