blob: 8c23fa7a91e65cb46ad3907432e4418c7f96ad2d [file] [log] [blame]
Miklos Szeredi334f4852005-09-09 13:10:27 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi1729a162008-11-26 12:03:54 +01003 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi334f4852005-09-09 13:10:27 -07004
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
9#include "fuse_i.h"
10
11#include <linux/init.h>
12#include <linux/module.h>
13#include <linux/poll.h>
14#include <linux/uio.h>
15#include <linux/miscdevice.h>
16#include <linux/pagemap.h>
17#include <linux/file.h>
18#include <linux/slab.h>
Miklos Szeredidd3bb142010-05-25 15:06:06 +020019#include <linux/pipe_fs_i.h>
Miklos Szeredice534fb2010-05-25 15:06:07 +020020#include <linux/swap.h>
21#include <linux/splice.h>
Miklos Szeredi334f4852005-09-09 13:10:27 -070022
23MODULE_ALIAS_MISCDEV(FUSE_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +020024MODULE_ALIAS("devname:fuse");
Miklos Szeredi334f4852005-09-09 13:10:27 -070025
Christoph Lametere18b8902006-12-06 20:33:20 -080026static struct kmem_cache *fuse_req_cachep;
Miklos Szeredi334f4852005-09-09 13:10:27 -070027
Miklos Szeredi8bfc0162006-01-16 22:14:28 -080028static struct fuse_conn *fuse_get_conn(struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -070029{
Miklos Szeredi0720b312006-04-10 22:54:55 -070030 /*
31 * Lockless access is OK, because file->private data is set
32 * once during mount and is valid until the file is released.
33 */
34 return file->private_data;
Miklos Szeredi334f4852005-09-09 13:10:27 -070035}
36
Miklos Szeredi8bfc0162006-01-16 22:14:28 -080037static void fuse_request_init(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -070038{
39 memset(req, 0, sizeof(*req));
40 INIT_LIST_HEAD(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -070041 INIT_LIST_HEAD(&req->intr_entry);
Miklos Szeredi334f4852005-09-09 13:10:27 -070042 init_waitqueue_head(&req->waitq);
43 atomic_set(&req->count, 1);
44}
45
46struct fuse_req *fuse_request_alloc(void)
47{
Christoph Lametere94b1762006-12-06 20:33:17 -080048 struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, GFP_KERNEL);
Miklos Szeredi334f4852005-09-09 13:10:27 -070049 if (req)
50 fuse_request_init(req);
51 return req;
52}
Tejun Heo08cbf542009-04-14 10:54:53 +090053EXPORT_SYMBOL_GPL(fuse_request_alloc);
Miklos Szeredi334f4852005-09-09 13:10:27 -070054
Miklos Szeredi3be5a522008-04-30 00:54:41 -070055struct fuse_req *fuse_request_alloc_nofs(void)
56{
57 struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, GFP_NOFS);
58 if (req)
59 fuse_request_init(req);
60 return req;
61}
62
Miklos Szeredi334f4852005-09-09 13:10:27 -070063void fuse_request_free(struct fuse_req *req)
64{
65 kmem_cache_free(fuse_req_cachep, req);
66}
67
Miklos Szeredi8bfc0162006-01-16 22:14:28 -080068static void block_sigs(sigset_t *oldset)
Miklos Szeredi334f4852005-09-09 13:10:27 -070069{
70 sigset_t mask;
71
72 siginitsetinv(&mask, sigmask(SIGKILL));
73 sigprocmask(SIG_BLOCK, &mask, oldset);
74}
75
Miklos Szeredi8bfc0162006-01-16 22:14:28 -080076static void restore_sigs(sigset_t *oldset)
Miklos Szeredi334f4852005-09-09 13:10:27 -070077{
78 sigprocmask(SIG_SETMASK, oldset, NULL);
79}
80
Miklos Szeredi334f4852005-09-09 13:10:27 -070081static void __fuse_get_request(struct fuse_req *req)
82{
83 atomic_inc(&req->count);
84}
85
86/* Must be called with > 1 refcount */
87static void __fuse_put_request(struct fuse_req *req)
88{
89 BUG_ON(atomic_read(&req->count) < 2);
90 atomic_dec(&req->count);
91}
92
Miklos Szeredi33649c92006-06-25 05:48:52 -070093static void fuse_req_init_context(struct fuse_req *req)
94{
David Howells2186a712008-11-14 10:38:53 +110095 req->in.h.uid = current_fsuid();
96 req->in.h.gid = current_fsgid();
Miklos Szeredi33649c92006-06-25 05:48:52 -070097 req->in.h.pid = current->pid;
98}
99
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700100struct fuse_req *fuse_get_req(struct fuse_conn *fc)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700101{
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700102 struct fuse_req *req;
103 sigset_t oldset;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200104 int intr;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700105 int err;
106
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200107 atomic_inc(&fc->num_waiting);
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700108 block_sigs(&oldset);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200109 intr = wait_event_interruptible(fc->blocked_waitq, !fc->blocked);
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700110 restore_sigs(&oldset);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200111 err = -EINTR;
112 if (intr)
113 goto out;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700114
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700115 err = -ENOTCONN;
116 if (!fc->connected)
117 goto out;
118
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700119 req = fuse_request_alloc();
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200120 err = -ENOMEM;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700121 if (!req)
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200122 goto out;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700123
Miklos Szeredi33649c92006-06-25 05:48:52 -0700124 fuse_req_init_context(req);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200125 req->waiting = 1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700126 return req;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200127
128 out:
129 atomic_dec(&fc->num_waiting);
130 return ERR_PTR(err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700131}
Tejun Heo08cbf542009-04-14 10:54:53 +0900132EXPORT_SYMBOL_GPL(fuse_get_req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700133
Miklos Szeredi33649c92006-06-25 05:48:52 -0700134/*
135 * Return request in fuse_file->reserved_req. However that may
136 * currently be in use. If that is the case, wait for it to become
137 * available.
138 */
139static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
140 struct file *file)
141{
142 struct fuse_req *req = NULL;
143 struct fuse_file *ff = file->private_data;
144
145 do {
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700146 wait_event(fc->reserved_req_waitq, ff->reserved_req);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700147 spin_lock(&fc->lock);
148 if (ff->reserved_req) {
149 req = ff->reserved_req;
150 ff->reserved_req = NULL;
Al Virocb0942b2012-08-27 14:48:26 -0400151 req->stolen_file = get_file(file);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700152 }
153 spin_unlock(&fc->lock);
154 } while (!req);
155
156 return req;
157}
158
159/*
160 * Put stolen request back into fuse_file->reserved_req
161 */
162static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
163{
164 struct file *file = req->stolen_file;
165 struct fuse_file *ff = file->private_data;
166
167 spin_lock(&fc->lock);
168 fuse_request_init(req);
169 BUG_ON(ff->reserved_req);
170 ff->reserved_req = req;
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700171 wake_up_all(&fc->reserved_req_waitq);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700172 spin_unlock(&fc->lock);
173 fput(file);
174}
175
176/*
177 * Gets a requests for a file operation, always succeeds
178 *
179 * This is used for sending the FLUSH request, which must get to
180 * userspace, due to POSIX locks which may need to be unlocked.
181 *
182 * If allocation fails due to OOM, use the reserved request in
183 * fuse_file.
184 *
185 * This is very unlikely to deadlock accidentally, since the
186 * filesystem should not have it's own file open. If deadlock is
187 * intentional, it can still be broken by "aborting" the filesystem.
188 */
189struct fuse_req *fuse_get_req_nofail(struct fuse_conn *fc, struct file *file)
190{
191 struct fuse_req *req;
192
193 atomic_inc(&fc->num_waiting);
194 wait_event(fc->blocked_waitq, !fc->blocked);
195 req = fuse_request_alloc();
196 if (!req)
197 req = get_reserved_req(fc, file);
198
199 fuse_req_init_context(req);
200 req->waiting = 1;
201 return req;
202}
203
Miklos Szeredi334f4852005-09-09 13:10:27 -0700204void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
205{
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800206 if (atomic_dec_and_test(&req->count)) {
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200207 if (req->waiting)
208 atomic_dec(&fc->num_waiting);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700209
210 if (req->stolen_file)
211 put_reserved_req(fc, req);
212 else
213 fuse_request_free(req);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800214 }
215}
Tejun Heo08cbf542009-04-14 10:54:53 +0900216EXPORT_SYMBOL_GPL(fuse_put_request);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800217
Miklos Szeredid12def12008-02-06 01:38:39 -0800218static unsigned len_args(unsigned numargs, struct fuse_arg *args)
219{
220 unsigned nbytes = 0;
221 unsigned i;
222
223 for (i = 0; i < numargs; i++)
224 nbytes += args[i].size;
225
226 return nbytes;
227}
228
229static u64 fuse_get_unique(struct fuse_conn *fc)
230{
231 fc->reqctr++;
232 /* zero is special */
233 if (fc->reqctr == 0)
234 fc->reqctr = 1;
235
236 return fc->reqctr;
237}
238
239static void queue_request(struct fuse_conn *fc, struct fuse_req *req)
240{
Miklos Szeredid12def12008-02-06 01:38:39 -0800241 req->in.h.len = sizeof(struct fuse_in_header) +
242 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
243 list_add_tail(&req->list, &fc->pending);
244 req->state = FUSE_REQ_PENDING;
245 if (!req->waiting) {
246 req->waiting = 1;
247 atomic_inc(&fc->num_waiting);
248 }
249 wake_up(&fc->waitq);
250 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
251}
252
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100253void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
254 u64 nodeid, u64 nlookup)
255{
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100256 forget->forget_one.nodeid = nodeid;
257 forget->forget_one.nlookup = nlookup;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100258
259 spin_lock(&fc->lock);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200260 if (fc->connected) {
261 fc->forget_list_tail->next = forget;
262 fc->forget_list_tail = forget;
263 wake_up(&fc->waitq);
264 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
265 } else {
266 kfree(forget);
267 }
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100268 spin_unlock(&fc->lock);
269}
270
Miklos Szeredid12def12008-02-06 01:38:39 -0800271static void flush_bg_queue(struct fuse_conn *fc)
272{
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700273 while (fc->active_background < fc->max_background &&
Miklos Szeredid12def12008-02-06 01:38:39 -0800274 !list_empty(&fc->bg_queue)) {
275 struct fuse_req *req;
276
277 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
278 list_del(&req->list);
279 fc->active_background++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200280 req->in.h.unique = fuse_get_unique(fc);
Miklos Szeredid12def12008-02-06 01:38:39 -0800281 queue_request(fc, req);
282 }
283}
284
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200285/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700286 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700287 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800288 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700289 * was closed. The requester thread is woken up (if still waiting),
290 * the 'end' callback is called if given, else the reference to the
291 * request is released
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800292 *
Miklos Szeredid7133112006-04-10 22:54:55 -0700293 * Called with fc->lock, unlocks it
Miklos Szeredi334f4852005-09-09 13:10:27 -0700294 */
295static void request_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200296__releases(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700297{
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700298 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
299 req->end = NULL;
Miklos Szeredid77a1d52006-01-16 22:14:31 -0800300 list_del(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700301 list_del(&req->intr_entry);
Miklos Szeredi83cfd492006-01-16 22:14:31 -0800302 req->state = FUSE_REQ_FINISHED;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700303 if (req->background) {
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700304 if (fc->num_background == fc->max_background) {
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700305 fc->blocked = 0;
306 wake_up_all(&fc->blocked_waitq);
307 }
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700308 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900309 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200310 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
311 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700312 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700313 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800314 fc->active_background--;
315 flush_bg_queue(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700316 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700317 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700318 wake_up(&req->waitq);
319 if (end)
320 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100321 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700322}
323
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700324static void wait_answer_interruptible(struct fuse_conn *fc,
325 struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200326__releases(fc->lock)
327__acquires(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700328{
329 if (signal_pending(current))
330 return;
331
332 spin_unlock(&fc->lock);
333 wait_event_interruptible(req->waitq, req->state == FUSE_REQ_FINISHED);
334 spin_lock(&fc->lock);
335}
336
337static void queue_interrupt(struct fuse_conn *fc, struct fuse_req *req)
338{
339 list_add_tail(&req->intr_entry, &fc->interrupts);
340 wake_up(&fc->waitq);
341 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
342}
343
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700344static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200345__releases(fc->lock)
346__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700347{
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700348 if (!fc->no_interrupt) {
349 /* Any signal may interrupt this */
350 wait_answer_interruptible(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700351
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700352 if (req->aborted)
353 goto aborted;
354 if (req->state == FUSE_REQ_FINISHED)
355 return;
356
357 req->interrupted = 1;
358 if (req->state == FUSE_REQ_SENT)
359 queue_interrupt(fc, req);
360 }
361
Miklos Szeredia131de02007-10-16 23:31:04 -0700362 if (!req->force) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700363 sigset_t oldset;
364
365 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700366 block_sigs(&oldset);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700367 wait_answer_interruptible(fc, req);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700368 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700369
370 if (req->aborted)
371 goto aborted;
372 if (req->state == FUSE_REQ_FINISHED)
373 return;
374
375 /* Request is not yet in userspace, bail out */
376 if (req->state == FUSE_REQ_PENDING) {
377 list_del(&req->list);
378 __fuse_put_request(req);
379 req->out.h.error = -EINTR;
380 return;
381 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700382 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700383
Miklos Szeredia131de02007-10-16 23:31:04 -0700384 /*
385 * Either request is already in userspace, or it was forced.
386 * Wait it out.
387 */
388 spin_unlock(&fc->lock);
389 wait_event(req->waitq, req->state == FUSE_REQ_FINISHED);
390 spin_lock(&fc->lock);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700391
Miklos Szeredia131de02007-10-16 23:31:04 -0700392 if (!req->aborted)
393 return;
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700394
395 aborted:
Miklos Szeredia131de02007-10-16 23:31:04 -0700396 BUG_ON(req->state != FUSE_REQ_FINISHED);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700397 if (req->locked) {
398 /* This is uninterruptible sleep, because data is
399 being copied to/from the buffers of req. During
400 locked state, there mustn't be any filesystem
401 operation (e.g. page fault), since that could lead
402 to deadlock */
Miklos Szeredid7133112006-04-10 22:54:55 -0700403 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700404 wait_event(req->waitq, !req->locked);
Miklos Szeredid7133112006-04-10 22:54:55 -0700405 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700406 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700407}
408
Tejun Heob93f8582008-11-26 12:03:55 +0100409void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700410{
411 req->isreply = 1;
Miklos Szeredid7133112006-04-10 22:54:55 -0700412 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700413 if (!fc->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700414 req->out.h.error = -ENOTCONN;
415 else if (fc->conn_error)
416 req->out.h.error = -ECONNREFUSED;
417 else {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200418 req->in.h.unique = fuse_get_unique(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700419 queue_request(fc, req);
420 /* acquire extra reference, since request is still needed
421 after request_end() */
422 __fuse_get_request(req);
423
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700424 request_wait_answer(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700425 }
Miklos Szeredid7133112006-04-10 22:54:55 -0700426 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700427}
Tejun Heo08cbf542009-04-14 10:54:53 +0900428EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700429
Tejun Heob93f8582008-11-26 12:03:55 +0100430static void fuse_request_send_nowait_locked(struct fuse_conn *fc,
431 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800432{
433 req->background = 1;
434 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700435 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800436 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700437 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900438 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200439 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
440 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800441 }
442 list_add_tail(&req->list, &fc->bg_queue);
443 flush_bg_queue(fc);
444}
445
Tejun Heob93f8582008-11-26 12:03:55 +0100446static void fuse_request_send_nowait(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700447{
Miklos Szeredid7133112006-04-10 22:54:55 -0700448 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700449 if (fc->connected) {
Tejun Heob93f8582008-11-26 12:03:55 +0100450 fuse_request_send_nowait_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700451 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700452 } else {
453 req->out.h.error = -ENOTCONN;
454 request_end(fc, req);
455 }
456}
457
Tejun Heob93f8582008-11-26 12:03:55 +0100458void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700459{
460 req->isreply = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100461 fuse_request_send_nowait(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700462}
Tejun Heo08cbf542009-04-14 10:54:53 +0900463EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700464
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200465static int fuse_request_send_notify_reply(struct fuse_conn *fc,
466 struct fuse_req *req, u64 unique)
467{
468 int err = -ENODEV;
469
470 req->isreply = 0;
471 req->in.h.unique = unique;
472 spin_lock(&fc->lock);
473 if (fc->connected) {
474 queue_request(fc, req);
475 err = 0;
476 }
477 spin_unlock(&fc->lock);
478
479 return err;
480}
481
Miklos Szeredi334f4852005-09-09 13:10:27 -0700482/*
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700483 * Called under fc->lock
484 *
485 * fc->connected must have been checked previously
486 */
Tejun Heob93f8582008-11-26 12:03:55 +0100487void fuse_request_send_background_locked(struct fuse_conn *fc,
488 struct fuse_req *req)
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700489{
490 req->isreply = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100491 fuse_request_send_nowait_locked(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700492}
493
494/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700495 * Lock the request. Up to the next unlock_request() there mustn't be
496 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700497 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700498 */
Miklos Szeredid7133112006-04-10 22:54:55 -0700499static int lock_request(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700500{
501 int err = 0;
502 if (req) {
Miklos Szeredid7133112006-04-10 22:54:55 -0700503 spin_lock(&fc->lock);
Miklos Szeredif9a28422006-06-25 05:48:53 -0700504 if (req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700505 err = -ENOENT;
506 else
507 req->locked = 1;
Miklos Szeredid7133112006-04-10 22:54:55 -0700508 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700509 }
510 return err;
511}
512
513/*
Miklos Szeredif9a28422006-06-25 05:48:53 -0700514 * Unlock request. If it was aborted during being locked, the
Miklos Szeredi334f4852005-09-09 13:10:27 -0700515 * requester thread is currently waiting for it to be unlocked, so
516 * wake it up.
517 */
Miklos Szeredid7133112006-04-10 22:54:55 -0700518static void unlock_request(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700519{
520 if (req) {
Miklos Szeredid7133112006-04-10 22:54:55 -0700521 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700522 req->locked = 0;
Miklos Szeredif9a28422006-06-25 05:48:53 -0700523 if (req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700524 wake_up(&req->waitq);
Miklos Szeredid7133112006-04-10 22:54:55 -0700525 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700526 }
527}
528
529struct fuse_copy_state {
Miklos Szeredid7133112006-04-10 22:54:55 -0700530 struct fuse_conn *fc;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700531 int write;
532 struct fuse_req *req;
533 const struct iovec *iov;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200534 struct pipe_buffer *pipebufs;
535 struct pipe_buffer *currbuf;
536 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700537 unsigned long nr_segs;
538 unsigned long seglen;
539 unsigned long addr;
540 struct page *pg;
541 void *mapaddr;
542 void *buf;
543 unsigned len;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200544 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700545};
546
Miklos Szeredid7133112006-04-10 22:54:55 -0700547static void fuse_copy_init(struct fuse_copy_state *cs, struct fuse_conn *fc,
Miklos Szeredic3021622010-05-25 15:06:07 +0200548 int write,
Miklos Szeredid7133112006-04-10 22:54:55 -0700549 const struct iovec *iov, unsigned long nr_segs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700550{
551 memset(cs, 0, sizeof(*cs));
Miklos Szeredid7133112006-04-10 22:54:55 -0700552 cs->fc = fc;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700553 cs->write = write;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700554 cs->iov = iov;
555 cs->nr_segs = nr_segs;
556}
557
558/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800559static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700560{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200561 if (cs->currbuf) {
562 struct pipe_buffer *buf = cs->currbuf;
563
Miklos Szeredic3021622010-05-25 15:06:07 +0200564 if (!cs->write) {
565 buf->ops->unmap(cs->pipe, buf, cs->mapaddr);
566 } else {
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200567 kunmap(buf->page);
Miklos Szeredic3021622010-05-25 15:06:07 +0200568 buf->len = PAGE_SIZE - cs->len;
569 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200570 cs->currbuf = NULL;
571 cs->mapaddr = NULL;
572 } else if (cs->mapaddr) {
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200573 kunmap(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700574 if (cs->write) {
575 flush_dcache_page(cs->pg);
576 set_page_dirty_lock(cs->pg);
577 }
578 put_page(cs->pg);
579 cs->mapaddr = NULL;
580 }
581}
582
583/*
584 * Get another pagefull of userspace buffer, and map it to kernel
585 * address space, and lock request
586 */
587static int fuse_copy_fill(struct fuse_copy_state *cs)
588{
589 unsigned long offset;
590 int err;
591
Miklos Szeredid7133112006-04-10 22:54:55 -0700592 unlock_request(cs->fc, cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700593 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200594 if (cs->pipebufs) {
595 struct pipe_buffer *buf = cs->pipebufs;
596
Miklos Szeredic3021622010-05-25 15:06:07 +0200597 if (!cs->write) {
598 err = buf->ops->confirm(cs->pipe, buf);
599 if (err)
600 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200601
Miklos Szeredic3021622010-05-25 15:06:07 +0200602 BUG_ON(!cs->nr_segs);
603 cs->currbuf = buf;
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200604 cs->mapaddr = buf->ops->map(cs->pipe, buf, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +0200605 cs->len = buf->len;
606 cs->buf = cs->mapaddr + buf->offset;
607 cs->pipebufs++;
608 cs->nr_segs--;
609 } else {
610 struct page *page;
611
612 if (cs->nr_segs == cs->pipe->buffers)
613 return -EIO;
614
615 page = alloc_page(GFP_HIGHUSER);
616 if (!page)
617 return -ENOMEM;
618
619 buf->page = page;
620 buf->offset = 0;
621 buf->len = 0;
622
623 cs->currbuf = buf;
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200624 cs->mapaddr = kmap(page);
Miklos Szeredic3021622010-05-25 15:06:07 +0200625 cs->buf = cs->mapaddr;
626 cs->len = PAGE_SIZE;
627 cs->pipebufs++;
628 cs->nr_segs++;
629 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200630 } else {
631 if (!cs->seglen) {
632 BUG_ON(!cs->nr_segs);
633 cs->seglen = cs->iov[0].iov_len;
634 cs->addr = (unsigned long) cs->iov[0].iov_base;
635 cs->iov++;
636 cs->nr_segs--;
637 }
638 err = get_user_pages_fast(cs->addr, 1, cs->write, &cs->pg);
639 if (err < 0)
640 return err;
641 BUG_ON(err != 1);
642 offset = cs->addr % PAGE_SIZE;
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200643 cs->mapaddr = kmap(cs->pg);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200644 cs->buf = cs->mapaddr + offset;
645 cs->len = min(PAGE_SIZE - offset, cs->seglen);
646 cs->seglen -= cs->len;
647 cs->addr += cs->len;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700648 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700649
Miklos Szeredid7133112006-04-10 22:54:55 -0700650 return lock_request(cs->fc, cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700651}
652
653/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800654static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700655{
656 unsigned ncpy = min(*size, cs->len);
657 if (val) {
658 if (cs->write)
659 memcpy(cs->buf, *val, ncpy);
660 else
661 memcpy(*val, cs->buf, ncpy);
662 *val += ncpy;
663 }
664 *size -= ncpy;
665 cs->len -= ncpy;
666 cs->buf += ncpy;
667 return ncpy;
668}
669
Miklos Szeredice534fb2010-05-25 15:06:07 +0200670static int fuse_check_page(struct page *page)
671{
672 if (page_mapcount(page) ||
673 page->mapping != NULL ||
674 page_count(page) != 1 ||
675 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
676 ~(1 << PG_locked |
677 1 << PG_referenced |
678 1 << PG_uptodate |
679 1 << PG_lru |
680 1 << PG_active |
681 1 << PG_reclaim))) {
682 printk(KERN_WARNING "fuse: trying to steal weird page\n");
683 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);
684 return 1;
685 }
686 return 0;
687}
688
689static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
690{
691 int err;
692 struct page *oldpage = *pagep;
693 struct page *newpage;
694 struct pipe_buffer *buf = cs->pipebufs;
695 struct address_space *mapping;
696 pgoff_t index;
697
698 unlock_request(cs->fc, cs->req);
699 fuse_copy_finish(cs);
700
701 err = buf->ops->confirm(cs->pipe, buf);
702 if (err)
703 return err;
704
705 BUG_ON(!cs->nr_segs);
706 cs->currbuf = buf;
707 cs->len = buf->len;
708 cs->pipebufs++;
709 cs->nr_segs--;
710
711 if (cs->len != PAGE_SIZE)
712 goto out_fallback;
713
714 if (buf->ops->steal(cs->pipe, buf) != 0)
715 goto out_fallback;
716
717 newpage = buf->page;
718
719 if (WARN_ON(!PageUptodate(newpage)))
720 return -EIO;
721
722 ClearPageMappedToDisk(newpage);
723
724 if (fuse_check_page(newpage) != 0)
725 goto out_fallback_unlock;
726
727 mapping = oldpage->mapping;
728 index = oldpage->index;
729
730 /*
731 * This is a new and locked page, it shouldn't be mapped or
732 * have any special flags on it
733 */
734 if (WARN_ON(page_mapped(oldpage)))
735 goto out_fallback_unlock;
736 if (WARN_ON(page_has_private(oldpage)))
737 goto out_fallback_unlock;
738 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
739 goto out_fallback_unlock;
740 if (WARN_ON(PageMlocked(oldpage)))
741 goto out_fallback_unlock;
742
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700743 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200744 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700745 unlock_page(newpage);
746 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200747 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700748
Miklos Szeredice534fb2010-05-25 15:06:07 +0200749 page_cache_get(newpage);
750
751 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
752 lru_cache_add_file(newpage);
753
754 err = 0;
755 spin_lock(&cs->fc->lock);
756 if (cs->req->aborted)
757 err = -ENOENT;
758 else
759 *pagep = newpage;
760 spin_unlock(&cs->fc->lock);
761
762 if (err) {
763 unlock_page(newpage);
764 page_cache_release(newpage);
765 return err;
766 }
767
768 unlock_page(oldpage);
769 page_cache_release(oldpage);
770 cs->len = 0;
771
772 return 0;
773
774out_fallback_unlock:
775 unlock_page(newpage);
776out_fallback:
777 cs->mapaddr = buf->ops->map(cs->pipe, buf, 1);
778 cs->buf = cs->mapaddr + buf->offset;
779
780 err = lock_request(cs->fc, cs->req);
781 if (err)
782 return err;
783
784 return 1;
785}
786
Miklos Szeredic3021622010-05-25 15:06:07 +0200787static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
788 unsigned offset, unsigned count)
789{
790 struct pipe_buffer *buf;
791
792 if (cs->nr_segs == cs->pipe->buffers)
793 return -EIO;
794
795 unlock_request(cs->fc, cs->req);
796 fuse_copy_finish(cs);
797
798 buf = cs->pipebufs;
799 page_cache_get(page);
800 buf->page = page;
801 buf->offset = offset;
802 buf->len = count;
803
804 cs->pipebufs++;
805 cs->nr_segs++;
806 cs->len = 0;
807
808 return 0;
809}
810
Miklos Szeredi334f4852005-09-09 13:10:27 -0700811/*
812 * Copy a page in the request to/from the userspace buffer. Must be
813 * done atomically
814 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200815static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800816 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700817{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200818 int err;
819 struct page *page = *pagep;
820
Miklos Szeredib6777c42010-10-26 14:22:27 -0700821 if (page && zeroing && count < PAGE_SIZE)
822 clear_highpage(page);
823
Miklos Szeredi334f4852005-09-09 13:10:27 -0700824 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200825 if (cs->write && cs->pipebufs && page) {
826 return fuse_ref_page(cs, page, offset, count);
827 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200828 if (cs->move_pages && page &&
829 offset == 0 && count == PAGE_SIZE) {
830 err = fuse_try_move_page(cs, pagep);
831 if (err <= 0)
832 return err;
833 } else {
834 err = fuse_copy_fill(cs);
835 if (err)
836 return err;
837 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100838 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700839 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800840 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700841 void *buf = mapaddr + offset;
842 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +0800843 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700844 } else
845 offset += fuse_copy_do(cs, NULL, &count);
846 }
847 if (page && !cs->write)
848 flush_dcache_page(page);
849 return 0;
850}
851
852/* Copy pages in the request to/from userspace buffer */
853static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
854 int zeroing)
855{
856 unsigned i;
857 struct fuse_req *req = cs->req;
858 unsigned offset = req->page_offset;
859 unsigned count = min(nbytes, (unsigned) PAGE_SIZE - offset);
860
861 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200862 int err;
863
864 err = fuse_copy_page(cs, &req->pages[i], offset, count,
865 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700866 if (err)
867 return err;
868
869 nbytes -= count;
870 count = min(nbytes, (unsigned) PAGE_SIZE);
871 offset = 0;
872 }
873 return 0;
874}
875
876/* Copy a single argument in the request to/from userspace buffer */
877static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
878{
879 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +0100880 if (!cs->len) {
881 int err = fuse_copy_fill(cs);
882 if (err)
883 return err;
884 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700885 fuse_copy_do(cs, &val, &size);
886 }
887 return 0;
888}
889
890/* Copy request arguments to/from userspace buffer */
891static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
892 unsigned argpages, struct fuse_arg *args,
893 int zeroing)
894{
895 int err = 0;
896 unsigned i;
897
898 for (i = 0; !err && i < numargs; i++) {
899 struct fuse_arg *arg = &args[i];
900 if (i == numargs - 1 && argpages)
901 err = fuse_copy_pages(cs, arg->size, zeroing);
902 else
903 err = fuse_copy_one(cs, arg->value, arg->size);
904 }
905 return err;
906}
907
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100908static int forget_pending(struct fuse_conn *fc)
909{
910 return fc->forget_list_head.next != NULL;
911}
912
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700913static int request_pending(struct fuse_conn *fc)
914{
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100915 return !list_empty(&fc->pending) || !list_empty(&fc->interrupts) ||
916 forget_pending(fc);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700917}
918
Miklos Szeredi334f4852005-09-09 13:10:27 -0700919/* Wait until a request is available on the pending list */
920static void request_wait(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200921__releases(fc->lock)
922__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700923{
924 DECLARE_WAITQUEUE(wait, current);
925
926 add_wait_queue_exclusive(&fc->waitq, &wait);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700927 while (fc->connected && !request_pending(fc)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700928 set_current_state(TASK_INTERRUPTIBLE);
929 if (signal_pending(current))
930 break;
931
Miklos Szeredid7133112006-04-10 22:54:55 -0700932 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700933 schedule();
Miklos Szeredid7133112006-04-10 22:54:55 -0700934 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700935 }
936 set_current_state(TASK_RUNNING);
937 remove_wait_queue(&fc->waitq, &wait);
938}
939
940/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700941 * Transfer an interrupt request to userspace
942 *
943 * Unlike other requests this is assembled on demand, without a need
944 * to allocate a separate fuse_req structure.
945 *
946 * Called with fc->lock held, releases it
947 */
Miklos Szeredic3021622010-05-25 15:06:07 +0200948static int fuse_read_interrupt(struct fuse_conn *fc, struct fuse_copy_state *cs,
949 size_t nbytes, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200950__releases(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700951{
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700952 struct fuse_in_header ih;
953 struct fuse_interrupt_in arg;
954 unsigned reqsize = sizeof(ih) + sizeof(arg);
955 int err;
956
957 list_del_init(&req->intr_entry);
958 req->intr_unique = fuse_get_unique(fc);
959 memset(&ih, 0, sizeof(ih));
960 memset(&arg, 0, sizeof(arg));
961 ih.len = reqsize;
962 ih.opcode = FUSE_INTERRUPT;
963 ih.unique = req->intr_unique;
964 arg.unique = req->in.h.unique;
965
966 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +0200967 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700968 return -EINVAL;
969
Miklos Szeredic3021622010-05-25 15:06:07 +0200970 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700971 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +0200972 err = fuse_copy_one(cs, &arg, sizeof(arg));
973 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700974
975 return err ? err : reqsize;
976}
977
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100978static struct fuse_forget_link *dequeue_forget(struct fuse_conn *fc,
979 unsigned max,
980 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100981{
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100982 struct fuse_forget_link *head = fc->forget_list_head.next;
983 struct fuse_forget_link **newhead = &head;
984 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100985
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100986 for (count = 0; *newhead != NULL && count < max; count++)
987 newhead = &(*newhead)->next;
988
989 fc->forget_list_head.next = *newhead;
990 *newhead = NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100991 if (fc->forget_list_head.next == NULL)
992 fc->forget_list_tail = &fc->forget_list_head;
993
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100994 if (countp != NULL)
995 *countp = count;
996
997 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100998}
999
1000static int fuse_read_single_forget(struct fuse_conn *fc,
1001 struct fuse_copy_state *cs,
1002 size_t nbytes)
1003__releases(fc->lock)
1004{
1005 int err;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001006 struct fuse_forget_link *forget = dequeue_forget(fc, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001007 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001008 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001009 };
1010 struct fuse_in_header ih = {
1011 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001012 .nodeid = forget->forget_one.nodeid,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001013 .unique = fuse_get_unique(fc),
1014 .len = sizeof(ih) + sizeof(arg),
1015 };
1016
1017 spin_unlock(&fc->lock);
1018 kfree(forget);
1019 if (nbytes < ih.len)
1020 return -EINVAL;
1021
1022 err = fuse_copy_one(cs, &ih, sizeof(ih));
1023 if (!err)
1024 err = fuse_copy_one(cs, &arg, sizeof(arg));
1025 fuse_copy_finish(cs);
1026
1027 if (err)
1028 return err;
1029
1030 return ih.len;
1031}
1032
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001033static int fuse_read_batch_forget(struct fuse_conn *fc,
1034 struct fuse_copy_state *cs, size_t nbytes)
1035__releases(fc->lock)
1036{
1037 int err;
1038 unsigned max_forgets;
1039 unsigned count;
1040 struct fuse_forget_link *head;
1041 struct fuse_batch_forget_in arg = { .count = 0 };
1042 struct fuse_in_header ih = {
1043 .opcode = FUSE_BATCH_FORGET,
1044 .unique = fuse_get_unique(fc),
1045 .len = sizeof(ih) + sizeof(arg),
1046 };
1047
1048 if (nbytes < ih.len) {
1049 spin_unlock(&fc->lock);
1050 return -EINVAL;
1051 }
1052
1053 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
1054 head = dequeue_forget(fc, max_forgets, &count);
1055 spin_unlock(&fc->lock);
1056
1057 arg.count = count;
1058 ih.len += count * sizeof(struct fuse_forget_one);
1059 err = fuse_copy_one(cs, &ih, sizeof(ih));
1060 if (!err)
1061 err = fuse_copy_one(cs, &arg, sizeof(arg));
1062
1063 while (head) {
1064 struct fuse_forget_link *forget = head;
1065
1066 if (!err) {
1067 err = fuse_copy_one(cs, &forget->forget_one,
1068 sizeof(forget->forget_one));
1069 }
1070 head = forget->next;
1071 kfree(forget);
1072 }
1073
1074 fuse_copy_finish(cs);
1075
1076 if (err)
1077 return err;
1078
1079 return ih.len;
1080}
1081
1082static int fuse_read_forget(struct fuse_conn *fc, struct fuse_copy_state *cs,
1083 size_t nbytes)
1084__releases(fc->lock)
1085{
1086 if (fc->minor < 16 || fc->forget_list_head.next->next == NULL)
1087 return fuse_read_single_forget(fc, cs, nbytes);
1088 else
1089 return fuse_read_batch_forget(fc, cs, nbytes);
1090}
1091
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001092/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001093 * Read a single request into the userspace filesystem's buffer. This
1094 * function waits until a request is available, then removes it from
1095 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001096 * no reply is needed (FORGET) or request has been aborted or there
1097 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001098 * request_end(). Otherwise add it to the processing list, and set
1099 * the 'sent' flag.
1100 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001101static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1102 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001103{
1104 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001105 struct fuse_req *req;
1106 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001107 unsigned reqsize;
1108
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001109 restart:
Miklos Szeredid7133112006-04-10 22:54:55 -07001110 spin_lock(&fc->lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001111 err = -EAGAIN;
1112 if ((file->f_flags & O_NONBLOCK) && fc->connected &&
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001113 !request_pending(fc))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001114 goto err_unlock;
1115
Miklos Szeredi334f4852005-09-09 13:10:27 -07001116 request_wait(fc);
1117 err = -ENODEV;
Miklos Szeredi9ba7cbb2006-01-16 22:14:34 -08001118 if (!fc->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001119 goto err_unlock;
1120 err = -ERESTARTSYS;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001121 if (!request_pending(fc))
Miklos Szeredi334f4852005-09-09 13:10:27 -07001122 goto err_unlock;
1123
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001124 if (!list_empty(&fc->interrupts)) {
1125 req = list_entry(fc->interrupts.next, struct fuse_req,
1126 intr_entry);
Miklos Szeredic3021622010-05-25 15:06:07 +02001127 return fuse_read_interrupt(fc, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001128 }
1129
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001130 if (forget_pending(fc)) {
1131 if (list_empty(&fc->pending) || fc->forget_batch-- > 0)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001132 return fuse_read_forget(fc, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001133
1134 if (fc->forget_batch <= -8)
1135 fc->forget_batch = 16;
1136 }
1137
Miklos Szeredi334f4852005-09-09 13:10:27 -07001138 req = list_entry(fc->pending.next, struct fuse_req, list);
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001139 req->state = FUSE_REQ_READING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001140 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001141
1142 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001143 reqsize = in->h.len;
1144 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001145 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001146 req->out.h.error = -EIO;
1147 /* SETXATTR is special, since it may contain too large data */
1148 if (in->h.opcode == FUSE_SETXATTR)
1149 req->out.h.error = -E2BIG;
1150 request_end(fc, req);
1151 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001152 }
Miklos Szeredid7133112006-04-10 22:54:55 -07001153 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001154 cs->req = req;
1155 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001156 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001157 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001158 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001159 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001160 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001161 req->locked = 0;
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001162 if (req->aborted) {
1163 request_end(fc, req);
1164 return -ENODEV;
1165 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001166 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001167 req->out.h.error = -EIO;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001168 request_end(fc, req);
1169 return err;
1170 }
1171 if (!req->isreply)
1172 request_end(fc, req);
1173 else {
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001174 req->state = FUSE_REQ_SENT;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001175 list_move_tail(&req->list, &fc->processing);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001176 if (req->interrupted)
1177 queue_interrupt(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001178 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001179 }
1180 return reqsize;
1181
1182 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001183 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001184 return err;
1185}
1186
Miklos Szeredic3021622010-05-25 15:06:07 +02001187static ssize_t fuse_dev_read(struct kiocb *iocb, const struct iovec *iov,
1188 unsigned long nr_segs, loff_t pos)
1189{
1190 struct fuse_copy_state cs;
1191 struct file *file = iocb->ki_filp;
1192 struct fuse_conn *fc = fuse_get_conn(file);
1193 if (!fc)
1194 return -EPERM;
1195
1196 fuse_copy_init(&cs, fc, 1, iov, nr_segs);
1197
1198 return fuse_dev_do_read(fc, file, &cs, iov_length(iov, nr_segs));
1199}
1200
1201static int fuse_dev_pipe_buf_steal(struct pipe_inode_info *pipe,
1202 struct pipe_buffer *buf)
1203{
1204 return 1;
1205}
1206
1207static const struct pipe_buf_operations fuse_dev_pipe_buf_ops = {
1208 .can_merge = 0,
1209 .map = generic_pipe_buf_map,
1210 .unmap = generic_pipe_buf_unmap,
1211 .confirm = generic_pipe_buf_confirm,
1212 .release = generic_pipe_buf_release,
1213 .steal = fuse_dev_pipe_buf_steal,
1214 .get = generic_pipe_buf_get,
1215};
1216
1217static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1218 struct pipe_inode_info *pipe,
1219 size_t len, unsigned int flags)
1220{
1221 int ret;
1222 int page_nr = 0;
1223 int do_wakeup = 0;
1224 struct pipe_buffer *bufs;
1225 struct fuse_copy_state cs;
1226 struct fuse_conn *fc = fuse_get_conn(in);
1227 if (!fc)
1228 return -EPERM;
1229
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001230 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001231 if (!bufs)
1232 return -ENOMEM;
1233
1234 fuse_copy_init(&cs, fc, 1, NULL, 0);
1235 cs.pipebufs = bufs;
1236 cs.pipe = pipe;
1237 ret = fuse_dev_do_read(fc, in, &cs, len);
1238 if (ret < 0)
1239 goto out;
1240
1241 ret = 0;
1242 pipe_lock(pipe);
1243
1244 if (!pipe->readers) {
1245 send_sig(SIGPIPE, current, 0);
1246 if (!ret)
1247 ret = -EPIPE;
1248 goto out_unlock;
1249 }
1250
1251 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1252 ret = -EIO;
1253 goto out_unlock;
1254 }
1255
1256 while (page_nr < cs.nr_segs) {
1257 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1258 struct pipe_buffer *buf = pipe->bufs + newbuf;
1259
1260 buf->page = bufs[page_nr].page;
1261 buf->offset = bufs[page_nr].offset;
1262 buf->len = bufs[page_nr].len;
1263 buf->ops = &fuse_dev_pipe_buf_ops;
1264
1265 pipe->nrbufs++;
1266 page_nr++;
1267 ret += buf->len;
1268
1269 if (pipe->inode)
1270 do_wakeup = 1;
1271 }
1272
1273out_unlock:
1274 pipe_unlock(pipe);
1275
1276 if (do_wakeup) {
1277 smp_mb();
1278 if (waitqueue_active(&pipe->wait))
1279 wake_up_interruptible(&pipe->wait);
1280 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1281 }
1282
1283out:
1284 for (; page_nr < cs.nr_segs; page_nr++)
1285 page_cache_release(bufs[page_nr].page);
1286
1287 kfree(bufs);
1288 return ret;
1289}
1290
Tejun Heo95668a62008-11-26 12:03:55 +01001291static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1292 struct fuse_copy_state *cs)
1293{
1294 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001295 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001296
1297 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001298 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001299
1300 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1301 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001302 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001303
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001304 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001305 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001306
1307err:
1308 fuse_copy_finish(cs);
1309 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001310}
1311
John Muir3b463ae2009-05-31 11:13:57 -04001312static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1313 struct fuse_copy_state *cs)
1314{
1315 struct fuse_notify_inval_inode_out outarg;
1316 int err = -EINVAL;
1317
1318 if (size != sizeof(outarg))
1319 goto err;
1320
1321 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1322 if (err)
1323 goto err;
1324 fuse_copy_finish(cs);
1325
1326 down_read(&fc->killsb);
1327 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001328 if (fc->sb) {
1329 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1330 outarg.off, outarg.len);
1331 }
John Muir3b463ae2009-05-31 11:13:57 -04001332 up_read(&fc->killsb);
1333 return err;
1334
1335err:
1336 fuse_copy_finish(cs);
1337 return err;
1338}
1339
1340static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1341 struct fuse_copy_state *cs)
1342{
1343 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001344 int err = -ENOMEM;
1345 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001346 struct qstr name;
1347
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001348 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1349 if (!buf)
1350 goto err;
1351
1352 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001353 if (size < sizeof(outarg))
1354 goto err;
1355
1356 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1357 if (err)
1358 goto err;
1359
1360 err = -ENAMETOOLONG;
1361 if (outarg.namelen > FUSE_NAME_MAX)
1362 goto err;
1363
Miklos Szeredic2183d12011-08-24 10:20:17 +02001364 err = -EINVAL;
1365 if (size != sizeof(outarg) + outarg.namelen + 1)
1366 goto err;
1367
John Muir3b463ae2009-05-31 11:13:57 -04001368 name.name = buf;
1369 name.len = outarg.namelen;
1370 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1371 if (err)
1372 goto err;
1373 fuse_copy_finish(cs);
1374 buf[outarg.namelen] = 0;
1375 name.hash = full_name_hash(name.name, name.len);
1376
1377 down_read(&fc->killsb);
1378 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001379 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001380 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1381 up_read(&fc->killsb);
1382 kfree(buf);
1383 return err;
1384
1385err:
1386 kfree(buf);
1387 fuse_copy_finish(cs);
1388 return err;
1389}
1390
1391static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1392 struct fuse_copy_state *cs)
1393{
1394 struct fuse_notify_delete_out outarg;
1395 int err = -ENOMEM;
1396 char *buf;
1397 struct qstr name;
1398
1399 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1400 if (!buf)
1401 goto err;
1402
1403 err = -EINVAL;
1404 if (size < sizeof(outarg))
1405 goto err;
1406
1407 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1408 if (err)
1409 goto err;
1410
1411 err = -ENAMETOOLONG;
1412 if (outarg.namelen > FUSE_NAME_MAX)
1413 goto err;
1414
1415 err = -EINVAL;
1416 if (size != sizeof(outarg) + outarg.namelen + 1)
1417 goto err;
1418
1419 name.name = buf;
1420 name.len = outarg.namelen;
1421 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1422 if (err)
1423 goto err;
1424 fuse_copy_finish(cs);
1425 buf[outarg.namelen] = 0;
1426 name.hash = full_name_hash(name.name, name.len);
1427
1428 down_read(&fc->killsb);
1429 err = -ENOENT;
1430 if (fc->sb)
1431 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1432 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001433 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001434 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001435 return err;
1436
1437err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001438 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001439 fuse_copy_finish(cs);
1440 return err;
1441}
1442
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001443static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1444 struct fuse_copy_state *cs)
1445{
1446 struct fuse_notify_store_out outarg;
1447 struct inode *inode;
1448 struct address_space *mapping;
1449 u64 nodeid;
1450 int err;
1451 pgoff_t index;
1452 unsigned int offset;
1453 unsigned int num;
1454 loff_t file_size;
1455 loff_t end;
1456
1457 err = -EINVAL;
1458 if (size < sizeof(outarg))
1459 goto out_finish;
1460
1461 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1462 if (err)
1463 goto out_finish;
1464
1465 err = -EINVAL;
1466 if (size - sizeof(outarg) != outarg.size)
1467 goto out_finish;
1468
1469 nodeid = outarg.nodeid;
1470
1471 down_read(&fc->killsb);
1472
1473 err = -ENOENT;
1474 if (!fc->sb)
1475 goto out_up_killsb;
1476
1477 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1478 if (!inode)
1479 goto out_up_killsb;
1480
1481 mapping = inode->i_mapping;
1482 index = outarg.offset >> PAGE_CACHE_SHIFT;
1483 offset = outarg.offset & ~PAGE_CACHE_MASK;
1484 file_size = i_size_read(inode);
1485 end = outarg.offset + outarg.size;
1486 if (end > file_size) {
1487 file_size = end;
1488 fuse_write_update_size(inode, file_size);
1489 }
1490
1491 num = outarg.size;
1492 while (num) {
1493 struct page *page;
1494 unsigned int this_num;
1495
1496 err = -ENOMEM;
1497 page = find_or_create_page(mapping, index,
1498 mapping_gfp_mask(mapping));
1499 if (!page)
1500 goto out_iput;
1501
1502 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1503 err = fuse_copy_page(cs, &page, offset, this_num, 0);
1504 if (!err && offset == 0 && (num != 0 || file_size == end))
1505 SetPageUptodate(page);
1506 unlock_page(page);
1507 page_cache_release(page);
1508
1509 if (err)
1510 goto out_iput;
1511
1512 num -= this_num;
1513 offset = 0;
1514 index++;
1515 }
1516
1517 err = 0;
1518
1519out_iput:
1520 iput(inode);
1521out_up_killsb:
1522 up_read(&fc->killsb);
1523out_finish:
1524 fuse_copy_finish(cs);
1525 return err;
1526}
1527
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001528static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1529{
Miklos Szeredi0be85572010-10-27 15:34:46 -07001530 release_pages(req->pages, req->num_pages, 0);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001531}
1532
1533static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1534 struct fuse_notify_retrieve_out *outarg)
1535{
1536 int err;
1537 struct address_space *mapping = inode->i_mapping;
1538 struct fuse_req *req;
1539 pgoff_t index;
1540 loff_t file_size;
1541 unsigned int num;
1542 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001543 size_t total_len = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001544
1545 req = fuse_get_req(fc);
1546 if (IS_ERR(req))
1547 return PTR_ERR(req);
1548
1549 offset = outarg->offset & ~PAGE_CACHE_MASK;
1550
1551 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1552 req->in.h.nodeid = outarg->nodeid;
1553 req->in.numargs = 2;
1554 req->in.argpages = 1;
1555 req->page_offset = offset;
1556 req->end = fuse_retrieve_end;
1557
1558 index = outarg->offset >> PAGE_CACHE_SHIFT;
1559 file_size = i_size_read(inode);
1560 num = outarg->size;
1561 if (outarg->offset > file_size)
1562 num = 0;
1563 else if (outarg->offset + num > file_size)
1564 num = file_size - outarg->offset;
1565
Miklos Szeredi48706d02011-12-13 10:36:59 +01001566 while (num && req->num_pages < FUSE_MAX_PAGES_PER_REQ) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001567 struct page *page;
1568 unsigned int this_num;
1569
1570 page = find_get_page(mapping, index);
1571 if (!page)
1572 break;
1573
1574 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1575 req->pages[req->num_pages] = page;
1576 req->num_pages++;
1577
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001578 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001579 num -= this_num;
1580 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001581 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001582 }
1583 req->misc.retrieve_in.offset = outarg->offset;
1584 req->misc.retrieve_in.size = total_len;
1585 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1586 req->in.args[0].value = &req->misc.retrieve_in;
1587 req->in.args[1].size = total_len;
1588
1589 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1590 if (err)
1591 fuse_retrieve_end(fc, req);
1592
1593 return err;
1594}
1595
1596static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1597 struct fuse_copy_state *cs)
1598{
1599 struct fuse_notify_retrieve_out outarg;
1600 struct inode *inode;
1601 int err;
1602
1603 err = -EINVAL;
1604 if (size != sizeof(outarg))
1605 goto copy_finish;
1606
1607 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1608 if (err)
1609 goto copy_finish;
1610
1611 fuse_copy_finish(cs);
1612
1613 down_read(&fc->killsb);
1614 err = -ENOENT;
1615 if (fc->sb) {
1616 u64 nodeid = outarg.nodeid;
1617
1618 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1619 if (inode) {
1620 err = fuse_retrieve(fc, inode, &outarg);
1621 iput(inode);
1622 }
1623 }
1624 up_read(&fc->killsb);
1625
1626 return err;
1627
1628copy_finish:
1629 fuse_copy_finish(cs);
1630 return err;
1631}
1632
Tejun Heo85993962008-11-26 12:03:55 +01001633static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1634 unsigned int size, struct fuse_copy_state *cs)
1635{
1636 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001637 case FUSE_NOTIFY_POLL:
1638 return fuse_notify_poll(fc, size, cs);
1639
John Muir3b463ae2009-05-31 11:13:57 -04001640 case FUSE_NOTIFY_INVAL_INODE:
1641 return fuse_notify_inval_inode(fc, size, cs);
1642
1643 case FUSE_NOTIFY_INVAL_ENTRY:
1644 return fuse_notify_inval_entry(fc, size, cs);
1645
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001646 case FUSE_NOTIFY_STORE:
1647 return fuse_notify_store(fc, size, cs);
1648
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001649 case FUSE_NOTIFY_RETRIEVE:
1650 return fuse_notify_retrieve(fc, size, cs);
1651
John Muir451d0f52011-12-06 21:50:06 +01001652 case FUSE_NOTIFY_DELETE:
1653 return fuse_notify_delete(fc, size, cs);
1654
Tejun Heo85993962008-11-26 12:03:55 +01001655 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001656 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001657 return -EINVAL;
1658 }
1659}
1660
Miklos Szeredi334f4852005-09-09 13:10:27 -07001661/* Look up request on processing list by unique ID */
1662static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
1663{
1664 struct list_head *entry;
1665
1666 list_for_each(entry, &fc->processing) {
1667 struct fuse_req *req;
1668 req = list_entry(entry, struct fuse_req, list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001669 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001670 return req;
1671 }
1672 return NULL;
1673}
1674
1675static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1676 unsigned nbytes)
1677{
1678 unsigned reqsize = sizeof(struct fuse_out_header);
1679
1680 if (out->h.error)
1681 return nbytes != reqsize ? -EINVAL : 0;
1682
1683 reqsize += len_args(out->numargs, out->args);
1684
1685 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1686 return -EINVAL;
1687 else if (reqsize > nbytes) {
1688 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1689 unsigned diffsize = reqsize - nbytes;
1690 if (diffsize > lastarg->size)
1691 return -EINVAL;
1692 lastarg->size -= diffsize;
1693 }
1694 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1695 out->page_zeroing);
1696}
1697
1698/*
1699 * Write a single reply to a request. First the header is copied from
1700 * the write buffer. The request is then searched on the processing
1701 * list by the unique ID found in the header. If found, then remove
1702 * it from the list and copy the rest of the buffer to the request.
1703 * The request is finished by calling request_end()
1704 */
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001705static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1706 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001707{
1708 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001709 struct fuse_req *req;
1710 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001711
Miklos Szeredi334f4852005-09-09 13:10:27 -07001712 if (nbytes < sizeof(struct fuse_out_header))
1713 return -EINVAL;
1714
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001715 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001716 if (err)
1717 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001718
Miklos Szeredi334f4852005-09-09 13:10:27 -07001719 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001720 if (oh.len != nbytes)
1721 goto err_finish;
1722
1723 /*
1724 * Zero oh.unique indicates unsolicited notification message
1725 * and error contains notification code.
1726 */
1727 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001728 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001729 return err ? err : nbytes;
1730 }
1731
1732 err = -EINVAL;
1733 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001734 goto err_finish;
1735
Miklos Szeredid7133112006-04-10 22:54:55 -07001736 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001737 err = -ENOENT;
1738 if (!fc->connected)
1739 goto err_unlock;
1740
Miklos Szeredi334f4852005-09-09 13:10:27 -07001741 req = request_find(fc, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001742 if (!req)
1743 goto err_unlock;
1744
Miklos Szeredif9a28422006-06-25 05:48:53 -07001745 if (req->aborted) {
Miklos Szeredid7133112006-04-10 22:54:55 -07001746 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001747 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001748 spin_lock(&fc->lock);
Miklos Szeredi222f1d62006-01-16 22:14:25 -08001749 request_end(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001750 return -ENOENT;
1751 }
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001752 /* Is it an interrupt reply? */
1753 if (req->intr_unique == oh.unique) {
1754 err = -EINVAL;
1755 if (nbytes != sizeof(struct fuse_out_header))
1756 goto err_unlock;
1757
1758 if (oh.error == -ENOSYS)
1759 fc->no_interrupt = 1;
1760 else if (oh.error == -EAGAIN)
1761 queue_interrupt(fc, req);
1762
1763 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001764 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001765 return nbytes;
1766 }
1767
1768 req->state = FUSE_REQ_WRITING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001769 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001770 req->out.h = oh;
1771 req->locked = 1;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001772 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001773 if (!req->out.page_replace)
1774 cs->move_pages = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -07001775 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001776
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001777 err = copy_out_args(cs, &req->out, nbytes);
1778 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001779
Miklos Szeredid7133112006-04-10 22:54:55 -07001780 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001781 req->locked = 0;
1782 if (!err) {
Miklos Szeredif9a28422006-06-25 05:48:53 -07001783 if (req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001784 err = -ENOENT;
Miklos Szeredif9a28422006-06-25 05:48:53 -07001785 } else if (!req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001786 req->out.h.error = -EIO;
1787 request_end(fc, req);
1788
1789 return err ? err : nbytes;
1790
1791 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001792 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001793 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001794 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001795 return err;
1796}
1797
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001798static ssize_t fuse_dev_write(struct kiocb *iocb, const struct iovec *iov,
1799 unsigned long nr_segs, loff_t pos)
1800{
1801 struct fuse_copy_state cs;
1802 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1803 if (!fc)
1804 return -EPERM;
1805
Miklos Szeredic3021622010-05-25 15:06:07 +02001806 fuse_copy_init(&cs, fc, 0, iov, nr_segs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001807
1808 return fuse_dev_do_write(fc, &cs, iov_length(iov, nr_segs));
1809}
1810
1811static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1812 struct file *out, loff_t *ppos,
1813 size_t len, unsigned int flags)
1814{
1815 unsigned nbuf;
1816 unsigned idx;
1817 struct pipe_buffer *bufs;
1818 struct fuse_copy_state cs;
1819 struct fuse_conn *fc;
1820 size_t rem;
1821 ssize_t ret;
1822
1823 fc = fuse_get_conn(out);
1824 if (!fc)
1825 return -EPERM;
1826
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001827 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001828 if (!bufs)
1829 return -ENOMEM;
1830
1831 pipe_lock(pipe);
1832 nbuf = 0;
1833 rem = 0;
1834 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
1835 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
1836
1837 ret = -EINVAL;
1838 if (rem < len) {
1839 pipe_unlock(pipe);
1840 goto out;
1841 }
1842
1843 rem = len;
1844 while (rem) {
1845 struct pipe_buffer *ibuf;
1846 struct pipe_buffer *obuf;
1847
1848 BUG_ON(nbuf >= pipe->buffers);
1849 BUG_ON(!pipe->nrbufs);
1850 ibuf = &pipe->bufs[pipe->curbuf];
1851 obuf = &bufs[nbuf];
1852
1853 if (rem >= ibuf->len) {
1854 *obuf = *ibuf;
1855 ibuf->ops = NULL;
1856 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
1857 pipe->nrbufs--;
1858 } else {
1859 ibuf->ops->get(pipe, ibuf);
1860 *obuf = *ibuf;
1861 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1862 obuf->len = rem;
1863 ibuf->offset += obuf->len;
1864 ibuf->len -= obuf->len;
1865 }
1866 nbuf++;
1867 rem -= obuf->len;
1868 }
1869 pipe_unlock(pipe);
1870
Miklos Szeredic3021622010-05-25 15:06:07 +02001871 fuse_copy_init(&cs, fc, 0, NULL, nbuf);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001872 cs.pipebufs = bufs;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001873 cs.pipe = pipe;
1874
Miklos Szeredice534fb2010-05-25 15:06:07 +02001875 if (flags & SPLICE_F_MOVE)
1876 cs.move_pages = 1;
1877
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001878 ret = fuse_dev_do_write(fc, &cs, len);
1879
1880 for (idx = 0; idx < nbuf; idx++) {
1881 struct pipe_buffer *buf = &bufs[idx];
1882 buf->ops->release(pipe, buf);
1883 }
1884out:
1885 kfree(bufs);
1886 return ret;
1887}
1888
Miklos Szeredi334f4852005-09-09 13:10:27 -07001889static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
1890{
Miklos Szeredi334f4852005-09-09 13:10:27 -07001891 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07001892 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001893 if (!fc)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07001894 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001895
1896 poll_wait(file, &fc->waitq, wait);
1897
Miklos Szeredid7133112006-04-10 22:54:55 -07001898 spin_lock(&fc->lock);
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07001899 if (!fc->connected)
1900 mask = POLLERR;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001901 else if (request_pending(fc))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07001902 mask |= POLLIN | POLLRDNORM;
Miklos Szeredid7133112006-04-10 22:54:55 -07001903 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001904
1905 return mask;
1906}
1907
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001908/*
1909 * Abort all requests on the given list (pending or processing)
1910 *
Miklos Szeredid7133112006-04-10 22:54:55 -07001911 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001912 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07001913static void end_requests(struct fuse_conn *fc, struct list_head *head)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001914__releases(fc->lock)
1915__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001916{
1917 while (!list_empty(head)) {
1918 struct fuse_req *req;
1919 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001920 req->out.h.error = -ECONNABORTED;
1921 request_end(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001922 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001923 }
1924}
1925
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001926/*
1927 * Abort requests under I/O
1928 *
Miklos Szeredif9a28422006-06-25 05:48:53 -07001929 * The requests are set to aborted and finished, and the request
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001930 * waiter is woken up. This will make request_wait_answer() wait
1931 * until the request is unlocked and then return.
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001932 *
1933 * If the request is asynchronous, then the end function needs to be
1934 * called after waiting for the request to be unlocked (if it was
1935 * locked).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001936 */
1937static void end_io_requests(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001938__releases(fc->lock)
1939__acquires(fc->lock)
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001940{
1941 while (!list_empty(&fc->io)) {
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001942 struct fuse_req *req =
1943 list_entry(fc->io.next, struct fuse_req, list);
1944 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
1945
Miklos Szeredif9a28422006-06-25 05:48:53 -07001946 req->aborted = 1;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001947 req->out.h.error = -ECONNABORTED;
1948 req->state = FUSE_REQ_FINISHED;
1949 list_del_init(&req->list);
1950 wake_up(&req->waitq);
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001951 if (end) {
1952 req->end = NULL;
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001953 __fuse_get_request(req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001954 spin_unlock(&fc->lock);
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001955 wait_event(req->waitq, !req->locked);
1956 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01001957 fuse_put_request(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001958 spin_lock(&fc->lock);
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001959 }
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001960 }
1961}
1962
Miklos Szeredi595afaf2010-09-07 13:42:41 +02001963static void end_queued_requests(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001964__releases(fc->lock)
1965__acquires(fc->lock)
Miklos Szeredi595afaf2010-09-07 13:42:41 +02001966{
1967 fc->max_background = UINT_MAX;
1968 flush_bg_queue(fc);
1969 end_requests(fc, &fc->pending);
1970 end_requests(fc, &fc->processing);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001971 while (forget_pending(fc))
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001972 kfree(dequeue_forget(fc, 1, NULL));
Miklos Szeredi595afaf2010-09-07 13:42:41 +02001973}
1974
Bryan Green357ccf22011-03-01 16:43:52 -08001975static void end_polls(struct fuse_conn *fc)
1976{
1977 struct rb_node *p;
1978
1979 p = rb_first(&fc->polled_files);
1980
1981 while (p) {
1982 struct fuse_file *ff;
1983 ff = rb_entry(p, struct fuse_file, polled_node);
1984 wake_up_interruptible_all(&ff->poll_wait);
1985
1986 p = rb_next(p);
1987 }
1988}
1989
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001990/*
1991 * Abort all requests.
1992 *
1993 * Emergency exit in case of a malicious or accidental deadlock, or
1994 * just a hung filesystem.
1995 *
1996 * The same effect is usually achievable through killing the
1997 * filesystem daemon and all users of the filesystem. The exception
1998 * is the combination of an asynchronous request and the tricky
1999 * deadlock (see Documentation/filesystems/fuse.txt).
2000 *
2001 * During the aborting, progression of requests from the pending and
2002 * processing lists onto the io list, and progression of new requests
2003 * onto the pending list is prevented by req->connected being false.
2004 *
2005 * Progression of requests under I/O to the processing list is
Miklos Szeredif9a28422006-06-25 05:48:53 -07002006 * prevented by the req->aborted flag being true for these requests.
2007 * For this reason requests on the io list must be aborted first.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002008 */
2009void fuse_abort_conn(struct fuse_conn *fc)
2010{
Miklos Szeredid7133112006-04-10 22:54:55 -07002011 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002012 if (fc->connected) {
2013 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002014 fc->blocked = 0;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002015 end_io_requests(fc);
Miklos Szeredi595afaf2010-09-07 13:42:41 +02002016 end_queued_requests(fc);
Bryan Green357ccf22011-03-01 16:43:52 -08002017 end_polls(fc);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002018 wake_up_all(&fc->waitq);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002019 wake_up_all(&fc->blocked_waitq);
Jeff Dike385a17b2006-04-10 22:54:52 -07002020 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002021 }
Miklos Szeredid7133112006-04-10 22:54:55 -07002022 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002023}
Tejun Heo08cbf542009-04-14 10:54:53 +09002024EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002025
Tejun Heo08cbf542009-04-14 10:54:53 +09002026int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002027{
Miklos Szeredi0720b312006-04-10 22:54:55 -07002028 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002029 if (fc) {
Miklos Szeredid7133112006-04-10 22:54:55 -07002030 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -07002031 fc->connected = 0;
Miklos Szeredi595afaf2010-09-07 13:42:41 +02002032 fc->blocked = 0;
2033 end_queued_requests(fc);
Bryan Green357ccf22011-03-01 16:43:52 -08002034 end_polls(fc);
Miklos Szeredi595afaf2010-09-07 13:42:41 +02002035 wake_up_all(&fc->blocked_waitq);
Miklos Szeredid7133112006-04-10 22:54:55 -07002036 spin_unlock(&fc->lock);
Miklos Szeredibafa9652006-06-25 05:48:51 -07002037 fuse_conn_put(fc);
Jeff Dike385a17b2006-04-10 22:54:52 -07002038 }
Miklos Szeredif543f252006-01-16 22:14:35 -08002039
Miklos Szeredi334f4852005-09-09 13:10:27 -07002040 return 0;
2041}
Tejun Heo08cbf542009-04-14 10:54:53 +09002042EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002043
Jeff Dike385a17b2006-04-10 22:54:52 -07002044static int fuse_dev_fasync(int fd, struct file *file, int on)
2045{
2046 struct fuse_conn *fc = fuse_get_conn(file);
2047 if (!fc)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002048 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002049
2050 /* No locking - fasync_helper does its own locking */
2051 return fasync_helper(fd, file, on, &fc->fasync);
2052}
2053
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002054const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002055 .owner = THIS_MODULE,
2056 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002057 .read = do_sync_read,
2058 .aio_read = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002059 .splice_read = fuse_dev_splice_read,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002060 .write = do_sync_write,
2061 .aio_write = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002062 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002063 .poll = fuse_dev_poll,
2064 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002065 .fasync = fuse_dev_fasync,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002066};
Tejun Heo08cbf542009-04-14 10:54:53 +09002067EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002068
2069static struct miscdevice fuse_miscdevice = {
2070 .minor = FUSE_MINOR,
2071 .name = "fuse",
2072 .fops = &fuse_dev_operations,
2073};
2074
2075int __init fuse_dev_init(void)
2076{
2077 int err = -ENOMEM;
2078 fuse_req_cachep = kmem_cache_create("fuse_request",
2079 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002080 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002081 if (!fuse_req_cachep)
2082 goto out;
2083
2084 err = misc_register(&fuse_miscdevice);
2085 if (err)
2086 goto out_cache_clean;
2087
2088 return 0;
2089
2090 out_cache_clean:
2091 kmem_cache_destroy(fuse_req_cachep);
2092 out:
2093 return err;
2094}
2095
2096void fuse_dev_cleanup(void)
2097{
2098 misc_deregister(&fuse_miscdevice);
2099 kmem_cache_destroy(fuse_req_cachep);
2100}