blob: 7f37e55edc0e9f23425d37c9c1c4fae9a12860bb [file] [log] [blame]
Miklos Szeredi334f4852005-09-09 13:10:27 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi1729a162008-11-26 12:03:54 +01003 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi334f4852005-09-09 13:10:27 -07004
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
9#include "fuse_i.h"
10
11#include <linux/init.h>
12#include <linux/module.h>
13#include <linux/poll.h>
14#include <linux/uio.h>
15#include <linux/miscdevice.h>
16#include <linux/pagemap.h>
17#include <linux/file.h>
18#include <linux/slab.h>
Miklos Szeredidd3bb142010-05-25 15:06:06 +020019#include <linux/pipe_fs_i.h>
Miklos Szeredice534fb2010-05-25 15:06:07 +020020#include <linux/swap.h>
21#include <linux/splice.h>
Miklos Szeredi334f4852005-09-09 13:10:27 -070022
23MODULE_ALIAS_MISCDEV(FUSE_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +020024MODULE_ALIAS("devname:fuse");
Miklos Szeredi334f4852005-09-09 13:10:27 -070025
Christoph Lametere18b8902006-12-06 20:33:20 -080026static struct kmem_cache *fuse_req_cachep;
Miklos Szeredi334f4852005-09-09 13:10:27 -070027
Miklos Szeredi8bfc0162006-01-16 22:14:28 -080028static struct fuse_conn *fuse_get_conn(struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -070029{
Miklos Szeredi0720b312006-04-10 22:54:55 -070030 /*
31 * Lockless access is OK, because file->private data is set
32 * once during mount and is valid until the file is released.
33 */
34 return file->private_data;
Miklos Szeredi334f4852005-09-09 13:10:27 -070035}
36
Maxim Patlasov4250c062012-10-26 19:48:07 +040037static void fuse_request_init(struct fuse_req *req, struct page **pages,
Maxim Patlasovb2430d72012-10-26 19:49:24 +040038 struct fuse_page_desc *page_descs,
Maxim Patlasov4250c062012-10-26 19:48:07 +040039 unsigned npages)
Miklos Szeredi334f4852005-09-09 13:10:27 -070040{
41 memset(req, 0, sizeof(*req));
Maxim Patlasov4250c062012-10-26 19:48:07 +040042 memset(pages, 0, sizeof(*pages) * npages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040043 memset(page_descs, 0, sizeof(*page_descs) * npages);
Miklos Szeredi334f4852005-09-09 13:10:27 -070044 INIT_LIST_HEAD(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -070045 INIT_LIST_HEAD(&req->intr_entry);
Miklos Szeredi334f4852005-09-09 13:10:27 -070046 init_waitqueue_head(&req->waitq);
47 atomic_set(&req->count, 1);
Maxim Patlasov4250c062012-10-26 19:48:07 +040048 req->pages = pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040049 req->page_descs = page_descs;
Maxim Patlasov4250c062012-10-26 19:48:07 +040050 req->max_pages = npages;
Miklos Szeredi33e14b42015-07-01 16:26:01 +020051 __set_bit(FR_PENDING, &req->flags);
Miklos Szeredi334f4852005-09-09 13:10:27 -070052}
53
Maxim Patlasov4250c062012-10-26 19:48:07 +040054static struct fuse_req *__fuse_request_alloc(unsigned npages, gfp_t flags)
Miklos Szeredi334f4852005-09-09 13:10:27 -070055{
Maxim Patlasov4250c062012-10-26 19:48:07 +040056 struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, flags);
57 if (req) {
58 struct page **pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040059 struct fuse_page_desc *page_descs;
Maxim Patlasov4250c062012-10-26 19:48:07 +040060
Maxim Patlasovb2430d72012-10-26 19:49:24 +040061 if (npages <= FUSE_REQ_INLINE_PAGES) {
Maxim Patlasov4250c062012-10-26 19:48:07 +040062 pages = req->inline_pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040063 page_descs = req->inline_page_descs;
64 } else {
Maxim Patlasov4250c062012-10-26 19:48:07 +040065 pages = kmalloc(sizeof(struct page *) * npages, flags);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040066 page_descs = kmalloc(sizeof(struct fuse_page_desc) *
67 npages, flags);
68 }
Maxim Patlasov4250c062012-10-26 19:48:07 +040069
Maxim Patlasovb2430d72012-10-26 19:49:24 +040070 if (!pages || !page_descs) {
71 kfree(pages);
72 kfree(page_descs);
Maxim Patlasov4250c062012-10-26 19:48:07 +040073 kmem_cache_free(fuse_req_cachep, req);
74 return NULL;
75 }
76
Maxim Patlasovb2430d72012-10-26 19:49:24 +040077 fuse_request_init(req, pages, page_descs, npages);
Maxim Patlasov4250c062012-10-26 19:48:07 +040078 }
Miklos Szeredi334f4852005-09-09 13:10:27 -070079 return req;
80}
Maxim Patlasov4250c062012-10-26 19:48:07 +040081
82struct fuse_req *fuse_request_alloc(unsigned npages)
83{
84 return __fuse_request_alloc(npages, GFP_KERNEL);
85}
Tejun Heo08cbf542009-04-14 10:54:53 +090086EXPORT_SYMBOL_GPL(fuse_request_alloc);
Miklos Szeredi334f4852005-09-09 13:10:27 -070087
Maxim Patlasov4250c062012-10-26 19:48:07 +040088struct fuse_req *fuse_request_alloc_nofs(unsigned npages)
Miklos Szeredi3be5a522008-04-30 00:54:41 -070089{
Maxim Patlasov4250c062012-10-26 19:48:07 +040090 return __fuse_request_alloc(npages, GFP_NOFS);
Miklos Szeredi3be5a522008-04-30 00:54:41 -070091}
92
Miklos Szeredi334f4852005-09-09 13:10:27 -070093void fuse_request_free(struct fuse_req *req)
94{
Maxim Patlasovb2430d72012-10-26 19:49:24 +040095 if (req->pages != req->inline_pages) {
Maxim Patlasov4250c062012-10-26 19:48:07 +040096 kfree(req->pages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040097 kfree(req->page_descs);
98 }
Miklos Szeredi334f4852005-09-09 13:10:27 -070099 kmem_cache_free(fuse_req_cachep, req);
100}
101
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800102static void block_sigs(sigset_t *oldset)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700103{
104 sigset_t mask;
105
106 siginitsetinv(&mask, sigmask(SIGKILL));
107 sigprocmask(SIG_BLOCK, &mask, oldset);
108}
109
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800110static void restore_sigs(sigset_t *oldset)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700111{
112 sigprocmask(SIG_SETMASK, oldset, NULL);
113}
114
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400115void __fuse_get_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700116{
117 atomic_inc(&req->count);
118}
119
120/* Must be called with > 1 refcount */
121static void __fuse_put_request(struct fuse_req *req)
122{
123 BUG_ON(atomic_read(&req->count) < 2);
124 atomic_dec(&req->count);
125}
126
Miklos Szeredi33649c92006-06-25 05:48:52 -0700127static void fuse_req_init_context(struct fuse_req *req)
128{
Eric W. Biederman499dcf22012-02-07 16:26:03 -0800129 req->in.h.uid = from_kuid_munged(&init_user_ns, current_fsuid());
130 req->in.h.gid = from_kgid_munged(&init_user_ns, current_fsgid());
Miklos Szeredi33649c92006-06-25 05:48:52 -0700131 req->in.h.pid = current->pid;
132}
133
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100134void fuse_set_initialized(struct fuse_conn *fc)
135{
136 /* Make sure stores before this are seen on another CPU */
137 smp_wmb();
138 fc->initialized = 1;
139}
140
Maxim Patlasov0aada882013-03-21 18:02:28 +0400141static bool fuse_block_alloc(struct fuse_conn *fc, bool for_background)
142{
143 return !fc->initialized || (for_background && fc->blocked);
144}
145
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400146static struct fuse_req *__fuse_get_req(struct fuse_conn *fc, unsigned npages,
147 bool for_background)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700148{
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700149 struct fuse_req *req;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700150 int err;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200151 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400152
153 if (fuse_block_alloc(fc, for_background)) {
154 sigset_t oldset;
155 int intr;
156
157 block_sigs(&oldset);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400158 intr = wait_event_interruptible_exclusive(fc->blocked_waitq,
Maxim Patlasov0aada882013-03-21 18:02:28 +0400159 !fuse_block_alloc(fc, for_background));
160 restore_sigs(&oldset);
161 err = -EINTR;
162 if (intr)
163 goto out;
164 }
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100165 /* Matches smp_wmb() in fuse_set_initialized() */
166 smp_rmb();
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700167
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700168 err = -ENOTCONN;
169 if (!fc->connected)
170 goto out;
171
Miklos Szeredide155222015-07-01 16:25:57 +0200172 err = -ECONNREFUSED;
173 if (fc->conn_error)
174 goto out;
175
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400176 req = fuse_request_alloc(npages);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200177 err = -ENOMEM;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400178 if (!req) {
179 if (for_background)
180 wake_up(&fc->blocked_waitq);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200181 goto out;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400182 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700183
Miklos Szeredi33649c92006-06-25 05:48:52 -0700184 fuse_req_init_context(req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200185 __set_bit(FR_WAITING, &req->flags);
186 if (for_background)
187 __set_bit(FR_BACKGROUND, &req->flags);
188
Miklos Szeredi334f4852005-09-09 13:10:27 -0700189 return req;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200190
191 out:
192 atomic_dec(&fc->num_waiting);
193 return ERR_PTR(err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700194}
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400195
196struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages)
197{
198 return __fuse_get_req(fc, npages, false);
199}
Tejun Heo08cbf542009-04-14 10:54:53 +0900200EXPORT_SYMBOL_GPL(fuse_get_req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700201
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400202struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc,
203 unsigned npages)
204{
205 return __fuse_get_req(fc, npages, true);
206}
207EXPORT_SYMBOL_GPL(fuse_get_req_for_background);
208
Miklos Szeredi33649c92006-06-25 05:48:52 -0700209/*
210 * Return request in fuse_file->reserved_req. However that may
211 * currently be in use. If that is the case, wait for it to become
212 * available.
213 */
214static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
215 struct file *file)
216{
217 struct fuse_req *req = NULL;
218 struct fuse_file *ff = file->private_data;
219
220 do {
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700221 wait_event(fc->reserved_req_waitq, ff->reserved_req);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700222 spin_lock(&fc->lock);
223 if (ff->reserved_req) {
224 req = ff->reserved_req;
225 ff->reserved_req = NULL;
Al Virocb0942b2012-08-27 14:48:26 -0400226 req->stolen_file = get_file(file);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700227 }
228 spin_unlock(&fc->lock);
229 } while (!req);
230
231 return req;
232}
233
234/*
235 * Put stolen request back into fuse_file->reserved_req
236 */
237static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
238{
239 struct file *file = req->stolen_file;
240 struct fuse_file *ff = file->private_data;
241
242 spin_lock(&fc->lock);
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400243 fuse_request_init(req, req->pages, req->page_descs, req->max_pages);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700244 BUG_ON(ff->reserved_req);
245 ff->reserved_req = req;
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700246 wake_up_all(&fc->reserved_req_waitq);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700247 spin_unlock(&fc->lock);
248 fput(file);
249}
250
251/*
252 * Gets a requests for a file operation, always succeeds
253 *
254 * This is used for sending the FLUSH request, which must get to
255 * userspace, due to POSIX locks which may need to be unlocked.
256 *
257 * If allocation fails due to OOM, use the reserved request in
258 * fuse_file.
259 *
260 * This is very unlikely to deadlock accidentally, since the
261 * filesystem should not have it's own file open. If deadlock is
262 * intentional, it can still be broken by "aborting" the filesystem.
263 */
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400264struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc,
265 struct file *file)
Miklos Szeredi33649c92006-06-25 05:48:52 -0700266{
267 struct fuse_req *req;
268
269 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400270 wait_event(fc->blocked_waitq, fc->initialized);
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100271 /* Matches smp_wmb() in fuse_set_initialized() */
272 smp_rmb();
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400273 req = fuse_request_alloc(0);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700274 if (!req)
275 req = get_reserved_req(fc, file);
276
277 fuse_req_init_context(req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200278 __set_bit(FR_WAITING, &req->flags);
279 __clear_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700280 return req;
281}
282
Miklos Szeredi334f4852005-09-09 13:10:27 -0700283void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
284{
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800285 if (atomic_dec_and_test(&req->count)) {
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200286 if (test_bit(FR_BACKGROUND, &req->flags)) {
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400287 /*
288 * We get here in the unlikely case that a background
289 * request was allocated but not sent
290 */
291 spin_lock(&fc->lock);
292 if (!fc->blocked)
293 wake_up(&fc->blocked_waitq);
294 spin_unlock(&fc->lock);
295 }
296
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200297 if (test_bit(FR_WAITING, &req->flags)) {
298 __clear_bit(FR_WAITING, &req->flags);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200299 atomic_dec(&fc->num_waiting);
Miklos Szeredi73e0e732015-07-01 16:25:56 +0200300 }
Miklos Szeredi33649c92006-06-25 05:48:52 -0700301
302 if (req->stolen_file)
303 put_reserved_req(fc, req);
304 else
305 fuse_request_free(req);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800306 }
307}
Tejun Heo08cbf542009-04-14 10:54:53 +0900308EXPORT_SYMBOL_GPL(fuse_put_request);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800309
Miklos Szeredid12def12008-02-06 01:38:39 -0800310static unsigned len_args(unsigned numargs, struct fuse_arg *args)
311{
312 unsigned nbytes = 0;
313 unsigned i;
314
315 for (i = 0; i < numargs; i++)
316 nbytes += args[i].size;
317
318 return nbytes;
319}
320
Miklos Szeredif88996a2015-07-01 16:26:01 +0200321static u64 fuse_get_unique(struct fuse_iqueue *fiq)
Miklos Szeredid12def12008-02-06 01:38:39 -0800322{
Miklos Szeredif88996a2015-07-01 16:26:01 +0200323 return ++fiq->reqctr;
Miklos Szeredid12def12008-02-06 01:38:39 -0800324}
325
Miklos Szeredif88996a2015-07-01 16:26:01 +0200326static void queue_request(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800327{
Miklos Szeredid12def12008-02-06 01:38:39 -0800328 req->in.h.len = sizeof(struct fuse_in_header) +
329 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200330 list_add_tail(&req->list, &fiq->pending);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200331 wake_up_locked(&fiq->waitq);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200332 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredid12def12008-02-06 01:38:39 -0800333}
334
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100335void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
336 u64 nodeid, u64 nlookup)
337{
Miklos Szeredif88996a2015-07-01 16:26:01 +0200338 struct fuse_iqueue *fiq = &fc->iq;
339
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100340 forget->forget_one.nodeid = nodeid;
341 forget->forget_one.nlookup = nlookup;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100342
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200343 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200344 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200345 fiq->forget_list_tail->next = forget;
346 fiq->forget_list_tail = forget;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200347 wake_up_locked(&fiq->waitq);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200348 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200349 } else {
350 kfree(forget);
351 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200352 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100353}
354
Miklos Szeredid12def12008-02-06 01:38:39 -0800355static void flush_bg_queue(struct fuse_conn *fc)
356{
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700357 while (fc->active_background < fc->max_background &&
Miklos Szeredid12def12008-02-06 01:38:39 -0800358 !list_empty(&fc->bg_queue)) {
359 struct fuse_req *req;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200360 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredid12def12008-02-06 01:38:39 -0800361
362 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
363 list_del(&req->list);
364 fc->active_background++;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200365 spin_lock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200366 req->in.h.unique = fuse_get_unique(fiq);
367 queue_request(fiq, req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200368 spin_unlock(&fiq->waitq.lock);
Miklos Szeredid12def12008-02-06 01:38:39 -0800369 }
370}
371
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200372/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700373 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700374 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800375 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700376 * was closed. The requester thread is woken up (if still waiting),
377 * the 'end' callback is called if given, else the reference to the
378 * request is released
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800379 *
Miklos Szeredid7133112006-04-10 22:54:55 -0700380 * Called with fc->lock, unlocks it
Miklos Szeredi334f4852005-09-09 13:10:27 -0700381 */
382static void request_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200383__releases(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700384{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200385 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700386 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
387 req->end = NULL;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200388 spin_lock(&fiq->waitq.lock);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200389 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200390 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200391 WARN_ON(test_bit(FR_PENDING, &req->flags));
392 WARN_ON(test_bit(FR_SENT, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200393 smp_wmb();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200394 set_bit(FR_FINISHED, &req->flags);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200395 if (test_bit(FR_BACKGROUND, &req->flags)) {
396 clear_bit(FR_BACKGROUND, &req->flags);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400397 if (fc->num_background == fc->max_background)
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700398 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400399
400 /* Wake up next waiter, if any */
Miklos Szeredi3c18ef82013-04-17 21:50:58 +0200401 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400402 wake_up(&fc->blocked_waitq);
403
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700404 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900405 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200406 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
407 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700408 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700409 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800410 fc->active_background--;
411 flush_bg_queue(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700412 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700413 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700414 wake_up(&req->waitq);
415 if (end)
416 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100417 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700418}
419
Miklos Szeredif88996a2015-07-01 16:26:01 +0200420static void queue_interrupt(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700421{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200422 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200423 if (list_empty(&req->intr_entry)) {
424 list_add_tail(&req->intr_entry, &fiq->interrupts);
425 wake_up_locked(&fiq->waitq);
426 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200427 spin_unlock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200428 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700429}
430
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700431static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700432{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200433 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic4775262015-07-01 16:26:00 +0200434 int err;
435
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700436 if (!fc->no_interrupt) {
437 /* Any signal may interrupt this */
Miklos Szeredic4775262015-07-01 16:26:00 +0200438 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200439 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200440 if (!err)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700441 return;
442
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200443 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200444 /* matches barrier in fuse_dev_do_read() */
445 smp_mb__after_atomic();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200446 if (test_bit(FR_SENT, &req->flags))
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200447 queue_interrupt(fiq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700448 }
449
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200450 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700451 sigset_t oldset;
452
453 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700454 block_sigs(&oldset);
Miklos Szeredic4775262015-07-01 16:26:00 +0200455 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200456 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700457 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700458
Miklos Szeredic4775262015-07-01 16:26:00 +0200459 if (!err)
Miklos Szeredia131de02007-10-16 23:31:04 -0700460 return;
461
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200462 spin_lock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700463 /* Request is not yet in userspace, bail out */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200464 if (test_bit(FR_PENDING, &req->flags)) {
Miklos Szeredia131de02007-10-16 23:31:04 -0700465 list_del(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200466 spin_unlock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700467 __fuse_put_request(req);
468 req->out.h.error = -EINTR;
469 return;
470 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200471 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700472 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700473
Miklos Szeredia131de02007-10-16 23:31:04 -0700474 /*
475 * Either request is already in userspace, or it was forced.
476 * Wait it out.
477 */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200478 wait_event(req->waitq, test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi334f4852005-09-09 13:10:27 -0700479}
480
Eric Wong6a4e9222013-02-04 13:04:44 +0000481static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700482{
Miklos Szeredie16714d2015-07-01 16:26:01 +0200483 struct fuse_iqueue *fiq = &fc->iq;
484
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200485 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200486 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200487 if (!fiq->connected) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200488 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700489 req->out.h.error = -ENOTCONN;
Miklos Szeredic4775262015-07-01 16:26:00 +0200490 } else {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200491 req->in.h.unique = fuse_get_unique(fiq);
492 queue_request(fiq, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700493 /* acquire extra reference, since request is still needed
494 after request_end() */
495 __fuse_get_request(req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200496 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700497
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700498 request_wait_answer(fc, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200499 /* Pairs with smp_wmb() in request_end() */
500 smp_rmb();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700501 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700502}
Eric Wong6a4e9222013-02-04 13:04:44 +0000503
504void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
505{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200506 __set_bit(FR_ISREPLY, &req->flags);
507 if (!test_bit(FR_WAITING, &req->flags)) {
508 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200509 atomic_inc(&fc->num_waiting);
510 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000511 __fuse_request_send(fc, req);
512}
Tejun Heo08cbf542009-04-14 10:54:53 +0900513EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700514
Miklos Szeredi21f62172015-01-06 10:45:35 +0100515static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
516{
517 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
518 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
519
520 if (fc->minor < 9) {
521 switch (args->in.h.opcode) {
522 case FUSE_LOOKUP:
523 case FUSE_CREATE:
524 case FUSE_MKNOD:
525 case FUSE_MKDIR:
526 case FUSE_SYMLINK:
527 case FUSE_LINK:
528 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
529 break;
530 case FUSE_GETATTR:
531 case FUSE_SETATTR:
532 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
533 break;
534 }
535 }
536 if (fc->minor < 12) {
537 switch (args->in.h.opcode) {
538 case FUSE_CREATE:
539 args->in.args[0].size = sizeof(struct fuse_open_in);
540 break;
541 case FUSE_MKNOD:
542 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
543 break;
544 }
545 }
546}
547
Miklos Szeredi70781872014-12-12 09:49:05 +0100548ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
549{
550 struct fuse_req *req;
551 ssize_t ret;
552
553 req = fuse_get_req(fc, 0);
554 if (IS_ERR(req))
555 return PTR_ERR(req);
556
Miklos Szeredi21f62172015-01-06 10:45:35 +0100557 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
558 fuse_adjust_compat(fc, args);
559
Miklos Szeredi70781872014-12-12 09:49:05 +0100560 req->in.h.opcode = args->in.h.opcode;
561 req->in.h.nodeid = args->in.h.nodeid;
562 req->in.numargs = args->in.numargs;
563 memcpy(req->in.args, args->in.args,
564 args->in.numargs * sizeof(struct fuse_in_arg));
565 req->out.argvar = args->out.argvar;
566 req->out.numargs = args->out.numargs;
567 memcpy(req->out.args, args->out.args,
568 args->out.numargs * sizeof(struct fuse_arg));
569 fuse_request_send(fc, req);
570 ret = req->out.h.error;
571 if (!ret && args->out.argvar) {
572 BUG_ON(args->out.numargs != 1);
573 ret = req->out.args[0].size;
574 }
575 fuse_put_request(fc, req);
576
577 return ret;
578}
579
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200580/*
581 * Called under fc->lock
582 *
583 * fc->connected must have been checked previously
584 */
585void fuse_request_send_background_locked(struct fuse_conn *fc,
586 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800587{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200588 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
589 if (!test_bit(FR_WAITING, &req->flags)) {
590 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200591 atomic_inc(&fc->num_waiting);
592 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200593 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800594 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700595 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800596 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700597 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900598 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200599 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
600 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800601 }
602 list_add_tail(&req->list, &fc->bg_queue);
603 flush_bg_queue(fc);
604}
605
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200606void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700607{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200608 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700609 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700610 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200611 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700612 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700613 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200614 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700615 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200616 req->end(fc, req);
617 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700618 }
619}
Tejun Heo08cbf542009-04-14 10:54:53 +0900620EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700621
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200622static int fuse_request_send_notify_reply(struct fuse_conn *fc,
623 struct fuse_req *req, u64 unique)
624{
625 int err = -ENODEV;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200626 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200627
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200628 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200629 req->in.h.unique = unique;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200630 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200631 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200632 queue_request(fiq, req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200633 err = 0;
634 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200635 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200636
637 return err;
638}
639
Anand V. Avati0b05b182012-08-19 08:53:23 -0400640void fuse_force_forget(struct file *file, u64 nodeid)
641{
Al Viro6131ffa2013-02-27 16:59:05 -0500642 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400643 struct fuse_conn *fc = get_fuse_conn(inode);
644 struct fuse_req *req;
645 struct fuse_forget_in inarg;
646
647 memset(&inarg, 0, sizeof(inarg));
648 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400649 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400650 req->in.h.opcode = FUSE_FORGET;
651 req->in.h.nodeid = nodeid;
652 req->in.numargs = 1;
653 req->in.args[0].size = sizeof(inarg);
654 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200655 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000656 __fuse_request_send(fc, req);
657 /* ignore errors */
658 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400659}
660
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700661/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700662 * Lock the request. Up to the next unlock_request() there mustn't be
663 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700664 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700665 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200666static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700667{
668 int err = 0;
669 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200670 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200671 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700672 err = -ENOENT;
673 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200674 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200675 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700676 }
677 return err;
678}
679
680/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200681 * Unlock request. If it was aborted while locked, caller is responsible
682 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700683 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200684static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700685{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200686 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700687 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200688 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200689 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200690 err = -ENOENT;
691 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200692 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200693 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700694 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200695 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700696}
697
698struct fuse_copy_state {
699 int write;
700 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400701 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200702 struct pipe_buffer *pipebufs;
703 struct pipe_buffer *currbuf;
704 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700705 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700706 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700707 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200708 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200709 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700710};
711
Miklos Szeredidc008092015-07-01 16:25:58 +0200712static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400713 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700714{
715 memset(cs, 0, sizeof(*cs));
716 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400717 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700718}
719
720/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800721static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700722{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200723 if (cs->currbuf) {
724 struct pipe_buffer *buf = cs->currbuf;
725
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200726 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200727 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200728 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200729 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700730 if (cs->write) {
731 flush_dcache_page(cs->pg);
732 set_page_dirty_lock(cs->pg);
733 }
734 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700735 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200736 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700737}
738
739/*
740 * Get another pagefull of userspace buffer, and map it to kernel
741 * address space, and lock request
742 */
743static int fuse_copy_fill(struct fuse_copy_state *cs)
744{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200745 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700746 int err;
747
Miklos Szeredidc008092015-07-01 16:25:58 +0200748 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200749 if (err)
750 return err;
751
Miklos Szeredi334f4852005-09-09 13:10:27 -0700752 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200753 if (cs->pipebufs) {
754 struct pipe_buffer *buf = cs->pipebufs;
755
Miklos Szeredic3021622010-05-25 15:06:07 +0200756 if (!cs->write) {
757 err = buf->ops->confirm(cs->pipe, buf);
758 if (err)
759 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200760
Miklos Szeredic3021622010-05-25 15:06:07 +0200761 BUG_ON(!cs->nr_segs);
762 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200763 cs->pg = buf->page;
764 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200765 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200766 cs->pipebufs++;
767 cs->nr_segs--;
768 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200769 if (cs->nr_segs == cs->pipe->buffers)
770 return -EIO;
771
772 page = alloc_page(GFP_HIGHUSER);
773 if (!page)
774 return -ENOMEM;
775
776 buf->page = page;
777 buf->offset = 0;
778 buf->len = 0;
779
780 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200781 cs->pg = page;
782 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200783 cs->len = PAGE_SIZE;
784 cs->pipebufs++;
785 cs->nr_segs++;
786 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200787 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400788 size_t off;
789 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200790 if (err < 0)
791 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400792 BUG_ON(!err);
793 cs->len = err;
794 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200795 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400796 cs->offset = off;
797 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700798 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700799
Miklos Szeredidc008092015-07-01 16:25:58 +0200800 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700801}
802
803/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800804static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700805{
806 unsigned ncpy = min(*size, cs->len);
807 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200808 void *pgaddr = kmap_atomic(cs->pg);
809 void *buf = pgaddr + cs->offset;
810
Miklos Szeredi334f4852005-09-09 13:10:27 -0700811 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200812 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700813 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200814 memcpy(*val, buf, ncpy);
815
816 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700817 *val += ncpy;
818 }
819 *size -= ncpy;
820 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200821 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700822 return ncpy;
823}
824
Miklos Szeredice534fb2010-05-25 15:06:07 +0200825static int fuse_check_page(struct page *page)
826{
827 if (page_mapcount(page) ||
828 page->mapping != NULL ||
829 page_count(page) != 1 ||
830 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
831 ~(1 << PG_locked |
832 1 << PG_referenced |
833 1 << PG_uptodate |
834 1 << PG_lru |
835 1 << PG_active |
836 1 << PG_reclaim))) {
837 printk(KERN_WARNING "fuse: trying to steal weird page\n");
838 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);
839 return 1;
840 }
841 return 0;
842}
843
844static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
845{
846 int err;
847 struct page *oldpage = *pagep;
848 struct page *newpage;
849 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200850
Miklos Szeredidc008092015-07-01 16:25:58 +0200851 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200852 if (err)
853 return err;
854
Miklos Szeredice534fb2010-05-25 15:06:07 +0200855 fuse_copy_finish(cs);
856
857 err = buf->ops->confirm(cs->pipe, buf);
858 if (err)
859 return err;
860
861 BUG_ON(!cs->nr_segs);
862 cs->currbuf = buf;
863 cs->len = buf->len;
864 cs->pipebufs++;
865 cs->nr_segs--;
866
867 if (cs->len != PAGE_SIZE)
868 goto out_fallback;
869
870 if (buf->ops->steal(cs->pipe, buf) != 0)
871 goto out_fallback;
872
873 newpage = buf->page;
874
Miklos Szerediaa991b32015-02-26 11:45:47 +0100875 if (!PageUptodate(newpage))
876 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200877
878 ClearPageMappedToDisk(newpage);
879
880 if (fuse_check_page(newpage) != 0)
881 goto out_fallback_unlock;
882
Miklos Szeredice534fb2010-05-25 15:06:07 +0200883 /*
884 * This is a new and locked page, it shouldn't be mapped or
885 * have any special flags on it
886 */
887 if (WARN_ON(page_mapped(oldpage)))
888 goto out_fallback_unlock;
889 if (WARN_ON(page_has_private(oldpage)))
890 goto out_fallback_unlock;
891 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
892 goto out_fallback_unlock;
893 if (WARN_ON(PageMlocked(oldpage)))
894 goto out_fallback_unlock;
895
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700896 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200897 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700898 unlock_page(newpage);
899 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200900 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700901
Miklos Szeredice534fb2010-05-25 15:06:07 +0200902 page_cache_get(newpage);
903
904 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
905 lru_cache_add_file(newpage);
906
907 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200908 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200909 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200910 err = -ENOENT;
911 else
912 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200913 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200914
915 if (err) {
916 unlock_page(newpage);
917 page_cache_release(newpage);
918 return err;
919 }
920
921 unlock_page(oldpage);
922 page_cache_release(oldpage);
923 cs->len = 0;
924
925 return 0;
926
927out_fallback_unlock:
928 unlock_page(newpage);
929out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200930 cs->pg = buf->page;
931 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200932
Miklos Szeredidc008092015-07-01 16:25:58 +0200933 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200934 if (err)
935 return err;
936
937 return 1;
938}
939
Miklos Szeredic3021622010-05-25 15:06:07 +0200940static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
941 unsigned offset, unsigned count)
942{
943 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200944 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200945
946 if (cs->nr_segs == cs->pipe->buffers)
947 return -EIO;
948
Miklos Szeredidc008092015-07-01 16:25:58 +0200949 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200950 if (err)
951 return err;
952
Miklos Szeredic3021622010-05-25 15:06:07 +0200953 fuse_copy_finish(cs);
954
955 buf = cs->pipebufs;
956 page_cache_get(page);
957 buf->page = page;
958 buf->offset = offset;
959 buf->len = count;
960
961 cs->pipebufs++;
962 cs->nr_segs++;
963 cs->len = 0;
964
965 return 0;
966}
967
Miklos Szeredi334f4852005-09-09 13:10:27 -0700968/*
969 * Copy a page in the request to/from the userspace buffer. Must be
970 * done atomically
971 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200972static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800973 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700974{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200975 int err;
976 struct page *page = *pagep;
977
Miklos Szeredib6777c42010-10-26 14:22:27 -0700978 if (page && zeroing && count < PAGE_SIZE)
979 clear_highpage(page);
980
Miklos Szeredi334f4852005-09-09 13:10:27 -0700981 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200982 if (cs->write && cs->pipebufs && page) {
983 return fuse_ref_page(cs, page, offset, count);
984 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200985 if (cs->move_pages && page &&
986 offset == 0 && count == PAGE_SIZE) {
987 err = fuse_try_move_page(cs, pagep);
988 if (err <= 0)
989 return err;
990 } else {
991 err = fuse_copy_fill(cs);
992 if (err)
993 return err;
994 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100995 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700996 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800997 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700998 void *buf = mapaddr + offset;
999 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +08001000 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001001 } else
1002 offset += fuse_copy_do(cs, NULL, &count);
1003 }
1004 if (page && !cs->write)
1005 flush_dcache_page(page);
1006 return 0;
1007}
1008
1009/* Copy pages in the request to/from userspace buffer */
1010static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
1011 int zeroing)
1012{
1013 unsigned i;
1014 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001015
1016 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +02001017 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001018 unsigned offset = req->page_descs[i].offset;
1019 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001020
1021 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1022 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001023 if (err)
1024 return err;
1025
1026 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001027 }
1028 return 0;
1029}
1030
1031/* Copy a single argument in the request to/from userspace buffer */
1032static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1033{
1034 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001035 if (!cs->len) {
1036 int err = fuse_copy_fill(cs);
1037 if (err)
1038 return err;
1039 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001040 fuse_copy_do(cs, &val, &size);
1041 }
1042 return 0;
1043}
1044
1045/* Copy request arguments to/from userspace buffer */
1046static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1047 unsigned argpages, struct fuse_arg *args,
1048 int zeroing)
1049{
1050 int err = 0;
1051 unsigned i;
1052
1053 for (i = 0; !err && i < numargs; i++) {
1054 struct fuse_arg *arg = &args[i];
1055 if (i == numargs - 1 && argpages)
1056 err = fuse_copy_pages(cs, arg->size, zeroing);
1057 else
1058 err = fuse_copy_one(cs, arg->value, arg->size);
1059 }
1060 return err;
1061}
1062
Miklos Szeredif88996a2015-07-01 16:26:01 +02001063static int forget_pending(struct fuse_iqueue *fiq)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001064{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001065 return fiq->forget_list_head.next != NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001066}
1067
Miklos Szeredif88996a2015-07-01 16:26:01 +02001068static int request_pending(struct fuse_iqueue *fiq)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001069{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001070 return !list_empty(&fiq->pending) || !list_empty(&fiq->interrupts) ||
1071 forget_pending(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001072}
1073
Miklos Szeredi334f4852005-09-09 13:10:27 -07001074/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001075 * Transfer an interrupt request to userspace
1076 *
1077 * Unlike other requests this is assembled on demand, without a need
1078 * to allocate a separate fuse_req structure.
1079 *
Miklos Szeredifd22d622015-07-01 16:26:03 +02001080 * Called with fiq->waitq.lock held, releases it
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001081 */
Miklos Szeredifd22d622015-07-01 16:26:03 +02001082static int fuse_read_interrupt(struct fuse_iqueue *fiq,
1083 struct fuse_copy_state *cs,
Miklos Szeredic3021622010-05-25 15:06:07 +02001084 size_t nbytes, struct fuse_req *req)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001085__releases(fiq->waitq.lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001086{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001087 struct fuse_in_header ih;
1088 struct fuse_interrupt_in arg;
1089 unsigned reqsize = sizeof(ih) + sizeof(arg);
1090 int err;
1091
1092 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001093 req->intr_unique = fuse_get_unique(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001094 memset(&ih, 0, sizeof(ih));
1095 memset(&arg, 0, sizeof(arg));
1096 ih.len = reqsize;
1097 ih.opcode = FUSE_INTERRUPT;
1098 ih.unique = req->intr_unique;
1099 arg.unique = req->in.h.unique;
1100
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001101 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001102 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001103 return -EINVAL;
1104
Miklos Szeredic3021622010-05-25 15:06:07 +02001105 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001106 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001107 err = fuse_copy_one(cs, &arg, sizeof(arg));
1108 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001109
1110 return err ? err : reqsize;
1111}
1112
Miklos Szeredif88996a2015-07-01 16:26:01 +02001113static struct fuse_forget_link *dequeue_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001114 unsigned max,
1115 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001116{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001117 struct fuse_forget_link *head = fiq->forget_list_head.next;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001118 struct fuse_forget_link **newhead = &head;
1119 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001120
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001121 for (count = 0; *newhead != NULL && count < max; count++)
1122 newhead = &(*newhead)->next;
1123
Miklos Szeredif88996a2015-07-01 16:26:01 +02001124 fiq->forget_list_head.next = *newhead;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001125 *newhead = NULL;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001126 if (fiq->forget_list_head.next == NULL)
1127 fiq->forget_list_tail = &fiq->forget_list_head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001128
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001129 if (countp != NULL)
1130 *countp = count;
1131
1132 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001133}
1134
Miklos Szeredifd22d622015-07-01 16:26:03 +02001135static int fuse_read_single_forget(struct fuse_iqueue *fiq,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001136 struct fuse_copy_state *cs,
1137 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001138__releases(fiq->waitq.lock)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001139{
1140 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001141 struct fuse_forget_link *forget = dequeue_forget(fiq, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001142 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001143 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001144 };
1145 struct fuse_in_header ih = {
1146 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001147 .nodeid = forget->forget_one.nodeid,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001148 .unique = fuse_get_unique(fiq),
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001149 .len = sizeof(ih) + sizeof(arg),
1150 };
1151
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001152 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001153 kfree(forget);
1154 if (nbytes < ih.len)
1155 return -EINVAL;
1156
1157 err = fuse_copy_one(cs, &ih, sizeof(ih));
1158 if (!err)
1159 err = fuse_copy_one(cs, &arg, sizeof(arg));
1160 fuse_copy_finish(cs);
1161
1162 if (err)
1163 return err;
1164
1165 return ih.len;
1166}
1167
Miklos Szeredifd22d622015-07-01 16:26:03 +02001168static int fuse_read_batch_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001169 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001170__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001171{
1172 int err;
1173 unsigned max_forgets;
1174 unsigned count;
1175 struct fuse_forget_link *head;
1176 struct fuse_batch_forget_in arg = { .count = 0 };
1177 struct fuse_in_header ih = {
1178 .opcode = FUSE_BATCH_FORGET,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001179 .unique = fuse_get_unique(fiq),
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001180 .len = sizeof(ih) + sizeof(arg),
1181 };
1182
1183 if (nbytes < ih.len) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001184 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001185 return -EINVAL;
1186 }
1187
1188 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001189 head = dequeue_forget(fiq, max_forgets, &count);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001190 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001191
1192 arg.count = count;
1193 ih.len += count * sizeof(struct fuse_forget_one);
1194 err = fuse_copy_one(cs, &ih, sizeof(ih));
1195 if (!err)
1196 err = fuse_copy_one(cs, &arg, sizeof(arg));
1197
1198 while (head) {
1199 struct fuse_forget_link *forget = head;
1200
1201 if (!err) {
1202 err = fuse_copy_one(cs, &forget->forget_one,
1203 sizeof(forget->forget_one));
1204 }
1205 head = forget->next;
1206 kfree(forget);
1207 }
1208
1209 fuse_copy_finish(cs);
1210
1211 if (err)
1212 return err;
1213
1214 return ih.len;
1215}
1216
Miklos Szeredifd22d622015-07-01 16:26:03 +02001217static int fuse_read_forget(struct fuse_conn *fc, struct fuse_iqueue *fiq,
1218 struct fuse_copy_state *cs,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001219 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001220__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001221{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001222 if (fc->minor < 16 || fiq->forget_list_head.next->next == NULL)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001223 return fuse_read_single_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001224 else
Miklos Szeredifd22d622015-07-01 16:26:03 +02001225 return fuse_read_batch_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001226}
1227
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001228/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001229 * Read a single request into the userspace filesystem's buffer. This
1230 * function waits until a request is available, then removes it from
1231 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001232 * no reply is needed (FORGET) or request has been aborted or there
1233 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001234 * request_end(). Otherwise add it to the processing list, and set
1235 * the 'sent' flag.
1236 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001237static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1238 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001239{
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001240 ssize_t err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001241 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001242 struct fuse_pqueue *fpq = &fc->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001243 struct fuse_req *req;
1244 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001245 unsigned reqsize;
1246
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001247 restart:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001248 spin_lock(&fiq->waitq.lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001249 err = -EAGAIN;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001250 if ((file->f_flags & O_NONBLOCK) && fiq->connected &&
Miklos Szeredif88996a2015-07-01 16:26:01 +02001251 !request_pending(fiq))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001252 goto err_unlock;
1253
Miklos Szeredi52509212015-07-01 16:26:03 +02001254 err = wait_event_interruptible_exclusive_locked(fiq->waitq,
1255 !fiq->connected || request_pending(fiq));
1256 if (err)
1257 goto err_unlock;
1258
Miklos Szeredi334f4852005-09-09 13:10:27 -07001259 err = -ENODEV;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001260 if (!fiq->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001261 goto err_unlock;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001262
Miklos Szeredif88996a2015-07-01 16:26:01 +02001263 if (!list_empty(&fiq->interrupts)) {
1264 req = list_entry(fiq->interrupts.next, struct fuse_req,
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001265 intr_entry);
Miklos Szeredifd22d622015-07-01 16:26:03 +02001266 return fuse_read_interrupt(fiq, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001267 }
1268
Miklos Szeredif88996a2015-07-01 16:26:01 +02001269 if (forget_pending(fiq)) {
1270 if (list_empty(&fiq->pending) || fiq->forget_batch-- > 0)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001271 return fuse_read_forget(fc, fiq, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001272
Miklos Szeredif88996a2015-07-01 16:26:01 +02001273 if (fiq->forget_batch <= -8)
1274 fiq->forget_batch = 16;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001275 }
1276
Miklos Szeredif88996a2015-07-01 16:26:01 +02001277 req = list_entry(fiq->pending.next, struct fuse_req, list);
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001278 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredief759252015-07-01 16:26:02 +02001279 list_del_init(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001280 spin_unlock(&fiq->waitq.lock);
1281
Miklos Szeredifd22d622015-07-01 16:26:03 +02001282 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001283 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001284 reqsize = in->h.len;
1285 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001286 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001287 req->out.h.error = -EIO;
1288 /* SETXATTR is special, since it may contain too large data */
1289 if (in->h.opcode == FUSE_SETXATTR)
1290 req->out.h.error = -E2BIG;
1291 request_end(fc, req);
1292 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001293 }
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001294 spin_lock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001295 list_add(&req->list, &fpq->io);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001296 spin_unlock(&fpq->lock);
Miklos Szeredid7133112006-04-10 22:54:55 -07001297 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001298 cs->req = req;
1299 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001300 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001301 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001302 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001303 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001304 spin_lock(&fc->lock);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001305 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001306 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001307 if (!fpq->connected) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001308 err = -ENODEV;
1309 goto out_end;
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001310 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001311 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001312 req->out.h.error = -EIO;
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001313 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001314 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001315 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001316 err = reqsize;
1317 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001318 }
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001319 list_move_tail(&req->list, &fpq->processing);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001320 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001321 set_bit(FR_SENT, &req->flags);
1322 /* matches barrier in request_wait_answer() */
1323 smp_mb__after_atomic();
1324 if (test_bit(FR_INTERRUPTED, &req->flags))
1325 queue_interrupt(fiq, req);
1326 spin_unlock(&fc->lock);
1327
Miklos Szeredi334f4852005-09-09 13:10:27 -07001328 return reqsize;
1329
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001330out_end:
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001331 if (!test_bit(FR_PRIVATE, &req->flags))
1332 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001333 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001334 request_end(fc, req);
1335 return err;
1336
Miklos Szeredi334f4852005-09-09 13:10:27 -07001337 err_unlock:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001338 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001339 return err;
1340}
1341
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001342static int fuse_dev_open(struct inode *inode, struct file *file)
1343{
1344 /*
1345 * The fuse device's file's private_data is used to hold
1346 * the fuse_conn(ection) when it is mounted, and is used to
1347 * keep track of whether the file has been mounted already.
1348 */
1349 file->private_data = NULL;
1350 return 0;
1351}
1352
Al Virofbdbacc2015-04-03 21:53:39 -04001353static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001354{
1355 struct fuse_copy_state cs;
1356 struct file *file = iocb->ki_filp;
1357 struct fuse_conn *fc = fuse_get_conn(file);
1358 if (!fc)
1359 return -EPERM;
1360
Al Virofbdbacc2015-04-03 21:53:39 -04001361 if (!iter_is_iovec(to))
1362 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001363
Miklos Szeredidc008092015-07-01 16:25:58 +02001364 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001365
1366 return fuse_dev_do_read(fc, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001367}
1368
Miklos Szeredic3021622010-05-25 15:06:07 +02001369static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1370 struct pipe_inode_info *pipe,
1371 size_t len, unsigned int flags)
1372{
1373 int ret;
1374 int page_nr = 0;
1375 int do_wakeup = 0;
1376 struct pipe_buffer *bufs;
1377 struct fuse_copy_state cs;
1378 struct fuse_conn *fc = fuse_get_conn(in);
1379 if (!fc)
1380 return -EPERM;
1381
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001382 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001383 if (!bufs)
1384 return -ENOMEM;
1385
Miklos Szeredidc008092015-07-01 16:25:58 +02001386 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001387 cs.pipebufs = bufs;
1388 cs.pipe = pipe;
1389 ret = fuse_dev_do_read(fc, in, &cs, len);
1390 if (ret < 0)
1391 goto out;
1392
1393 ret = 0;
1394 pipe_lock(pipe);
1395
1396 if (!pipe->readers) {
1397 send_sig(SIGPIPE, current, 0);
1398 if (!ret)
1399 ret = -EPIPE;
1400 goto out_unlock;
1401 }
1402
1403 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1404 ret = -EIO;
1405 goto out_unlock;
1406 }
1407
1408 while (page_nr < cs.nr_segs) {
1409 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1410 struct pipe_buffer *buf = pipe->bufs + newbuf;
1411
1412 buf->page = bufs[page_nr].page;
1413 buf->offset = bufs[page_nr].offset;
1414 buf->len = bufs[page_nr].len;
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001415 /*
1416 * Need to be careful about this. Having buf->ops in module
1417 * code can Oops if the buffer persists after module unload.
1418 */
1419 buf->ops = &nosteal_pipe_buf_ops;
Miklos Szeredic3021622010-05-25 15:06:07 +02001420
1421 pipe->nrbufs++;
1422 page_nr++;
1423 ret += buf->len;
1424
Al Viro6447a3c2013-03-21 11:01:38 -04001425 if (pipe->files)
Miklos Szeredic3021622010-05-25 15:06:07 +02001426 do_wakeup = 1;
1427 }
1428
1429out_unlock:
1430 pipe_unlock(pipe);
1431
1432 if (do_wakeup) {
1433 smp_mb();
1434 if (waitqueue_active(&pipe->wait))
1435 wake_up_interruptible(&pipe->wait);
1436 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1437 }
1438
1439out:
1440 for (; page_nr < cs.nr_segs; page_nr++)
1441 page_cache_release(bufs[page_nr].page);
1442
1443 kfree(bufs);
1444 return ret;
1445}
1446
Tejun Heo95668a62008-11-26 12:03:55 +01001447static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1448 struct fuse_copy_state *cs)
1449{
1450 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001451 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001452
1453 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001454 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001455
1456 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1457 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001458 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001459
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001460 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001461 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001462
1463err:
1464 fuse_copy_finish(cs);
1465 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001466}
1467
John Muir3b463ae2009-05-31 11:13:57 -04001468static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1469 struct fuse_copy_state *cs)
1470{
1471 struct fuse_notify_inval_inode_out outarg;
1472 int err = -EINVAL;
1473
1474 if (size != sizeof(outarg))
1475 goto err;
1476
1477 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1478 if (err)
1479 goto err;
1480 fuse_copy_finish(cs);
1481
1482 down_read(&fc->killsb);
1483 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001484 if (fc->sb) {
1485 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1486 outarg.off, outarg.len);
1487 }
John Muir3b463ae2009-05-31 11:13:57 -04001488 up_read(&fc->killsb);
1489 return err;
1490
1491err:
1492 fuse_copy_finish(cs);
1493 return err;
1494}
1495
1496static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1497 struct fuse_copy_state *cs)
1498{
1499 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001500 int err = -ENOMEM;
1501 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001502 struct qstr name;
1503
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001504 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1505 if (!buf)
1506 goto err;
1507
1508 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001509 if (size < sizeof(outarg))
1510 goto err;
1511
1512 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1513 if (err)
1514 goto err;
1515
1516 err = -ENAMETOOLONG;
1517 if (outarg.namelen > FUSE_NAME_MAX)
1518 goto err;
1519
Miklos Szeredic2183d12011-08-24 10:20:17 +02001520 err = -EINVAL;
1521 if (size != sizeof(outarg) + outarg.namelen + 1)
1522 goto err;
1523
John Muir3b463ae2009-05-31 11:13:57 -04001524 name.name = buf;
1525 name.len = outarg.namelen;
1526 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1527 if (err)
1528 goto err;
1529 fuse_copy_finish(cs);
1530 buf[outarg.namelen] = 0;
1531 name.hash = full_name_hash(name.name, name.len);
1532
1533 down_read(&fc->killsb);
1534 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001535 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001536 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1537 up_read(&fc->killsb);
1538 kfree(buf);
1539 return err;
1540
1541err:
1542 kfree(buf);
1543 fuse_copy_finish(cs);
1544 return err;
1545}
1546
1547static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1548 struct fuse_copy_state *cs)
1549{
1550 struct fuse_notify_delete_out outarg;
1551 int err = -ENOMEM;
1552 char *buf;
1553 struct qstr name;
1554
1555 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1556 if (!buf)
1557 goto err;
1558
1559 err = -EINVAL;
1560 if (size < sizeof(outarg))
1561 goto err;
1562
1563 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1564 if (err)
1565 goto err;
1566
1567 err = -ENAMETOOLONG;
1568 if (outarg.namelen > FUSE_NAME_MAX)
1569 goto err;
1570
1571 err = -EINVAL;
1572 if (size != sizeof(outarg) + outarg.namelen + 1)
1573 goto err;
1574
1575 name.name = buf;
1576 name.len = outarg.namelen;
1577 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1578 if (err)
1579 goto err;
1580 fuse_copy_finish(cs);
1581 buf[outarg.namelen] = 0;
1582 name.hash = full_name_hash(name.name, name.len);
1583
1584 down_read(&fc->killsb);
1585 err = -ENOENT;
1586 if (fc->sb)
1587 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1588 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001589 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001590 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001591 return err;
1592
1593err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001594 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001595 fuse_copy_finish(cs);
1596 return err;
1597}
1598
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001599static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1600 struct fuse_copy_state *cs)
1601{
1602 struct fuse_notify_store_out outarg;
1603 struct inode *inode;
1604 struct address_space *mapping;
1605 u64 nodeid;
1606 int err;
1607 pgoff_t index;
1608 unsigned int offset;
1609 unsigned int num;
1610 loff_t file_size;
1611 loff_t end;
1612
1613 err = -EINVAL;
1614 if (size < sizeof(outarg))
1615 goto out_finish;
1616
1617 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1618 if (err)
1619 goto out_finish;
1620
1621 err = -EINVAL;
1622 if (size - sizeof(outarg) != outarg.size)
1623 goto out_finish;
1624
1625 nodeid = outarg.nodeid;
1626
1627 down_read(&fc->killsb);
1628
1629 err = -ENOENT;
1630 if (!fc->sb)
1631 goto out_up_killsb;
1632
1633 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1634 if (!inode)
1635 goto out_up_killsb;
1636
1637 mapping = inode->i_mapping;
1638 index = outarg.offset >> PAGE_CACHE_SHIFT;
1639 offset = outarg.offset & ~PAGE_CACHE_MASK;
1640 file_size = i_size_read(inode);
1641 end = outarg.offset + outarg.size;
1642 if (end > file_size) {
1643 file_size = end;
1644 fuse_write_update_size(inode, file_size);
1645 }
1646
1647 num = outarg.size;
1648 while (num) {
1649 struct page *page;
1650 unsigned int this_num;
1651
1652 err = -ENOMEM;
1653 page = find_or_create_page(mapping, index,
1654 mapping_gfp_mask(mapping));
1655 if (!page)
1656 goto out_iput;
1657
1658 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1659 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001660 if (!err && offset == 0 &&
1661 (this_num == PAGE_CACHE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001662 SetPageUptodate(page);
1663 unlock_page(page);
1664 page_cache_release(page);
1665
1666 if (err)
1667 goto out_iput;
1668
1669 num -= this_num;
1670 offset = 0;
1671 index++;
1672 }
1673
1674 err = 0;
1675
1676out_iput:
1677 iput(inode);
1678out_up_killsb:
1679 up_read(&fc->killsb);
1680out_finish:
1681 fuse_copy_finish(cs);
1682 return err;
1683}
1684
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001685static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1686{
Mel Gormanb745bc82014-06-04 16:10:22 -07001687 release_pages(req->pages, req->num_pages, false);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001688}
1689
1690static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1691 struct fuse_notify_retrieve_out *outarg)
1692{
1693 int err;
1694 struct address_space *mapping = inode->i_mapping;
1695 struct fuse_req *req;
1696 pgoff_t index;
1697 loff_t file_size;
1698 unsigned int num;
1699 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001700 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001701 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001702
1703 offset = outarg->offset & ~PAGE_CACHE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001704 file_size = i_size_read(inode);
1705
1706 num = outarg->size;
1707 if (outarg->offset > file_size)
1708 num = 0;
1709 else if (outarg->offset + num > file_size)
1710 num = file_size - outarg->offset;
1711
1712 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1713 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1714
1715 req = fuse_get_req(fc, num_pages);
1716 if (IS_ERR(req))
1717 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001718
1719 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1720 req->in.h.nodeid = outarg->nodeid;
1721 req->in.numargs = 2;
1722 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001723 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001724 req->end = fuse_retrieve_end;
1725
1726 index = outarg->offset >> PAGE_CACHE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001727
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001728 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001729 struct page *page;
1730 unsigned int this_num;
1731
1732 page = find_get_page(mapping, index);
1733 if (!page)
1734 break;
1735
1736 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1737 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001738 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001739 req->num_pages++;
1740
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001741 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001742 num -= this_num;
1743 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001744 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001745 }
1746 req->misc.retrieve_in.offset = outarg->offset;
1747 req->misc.retrieve_in.size = total_len;
1748 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1749 req->in.args[0].value = &req->misc.retrieve_in;
1750 req->in.args[1].size = total_len;
1751
1752 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1753 if (err)
1754 fuse_retrieve_end(fc, req);
1755
1756 return err;
1757}
1758
1759static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1760 struct fuse_copy_state *cs)
1761{
1762 struct fuse_notify_retrieve_out outarg;
1763 struct inode *inode;
1764 int err;
1765
1766 err = -EINVAL;
1767 if (size != sizeof(outarg))
1768 goto copy_finish;
1769
1770 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1771 if (err)
1772 goto copy_finish;
1773
1774 fuse_copy_finish(cs);
1775
1776 down_read(&fc->killsb);
1777 err = -ENOENT;
1778 if (fc->sb) {
1779 u64 nodeid = outarg.nodeid;
1780
1781 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1782 if (inode) {
1783 err = fuse_retrieve(fc, inode, &outarg);
1784 iput(inode);
1785 }
1786 }
1787 up_read(&fc->killsb);
1788
1789 return err;
1790
1791copy_finish:
1792 fuse_copy_finish(cs);
1793 return err;
1794}
1795
Tejun Heo85993962008-11-26 12:03:55 +01001796static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1797 unsigned int size, struct fuse_copy_state *cs)
1798{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001799 /* Don't try to move pages (yet) */
1800 cs->move_pages = 0;
1801
Tejun Heo85993962008-11-26 12:03:55 +01001802 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001803 case FUSE_NOTIFY_POLL:
1804 return fuse_notify_poll(fc, size, cs);
1805
John Muir3b463ae2009-05-31 11:13:57 -04001806 case FUSE_NOTIFY_INVAL_INODE:
1807 return fuse_notify_inval_inode(fc, size, cs);
1808
1809 case FUSE_NOTIFY_INVAL_ENTRY:
1810 return fuse_notify_inval_entry(fc, size, cs);
1811
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001812 case FUSE_NOTIFY_STORE:
1813 return fuse_notify_store(fc, size, cs);
1814
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001815 case FUSE_NOTIFY_RETRIEVE:
1816 return fuse_notify_retrieve(fc, size, cs);
1817
John Muir451d0f52011-12-06 21:50:06 +01001818 case FUSE_NOTIFY_DELETE:
1819 return fuse_notify_delete(fc, size, cs);
1820
Tejun Heo85993962008-11-26 12:03:55 +01001821 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001822 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001823 return -EINVAL;
1824 }
1825}
1826
Miklos Szeredi334f4852005-09-09 13:10:27 -07001827/* Look up request on processing list by unique ID */
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001828static struct fuse_req *request_find(struct fuse_pqueue *fpq, u64 unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001829{
Dong Fang05726ac2013-07-30 22:50:01 -04001830 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001831
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001832 list_for_each_entry(req, &fpq->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001833 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001834 return req;
1835 }
1836 return NULL;
1837}
1838
1839static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1840 unsigned nbytes)
1841{
1842 unsigned reqsize = sizeof(struct fuse_out_header);
1843
1844 if (out->h.error)
1845 return nbytes != reqsize ? -EINVAL : 0;
1846
1847 reqsize += len_args(out->numargs, out->args);
1848
1849 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1850 return -EINVAL;
1851 else if (reqsize > nbytes) {
1852 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1853 unsigned diffsize = reqsize - nbytes;
1854 if (diffsize > lastarg->size)
1855 return -EINVAL;
1856 lastarg->size -= diffsize;
1857 }
1858 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1859 out->page_zeroing);
1860}
1861
1862/*
1863 * Write a single reply to a request. First the header is copied from
1864 * the write buffer. The request is then searched on the processing
1865 * list by the unique ID found in the header. If found, then remove
1866 * it from the list and copy the rest of the buffer to the request.
1867 * The request is finished by calling request_end()
1868 */
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001869static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1870 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001871{
1872 int err;
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001873 struct fuse_pqueue *fpq = &fc->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001874 struct fuse_req *req;
1875 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001876
Miklos Szeredi334f4852005-09-09 13:10:27 -07001877 if (nbytes < sizeof(struct fuse_out_header))
1878 return -EINVAL;
1879
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001880 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001881 if (err)
1882 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001883
Miklos Szeredi334f4852005-09-09 13:10:27 -07001884 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001885 if (oh.len != nbytes)
1886 goto err_finish;
1887
1888 /*
1889 * Zero oh.unique indicates unsolicited notification message
1890 * and error contains notification code.
1891 */
1892 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001893 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001894 return err ? err : nbytes;
1895 }
1896
1897 err = -EINVAL;
1898 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001899 goto err_finish;
1900
Miklos Szeredid7133112006-04-10 22:54:55 -07001901 spin_lock(&fc->lock);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001902 spin_lock(&fpq->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001903 err = -ENOENT;
Miklos Szeredie96edd92015-07-01 16:26:04 +02001904 if (!fpq->connected)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001905 goto err_unlock_pq;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001906
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001907 req = request_find(fpq, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001908 if (!req)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001909 goto err_unlock_pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001910
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001911 /* Is it an interrupt reply? */
1912 if (req->intr_unique == oh.unique) {
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001913 spin_unlock(&fpq->lock);
1914
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001915 err = -EINVAL;
1916 if (nbytes != sizeof(struct fuse_out_header))
1917 goto err_unlock;
1918
1919 if (oh.error == -ENOSYS)
1920 fc->no_interrupt = 1;
1921 else if (oh.error == -EAGAIN)
Miklos Szeredif88996a2015-07-01 16:26:01 +02001922 queue_interrupt(&fc->iq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001923
1924 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001925 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001926 return nbytes;
1927 }
1928
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001929 clear_bit(FR_SENT, &req->flags);
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001930 list_move(&req->list, &fpq->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001931 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001932 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001933 spin_unlock(&fpq->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001934 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001935 if (!req->out.page_replace)
1936 cs->move_pages = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -07001937 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001938
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001939 err = copy_out_args(cs, &req->out, nbytes);
1940 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001941
Miklos Szeredid7133112006-04-10 22:54:55 -07001942 spin_lock(&fc->lock);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001943 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001944 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001945 if (!fpq->connected)
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001946 err = -ENOENT;
1947 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001948 req->out.h.error = -EIO;
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001949 if (!test_bit(FR_PRIVATE, &req->flags))
1950 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001951 spin_unlock(&fpq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001952 request_end(fc, req);
1953
1954 return err ? err : nbytes;
1955
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001956 err_unlock_pq:
1957 spin_unlock(&fpq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001958 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001959 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001960 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001961 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001962 return err;
1963}
1964
Al Virofbdbacc2015-04-03 21:53:39 -04001965static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001966{
1967 struct fuse_copy_state cs;
1968 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1969 if (!fc)
1970 return -EPERM;
1971
Al Virofbdbacc2015-04-03 21:53:39 -04001972 if (!iter_is_iovec(from))
1973 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001974
Miklos Szeredidc008092015-07-01 16:25:58 +02001975 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001976
1977 return fuse_dev_do_write(fc, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001978}
1979
1980static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1981 struct file *out, loff_t *ppos,
1982 size_t len, unsigned int flags)
1983{
1984 unsigned nbuf;
1985 unsigned idx;
1986 struct pipe_buffer *bufs;
1987 struct fuse_copy_state cs;
1988 struct fuse_conn *fc;
1989 size_t rem;
1990 ssize_t ret;
1991
1992 fc = fuse_get_conn(out);
1993 if (!fc)
1994 return -EPERM;
1995
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001996 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001997 if (!bufs)
1998 return -ENOMEM;
1999
2000 pipe_lock(pipe);
2001 nbuf = 0;
2002 rem = 0;
2003 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
2004 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
2005
2006 ret = -EINVAL;
2007 if (rem < len) {
2008 pipe_unlock(pipe);
2009 goto out;
2010 }
2011
2012 rem = len;
2013 while (rem) {
2014 struct pipe_buffer *ibuf;
2015 struct pipe_buffer *obuf;
2016
2017 BUG_ON(nbuf >= pipe->buffers);
2018 BUG_ON(!pipe->nrbufs);
2019 ibuf = &pipe->bufs[pipe->curbuf];
2020 obuf = &bufs[nbuf];
2021
2022 if (rem >= ibuf->len) {
2023 *obuf = *ibuf;
2024 ibuf->ops = NULL;
2025 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
2026 pipe->nrbufs--;
2027 } else {
2028 ibuf->ops->get(pipe, ibuf);
2029 *obuf = *ibuf;
2030 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2031 obuf->len = rem;
2032 ibuf->offset += obuf->len;
2033 ibuf->len -= obuf->len;
2034 }
2035 nbuf++;
2036 rem -= obuf->len;
2037 }
2038 pipe_unlock(pipe);
2039
Miklos Szeredidc008092015-07-01 16:25:58 +02002040 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002041 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04002042 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002043 cs.pipe = pipe;
2044
Miklos Szeredice534fb2010-05-25 15:06:07 +02002045 if (flags & SPLICE_F_MOVE)
2046 cs.move_pages = 1;
2047
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002048 ret = fuse_dev_do_write(fc, &cs, len);
2049
2050 for (idx = 0; idx < nbuf; idx++) {
2051 struct pipe_buffer *buf = &bufs[idx];
2052 buf->ops->release(pipe, buf);
2053 }
2054out:
2055 kfree(bufs);
2056 return ret;
2057}
2058
Miklos Szeredi334f4852005-09-09 13:10:27 -07002059static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2060{
Miklos Szeredi334f4852005-09-09 13:10:27 -07002061 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002062 struct fuse_iqueue *fiq;
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002063 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002064 if (!fc)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002065 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002066
Miklos Szeredif88996a2015-07-01 16:26:01 +02002067 fiq = &fc->iq;
2068 poll_wait(file, &fiq->waitq, wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002069
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002070 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +02002071 if (!fiq->connected)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002072 mask = POLLERR;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002073 else if (request_pending(fiq))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002074 mask |= POLLIN | POLLRDNORM;
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002075 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002076
2077 return mask;
2078}
2079
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002080/*
2081 * Abort all requests on the given list (pending or processing)
2082 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002083 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002084 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002085static void end_requests(struct fuse_conn *fc, struct list_head *head)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02002086__releases(fc->lock)
2087__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002088{
2089 while (!list_empty(head)) {
2090 struct fuse_req *req;
2091 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002092 req->out.h.error = -ECONNABORTED;
Miklos Szeredi33e14b42015-07-01 16:26:01 +02002093 clear_bit(FR_PENDING, &req->flags);
2094 clear_bit(FR_SENT, &req->flags);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002095 list_del_init(&req->list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002096 request_end(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07002097 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002098 }
2099}
2100
Bryan Green357ccf22011-03-01 16:43:52 -08002101static void end_polls(struct fuse_conn *fc)
2102{
2103 struct rb_node *p;
2104
2105 p = rb_first(&fc->polled_files);
2106
2107 while (p) {
2108 struct fuse_file *ff;
2109 ff = rb_entry(p, struct fuse_file, polled_node);
2110 wake_up_interruptible_all(&ff->poll_wait);
2111
2112 p = rb_next(p);
2113 }
2114}
2115
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002116/*
2117 * Abort all requests.
2118 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002119 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2120 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002121 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002122 * The same effect is usually achievable through killing the filesystem daemon
2123 * and all users of the filesystem. The exception is the combination of an
2124 * asynchronous request and the tricky deadlock (see
2125 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002126 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002127 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2128 * requests, they should be finished off immediately. Locked requests will be
2129 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2130 * requests. It is possible that some request will finish before we can. This
2131 * is OK, the request will in that case be removed from the list before we touch
2132 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002133 */
2134void fuse_abort_conn(struct fuse_conn *fc)
2135{
Miklos Szeredif88996a2015-07-01 16:26:01 +02002136 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02002137 struct fuse_pqueue *fpq = &fc->pq;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002138
Miklos Szeredid7133112006-04-10 22:54:55 -07002139 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002140 if (fc->connected) {
Miklos Szeredib716d422015-07-01 16:25:59 +02002141 struct fuse_req *req, *next;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002142 LIST_HEAD(to_end1);
2143 LIST_HEAD(to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002144
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002145 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002146 fc->blocked = 0;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002147 fuse_set_initialized(fc);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02002148 spin_lock(&fpq->lock);
Miklos Szeredie96edd92015-07-01 16:26:04 +02002149 fpq->connected = 0;
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02002150 list_for_each_entry_safe(req, next, &fpq->io, list) {
Miklos Szeredib716d422015-07-01 16:25:59 +02002151 req->out.h.error = -ECONNABORTED;
2152 spin_lock(&req->waitq.lock);
2153 set_bit(FR_ABORTED, &req->flags);
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02002154 if (!test_bit(FR_LOCKED, &req->flags)) {
2155 set_bit(FR_PRIVATE, &req->flags);
Miklos Szeredi41f98272015-07-01 16:25:59 +02002156 list_move(&req->list, &to_end1);
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02002157 }
Miklos Szeredib716d422015-07-01 16:25:59 +02002158 spin_unlock(&req->waitq.lock);
2159 }
Miklos Szeredi24b4d332015-07-01 16:26:05 +02002160 list_splice_init(&fpq->processing, &to_end2);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02002161 spin_unlock(&fpq->lock);
Miklos Szeredi41f98272015-07-01 16:25:59 +02002162 fc->max_background = UINT_MAX;
2163 flush_bg_queue(fc);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002164
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002165 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002166 fiq->connected = 0;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002167 list_splice_init(&fiq->pending, &to_end2);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002168 while (forget_pending(fiq))
2169 kfree(dequeue_forget(fiq, 1, NULL));
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002170 wake_up_all_locked(&fiq->waitq);
2171 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002172 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
2173
Miklos Szeredi41f98272015-07-01 16:25:59 +02002174 while (!list_empty(&to_end1)) {
2175 req = list_first_entry(&to_end1, struct fuse_req, list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002176 __fuse_get_request(req);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002177 list_del_init(&req->list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002178 request_end(fc, req);
2179 spin_lock(&fc->lock);
2180 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002181 end_requests(fc, &to_end2);
Bryan Green357ccf22011-03-01 16:43:52 -08002182 end_polls(fc);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002183 wake_up_all(&fc->blocked_waitq);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002184 }
Miklos Szeredid7133112006-04-10 22:54:55 -07002185 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002186}
Tejun Heo08cbf542009-04-14 10:54:53 +09002187EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002188
Tejun Heo08cbf542009-04-14 10:54:53 +09002189int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002190{
Miklos Szeredi0720b312006-04-10 22:54:55 -07002191 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002192 if (fc) {
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02002193 WARN_ON(!list_empty(&fc->pq.io));
Miklos Szeredif88996a2015-07-01 16:26:01 +02002194 WARN_ON(fc->iq.fasync != NULL);
Miklos Szerediccd0a0b2015-07-01 16:25:57 +02002195 fuse_abort_conn(fc);
Miklos Szeredibafa9652006-06-25 05:48:51 -07002196 fuse_conn_put(fc);
Jeff Dike385a17b2006-04-10 22:54:52 -07002197 }
Miklos Szeredif543f252006-01-16 22:14:35 -08002198
Miklos Szeredi334f4852005-09-09 13:10:27 -07002199 return 0;
2200}
Tejun Heo08cbf542009-04-14 10:54:53 +09002201EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002202
Jeff Dike385a17b2006-04-10 22:54:52 -07002203static int fuse_dev_fasync(int fd, struct file *file, int on)
2204{
2205 struct fuse_conn *fc = fuse_get_conn(file);
2206 if (!fc)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002207 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002208
2209 /* No locking - fasync_helper does its own locking */
Miklos Szeredif88996a2015-07-01 16:26:01 +02002210 return fasync_helper(fd, file, on, &fc->iq.fasync);
Jeff Dike385a17b2006-04-10 22:54:52 -07002211}
2212
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002213const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002214 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002215 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002216 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002217 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002218 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002219 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002220 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002221 .poll = fuse_dev_poll,
2222 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002223 .fasync = fuse_dev_fasync,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002224};
Tejun Heo08cbf542009-04-14 10:54:53 +09002225EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002226
2227static struct miscdevice fuse_miscdevice = {
2228 .minor = FUSE_MINOR,
2229 .name = "fuse",
2230 .fops = &fuse_dev_operations,
2231};
2232
2233int __init fuse_dev_init(void)
2234{
2235 int err = -ENOMEM;
2236 fuse_req_cachep = kmem_cache_create("fuse_request",
2237 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002238 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002239 if (!fuse_req_cachep)
2240 goto out;
2241
2242 err = misc_register(&fuse_miscdevice);
2243 if (err)
2244 goto out_cache_clean;
2245
2246 return 0;
2247
2248 out_cache_clean:
2249 kmem_cache_destroy(fuse_req_cachep);
2250 out:
2251 return err;
2252}
2253
2254void fuse_dev_cleanup(void)
2255{
2256 misc_deregister(&fuse_miscdevice);
2257 kmem_cache_destroy(fuse_req_cachep);
2258}