blob: cd242fc6a92bde7db31f2a49161c0c30de2d1aea [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;
Miklos Szeredi365ae712015-07-01 16:26:06 +0200387
388 if (test_and_set_bit(FR_FINISHED, &req->flags)) {
389 spin_unlock(&fc->lock);
390 return;
391 }
392
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700393 req->end = NULL;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200394 spin_lock(&fiq->waitq.lock);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200395 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200396 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200397 WARN_ON(test_bit(FR_PENDING, &req->flags));
398 WARN_ON(test_bit(FR_SENT, &req->flags));
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200399 if (test_bit(FR_BACKGROUND, &req->flags)) {
400 clear_bit(FR_BACKGROUND, &req->flags);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400401 if (fc->num_background == fc->max_background)
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700402 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400403
404 /* Wake up next waiter, if any */
Miklos Szeredi3c18ef82013-04-17 21:50:58 +0200405 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400406 wake_up(&fc->blocked_waitq);
407
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700408 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900409 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200410 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
411 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700412 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700413 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800414 fc->active_background--;
415 flush_bg_queue(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700416 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700417 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700418 wake_up(&req->waitq);
419 if (end)
420 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100421 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700422}
423
Miklos Szeredif88996a2015-07-01 16:26:01 +0200424static void queue_interrupt(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700425{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200426 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200427 if (list_empty(&req->intr_entry)) {
428 list_add_tail(&req->intr_entry, &fiq->interrupts);
429 wake_up_locked(&fiq->waitq);
430 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200431 spin_unlock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200432 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700433}
434
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700435static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700436{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200437 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic4775262015-07-01 16:26:00 +0200438 int err;
439
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700440 if (!fc->no_interrupt) {
441 /* Any signal may interrupt this */
Miklos Szeredic4775262015-07-01 16:26:00 +0200442 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200443 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200444 if (!err)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700445 return;
446
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200447 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200448 /* matches barrier in fuse_dev_do_read() */
449 smp_mb__after_atomic();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200450 if (test_bit(FR_SENT, &req->flags))
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200451 queue_interrupt(fiq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700452 }
453
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200454 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700455 sigset_t oldset;
456
457 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700458 block_sigs(&oldset);
Miklos Szeredic4775262015-07-01 16:26:00 +0200459 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200460 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700461 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700462
Miklos Szeredic4775262015-07-01 16:26:00 +0200463 if (!err)
Miklos Szeredia131de02007-10-16 23:31:04 -0700464 return;
465
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200466 spin_lock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700467 /* Request is not yet in userspace, bail out */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200468 if (test_bit(FR_PENDING, &req->flags)) {
Miklos Szeredia131de02007-10-16 23:31:04 -0700469 list_del(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200470 spin_unlock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700471 __fuse_put_request(req);
472 req->out.h.error = -EINTR;
473 return;
474 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200475 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700476 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700477
Miklos Szeredia131de02007-10-16 23:31:04 -0700478 /*
479 * Either request is already in userspace, or it was forced.
480 * Wait it out.
481 */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200482 wait_event(req->waitq, test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi334f4852005-09-09 13:10:27 -0700483}
484
Eric Wong6a4e9222013-02-04 13:04:44 +0000485static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700486{
Miklos Szeredie16714d2015-07-01 16:26:01 +0200487 struct fuse_iqueue *fiq = &fc->iq;
488
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200489 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200490 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200491 if (!fiq->connected) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200492 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700493 req->out.h.error = -ENOTCONN;
Miklos Szeredic4775262015-07-01 16:26:00 +0200494 } else {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200495 req->in.h.unique = fuse_get_unique(fiq);
496 queue_request(fiq, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700497 /* acquire extra reference, since request is still needed
498 after request_end() */
499 __fuse_get_request(req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200500 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700501
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700502 request_wait_answer(fc, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200503 /* Pairs with smp_wmb() in request_end() */
504 smp_rmb();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700505 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700506}
Eric Wong6a4e9222013-02-04 13:04:44 +0000507
508void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
509{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200510 __set_bit(FR_ISREPLY, &req->flags);
511 if (!test_bit(FR_WAITING, &req->flags)) {
512 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200513 atomic_inc(&fc->num_waiting);
514 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000515 __fuse_request_send(fc, req);
516}
Tejun Heo08cbf542009-04-14 10:54:53 +0900517EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700518
Miklos Szeredi21f62172015-01-06 10:45:35 +0100519static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
520{
521 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
522 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
523
524 if (fc->minor < 9) {
525 switch (args->in.h.opcode) {
526 case FUSE_LOOKUP:
527 case FUSE_CREATE:
528 case FUSE_MKNOD:
529 case FUSE_MKDIR:
530 case FUSE_SYMLINK:
531 case FUSE_LINK:
532 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
533 break;
534 case FUSE_GETATTR:
535 case FUSE_SETATTR:
536 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
537 break;
538 }
539 }
540 if (fc->minor < 12) {
541 switch (args->in.h.opcode) {
542 case FUSE_CREATE:
543 args->in.args[0].size = sizeof(struct fuse_open_in);
544 break;
545 case FUSE_MKNOD:
546 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
547 break;
548 }
549 }
550}
551
Miklos Szeredi70781872014-12-12 09:49:05 +0100552ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
553{
554 struct fuse_req *req;
555 ssize_t ret;
556
557 req = fuse_get_req(fc, 0);
558 if (IS_ERR(req))
559 return PTR_ERR(req);
560
Miklos Szeredi21f62172015-01-06 10:45:35 +0100561 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
562 fuse_adjust_compat(fc, args);
563
Miklos Szeredi70781872014-12-12 09:49:05 +0100564 req->in.h.opcode = args->in.h.opcode;
565 req->in.h.nodeid = args->in.h.nodeid;
566 req->in.numargs = args->in.numargs;
567 memcpy(req->in.args, args->in.args,
568 args->in.numargs * sizeof(struct fuse_in_arg));
569 req->out.argvar = args->out.argvar;
570 req->out.numargs = args->out.numargs;
571 memcpy(req->out.args, args->out.args,
572 args->out.numargs * sizeof(struct fuse_arg));
573 fuse_request_send(fc, req);
574 ret = req->out.h.error;
575 if (!ret && args->out.argvar) {
576 BUG_ON(args->out.numargs != 1);
577 ret = req->out.args[0].size;
578 }
579 fuse_put_request(fc, req);
580
581 return ret;
582}
583
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200584/*
585 * Called under fc->lock
586 *
587 * fc->connected must have been checked previously
588 */
589void fuse_request_send_background_locked(struct fuse_conn *fc,
590 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800591{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200592 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
593 if (!test_bit(FR_WAITING, &req->flags)) {
594 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200595 atomic_inc(&fc->num_waiting);
596 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200597 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800598 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700599 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800600 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700601 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900602 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200603 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
604 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800605 }
606 list_add_tail(&req->list, &fc->bg_queue);
607 flush_bg_queue(fc);
608}
609
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200610void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700611{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200612 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700613 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700614 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200615 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700616 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700617 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200618 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700619 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200620 req->end(fc, req);
621 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700622 }
623}
Tejun Heo08cbf542009-04-14 10:54:53 +0900624EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700625
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200626static int fuse_request_send_notify_reply(struct fuse_conn *fc,
627 struct fuse_req *req, u64 unique)
628{
629 int err = -ENODEV;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200630 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200631
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200632 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200633 req->in.h.unique = unique;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200634 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200635 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200636 queue_request(fiq, req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200637 err = 0;
638 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200639 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200640
641 return err;
642}
643
Anand V. Avati0b05b182012-08-19 08:53:23 -0400644void fuse_force_forget(struct file *file, u64 nodeid)
645{
Al Viro6131ffa2013-02-27 16:59:05 -0500646 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400647 struct fuse_conn *fc = get_fuse_conn(inode);
648 struct fuse_req *req;
649 struct fuse_forget_in inarg;
650
651 memset(&inarg, 0, sizeof(inarg));
652 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400653 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400654 req->in.h.opcode = FUSE_FORGET;
655 req->in.h.nodeid = nodeid;
656 req->in.numargs = 1;
657 req->in.args[0].size = sizeof(inarg);
658 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200659 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000660 __fuse_request_send(fc, req);
661 /* ignore errors */
662 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400663}
664
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700665/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700666 * Lock the request. Up to the next unlock_request() there mustn't be
667 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700668 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700669 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200670static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700671{
672 int err = 0;
673 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200674 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200675 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700676 err = -ENOENT;
677 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200678 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200679 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700680 }
681 return err;
682}
683
684/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200685 * Unlock request. If it was aborted while locked, caller is responsible
686 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700687 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200688static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700689{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200690 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700691 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200692 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200693 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200694 err = -ENOENT;
695 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200696 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200697 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700698 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200699 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700700}
701
702struct fuse_copy_state {
703 int write;
704 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400705 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200706 struct pipe_buffer *pipebufs;
707 struct pipe_buffer *currbuf;
708 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700709 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700710 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700711 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200712 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200713 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700714};
715
Miklos Szeredidc008092015-07-01 16:25:58 +0200716static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400717 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700718{
719 memset(cs, 0, sizeof(*cs));
720 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400721 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700722}
723
724/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800725static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700726{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200727 if (cs->currbuf) {
728 struct pipe_buffer *buf = cs->currbuf;
729
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200730 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200731 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200732 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200733 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700734 if (cs->write) {
735 flush_dcache_page(cs->pg);
736 set_page_dirty_lock(cs->pg);
737 }
738 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700739 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200740 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700741}
742
743/*
744 * Get another pagefull of userspace buffer, and map it to kernel
745 * address space, and lock request
746 */
747static int fuse_copy_fill(struct fuse_copy_state *cs)
748{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200749 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700750 int err;
751
Miklos Szeredidc008092015-07-01 16:25:58 +0200752 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200753 if (err)
754 return err;
755
Miklos Szeredi334f4852005-09-09 13:10:27 -0700756 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200757 if (cs->pipebufs) {
758 struct pipe_buffer *buf = cs->pipebufs;
759
Miklos Szeredic3021622010-05-25 15:06:07 +0200760 if (!cs->write) {
761 err = buf->ops->confirm(cs->pipe, buf);
762 if (err)
763 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200764
Miklos Szeredic3021622010-05-25 15:06:07 +0200765 BUG_ON(!cs->nr_segs);
766 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200767 cs->pg = buf->page;
768 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200769 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200770 cs->pipebufs++;
771 cs->nr_segs--;
772 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200773 if (cs->nr_segs == cs->pipe->buffers)
774 return -EIO;
775
776 page = alloc_page(GFP_HIGHUSER);
777 if (!page)
778 return -ENOMEM;
779
780 buf->page = page;
781 buf->offset = 0;
782 buf->len = 0;
783
784 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200785 cs->pg = page;
786 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200787 cs->len = PAGE_SIZE;
788 cs->pipebufs++;
789 cs->nr_segs++;
790 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200791 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400792 size_t off;
793 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200794 if (err < 0)
795 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400796 BUG_ON(!err);
797 cs->len = err;
798 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200799 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400800 cs->offset = off;
801 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700802 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700803
Miklos Szeredidc008092015-07-01 16:25:58 +0200804 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700805}
806
807/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800808static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700809{
810 unsigned ncpy = min(*size, cs->len);
811 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200812 void *pgaddr = kmap_atomic(cs->pg);
813 void *buf = pgaddr + cs->offset;
814
Miklos Szeredi334f4852005-09-09 13:10:27 -0700815 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200816 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700817 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200818 memcpy(*val, buf, ncpy);
819
820 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700821 *val += ncpy;
822 }
823 *size -= ncpy;
824 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200825 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700826 return ncpy;
827}
828
Miklos Szeredice534fb2010-05-25 15:06:07 +0200829static int fuse_check_page(struct page *page)
830{
831 if (page_mapcount(page) ||
832 page->mapping != NULL ||
833 page_count(page) != 1 ||
834 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
835 ~(1 << PG_locked |
836 1 << PG_referenced |
837 1 << PG_uptodate |
838 1 << PG_lru |
839 1 << PG_active |
840 1 << PG_reclaim))) {
841 printk(KERN_WARNING "fuse: trying to steal weird page\n");
842 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);
843 return 1;
844 }
845 return 0;
846}
847
848static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
849{
850 int err;
851 struct page *oldpage = *pagep;
852 struct page *newpage;
853 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200854
Miklos Szeredidc008092015-07-01 16:25:58 +0200855 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200856 if (err)
857 return err;
858
Miklos Szeredice534fb2010-05-25 15:06:07 +0200859 fuse_copy_finish(cs);
860
861 err = buf->ops->confirm(cs->pipe, buf);
862 if (err)
863 return err;
864
865 BUG_ON(!cs->nr_segs);
866 cs->currbuf = buf;
867 cs->len = buf->len;
868 cs->pipebufs++;
869 cs->nr_segs--;
870
871 if (cs->len != PAGE_SIZE)
872 goto out_fallback;
873
874 if (buf->ops->steal(cs->pipe, buf) != 0)
875 goto out_fallback;
876
877 newpage = buf->page;
878
Miklos Szerediaa991b32015-02-26 11:45:47 +0100879 if (!PageUptodate(newpage))
880 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200881
882 ClearPageMappedToDisk(newpage);
883
884 if (fuse_check_page(newpage) != 0)
885 goto out_fallback_unlock;
886
Miklos Szeredice534fb2010-05-25 15:06:07 +0200887 /*
888 * This is a new and locked page, it shouldn't be mapped or
889 * have any special flags on it
890 */
891 if (WARN_ON(page_mapped(oldpage)))
892 goto out_fallback_unlock;
893 if (WARN_ON(page_has_private(oldpage)))
894 goto out_fallback_unlock;
895 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
896 goto out_fallback_unlock;
897 if (WARN_ON(PageMlocked(oldpage)))
898 goto out_fallback_unlock;
899
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700900 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200901 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700902 unlock_page(newpage);
903 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200904 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700905
Miklos Szeredice534fb2010-05-25 15:06:07 +0200906 page_cache_get(newpage);
907
908 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
909 lru_cache_add_file(newpage);
910
911 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200912 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200913 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200914 err = -ENOENT;
915 else
916 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200917 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200918
919 if (err) {
920 unlock_page(newpage);
921 page_cache_release(newpage);
922 return err;
923 }
924
925 unlock_page(oldpage);
926 page_cache_release(oldpage);
927 cs->len = 0;
928
929 return 0;
930
931out_fallback_unlock:
932 unlock_page(newpage);
933out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200934 cs->pg = buf->page;
935 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200936
Miklos Szeredidc008092015-07-01 16:25:58 +0200937 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200938 if (err)
939 return err;
940
941 return 1;
942}
943
Miklos Szeredic3021622010-05-25 15:06:07 +0200944static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
945 unsigned offset, unsigned count)
946{
947 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200948 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200949
950 if (cs->nr_segs == cs->pipe->buffers)
951 return -EIO;
952
Miklos Szeredidc008092015-07-01 16:25:58 +0200953 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200954 if (err)
955 return err;
956
Miklos Szeredic3021622010-05-25 15:06:07 +0200957 fuse_copy_finish(cs);
958
959 buf = cs->pipebufs;
960 page_cache_get(page);
961 buf->page = page;
962 buf->offset = offset;
963 buf->len = count;
964
965 cs->pipebufs++;
966 cs->nr_segs++;
967 cs->len = 0;
968
969 return 0;
970}
971
Miklos Szeredi334f4852005-09-09 13:10:27 -0700972/*
973 * Copy a page in the request to/from the userspace buffer. Must be
974 * done atomically
975 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200976static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800977 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700978{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200979 int err;
980 struct page *page = *pagep;
981
Miklos Szeredib6777c42010-10-26 14:22:27 -0700982 if (page && zeroing && count < PAGE_SIZE)
983 clear_highpage(page);
984
Miklos Szeredi334f4852005-09-09 13:10:27 -0700985 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200986 if (cs->write && cs->pipebufs && page) {
987 return fuse_ref_page(cs, page, offset, count);
988 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200989 if (cs->move_pages && page &&
990 offset == 0 && count == PAGE_SIZE) {
991 err = fuse_try_move_page(cs, pagep);
992 if (err <= 0)
993 return err;
994 } else {
995 err = fuse_copy_fill(cs);
996 if (err)
997 return err;
998 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100999 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001000 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +08001001 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001002 void *buf = mapaddr + offset;
1003 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +08001004 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001005 } else
1006 offset += fuse_copy_do(cs, NULL, &count);
1007 }
1008 if (page && !cs->write)
1009 flush_dcache_page(page);
1010 return 0;
1011}
1012
1013/* Copy pages in the request to/from userspace buffer */
1014static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
1015 int zeroing)
1016{
1017 unsigned i;
1018 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001019
1020 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +02001021 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001022 unsigned offset = req->page_descs[i].offset;
1023 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001024
1025 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1026 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001027 if (err)
1028 return err;
1029
1030 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001031 }
1032 return 0;
1033}
1034
1035/* Copy a single argument in the request to/from userspace buffer */
1036static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1037{
1038 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001039 if (!cs->len) {
1040 int err = fuse_copy_fill(cs);
1041 if (err)
1042 return err;
1043 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001044 fuse_copy_do(cs, &val, &size);
1045 }
1046 return 0;
1047}
1048
1049/* Copy request arguments to/from userspace buffer */
1050static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1051 unsigned argpages, struct fuse_arg *args,
1052 int zeroing)
1053{
1054 int err = 0;
1055 unsigned i;
1056
1057 for (i = 0; !err && i < numargs; i++) {
1058 struct fuse_arg *arg = &args[i];
1059 if (i == numargs - 1 && argpages)
1060 err = fuse_copy_pages(cs, arg->size, zeroing);
1061 else
1062 err = fuse_copy_one(cs, arg->value, arg->size);
1063 }
1064 return err;
1065}
1066
Miklos Szeredif88996a2015-07-01 16:26:01 +02001067static int forget_pending(struct fuse_iqueue *fiq)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001068{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001069 return fiq->forget_list_head.next != NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001070}
1071
Miklos Szeredif88996a2015-07-01 16:26:01 +02001072static int request_pending(struct fuse_iqueue *fiq)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001073{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001074 return !list_empty(&fiq->pending) || !list_empty(&fiq->interrupts) ||
1075 forget_pending(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001076}
1077
Miklos Szeredi334f4852005-09-09 13:10:27 -07001078/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001079 * Transfer an interrupt request to userspace
1080 *
1081 * Unlike other requests this is assembled on demand, without a need
1082 * to allocate a separate fuse_req structure.
1083 *
Miklos Szeredifd22d622015-07-01 16:26:03 +02001084 * Called with fiq->waitq.lock held, releases it
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001085 */
Miklos Szeredifd22d622015-07-01 16:26:03 +02001086static int fuse_read_interrupt(struct fuse_iqueue *fiq,
1087 struct fuse_copy_state *cs,
Miklos Szeredic3021622010-05-25 15:06:07 +02001088 size_t nbytes, struct fuse_req *req)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001089__releases(fiq->waitq.lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001090{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001091 struct fuse_in_header ih;
1092 struct fuse_interrupt_in arg;
1093 unsigned reqsize = sizeof(ih) + sizeof(arg);
1094 int err;
1095
1096 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001097 req->intr_unique = fuse_get_unique(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001098 memset(&ih, 0, sizeof(ih));
1099 memset(&arg, 0, sizeof(arg));
1100 ih.len = reqsize;
1101 ih.opcode = FUSE_INTERRUPT;
1102 ih.unique = req->intr_unique;
1103 arg.unique = req->in.h.unique;
1104
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001105 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001106 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001107 return -EINVAL;
1108
Miklos Szeredic3021622010-05-25 15:06:07 +02001109 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001110 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001111 err = fuse_copy_one(cs, &arg, sizeof(arg));
1112 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001113
1114 return err ? err : reqsize;
1115}
1116
Miklos Szeredif88996a2015-07-01 16:26:01 +02001117static struct fuse_forget_link *dequeue_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001118 unsigned max,
1119 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001120{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001121 struct fuse_forget_link *head = fiq->forget_list_head.next;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001122 struct fuse_forget_link **newhead = &head;
1123 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001124
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001125 for (count = 0; *newhead != NULL && count < max; count++)
1126 newhead = &(*newhead)->next;
1127
Miklos Szeredif88996a2015-07-01 16:26:01 +02001128 fiq->forget_list_head.next = *newhead;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001129 *newhead = NULL;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001130 if (fiq->forget_list_head.next == NULL)
1131 fiq->forget_list_tail = &fiq->forget_list_head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001132
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001133 if (countp != NULL)
1134 *countp = count;
1135
1136 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001137}
1138
Miklos Szeredifd22d622015-07-01 16:26:03 +02001139static int fuse_read_single_forget(struct fuse_iqueue *fiq,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001140 struct fuse_copy_state *cs,
1141 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001142__releases(fiq->waitq.lock)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001143{
1144 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001145 struct fuse_forget_link *forget = dequeue_forget(fiq, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001146 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001147 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001148 };
1149 struct fuse_in_header ih = {
1150 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001151 .nodeid = forget->forget_one.nodeid,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001152 .unique = fuse_get_unique(fiq),
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001153 .len = sizeof(ih) + sizeof(arg),
1154 };
1155
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001156 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001157 kfree(forget);
1158 if (nbytes < ih.len)
1159 return -EINVAL;
1160
1161 err = fuse_copy_one(cs, &ih, sizeof(ih));
1162 if (!err)
1163 err = fuse_copy_one(cs, &arg, sizeof(arg));
1164 fuse_copy_finish(cs);
1165
1166 if (err)
1167 return err;
1168
1169 return ih.len;
1170}
1171
Miklos Szeredifd22d622015-07-01 16:26:03 +02001172static int fuse_read_batch_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001173 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001174__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001175{
1176 int err;
1177 unsigned max_forgets;
1178 unsigned count;
1179 struct fuse_forget_link *head;
1180 struct fuse_batch_forget_in arg = { .count = 0 };
1181 struct fuse_in_header ih = {
1182 .opcode = FUSE_BATCH_FORGET,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001183 .unique = fuse_get_unique(fiq),
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001184 .len = sizeof(ih) + sizeof(arg),
1185 };
1186
1187 if (nbytes < ih.len) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001188 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001189 return -EINVAL;
1190 }
1191
1192 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001193 head = dequeue_forget(fiq, max_forgets, &count);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001194 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001195
1196 arg.count = count;
1197 ih.len += count * sizeof(struct fuse_forget_one);
1198 err = fuse_copy_one(cs, &ih, sizeof(ih));
1199 if (!err)
1200 err = fuse_copy_one(cs, &arg, sizeof(arg));
1201
1202 while (head) {
1203 struct fuse_forget_link *forget = head;
1204
1205 if (!err) {
1206 err = fuse_copy_one(cs, &forget->forget_one,
1207 sizeof(forget->forget_one));
1208 }
1209 head = forget->next;
1210 kfree(forget);
1211 }
1212
1213 fuse_copy_finish(cs);
1214
1215 if (err)
1216 return err;
1217
1218 return ih.len;
1219}
1220
Miklos Szeredifd22d622015-07-01 16:26:03 +02001221static int fuse_read_forget(struct fuse_conn *fc, struct fuse_iqueue *fiq,
1222 struct fuse_copy_state *cs,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001223 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001224__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001225{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001226 if (fc->minor < 16 || fiq->forget_list_head.next->next == NULL)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001227 return fuse_read_single_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001228 else
Miklos Szeredifd22d622015-07-01 16:26:03 +02001229 return fuse_read_batch_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001230}
1231
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001232/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001233 * Read a single request into the userspace filesystem's buffer. This
1234 * function waits until a request is available, then removes it from
1235 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001236 * no reply is needed (FORGET) or request has been aborted or there
1237 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001238 * request_end(). Otherwise add it to the processing list, and set
1239 * the 'sent' flag.
1240 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001241static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1242 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001243{
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001244 ssize_t err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001245 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001246 struct fuse_pqueue *fpq = &fc->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001247 struct fuse_req *req;
1248 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001249 unsigned reqsize;
1250
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001251 restart:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001252 spin_lock(&fiq->waitq.lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001253 err = -EAGAIN;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001254 if ((file->f_flags & O_NONBLOCK) && fiq->connected &&
Miklos Szeredif88996a2015-07-01 16:26:01 +02001255 !request_pending(fiq))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001256 goto err_unlock;
1257
Miklos Szeredi52509212015-07-01 16:26:03 +02001258 err = wait_event_interruptible_exclusive_locked(fiq->waitq,
1259 !fiq->connected || request_pending(fiq));
1260 if (err)
1261 goto err_unlock;
1262
Miklos Szeredi334f4852005-09-09 13:10:27 -07001263 err = -ENODEV;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001264 if (!fiq->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001265 goto err_unlock;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001266
Miklos Szeredif88996a2015-07-01 16:26:01 +02001267 if (!list_empty(&fiq->interrupts)) {
1268 req = list_entry(fiq->interrupts.next, struct fuse_req,
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001269 intr_entry);
Miklos Szeredifd22d622015-07-01 16:26:03 +02001270 return fuse_read_interrupt(fiq, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001271 }
1272
Miklos Szeredif88996a2015-07-01 16:26:01 +02001273 if (forget_pending(fiq)) {
1274 if (list_empty(&fiq->pending) || fiq->forget_batch-- > 0)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001275 return fuse_read_forget(fc, fiq, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001276
Miklos Szeredif88996a2015-07-01 16:26:01 +02001277 if (fiq->forget_batch <= -8)
1278 fiq->forget_batch = 16;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001279 }
1280
Miklos Szeredif88996a2015-07-01 16:26:01 +02001281 req = list_entry(fiq->pending.next, struct fuse_req, list);
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001282 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredief759252015-07-01 16:26:02 +02001283 list_del_init(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001284 spin_unlock(&fiq->waitq.lock);
1285
Miklos Szeredifd22d622015-07-01 16:26:03 +02001286 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001287 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001288 reqsize = in->h.len;
1289 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001290 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001291 req->out.h.error = -EIO;
1292 /* SETXATTR is special, since it may contain too large data */
1293 if (in->h.opcode == FUSE_SETXATTR)
1294 req->out.h.error = -E2BIG;
1295 request_end(fc, req);
1296 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001297 }
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001298 spin_lock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001299 list_add(&req->list, &fpq->io);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001300 spin_unlock(&fpq->lock);
Miklos Szeredid7133112006-04-10 22:54:55 -07001301 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001302 cs->req = req;
1303 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001304 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001305 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001306 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001307 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001308 spin_lock(&fc->lock);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001309 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001310 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001311 if (!fpq->connected) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001312 err = -ENODEV;
1313 goto out_end;
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001314 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001315 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001316 req->out.h.error = -EIO;
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001317 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001318 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001319 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001320 err = reqsize;
1321 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001322 }
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001323 list_move_tail(&req->list, &fpq->processing);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001324 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001325 set_bit(FR_SENT, &req->flags);
1326 /* matches barrier in request_wait_answer() */
1327 smp_mb__after_atomic();
1328 if (test_bit(FR_INTERRUPTED, &req->flags))
1329 queue_interrupt(fiq, req);
1330 spin_unlock(&fc->lock);
1331
Miklos Szeredi334f4852005-09-09 13:10:27 -07001332 return reqsize;
1333
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001334out_end:
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001335 if (!test_bit(FR_PRIVATE, &req->flags))
1336 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001337 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001338 request_end(fc, req);
1339 return err;
1340
Miklos Szeredi334f4852005-09-09 13:10:27 -07001341 err_unlock:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001342 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001343 return err;
1344}
1345
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001346static int fuse_dev_open(struct inode *inode, struct file *file)
1347{
1348 /*
1349 * The fuse device's file's private_data is used to hold
1350 * the fuse_conn(ection) when it is mounted, and is used to
1351 * keep track of whether the file has been mounted already.
1352 */
1353 file->private_data = NULL;
1354 return 0;
1355}
1356
Al Virofbdbacc2015-04-03 21:53:39 -04001357static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001358{
1359 struct fuse_copy_state cs;
1360 struct file *file = iocb->ki_filp;
1361 struct fuse_conn *fc = fuse_get_conn(file);
1362 if (!fc)
1363 return -EPERM;
1364
Al Virofbdbacc2015-04-03 21:53:39 -04001365 if (!iter_is_iovec(to))
1366 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001367
Miklos Szeredidc008092015-07-01 16:25:58 +02001368 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001369
1370 return fuse_dev_do_read(fc, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001371}
1372
Miklos Szeredic3021622010-05-25 15:06:07 +02001373static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1374 struct pipe_inode_info *pipe,
1375 size_t len, unsigned int flags)
1376{
1377 int ret;
1378 int page_nr = 0;
1379 int do_wakeup = 0;
1380 struct pipe_buffer *bufs;
1381 struct fuse_copy_state cs;
1382 struct fuse_conn *fc = fuse_get_conn(in);
1383 if (!fc)
1384 return -EPERM;
1385
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001386 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001387 if (!bufs)
1388 return -ENOMEM;
1389
Miklos Szeredidc008092015-07-01 16:25:58 +02001390 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001391 cs.pipebufs = bufs;
1392 cs.pipe = pipe;
1393 ret = fuse_dev_do_read(fc, in, &cs, len);
1394 if (ret < 0)
1395 goto out;
1396
1397 ret = 0;
1398 pipe_lock(pipe);
1399
1400 if (!pipe->readers) {
1401 send_sig(SIGPIPE, current, 0);
1402 if (!ret)
1403 ret = -EPIPE;
1404 goto out_unlock;
1405 }
1406
1407 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1408 ret = -EIO;
1409 goto out_unlock;
1410 }
1411
1412 while (page_nr < cs.nr_segs) {
1413 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1414 struct pipe_buffer *buf = pipe->bufs + newbuf;
1415
1416 buf->page = bufs[page_nr].page;
1417 buf->offset = bufs[page_nr].offset;
1418 buf->len = bufs[page_nr].len;
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001419 /*
1420 * Need to be careful about this. Having buf->ops in module
1421 * code can Oops if the buffer persists after module unload.
1422 */
1423 buf->ops = &nosteal_pipe_buf_ops;
Miklos Szeredic3021622010-05-25 15:06:07 +02001424
1425 pipe->nrbufs++;
1426 page_nr++;
1427 ret += buf->len;
1428
Al Viro6447a3c2013-03-21 11:01:38 -04001429 if (pipe->files)
Miklos Szeredic3021622010-05-25 15:06:07 +02001430 do_wakeup = 1;
1431 }
1432
1433out_unlock:
1434 pipe_unlock(pipe);
1435
1436 if (do_wakeup) {
1437 smp_mb();
1438 if (waitqueue_active(&pipe->wait))
1439 wake_up_interruptible(&pipe->wait);
1440 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1441 }
1442
1443out:
1444 for (; page_nr < cs.nr_segs; page_nr++)
1445 page_cache_release(bufs[page_nr].page);
1446
1447 kfree(bufs);
1448 return ret;
1449}
1450
Tejun Heo95668a62008-11-26 12:03:55 +01001451static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1452 struct fuse_copy_state *cs)
1453{
1454 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001455 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001456
1457 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001458 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001459
1460 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1461 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001462 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001463
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001464 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001465 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001466
1467err:
1468 fuse_copy_finish(cs);
1469 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001470}
1471
John Muir3b463ae2009-05-31 11:13:57 -04001472static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1473 struct fuse_copy_state *cs)
1474{
1475 struct fuse_notify_inval_inode_out outarg;
1476 int err = -EINVAL;
1477
1478 if (size != sizeof(outarg))
1479 goto err;
1480
1481 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1482 if (err)
1483 goto err;
1484 fuse_copy_finish(cs);
1485
1486 down_read(&fc->killsb);
1487 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001488 if (fc->sb) {
1489 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1490 outarg.off, outarg.len);
1491 }
John Muir3b463ae2009-05-31 11:13:57 -04001492 up_read(&fc->killsb);
1493 return err;
1494
1495err:
1496 fuse_copy_finish(cs);
1497 return err;
1498}
1499
1500static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1501 struct fuse_copy_state *cs)
1502{
1503 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001504 int err = -ENOMEM;
1505 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001506 struct qstr name;
1507
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001508 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1509 if (!buf)
1510 goto err;
1511
1512 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001513 if (size < sizeof(outarg))
1514 goto err;
1515
1516 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1517 if (err)
1518 goto err;
1519
1520 err = -ENAMETOOLONG;
1521 if (outarg.namelen > FUSE_NAME_MAX)
1522 goto err;
1523
Miklos Szeredic2183d12011-08-24 10:20:17 +02001524 err = -EINVAL;
1525 if (size != sizeof(outarg) + outarg.namelen + 1)
1526 goto err;
1527
John Muir3b463ae2009-05-31 11:13:57 -04001528 name.name = buf;
1529 name.len = outarg.namelen;
1530 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1531 if (err)
1532 goto err;
1533 fuse_copy_finish(cs);
1534 buf[outarg.namelen] = 0;
1535 name.hash = full_name_hash(name.name, name.len);
1536
1537 down_read(&fc->killsb);
1538 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001539 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001540 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1541 up_read(&fc->killsb);
1542 kfree(buf);
1543 return err;
1544
1545err:
1546 kfree(buf);
1547 fuse_copy_finish(cs);
1548 return err;
1549}
1550
1551static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1552 struct fuse_copy_state *cs)
1553{
1554 struct fuse_notify_delete_out outarg;
1555 int err = -ENOMEM;
1556 char *buf;
1557 struct qstr name;
1558
1559 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1560 if (!buf)
1561 goto err;
1562
1563 err = -EINVAL;
1564 if (size < sizeof(outarg))
1565 goto err;
1566
1567 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1568 if (err)
1569 goto err;
1570
1571 err = -ENAMETOOLONG;
1572 if (outarg.namelen > FUSE_NAME_MAX)
1573 goto err;
1574
1575 err = -EINVAL;
1576 if (size != sizeof(outarg) + outarg.namelen + 1)
1577 goto err;
1578
1579 name.name = buf;
1580 name.len = outarg.namelen;
1581 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1582 if (err)
1583 goto err;
1584 fuse_copy_finish(cs);
1585 buf[outarg.namelen] = 0;
1586 name.hash = full_name_hash(name.name, name.len);
1587
1588 down_read(&fc->killsb);
1589 err = -ENOENT;
1590 if (fc->sb)
1591 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1592 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001593 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001594 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001595 return err;
1596
1597err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001598 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001599 fuse_copy_finish(cs);
1600 return err;
1601}
1602
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001603static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1604 struct fuse_copy_state *cs)
1605{
1606 struct fuse_notify_store_out outarg;
1607 struct inode *inode;
1608 struct address_space *mapping;
1609 u64 nodeid;
1610 int err;
1611 pgoff_t index;
1612 unsigned int offset;
1613 unsigned int num;
1614 loff_t file_size;
1615 loff_t end;
1616
1617 err = -EINVAL;
1618 if (size < sizeof(outarg))
1619 goto out_finish;
1620
1621 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1622 if (err)
1623 goto out_finish;
1624
1625 err = -EINVAL;
1626 if (size - sizeof(outarg) != outarg.size)
1627 goto out_finish;
1628
1629 nodeid = outarg.nodeid;
1630
1631 down_read(&fc->killsb);
1632
1633 err = -ENOENT;
1634 if (!fc->sb)
1635 goto out_up_killsb;
1636
1637 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1638 if (!inode)
1639 goto out_up_killsb;
1640
1641 mapping = inode->i_mapping;
1642 index = outarg.offset >> PAGE_CACHE_SHIFT;
1643 offset = outarg.offset & ~PAGE_CACHE_MASK;
1644 file_size = i_size_read(inode);
1645 end = outarg.offset + outarg.size;
1646 if (end > file_size) {
1647 file_size = end;
1648 fuse_write_update_size(inode, file_size);
1649 }
1650
1651 num = outarg.size;
1652 while (num) {
1653 struct page *page;
1654 unsigned int this_num;
1655
1656 err = -ENOMEM;
1657 page = find_or_create_page(mapping, index,
1658 mapping_gfp_mask(mapping));
1659 if (!page)
1660 goto out_iput;
1661
1662 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1663 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001664 if (!err && offset == 0 &&
1665 (this_num == PAGE_CACHE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001666 SetPageUptodate(page);
1667 unlock_page(page);
1668 page_cache_release(page);
1669
1670 if (err)
1671 goto out_iput;
1672
1673 num -= this_num;
1674 offset = 0;
1675 index++;
1676 }
1677
1678 err = 0;
1679
1680out_iput:
1681 iput(inode);
1682out_up_killsb:
1683 up_read(&fc->killsb);
1684out_finish:
1685 fuse_copy_finish(cs);
1686 return err;
1687}
1688
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001689static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1690{
Mel Gormanb745bc82014-06-04 16:10:22 -07001691 release_pages(req->pages, req->num_pages, false);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001692}
1693
1694static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1695 struct fuse_notify_retrieve_out *outarg)
1696{
1697 int err;
1698 struct address_space *mapping = inode->i_mapping;
1699 struct fuse_req *req;
1700 pgoff_t index;
1701 loff_t file_size;
1702 unsigned int num;
1703 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001704 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001705 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001706
1707 offset = outarg->offset & ~PAGE_CACHE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001708 file_size = i_size_read(inode);
1709
1710 num = outarg->size;
1711 if (outarg->offset > file_size)
1712 num = 0;
1713 else if (outarg->offset + num > file_size)
1714 num = file_size - outarg->offset;
1715
1716 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1717 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1718
1719 req = fuse_get_req(fc, num_pages);
1720 if (IS_ERR(req))
1721 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001722
1723 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1724 req->in.h.nodeid = outarg->nodeid;
1725 req->in.numargs = 2;
1726 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001727 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001728 req->end = fuse_retrieve_end;
1729
1730 index = outarg->offset >> PAGE_CACHE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001731
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001732 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001733 struct page *page;
1734 unsigned int this_num;
1735
1736 page = find_get_page(mapping, index);
1737 if (!page)
1738 break;
1739
1740 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1741 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001742 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001743 req->num_pages++;
1744
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001745 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001746 num -= this_num;
1747 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001748 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001749 }
1750 req->misc.retrieve_in.offset = outarg->offset;
1751 req->misc.retrieve_in.size = total_len;
1752 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1753 req->in.args[0].value = &req->misc.retrieve_in;
1754 req->in.args[1].size = total_len;
1755
1756 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1757 if (err)
1758 fuse_retrieve_end(fc, req);
1759
1760 return err;
1761}
1762
1763static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1764 struct fuse_copy_state *cs)
1765{
1766 struct fuse_notify_retrieve_out outarg;
1767 struct inode *inode;
1768 int err;
1769
1770 err = -EINVAL;
1771 if (size != sizeof(outarg))
1772 goto copy_finish;
1773
1774 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1775 if (err)
1776 goto copy_finish;
1777
1778 fuse_copy_finish(cs);
1779
1780 down_read(&fc->killsb);
1781 err = -ENOENT;
1782 if (fc->sb) {
1783 u64 nodeid = outarg.nodeid;
1784
1785 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1786 if (inode) {
1787 err = fuse_retrieve(fc, inode, &outarg);
1788 iput(inode);
1789 }
1790 }
1791 up_read(&fc->killsb);
1792
1793 return err;
1794
1795copy_finish:
1796 fuse_copy_finish(cs);
1797 return err;
1798}
1799
Tejun Heo85993962008-11-26 12:03:55 +01001800static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1801 unsigned int size, struct fuse_copy_state *cs)
1802{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001803 /* Don't try to move pages (yet) */
1804 cs->move_pages = 0;
1805
Tejun Heo85993962008-11-26 12:03:55 +01001806 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001807 case FUSE_NOTIFY_POLL:
1808 return fuse_notify_poll(fc, size, cs);
1809
John Muir3b463ae2009-05-31 11:13:57 -04001810 case FUSE_NOTIFY_INVAL_INODE:
1811 return fuse_notify_inval_inode(fc, size, cs);
1812
1813 case FUSE_NOTIFY_INVAL_ENTRY:
1814 return fuse_notify_inval_entry(fc, size, cs);
1815
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001816 case FUSE_NOTIFY_STORE:
1817 return fuse_notify_store(fc, size, cs);
1818
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001819 case FUSE_NOTIFY_RETRIEVE:
1820 return fuse_notify_retrieve(fc, size, cs);
1821
John Muir451d0f52011-12-06 21:50:06 +01001822 case FUSE_NOTIFY_DELETE:
1823 return fuse_notify_delete(fc, size, cs);
1824
Tejun Heo85993962008-11-26 12:03:55 +01001825 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001826 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001827 return -EINVAL;
1828 }
1829}
1830
Miklos Szeredi334f4852005-09-09 13:10:27 -07001831/* Look up request on processing list by unique ID */
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001832static struct fuse_req *request_find(struct fuse_pqueue *fpq, u64 unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001833{
Dong Fang05726ac2013-07-30 22:50:01 -04001834 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001835
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001836 list_for_each_entry(req, &fpq->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001837 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001838 return req;
1839 }
1840 return NULL;
1841}
1842
1843static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1844 unsigned nbytes)
1845{
1846 unsigned reqsize = sizeof(struct fuse_out_header);
1847
1848 if (out->h.error)
1849 return nbytes != reqsize ? -EINVAL : 0;
1850
1851 reqsize += len_args(out->numargs, out->args);
1852
1853 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1854 return -EINVAL;
1855 else if (reqsize > nbytes) {
1856 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1857 unsigned diffsize = reqsize - nbytes;
1858 if (diffsize > lastarg->size)
1859 return -EINVAL;
1860 lastarg->size -= diffsize;
1861 }
1862 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1863 out->page_zeroing);
1864}
1865
1866/*
1867 * Write a single reply to a request. First the header is copied from
1868 * the write buffer. The request is then searched on the processing
1869 * list by the unique ID found in the header. If found, then remove
1870 * it from the list and copy the rest of the buffer to the request.
1871 * The request is finished by calling request_end()
1872 */
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001873static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1874 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001875{
1876 int err;
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001877 struct fuse_pqueue *fpq = &fc->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001878 struct fuse_req *req;
1879 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001880
Miklos Szeredi334f4852005-09-09 13:10:27 -07001881 if (nbytes < sizeof(struct fuse_out_header))
1882 return -EINVAL;
1883
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001884 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001885 if (err)
1886 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001887
Miklos Szeredi334f4852005-09-09 13:10:27 -07001888 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001889 if (oh.len != nbytes)
1890 goto err_finish;
1891
1892 /*
1893 * Zero oh.unique indicates unsolicited notification message
1894 * and error contains notification code.
1895 */
1896 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001897 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001898 return err ? err : nbytes;
1899 }
1900
1901 err = -EINVAL;
1902 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001903 goto err_finish;
1904
Miklos Szeredid7133112006-04-10 22:54:55 -07001905 spin_lock(&fc->lock);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001906 spin_lock(&fpq->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001907 err = -ENOENT;
Miklos Szeredie96edd92015-07-01 16:26:04 +02001908 if (!fpq->connected)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001909 goto err_unlock_pq;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001910
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001911 req = request_find(fpq, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001912 if (!req)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001913 goto err_unlock_pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001914
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001915 /* Is it an interrupt reply? */
1916 if (req->intr_unique == oh.unique) {
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001917 spin_unlock(&fpq->lock);
1918
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001919 err = -EINVAL;
1920 if (nbytes != sizeof(struct fuse_out_header))
1921 goto err_unlock;
1922
1923 if (oh.error == -ENOSYS)
1924 fc->no_interrupt = 1;
1925 else if (oh.error == -EAGAIN)
Miklos Szeredif88996a2015-07-01 16:26:01 +02001926 queue_interrupt(&fc->iq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001927
1928 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001929 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001930 return nbytes;
1931 }
1932
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001933 clear_bit(FR_SENT, &req->flags);
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001934 list_move(&req->list, &fpq->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001935 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001936 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001937 spin_unlock(&fpq->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001938 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001939 if (!req->out.page_replace)
1940 cs->move_pages = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -07001941 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001942
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001943 err = copy_out_args(cs, &req->out, nbytes);
1944 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001945
Miklos Szeredid7133112006-04-10 22:54:55 -07001946 spin_lock(&fc->lock);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001947 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001948 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001949 if (!fpq->connected)
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001950 err = -ENOENT;
1951 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001952 req->out.h.error = -EIO;
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001953 if (!test_bit(FR_PRIVATE, &req->flags))
1954 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001955 spin_unlock(&fpq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001956 request_end(fc, req);
1957
1958 return err ? err : nbytes;
1959
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001960 err_unlock_pq:
1961 spin_unlock(&fpq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001962 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001963 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001964 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001965 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001966 return err;
1967}
1968
Al Virofbdbacc2015-04-03 21:53:39 -04001969static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001970{
1971 struct fuse_copy_state cs;
1972 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1973 if (!fc)
1974 return -EPERM;
1975
Al Virofbdbacc2015-04-03 21:53:39 -04001976 if (!iter_is_iovec(from))
1977 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001978
Miklos Szeredidc008092015-07-01 16:25:58 +02001979 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001980
1981 return fuse_dev_do_write(fc, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001982}
1983
1984static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1985 struct file *out, loff_t *ppos,
1986 size_t len, unsigned int flags)
1987{
1988 unsigned nbuf;
1989 unsigned idx;
1990 struct pipe_buffer *bufs;
1991 struct fuse_copy_state cs;
1992 struct fuse_conn *fc;
1993 size_t rem;
1994 ssize_t ret;
1995
1996 fc = fuse_get_conn(out);
1997 if (!fc)
1998 return -EPERM;
1999
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01002000 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002001 if (!bufs)
2002 return -ENOMEM;
2003
2004 pipe_lock(pipe);
2005 nbuf = 0;
2006 rem = 0;
2007 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
2008 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
2009
2010 ret = -EINVAL;
2011 if (rem < len) {
2012 pipe_unlock(pipe);
2013 goto out;
2014 }
2015
2016 rem = len;
2017 while (rem) {
2018 struct pipe_buffer *ibuf;
2019 struct pipe_buffer *obuf;
2020
2021 BUG_ON(nbuf >= pipe->buffers);
2022 BUG_ON(!pipe->nrbufs);
2023 ibuf = &pipe->bufs[pipe->curbuf];
2024 obuf = &bufs[nbuf];
2025
2026 if (rem >= ibuf->len) {
2027 *obuf = *ibuf;
2028 ibuf->ops = NULL;
2029 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
2030 pipe->nrbufs--;
2031 } else {
2032 ibuf->ops->get(pipe, ibuf);
2033 *obuf = *ibuf;
2034 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2035 obuf->len = rem;
2036 ibuf->offset += obuf->len;
2037 ibuf->len -= obuf->len;
2038 }
2039 nbuf++;
2040 rem -= obuf->len;
2041 }
2042 pipe_unlock(pipe);
2043
Miklos Szeredidc008092015-07-01 16:25:58 +02002044 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002045 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04002046 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002047 cs.pipe = pipe;
2048
Miklos Szeredice534fb2010-05-25 15:06:07 +02002049 if (flags & SPLICE_F_MOVE)
2050 cs.move_pages = 1;
2051
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002052 ret = fuse_dev_do_write(fc, &cs, len);
2053
2054 for (idx = 0; idx < nbuf; idx++) {
2055 struct pipe_buffer *buf = &bufs[idx];
2056 buf->ops->release(pipe, buf);
2057 }
2058out:
2059 kfree(bufs);
2060 return ret;
2061}
2062
Miklos Szeredi334f4852005-09-09 13:10:27 -07002063static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2064{
Miklos Szeredi334f4852005-09-09 13:10:27 -07002065 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002066 struct fuse_iqueue *fiq;
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002067 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002068 if (!fc)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002069 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002070
Miklos Szeredif88996a2015-07-01 16:26:01 +02002071 fiq = &fc->iq;
2072 poll_wait(file, &fiq->waitq, wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002073
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002074 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +02002075 if (!fiq->connected)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002076 mask = POLLERR;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002077 else if (request_pending(fiq))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002078 mask |= POLLIN | POLLRDNORM;
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002079 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002080
2081 return mask;
2082}
2083
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002084/*
2085 * Abort all requests on the given list (pending or processing)
2086 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002087 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002088 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002089static void end_requests(struct fuse_conn *fc, struct list_head *head)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02002090__releases(fc->lock)
2091__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002092{
2093 while (!list_empty(head)) {
2094 struct fuse_req *req;
2095 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002096 req->out.h.error = -ECONNABORTED;
Miklos Szeredi33e14b42015-07-01 16:26:01 +02002097 clear_bit(FR_PENDING, &req->flags);
2098 clear_bit(FR_SENT, &req->flags);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002099 list_del_init(&req->list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002100 request_end(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07002101 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002102 }
2103}
2104
Bryan Green357ccf22011-03-01 16:43:52 -08002105static void end_polls(struct fuse_conn *fc)
2106{
2107 struct rb_node *p;
2108
2109 p = rb_first(&fc->polled_files);
2110
2111 while (p) {
2112 struct fuse_file *ff;
2113 ff = rb_entry(p, struct fuse_file, polled_node);
2114 wake_up_interruptible_all(&ff->poll_wait);
2115
2116 p = rb_next(p);
2117 }
2118}
2119
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002120/*
2121 * Abort all requests.
2122 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002123 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2124 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002125 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002126 * The same effect is usually achievable through killing the filesystem daemon
2127 * and all users of the filesystem. The exception is the combination of an
2128 * asynchronous request and the tricky deadlock (see
2129 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002130 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002131 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2132 * requests, they should be finished off immediately. Locked requests will be
2133 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2134 * requests. It is possible that some request will finish before we can. This
2135 * is OK, the request will in that case be removed from the list before we touch
2136 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002137 */
2138void fuse_abort_conn(struct fuse_conn *fc)
2139{
Miklos Szeredif88996a2015-07-01 16:26:01 +02002140 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02002141 struct fuse_pqueue *fpq = &fc->pq;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002142
Miklos Szeredid7133112006-04-10 22:54:55 -07002143 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002144 if (fc->connected) {
Miklos Szeredib716d422015-07-01 16:25:59 +02002145 struct fuse_req *req, *next;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002146 LIST_HEAD(to_end1);
2147 LIST_HEAD(to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002148
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002149 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002150 fc->blocked = 0;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002151 fuse_set_initialized(fc);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02002152 spin_lock(&fpq->lock);
Miklos Szeredie96edd92015-07-01 16:26:04 +02002153 fpq->connected = 0;
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02002154 list_for_each_entry_safe(req, next, &fpq->io, list) {
Miklos Szeredib716d422015-07-01 16:25:59 +02002155 req->out.h.error = -ECONNABORTED;
2156 spin_lock(&req->waitq.lock);
2157 set_bit(FR_ABORTED, &req->flags);
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02002158 if (!test_bit(FR_LOCKED, &req->flags)) {
2159 set_bit(FR_PRIVATE, &req->flags);
Miklos Szeredi41f98272015-07-01 16:25:59 +02002160 list_move(&req->list, &to_end1);
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02002161 }
Miklos Szeredib716d422015-07-01 16:25:59 +02002162 spin_unlock(&req->waitq.lock);
2163 }
Miklos Szeredi24b4d332015-07-01 16:26:05 +02002164 list_splice_init(&fpq->processing, &to_end2);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02002165 spin_unlock(&fpq->lock);
Miklos Szeredi41f98272015-07-01 16:25:59 +02002166 fc->max_background = UINT_MAX;
2167 flush_bg_queue(fc);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002168
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002169 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002170 fiq->connected = 0;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002171 list_splice_init(&fiq->pending, &to_end2);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002172 while (forget_pending(fiq))
2173 kfree(dequeue_forget(fiq, 1, NULL));
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002174 wake_up_all_locked(&fiq->waitq);
2175 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002176 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
2177
Miklos Szeredi41f98272015-07-01 16:25:59 +02002178 while (!list_empty(&to_end1)) {
2179 req = list_first_entry(&to_end1, struct fuse_req, list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002180 __fuse_get_request(req);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002181 list_del_init(&req->list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002182 request_end(fc, req);
2183 spin_lock(&fc->lock);
2184 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002185 end_requests(fc, &to_end2);
Bryan Green357ccf22011-03-01 16:43:52 -08002186 end_polls(fc);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002187 wake_up_all(&fc->blocked_waitq);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002188 }
Miklos Szeredid7133112006-04-10 22:54:55 -07002189 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002190}
Tejun Heo08cbf542009-04-14 10:54:53 +09002191EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002192
Tejun Heo08cbf542009-04-14 10:54:53 +09002193int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002194{
Miklos Szeredi0720b312006-04-10 22:54:55 -07002195 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002196 if (fc) {
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02002197 WARN_ON(!list_empty(&fc->pq.io));
Miklos Szeredif88996a2015-07-01 16:26:01 +02002198 WARN_ON(fc->iq.fasync != NULL);
Miklos Szerediccd0a0b2015-07-01 16:25:57 +02002199 fuse_abort_conn(fc);
Miklos Szeredibafa9652006-06-25 05:48:51 -07002200 fuse_conn_put(fc);
Jeff Dike385a17b2006-04-10 22:54:52 -07002201 }
Miklos Szeredif543f252006-01-16 22:14:35 -08002202
Miklos Szeredi334f4852005-09-09 13:10:27 -07002203 return 0;
2204}
Tejun Heo08cbf542009-04-14 10:54:53 +09002205EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002206
Jeff Dike385a17b2006-04-10 22:54:52 -07002207static int fuse_dev_fasync(int fd, struct file *file, int on)
2208{
2209 struct fuse_conn *fc = fuse_get_conn(file);
2210 if (!fc)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002211 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002212
2213 /* No locking - fasync_helper does its own locking */
Miklos Szeredif88996a2015-07-01 16:26:01 +02002214 return fasync_helper(fd, file, on, &fc->iq.fasync);
Jeff Dike385a17b2006-04-10 22:54:52 -07002215}
2216
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002217const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002218 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002219 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002220 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002221 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002222 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002223 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002224 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002225 .poll = fuse_dev_poll,
2226 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002227 .fasync = fuse_dev_fasync,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002228};
Tejun Heo08cbf542009-04-14 10:54:53 +09002229EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002230
2231static struct miscdevice fuse_miscdevice = {
2232 .minor = FUSE_MINOR,
2233 .name = "fuse",
2234 .fops = &fuse_dev_operations,
2235};
2236
2237int __init fuse_dev_init(void)
2238{
2239 int err = -ENOMEM;
2240 fuse_req_cachep = kmem_cache_create("fuse_request",
2241 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002242 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002243 if (!fuse_req_cachep)
2244 goto out;
2245
2246 err = misc_register(&fuse_miscdevice);
2247 if (err)
2248 goto out_cache_clean;
2249
2250 return 0;
2251
2252 out_cache_clean:
2253 kmem_cache_destroy(fuse_req_cachep);
2254 out:
2255 return err;
2256}
2257
2258void fuse_dev_cleanup(void)
2259{
2260 misc_deregister(&fuse_miscdevice);
2261 kmem_cache_destroy(fuse_req_cachep);
2262}