blob: 4e1144a384389576da85cf4ad8d5d18da8bc4f80 [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 Szeredi365ae712015-07-01 16:26:06 +0200386
387 if (test_and_set_bit(FR_FINISHED, &req->flags)) {
388 spin_unlock(&fc->lock);
389 return;
390 }
391
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200392 spin_lock(&fiq->waitq.lock);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200393 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200394 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200395 WARN_ON(test_bit(FR_PENDING, &req->flags));
396 WARN_ON(test_bit(FR_SENT, &req->flags));
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200397 if (test_bit(FR_BACKGROUND, &req->flags)) {
398 clear_bit(FR_BACKGROUND, &req->flags);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400399 if (fc->num_background == fc->max_background)
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700400 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400401
402 /* Wake up next waiter, if any */
Miklos Szeredi3c18ef82013-04-17 21:50:58 +0200403 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400404 wake_up(&fc->blocked_waitq);
405
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700406 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900407 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200408 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
409 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700410 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700411 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800412 fc->active_background--;
413 flush_bg_queue(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700414 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700415 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700416 wake_up(&req->waitq);
Miklos Szeredi1e6881c2015-07-01 16:26:07 +0200417 if (req->end)
418 req->end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100419 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700420}
421
Miklos Szeredif88996a2015-07-01 16:26:01 +0200422static void queue_interrupt(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700423{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200424 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200425 if (list_empty(&req->intr_entry)) {
426 list_add_tail(&req->intr_entry, &fiq->interrupts);
427 wake_up_locked(&fiq->waitq);
428 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200429 spin_unlock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200430 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700431}
432
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700433static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700434{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200435 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic4775262015-07-01 16:26:00 +0200436 int err;
437
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700438 if (!fc->no_interrupt) {
439 /* Any signal may interrupt this */
Miklos Szeredic4775262015-07-01 16:26:00 +0200440 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200441 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200442 if (!err)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700443 return;
444
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200445 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200446 /* matches barrier in fuse_dev_do_read() */
447 smp_mb__after_atomic();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200448 if (test_bit(FR_SENT, &req->flags))
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200449 queue_interrupt(fiq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700450 }
451
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200452 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700453 sigset_t oldset;
454
455 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700456 block_sigs(&oldset);
Miklos Szeredic4775262015-07-01 16:26:00 +0200457 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200458 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700459 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700460
Miklos Szeredic4775262015-07-01 16:26:00 +0200461 if (!err)
Miklos Szeredia131de02007-10-16 23:31:04 -0700462 return;
463
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200464 spin_lock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700465 /* Request is not yet in userspace, bail out */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200466 if (test_bit(FR_PENDING, &req->flags)) {
Miklos Szeredia131de02007-10-16 23:31:04 -0700467 list_del(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200468 spin_unlock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700469 __fuse_put_request(req);
470 req->out.h.error = -EINTR;
471 return;
472 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200473 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700474 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700475
Miklos Szeredia131de02007-10-16 23:31:04 -0700476 /*
477 * Either request is already in userspace, or it was forced.
478 * Wait it out.
479 */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200480 wait_event(req->waitq, test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi334f4852005-09-09 13:10:27 -0700481}
482
Eric Wong6a4e9222013-02-04 13:04:44 +0000483static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700484{
Miklos Szeredie16714d2015-07-01 16:26:01 +0200485 struct fuse_iqueue *fiq = &fc->iq;
486
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200487 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200488 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200489 if (!fiq->connected) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200490 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700491 req->out.h.error = -ENOTCONN;
Miklos Szeredic4775262015-07-01 16:26:00 +0200492 } else {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200493 req->in.h.unique = fuse_get_unique(fiq);
494 queue_request(fiq, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700495 /* acquire extra reference, since request is still needed
496 after request_end() */
497 __fuse_get_request(req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200498 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700499
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700500 request_wait_answer(fc, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200501 /* Pairs with smp_wmb() in request_end() */
502 smp_rmb();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700503 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700504}
Eric Wong6a4e9222013-02-04 13:04:44 +0000505
506void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
507{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200508 __set_bit(FR_ISREPLY, &req->flags);
509 if (!test_bit(FR_WAITING, &req->flags)) {
510 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200511 atomic_inc(&fc->num_waiting);
512 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000513 __fuse_request_send(fc, req);
514}
Tejun Heo08cbf542009-04-14 10:54:53 +0900515EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700516
Miklos Szeredi21f62172015-01-06 10:45:35 +0100517static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
518{
519 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
520 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
521
522 if (fc->minor < 9) {
523 switch (args->in.h.opcode) {
524 case FUSE_LOOKUP:
525 case FUSE_CREATE:
526 case FUSE_MKNOD:
527 case FUSE_MKDIR:
528 case FUSE_SYMLINK:
529 case FUSE_LINK:
530 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
531 break;
532 case FUSE_GETATTR:
533 case FUSE_SETATTR:
534 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
535 break;
536 }
537 }
538 if (fc->minor < 12) {
539 switch (args->in.h.opcode) {
540 case FUSE_CREATE:
541 args->in.args[0].size = sizeof(struct fuse_open_in);
542 break;
543 case FUSE_MKNOD:
544 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
545 break;
546 }
547 }
548}
549
Miklos Szeredi70781872014-12-12 09:49:05 +0100550ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
551{
552 struct fuse_req *req;
553 ssize_t ret;
554
555 req = fuse_get_req(fc, 0);
556 if (IS_ERR(req))
557 return PTR_ERR(req);
558
Miklos Szeredi21f62172015-01-06 10:45:35 +0100559 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
560 fuse_adjust_compat(fc, args);
561
Miklos Szeredi70781872014-12-12 09:49:05 +0100562 req->in.h.opcode = args->in.h.opcode;
563 req->in.h.nodeid = args->in.h.nodeid;
564 req->in.numargs = args->in.numargs;
565 memcpy(req->in.args, args->in.args,
566 args->in.numargs * sizeof(struct fuse_in_arg));
567 req->out.argvar = args->out.argvar;
568 req->out.numargs = args->out.numargs;
569 memcpy(req->out.args, args->out.args,
570 args->out.numargs * sizeof(struct fuse_arg));
571 fuse_request_send(fc, req);
572 ret = req->out.h.error;
573 if (!ret && args->out.argvar) {
574 BUG_ON(args->out.numargs != 1);
575 ret = req->out.args[0].size;
576 }
577 fuse_put_request(fc, req);
578
579 return ret;
580}
581
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200582/*
583 * Called under fc->lock
584 *
585 * fc->connected must have been checked previously
586 */
587void fuse_request_send_background_locked(struct fuse_conn *fc,
588 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800589{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200590 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
591 if (!test_bit(FR_WAITING, &req->flags)) {
592 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200593 atomic_inc(&fc->num_waiting);
594 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200595 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800596 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700597 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800598 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700599 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900600 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200601 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
602 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800603 }
604 list_add_tail(&req->list, &fc->bg_queue);
605 flush_bg_queue(fc);
606}
607
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200608void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700609{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200610 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700611 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700612 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200613 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700614 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700615 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200616 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700617 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200618 req->end(fc, req);
619 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700620 }
621}
Tejun Heo08cbf542009-04-14 10:54:53 +0900622EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700623
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200624static int fuse_request_send_notify_reply(struct fuse_conn *fc,
625 struct fuse_req *req, u64 unique)
626{
627 int err = -ENODEV;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200628 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200629
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200630 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200631 req->in.h.unique = unique;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200632 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200633 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200634 queue_request(fiq, req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200635 err = 0;
636 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200637 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200638
639 return err;
640}
641
Anand V. Avati0b05b182012-08-19 08:53:23 -0400642void fuse_force_forget(struct file *file, u64 nodeid)
643{
Al Viro6131ffa2013-02-27 16:59:05 -0500644 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400645 struct fuse_conn *fc = get_fuse_conn(inode);
646 struct fuse_req *req;
647 struct fuse_forget_in inarg;
648
649 memset(&inarg, 0, sizeof(inarg));
650 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400651 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400652 req->in.h.opcode = FUSE_FORGET;
653 req->in.h.nodeid = nodeid;
654 req->in.numargs = 1;
655 req->in.args[0].size = sizeof(inarg);
656 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200657 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000658 __fuse_request_send(fc, req);
659 /* ignore errors */
660 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400661}
662
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700663/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700664 * Lock the request. Up to the next unlock_request() there mustn't be
665 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700666 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700667 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200668static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700669{
670 int err = 0;
671 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200672 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200673 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700674 err = -ENOENT;
675 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200676 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200677 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700678 }
679 return err;
680}
681
682/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200683 * Unlock request. If it was aborted while locked, caller is responsible
684 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700685 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200686static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700687{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200688 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700689 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200690 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200691 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200692 err = -ENOENT;
693 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200694 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200695 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700696 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200697 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700698}
699
700struct fuse_copy_state {
701 int write;
702 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400703 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200704 struct pipe_buffer *pipebufs;
705 struct pipe_buffer *currbuf;
706 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700707 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700708 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700709 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200710 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200711 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700712};
713
Miklos Szeredidc008092015-07-01 16:25:58 +0200714static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400715 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700716{
717 memset(cs, 0, sizeof(*cs));
718 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400719 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700720}
721
722/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800723static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700724{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200725 if (cs->currbuf) {
726 struct pipe_buffer *buf = cs->currbuf;
727
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200728 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200729 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200730 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200731 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700732 if (cs->write) {
733 flush_dcache_page(cs->pg);
734 set_page_dirty_lock(cs->pg);
735 }
736 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700737 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200738 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700739}
740
741/*
742 * Get another pagefull of userspace buffer, and map it to kernel
743 * address space, and lock request
744 */
745static int fuse_copy_fill(struct fuse_copy_state *cs)
746{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200747 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700748 int err;
749
Miklos Szeredidc008092015-07-01 16:25:58 +0200750 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200751 if (err)
752 return err;
753
Miklos Szeredi334f4852005-09-09 13:10:27 -0700754 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200755 if (cs->pipebufs) {
756 struct pipe_buffer *buf = cs->pipebufs;
757
Miklos Szeredic3021622010-05-25 15:06:07 +0200758 if (!cs->write) {
759 err = buf->ops->confirm(cs->pipe, buf);
760 if (err)
761 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200762
Miklos Szeredic3021622010-05-25 15:06:07 +0200763 BUG_ON(!cs->nr_segs);
764 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200765 cs->pg = buf->page;
766 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200767 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200768 cs->pipebufs++;
769 cs->nr_segs--;
770 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200771 if (cs->nr_segs == cs->pipe->buffers)
772 return -EIO;
773
774 page = alloc_page(GFP_HIGHUSER);
775 if (!page)
776 return -ENOMEM;
777
778 buf->page = page;
779 buf->offset = 0;
780 buf->len = 0;
781
782 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200783 cs->pg = page;
784 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200785 cs->len = PAGE_SIZE;
786 cs->pipebufs++;
787 cs->nr_segs++;
788 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200789 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400790 size_t off;
791 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200792 if (err < 0)
793 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400794 BUG_ON(!err);
795 cs->len = err;
796 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200797 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400798 cs->offset = off;
799 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700800 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700801
Miklos Szeredidc008092015-07-01 16:25:58 +0200802 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700803}
804
805/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800806static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700807{
808 unsigned ncpy = min(*size, cs->len);
809 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200810 void *pgaddr = kmap_atomic(cs->pg);
811 void *buf = pgaddr + cs->offset;
812
Miklos Szeredi334f4852005-09-09 13:10:27 -0700813 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200814 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700815 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200816 memcpy(*val, buf, ncpy);
817
818 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700819 *val += ncpy;
820 }
821 *size -= ncpy;
822 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200823 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700824 return ncpy;
825}
826
Miklos Szeredice534fb2010-05-25 15:06:07 +0200827static int fuse_check_page(struct page *page)
828{
829 if (page_mapcount(page) ||
830 page->mapping != NULL ||
831 page_count(page) != 1 ||
832 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
833 ~(1 << PG_locked |
834 1 << PG_referenced |
835 1 << PG_uptodate |
836 1 << PG_lru |
837 1 << PG_active |
838 1 << PG_reclaim))) {
839 printk(KERN_WARNING "fuse: trying to steal weird page\n");
840 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);
841 return 1;
842 }
843 return 0;
844}
845
846static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
847{
848 int err;
849 struct page *oldpage = *pagep;
850 struct page *newpage;
851 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200852
Miklos Szeredidc008092015-07-01 16:25:58 +0200853 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200854 if (err)
855 return err;
856
Miklos Szeredice534fb2010-05-25 15:06:07 +0200857 fuse_copy_finish(cs);
858
859 err = buf->ops->confirm(cs->pipe, buf);
860 if (err)
861 return err;
862
863 BUG_ON(!cs->nr_segs);
864 cs->currbuf = buf;
865 cs->len = buf->len;
866 cs->pipebufs++;
867 cs->nr_segs--;
868
869 if (cs->len != PAGE_SIZE)
870 goto out_fallback;
871
872 if (buf->ops->steal(cs->pipe, buf) != 0)
873 goto out_fallback;
874
875 newpage = buf->page;
876
Miklos Szerediaa991b32015-02-26 11:45:47 +0100877 if (!PageUptodate(newpage))
878 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200879
880 ClearPageMappedToDisk(newpage);
881
882 if (fuse_check_page(newpage) != 0)
883 goto out_fallback_unlock;
884
Miklos Szeredice534fb2010-05-25 15:06:07 +0200885 /*
886 * This is a new and locked page, it shouldn't be mapped or
887 * have any special flags on it
888 */
889 if (WARN_ON(page_mapped(oldpage)))
890 goto out_fallback_unlock;
891 if (WARN_ON(page_has_private(oldpage)))
892 goto out_fallback_unlock;
893 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
894 goto out_fallback_unlock;
895 if (WARN_ON(PageMlocked(oldpage)))
896 goto out_fallback_unlock;
897
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700898 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200899 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700900 unlock_page(newpage);
901 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200902 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700903
Miklos Szeredice534fb2010-05-25 15:06:07 +0200904 page_cache_get(newpage);
905
906 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
907 lru_cache_add_file(newpage);
908
909 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200910 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200911 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200912 err = -ENOENT;
913 else
914 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200915 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200916
917 if (err) {
918 unlock_page(newpage);
919 page_cache_release(newpage);
920 return err;
921 }
922
923 unlock_page(oldpage);
924 page_cache_release(oldpage);
925 cs->len = 0;
926
927 return 0;
928
929out_fallback_unlock:
930 unlock_page(newpage);
931out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200932 cs->pg = buf->page;
933 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200934
Miklos Szeredidc008092015-07-01 16:25:58 +0200935 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200936 if (err)
937 return err;
938
939 return 1;
940}
941
Miklos Szeredic3021622010-05-25 15:06:07 +0200942static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
943 unsigned offset, unsigned count)
944{
945 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200946 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200947
948 if (cs->nr_segs == cs->pipe->buffers)
949 return -EIO;
950
Miklos Szeredidc008092015-07-01 16:25:58 +0200951 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200952 if (err)
953 return err;
954
Miklos Szeredic3021622010-05-25 15:06:07 +0200955 fuse_copy_finish(cs);
956
957 buf = cs->pipebufs;
958 page_cache_get(page);
959 buf->page = page;
960 buf->offset = offset;
961 buf->len = count;
962
963 cs->pipebufs++;
964 cs->nr_segs++;
965 cs->len = 0;
966
967 return 0;
968}
969
Miklos Szeredi334f4852005-09-09 13:10:27 -0700970/*
971 * Copy a page in the request to/from the userspace buffer. Must be
972 * done atomically
973 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200974static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800975 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700976{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200977 int err;
978 struct page *page = *pagep;
979
Miklos Szeredib6777c42010-10-26 14:22:27 -0700980 if (page && zeroing && count < PAGE_SIZE)
981 clear_highpage(page);
982
Miklos Szeredi334f4852005-09-09 13:10:27 -0700983 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200984 if (cs->write && cs->pipebufs && page) {
985 return fuse_ref_page(cs, page, offset, count);
986 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200987 if (cs->move_pages && page &&
988 offset == 0 && count == PAGE_SIZE) {
989 err = fuse_try_move_page(cs, pagep);
990 if (err <= 0)
991 return err;
992 } else {
993 err = fuse_copy_fill(cs);
994 if (err)
995 return err;
996 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100997 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700998 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800999 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001000 void *buf = mapaddr + offset;
1001 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +08001002 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001003 } else
1004 offset += fuse_copy_do(cs, NULL, &count);
1005 }
1006 if (page && !cs->write)
1007 flush_dcache_page(page);
1008 return 0;
1009}
1010
1011/* Copy pages in the request to/from userspace buffer */
1012static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
1013 int zeroing)
1014{
1015 unsigned i;
1016 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001017
1018 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +02001019 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001020 unsigned offset = req->page_descs[i].offset;
1021 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001022
1023 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1024 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001025 if (err)
1026 return err;
1027
1028 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001029 }
1030 return 0;
1031}
1032
1033/* Copy a single argument in the request to/from userspace buffer */
1034static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1035{
1036 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001037 if (!cs->len) {
1038 int err = fuse_copy_fill(cs);
1039 if (err)
1040 return err;
1041 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001042 fuse_copy_do(cs, &val, &size);
1043 }
1044 return 0;
1045}
1046
1047/* Copy request arguments to/from userspace buffer */
1048static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1049 unsigned argpages, struct fuse_arg *args,
1050 int zeroing)
1051{
1052 int err = 0;
1053 unsigned i;
1054
1055 for (i = 0; !err && i < numargs; i++) {
1056 struct fuse_arg *arg = &args[i];
1057 if (i == numargs - 1 && argpages)
1058 err = fuse_copy_pages(cs, arg->size, zeroing);
1059 else
1060 err = fuse_copy_one(cs, arg->value, arg->size);
1061 }
1062 return err;
1063}
1064
Miklos Szeredif88996a2015-07-01 16:26:01 +02001065static int forget_pending(struct fuse_iqueue *fiq)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001066{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001067 return fiq->forget_list_head.next != NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001068}
1069
Miklos Szeredif88996a2015-07-01 16:26:01 +02001070static int request_pending(struct fuse_iqueue *fiq)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001071{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001072 return !list_empty(&fiq->pending) || !list_empty(&fiq->interrupts) ||
1073 forget_pending(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001074}
1075
Miklos Szeredi334f4852005-09-09 13:10:27 -07001076/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001077 * Transfer an interrupt request to userspace
1078 *
1079 * Unlike other requests this is assembled on demand, without a need
1080 * to allocate a separate fuse_req structure.
1081 *
Miklos Szeredifd22d622015-07-01 16:26:03 +02001082 * Called with fiq->waitq.lock held, releases it
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001083 */
Miklos Szeredifd22d622015-07-01 16:26:03 +02001084static int fuse_read_interrupt(struct fuse_iqueue *fiq,
1085 struct fuse_copy_state *cs,
Miklos Szeredic3021622010-05-25 15:06:07 +02001086 size_t nbytes, struct fuse_req *req)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001087__releases(fiq->waitq.lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001088{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001089 struct fuse_in_header ih;
1090 struct fuse_interrupt_in arg;
1091 unsigned reqsize = sizeof(ih) + sizeof(arg);
1092 int err;
1093
1094 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001095 req->intr_unique = fuse_get_unique(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001096 memset(&ih, 0, sizeof(ih));
1097 memset(&arg, 0, sizeof(arg));
1098 ih.len = reqsize;
1099 ih.opcode = FUSE_INTERRUPT;
1100 ih.unique = req->intr_unique;
1101 arg.unique = req->in.h.unique;
1102
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001103 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001104 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001105 return -EINVAL;
1106
Miklos Szeredic3021622010-05-25 15:06:07 +02001107 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001108 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001109 err = fuse_copy_one(cs, &arg, sizeof(arg));
1110 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001111
1112 return err ? err : reqsize;
1113}
1114
Miklos Szeredif88996a2015-07-01 16:26:01 +02001115static struct fuse_forget_link *dequeue_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001116 unsigned max,
1117 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001118{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001119 struct fuse_forget_link *head = fiq->forget_list_head.next;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001120 struct fuse_forget_link **newhead = &head;
1121 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001122
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001123 for (count = 0; *newhead != NULL && count < max; count++)
1124 newhead = &(*newhead)->next;
1125
Miklos Szeredif88996a2015-07-01 16:26:01 +02001126 fiq->forget_list_head.next = *newhead;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001127 *newhead = NULL;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001128 if (fiq->forget_list_head.next == NULL)
1129 fiq->forget_list_tail = &fiq->forget_list_head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001130
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001131 if (countp != NULL)
1132 *countp = count;
1133
1134 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001135}
1136
Miklos Szeredifd22d622015-07-01 16:26:03 +02001137static int fuse_read_single_forget(struct fuse_iqueue *fiq,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001138 struct fuse_copy_state *cs,
1139 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001140__releases(fiq->waitq.lock)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001141{
1142 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001143 struct fuse_forget_link *forget = dequeue_forget(fiq, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001144 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001145 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001146 };
1147 struct fuse_in_header ih = {
1148 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001149 .nodeid = forget->forget_one.nodeid,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001150 .unique = fuse_get_unique(fiq),
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001151 .len = sizeof(ih) + sizeof(arg),
1152 };
1153
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001154 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001155 kfree(forget);
1156 if (nbytes < ih.len)
1157 return -EINVAL;
1158
1159 err = fuse_copy_one(cs, &ih, sizeof(ih));
1160 if (!err)
1161 err = fuse_copy_one(cs, &arg, sizeof(arg));
1162 fuse_copy_finish(cs);
1163
1164 if (err)
1165 return err;
1166
1167 return ih.len;
1168}
1169
Miklos Szeredifd22d622015-07-01 16:26:03 +02001170static int fuse_read_batch_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001171 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001172__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001173{
1174 int err;
1175 unsigned max_forgets;
1176 unsigned count;
1177 struct fuse_forget_link *head;
1178 struct fuse_batch_forget_in arg = { .count = 0 };
1179 struct fuse_in_header ih = {
1180 .opcode = FUSE_BATCH_FORGET,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001181 .unique = fuse_get_unique(fiq),
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001182 .len = sizeof(ih) + sizeof(arg),
1183 };
1184
1185 if (nbytes < ih.len) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001186 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001187 return -EINVAL;
1188 }
1189
1190 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001191 head = dequeue_forget(fiq, max_forgets, &count);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001192 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001193
1194 arg.count = count;
1195 ih.len += count * sizeof(struct fuse_forget_one);
1196 err = fuse_copy_one(cs, &ih, sizeof(ih));
1197 if (!err)
1198 err = fuse_copy_one(cs, &arg, sizeof(arg));
1199
1200 while (head) {
1201 struct fuse_forget_link *forget = head;
1202
1203 if (!err) {
1204 err = fuse_copy_one(cs, &forget->forget_one,
1205 sizeof(forget->forget_one));
1206 }
1207 head = forget->next;
1208 kfree(forget);
1209 }
1210
1211 fuse_copy_finish(cs);
1212
1213 if (err)
1214 return err;
1215
1216 return ih.len;
1217}
1218
Miklos Szeredifd22d622015-07-01 16:26:03 +02001219static int fuse_read_forget(struct fuse_conn *fc, struct fuse_iqueue *fiq,
1220 struct fuse_copy_state *cs,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001221 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001222__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001223{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001224 if (fc->minor < 16 || fiq->forget_list_head.next->next == NULL)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001225 return fuse_read_single_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001226 else
Miklos Szeredifd22d622015-07-01 16:26:03 +02001227 return fuse_read_batch_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001228}
1229
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001230/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001231 * Read a single request into the userspace filesystem's buffer. This
1232 * function waits until a request is available, then removes it from
1233 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001234 * no reply is needed (FORGET) or request has been aborted or there
1235 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001236 * request_end(). Otherwise add it to the processing list, and set
1237 * the 'sent' flag.
1238 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001239static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1240 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001241{
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001242 ssize_t err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001243 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001244 struct fuse_pqueue *fpq = &fc->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001245 struct fuse_req *req;
1246 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001247 unsigned reqsize;
1248
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001249 restart:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001250 spin_lock(&fiq->waitq.lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001251 err = -EAGAIN;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001252 if ((file->f_flags & O_NONBLOCK) && fiq->connected &&
Miklos Szeredif88996a2015-07-01 16:26:01 +02001253 !request_pending(fiq))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001254 goto err_unlock;
1255
Miklos Szeredi52509212015-07-01 16:26:03 +02001256 err = wait_event_interruptible_exclusive_locked(fiq->waitq,
1257 !fiq->connected || request_pending(fiq));
1258 if (err)
1259 goto err_unlock;
1260
Miklos Szeredi334f4852005-09-09 13:10:27 -07001261 err = -ENODEV;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001262 if (!fiq->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001263 goto err_unlock;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001264
Miklos Szeredif88996a2015-07-01 16:26:01 +02001265 if (!list_empty(&fiq->interrupts)) {
1266 req = list_entry(fiq->interrupts.next, struct fuse_req,
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001267 intr_entry);
Miklos Szeredifd22d622015-07-01 16:26:03 +02001268 return fuse_read_interrupt(fiq, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001269 }
1270
Miklos Szeredif88996a2015-07-01 16:26:01 +02001271 if (forget_pending(fiq)) {
1272 if (list_empty(&fiq->pending) || fiq->forget_batch-- > 0)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001273 return fuse_read_forget(fc, fiq, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001274
Miklos Szeredif88996a2015-07-01 16:26:01 +02001275 if (fiq->forget_batch <= -8)
1276 fiq->forget_batch = 16;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001277 }
1278
Miklos Szeredif88996a2015-07-01 16:26:01 +02001279 req = list_entry(fiq->pending.next, struct fuse_req, list);
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001280 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredief759252015-07-01 16:26:02 +02001281 list_del_init(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001282 spin_unlock(&fiq->waitq.lock);
1283
Miklos Szeredifd22d622015-07-01 16:26:03 +02001284 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001285 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001286 reqsize = in->h.len;
1287 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001288 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001289 req->out.h.error = -EIO;
1290 /* SETXATTR is special, since it may contain too large data */
1291 if (in->h.opcode == FUSE_SETXATTR)
1292 req->out.h.error = -E2BIG;
1293 request_end(fc, req);
1294 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001295 }
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001296 spin_lock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001297 list_add(&req->list, &fpq->io);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001298 spin_unlock(&fpq->lock);
Miklos Szeredid7133112006-04-10 22:54:55 -07001299 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001300 cs->req = req;
1301 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001302 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001303 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001304 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001305 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001306 spin_lock(&fc->lock);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001307 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001308 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001309 if (!fpq->connected) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001310 err = -ENODEV;
1311 goto out_end;
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001312 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001313 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001314 req->out.h.error = -EIO;
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001315 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001316 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001317 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001318 err = reqsize;
1319 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001320 }
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001321 list_move_tail(&req->list, &fpq->processing);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001322 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001323 set_bit(FR_SENT, &req->flags);
1324 /* matches barrier in request_wait_answer() */
1325 smp_mb__after_atomic();
1326 if (test_bit(FR_INTERRUPTED, &req->flags))
1327 queue_interrupt(fiq, req);
1328 spin_unlock(&fc->lock);
1329
Miklos Szeredi334f4852005-09-09 13:10:27 -07001330 return reqsize;
1331
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001332out_end:
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001333 if (!test_bit(FR_PRIVATE, &req->flags))
1334 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001335 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001336 request_end(fc, req);
1337 return err;
1338
Miklos Szeredi334f4852005-09-09 13:10:27 -07001339 err_unlock:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001340 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001341 return err;
1342}
1343
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001344static int fuse_dev_open(struct inode *inode, struct file *file)
1345{
1346 /*
1347 * The fuse device's file's private_data is used to hold
1348 * the fuse_conn(ection) when it is mounted, and is used to
1349 * keep track of whether the file has been mounted already.
1350 */
1351 file->private_data = NULL;
1352 return 0;
1353}
1354
Al Virofbdbacc2015-04-03 21:53:39 -04001355static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001356{
1357 struct fuse_copy_state cs;
1358 struct file *file = iocb->ki_filp;
1359 struct fuse_conn *fc = fuse_get_conn(file);
1360 if (!fc)
1361 return -EPERM;
1362
Al Virofbdbacc2015-04-03 21:53:39 -04001363 if (!iter_is_iovec(to))
1364 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001365
Miklos Szeredidc008092015-07-01 16:25:58 +02001366 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001367
1368 return fuse_dev_do_read(fc, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001369}
1370
Miklos Szeredic3021622010-05-25 15:06:07 +02001371static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1372 struct pipe_inode_info *pipe,
1373 size_t len, unsigned int flags)
1374{
1375 int ret;
1376 int page_nr = 0;
1377 int do_wakeup = 0;
1378 struct pipe_buffer *bufs;
1379 struct fuse_copy_state cs;
1380 struct fuse_conn *fc = fuse_get_conn(in);
1381 if (!fc)
1382 return -EPERM;
1383
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001384 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001385 if (!bufs)
1386 return -ENOMEM;
1387
Miklos Szeredidc008092015-07-01 16:25:58 +02001388 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001389 cs.pipebufs = bufs;
1390 cs.pipe = pipe;
1391 ret = fuse_dev_do_read(fc, in, &cs, len);
1392 if (ret < 0)
1393 goto out;
1394
1395 ret = 0;
1396 pipe_lock(pipe);
1397
1398 if (!pipe->readers) {
1399 send_sig(SIGPIPE, current, 0);
1400 if (!ret)
1401 ret = -EPIPE;
1402 goto out_unlock;
1403 }
1404
1405 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1406 ret = -EIO;
1407 goto out_unlock;
1408 }
1409
1410 while (page_nr < cs.nr_segs) {
1411 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1412 struct pipe_buffer *buf = pipe->bufs + newbuf;
1413
1414 buf->page = bufs[page_nr].page;
1415 buf->offset = bufs[page_nr].offset;
1416 buf->len = bufs[page_nr].len;
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001417 /*
1418 * Need to be careful about this. Having buf->ops in module
1419 * code can Oops if the buffer persists after module unload.
1420 */
1421 buf->ops = &nosteal_pipe_buf_ops;
Miklos Szeredic3021622010-05-25 15:06:07 +02001422
1423 pipe->nrbufs++;
1424 page_nr++;
1425 ret += buf->len;
1426
Al Viro6447a3c2013-03-21 11:01:38 -04001427 if (pipe->files)
Miklos Szeredic3021622010-05-25 15:06:07 +02001428 do_wakeup = 1;
1429 }
1430
1431out_unlock:
1432 pipe_unlock(pipe);
1433
1434 if (do_wakeup) {
1435 smp_mb();
1436 if (waitqueue_active(&pipe->wait))
1437 wake_up_interruptible(&pipe->wait);
1438 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1439 }
1440
1441out:
1442 for (; page_nr < cs.nr_segs; page_nr++)
1443 page_cache_release(bufs[page_nr].page);
1444
1445 kfree(bufs);
1446 return ret;
1447}
1448
Tejun Heo95668a62008-11-26 12:03:55 +01001449static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1450 struct fuse_copy_state *cs)
1451{
1452 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001453 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001454
1455 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001456 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001457
1458 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1459 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001460 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001461
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001462 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001463 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001464
1465err:
1466 fuse_copy_finish(cs);
1467 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001468}
1469
John Muir3b463ae2009-05-31 11:13:57 -04001470static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1471 struct fuse_copy_state *cs)
1472{
1473 struct fuse_notify_inval_inode_out outarg;
1474 int err = -EINVAL;
1475
1476 if (size != sizeof(outarg))
1477 goto err;
1478
1479 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1480 if (err)
1481 goto err;
1482 fuse_copy_finish(cs);
1483
1484 down_read(&fc->killsb);
1485 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001486 if (fc->sb) {
1487 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1488 outarg.off, outarg.len);
1489 }
John Muir3b463ae2009-05-31 11:13:57 -04001490 up_read(&fc->killsb);
1491 return err;
1492
1493err:
1494 fuse_copy_finish(cs);
1495 return err;
1496}
1497
1498static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1499 struct fuse_copy_state *cs)
1500{
1501 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001502 int err = -ENOMEM;
1503 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001504 struct qstr name;
1505
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001506 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1507 if (!buf)
1508 goto err;
1509
1510 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001511 if (size < sizeof(outarg))
1512 goto err;
1513
1514 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1515 if (err)
1516 goto err;
1517
1518 err = -ENAMETOOLONG;
1519 if (outarg.namelen > FUSE_NAME_MAX)
1520 goto err;
1521
Miklos Szeredic2183d12011-08-24 10:20:17 +02001522 err = -EINVAL;
1523 if (size != sizeof(outarg) + outarg.namelen + 1)
1524 goto err;
1525
John Muir3b463ae2009-05-31 11:13:57 -04001526 name.name = buf;
1527 name.len = outarg.namelen;
1528 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1529 if (err)
1530 goto err;
1531 fuse_copy_finish(cs);
1532 buf[outarg.namelen] = 0;
1533 name.hash = full_name_hash(name.name, name.len);
1534
1535 down_read(&fc->killsb);
1536 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001537 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001538 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1539 up_read(&fc->killsb);
1540 kfree(buf);
1541 return err;
1542
1543err:
1544 kfree(buf);
1545 fuse_copy_finish(cs);
1546 return err;
1547}
1548
1549static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1550 struct fuse_copy_state *cs)
1551{
1552 struct fuse_notify_delete_out outarg;
1553 int err = -ENOMEM;
1554 char *buf;
1555 struct qstr name;
1556
1557 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1558 if (!buf)
1559 goto err;
1560
1561 err = -EINVAL;
1562 if (size < sizeof(outarg))
1563 goto err;
1564
1565 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1566 if (err)
1567 goto err;
1568
1569 err = -ENAMETOOLONG;
1570 if (outarg.namelen > FUSE_NAME_MAX)
1571 goto err;
1572
1573 err = -EINVAL;
1574 if (size != sizeof(outarg) + outarg.namelen + 1)
1575 goto err;
1576
1577 name.name = buf;
1578 name.len = outarg.namelen;
1579 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1580 if (err)
1581 goto err;
1582 fuse_copy_finish(cs);
1583 buf[outarg.namelen] = 0;
1584 name.hash = full_name_hash(name.name, name.len);
1585
1586 down_read(&fc->killsb);
1587 err = -ENOENT;
1588 if (fc->sb)
1589 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1590 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001591 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001592 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001593 return err;
1594
1595err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001596 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001597 fuse_copy_finish(cs);
1598 return err;
1599}
1600
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001601static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1602 struct fuse_copy_state *cs)
1603{
1604 struct fuse_notify_store_out outarg;
1605 struct inode *inode;
1606 struct address_space *mapping;
1607 u64 nodeid;
1608 int err;
1609 pgoff_t index;
1610 unsigned int offset;
1611 unsigned int num;
1612 loff_t file_size;
1613 loff_t end;
1614
1615 err = -EINVAL;
1616 if (size < sizeof(outarg))
1617 goto out_finish;
1618
1619 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1620 if (err)
1621 goto out_finish;
1622
1623 err = -EINVAL;
1624 if (size - sizeof(outarg) != outarg.size)
1625 goto out_finish;
1626
1627 nodeid = outarg.nodeid;
1628
1629 down_read(&fc->killsb);
1630
1631 err = -ENOENT;
1632 if (!fc->sb)
1633 goto out_up_killsb;
1634
1635 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1636 if (!inode)
1637 goto out_up_killsb;
1638
1639 mapping = inode->i_mapping;
1640 index = outarg.offset >> PAGE_CACHE_SHIFT;
1641 offset = outarg.offset & ~PAGE_CACHE_MASK;
1642 file_size = i_size_read(inode);
1643 end = outarg.offset + outarg.size;
1644 if (end > file_size) {
1645 file_size = end;
1646 fuse_write_update_size(inode, file_size);
1647 }
1648
1649 num = outarg.size;
1650 while (num) {
1651 struct page *page;
1652 unsigned int this_num;
1653
1654 err = -ENOMEM;
1655 page = find_or_create_page(mapping, index,
1656 mapping_gfp_mask(mapping));
1657 if (!page)
1658 goto out_iput;
1659
1660 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1661 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001662 if (!err && offset == 0 &&
1663 (this_num == PAGE_CACHE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001664 SetPageUptodate(page);
1665 unlock_page(page);
1666 page_cache_release(page);
1667
1668 if (err)
1669 goto out_iput;
1670
1671 num -= this_num;
1672 offset = 0;
1673 index++;
1674 }
1675
1676 err = 0;
1677
1678out_iput:
1679 iput(inode);
1680out_up_killsb:
1681 up_read(&fc->killsb);
1682out_finish:
1683 fuse_copy_finish(cs);
1684 return err;
1685}
1686
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001687static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1688{
Mel Gormanb745bc82014-06-04 16:10:22 -07001689 release_pages(req->pages, req->num_pages, false);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001690}
1691
1692static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1693 struct fuse_notify_retrieve_out *outarg)
1694{
1695 int err;
1696 struct address_space *mapping = inode->i_mapping;
1697 struct fuse_req *req;
1698 pgoff_t index;
1699 loff_t file_size;
1700 unsigned int num;
1701 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001702 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001703 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001704
1705 offset = outarg->offset & ~PAGE_CACHE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001706 file_size = i_size_read(inode);
1707
1708 num = outarg->size;
1709 if (outarg->offset > file_size)
1710 num = 0;
1711 else if (outarg->offset + num > file_size)
1712 num = file_size - outarg->offset;
1713
1714 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1715 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1716
1717 req = fuse_get_req(fc, num_pages);
1718 if (IS_ERR(req))
1719 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001720
1721 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1722 req->in.h.nodeid = outarg->nodeid;
1723 req->in.numargs = 2;
1724 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001725 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001726 req->end = fuse_retrieve_end;
1727
1728 index = outarg->offset >> PAGE_CACHE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001729
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001730 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001731 struct page *page;
1732 unsigned int this_num;
1733
1734 page = find_get_page(mapping, index);
1735 if (!page)
1736 break;
1737
1738 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1739 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001740 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001741 req->num_pages++;
1742
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001743 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001744 num -= this_num;
1745 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001746 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001747 }
1748 req->misc.retrieve_in.offset = outarg->offset;
1749 req->misc.retrieve_in.size = total_len;
1750 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1751 req->in.args[0].value = &req->misc.retrieve_in;
1752 req->in.args[1].size = total_len;
1753
1754 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1755 if (err)
1756 fuse_retrieve_end(fc, req);
1757
1758 return err;
1759}
1760
1761static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1762 struct fuse_copy_state *cs)
1763{
1764 struct fuse_notify_retrieve_out outarg;
1765 struct inode *inode;
1766 int err;
1767
1768 err = -EINVAL;
1769 if (size != sizeof(outarg))
1770 goto copy_finish;
1771
1772 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1773 if (err)
1774 goto copy_finish;
1775
1776 fuse_copy_finish(cs);
1777
1778 down_read(&fc->killsb);
1779 err = -ENOENT;
1780 if (fc->sb) {
1781 u64 nodeid = outarg.nodeid;
1782
1783 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1784 if (inode) {
1785 err = fuse_retrieve(fc, inode, &outarg);
1786 iput(inode);
1787 }
1788 }
1789 up_read(&fc->killsb);
1790
1791 return err;
1792
1793copy_finish:
1794 fuse_copy_finish(cs);
1795 return err;
1796}
1797
Tejun Heo85993962008-11-26 12:03:55 +01001798static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1799 unsigned int size, struct fuse_copy_state *cs)
1800{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001801 /* Don't try to move pages (yet) */
1802 cs->move_pages = 0;
1803
Tejun Heo85993962008-11-26 12:03:55 +01001804 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001805 case FUSE_NOTIFY_POLL:
1806 return fuse_notify_poll(fc, size, cs);
1807
John Muir3b463ae2009-05-31 11:13:57 -04001808 case FUSE_NOTIFY_INVAL_INODE:
1809 return fuse_notify_inval_inode(fc, size, cs);
1810
1811 case FUSE_NOTIFY_INVAL_ENTRY:
1812 return fuse_notify_inval_entry(fc, size, cs);
1813
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001814 case FUSE_NOTIFY_STORE:
1815 return fuse_notify_store(fc, size, cs);
1816
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001817 case FUSE_NOTIFY_RETRIEVE:
1818 return fuse_notify_retrieve(fc, size, cs);
1819
John Muir451d0f52011-12-06 21:50:06 +01001820 case FUSE_NOTIFY_DELETE:
1821 return fuse_notify_delete(fc, size, cs);
1822
Tejun Heo85993962008-11-26 12:03:55 +01001823 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001824 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001825 return -EINVAL;
1826 }
1827}
1828
Miklos Szeredi334f4852005-09-09 13:10:27 -07001829/* Look up request on processing list by unique ID */
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001830static struct fuse_req *request_find(struct fuse_pqueue *fpq, u64 unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001831{
Dong Fang05726ac2013-07-30 22:50:01 -04001832 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001833
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001834 list_for_each_entry(req, &fpq->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001835 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001836 return req;
1837 }
1838 return NULL;
1839}
1840
1841static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1842 unsigned nbytes)
1843{
1844 unsigned reqsize = sizeof(struct fuse_out_header);
1845
1846 if (out->h.error)
1847 return nbytes != reqsize ? -EINVAL : 0;
1848
1849 reqsize += len_args(out->numargs, out->args);
1850
1851 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1852 return -EINVAL;
1853 else if (reqsize > nbytes) {
1854 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1855 unsigned diffsize = reqsize - nbytes;
1856 if (diffsize > lastarg->size)
1857 return -EINVAL;
1858 lastarg->size -= diffsize;
1859 }
1860 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1861 out->page_zeroing);
1862}
1863
1864/*
1865 * Write a single reply to a request. First the header is copied from
1866 * the write buffer. The request is then searched on the processing
1867 * list by the unique ID found in the header. If found, then remove
1868 * it from the list and copy the rest of the buffer to the request.
1869 * The request is finished by calling request_end()
1870 */
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001871static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1872 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001873{
1874 int err;
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001875 struct fuse_pqueue *fpq = &fc->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001876 struct fuse_req *req;
1877 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001878
Miklos Szeredi334f4852005-09-09 13:10:27 -07001879 if (nbytes < sizeof(struct fuse_out_header))
1880 return -EINVAL;
1881
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001882 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001883 if (err)
1884 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001885
Miklos Szeredi334f4852005-09-09 13:10:27 -07001886 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001887 if (oh.len != nbytes)
1888 goto err_finish;
1889
1890 /*
1891 * Zero oh.unique indicates unsolicited notification message
1892 * and error contains notification code.
1893 */
1894 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001895 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001896 return err ? err : nbytes;
1897 }
1898
1899 err = -EINVAL;
1900 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001901 goto err_finish;
1902
Miklos Szeredid7133112006-04-10 22:54:55 -07001903 spin_lock(&fc->lock);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001904 spin_lock(&fpq->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001905 err = -ENOENT;
Miklos Szeredie96edd92015-07-01 16:26:04 +02001906 if (!fpq->connected)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001907 goto err_unlock_pq;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001908
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001909 req = request_find(fpq, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001910 if (!req)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001911 goto err_unlock_pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001912
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001913 /* Is it an interrupt reply? */
1914 if (req->intr_unique == oh.unique) {
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001915 spin_unlock(&fpq->lock);
1916
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001917 err = -EINVAL;
1918 if (nbytes != sizeof(struct fuse_out_header))
1919 goto err_unlock;
1920
1921 if (oh.error == -ENOSYS)
1922 fc->no_interrupt = 1;
1923 else if (oh.error == -EAGAIN)
Miklos Szeredif88996a2015-07-01 16:26:01 +02001924 queue_interrupt(&fc->iq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001925
1926 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001927 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001928 return nbytes;
1929 }
1930
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001931 clear_bit(FR_SENT, &req->flags);
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001932 list_move(&req->list, &fpq->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001933 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001934 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001935 spin_unlock(&fpq->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001936 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001937 if (!req->out.page_replace)
1938 cs->move_pages = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -07001939 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001940
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001941 err = copy_out_args(cs, &req->out, nbytes);
1942 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001943
Miklos Szeredid7133112006-04-10 22:54:55 -07001944 spin_lock(&fc->lock);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001945 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001946 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001947 if (!fpq->connected)
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001948 err = -ENOENT;
1949 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001950 req->out.h.error = -EIO;
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001951 if (!test_bit(FR_PRIVATE, &req->flags))
1952 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001953 spin_unlock(&fpq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001954 request_end(fc, req);
1955
1956 return err ? err : nbytes;
1957
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001958 err_unlock_pq:
1959 spin_unlock(&fpq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001960 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001961 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001962 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001963 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001964 return err;
1965}
1966
Al Virofbdbacc2015-04-03 21:53:39 -04001967static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001968{
1969 struct fuse_copy_state cs;
1970 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1971 if (!fc)
1972 return -EPERM;
1973
Al Virofbdbacc2015-04-03 21:53:39 -04001974 if (!iter_is_iovec(from))
1975 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001976
Miklos Szeredidc008092015-07-01 16:25:58 +02001977 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001978
1979 return fuse_dev_do_write(fc, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001980}
1981
1982static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1983 struct file *out, loff_t *ppos,
1984 size_t len, unsigned int flags)
1985{
1986 unsigned nbuf;
1987 unsigned idx;
1988 struct pipe_buffer *bufs;
1989 struct fuse_copy_state cs;
1990 struct fuse_conn *fc;
1991 size_t rem;
1992 ssize_t ret;
1993
1994 fc = fuse_get_conn(out);
1995 if (!fc)
1996 return -EPERM;
1997
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001998 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001999 if (!bufs)
2000 return -ENOMEM;
2001
2002 pipe_lock(pipe);
2003 nbuf = 0;
2004 rem = 0;
2005 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
2006 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
2007
2008 ret = -EINVAL;
2009 if (rem < len) {
2010 pipe_unlock(pipe);
2011 goto out;
2012 }
2013
2014 rem = len;
2015 while (rem) {
2016 struct pipe_buffer *ibuf;
2017 struct pipe_buffer *obuf;
2018
2019 BUG_ON(nbuf >= pipe->buffers);
2020 BUG_ON(!pipe->nrbufs);
2021 ibuf = &pipe->bufs[pipe->curbuf];
2022 obuf = &bufs[nbuf];
2023
2024 if (rem >= ibuf->len) {
2025 *obuf = *ibuf;
2026 ibuf->ops = NULL;
2027 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
2028 pipe->nrbufs--;
2029 } else {
2030 ibuf->ops->get(pipe, ibuf);
2031 *obuf = *ibuf;
2032 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2033 obuf->len = rem;
2034 ibuf->offset += obuf->len;
2035 ibuf->len -= obuf->len;
2036 }
2037 nbuf++;
2038 rem -= obuf->len;
2039 }
2040 pipe_unlock(pipe);
2041
Miklos Szeredidc008092015-07-01 16:25:58 +02002042 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002043 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04002044 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002045 cs.pipe = pipe;
2046
Miklos Szeredice534fb2010-05-25 15:06:07 +02002047 if (flags & SPLICE_F_MOVE)
2048 cs.move_pages = 1;
2049
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002050 ret = fuse_dev_do_write(fc, &cs, len);
2051
2052 for (idx = 0; idx < nbuf; idx++) {
2053 struct pipe_buffer *buf = &bufs[idx];
2054 buf->ops->release(pipe, buf);
2055 }
2056out:
2057 kfree(bufs);
2058 return ret;
2059}
2060
Miklos Szeredi334f4852005-09-09 13:10:27 -07002061static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2062{
Miklos Szeredi334f4852005-09-09 13:10:27 -07002063 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002064 struct fuse_iqueue *fiq;
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002065 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002066 if (!fc)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002067 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002068
Miklos Szeredif88996a2015-07-01 16:26:01 +02002069 fiq = &fc->iq;
2070 poll_wait(file, &fiq->waitq, wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002071
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002072 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +02002073 if (!fiq->connected)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002074 mask = POLLERR;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002075 else if (request_pending(fiq))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002076 mask |= POLLIN | POLLRDNORM;
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002077 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002078
2079 return mask;
2080}
2081
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002082/*
2083 * Abort all requests on the given list (pending or processing)
2084 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002085 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002086 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002087static void end_requests(struct fuse_conn *fc, struct list_head *head)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02002088__releases(fc->lock)
2089__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002090{
2091 while (!list_empty(head)) {
2092 struct fuse_req *req;
2093 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002094 req->out.h.error = -ECONNABORTED;
Miklos Szeredi33e14b42015-07-01 16:26:01 +02002095 clear_bit(FR_PENDING, &req->flags);
2096 clear_bit(FR_SENT, &req->flags);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002097 list_del_init(&req->list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002098 request_end(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07002099 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002100 }
2101}
2102
Bryan Green357ccf22011-03-01 16:43:52 -08002103static void end_polls(struct fuse_conn *fc)
2104{
2105 struct rb_node *p;
2106
2107 p = rb_first(&fc->polled_files);
2108
2109 while (p) {
2110 struct fuse_file *ff;
2111 ff = rb_entry(p, struct fuse_file, polled_node);
2112 wake_up_interruptible_all(&ff->poll_wait);
2113
2114 p = rb_next(p);
2115 }
2116}
2117
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002118/*
2119 * Abort all requests.
2120 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002121 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2122 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002123 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002124 * The same effect is usually achievable through killing the filesystem daemon
2125 * and all users of the filesystem. The exception is the combination of an
2126 * asynchronous request and the tricky deadlock (see
2127 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002128 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002129 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2130 * requests, they should be finished off immediately. Locked requests will be
2131 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2132 * requests. It is possible that some request will finish before we can. This
2133 * is OK, the request will in that case be removed from the list before we touch
2134 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002135 */
2136void fuse_abort_conn(struct fuse_conn *fc)
2137{
Miklos Szeredif88996a2015-07-01 16:26:01 +02002138 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02002139 struct fuse_pqueue *fpq = &fc->pq;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002140
Miklos Szeredid7133112006-04-10 22:54:55 -07002141 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002142 if (fc->connected) {
Miklos Szeredib716d422015-07-01 16:25:59 +02002143 struct fuse_req *req, *next;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002144 LIST_HEAD(to_end1);
2145 LIST_HEAD(to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002146
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002147 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002148 fc->blocked = 0;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002149 fuse_set_initialized(fc);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02002150 spin_lock(&fpq->lock);
Miklos Szeredie96edd92015-07-01 16:26:04 +02002151 fpq->connected = 0;
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02002152 list_for_each_entry_safe(req, next, &fpq->io, list) {
Miklos Szeredib716d422015-07-01 16:25:59 +02002153 req->out.h.error = -ECONNABORTED;
2154 spin_lock(&req->waitq.lock);
2155 set_bit(FR_ABORTED, &req->flags);
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02002156 if (!test_bit(FR_LOCKED, &req->flags)) {
2157 set_bit(FR_PRIVATE, &req->flags);
Miklos Szeredi41f98272015-07-01 16:25:59 +02002158 list_move(&req->list, &to_end1);
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02002159 }
Miklos Szeredib716d422015-07-01 16:25:59 +02002160 spin_unlock(&req->waitq.lock);
2161 }
Miklos Szeredi24b4d332015-07-01 16:26:05 +02002162 list_splice_init(&fpq->processing, &to_end2);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02002163 spin_unlock(&fpq->lock);
Miklos Szeredi41f98272015-07-01 16:25:59 +02002164 fc->max_background = UINT_MAX;
2165 flush_bg_queue(fc);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002166
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002167 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002168 fiq->connected = 0;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002169 list_splice_init(&fiq->pending, &to_end2);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002170 while (forget_pending(fiq))
2171 kfree(dequeue_forget(fiq, 1, NULL));
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002172 wake_up_all_locked(&fiq->waitq);
2173 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002174 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
2175
Miklos Szeredi41f98272015-07-01 16:25:59 +02002176 while (!list_empty(&to_end1)) {
2177 req = list_first_entry(&to_end1, struct fuse_req, list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002178 __fuse_get_request(req);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002179 list_del_init(&req->list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002180 request_end(fc, req);
2181 spin_lock(&fc->lock);
2182 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002183 end_requests(fc, &to_end2);
Bryan Green357ccf22011-03-01 16:43:52 -08002184 end_polls(fc);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002185 wake_up_all(&fc->blocked_waitq);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002186 }
Miklos Szeredid7133112006-04-10 22:54:55 -07002187 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002188}
Tejun Heo08cbf542009-04-14 10:54:53 +09002189EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002190
Tejun Heo08cbf542009-04-14 10:54:53 +09002191int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002192{
Miklos Szeredi0720b312006-04-10 22:54:55 -07002193 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002194 if (fc) {
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02002195 WARN_ON(!list_empty(&fc->pq.io));
Miklos Szeredif88996a2015-07-01 16:26:01 +02002196 WARN_ON(fc->iq.fasync != NULL);
Miklos Szerediccd0a0b2015-07-01 16:25:57 +02002197 fuse_abort_conn(fc);
Miklos Szeredibafa9652006-06-25 05:48:51 -07002198 fuse_conn_put(fc);
Jeff Dike385a17b2006-04-10 22:54:52 -07002199 }
Miklos Szeredif543f252006-01-16 22:14:35 -08002200
Miklos Szeredi334f4852005-09-09 13:10:27 -07002201 return 0;
2202}
Tejun Heo08cbf542009-04-14 10:54:53 +09002203EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002204
Jeff Dike385a17b2006-04-10 22:54:52 -07002205static int fuse_dev_fasync(int fd, struct file *file, int on)
2206{
2207 struct fuse_conn *fc = fuse_get_conn(file);
2208 if (!fc)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002209 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002210
2211 /* No locking - fasync_helper does its own locking */
Miklos Szeredif88996a2015-07-01 16:26:01 +02002212 return fasync_helper(fd, file, on, &fc->iq.fasync);
Jeff Dike385a17b2006-04-10 22:54:52 -07002213}
2214
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002215const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002216 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002217 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002218 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002219 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002220 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002221 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002222 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002223 .poll = fuse_dev_poll,
2224 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002225 .fasync = fuse_dev_fasync,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002226};
Tejun Heo08cbf542009-04-14 10:54:53 +09002227EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002228
2229static struct miscdevice fuse_miscdevice = {
2230 .minor = FUSE_MINOR,
2231 .name = "fuse",
2232 .fops = &fuse_dev_operations,
2233};
2234
2235int __init fuse_dev_init(void)
2236{
2237 int err = -ENOMEM;
2238 fuse_req_cachep = kmem_cache_create("fuse_request",
2239 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002240 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002241 if (!fuse_req_cachep)
2242 goto out;
2243
2244 err = misc_register(&fuse_miscdevice);
2245 if (err)
2246 goto out_cache_clean;
2247
2248 return 0;
2249
2250 out_cache_clean:
2251 kmem_cache_destroy(fuse_req_cachep);
2252 out:
2253 return err;
2254}
2255
2256void fuse_dev_cleanup(void)
2257{
2258 misc_deregister(&fuse_miscdevice);
2259 kmem_cache_destroy(fuse_req_cachep);
2260}