blob: f26d69356660b90c97cf6eb5b2563cd74bfd1df5 [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>
Todd Poynord893d662011-08-24 15:01:30 -070022#include <linux/freezer.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
Miklos Szeredi8bfc0162006-01-16 22:14:28 -080038static void fuse_request_init(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -070039{
40 memset(req, 0, sizeof(*req));
41 INIT_LIST_HEAD(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -070042 INIT_LIST_HEAD(&req->intr_entry);
Miklos Szeredi334f4852005-09-09 13:10:27 -070043 init_waitqueue_head(&req->waitq);
44 atomic_set(&req->count, 1);
45}
46
47struct fuse_req *fuse_request_alloc(void)
48{
Christoph Lametere94b1762006-12-06 20:33:17 -080049 struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, GFP_KERNEL);
Miklos Szeredi334f4852005-09-09 13:10:27 -070050 if (req)
51 fuse_request_init(req);
52 return req;
53}
Tejun Heo08cbf542009-04-14 10:54:53 +090054EXPORT_SYMBOL_GPL(fuse_request_alloc);
Miklos Szeredi334f4852005-09-09 13:10:27 -070055
Miklos Szeredi3be5a522008-04-30 00:54:41 -070056struct fuse_req *fuse_request_alloc_nofs(void)
57{
58 struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, GFP_NOFS);
59 if (req)
60 fuse_request_init(req);
61 return req;
62}
63
Miklos Szeredi334f4852005-09-09 13:10:27 -070064void fuse_request_free(struct fuse_req *req)
65{
66 kmem_cache_free(fuse_req_cachep, req);
67}
68
Miklos Szeredi8bfc0162006-01-16 22:14:28 -080069static void block_sigs(sigset_t *oldset)
Miklos Szeredi334f4852005-09-09 13:10:27 -070070{
71 sigset_t mask;
72
73 siginitsetinv(&mask, sigmask(SIGKILL));
74 sigprocmask(SIG_BLOCK, &mask, oldset);
75}
76
Miklos Szeredi8bfc0162006-01-16 22:14:28 -080077static void restore_sigs(sigset_t *oldset)
Miklos Szeredi334f4852005-09-09 13:10:27 -070078{
79 sigprocmask(SIG_SETMASK, oldset, NULL);
80}
81
Miklos Szeredi334f4852005-09-09 13:10:27 -070082static void __fuse_get_request(struct fuse_req *req)
83{
84 atomic_inc(&req->count);
85}
86
87/* Must be called with > 1 refcount */
88static void __fuse_put_request(struct fuse_req *req)
89{
90 BUG_ON(atomic_read(&req->count) < 2);
91 atomic_dec(&req->count);
92}
93
Miklos Szeredi33649c92006-06-25 05:48:52 -070094static void fuse_req_init_context(struct fuse_req *req)
95{
David Howells2186a712008-11-14 10:38:53 +110096 req->in.h.uid = current_fsuid();
97 req->in.h.gid = current_fsgid();
Miklos Szeredi33649c92006-06-25 05:48:52 -070098 req->in.h.pid = current->pid;
99}
100
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700101struct fuse_req *fuse_get_req(struct fuse_conn *fc)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700102{
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700103 struct fuse_req *req;
104 sigset_t oldset;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200105 int intr;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700106 int err;
107
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200108 atomic_inc(&fc->num_waiting);
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700109 block_sigs(&oldset);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200110 intr = wait_event_interruptible(fc->blocked_waitq, !fc->blocked);
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700111 restore_sigs(&oldset);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200112 err = -EINTR;
113 if (intr)
114 goto out;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700115
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700116 err = -ENOTCONN;
117 if (!fc->connected)
118 goto out;
119
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700120 req = fuse_request_alloc();
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200121 err = -ENOMEM;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700122 if (!req)
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200123 goto out;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700124
Miklos Szeredi33649c92006-06-25 05:48:52 -0700125 fuse_req_init_context(req);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200126 req->waiting = 1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700127 return req;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200128
129 out:
130 atomic_dec(&fc->num_waiting);
131 return ERR_PTR(err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700132}
Tejun Heo08cbf542009-04-14 10:54:53 +0900133EXPORT_SYMBOL_GPL(fuse_get_req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700134
Miklos Szeredi33649c92006-06-25 05:48:52 -0700135/*
136 * Return request in fuse_file->reserved_req. However that may
137 * currently be in use. If that is the case, wait for it to become
138 * available.
139 */
140static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
141 struct file *file)
142{
143 struct fuse_req *req = NULL;
144 struct fuse_file *ff = file->private_data;
145
146 do {
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700147 wait_event(fc->reserved_req_waitq, ff->reserved_req);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700148 spin_lock(&fc->lock);
149 if (ff->reserved_req) {
150 req = ff->reserved_req;
151 ff->reserved_req = NULL;
152 get_file(file);
153 req->stolen_file = file;
154 }
155 spin_unlock(&fc->lock);
156 } while (!req);
157
158 return req;
159}
160
161/*
162 * Put stolen request back into fuse_file->reserved_req
163 */
164static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
165{
166 struct file *file = req->stolen_file;
167 struct fuse_file *ff = file->private_data;
168
169 spin_lock(&fc->lock);
170 fuse_request_init(req);
171 BUG_ON(ff->reserved_req);
172 ff->reserved_req = req;
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700173 wake_up_all(&fc->reserved_req_waitq);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700174 spin_unlock(&fc->lock);
175 fput(file);
176}
177
178/*
179 * Gets a requests for a file operation, always succeeds
180 *
181 * This is used for sending the FLUSH request, which must get to
182 * userspace, due to POSIX locks which may need to be unlocked.
183 *
184 * If allocation fails due to OOM, use the reserved request in
185 * fuse_file.
186 *
187 * This is very unlikely to deadlock accidentally, since the
188 * filesystem should not have it's own file open. If deadlock is
189 * intentional, it can still be broken by "aborting" the filesystem.
190 */
191struct fuse_req *fuse_get_req_nofail(struct fuse_conn *fc, struct file *file)
192{
193 struct fuse_req *req;
194
195 atomic_inc(&fc->num_waiting);
196 wait_event(fc->blocked_waitq, !fc->blocked);
197 req = fuse_request_alloc();
198 if (!req)
199 req = get_reserved_req(fc, file);
200
201 fuse_req_init_context(req);
202 req->waiting = 1;
203 return req;
204}
205
Miklos Szeredi334f4852005-09-09 13:10:27 -0700206void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
207{
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800208 if (atomic_dec_and_test(&req->count)) {
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200209 if (req->waiting)
210 atomic_dec(&fc->num_waiting);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700211
212 if (req->stolen_file)
213 put_reserved_req(fc, req);
214 else
215 fuse_request_free(req);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800216 }
217}
Tejun Heo08cbf542009-04-14 10:54:53 +0900218EXPORT_SYMBOL_GPL(fuse_put_request);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800219
Miklos Szeredid12def12008-02-06 01:38:39 -0800220static unsigned len_args(unsigned numargs, struct fuse_arg *args)
221{
222 unsigned nbytes = 0;
223 unsigned i;
224
225 for (i = 0; i < numargs; i++)
226 nbytes += args[i].size;
227
228 return nbytes;
229}
230
231static u64 fuse_get_unique(struct fuse_conn *fc)
232{
233 fc->reqctr++;
234 /* zero is special */
235 if (fc->reqctr == 0)
236 fc->reqctr = 1;
237
238 return fc->reqctr;
239}
240
241static void queue_request(struct fuse_conn *fc, struct fuse_req *req)
242{
Miklos Szeredid12def12008-02-06 01:38:39 -0800243 req->in.h.len = sizeof(struct fuse_in_header) +
244 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
245 list_add_tail(&req->list, &fc->pending);
246 req->state = FUSE_REQ_PENDING;
247 if (!req->waiting) {
248 req->waiting = 1;
249 atomic_inc(&fc->num_waiting);
250 }
251 wake_up(&fc->waitq);
252 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
253}
254
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100255void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
256 u64 nodeid, u64 nlookup)
257{
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100258 forget->forget_one.nodeid = nodeid;
259 forget->forget_one.nlookup = nlookup;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100260
261 spin_lock(&fc->lock);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200262 if (fc->connected) {
263 fc->forget_list_tail->next = forget;
264 fc->forget_list_tail = forget;
265 wake_up(&fc->waitq);
266 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
267 } else {
268 kfree(forget);
269 }
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100270 spin_unlock(&fc->lock);
271}
272
Miklos Szeredid12def12008-02-06 01:38:39 -0800273static void flush_bg_queue(struct fuse_conn *fc)
274{
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700275 while (fc->active_background < fc->max_background &&
Miklos Szeredid12def12008-02-06 01:38:39 -0800276 !list_empty(&fc->bg_queue)) {
277 struct fuse_req *req;
278
279 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
280 list_del(&req->list);
281 fc->active_background++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200282 req->in.h.unique = fuse_get_unique(fc);
Miklos Szeredid12def12008-02-06 01:38:39 -0800283 queue_request(fc, req);
284 }
285}
286
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200287/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700288 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700289 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800290 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700291 * was closed. The requester thread is woken up (if still waiting),
292 * the 'end' callback is called if given, else the reference to the
293 * request is released
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800294 *
Miklos Szeredid7133112006-04-10 22:54:55 -0700295 * Called with fc->lock, unlocks it
Miklos Szeredi334f4852005-09-09 13:10:27 -0700296 */
297static void request_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200298__releases(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700299{
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700300 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
301 req->end = NULL;
Miklos Szeredid77a1d52006-01-16 22:14:31 -0800302 list_del(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700303 list_del(&req->intr_entry);
Miklos Szeredi83cfd492006-01-16 22:14:31 -0800304 req->state = FUSE_REQ_FINISHED;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700305 if (req->background) {
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700306 if (fc->num_background == fc->max_background) {
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700307 fc->blocked = 0;
308 wake_up_all(&fc->blocked_waitq);
309 }
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700310 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900311 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200312 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
313 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700314 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700315 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800316 fc->active_background--;
317 flush_bg_queue(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700318 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700319 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700320 wake_up(&req->waitq);
321 if (end)
322 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100323 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700324}
325
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700326static void wait_answer_interruptible(struct fuse_conn *fc,
327 struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200328__releases(fc->lock)
329__acquires(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700330{
331 if (signal_pending(current))
332 return;
333
334 spin_unlock(&fc->lock);
335 wait_event_interruptible(req->waitq, req->state == FUSE_REQ_FINISHED);
336 spin_lock(&fc->lock);
337}
338
339static void queue_interrupt(struct fuse_conn *fc, struct fuse_req *req)
340{
341 list_add_tail(&req->intr_entry, &fc->interrupts);
342 wake_up(&fc->waitq);
343 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
344}
345
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700346static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200347__releases(fc->lock)
348__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700349{
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700350 if (!fc->no_interrupt) {
351 /* Any signal may interrupt this */
352 wait_answer_interruptible(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700353
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700354 if (req->aborted)
355 goto aborted;
356 if (req->state == FUSE_REQ_FINISHED)
357 return;
358
359 req->interrupted = 1;
360 if (req->state == FUSE_REQ_SENT)
361 queue_interrupt(fc, req);
362 }
363
Miklos Szeredia131de02007-10-16 23:31:04 -0700364 if (!req->force) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700365 sigset_t oldset;
366
367 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700368 block_sigs(&oldset);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700369 wait_answer_interruptible(fc, req);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700370 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700371
372 if (req->aborted)
373 goto aborted;
374 if (req->state == FUSE_REQ_FINISHED)
375 return;
376
377 /* Request is not yet in userspace, bail out */
378 if (req->state == FUSE_REQ_PENDING) {
379 list_del(&req->list);
380 __fuse_put_request(req);
381 req->out.h.error = -EINTR;
382 return;
383 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700384 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700385
Miklos Szeredia131de02007-10-16 23:31:04 -0700386 /*
387 * Either request is already in userspace, or it was forced.
388 * Wait it out.
389 */
390 spin_unlock(&fc->lock);
Todd Poynord893d662011-08-24 15:01:30 -0700391
392 while (req->state != FUSE_REQ_FINISHED)
393 wait_event_freezable(req->waitq,
394 req->state == FUSE_REQ_FINISHED);
Miklos Szeredia131de02007-10-16 23:31:04 -0700395 spin_lock(&fc->lock);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700396
Miklos Szeredia131de02007-10-16 23:31:04 -0700397 if (!req->aborted)
398 return;
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700399
400 aborted:
Miklos Szeredia131de02007-10-16 23:31:04 -0700401 BUG_ON(req->state != FUSE_REQ_FINISHED);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700402 if (req->locked) {
403 /* This is uninterruptible sleep, because data is
404 being copied to/from the buffers of req. During
405 locked state, there mustn't be any filesystem
406 operation (e.g. page fault), since that could lead
407 to deadlock */
Miklos Szeredid7133112006-04-10 22:54:55 -0700408 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700409 wait_event(req->waitq, !req->locked);
Miklos Szeredid7133112006-04-10 22:54:55 -0700410 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700411 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700412}
413
Tejun Heob93f8582008-11-26 12:03:55 +0100414void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700415{
416 req->isreply = 1;
Miklos Szeredid7133112006-04-10 22:54:55 -0700417 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700418 if (!fc->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700419 req->out.h.error = -ENOTCONN;
420 else if (fc->conn_error)
421 req->out.h.error = -ECONNREFUSED;
422 else {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200423 req->in.h.unique = fuse_get_unique(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700424 queue_request(fc, req);
425 /* acquire extra reference, since request is still needed
426 after request_end() */
427 __fuse_get_request(req);
428
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700429 request_wait_answer(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700430 }
Miklos Szeredid7133112006-04-10 22:54:55 -0700431 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700432}
Tejun Heo08cbf542009-04-14 10:54:53 +0900433EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700434
Tejun Heob93f8582008-11-26 12:03:55 +0100435static void fuse_request_send_nowait_locked(struct fuse_conn *fc,
436 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800437{
438 req->background = 1;
439 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700440 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800441 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700442 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900443 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200444 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
445 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800446 }
447 list_add_tail(&req->list, &fc->bg_queue);
448 flush_bg_queue(fc);
449}
450
Tejun Heob93f8582008-11-26 12:03:55 +0100451static void fuse_request_send_nowait(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700452{
Miklos Szeredid7133112006-04-10 22:54:55 -0700453 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700454 if (fc->connected) {
Tejun Heob93f8582008-11-26 12:03:55 +0100455 fuse_request_send_nowait_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700456 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700457 } else {
458 req->out.h.error = -ENOTCONN;
459 request_end(fc, req);
460 }
461}
462
Tejun Heob93f8582008-11-26 12:03:55 +0100463void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700464{
465 req->isreply = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100466 fuse_request_send_nowait(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700467}
Tejun Heo08cbf542009-04-14 10:54:53 +0900468EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700469
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200470static int fuse_request_send_notify_reply(struct fuse_conn *fc,
471 struct fuse_req *req, u64 unique)
472{
473 int err = -ENODEV;
474
475 req->isreply = 0;
476 req->in.h.unique = unique;
477 spin_lock(&fc->lock);
478 if (fc->connected) {
479 queue_request(fc, req);
480 err = 0;
481 }
482 spin_unlock(&fc->lock);
483
484 return err;
485}
486
Miklos Szeredi334f4852005-09-09 13:10:27 -0700487/*
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700488 * Called under fc->lock
489 *
490 * fc->connected must have been checked previously
491 */
Tejun Heob93f8582008-11-26 12:03:55 +0100492void fuse_request_send_background_locked(struct fuse_conn *fc,
493 struct fuse_req *req)
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700494{
495 req->isreply = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100496 fuse_request_send_nowait_locked(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700497}
498
499/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700500 * Lock the request. Up to the next unlock_request() there mustn't be
501 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700502 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700503 */
Miklos Szeredid7133112006-04-10 22:54:55 -0700504static int lock_request(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700505{
506 int err = 0;
507 if (req) {
Miklos Szeredid7133112006-04-10 22:54:55 -0700508 spin_lock(&fc->lock);
Miklos Szeredif9a28422006-06-25 05:48:53 -0700509 if (req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700510 err = -ENOENT;
511 else
512 req->locked = 1;
Miklos Szeredid7133112006-04-10 22:54:55 -0700513 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700514 }
515 return err;
516}
517
518/*
Miklos Szeredif9a28422006-06-25 05:48:53 -0700519 * Unlock request. If it was aborted during being locked, the
Miklos Szeredi334f4852005-09-09 13:10:27 -0700520 * requester thread is currently waiting for it to be unlocked, so
521 * wake it up.
522 */
Miklos Szeredid7133112006-04-10 22:54:55 -0700523static void unlock_request(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700524{
525 if (req) {
Miklos Szeredid7133112006-04-10 22:54:55 -0700526 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700527 req->locked = 0;
Miklos Szeredif9a28422006-06-25 05:48:53 -0700528 if (req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700529 wake_up(&req->waitq);
Miklos Szeredid7133112006-04-10 22:54:55 -0700530 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700531 }
532}
533
534struct fuse_copy_state {
Miklos Szeredid7133112006-04-10 22:54:55 -0700535 struct fuse_conn *fc;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700536 int write;
537 struct fuse_req *req;
538 const struct iovec *iov;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200539 struct pipe_buffer *pipebufs;
540 struct pipe_buffer *currbuf;
541 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700542 unsigned long nr_segs;
543 unsigned long seglen;
544 unsigned long addr;
545 struct page *pg;
546 void *mapaddr;
547 void *buf;
548 unsigned len;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200549 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700550};
551
Miklos Szeredid7133112006-04-10 22:54:55 -0700552static void fuse_copy_init(struct fuse_copy_state *cs, struct fuse_conn *fc,
Miklos Szeredic3021622010-05-25 15:06:07 +0200553 int write,
Miklos Szeredid7133112006-04-10 22:54:55 -0700554 const struct iovec *iov, unsigned long nr_segs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700555{
556 memset(cs, 0, sizeof(*cs));
Miklos Szeredid7133112006-04-10 22:54:55 -0700557 cs->fc = fc;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700558 cs->write = write;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700559 cs->iov = iov;
560 cs->nr_segs = nr_segs;
561}
562
563/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800564static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700565{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200566 if (cs->currbuf) {
567 struct pipe_buffer *buf = cs->currbuf;
568
Miklos Szeredic3021622010-05-25 15:06:07 +0200569 if (!cs->write) {
570 buf->ops->unmap(cs->pipe, buf, cs->mapaddr);
571 } else {
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200572 kunmap(buf->page);
Miklos Szeredic3021622010-05-25 15:06:07 +0200573 buf->len = PAGE_SIZE - cs->len;
574 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200575 cs->currbuf = NULL;
576 cs->mapaddr = NULL;
577 } else if (cs->mapaddr) {
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200578 kunmap(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700579 if (cs->write) {
580 flush_dcache_page(cs->pg);
581 set_page_dirty_lock(cs->pg);
582 }
583 put_page(cs->pg);
584 cs->mapaddr = NULL;
585 }
586}
587
588/*
589 * Get another pagefull of userspace buffer, and map it to kernel
590 * address space, and lock request
591 */
592static int fuse_copy_fill(struct fuse_copy_state *cs)
593{
594 unsigned long offset;
595 int err;
596
Miklos Szeredid7133112006-04-10 22:54:55 -0700597 unlock_request(cs->fc, cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700598 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200599 if (cs->pipebufs) {
600 struct pipe_buffer *buf = cs->pipebufs;
601
Miklos Szeredic3021622010-05-25 15:06:07 +0200602 if (!cs->write) {
603 err = buf->ops->confirm(cs->pipe, buf);
604 if (err)
605 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200606
Miklos Szeredic3021622010-05-25 15:06:07 +0200607 BUG_ON(!cs->nr_segs);
608 cs->currbuf = buf;
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200609 cs->mapaddr = buf->ops->map(cs->pipe, buf, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +0200610 cs->len = buf->len;
611 cs->buf = cs->mapaddr + buf->offset;
612 cs->pipebufs++;
613 cs->nr_segs--;
614 } else {
615 struct page *page;
616
617 if (cs->nr_segs == cs->pipe->buffers)
618 return -EIO;
619
620 page = alloc_page(GFP_HIGHUSER);
621 if (!page)
622 return -ENOMEM;
623
624 buf->page = page;
625 buf->offset = 0;
626 buf->len = 0;
627
628 cs->currbuf = buf;
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200629 cs->mapaddr = kmap(page);
Miklos Szeredic3021622010-05-25 15:06:07 +0200630 cs->buf = cs->mapaddr;
631 cs->len = PAGE_SIZE;
632 cs->pipebufs++;
633 cs->nr_segs++;
634 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200635 } else {
636 if (!cs->seglen) {
637 BUG_ON(!cs->nr_segs);
638 cs->seglen = cs->iov[0].iov_len;
639 cs->addr = (unsigned long) cs->iov[0].iov_base;
640 cs->iov++;
641 cs->nr_segs--;
642 }
643 err = get_user_pages_fast(cs->addr, 1, cs->write, &cs->pg);
644 if (err < 0)
645 return err;
646 BUG_ON(err != 1);
647 offset = cs->addr % PAGE_SIZE;
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200648 cs->mapaddr = kmap(cs->pg);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200649 cs->buf = cs->mapaddr + offset;
650 cs->len = min(PAGE_SIZE - offset, cs->seglen);
651 cs->seglen -= cs->len;
652 cs->addr += cs->len;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700653 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700654
Miklos Szeredid7133112006-04-10 22:54:55 -0700655 return lock_request(cs->fc, cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700656}
657
658/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800659static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700660{
661 unsigned ncpy = min(*size, cs->len);
662 if (val) {
663 if (cs->write)
664 memcpy(cs->buf, *val, ncpy);
665 else
666 memcpy(*val, cs->buf, ncpy);
667 *val += ncpy;
668 }
669 *size -= ncpy;
670 cs->len -= ncpy;
671 cs->buf += ncpy;
672 return ncpy;
673}
674
Miklos Szeredice534fb2010-05-25 15:06:07 +0200675static int fuse_check_page(struct page *page)
676{
677 if (page_mapcount(page) ||
678 page->mapping != NULL ||
679 page_count(page) != 1 ||
680 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
681 ~(1 << PG_locked |
682 1 << PG_referenced |
683 1 << PG_uptodate |
684 1 << PG_lru |
685 1 << PG_active |
686 1 << PG_reclaim))) {
687 printk(KERN_WARNING "fuse: trying to steal weird page\n");
688 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);
689 return 1;
690 }
691 return 0;
692}
693
694static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
695{
696 int err;
697 struct page *oldpage = *pagep;
698 struct page *newpage;
699 struct pipe_buffer *buf = cs->pipebufs;
700 struct address_space *mapping;
701 pgoff_t index;
702
703 unlock_request(cs->fc, cs->req);
704 fuse_copy_finish(cs);
705
706 err = buf->ops->confirm(cs->pipe, buf);
707 if (err)
708 return err;
709
710 BUG_ON(!cs->nr_segs);
711 cs->currbuf = buf;
712 cs->len = buf->len;
713 cs->pipebufs++;
714 cs->nr_segs--;
715
716 if (cs->len != PAGE_SIZE)
717 goto out_fallback;
718
719 if (buf->ops->steal(cs->pipe, buf) != 0)
720 goto out_fallback;
721
722 newpage = buf->page;
723
724 if (WARN_ON(!PageUptodate(newpage)))
725 return -EIO;
726
727 ClearPageMappedToDisk(newpage);
728
729 if (fuse_check_page(newpage) != 0)
730 goto out_fallback_unlock;
731
732 mapping = oldpage->mapping;
733 index = oldpage->index;
734
735 /*
736 * This is a new and locked page, it shouldn't be mapped or
737 * have any special flags on it
738 */
739 if (WARN_ON(page_mapped(oldpage)))
740 goto out_fallback_unlock;
741 if (WARN_ON(page_has_private(oldpage)))
742 goto out_fallback_unlock;
743 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
744 goto out_fallback_unlock;
745 if (WARN_ON(PageMlocked(oldpage)))
746 goto out_fallback_unlock;
747
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700748 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200749 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700750 unlock_page(newpage);
751 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200752 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700753
Miklos Szeredice534fb2010-05-25 15:06:07 +0200754 page_cache_get(newpage);
755
756 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
757 lru_cache_add_file(newpage);
758
759 err = 0;
760 spin_lock(&cs->fc->lock);
761 if (cs->req->aborted)
762 err = -ENOENT;
763 else
764 *pagep = newpage;
765 spin_unlock(&cs->fc->lock);
766
767 if (err) {
768 unlock_page(newpage);
769 page_cache_release(newpage);
770 return err;
771 }
772
773 unlock_page(oldpage);
774 page_cache_release(oldpage);
775 cs->len = 0;
776
777 return 0;
778
779out_fallback_unlock:
780 unlock_page(newpage);
781out_fallback:
782 cs->mapaddr = buf->ops->map(cs->pipe, buf, 1);
783 cs->buf = cs->mapaddr + buf->offset;
784
785 err = lock_request(cs->fc, cs->req);
786 if (err)
787 return err;
788
789 return 1;
790}
791
Miklos Szeredic3021622010-05-25 15:06:07 +0200792static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
793 unsigned offset, unsigned count)
794{
795 struct pipe_buffer *buf;
796
797 if (cs->nr_segs == cs->pipe->buffers)
798 return -EIO;
799
800 unlock_request(cs->fc, cs->req);
801 fuse_copy_finish(cs);
802
803 buf = cs->pipebufs;
804 page_cache_get(page);
805 buf->page = page;
806 buf->offset = offset;
807 buf->len = count;
808
809 cs->pipebufs++;
810 cs->nr_segs++;
811 cs->len = 0;
812
813 return 0;
814}
815
Miklos Szeredi334f4852005-09-09 13:10:27 -0700816/*
817 * Copy a page in the request to/from the userspace buffer. Must be
818 * done atomically
819 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200820static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800821 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700822{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200823 int err;
824 struct page *page = *pagep;
825
Miklos Szeredib6777c42010-10-26 14:22:27 -0700826 if (page && zeroing && count < PAGE_SIZE)
827 clear_highpage(page);
828
Miklos Szeredi334f4852005-09-09 13:10:27 -0700829 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200830 if (cs->write && cs->pipebufs && page) {
831 return fuse_ref_page(cs, page, offset, count);
832 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200833 if (cs->move_pages && page &&
834 offset == 0 && count == PAGE_SIZE) {
835 err = fuse_try_move_page(cs, pagep);
836 if (err <= 0)
837 return err;
838 } else {
839 err = fuse_copy_fill(cs);
840 if (err)
841 return err;
842 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100843 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700844 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800845 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700846 void *buf = mapaddr + offset;
847 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +0800848 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700849 } else
850 offset += fuse_copy_do(cs, NULL, &count);
851 }
852 if (page && !cs->write)
853 flush_dcache_page(page);
854 return 0;
855}
856
857/* Copy pages in the request to/from userspace buffer */
858static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
859 int zeroing)
860{
861 unsigned i;
862 struct fuse_req *req = cs->req;
863 unsigned offset = req->page_offset;
864 unsigned count = min(nbytes, (unsigned) PAGE_SIZE - offset);
865
866 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200867 int err;
868
869 err = fuse_copy_page(cs, &req->pages[i], offset, count,
870 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700871 if (err)
872 return err;
873
874 nbytes -= count;
875 count = min(nbytes, (unsigned) PAGE_SIZE);
876 offset = 0;
877 }
878 return 0;
879}
880
881/* Copy a single argument in the request to/from userspace buffer */
882static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
883{
884 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +0100885 if (!cs->len) {
886 int err = fuse_copy_fill(cs);
887 if (err)
888 return err;
889 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700890 fuse_copy_do(cs, &val, &size);
891 }
892 return 0;
893}
894
895/* Copy request arguments to/from userspace buffer */
896static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
897 unsigned argpages, struct fuse_arg *args,
898 int zeroing)
899{
900 int err = 0;
901 unsigned i;
902
903 for (i = 0; !err && i < numargs; i++) {
904 struct fuse_arg *arg = &args[i];
905 if (i == numargs - 1 && argpages)
906 err = fuse_copy_pages(cs, arg->size, zeroing);
907 else
908 err = fuse_copy_one(cs, arg->value, arg->size);
909 }
910 return err;
911}
912
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100913static int forget_pending(struct fuse_conn *fc)
914{
915 return fc->forget_list_head.next != NULL;
916}
917
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700918static int request_pending(struct fuse_conn *fc)
919{
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100920 return !list_empty(&fc->pending) || !list_empty(&fc->interrupts) ||
921 forget_pending(fc);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700922}
923
Miklos Szeredi334f4852005-09-09 13:10:27 -0700924/* Wait until a request is available on the pending list */
925static void request_wait(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200926__releases(fc->lock)
927__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700928{
929 DECLARE_WAITQUEUE(wait, current);
930
931 add_wait_queue_exclusive(&fc->waitq, &wait);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700932 while (fc->connected && !request_pending(fc)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700933 set_current_state(TASK_INTERRUPTIBLE);
934 if (signal_pending(current))
935 break;
936
Miklos Szeredid7133112006-04-10 22:54:55 -0700937 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700938 schedule();
Miklos Szeredid7133112006-04-10 22:54:55 -0700939 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700940 }
941 set_current_state(TASK_RUNNING);
942 remove_wait_queue(&fc->waitq, &wait);
943}
944
945/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700946 * Transfer an interrupt request to userspace
947 *
948 * Unlike other requests this is assembled on demand, without a need
949 * to allocate a separate fuse_req structure.
950 *
951 * Called with fc->lock held, releases it
952 */
Miklos Szeredic3021622010-05-25 15:06:07 +0200953static int fuse_read_interrupt(struct fuse_conn *fc, struct fuse_copy_state *cs,
954 size_t nbytes, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200955__releases(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700956{
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700957 struct fuse_in_header ih;
958 struct fuse_interrupt_in arg;
959 unsigned reqsize = sizeof(ih) + sizeof(arg);
960 int err;
961
962 list_del_init(&req->intr_entry);
963 req->intr_unique = fuse_get_unique(fc);
964 memset(&ih, 0, sizeof(ih));
965 memset(&arg, 0, sizeof(arg));
966 ih.len = reqsize;
967 ih.opcode = FUSE_INTERRUPT;
968 ih.unique = req->intr_unique;
969 arg.unique = req->in.h.unique;
970
971 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +0200972 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700973 return -EINVAL;
974
Miklos Szeredic3021622010-05-25 15:06:07 +0200975 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700976 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +0200977 err = fuse_copy_one(cs, &arg, sizeof(arg));
978 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700979
980 return err ? err : reqsize;
981}
982
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100983static struct fuse_forget_link *dequeue_forget(struct fuse_conn *fc,
984 unsigned max,
985 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100986{
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100987 struct fuse_forget_link *head = fc->forget_list_head.next;
988 struct fuse_forget_link **newhead = &head;
989 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100990
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100991 for (count = 0; *newhead != NULL && count < max; count++)
992 newhead = &(*newhead)->next;
993
994 fc->forget_list_head.next = *newhead;
995 *newhead = NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100996 if (fc->forget_list_head.next == NULL)
997 fc->forget_list_tail = &fc->forget_list_head;
998
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100999 if (countp != NULL)
1000 *countp = count;
1001
1002 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001003}
1004
1005static int fuse_read_single_forget(struct fuse_conn *fc,
1006 struct fuse_copy_state *cs,
1007 size_t nbytes)
1008__releases(fc->lock)
1009{
1010 int err;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001011 struct fuse_forget_link *forget = dequeue_forget(fc, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001012 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001013 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001014 };
1015 struct fuse_in_header ih = {
1016 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001017 .nodeid = forget->forget_one.nodeid,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001018 .unique = fuse_get_unique(fc),
1019 .len = sizeof(ih) + sizeof(arg),
1020 };
1021
1022 spin_unlock(&fc->lock);
1023 kfree(forget);
1024 if (nbytes < ih.len)
1025 return -EINVAL;
1026
1027 err = fuse_copy_one(cs, &ih, sizeof(ih));
1028 if (!err)
1029 err = fuse_copy_one(cs, &arg, sizeof(arg));
1030 fuse_copy_finish(cs);
1031
1032 if (err)
1033 return err;
1034
1035 return ih.len;
1036}
1037
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001038static int fuse_read_batch_forget(struct fuse_conn *fc,
1039 struct fuse_copy_state *cs, size_t nbytes)
1040__releases(fc->lock)
1041{
1042 int err;
1043 unsigned max_forgets;
1044 unsigned count;
1045 struct fuse_forget_link *head;
1046 struct fuse_batch_forget_in arg = { .count = 0 };
1047 struct fuse_in_header ih = {
1048 .opcode = FUSE_BATCH_FORGET,
1049 .unique = fuse_get_unique(fc),
1050 .len = sizeof(ih) + sizeof(arg),
1051 };
1052
1053 if (nbytes < ih.len) {
1054 spin_unlock(&fc->lock);
1055 return -EINVAL;
1056 }
1057
1058 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
1059 head = dequeue_forget(fc, max_forgets, &count);
1060 spin_unlock(&fc->lock);
1061
1062 arg.count = count;
1063 ih.len += count * sizeof(struct fuse_forget_one);
1064 err = fuse_copy_one(cs, &ih, sizeof(ih));
1065 if (!err)
1066 err = fuse_copy_one(cs, &arg, sizeof(arg));
1067
1068 while (head) {
1069 struct fuse_forget_link *forget = head;
1070
1071 if (!err) {
1072 err = fuse_copy_one(cs, &forget->forget_one,
1073 sizeof(forget->forget_one));
1074 }
1075 head = forget->next;
1076 kfree(forget);
1077 }
1078
1079 fuse_copy_finish(cs);
1080
1081 if (err)
1082 return err;
1083
1084 return ih.len;
1085}
1086
1087static int fuse_read_forget(struct fuse_conn *fc, struct fuse_copy_state *cs,
1088 size_t nbytes)
1089__releases(fc->lock)
1090{
1091 if (fc->minor < 16 || fc->forget_list_head.next->next == NULL)
1092 return fuse_read_single_forget(fc, cs, nbytes);
1093 else
1094 return fuse_read_batch_forget(fc, cs, nbytes);
1095}
1096
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001097/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001098 * Read a single request into the userspace filesystem's buffer. This
1099 * function waits until a request is available, then removes it from
1100 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001101 * no reply is needed (FORGET) or request has been aborted or there
1102 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001103 * request_end(). Otherwise add it to the processing list, and set
1104 * the 'sent' flag.
1105 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001106static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1107 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001108{
1109 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001110 struct fuse_req *req;
1111 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001112 unsigned reqsize;
1113
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001114 restart:
Miklos Szeredid7133112006-04-10 22:54:55 -07001115 spin_lock(&fc->lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001116 err = -EAGAIN;
1117 if ((file->f_flags & O_NONBLOCK) && fc->connected &&
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001118 !request_pending(fc))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001119 goto err_unlock;
1120
Miklos Szeredi334f4852005-09-09 13:10:27 -07001121 request_wait(fc);
1122 err = -ENODEV;
Miklos Szeredi9ba7cbb2006-01-16 22:14:34 -08001123 if (!fc->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001124 goto err_unlock;
1125 err = -ERESTARTSYS;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001126 if (!request_pending(fc))
Miklos Szeredi334f4852005-09-09 13:10:27 -07001127 goto err_unlock;
1128
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001129 if (!list_empty(&fc->interrupts)) {
1130 req = list_entry(fc->interrupts.next, struct fuse_req,
1131 intr_entry);
Miklos Szeredic3021622010-05-25 15:06:07 +02001132 return fuse_read_interrupt(fc, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001133 }
1134
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001135 if (forget_pending(fc)) {
1136 if (list_empty(&fc->pending) || fc->forget_batch-- > 0)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001137 return fuse_read_forget(fc, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001138
1139 if (fc->forget_batch <= -8)
1140 fc->forget_batch = 16;
1141 }
1142
Miklos Szeredi334f4852005-09-09 13:10:27 -07001143 req = list_entry(fc->pending.next, struct fuse_req, list);
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001144 req->state = FUSE_REQ_READING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001145 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001146
1147 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001148 reqsize = in->h.len;
1149 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001150 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001151 req->out.h.error = -EIO;
1152 /* SETXATTR is special, since it may contain too large data */
1153 if (in->h.opcode == FUSE_SETXATTR)
1154 req->out.h.error = -E2BIG;
1155 request_end(fc, req);
1156 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001157 }
Miklos Szeredid7133112006-04-10 22:54:55 -07001158 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001159 cs->req = req;
1160 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001161 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001162 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001163 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001164 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001165 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001166 req->locked = 0;
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001167 if (req->aborted) {
1168 request_end(fc, req);
1169 return -ENODEV;
1170 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001171 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001172 req->out.h.error = -EIO;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001173 request_end(fc, req);
1174 return err;
1175 }
1176 if (!req->isreply)
1177 request_end(fc, req);
1178 else {
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001179 req->state = FUSE_REQ_SENT;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001180 list_move_tail(&req->list, &fc->processing);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001181 if (req->interrupted)
1182 queue_interrupt(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001183 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001184 }
1185 return reqsize;
1186
1187 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001188 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001189 return err;
1190}
1191
Miklos Szeredic3021622010-05-25 15:06:07 +02001192static ssize_t fuse_dev_read(struct kiocb *iocb, const struct iovec *iov,
1193 unsigned long nr_segs, loff_t pos)
1194{
1195 struct fuse_copy_state cs;
1196 struct file *file = iocb->ki_filp;
1197 struct fuse_conn *fc = fuse_get_conn(file);
1198 if (!fc)
1199 return -EPERM;
1200
1201 fuse_copy_init(&cs, fc, 1, iov, nr_segs);
1202
1203 return fuse_dev_do_read(fc, file, &cs, iov_length(iov, nr_segs));
1204}
1205
1206static int fuse_dev_pipe_buf_steal(struct pipe_inode_info *pipe,
1207 struct pipe_buffer *buf)
1208{
1209 return 1;
1210}
1211
1212static const struct pipe_buf_operations fuse_dev_pipe_buf_ops = {
1213 .can_merge = 0,
1214 .map = generic_pipe_buf_map,
1215 .unmap = generic_pipe_buf_unmap,
1216 .confirm = generic_pipe_buf_confirm,
1217 .release = generic_pipe_buf_release,
1218 .steal = fuse_dev_pipe_buf_steal,
1219 .get = generic_pipe_buf_get,
1220};
1221
1222static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1223 struct pipe_inode_info *pipe,
1224 size_t len, unsigned int flags)
1225{
1226 int ret;
1227 int page_nr = 0;
1228 int do_wakeup = 0;
1229 struct pipe_buffer *bufs;
1230 struct fuse_copy_state cs;
1231 struct fuse_conn *fc = fuse_get_conn(in);
1232 if (!fc)
1233 return -EPERM;
1234
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001235 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001236 if (!bufs)
1237 return -ENOMEM;
1238
1239 fuse_copy_init(&cs, fc, 1, NULL, 0);
1240 cs.pipebufs = bufs;
1241 cs.pipe = pipe;
1242 ret = fuse_dev_do_read(fc, in, &cs, len);
1243 if (ret < 0)
1244 goto out;
1245
1246 ret = 0;
1247 pipe_lock(pipe);
1248
1249 if (!pipe->readers) {
1250 send_sig(SIGPIPE, current, 0);
1251 if (!ret)
1252 ret = -EPIPE;
1253 goto out_unlock;
1254 }
1255
1256 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1257 ret = -EIO;
1258 goto out_unlock;
1259 }
1260
1261 while (page_nr < cs.nr_segs) {
1262 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1263 struct pipe_buffer *buf = pipe->bufs + newbuf;
1264
1265 buf->page = bufs[page_nr].page;
1266 buf->offset = bufs[page_nr].offset;
1267 buf->len = bufs[page_nr].len;
1268 buf->ops = &fuse_dev_pipe_buf_ops;
1269
1270 pipe->nrbufs++;
1271 page_nr++;
1272 ret += buf->len;
1273
1274 if (pipe->inode)
1275 do_wakeup = 1;
1276 }
1277
1278out_unlock:
1279 pipe_unlock(pipe);
1280
1281 if (do_wakeup) {
1282 smp_mb();
1283 if (waitqueue_active(&pipe->wait))
1284 wake_up_interruptible(&pipe->wait);
1285 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1286 }
1287
1288out:
1289 for (; page_nr < cs.nr_segs; page_nr++)
1290 page_cache_release(bufs[page_nr].page);
1291
1292 kfree(bufs);
1293 return ret;
1294}
1295
Tejun Heo95668a62008-11-26 12:03:55 +01001296static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1297 struct fuse_copy_state *cs)
1298{
1299 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001300 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001301
1302 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001303 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001304
1305 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1306 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001307 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001308
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001309 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001310 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001311
1312err:
1313 fuse_copy_finish(cs);
1314 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001315}
1316
John Muir3b463ae2009-05-31 11:13:57 -04001317static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1318 struct fuse_copy_state *cs)
1319{
1320 struct fuse_notify_inval_inode_out outarg;
1321 int err = -EINVAL;
1322
1323 if (size != sizeof(outarg))
1324 goto err;
1325
1326 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1327 if (err)
1328 goto err;
1329 fuse_copy_finish(cs);
1330
1331 down_read(&fc->killsb);
1332 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001333 if (fc->sb) {
1334 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1335 outarg.off, outarg.len);
1336 }
John Muir3b463ae2009-05-31 11:13:57 -04001337 up_read(&fc->killsb);
1338 return err;
1339
1340err:
1341 fuse_copy_finish(cs);
1342 return err;
1343}
1344
1345static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1346 struct fuse_copy_state *cs)
1347{
1348 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001349 int err = -ENOMEM;
1350 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001351 struct qstr name;
1352
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001353 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1354 if (!buf)
1355 goto err;
1356
1357 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001358 if (size < sizeof(outarg))
1359 goto err;
1360
1361 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1362 if (err)
1363 goto err;
1364
1365 err = -ENAMETOOLONG;
1366 if (outarg.namelen > FUSE_NAME_MAX)
1367 goto err;
1368
Miklos Szeredic2183d12011-08-24 10:20:17 +02001369 err = -EINVAL;
1370 if (size != sizeof(outarg) + outarg.namelen + 1)
1371 goto err;
1372
John Muir3b463ae2009-05-31 11:13:57 -04001373 name.name = buf;
1374 name.len = outarg.namelen;
1375 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1376 if (err)
1377 goto err;
1378 fuse_copy_finish(cs);
1379 buf[outarg.namelen] = 0;
1380 name.hash = full_name_hash(name.name, name.len);
1381
1382 down_read(&fc->killsb);
1383 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001384 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001385 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1386 up_read(&fc->killsb);
1387 kfree(buf);
1388 return err;
1389
1390err:
1391 kfree(buf);
1392 fuse_copy_finish(cs);
1393 return err;
1394}
1395
1396static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1397 struct fuse_copy_state *cs)
1398{
1399 struct fuse_notify_delete_out outarg;
1400 int err = -ENOMEM;
1401 char *buf;
1402 struct qstr name;
1403
1404 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1405 if (!buf)
1406 goto err;
1407
1408 err = -EINVAL;
1409 if (size < sizeof(outarg))
1410 goto err;
1411
1412 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1413 if (err)
1414 goto err;
1415
1416 err = -ENAMETOOLONG;
1417 if (outarg.namelen > FUSE_NAME_MAX)
1418 goto err;
1419
1420 err = -EINVAL;
1421 if (size != sizeof(outarg) + outarg.namelen + 1)
1422 goto err;
1423
1424 name.name = buf;
1425 name.len = outarg.namelen;
1426 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1427 if (err)
1428 goto err;
1429 fuse_copy_finish(cs);
1430 buf[outarg.namelen] = 0;
1431 name.hash = full_name_hash(name.name, name.len);
1432
1433 down_read(&fc->killsb);
1434 err = -ENOENT;
1435 if (fc->sb)
1436 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1437 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001438 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001439 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001440 return err;
1441
1442err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001443 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001444 fuse_copy_finish(cs);
1445 return err;
1446}
1447
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001448static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1449 struct fuse_copy_state *cs)
1450{
1451 struct fuse_notify_store_out outarg;
1452 struct inode *inode;
1453 struct address_space *mapping;
1454 u64 nodeid;
1455 int err;
1456 pgoff_t index;
1457 unsigned int offset;
1458 unsigned int num;
1459 loff_t file_size;
1460 loff_t end;
1461
1462 err = -EINVAL;
1463 if (size < sizeof(outarg))
1464 goto out_finish;
1465
1466 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1467 if (err)
1468 goto out_finish;
1469
1470 err = -EINVAL;
1471 if (size - sizeof(outarg) != outarg.size)
1472 goto out_finish;
1473
1474 nodeid = outarg.nodeid;
1475
1476 down_read(&fc->killsb);
1477
1478 err = -ENOENT;
1479 if (!fc->sb)
1480 goto out_up_killsb;
1481
1482 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1483 if (!inode)
1484 goto out_up_killsb;
1485
1486 mapping = inode->i_mapping;
1487 index = outarg.offset >> PAGE_CACHE_SHIFT;
1488 offset = outarg.offset & ~PAGE_CACHE_MASK;
1489 file_size = i_size_read(inode);
1490 end = outarg.offset + outarg.size;
1491 if (end > file_size) {
1492 file_size = end;
1493 fuse_write_update_size(inode, file_size);
1494 }
1495
1496 num = outarg.size;
1497 while (num) {
1498 struct page *page;
1499 unsigned int this_num;
1500
1501 err = -ENOMEM;
1502 page = find_or_create_page(mapping, index,
1503 mapping_gfp_mask(mapping));
1504 if (!page)
1505 goto out_iput;
1506
1507 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1508 err = fuse_copy_page(cs, &page, offset, this_num, 0);
1509 if (!err && offset == 0 && (num != 0 || file_size == end))
1510 SetPageUptodate(page);
1511 unlock_page(page);
1512 page_cache_release(page);
1513
1514 if (err)
1515 goto out_iput;
1516
1517 num -= this_num;
1518 offset = 0;
1519 index++;
1520 }
1521
1522 err = 0;
1523
1524out_iput:
1525 iput(inode);
1526out_up_killsb:
1527 up_read(&fc->killsb);
1528out_finish:
1529 fuse_copy_finish(cs);
1530 return err;
1531}
1532
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001533static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1534{
Miklos Szeredi0be85572010-10-27 15:34:46 -07001535 release_pages(req->pages, req->num_pages, 0);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001536}
1537
1538static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1539 struct fuse_notify_retrieve_out *outarg)
1540{
1541 int err;
1542 struct address_space *mapping = inode->i_mapping;
1543 struct fuse_req *req;
1544 pgoff_t index;
1545 loff_t file_size;
1546 unsigned int num;
1547 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001548 size_t total_len = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001549
1550 req = fuse_get_req(fc);
1551 if (IS_ERR(req))
1552 return PTR_ERR(req);
1553
1554 offset = outarg->offset & ~PAGE_CACHE_MASK;
1555
1556 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1557 req->in.h.nodeid = outarg->nodeid;
1558 req->in.numargs = 2;
1559 req->in.argpages = 1;
1560 req->page_offset = offset;
1561 req->end = fuse_retrieve_end;
1562
1563 index = outarg->offset >> PAGE_CACHE_SHIFT;
1564 file_size = i_size_read(inode);
1565 num = outarg->size;
1566 if (outarg->offset > file_size)
1567 num = 0;
1568 else if (outarg->offset + num > file_size)
1569 num = file_size - outarg->offset;
1570
Miklos Szeredi48706d02011-12-13 10:36:59 +01001571 while (num && req->num_pages < FUSE_MAX_PAGES_PER_REQ) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001572 struct page *page;
1573 unsigned int this_num;
1574
1575 page = find_get_page(mapping, index);
1576 if (!page)
1577 break;
1578
1579 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1580 req->pages[req->num_pages] = page;
1581 req->num_pages++;
1582
Miklos Szeredi53e0a642012-09-04 18:45:54 +02001583 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001584 num -= this_num;
1585 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001586 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001587 }
1588 req->misc.retrieve_in.offset = outarg->offset;
1589 req->misc.retrieve_in.size = total_len;
1590 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1591 req->in.args[0].value = &req->misc.retrieve_in;
1592 req->in.args[1].size = total_len;
1593
1594 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1595 if (err)
1596 fuse_retrieve_end(fc, req);
1597
1598 return err;
1599}
1600
1601static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1602 struct fuse_copy_state *cs)
1603{
1604 struct fuse_notify_retrieve_out outarg;
1605 struct inode *inode;
1606 int err;
1607
1608 err = -EINVAL;
1609 if (size != sizeof(outarg))
1610 goto copy_finish;
1611
1612 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1613 if (err)
1614 goto copy_finish;
1615
1616 fuse_copy_finish(cs);
1617
1618 down_read(&fc->killsb);
1619 err = -ENOENT;
1620 if (fc->sb) {
1621 u64 nodeid = outarg.nodeid;
1622
1623 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1624 if (inode) {
1625 err = fuse_retrieve(fc, inode, &outarg);
1626 iput(inode);
1627 }
1628 }
1629 up_read(&fc->killsb);
1630
1631 return err;
1632
1633copy_finish:
1634 fuse_copy_finish(cs);
1635 return err;
1636}
1637
Tejun Heo85993962008-11-26 12:03:55 +01001638static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1639 unsigned int size, struct fuse_copy_state *cs)
1640{
Miklos Szeredi3023c272015-02-26 11:45:47 +01001641 /* Don't try to move pages (yet) */
1642 cs->move_pages = 0;
1643
Tejun Heo85993962008-11-26 12:03:55 +01001644 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001645 case FUSE_NOTIFY_POLL:
1646 return fuse_notify_poll(fc, size, cs);
1647
John Muir3b463ae2009-05-31 11:13:57 -04001648 case FUSE_NOTIFY_INVAL_INODE:
1649 return fuse_notify_inval_inode(fc, size, cs);
1650
1651 case FUSE_NOTIFY_INVAL_ENTRY:
1652 return fuse_notify_inval_entry(fc, size, cs);
1653
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001654 case FUSE_NOTIFY_STORE:
1655 return fuse_notify_store(fc, size, cs);
1656
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001657 case FUSE_NOTIFY_RETRIEVE:
1658 return fuse_notify_retrieve(fc, size, cs);
1659
John Muir451d0f52011-12-06 21:50:06 +01001660 case FUSE_NOTIFY_DELETE:
1661 return fuse_notify_delete(fc, size, cs);
1662
Tejun Heo85993962008-11-26 12:03:55 +01001663 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001664 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001665 return -EINVAL;
1666 }
1667}
1668
Miklos Szeredi334f4852005-09-09 13:10:27 -07001669/* Look up request on processing list by unique ID */
1670static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
1671{
1672 struct list_head *entry;
1673
1674 list_for_each(entry, &fc->processing) {
1675 struct fuse_req *req;
1676 req = list_entry(entry, struct fuse_req, list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001677 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001678 return req;
1679 }
1680 return NULL;
1681}
1682
1683static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1684 unsigned nbytes)
1685{
1686 unsigned reqsize = sizeof(struct fuse_out_header);
1687
1688 if (out->h.error)
1689 return nbytes != reqsize ? -EINVAL : 0;
1690
1691 reqsize += len_args(out->numargs, out->args);
1692
1693 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1694 return -EINVAL;
1695 else if (reqsize > nbytes) {
1696 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1697 unsigned diffsize = reqsize - nbytes;
1698 if (diffsize > lastarg->size)
1699 return -EINVAL;
1700 lastarg->size -= diffsize;
1701 }
1702 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1703 out->page_zeroing);
1704}
1705
1706/*
1707 * Write a single reply to a request. First the header is copied from
1708 * the write buffer. The request is then searched on the processing
1709 * list by the unique ID found in the header. If found, then remove
1710 * it from the list and copy the rest of the buffer to the request.
1711 * The request is finished by calling request_end()
1712 */
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001713static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1714 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001715{
1716 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001717 struct fuse_req *req;
1718 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001719
Miklos Szeredi334f4852005-09-09 13:10:27 -07001720 if (nbytes < sizeof(struct fuse_out_header))
1721 return -EINVAL;
1722
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001723 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001724 if (err)
1725 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001726
Miklos Szeredi334f4852005-09-09 13:10:27 -07001727 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001728 if (oh.len != nbytes)
1729 goto err_finish;
1730
1731 /*
1732 * Zero oh.unique indicates unsolicited notification message
1733 * and error contains notification code.
1734 */
1735 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001736 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001737 return err ? err : nbytes;
1738 }
1739
1740 err = -EINVAL;
1741 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001742 goto err_finish;
1743
Miklos Szeredid7133112006-04-10 22:54:55 -07001744 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001745 err = -ENOENT;
1746 if (!fc->connected)
1747 goto err_unlock;
1748
Miklos Szeredi334f4852005-09-09 13:10:27 -07001749 req = request_find(fc, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001750 if (!req)
1751 goto err_unlock;
1752
Miklos Szeredif9a28422006-06-25 05:48:53 -07001753 if (req->aborted) {
Miklos Szeredid7133112006-04-10 22:54:55 -07001754 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001755 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001756 spin_lock(&fc->lock);
Miklos Szeredi222f1d62006-01-16 22:14:25 -08001757 request_end(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001758 return -ENOENT;
1759 }
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001760 /* Is it an interrupt reply? */
1761 if (req->intr_unique == oh.unique) {
1762 err = -EINVAL;
1763 if (nbytes != sizeof(struct fuse_out_header))
1764 goto err_unlock;
1765
1766 if (oh.error == -ENOSYS)
1767 fc->no_interrupt = 1;
1768 else if (oh.error == -EAGAIN)
1769 queue_interrupt(fc, req);
1770
1771 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001772 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001773 return nbytes;
1774 }
1775
1776 req->state = FUSE_REQ_WRITING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001777 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001778 req->out.h = oh;
1779 req->locked = 1;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001780 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001781 if (!req->out.page_replace)
1782 cs->move_pages = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -07001783 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001784
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001785 err = copy_out_args(cs, &req->out, nbytes);
1786 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001787
Miklos Szeredid7133112006-04-10 22:54:55 -07001788 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001789 req->locked = 0;
1790 if (!err) {
Miklos Szeredif9a28422006-06-25 05:48:53 -07001791 if (req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001792 err = -ENOENT;
Miklos Szeredif9a28422006-06-25 05:48:53 -07001793 } else if (!req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001794 req->out.h.error = -EIO;
1795 request_end(fc, req);
1796
1797 return err ? err : nbytes;
1798
1799 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001800 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001801 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001802 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001803 return err;
1804}
1805
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001806static ssize_t fuse_dev_write(struct kiocb *iocb, const struct iovec *iov,
1807 unsigned long nr_segs, loff_t pos)
1808{
1809 struct fuse_copy_state cs;
1810 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1811 if (!fc)
1812 return -EPERM;
1813
Miklos Szeredic3021622010-05-25 15:06:07 +02001814 fuse_copy_init(&cs, fc, 0, iov, nr_segs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001815
1816 return fuse_dev_do_write(fc, &cs, iov_length(iov, nr_segs));
1817}
1818
1819static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1820 struct file *out, loff_t *ppos,
1821 size_t len, unsigned int flags)
1822{
1823 unsigned nbuf;
1824 unsigned idx;
1825 struct pipe_buffer *bufs;
1826 struct fuse_copy_state cs;
1827 struct fuse_conn *fc;
1828 size_t rem;
1829 ssize_t ret;
1830
1831 fc = fuse_get_conn(out);
1832 if (!fc)
1833 return -EPERM;
1834
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001835 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001836 if (!bufs)
1837 return -ENOMEM;
1838
1839 pipe_lock(pipe);
1840 nbuf = 0;
1841 rem = 0;
1842 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
1843 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
1844
1845 ret = -EINVAL;
1846 if (rem < len) {
1847 pipe_unlock(pipe);
1848 goto out;
1849 }
1850
1851 rem = len;
1852 while (rem) {
1853 struct pipe_buffer *ibuf;
1854 struct pipe_buffer *obuf;
1855
1856 BUG_ON(nbuf >= pipe->buffers);
1857 BUG_ON(!pipe->nrbufs);
1858 ibuf = &pipe->bufs[pipe->curbuf];
1859 obuf = &bufs[nbuf];
1860
1861 if (rem >= ibuf->len) {
1862 *obuf = *ibuf;
1863 ibuf->ops = NULL;
1864 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
1865 pipe->nrbufs--;
1866 } else {
1867 ibuf->ops->get(pipe, ibuf);
1868 *obuf = *ibuf;
1869 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1870 obuf->len = rem;
1871 ibuf->offset += obuf->len;
1872 ibuf->len -= obuf->len;
1873 }
1874 nbuf++;
1875 rem -= obuf->len;
1876 }
1877 pipe_unlock(pipe);
1878
Miklos Szeredic3021622010-05-25 15:06:07 +02001879 fuse_copy_init(&cs, fc, 0, NULL, nbuf);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001880 cs.pipebufs = bufs;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001881 cs.pipe = pipe;
1882
Miklos Szeredice534fb2010-05-25 15:06:07 +02001883 if (flags & SPLICE_F_MOVE)
1884 cs.move_pages = 1;
1885
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001886 ret = fuse_dev_do_write(fc, &cs, len);
1887
1888 for (idx = 0; idx < nbuf; idx++) {
1889 struct pipe_buffer *buf = &bufs[idx];
1890 buf->ops->release(pipe, buf);
1891 }
1892out:
1893 kfree(bufs);
1894 return ret;
1895}
1896
Miklos Szeredi334f4852005-09-09 13:10:27 -07001897static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
1898{
Miklos Szeredi334f4852005-09-09 13:10:27 -07001899 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07001900 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001901 if (!fc)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07001902 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001903
1904 poll_wait(file, &fc->waitq, wait);
1905
Miklos Szeredid7133112006-04-10 22:54:55 -07001906 spin_lock(&fc->lock);
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07001907 if (!fc->connected)
1908 mask = POLLERR;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001909 else if (request_pending(fc))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07001910 mask |= POLLIN | POLLRDNORM;
Miklos Szeredid7133112006-04-10 22:54:55 -07001911 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001912
1913 return mask;
1914}
1915
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001916/*
1917 * Abort all requests on the given list (pending or processing)
1918 *
Miklos Szeredid7133112006-04-10 22:54:55 -07001919 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001920 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07001921static void end_requests(struct fuse_conn *fc, struct list_head *head)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001922__releases(fc->lock)
1923__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001924{
1925 while (!list_empty(head)) {
1926 struct fuse_req *req;
1927 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001928 req->out.h.error = -ECONNABORTED;
1929 request_end(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001930 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001931 }
1932}
1933
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001934/*
1935 * Abort requests under I/O
1936 *
Miklos Szeredif9a28422006-06-25 05:48:53 -07001937 * The requests are set to aborted and finished, and the request
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001938 * waiter is woken up. This will make request_wait_answer() wait
1939 * until the request is unlocked and then return.
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001940 *
1941 * If the request is asynchronous, then the end function needs to be
1942 * called after waiting for the request to be unlocked (if it was
1943 * locked).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001944 */
1945static void end_io_requests(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001946__releases(fc->lock)
1947__acquires(fc->lock)
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001948{
1949 while (!list_empty(&fc->io)) {
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001950 struct fuse_req *req =
1951 list_entry(fc->io.next, struct fuse_req, list);
1952 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
1953
Miklos Szeredif9a28422006-06-25 05:48:53 -07001954 req->aborted = 1;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001955 req->out.h.error = -ECONNABORTED;
1956 req->state = FUSE_REQ_FINISHED;
1957 list_del_init(&req->list);
1958 wake_up(&req->waitq);
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001959 if (end) {
1960 req->end = NULL;
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001961 __fuse_get_request(req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001962 spin_unlock(&fc->lock);
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001963 wait_event(req->waitq, !req->locked);
1964 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01001965 fuse_put_request(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001966 spin_lock(&fc->lock);
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001967 }
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001968 }
1969}
1970
Miklos Szeredi595afaf2010-09-07 13:42:41 +02001971static void end_queued_requests(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001972__releases(fc->lock)
1973__acquires(fc->lock)
Miklos Szeredi595afaf2010-09-07 13:42:41 +02001974{
1975 fc->max_background = UINT_MAX;
1976 flush_bg_queue(fc);
1977 end_requests(fc, &fc->pending);
1978 end_requests(fc, &fc->processing);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001979 while (forget_pending(fc))
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001980 kfree(dequeue_forget(fc, 1, NULL));
Miklos Szeredi595afaf2010-09-07 13:42:41 +02001981}
1982
Bryan Green357ccf22011-03-01 16:43:52 -08001983static void end_polls(struct fuse_conn *fc)
1984{
1985 struct rb_node *p;
1986
1987 p = rb_first(&fc->polled_files);
1988
1989 while (p) {
1990 struct fuse_file *ff;
1991 ff = rb_entry(p, struct fuse_file, polled_node);
1992 wake_up_interruptible_all(&ff->poll_wait);
1993
1994 p = rb_next(p);
1995 }
1996}
1997
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001998/*
1999 * Abort all requests.
2000 *
2001 * Emergency exit in case of a malicious or accidental deadlock, or
2002 * just a hung filesystem.
2003 *
2004 * The same effect is usually achievable through killing the
2005 * filesystem daemon and all users of the filesystem. The exception
2006 * is the combination of an asynchronous request and the tricky
2007 * deadlock (see Documentation/filesystems/fuse.txt).
2008 *
2009 * During the aborting, progression of requests from the pending and
2010 * processing lists onto the io list, and progression of new requests
2011 * onto the pending list is prevented by req->connected being false.
2012 *
2013 * Progression of requests under I/O to the processing list is
Miklos Szeredif9a28422006-06-25 05:48:53 -07002014 * prevented by the req->aborted flag being true for these requests.
2015 * For this reason requests on the io list must be aborted first.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002016 */
2017void fuse_abort_conn(struct fuse_conn *fc)
2018{
Miklos Szeredid7133112006-04-10 22:54:55 -07002019 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002020 if (fc->connected) {
2021 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002022 fc->blocked = 0;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002023 end_io_requests(fc);
Miklos Szeredi595afaf2010-09-07 13:42:41 +02002024 end_queued_requests(fc);
Bryan Green357ccf22011-03-01 16:43:52 -08002025 end_polls(fc);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002026 wake_up_all(&fc->waitq);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002027 wake_up_all(&fc->blocked_waitq);
Jeff Dike385a17b2006-04-10 22:54:52 -07002028 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002029 }
Miklos Szeredid7133112006-04-10 22:54:55 -07002030 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002031}
Tejun Heo08cbf542009-04-14 10:54:53 +09002032EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002033
Tejun Heo08cbf542009-04-14 10:54:53 +09002034int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002035{
Miklos Szeredi0720b312006-04-10 22:54:55 -07002036 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002037 if (fc) {
Miklos Szeredid7133112006-04-10 22:54:55 -07002038 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -07002039 fc->connected = 0;
Miklos Szeredi595afaf2010-09-07 13:42:41 +02002040 fc->blocked = 0;
2041 end_queued_requests(fc);
Bryan Green357ccf22011-03-01 16:43:52 -08002042 end_polls(fc);
Miklos Szeredi595afaf2010-09-07 13:42:41 +02002043 wake_up_all(&fc->blocked_waitq);
Miklos Szeredid7133112006-04-10 22:54:55 -07002044 spin_unlock(&fc->lock);
Miklos Szeredibafa9652006-06-25 05:48:51 -07002045 fuse_conn_put(fc);
Jeff Dike385a17b2006-04-10 22:54:52 -07002046 }
Miklos Szeredif543f252006-01-16 22:14:35 -08002047
Miklos Szeredi334f4852005-09-09 13:10:27 -07002048 return 0;
2049}
Tejun Heo08cbf542009-04-14 10:54:53 +09002050EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002051
Jeff Dike385a17b2006-04-10 22:54:52 -07002052static int fuse_dev_fasync(int fd, struct file *file, int on)
2053{
2054 struct fuse_conn *fc = fuse_get_conn(file);
2055 if (!fc)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002056 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002057
2058 /* No locking - fasync_helper does its own locking */
2059 return fasync_helper(fd, file, on, &fc->fasync);
2060}
2061
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002062const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002063 .owner = THIS_MODULE,
2064 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002065 .read = do_sync_read,
2066 .aio_read = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002067 .splice_read = fuse_dev_splice_read,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002068 .write = do_sync_write,
2069 .aio_write = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002070 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002071 .poll = fuse_dev_poll,
2072 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002073 .fasync = fuse_dev_fasync,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002074};
Tejun Heo08cbf542009-04-14 10:54:53 +09002075EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002076
2077static struct miscdevice fuse_miscdevice = {
2078 .minor = FUSE_MINOR,
2079 .name = "fuse",
2080 .fops = &fuse_dev_operations,
2081};
2082
2083int __init fuse_dev_init(void)
2084{
2085 int err = -ENOMEM;
2086 fuse_req_cachep = kmem_cache_create("fuse_request",
2087 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002088 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002089 if (!fuse_req_cachep)
2090 goto out;
2091
2092 err = misc_register(&fuse_miscdevice);
2093 if (err)
2094 goto out_cache_clean;
2095
2096 return 0;
2097
2098 out_cache_clean:
2099 kmem_cache_destroy(fuse_req_cachep);
2100 out:
2101 return err;
2102}
2103
2104void fuse_dev_cleanup(void)
2105{
2106 misc_deregister(&fuse_miscdevice);
2107 kmem_cache_destroy(fuse_req_cachep);
2108}