blob: 71c4619af3330671bf4c41bbc9ce1cee4f9dd5d8 [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>
Kent Overstreeta27bb332013-05-07 16:19:08 -070022#include <linux/aio.h>
Miklos Szeredi334f4852005-09-09 13:10:27 -070023
24MODULE_ALIAS_MISCDEV(FUSE_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +020025MODULE_ALIAS("devname:fuse");
Miklos Szeredi334f4852005-09-09 13:10:27 -070026
Christoph Lametere18b8902006-12-06 20:33:20 -080027static struct kmem_cache *fuse_req_cachep;
Miklos Szeredi334f4852005-09-09 13:10:27 -070028
Miklos Szeredi8bfc0162006-01-16 22:14:28 -080029static struct fuse_conn *fuse_get_conn(struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -070030{
Miklos Szeredi0720b312006-04-10 22:54:55 -070031 /*
32 * Lockless access is OK, because file->private data is set
33 * once during mount and is valid until the file is released.
34 */
35 return file->private_data;
Miklos Szeredi334f4852005-09-09 13:10:27 -070036}
37
Maxim Patlasov4250c062012-10-26 19:48:07 +040038static void fuse_request_init(struct fuse_req *req, struct page **pages,
Maxim Patlasovb2430d72012-10-26 19:49:24 +040039 struct fuse_page_desc *page_descs,
Maxim Patlasov4250c062012-10-26 19:48:07 +040040 unsigned npages)
Miklos Szeredi334f4852005-09-09 13:10:27 -070041{
42 memset(req, 0, sizeof(*req));
Maxim Patlasov4250c062012-10-26 19:48:07 +040043 memset(pages, 0, sizeof(*pages) * npages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040044 memset(page_descs, 0, sizeof(*page_descs) * npages);
Miklos Szeredi334f4852005-09-09 13:10:27 -070045 INIT_LIST_HEAD(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -070046 INIT_LIST_HEAD(&req->intr_entry);
Miklos Szeredi334f4852005-09-09 13:10:27 -070047 init_waitqueue_head(&req->waitq);
48 atomic_set(&req->count, 1);
Maxim Patlasov4250c062012-10-26 19:48:07 +040049 req->pages = pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040050 req->page_descs = page_descs;
Maxim Patlasov4250c062012-10-26 19:48:07 +040051 req->max_pages = npages;
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
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400172 req = fuse_request_alloc(npages);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200173 err = -ENOMEM;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400174 if (!req) {
175 if (for_background)
176 wake_up(&fc->blocked_waitq);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200177 goto out;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400178 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700179
Miklos Szeredi33649c92006-06-25 05:48:52 -0700180 fuse_req_init_context(req);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200181 req->waiting = 1;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400182 req->background = for_background;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700183 return req;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200184
185 out:
186 atomic_dec(&fc->num_waiting);
187 return ERR_PTR(err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700188}
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400189
190struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages)
191{
192 return __fuse_get_req(fc, npages, false);
193}
Tejun Heo08cbf542009-04-14 10:54:53 +0900194EXPORT_SYMBOL_GPL(fuse_get_req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700195
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400196struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc,
197 unsigned npages)
198{
199 return __fuse_get_req(fc, npages, true);
200}
201EXPORT_SYMBOL_GPL(fuse_get_req_for_background);
202
Miklos Szeredi33649c92006-06-25 05:48:52 -0700203/*
204 * Return request in fuse_file->reserved_req. However that may
205 * currently be in use. If that is the case, wait for it to become
206 * available.
207 */
208static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
209 struct file *file)
210{
211 struct fuse_req *req = NULL;
212 struct fuse_file *ff = file->private_data;
213
214 do {
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700215 wait_event(fc->reserved_req_waitq, ff->reserved_req);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700216 spin_lock(&fc->lock);
217 if (ff->reserved_req) {
218 req = ff->reserved_req;
219 ff->reserved_req = NULL;
Al Virocb0942b2012-08-27 14:48:26 -0400220 req->stolen_file = get_file(file);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700221 }
222 spin_unlock(&fc->lock);
223 } while (!req);
224
225 return req;
226}
227
228/*
229 * Put stolen request back into fuse_file->reserved_req
230 */
231static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
232{
233 struct file *file = req->stolen_file;
234 struct fuse_file *ff = file->private_data;
235
236 spin_lock(&fc->lock);
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400237 fuse_request_init(req, req->pages, req->page_descs, req->max_pages);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700238 BUG_ON(ff->reserved_req);
239 ff->reserved_req = req;
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700240 wake_up_all(&fc->reserved_req_waitq);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700241 spin_unlock(&fc->lock);
242 fput(file);
243}
244
245/*
246 * Gets a requests for a file operation, always succeeds
247 *
248 * This is used for sending the FLUSH request, which must get to
249 * userspace, due to POSIX locks which may need to be unlocked.
250 *
251 * If allocation fails due to OOM, use the reserved request in
252 * fuse_file.
253 *
254 * This is very unlikely to deadlock accidentally, since the
255 * filesystem should not have it's own file open. If deadlock is
256 * intentional, it can still be broken by "aborting" the filesystem.
257 */
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400258struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc,
259 struct file *file)
Miklos Szeredi33649c92006-06-25 05:48:52 -0700260{
261 struct fuse_req *req;
262
263 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400264 wait_event(fc->blocked_waitq, fc->initialized);
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100265 /* Matches smp_wmb() in fuse_set_initialized() */
266 smp_rmb();
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400267 req = fuse_request_alloc(0);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700268 if (!req)
269 req = get_reserved_req(fc, file);
270
271 fuse_req_init_context(req);
272 req->waiting = 1;
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400273 req->background = 0;
Miklos Szeredi33649c92006-06-25 05:48:52 -0700274 return req;
275}
276
Miklos Szeredi334f4852005-09-09 13:10:27 -0700277void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
278{
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800279 if (atomic_dec_and_test(&req->count)) {
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400280 if (unlikely(req->background)) {
281 /*
282 * We get here in the unlikely case that a background
283 * request was allocated but not sent
284 */
285 spin_lock(&fc->lock);
286 if (!fc->blocked)
287 wake_up(&fc->blocked_waitq);
288 spin_unlock(&fc->lock);
289 }
290
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200291 if (req->waiting)
292 atomic_dec(&fc->num_waiting);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700293
294 if (req->stolen_file)
295 put_reserved_req(fc, req);
296 else
297 fuse_request_free(req);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800298 }
299}
Tejun Heo08cbf542009-04-14 10:54:53 +0900300EXPORT_SYMBOL_GPL(fuse_put_request);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800301
Miklos Szeredid12def12008-02-06 01:38:39 -0800302static unsigned len_args(unsigned numargs, struct fuse_arg *args)
303{
304 unsigned nbytes = 0;
305 unsigned i;
306
307 for (i = 0; i < numargs; i++)
308 nbytes += args[i].size;
309
310 return nbytes;
311}
312
313static u64 fuse_get_unique(struct fuse_conn *fc)
314{
315 fc->reqctr++;
316 /* zero is special */
317 if (fc->reqctr == 0)
318 fc->reqctr = 1;
319
320 return fc->reqctr;
321}
322
323static void queue_request(struct fuse_conn *fc, struct fuse_req *req)
324{
Miklos Szeredid12def12008-02-06 01:38:39 -0800325 req->in.h.len = sizeof(struct fuse_in_header) +
326 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
327 list_add_tail(&req->list, &fc->pending);
328 req->state = FUSE_REQ_PENDING;
329 if (!req->waiting) {
330 req->waiting = 1;
331 atomic_inc(&fc->num_waiting);
332 }
333 wake_up(&fc->waitq);
334 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
335}
336
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100337void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
338 u64 nodeid, u64 nlookup)
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
343 spin_lock(&fc->lock);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200344 if (fc->connected) {
345 fc->forget_list_tail->next = forget;
346 fc->forget_list_tail = forget;
347 wake_up(&fc->waitq);
348 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
349 } else {
350 kfree(forget);
351 }
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100352 spin_unlock(&fc->lock);
353}
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;
360
361 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
362 list_del(&req->list);
363 fc->active_background++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200364 req->in.h.unique = fuse_get_unique(fc);
Miklos Szeredid12def12008-02-06 01:38:39 -0800365 queue_request(fc, req);
366 }
367}
368
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200369/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700370 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700371 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800372 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700373 * was closed. The requester thread is woken up (if still waiting),
374 * the 'end' callback is called if given, else the reference to the
375 * request is released
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800376 *
Miklos Szeredid7133112006-04-10 22:54:55 -0700377 * Called with fc->lock, unlocks it
Miklos Szeredi334f4852005-09-09 13:10:27 -0700378 */
379static void request_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200380__releases(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700381{
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700382 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
383 req->end = NULL;
Miklos Szeredid77a1d52006-01-16 22:14:31 -0800384 list_del(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700385 list_del(&req->intr_entry);
Miklos Szeredi83cfd492006-01-16 22:14:31 -0800386 req->state = FUSE_REQ_FINISHED;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700387 if (req->background) {
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400388 req->background = 0;
389
390 if (fc->num_background == fc->max_background)
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700391 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400392
393 /* Wake up next waiter, if any */
Miklos Szeredi3c18ef82013-04-17 21:50:58 +0200394 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400395 wake_up(&fc->blocked_waitq);
396
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700397 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900398 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200399 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
400 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700401 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700402 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800403 fc->active_background--;
404 flush_bg_queue(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700405 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700406 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700407 wake_up(&req->waitq);
408 if (end)
409 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100410 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700411}
412
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700413static void wait_answer_interruptible(struct fuse_conn *fc,
414 struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200415__releases(fc->lock)
416__acquires(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700417{
418 if (signal_pending(current))
419 return;
420
421 spin_unlock(&fc->lock);
422 wait_event_interruptible(req->waitq, req->state == FUSE_REQ_FINISHED);
423 spin_lock(&fc->lock);
424}
425
426static void queue_interrupt(struct fuse_conn *fc, struct fuse_req *req)
427{
428 list_add_tail(&req->intr_entry, &fc->interrupts);
429 wake_up(&fc->waitq);
430 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
431}
432
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700433static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200434__releases(fc->lock)
435__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700436{
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700437 if (!fc->no_interrupt) {
438 /* Any signal may interrupt this */
439 wait_answer_interruptible(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700440
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700441 if (req->aborted)
442 goto aborted;
443 if (req->state == FUSE_REQ_FINISHED)
444 return;
445
446 req->interrupted = 1;
447 if (req->state == FUSE_REQ_SENT)
448 queue_interrupt(fc, req);
449 }
450
Miklos Szeredia131de02007-10-16 23:31:04 -0700451 if (!req->force) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700452 sigset_t oldset;
453
454 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700455 block_sigs(&oldset);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700456 wait_answer_interruptible(fc, req);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700457 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700458
459 if (req->aborted)
460 goto aborted;
461 if (req->state == FUSE_REQ_FINISHED)
462 return;
463
464 /* Request is not yet in userspace, bail out */
465 if (req->state == FUSE_REQ_PENDING) {
466 list_del(&req->list);
467 __fuse_put_request(req);
468 req->out.h.error = -EINTR;
469 return;
470 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700471 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700472
Miklos Szeredia131de02007-10-16 23:31:04 -0700473 /*
474 * Either request is already in userspace, or it was forced.
475 * Wait it out.
476 */
477 spin_unlock(&fc->lock);
478 wait_event(req->waitq, req->state == FUSE_REQ_FINISHED);
479 spin_lock(&fc->lock);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700480
Miklos Szeredia131de02007-10-16 23:31:04 -0700481 if (!req->aborted)
482 return;
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700483
484 aborted:
Miklos Szeredia131de02007-10-16 23:31:04 -0700485 BUG_ON(req->state != FUSE_REQ_FINISHED);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700486 if (req->locked) {
487 /* This is uninterruptible sleep, because data is
488 being copied to/from the buffers of req. During
489 locked state, there mustn't be any filesystem
490 operation (e.g. page fault), since that could lead
491 to deadlock */
Miklos Szeredid7133112006-04-10 22:54:55 -0700492 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700493 wait_event(req->waitq, !req->locked);
Miklos Szeredid7133112006-04-10 22:54:55 -0700494 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700495 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700496}
497
Eric Wong6a4e9222013-02-04 13:04:44 +0000498static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700499{
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400500 BUG_ON(req->background);
Miklos Szeredid7133112006-04-10 22:54:55 -0700501 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700502 if (!fc->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700503 req->out.h.error = -ENOTCONN;
504 else if (fc->conn_error)
505 req->out.h.error = -ECONNREFUSED;
506 else {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200507 req->in.h.unique = fuse_get_unique(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700508 queue_request(fc, req);
509 /* acquire extra reference, since request is still needed
510 after request_end() */
511 __fuse_get_request(req);
512
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700513 request_wait_answer(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700514 }
Miklos Szeredid7133112006-04-10 22:54:55 -0700515 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700516}
Eric Wong6a4e9222013-02-04 13:04:44 +0000517
518void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
519{
520 req->isreply = 1;
521 __fuse_request_send(fc, req);
522}
Tejun Heo08cbf542009-04-14 10:54:53 +0900523EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700524
Miklos Szeredi21f62172015-01-06 10:45:35 +0100525static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
526{
527 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
528 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
529
530 if (fc->minor < 9) {
531 switch (args->in.h.opcode) {
532 case FUSE_LOOKUP:
533 case FUSE_CREATE:
534 case FUSE_MKNOD:
535 case FUSE_MKDIR:
536 case FUSE_SYMLINK:
537 case FUSE_LINK:
538 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
539 break;
540 case FUSE_GETATTR:
541 case FUSE_SETATTR:
542 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
543 break;
544 }
545 }
546 if (fc->minor < 12) {
547 switch (args->in.h.opcode) {
548 case FUSE_CREATE:
549 args->in.args[0].size = sizeof(struct fuse_open_in);
550 break;
551 case FUSE_MKNOD:
552 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
553 break;
554 }
555 }
556}
557
Miklos Szeredi70781872014-12-12 09:49:05 +0100558ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
559{
560 struct fuse_req *req;
561 ssize_t ret;
562
563 req = fuse_get_req(fc, 0);
564 if (IS_ERR(req))
565 return PTR_ERR(req);
566
Miklos Szeredi21f62172015-01-06 10:45:35 +0100567 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
568 fuse_adjust_compat(fc, args);
569
Miklos Szeredi70781872014-12-12 09:49:05 +0100570 req->in.h.opcode = args->in.h.opcode;
571 req->in.h.nodeid = args->in.h.nodeid;
572 req->in.numargs = args->in.numargs;
573 memcpy(req->in.args, args->in.args,
574 args->in.numargs * sizeof(struct fuse_in_arg));
575 req->out.argvar = args->out.argvar;
576 req->out.numargs = args->out.numargs;
577 memcpy(req->out.args, args->out.args,
578 args->out.numargs * sizeof(struct fuse_arg));
579 fuse_request_send(fc, req);
580 ret = req->out.h.error;
581 if (!ret && args->out.argvar) {
582 BUG_ON(args->out.numargs != 1);
583 ret = req->out.args[0].size;
584 }
585 fuse_put_request(fc, req);
586
587 return ret;
588}
589
Tejun Heob93f8582008-11-26 12:03:55 +0100590static void fuse_request_send_nowait_locked(struct fuse_conn *fc,
591 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800592{
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400593 BUG_ON(!req->background);
Miklos Szeredid12def12008-02-06 01:38:39 -0800594 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700595 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800596 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700597 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900598 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200599 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
600 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800601 }
602 list_add_tail(&req->list, &fc->bg_queue);
603 flush_bg_queue(fc);
604}
605
Tejun Heob93f8582008-11-26 12:03:55 +0100606static void fuse_request_send_nowait(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700607{
Miklos Szeredid7133112006-04-10 22:54:55 -0700608 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700609 if (fc->connected) {
Tejun Heob93f8582008-11-26 12:03:55 +0100610 fuse_request_send_nowait_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700611 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700612 } else {
613 req->out.h.error = -ENOTCONN;
614 request_end(fc, req);
615 }
616}
617
Tejun Heob93f8582008-11-26 12:03:55 +0100618void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700619{
620 req->isreply = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100621 fuse_request_send_nowait(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700622}
Tejun Heo08cbf542009-04-14 10:54:53 +0900623EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700624
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200625static int fuse_request_send_notify_reply(struct fuse_conn *fc,
626 struct fuse_req *req, u64 unique)
627{
628 int err = -ENODEV;
629
630 req->isreply = 0;
631 req->in.h.unique = unique;
632 spin_lock(&fc->lock);
633 if (fc->connected) {
634 queue_request(fc, req);
635 err = 0;
636 }
637 spin_unlock(&fc->lock);
638
639 return err;
640}
641
Miklos Szeredi334f4852005-09-09 13:10:27 -0700642/*
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700643 * Called under fc->lock
644 *
645 * fc->connected must have been checked previously
646 */
Tejun Heob93f8582008-11-26 12:03:55 +0100647void fuse_request_send_background_locked(struct fuse_conn *fc,
648 struct fuse_req *req)
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700649{
650 req->isreply = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100651 fuse_request_send_nowait_locked(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700652}
653
Anand V. Avati0b05b182012-08-19 08:53:23 -0400654void fuse_force_forget(struct file *file, u64 nodeid)
655{
Al Viro6131ffa2013-02-27 16:59:05 -0500656 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400657 struct fuse_conn *fc = get_fuse_conn(inode);
658 struct fuse_req *req;
659 struct fuse_forget_in inarg;
660
661 memset(&inarg, 0, sizeof(inarg));
662 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400663 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400664 req->in.h.opcode = FUSE_FORGET;
665 req->in.h.nodeid = nodeid;
666 req->in.numargs = 1;
667 req->in.args[0].size = sizeof(inarg);
668 req->in.args[0].value = &inarg;
669 req->isreply = 0;
Eric Wong6a4e9222013-02-04 13:04:44 +0000670 __fuse_request_send(fc, req);
671 /* ignore errors */
672 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400673}
674
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700675/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700676 * Lock the request. Up to the next unlock_request() there mustn't be
677 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700678 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700679 */
Miklos Szeredid7133112006-04-10 22:54:55 -0700680static int lock_request(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700681{
682 int err = 0;
683 if (req) {
Miklos Szeredid7133112006-04-10 22:54:55 -0700684 spin_lock(&fc->lock);
Miklos Szeredif9a28422006-06-25 05:48:53 -0700685 if (req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700686 err = -ENOENT;
687 else
688 req->locked = 1;
Miklos Szeredid7133112006-04-10 22:54:55 -0700689 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700690 }
691 return err;
692}
693
694/*
Miklos Szeredif9a28422006-06-25 05:48:53 -0700695 * Unlock request. If it was aborted during being locked, the
Miklos Szeredi334f4852005-09-09 13:10:27 -0700696 * requester thread is currently waiting for it to be unlocked, so
697 * wake it up.
698 */
Miklos Szeredid7133112006-04-10 22:54:55 -0700699static void unlock_request(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700700{
701 if (req) {
Miklos Szeredid7133112006-04-10 22:54:55 -0700702 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700703 req->locked = 0;
Miklos Szeredif9a28422006-06-25 05:48:53 -0700704 if (req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700705 wake_up(&req->waitq);
Miklos Szeredid7133112006-04-10 22:54:55 -0700706 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700707 }
708}
709
710struct fuse_copy_state {
Miklos Szeredid7133112006-04-10 22:54:55 -0700711 struct fuse_conn *fc;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700712 int write;
713 struct fuse_req *req;
714 const struct iovec *iov;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200715 struct pipe_buffer *pipebufs;
716 struct pipe_buffer *currbuf;
717 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700718 unsigned long nr_segs;
719 unsigned long seglen;
720 unsigned long addr;
721 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700722 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200723 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200724 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700725};
726
Miklos Szeredid7133112006-04-10 22:54:55 -0700727static void fuse_copy_init(struct fuse_copy_state *cs, struct fuse_conn *fc,
Miklos Szeredic3021622010-05-25 15:06:07 +0200728 int write,
Miklos Szeredid7133112006-04-10 22:54:55 -0700729 const struct iovec *iov, unsigned long nr_segs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700730{
731 memset(cs, 0, sizeof(*cs));
Miklos Szeredid7133112006-04-10 22:54:55 -0700732 cs->fc = fc;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700733 cs->write = write;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700734 cs->iov = iov;
735 cs->nr_segs = nr_segs;
736}
737
738/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800739static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700740{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200741 if (cs->currbuf) {
742 struct pipe_buffer *buf = cs->currbuf;
743
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200744 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200745 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200746 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200747 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700748 if (cs->write) {
749 flush_dcache_page(cs->pg);
750 set_page_dirty_lock(cs->pg);
751 }
752 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700753 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200754 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700755}
756
757/*
758 * Get another pagefull of userspace buffer, and map it to kernel
759 * address space, and lock request
760 */
761static int fuse_copy_fill(struct fuse_copy_state *cs)
762{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200763 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700764 int err;
765
Miklos Szeredid7133112006-04-10 22:54:55 -0700766 unlock_request(cs->fc, cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700767 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200768 if (cs->pipebufs) {
769 struct pipe_buffer *buf = cs->pipebufs;
770
Miklos Szeredic3021622010-05-25 15:06:07 +0200771 if (!cs->write) {
772 err = buf->ops->confirm(cs->pipe, buf);
773 if (err)
774 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200775
Miklos Szeredic3021622010-05-25 15:06:07 +0200776 BUG_ON(!cs->nr_segs);
777 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200778 cs->pg = buf->page;
779 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200780 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200781 cs->pipebufs++;
782 cs->nr_segs--;
783 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200784 if (cs->nr_segs == cs->pipe->buffers)
785 return -EIO;
786
787 page = alloc_page(GFP_HIGHUSER);
788 if (!page)
789 return -ENOMEM;
790
791 buf->page = page;
792 buf->offset = 0;
793 buf->len = 0;
794
795 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200796 cs->pg = page;
797 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200798 cs->len = PAGE_SIZE;
799 cs->pipebufs++;
800 cs->nr_segs++;
801 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200802 } else {
803 if (!cs->seglen) {
804 BUG_ON(!cs->nr_segs);
805 cs->seglen = cs->iov[0].iov_len;
806 cs->addr = (unsigned long) cs->iov[0].iov_base;
807 cs->iov++;
808 cs->nr_segs--;
809 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200810 err = get_user_pages_fast(cs->addr, 1, cs->write, &page);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200811 if (err < 0)
812 return err;
813 BUG_ON(err != 1);
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200814 cs->pg = page;
815 cs->offset = cs->addr % PAGE_SIZE;
816 cs->len = min(PAGE_SIZE - cs->offset, cs->seglen);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200817 cs->seglen -= cs->len;
818 cs->addr += cs->len;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700819 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700820
Miklos Szeredid7133112006-04-10 22:54:55 -0700821 return lock_request(cs->fc, cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700822}
823
824/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800825static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700826{
827 unsigned ncpy = min(*size, cs->len);
828 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200829 void *pgaddr = kmap_atomic(cs->pg);
830 void *buf = pgaddr + cs->offset;
831
Miklos Szeredi334f4852005-09-09 13:10:27 -0700832 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200833 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700834 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200835 memcpy(*val, buf, ncpy);
836
837 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700838 *val += ncpy;
839 }
840 *size -= ncpy;
841 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200842 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700843 return ncpy;
844}
845
Miklos Szeredice534fb2010-05-25 15:06:07 +0200846static int fuse_check_page(struct page *page)
847{
848 if (page_mapcount(page) ||
849 page->mapping != NULL ||
850 page_count(page) != 1 ||
851 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
852 ~(1 << PG_locked |
853 1 << PG_referenced |
854 1 << PG_uptodate |
855 1 << PG_lru |
856 1 << PG_active |
857 1 << PG_reclaim))) {
858 printk(KERN_WARNING "fuse: trying to steal weird page\n");
859 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);
860 return 1;
861 }
862 return 0;
863}
864
865static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
866{
867 int err;
868 struct page *oldpage = *pagep;
869 struct page *newpage;
870 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200871
872 unlock_request(cs->fc, cs->req);
873 fuse_copy_finish(cs);
874
875 err = buf->ops->confirm(cs->pipe, buf);
876 if (err)
877 return err;
878
879 BUG_ON(!cs->nr_segs);
880 cs->currbuf = buf;
881 cs->len = buf->len;
882 cs->pipebufs++;
883 cs->nr_segs--;
884
885 if (cs->len != PAGE_SIZE)
886 goto out_fallback;
887
888 if (buf->ops->steal(cs->pipe, buf) != 0)
889 goto out_fallback;
890
891 newpage = buf->page;
892
Miklos Szerediaa991b32015-02-26 11:45:47 +0100893 if (!PageUptodate(newpage))
894 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200895
896 ClearPageMappedToDisk(newpage);
897
898 if (fuse_check_page(newpage) != 0)
899 goto out_fallback_unlock;
900
Miklos Szeredice534fb2010-05-25 15:06:07 +0200901 /*
902 * This is a new and locked page, it shouldn't be mapped or
903 * have any special flags on it
904 */
905 if (WARN_ON(page_mapped(oldpage)))
906 goto out_fallback_unlock;
907 if (WARN_ON(page_has_private(oldpage)))
908 goto out_fallback_unlock;
909 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
910 goto out_fallback_unlock;
911 if (WARN_ON(PageMlocked(oldpage)))
912 goto out_fallback_unlock;
913
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700914 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200915 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700916 unlock_page(newpage);
917 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200918 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700919
Miklos Szeredice534fb2010-05-25 15:06:07 +0200920 page_cache_get(newpage);
921
922 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
923 lru_cache_add_file(newpage);
924
925 err = 0;
926 spin_lock(&cs->fc->lock);
927 if (cs->req->aborted)
928 err = -ENOENT;
929 else
930 *pagep = newpage;
931 spin_unlock(&cs->fc->lock);
932
933 if (err) {
934 unlock_page(newpage);
935 page_cache_release(newpage);
936 return err;
937 }
938
939 unlock_page(oldpage);
940 page_cache_release(oldpage);
941 cs->len = 0;
942
943 return 0;
944
945out_fallback_unlock:
946 unlock_page(newpage);
947out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200948 cs->pg = buf->page;
949 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200950
951 err = lock_request(cs->fc, cs->req);
952 if (err)
953 return err;
954
955 return 1;
956}
957
Miklos Szeredic3021622010-05-25 15:06:07 +0200958static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
959 unsigned offset, unsigned count)
960{
961 struct pipe_buffer *buf;
962
963 if (cs->nr_segs == cs->pipe->buffers)
964 return -EIO;
965
966 unlock_request(cs->fc, cs->req);
967 fuse_copy_finish(cs);
968
969 buf = cs->pipebufs;
970 page_cache_get(page);
971 buf->page = page;
972 buf->offset = offset;
973 buf->len = count;
974
975 cs->pipebufs++;
976 cs->nr_segs++;
977 cs->len = 0;
978
979 return 0;
980}
981
Miklos Szeredi334f4852005-09-09 13:10:27 -0700982/*
983 * Copy a page in the request to/from the userspace buffer. Must be
984 * done atomically
985 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200986static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800987 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700988{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200989 int err;
990 struct page *page = *pagep;
991
Miklos Szeredib6777c42010-10-26 14:22:27 -0700992 if (page && zeroing && count < PAGE_SIZE)
993 clear_highpage(page);
994
Miklos Szeredi334f4852005-09-09 13:10:27 -0700995 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200996 if (cs->write && cs->pipebufs && page) {
997 return fuse_ref_page(cs, page, offset, count);
998 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200999 if (cs->move_pages && page &&
1000 offset == 0 && count == PAGE_SIZE) {
1001 err = fuse_try_move_page(cs, pagep);
1002 if (err <= 0)
1003 return err;
1004 } else {
1005 err = fuse_copy_fill(cs);
1006 if (err)
1007 return err;
1008 }
Miklos Szeredi1729a162008-11-26 12:03:54 +01001009 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001010 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +08001011 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001012 void *buf = mapaddr + offset;
1013 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +08001014 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001015 } else
1016 offset += fuse_copy_do(cs, NULL, &count);
1017 }
1018 if (page && !cs->write)
1019 flush_dcache_page(page);
1020 return 0;
1021}
1022
1023/* Copy pages in the request to/from userspace buffer */
1024static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
1025 int zeroing)
1026{
1027 unsigned i;
1028 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001029
1030 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +02001031 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001032 unsigned offset = req->page_descs[i].offset;
1033 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001034
1035 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1036 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001037 if (err)
1038 return err;
1039
1040 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001041 }
1042 return 0;
1043}
1044
1045/* Copy a single argument in the request to/from userspace buffer */
1046static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1047{
1048 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001049 if (!cs->len) {
1050 int err = fuse_copy_fill(cs);
1051 if (err)
1052 return err;
1053 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001054 fuse_copy_do(cs, &val, &size);
1055 }
1056 return 0;
1057}
1058
1059/* Copy request arguments to/from userspace buffer */
1060static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1061 unsigned argpages, struct fuse_arg *args,
1062 int zeroing)
1063{
1064 int err = 0;
1065 unsigned i;
1066
1067 for (i = 0; !err && i < numargs; i++) {
1068 struct fuse_arg *arg = &args[i];
1069 if (i == numargs - 1 && argpages)
1070 err = fuse_copy_pages(cs, arg->size, zeroing);
1071 else
1072 err = fuse_copy_one(cs, arg->value, arg->size);
1073 }
1074 return err;
1075}
1076
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001077static int forget_pending(struct fuse_conn *fc)
1078{
1079 return fc->forget_list_head.next != NULL;
1080}
1081
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001082static int request_pending(struct fuse_conn *fc)
1083{
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001084 return !list_empty(&fc->pending) || !list_empty(&fc->interrupts) ||
1085 forget_pending(fc);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001086}
1087
Miklos Szeredi334f4852005-09-09 13:10:27 -07001088/* Wait until a request is available on the pending list */
1089static void request_wait(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001090__releases(fc->lock)
1091__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001092{
1093 DECLARE_WAITQUEUE(wait, current);
1094
1095 add_wait_queue_exclusive(&fc->waitq, &wait);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001096 while (fc->connected && !request_pending(fc)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001097 set_current_state(TASK_INTERRUPTIBLE);
1098 if (signal_pending(current))
1099 break;
1100
Miklos Szeredid7133112006-04-10 22:54:55 -07001101 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001102 schedule();
Miklos Szeredid7133112006-04-10 22:54:55 -07001103 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001104 }
1105 set_current_state(TASK_RUNNING);
1106 remove_wait_queue(&fc->waitq, &wait);
1107}
1108
1109/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001110 * Transfer an interrupt request to userspace
1111 *
1112 * Unlike other requests this is assembled on demand, without a need
1113 * to allocate a separate fuse_req structure.
1114 *
1115 * Called with fc->lock held, releases it
1116 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001117static int fuse_read_interrupt(struct fuse_conn *fc, struct fuse_copy_state *cs,
1118 size_t nbytes, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001119__releases(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001120{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001121 struct fuse_in_header ih;
1122 struct fuse_interrupt_in arg;
1123 unsigned reqsize = sizeof(ih) + sizeof(arg);
1124 int err;
1125
1126 list_del_init(&req->intr_entry);
1127 req->intr_unique = fuse_get_unique(fc);
1128 memset(&ih, 0, sizeof(ih));
1129 memset(&arg, 0, sizeof(arg));
1130 ih.len = reqsize;
1131 ih.opcode = FUSE_INTERRUPT;
1132 ih.unique = req->intr_unique;
1133 arg.unique = req->in.h.unique;
1134
1135 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001136 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001137 return -EINVAL;
1138
Miklos Szeredic3021622010-05-25 15:06:07 +02001139 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001140 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001141 err = fuse_copy_one(cs, &arg, sizeof(arg));
1142 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001143
1144 return err ? err : reqsize;
1145}
1146
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001147static struct fuse_forget_link *dequeue_forget(struct fuse_conn *fc,
1148 unsigned max,
1149 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001150{
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001151 struct fuse_forget_link *head = fc->forget_list_head.next;
1152 struct fuse_forget_link **newhead = &head;
1153 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001154
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001155 for (count = 0; *newhead != NULL && count < max; count++)
1156 newhead = &(*newhead)->next;
1157
1158 fc->forget_list_head.next = *newhead;
1159 *newhead = NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001160 if (fc->forget_list_head.next == NULL)
1161 fc->forget_list_tail = &fc->forget_list_head;
1162
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001163 if (countp != NULL)
1164 *countp = count;
1165
1166 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001167}
1168
1169static int fuse_read_single_forget(struct fuse_conn *fc,
1170 struct fuse_copy_state *cs,
1171 size_t nbytes)
1172__releases(fc->lock)
1173{
1174 int err;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001175 struct fuse_forget_link *forget = dequeue_forget(fc, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001176 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001177 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001178 };
1179 struct fuse_in_header ih = {
1180 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001181 .nodeid = forget->forget_one.nodeid,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001182 .unique = fuse_get_unique(fc),
1183 .len = sizeof(ih) + sizeof(arg),
1184 };
1185
1186 spin_unlock(&fc->lock);
1187 kfree(forget);
1188 if (nbytes < ih.len)
1189 return -EINVAL;
1190
1191 err = fuse_copy_one(cs, &ih, sizeof(ih));
1192 if (!err)
1193 err = fuse_copy_one(cs, &arg, sizeof(arg));
1194 fuse_copy_finish(cs);
1195
1196 if (err)
1197 return err;
1198
1199 return ih.len;
1200}
1201
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001202static int fuse_read_batch_forget(struct fuse_conn *fc,
1203 struct fuse_copy_state *cs, size_t nbytes)
1204__releases(fc->lock)
1205{
1206 int err;
1207 unsigned max_forgets;
1208 unsigned count;
1209 struct fuse_forget_link *head;
1210 struct fuse_batch_forget_in arg = { .count = 0 };
1211 struct fuse_in_header ih = {
1212 .opcode = FUSE_BATCH_FORGET,
1213 .unique = fuse_get_unique(fc),
1214 .len = sizeof(ih) + sizeof(arg),
1215 };
1216
1217 if (nbytes < ih.len) {
1218 spin_unlock(&fc->lock);
1219 return -EINVAL;
1220 }
1221
1222 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
1223 head = dequeue_forget(fc, max_forgets, &count);
1224 spin_unlock(&fc->lock);
1225
1226 arg.count = count;
1227 ih.len += count * sizeof(struct fuse_forget_one);
1228 err = fuse_copy_one(cs, &ih, sizeof(ih));
1229 if (!err)
1230 err = fuse_copy_one(cs, &arg, sizeof(arg));
1231
1232 while (head) {
1233 struct fuse_forget_link *forget = head;
1234
1235 if (!err) {
1236 err = fuse_copy_one(cs, &forget->forget_one,
1237 sizeof(forget->forget_one));
1238 }
1239 head = forget->next;
1240 kfree(forget);
1241 }
1242
1243 fuse_copy_finish(cs);
1244
1245 if (err)
1246 return err;
1247
1248 return ih.len;
1249}
1250
1251static int fuse_read_forget(struct fuse_conn *fc, struct fuse_copy_state *cs,
1252 size_t nbytes)
1253__releases(fc->lock)
1254{
1255 if (fc->minor < 16 || fc->forget_list_head.next->next == NULL)
1256 return fuse_read_single_forget(fc, cs, nbytes);
1257 else
1258 return fuse_read_batch_forget(fc, cs, nbytes);
1259}
1260
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001261/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001262 * Read a single request into the userspace filesystem's buffer. This
1263 * function waits until a request is available, then removes it from
1264 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001265 * no reply is needed (FORGET) or request has been aborted or there
1266 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001267 * request_end(). Otherwise add it to the processing list, and set
1268 * the 'sent' flag.
1269 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001270static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1271 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001272{
1273 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001274 struct fuse_req *req;
1275 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001276 unsigned reqsize;
1277
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001278 restart:
Miklos Szeredid7133112006-04-10 22:54:55 -07001279 spin_lock(&fc->lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001280 err = -EAGAIN;
1281 if ((file->f_flags & O_NONBLOCK) && fc->connected &&
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001282 !request_pending(fc))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001283 goto err_unlock;
1284
Miklos Szeredi334f4852005-09-09 13:10:27 -07001285 request_wait(fc);
1286 err = -ENODEV;
Miklos Szeredi9ba7cbb2006-01-16 22:14:34 -08001287 if (!fc->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001288 goto err_unlock;
1289 err = -ERESTARTSYS;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001290 if (!request_pending(fc))
Miklos Szeredi334f4852005-09-09 13:10:27 -07001291 goto err_unlock;
1292
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001293 if (!list_empty(&fc->interrupts)) {
1294 req = list_entry(fc->interrupts.next, struct fuse_req,
1295 intr_entry);
Miklos Szeredic3021622010-05-25 15:06:07 +02001296 return fuse_read_interrupt(fc, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001297 }
1298
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001299 if (forget_pending(fc)) {
1300 if (list_empty(&fc->pending) || fc->forget_batch-- > 0)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001301 return fuse_read_forget(fc, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001302
1303 if (fc->forget_batch <= -8)
1304 fc->forget_batch = 16;
1305 }
1306
Miklos Szeredi334f4852005-09-09 13:10:27 -07001307 req = list_entry(fc->pending.next, struct fuse_req, list);
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001308 req->state = FUSE_REQ_READING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001309 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001310
1311 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001312 reqsize = in->h.len;
1313 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001314 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001315 req->out.h.error = -EIO;
1316 /* SETXATTR is special, since it may contain too large data */
1317 if (in->h.opcode == FUSE_SETXATTR)
1318 req->out.h.error = -E2BIG;
1319 request_end(fc, req);
1320 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001321 }
Miklos Szeredid7133112006-04-10 22:54:55 -07001322 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001323 cs->req = req;
1324 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001325 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001326 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001327 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001328 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001329 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001330 req->locked = 0;
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001331 if (req->aborted) {
1332 request_end(fc, req);
1333 return -ENODEV;
1334 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001335 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001336 req->out.h.error = -EIO;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001337 request_end(fc, req);
1338 return err;
1339 }
1340 if (!req->isreply)
1341 request_end(fc, req);
1342 else {
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001343 req->state = FUSE_REQ_SENT;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001344 list_move_tail(&req->list, &fc->processing);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001345 if (req->interrupted)
1346 queue_interrupt(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001347 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001348 }
1349 return reqsize;
1350
1351 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001352 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001353 return err;
1354}
1355
Miklos Szeredic3021622010-05-25 15:06:07 +02001356static ssize_t fuse_dev_read(struct kiocb *iocb, const struct iovec *iov,
1357 unsigned long nr_segs, loff_t pos)
1358{
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
1365 fuse_copy_init(&cs, fc, 1, iov, nr_segs);
1366
1367 return fuse_dev_do_read(fc, file, &cs, iov_length(iov, nr_segs));
1368}
1369
Miklos Szeredic3021622010-05-25 15:06:07 +02001370static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1371 struct pipe_inode_info *pipe,
1372 size_t len, unsigned int flags)
1373{
1374 int ret;
1375 int page_nr = 0;
1376 int do_wakeup = 0;
1377 struct pipe_buffer *bufs;
1378 struct fuse_copy_state cs;
1379 struct fuse_conn *fc = fuse_get_conn(in);
1380 if (!fc)
1381 return -EPERM;
1382
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001383 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001384 if (!bufs)
1385 return -ENOMEM;
1386
1387 fuse_copy_init(&cs, fc, 1, NULL, 0);
1388 cs.pipebufs = bufs;
1389 cs.pipe = pipe;
1390 ret = fuse_dev_do_read(fc, in, &cs, len);
1391 if (ret < 0)
1392 goto out;
1393
1394 ret = 0;
1395 pipe_lock(pipe);
1396
1397 if (!pipe->readers) {
1398 send_sig(SIGPIPE, current, 0);
1399 if (!ret)
1400 ret = -EPIPE;
1401 goto out_unlock;
1402 }
1403
1404 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1405 ret = -EIO;
1406 goto out_unlock;
1407 }
1408
1409 while (page_nr < cs.nr_segs) {
1410 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1411 struct pipe_buffer *buf = pipe->bufs + newbuf;
1412
1413 buf->page = bufs[page_nr].page;
1414 buf->offset = bufs[page_nr].offset;
1415 buf->len = bufs[page_nr].len;
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001416 /*
1417 * Need to be careful about this. Having buf->ops in module
1418 * code can Oops if the buffer persists after module unload.
1419 */
1420 buf->ops = &nosteal_pipe_buf_ops;
Miklos Szeredic3021622010-05-25 15:06:07 +02001421
1422 pipe->nrbufs++;
1423 page_nr++;
1424 ret += buf->len;
1425
Al Viro6447a3c2013-03-21 11:01:38 -04001426 if (pipe->files)
Miklos Szeredic3021622010-05-25 15:06:07 +02001427 do_wakeup = 1;
1428 }
1429
1430out_unlock:
1431 pipe_unlock(pipe);
1432
1433 if (do_wakeup) {
1434 smp_mb();
1435 if (waitqueue_active(&pipe->wait))
1436 wake_up_interruptible(&pipe->wait);
1437 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1438 }
1439
1440out:
1441 for (; page_nr < cs.nr_segs; page_nr++)
1442 page_cache_release(bufs[page_nr].page);
1443
1444 kfree(bufs);
1445 return ret;
1446}
1447
Tejun Heo95668a62008-11-26 12:03:55 +01001448static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1449 struct fuse_copy_state *cs)
1450{
1451 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001452 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001453
1454 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001455 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001456
1457 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1458 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001459 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001460
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001461 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001462 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001463
1464err:
1465 fuse_copy_finish(cs);
1466 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001467}
1468
John Muir3b463ae2009-05-31 11:13:57 -04001469static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1470 struct fuse_copy_state *cs)
1471{
1472 struct fuse_notify_inval_inode_out outarg;
1473 int err = -EINVAL;
1474
1475 if (size != sizeof(outarg))
1476 goto err;
1477
1478 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1479 if (err)
1480 goto err;
1481 fuse_copy_finish(cs);
1482
1483 down_read(&fc->killsb);
1484 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001485 if (fc->sb) {
1486 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1487 outarg.off, outarg.len);
1488 }
John Muir3b463ae2009-05-31 11:13:57 -04001489 up_read(&fc->killsb);
1490 return err;
1491
1492err:
1493 fuse_copy_finish(cs);
1494 return err;
1495}
1496
1497static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1498 struct fuse_copy_state *cs)
1499{
1500 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001501 int err = -ENOMEM;
1502 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001503 struct qstr name;
1504
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001505 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1506 if (!buf)
1507 goto err;
1508
1509 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001510 if (size < sizeof(outarg))
1511 goto err;
1512
1513 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1514 if (err)
1515 goto err;
1516
1517 err = -ENAMETOOLONG;
1518 if (outarg.namelen > FUSE_NAME_MAX)
1519 goto err;
1520
Miklos Szeredic2183d12011-08-24 10:20:17 +02001521 err = -EINVAL;
1522 if (size != sizeof(outarg) + outarg.namelen + 1)
1523 goto err;
1524
John Muir3b463ae2009-05-31 11:13:57 -04001525 name.name = buf;
1526 name.len = outarg.namelen;
1527 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1528 if (err)
1529 goto err;
1530 fuse_copy_finish(cs);
1531 buf[outarg.namelen] = 0;
1532 name.hash = full_name_hash(name.name, name.len);
1533
1534 down_read(&fc->killsb);
1535 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001536 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001537 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1538 up_read(&fc->killsb);
1539 kfree(buf);
1540 return err;
1541
1542err:
1543 kfree(buf);
1544 fuse_copy_finish(cs);
1545 return err;
1546}
1547
1548static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1549 struct fuse_copy_state *cs)
1550{
1551 struct fuse_notify_delete_out outarg;
1552 int err = -ENOMEM;
1553 char *buf;
1554 struct qstr name;
1555
1556 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1557 if (!buf)
1558 goto err;
1559
1560 err = -EINVAL;
1561 if (size < sizeof(outarg))
1562 goto err;
1563
1564 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1565 if (err)
1566 goto err;
1567
1568 err = -ENAMETOOLONG;
1569 if (outarg.namelen > FUSE_NAME_MAX)
1570 goto err;
1571
1572 err = -EINVAL;
1573 if (size != sizeof(outarg) + outarg.namelen + 1)
1574 goto err;
1575
1576 name.name = buf;
1577 name.len = outarg.namelen;
1578 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1579 if (err)
1580 goto err;
1581 fuse_copy_finish(cs);
1582 buf[outarg.namelen] = 0;
1583 name.hash = full_name_hash(name.name, name.len);
1584
1585 down_read(&fc->killsb);
1586 err = -ENOENT;
1587 if (fc->sb)
1588 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1589 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001590 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001591 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001592 return err;
1593
1594err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001595 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001596 fuse_copy_finish(cs);
1597 return err;
1598}
1599
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001600static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1601 struct fuse_copy_state *cs)
1602{
1603 struct fuse_notify_store_out outarg;
1604 struct inode *inode;
1605 struct address_space *mapping;
1606 u64 nodeid;
1607 int err;
1608 pgoff_t index;
1609 unsigned int offset;
1610 unsigned int num;
1611 loff_t file_size;
1612 loff_t end;
1613
1614 err = -EINVAL;
1615 if (size < sizeof(outarg))
1616 goto out_finish;
1617
1618 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1619 if (err)
1620 goto out_finish;
1621
1622 err = -EINVAL;
1623 if (size - sizeof(outarg) != outarg.size)
1624 goto out_finish;
1625
1626 nodeid = outarg.nodeid;
1627
1628 down_read(&fc->killsb);
1629
1630 err = -ENOENT;
1631 if (!fc->sb)
1632 goto out_up_killsb;
1633
1634 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1635 if (!inode)
1636 goto out_up_killsb;
1637
1638 mapping = inode->i_mapping;
1639 index = outarg.offset >> PAGE_CACHE_SHIFT;
1640 offset = outarg.offset & ~PAGE_CACHE_MASK;
1641 file_size = i_size_read(inode);
1642 end = outarg.offset + outarg.size;
1643 if (end > file_size) {
1644 file_size = end;
1645 fuse_write_update_size(inode, file_size);
1646 }
1647
1648 num = outarg.size;
1649 while (num) {
1650 struct page *page;
1651 unsigned int this_num;
1652
1653 err = -ENOMEM;
1654 page = find_or_create_page(mapping, index,
1655 mapping_gfp_mask(mapping));
1656 if (!page)
1657 goto out_iput;
1658
1659 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1660 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001661 if (!err && offset == 0 &&
1662 (this_num == PAGE_CACHE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001663 SetPageUptodate(page);
1664 unlock_page(page);
1665 page_cache_release(page);
1666
1667 if (err)
1668 goto out_iput;
1669
1670 num -= this_num;
1671 offset = 0;
1672 index++;
1673 }
1674
1675 err = 0;
1676
1677out_iput:
1678 iput(inode);
1679out_up_killsb:
1680 up_read(&fc->killsb);
1681out_finish:
1682 fuse_copy_finish(cs);
1683 return err;
1684}
1685
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001686static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1687{
Mel Gormanb745bc82014-06-04 16:10:22 -07001688 release_pages(req->pages, req->num_pages, false);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001689}
1690
1691static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1692 struct fuse_notify_retrieve_out *outarg)
1693{
1694 int err;
1695 struct address_space *mapping = inode->i_mapping;
1696 struct fuse_req *req;
1697 pgoff_t index;
1698 loff_t file_size;
1699 unsigned int num;
1700 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001701 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001702 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001703
1704 offset = outarg->offset & ~PAGE_CACHE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001705 file_size = i_size_read(inode);
1706
1707 num = outarg->size;
1708 if (outarg->offset > file_size)
1709 num = 0;
1710 else if (outarg->offset + num > file_size)
1711 num = file_size - outarg->offset;
1712
1713 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1714 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1715
1716 req = fuse_get_req(fc, num_pages);
1717 if (IS_ERR(req))
1718 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001719
1720 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1721 req->in.h.nodeid = outarg->nodeid;
1722 req->in.numargs = 2;
1723 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001724 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001725 req->end = fuse_retrieve_end;
1726
1727 index = outarg->offset >> PAGE_CACHE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001728
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001729 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001730 struct page *page;
1731 unsigned int this_num;
1732
1733 page = find_get_page(mapping, index);
1734 if (!page)
1735 break;
1736
1737 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1738 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001739 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001740 req->num_pages++;
1741
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001742 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001743 num -= this_num;
1744 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001745 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001746 }
1747 req->misc.retrieve_in.offset = outarg->offset;
1748 req->misc.retrieve_in.size = total_len;
1749 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1750 req->in.args[0].value = &req->misc.retrieve_in;
1751 req->in.args[1].size = total_len;
1752
1753 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1754 if (err)
1755 fuse_retrieve_end(fc, req);
1756
1757 return err;
1758}
1759
1760static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1761 struct fuse_copy_state *cs)
1762{
1763 struct fuse_notify_retrieve_out outarg;
1764 struct inode *inode;
1765 int err;
1766
1767 err = -EINVAL;
1768 if (size != sizeof(outarg))
1769 goto copy_finish;
1770
1771 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1772 if (err)
1773 goto copy_finish;
1774
1775 fuse_copy_finish(cs);
1776
1777 down_read(&fc->killsb);
1778 err = -ENOENT;
1779 if (fc->sb) {
1780 u64 nodeid = outarg.nodeid;
1781
1782 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1783 if (inode) {
1784 err = fuse_retrieve(fc, inode, &outarg);
1785 iput(inode);
1786 }
1787 }
1788 up_read(&fc->killsb);
1789
1790 return err;
1791
1792copy_finish:
1793 fuse_copy_finish(cs);
1794 return err;
1795}
1796
Tejun Heo85993962008-11-26 12:03:55 +01001797static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1798 unsigned int size, struct fuse_copy_state *cs)
1799{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001800 /* Don't try to move pages (yet) */
1801 cs->move_pages = 0;
1802
Tejun Heo85993962008-11-26 12:03:55 +01001803 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001804 case FUSE_NOTIFY_POLL:
1805 return fuse_notify_poll(fc, size, cs);
1806
John Muir3b463ae2009-05-31 11:13:57 -04001807 case FUSE_NOTIFY_INVAL_INODE:
1808 return fuse_notify_inval_inode(fc, size, cs);
1809
1810 case FUSE_NOTIFY_INVAL_ENTRY:
1811 return fuse_notify_inval_entry(fc, size, cs);
1812
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001813 case FUSE_NOTIFY_STORE:
1814 return fuse_notify_store(fc, size, cs);
1815
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001816 case FUSE_NOTIFY_RETRIEVE:
1817 return fuse_notify_retrieve(fc, size, cs);
1818
John Muir451d0f52011-12-06 21:50:06 +01001819 case FUSE_NOTIFY_DELETE:
1820 return fuse_notify_delete(fc, size, cs);
1821
Tejun Heo85993962008-11-26 12:03:55 +01001822 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001823 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001824 return -EINVAL;
1825 }
1826}
1827
Miklos Szeredi334f4852005-09-09 13:10:27 -07001828/* Look up request on processing list by unique ID */
1829static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
1830{
Dong Fang05726ac2013-07-30 22:50:01 -04001831 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001832
Dong Fang05726ac2013-07-30 22:50:01 -04001833 list_for_each_entry(req, &fc->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001834 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001835 return req;
1836 }
1837 return NULL;
1838}
1839
1840static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1841 unsigned nbytes)
1842{
1843 unsigned reqsize = sizeof(struct fuse_out_header);
1844
1845 if (out->h.error)
1846 return nbytes != reqsize ? -EINVAL : 0;
1847
1848 reqsize += len_args(out->numargs, out->args);
1849
1850 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1851 return -EINVAL;
1852 else if (reqsize > nbytes) {
1853 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1854 unsigned diffsize = reqsize - nbytes;
1855 if (diffsize > lastarg->size)
1856 return -EINVAL;
1857 lastarg->size -= diffsize;
1858 }
1859 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1860 out->page_zeroing);
1861}
1862
1863/*
1864 * Write a single reply to a request. First the header is copied from
1865 * the write buffer. The request is then searched on the processing
1866 * list by the unique ID found in the header. If found, then remove
1867 * it from the list and copy the rest of the buffer to the request.
1868 * The request is finished by calling request_end()
1869 */
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001870static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1871 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001872{
1873 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001874 struct fuse_req *req;
1875 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001876
Miklos Szeredi334f4852005-09-09 13:10:27 -07001877 if (nbytes < sizeof(struct fuse_out_header))
1878 return -EINVAL;
1879
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001880 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001881 if (err)
1882 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001883
Miklos Szeredi334f4852005-09-09 13:10:27 -07001884 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001885 if (oh.len != nbytes)
1886 goto err_finish;
1887
1888 /*
1889 * Zero oh.unique indicates unsolicited notification message
1890 * and error contains notification code.
1891 */
1892 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001893 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001894 return err ? err : nbytes;
1895 }
1896
1897 err = -EINVAL;
1898 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001899 goto err_finish;
1900
Miklos Szeredid7133112006-04-10 22:54:55 -07001901 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001902 err = -ENOENT;
1903 if (!fc->connected)
1904 goto err_unlock;
1905
Miklos Szeredi334f4852005-09-09 13:10:27 -07001906 req = request_find(fc, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001907 if (!req)
1908 goto err_unlock;
1909
Miklos Szeredif9a28422006-06-25 05:48:53 -07001910 if (req->aborted) {
Miklos Szeredid7133112006-04-10 22:54:55 -07001911 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001912 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001913 spin_lock(&fc->lock);
Miklos Szeredi222f1d62006-01-16 22:14:25 -08001914 request_end(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001915 return -ENOENT;
1916 }
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001917 /* Is it an interrupt reply? */
1918 if (req->intr_unique == oh.unique) {
1919 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)
1926 queue_interrupt(fc, req);
1927
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
1933 req->state = FUSE_REQ_WRITING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001934 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001935 req->out.h = oh;
1936 req->locked = 1;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001937 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001938 if (!req->out.page_replace)
1939 cs->move_pages = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -07001940 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001941
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001942 err = copy_out_args(cs, &req->out, nbytes);
1943 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001944
Miklos Szeredid7133112006-04-10 22:54:55 -07001945 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001946 req->locked = 0;
1947 if (!err) {
Miklos Szeredif9a28422006-06-25 05:48:53 -07001948 if (req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001949 err = -ENOENT;
Miklos Szeredif9a28422006-06-25 05:48:53 -07001950 } else if (!req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001951 req->out.h.error = -EIO;
1952 request_end(fc, req);
1953
1954 return err ? err : nbytes;
1955
1956 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001957 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001958 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001959 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001960 return err;
1961}
1962
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001963static ssize_t fuse_dev_write(struct kiocb *iocb, const struct iovec *iov,
1964 unsigned long nr_segs, loff_t pos)
1965{
1966 struct fuse_copy_state cs;
1967 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1968 if (!fc)
1969 return -EPERM;
1970
Miklos Szeredic3021622010-05-25 15:06:07 +02001971 fuse_copy_init(&cs, fc, 0, iov, nr_segs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001972
1973 return fuse_dev_do_write(fc, &cs, iov_length(iov, nr_segs));
1974}
1975
1976static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1977 struct file *out, loff_t *ppos,
1978 size_t len, unsigned int flags)
1979{
1980 unsigned nbuf;
1981 unsigned idx;
1982 struct pipe_buffer *bufs;
1983 struct fuse_copy_state cs;
1984 struct fuse_conn *fc;
1985 size_t rem;
1986 ssize_t ret;
1987
1988 fc = fuse_get_conn(out);
1989 if (!fc)
1990 return -EPERM;
1991
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001992 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001993 if (!bufs)
1994 return -ENOMEM;
1995
1996 pipe_lock(pipe);
1997 nbuf = 0;
1998 rem = 0;
1999 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
2000 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
2001
2002 ret = -EINVAL;
2003 if (rem < len) {
2004 pipe_unlock(pipe);
2005 goto out;
2006 }
2007
2008 rem = len;
2009 while (rem) {
2010 struct pipe_buffer *ibuf;
2011 struct pipe_buffer *obuf;
2012
2013 BUG_ON(nbuf >= pipe->buffers);
2014 BUG_ON(!pipe->nrbufs);
2015 ibuf = &pipe->bufs[pipe->curbuf];
2016 obuf = &bufs[nbuf];
2017
2018 if (rem >= ibuf->len) {
2019 *obuf = *ibuf;
2020 ibuf->ops = NULL;
2021 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
2022 pipe->nrbufs--;
2023 } else {
2024 ibuf->ops->get(pipe, ibuf);
2025 *obuf = *ibuf;
2026 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2027 obuf->len = rem;
2028 ibuf->offset += obuf->len;
2029 ibuf->len -= obuf->len;
2030 }
2031 nbuf++;
2032 rem -= obuf->len;
2033 }
2034 pipe_unlock(pipe);
2035
Miklos Szeredic3021622010-05-25 15:06:07 +02002036 fuse_copy_init(&cs, fc, 0, NULL, nbuf);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002037 cs.pipebufs = bufs;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002038 cs.pipe = pipe;
2039
Miklos Szeredice534fb2010-05-25 15:06:07 +02002040 if (flags & SPLICE_F_MOVE)
2041 cs.move_pages = 1;
2042
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002043 ret = fuse_dev_do_write(fc, &cs, len);
2044
2045 for (idx = 0; idx < nbuf; idx++) {
2046 struct pipe_buffer *buf = &bufs[idx];
2047 buf->ops->release(pipe, buf);
2048 }
2049out:
2050 kfree(bufs);
2051 return ret;
2052}
2053
Miklos Szeredi334f4852005-09-09 13:10:27 -07002054static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2055{
Miklos Szeredi334f4852005-09-09 13:10:27 -07002056 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002057 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002058 if (!fc)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002059 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002060
2061 poll_wait(file, &fc->waitq, wait);
2062
Miklos Szeredid7133112006-04-10 22:54:55 -07002063 spin_lock(&fc->lock);
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002064 if (!fc->connected)
2065 mask = POLLERR;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07002066 else if (request_pending(fc))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002067 mask |= POLLIN | POLLRDNORM;
Miklos Szeredid7133112006-04-10 22:54:55 -07002068 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002069
2070 return mask;
2071}
2072
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002073/*
2074 * Abort all requests on the given list (pending or processing)
2075 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002076 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002077 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002078static void end_requests(struct fuse_conn *fc, struct list_head *head)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02002079__releases(fc->lock)
2080__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002081{
2082 while (!list_empty(head)) {
2083 struct fuse_req *req;
2084 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002085 req->out.h.error = -ECONNABORTED;
2086 request_end(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07002087 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002088 }
2089}
2090
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002091/*
2092 * Abort requests under I/O
2093 *
Miklos Szeredif9a28422006-06-25 05:48:53 -07002094 * The requests are set to aborted and finished, and the request
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002095 * waiter is woken up. This will make request_wait_answer() wait
2096 * until the request is unlocked and then return.
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08002097 *
2098 * If the request is asynchronous, then the end function needs to be
2099 * called after waiting for the request to be unlocked (if it was
2100 * locked).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002101 */
2102static void end_io_requests(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02002103__releases(fc->lock)
2104__acquires(fc->lock)
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002105{
2106 while (!list_empty(&fc->io)) {
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08002107 struct fuse_req *req =
2108 list_entry(fc->io.next, struct fuse_req, list);
2109 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
2110
Miklos Szeredif9a28422006-06-25 05:48:53 -07002111 req->aborted = 1;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002112 req->out.h.error = -ECONNABORTED;
2113 req->state = FUSE_REQ_FINISHED;
2114 list_del_init(&req->list);
2115 wake_up(&req->waitq);
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08002116 if (end) {
2117 req->end = NULL;
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08002118 __fuse_get_request(req);
Miklos Szeredid7133112006-04-10 22:54:55 -07002119 spin_unlock(&fc->lock);
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08002120 wait_event(req->waitq, !req->locked);
2121 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01002122 fuse_put_request(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07002123 spin_lock(&fc->lock);
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08002124 }
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002125 }
2126}
2127
Miklos Szeredi595afaf2010-09-07 13:42:41 +02002128static void end_queued_requests(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02002129__releases(fc->lock)
2130__acquires(fc->lock)
Miklos Szeredi595afaf2010-09-07 13:42:41 +02002131{
2132 fc->max_background = UINT_MAX;
2133 flush_bg_queue(fc);
2134 end_requests(fc, &fc->pending);
2135 end_requests(fc, &fc->processing);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01002136 while (forget_pending(fc))
Miklos Szeredi02c048b2010-12-07 20:16:56 +01002137 kfree(dequeue_forget(fc, 1, NULL));
Miklos Szeredi595afaf2010-09-07 13:42:41 +02002138}
2139
Bryan Green357ccf22011-03-01 16:43:52 -08002140static void end_polls(struct fuse_conn *fc)
2141{
2142 struct rb_node *p;
2143
2144 p = rb_first(&fc->polled_files);
2145
2146 while (p) {
2147 struct fuse_file *ff;
2148 ff = rb_entry(p, struct fuse_file, polled_node);
2149 wake_up_interruptible_all(&ff->poll_wait);
2150
2151 p = rb_next(p);
2152 }
2153}
2154
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002155/*
2156 * Abort all requests.
2157 *
2158 * Emergency exit in case of a malicious or accidental deadlock, or
2159 * just a hung filesystem.
2160 *
2161 * The same effect is usually achievable through killing the
2162 * filesystem daemon and all users of the filesystem. The exception
2163 * is the combination of an asynchronous request and the tricky
2164 * deadlock (see Documentation/filesystems/fuse.txt).
2165 *
2166 * During the aborting, progression of requests from the pending and
2167 * processing lists onto the io list, and progression of new requests
2168 * onto the pending list is prevented by req->connected being false.
2169 *
2170 * Progression of requests under I/O to the processing list is
Miklos Szeredif9a28422006-06-25 05:48:53 -07002171 * prevented by the req->aborted flag being true for these requests.
2172 * For this reason requests on the io list must be aborted first.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002173 */
2174void fuse_abort_conn(struct fuse_conn *fc)
2175{
Miklos Szeredid7133112006-04-10 22:54:55 -07002176 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002177 if (fc->connected) {
2178 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002179 fc->blocked = 0;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002180 fuse_set_initialized(fc);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002181 end_io_requests(fc);
Miklos Szeredi595afaf2010-09-07 13:42:41 +02002182 end_queued_requests(fc);
Bryan Green357ccf22011-03-01 16:43:52 -08002183 end_polls(fc);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002184 wake_up_all(&fc->waitq);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002185 wake_up_all(&fc->blocked_waitq);
Jeff Dike385a17b2006-04-10 22:54:52 -07002186 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002187 }
Miklos Szeredid7133112006-04-10 22:54:55 -07002188 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002189}
Tejun Heo08cbf542009-04-14 10:54:53 +09002190EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002191
Tejun Heo08cbf542009-04-14 10:54:53 +09002192int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002193{
Miklos Szeredi0720b312006-04-10 22:54:55 -07002194 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002195 if (fc) {
Miklos Szeredid7133112006-04-10 22:54:55 -07002196 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -07002197 fc->connected = 0;
Miklos Szeredi595afaf2010-09-07 13:42:41 +02002198 fc->blocked = 0;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002199 fuse_set_initialized(fc);
Miklos Szeredi595afaf2010-09-07 13:42:41 +02002200 end_queued_requests(fc);
Bryan Green357ccf22011-03-01 16:43:52 -08002201 end_polls(fc);
Miklos Szeredi595afaf2010-09-07 13:42:41 +02002202 wake_up_all(&fc->blocked_waitq);
Miklos Szeredid7133112006-04-10 22:54:55 -07002203 spin_unlock(&fc->lock);
Miklos Szeredibafa9652006-06-25 05:48:51 -07002204 fuse_conn_put(fc);
Jeff Dike385a17b2006-04-10 22:54:52 -07002205 }
Miklos Szeredif543f252006-01-16 22:14:35 -08002206
Miklos Szeredi334f4852005-09-09 13:10:27 -07002207 return 0;
2208}
Tejun Heo08cbf542009-04-14 10:54:53 +09002209EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002210
Jeff Dike385a17b2006-04-10 22:54:52 -07002211static int fuse_dev_fasync(int fd, struct file *file, int on)
2212{
2213 struct fuse_conn *fc = fuse_get_conn(file);
2214 if (!fc)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002215 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002216
2217 /* No locking - fasync_helper does its own locking */
2218 return fasync_helper(fd, file, on, &fc->fasync);
2219}
2220
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002221const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002222 .owner = THIS_MODULE,
2223 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002224 .read = do_sync_read,
2225 .aio_read = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002226 .splice_read = fuse_dev_splice_read,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002227 .write = do_sync_write,
2228 .aio_write = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002229 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002230 .poll = fuse_dev_poll,
2231 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002232 .fasync = fuse_dev_fasync,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002233};
Tejun Heo08cbf542009-04-14 10:54:53 +09002234EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002235
2236static struct miscdevice fuse_miscdevice = {
2237 .minor = FUSE_MINOR,
2238 .name = "fuse",
2239 .fops = &fuse_dev_operations,
2240};
2241
2242int __init fuse_dev_init(void)
2243{
2244 int err = -ENOMEM;
2245 fuse_req_cachep = kmem_cache_create("fuse_request",
2246 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002247 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002248 if (!fuse_req_cachep)
2249 goto out;
2250
2251 err = misc_register(&fuse_miscdevice);
2252 if (err)
2253 goto out_cache_clean;
2254
2255 return 0;
2256
2257 out_cache_clean:
2258 kmem_cache_destroy(fuse_req_cachep);
2259 out:
2260 return err;
2261}
2262
2263void fuse_dev_cleanup(void)
2264{
2265 misc_deregister(&fuse_miscdevice);
2266 kmem_cache_destroy(fuse_req_cachep);
2267}