blob: 99e13346a7522f055860863c897980e930efa149 [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 Poynorb44e5922011-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);
262 fc->forget_list_tail->next = forget;
263 fc->forget_list_tail = forget;
264 wake_up(&fc->waitq);
265 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
266 spin_unlock(&fc->lock);
267}
268
Miklos Szeredid12def12008-02-06 01:38:39 -0800269static void flush_bg_queue(struct fuse_conn *fc)
270{
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700271 while (fc->active_background < fc->max_background &&
Miklos Szeredid12def12008-02-06 01:38:39 -0800272 !list_empty(&fc->bg_queue)) {
273 struct fuse_req *req;
274
275 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
276 list_del(&req->list);
277 fc->active_background++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200278 req->in.h.unique = fuse_get_unique(fc);
Miklos Szeredid12def12008-02-06 01:38:39 -0800279 queue_request(fc, req);
280 }
281}
282
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200283/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700284 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700285 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800286 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700287 * was closed. The requester thread is woken up (if still waiting),
288 * the 'end' callback is called if given, else the reference to the
289 * request is released
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800290 *
Miklos Szeredid7133112006-04-10 22:54:55 -0700291 * Called with fc->lock, unlocks it
Miklos Szeredi334f4852005-09-09 13:10:27 -0700292 */
293static void request_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200294__releases(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700295{
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700296 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
297 req->end = NULL;
Miklos Szeredid77a1d52006-01-16 22:14:31 -0800298 list_del(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700299 list_del(&req->intr_entry);
Miklos Szeredi83cfd492006-01-16 22:14:31 -0800300 req->state = FUSE_REQ_FINISHED;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700301 if (req->background) {
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700302 if (fc->num_background == fc->max_background) {
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700303 fc->blocked = 0;
304 wake_up_all(&fc->blocked_waitq);
305 }
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700306 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900307 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200308 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
309 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700310 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700311 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800312 fc->active_background--;
313 flush_bg_queue(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700314 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700315 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700316 wake_up(&req->waitq);
317 if (end)
318 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100319 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700320}
321
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700322static void wait_answer_interruptible(struct fuse_conn *fc,
323 struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200324__releases(fc->lock)
325__acquires(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700326{
327 if (signal_pending(current))
328 return;
329
330 spin_unlock(&fc->lock);
331 wait_event_interruptible(req->waitq, req->state == FUSE_REQ_FINISHED);
332 spin_lock(&fc->lock);
333}
334
335static void queue_interrupt(struct fuse_conn *fc, struct fuse_req *req)
336{
337 list_add_tail(&req->intr_entry, &fc->interrupts);
338 wake_up(&fc->waitq);
339 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
340}
341
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700342static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200343__releases(fc->lock)
344__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700345{
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700346 if (!fc->no_interrupt) {
347 /* Any signal may interrupt this */
348 wait_answer_interruptible(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700349
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700350 if (req->aborted)
351 goto aborted;
352 if (req->state == FUSE_REQ_FINISHED)
353 return;
354
355 req->interrupted = 1;
356 if (req->state == FUSE_REQ_SENT)
357 queue_interrupt(fc, req);
358 }
359
Miklos Szeredia131de02007-10-16 23:31:04 -0700360 if (!req->force) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700361 sigset_t oldset;
362
363 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700364 block_sigs(&oldset);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700365 wait_answer_interruptible(fc, req);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700366 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700367
368 if (req->aborted)
369 goto aborted;
370 if (req->state == FUSE_REQ_FINISHED)
371 return;
372
373 /* Request is not yet in userspace, bail out */
374 if (req->state == FUSE_REQ_PENDING) {
375 list_del(&req->list);
376 __fuse_put_request(req);
377 req->out.h.error = -EINTR;
378 return;
379 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700380 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700381
Miklos Szeredia131de02007-10-16 23:31:04 -0700382 /*
383 * Either request is already in userspace, or it was forced.
384 * Wait it out.
385 */
386 spin_unlock(&fc->lock);
Todd Poynorb44e5922011-08-24 15:01:30 -0700387
388 while (req->state != FUSE_REQ_FINISHED)
389 wait_event_freezable(req->waitq,
390 req->state == FUSE_REQ_FINISHED);
Miklos Szeredia131de02007-10-16 23:31:04 -0700391 spin_lock(&fc->lock);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700392
Miklos Szeredia131de02007-10-16 23:31:04 -0700393 if (!req->aborted)
394 return;
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700395
396 aborted:
Miklos Szeredia131de02007-10-16 23:31:04 -0700397 BUG_ON(req->state != FUSE_REQ_FINISHED);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700398 if (req->locked) {
399 /* This is uninterruptible sleep, because data is
400 being copied to/from the buffers of req. During
401 locked state, there mustn't be any filesystem
402 operation (e.g. page fault), since that could lead
403 to deadlock */
Miklos Szeredid7133112006-04-10 22:54:55 -0700404 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700405 wait_event(req->waitq, !req->locked);
Miklos Szeredid7133112006-04-10 22:54:55 -0700406 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700407 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700408}
409
Tejun Heob93f8582008-11-26 12:03:55 +0100410void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700411{
412 req->isreply = 1;
Miklos Szeredid7133112006-04-10 22:54:55 -0700413 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700414 if (!fc->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700415 req->out.h.error = -ENOTCONN;
416 else if (fc->conn_error)
417 req->out.h.error = -ECONNREFUSED;
418 else {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200419 req->in.h.unique = fuse_get_unique(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700420 queue_request(fc, req);
421 /* acquire extra reference, since request is still needed
422 after request_end() */
423 __fuse_get_request(req);
424
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700425 request_wait_answer(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700426 }
Miklos Szeredid7133112006-04-10 22:54:55 -0700427 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700428}
Tejun Heo08cbf542009-04-14 10:54:53 +0900429EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700430
Tejun Heob93f8582008-11-26 12:03:55 +0100431static void fuse_request_send_nowait_locked(struct fuse_conn *fc,
432 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800433{
434 req->background = 1;
435 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700436 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800437 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700438 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900439 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200440 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
441 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800442 }
443 list_add_tail(&req->list, &fc->bg_queue);
444 flush_bg_queue(fc);
445}
446
Tejun Heob93f8582008-11-26 12:03:55 +0100447static void fuse_request_send_nowait(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700448{
Miklos Szeredid7133112006-04-10 22:54:55 -0700449 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700450 if (fc->connected) {
Tejun Heob93f8582008-11-26 12:03:55 +0100451 fuse_request_send_nowait_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700452 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700453 } else {
454 req->out.h.error = -ENOTCONN;
455 request_end(fc, req);
456 }
457}
458
Tejun Heob93f8582008-11-26 12:03:55 +0100459void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700460{
461 req->isreply = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100462 fuse_request_send_nowait(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700463}
Tejun Heo08cbf542009-04-14 10:54:53 +0900464EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700465
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200466static int fuse_request_send_notify_reply(struct fuse_conn *fc,
467 struct fuse_req *req, u64 unique)
468{
469 int err = -ENODEV;
470
471 req->isreply = 0;
472 req->in.h.unique = unique;
473 spin_lock(&fc->lock);
474 if (fc->connected) {
475 queue_request(fc, req);
476 err = 0;
477 }
478 spin_unlock(&fc->lock);
479
480 return err;
481}
482
Miklos Szeredi334f4852005-09-09 13:10:27 -0700483/*
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700484 * Called under fc->lock
485 *
486 * fc->connected must have been checked previously
487 */
Tejun Heob93f8582008-11-26 12:03:55 +0100488void fuse_request_send_background_locked(struct fuse_conn *fc,
489 struct fuse_req *req)
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700490{
491 req->isreply = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100492 fuse_request_send_nowait_locked(fc, req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700493}
494
495/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700496 * Lock the request. Up to the next unlock_request() there mustn't be
497 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700498 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700499 */
Miklos Szeredid7133112006-04-10 22:54:55 -0700500static int lock_request(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700501{
502 int err = 0;
503 if (req) {
Miklos Szeredid7133112006-04-10 22:54:55 -0700504 spin_lock(&fc->lock);
Miklos Szeredif9a28422006-06-25 05:48:53 -0700505 if (req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700506 err = -ENOENT;
507 else
508 req->locked = 1;
Miklos Szeredid7133112006-04-10 22:54:55 -0700509 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700510 }
511 return err;
512}
513
514/*
Miklos Szeredif9a28422006-06-25 05:48:53 -0700515 * Unlock request. If it was aborted during being locked, the
Miklos Szeredi334f4852005-09-09 13:10:27 -0700516 * requester thread is currently waiting for it to be unlocked, so
517 * wake it up.
518 */
Miklos Szeredid7133112006-04-10 22:54:55 -0700519static void unlock_request(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700520{
521 if (req) {
Miklos Szeredid7133112006-04-10 22:54:55 -0700522 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700523 req->locked = 0;
Miklos Szeredif9a28422006-06-25 05:48:53 -0700524 if (req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700525 wake_up(&req->waitq);
Miklos Szeredid7133112006-04-10 22:54:55 -0700526 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700527 }
528}
529
530struct fuse_copy_state {
Miklos Szeredid7133112006-04-10 22:54:55 -0700531 struct fuse_conn *fc;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700532 int write;
533 struct fuse_req *req;
534 const struct iovec *iov;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200535 struct pipe_buffer *pipebufs;
536 struct pipe_buffer *currbuf;
537 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700538 unsigned long nr_segs;
539 unsigned long seglen;
540 unsigned long addr;
541 struct page *pg;
542 void *mapaddr;
543 void *buf;
544 unsigned len;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200545 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700546};
547
Miklos Szeredid7133112006-04-10 22:54:55 -0700548static void fuse_copy_init(struct fuse_copy_state *cs, struct fuse_conn *fc,
Miklos Szeredic3021622010-05-25 15:06:07 +0200549 int write,
Miklos Szeredid7133112006-04-10 22:54:55 -0700550 const struct iovec *iov, unsigned long nr_segs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700551{
552 memset(cs, 0, sizeof(*cs));
Miklos Szeredid7133112006-04-10 22:54:55 -0700553 cs->fc = fc;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700554 cs->write = write;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700555 cs->iov = iov;
556 cs->nr_segs = nr_segs;
557}
558
559/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800560static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700561{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200562 if (cs->currbuf) {
563 struct pipe_buffer *buf = cs->currbuf;
564
Miklos Szeredic3021622010-05-25 15:06:07 +0200565 if (!cs->write) {
566 buf->ops->unmap(cs->pipe, buf, cs->mapaddr);
567 } else {
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200568 kunmap(buf->page);
Miklos Szeredic3021622010-05-25 15:06:07 +0200569 buf->len = PAGE_SIZE - cs->len;
570 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200571 cs->currbuf = NULL;
572 cs->mapaddr = NULL;
573 } else if (cs->mapaddr) {
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200574 kunmap(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700575 if (cs->write) {
576 flush_dcache_page(cs->pg);
577 set_page_dirty_lock(cs->pg);
578 }
579 put_page(cs->pg);
580 cs->mapaddr = NULL;
581 }
582}
583
584/*
585 * Get another pagefull of userspace buffer, and map it to kernel
586 * address space, and lock request
587 */
588static int fuse_copy_fill(struct fuse_copy_state *cs)
589{
590 unsigned long offset;
591 int err;
592
Miklos Szeredid7133112006-04-10 22:54:55 -0700593 unlock_request(cs->fc, cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700594 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200595 if (cs->pipebufs) {
596 struct pipe_buffer *buf = cs->pipebufs;
597
Miklos Szeredic3021622010-05-25 15:06:07 +0200598 if (!cs->write) {
599 err = buf->ops->confirm(cs->pipe, buf);
600 if (err)
601 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200602
Miklos Szeredic3021622010-05-25 15:06:07 +0200603 BUG_ON(!cs->nr_segs);
604 cs->currbuf = buf;
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200605 cs->mapaddr = buf->ops->map(cs->pipe, buf, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +0200606 cs->len = buf->len;
607 cs->buf = cs->mapaddr + buf->offset;
608 cs->pipebufs++;
609 cs->nr_segs--;
610 } else {
611 struct page *page;
612
613 if (cs->nr_segs == cs->pipe->buffers)
614 return -EIO;
615
616 page = alloc_page(GFP_HIGHUSER);
617 if (!page)
618 return -ENOMEM;
619
620 buf->page = page;
621 buf->offset = 0;
622 buf->len = 0;
623
624 cs->currbuf = buf;
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200625 cs->mapaddr = kmap(page);
Miklos Szeredic3021622010-05-25 15:06:07 +0200626 cs->buf = cs->mapaddr;
627 cs->len = PAGE_SIZE;
628 cs->pipebufs++;
629 cs->nr_segs++;
630 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200631 } else {
632 if (!cs->seglen) {
633 BUG_ON(!cs->nr_segs);
634 cs->seglen = cs->iov[0].iov_len;
635 cs->addr = (unsigned long) cs->iov[0].iov_base;
636 cs->iov++;
637 cs->nr_segs--;
638 }
639 err = get_user_pages_fast(cs->addr, 1, cs->write, &cs->pg);
640 if (err < 0)
641 return err;
642 BUG_ON(err != 1);
643 offset = cs->addr % PAGE_SIZE;
Miklos Szeredi7909b1c2010-07-12 14:41:40 +0200644 cs->mapaddr = kmap(cs->pg);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200645 cs->buf = cs->mapaddr + offset;
646 cs->len = min(PAGE_SIZE - offset, cs->seglen);
647 cs->seglen -= cs->len;
648 cs->addr += cs->len;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700649 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700650
Miklos Szeredid7133112006-04-10 22:54:55 -0700651 return lock_request(cs->fc, cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700652}
653
654/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800655static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700656{
657 unsigned ncpy = min(*size, cs->len);
658 if (val) {
659 if (cs->write)
660 memcpy(cs->buf, *val, ncpy);
661 else
662 memcpy(*val, cs->buf, ncpy);
663 *val += ncpy;
664 }
665 *size -= ncpy;
666 cs->len -= ncpy;
667 cs->buf += ncpy;
668 return ncpy;
669}
670
Miklos Szeredice534fb2010-05-25 15:06:07 +0200671static int fuse_check_page(struct page *page)
672{
673 if (page_mapcount(page) ||
674 page->mapping != NULL ||
675 page_count(page) != 1 ||
676 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
677 ~(1 << PG_locked |
678 1 << PG_referenced |
679 1 << PG_uptodate |
680 1 << PG_lru |
681 1 << PG_active |
682 1 << PG_reclaim))) {
683 printk(KERN_WARNING "fuse: trying to steal weird page\n");
684 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);
685 return 1;
686 }
687 return 0;
688}
689
690static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
691{
692 int err;
693 struct page *oldpage = *pagep;
694 struct page *newpage;
695 struct pipe_buffer *buf = cs->pipebufs;
696 struct address_space *mapping;
697 pgoff_t index;
698
699 unlock_request(cs->fc, cs->req);
700 fuse_copy_finish(cs);
701
702 err = buf->ops->confirm(cs->pipe, buf);
703 if (err)
704 return err;
705
706 BUG_ON(!cs->nr_segs);
707 cs->currbuf = buf;
708 cs->len = buf->len;
709 cs->pipebufs++;
710 cs->nr_segs--;
711
712 if (cs->len != PAGE_SIZE)
713 goto out_fallback;
714
715 if (buf->ops->steal(cs->pipe, buf) != 0)
716 goto out_fallback;
717
718 newpage = buf->page;
719
720 if (WARN_ON(!PageUptodate(newpage)))
721 return -EIO;
722
723 ClearPageMappedToDisk(newpage);
724
725 if (fuse_check_page(newpage) != 0)
726 goto out_fallback_unlock;
727
728 mapping = oldpage->mapping;
729 index = oldpage->index;
730
731 /*
732 * This is a new and locked page, it shouldn't be mapped or
733 * have any special flags on it
734 */
735 if (WARN_ON(page_mapped(oldpage)))
736 goto out_fallback_unlock;
737 if (WARN_ON(page_has_private(oldpage)))
738 goto out_fallback_unlock;
739 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
740 goto out_fallback_unlock;
741 if (WARN_ON(PageMlocked(oldpage)))
742 goto out_fallback_unlock;
743
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700744 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200745 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700746 unlock_page(newpage);
747 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200748 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700749
Miklos Szeredice534fb2010-05-25 15:06:07 +0200750 page_cache_get(newpage);
751
752 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
753 lru_cache_add_file(newpage);
754
755 err = 0;
756 spin_lock(&cs->fc->lock);
757 if (cs->req->aborted)
758 err = -ENOENT;
759 else
760 *pagep = newpage;
761 spin_unlock(&cs->fc->lock);
762
763 if (err) {
764 unlock_page(newpage);
765 page_cache_release(newpage);
766 return err;
767 }
768
769 unlock_page(oldpage);
770 page_cache_release(oldpage);
771 cs->len = 0;
772
773 return 0;
774
775out_fallback_unlock:
776 unlock_page(newpage);
777out_fallback:
778 cs->mapaddr = buf->ops->map(cs->pipe, buf, 1);
779 cs->buf = cs->mapaddr + buf->offset;
780
781 err = lock_request(cs->fc, cs->req);
782 if (err)
783 return err;
784
785 return 1;
786}
787
Miklos Szeredic3021622010-05-25 15:06:07 +0200788static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
789 unsigned offset, unsigned count)
790{
791 struct pipe_buffer *buf;
792
793 if (cs->nr_segs == cs->pipe->buffers)
794 return -EIO;
795
796 unlock_request(cs->fc, cs->req);
797 fuse_copy_finish(cs);
798
799 buf = cs->pipebufs;
800 page_cache_get(page);
801 buf->page = page;
802 buf->offset = offset;
803 buf->len = count;
804
805 cs->pipebufs++;
806 cs->nr_segs++;
807 cs->len = 0;
808
809 return 0;
810}
811
Miklos Szeredi334f4852005-09-09 13:10:27 -0700812/*
813 * Copy a page in the request to/from the userspace buffer. Must be
814 * done atomically
815 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200816static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800817 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700818{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200819 int err;
820 struct page *page = *pagep;
821
Miklos Szeredib6777c42010-10-26 14:22:27 -0700822 if (page && zeroing && count < PAGE_SIZE)
823 clear_highpage(page);
824
Miklos Szeredi334f4852005-09-09 13:10:27 -0700825 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200826 if (cs->write && cs->pipebufs && page) {
827 return fuse_ref_page(cs, page, offset, count);
828 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200829 if (cs->move_pages && page &&
830 offset == 0 && count == PAGE_SIZE) {
831 err = fuse_try_move_page(cs, pagep);
832 if (err <= 0)
833 return err;
834 } else {
835 err = fuse_copy_fill(cs);
836 if (err)
837 return err;
838 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100839 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700840 if (page) {
Miklos Szeredib6777c42010-10-26 14:22:27 -0700841 void *mapaddr = kmap_atomic(page, KM_USER0);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700842 void *buf = mapaddr + offset;
843 offset += fuse_copy_do(cs, &buf, &count);
Miklos Szeredib6777c42010-10-26 14:22:27 -0700844 kunmap_atomic(mapaddr, KM_USER0);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700845 } else
846 offset += fuse_copy_do(cs, NULL, &count);
847 }
848 if (page && !cs->write)
849 flush_dcache_page(page);
850 return 0;
851}
852
853/* Copy pages in the request to/from userspace buffer */
854static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
855 int zeroing)
856{
857 unsigned i;
858 struct fuse_req *req = cs->req;
859 unsigned offset = req->page_offset;
860 unsigned count = min(nbytes, (unsigned) PAGE_SIZE - offset);
861
862 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200863 int err;
864
865 err = fuse_copy_page(cs, &req->pages[i], offset, count,
866 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700867 if (err)
868 return err;
869
870 nbytes -= count;
871 count = min(nbytes, (unsigned) PAGE_SIZE);
872 offset = 0;
873 }
874 return 0;
875}
876
877/* Copy a single argument in the request to/from userspace buffer */
878static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
879{
880 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +0100881 if (!cs->len) {
882 int err = fuse_copy_fill(cs);
883 if (err)
884 return err;
885 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700886 fuse_copy_do(cs, &val, &size);
887 }
888 return 0;
889}
890
891/* Copy request arguments to/from userspace buffer */
892static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
893 unsigned argpages, struct fuse_arg *args,
894 int zeroing)
895{
896 int err = 0;
897 unsigned i;
898
899 for (i = 0; !err && i < numargs; i++) {
900 struct fuse_arg *arg = &args[i];
901 if (i == numargs - 1 && argpages)
902 err = fuse_copy_pages(cs, arg->size, zeroing);
903 else
904 err = fuse_copy_one(cs, arg->value, arg->size);
905 }
906 return err;
907}
908
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100909static int forget_pending(struct fuse_conn *fc)
910{
911 return fc->forget_list_head.next != NULL;
912}
913
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700914static int request_pending(struct fuse_conn *fc)
915{
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100916 return !list_empty(&fc->pending) || !list_empty(&fc->interrupts) ||
917 forget_pending(fc);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700918}
919
Miklos Szeredi334f4852005-09-09 13:10:27 -0700920/* Wait until a request is available on the pending list */
921static void request_wait(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200922__releases(fc->lock)
923__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700924{
925 DECLARE_WAITQUEUE(wait, current);
926
927 add_wait_queue_exclusive(&fc->waitq, &wait);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700928 while (fc->connected && !request_pending(fc)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700929 set_current_state(TASK_INTERRUPTIBLE);
930 if (signal_pending(current))
931 break;
932
Miklos Szeredid7133112006-04-10 22:54:55 -0700933 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700934 schedule();
Miklos Szeredid7133112006-04-10 22:54:55 -0700935 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700936 }
937 set_current_state(TASK_RUNNING);
938 remove_wait_queue(&fc->waitq, &wait);
939}
940
941/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700942 * Transfer an interrupt request to userspace
943 *
944 * Unlike other requests this is assembled on demand, without a need
945 * to allocate a separate fuse_req structure.
946 *
947 * Called with fc->lock held, releases it
948 */
Miklos Szeredic3021622010-05-25 15:06:07 +0200949static int fuse_read_interrupt(struct fuse_conn *fc, struct fuse_copy_state *cs,
950 size_t nbytes, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200951__releases(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700952{
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700953 struct fuse_in_header ih;
954 struct fuse_interrupt_in arg;
955 unsigned reqsize = sizeof(ih) + sizeof(arg);
956 int err;
957
958 list_del_init(&req->intr_entry);
959 req->intr_unique = fuse_get_unique(fc);
960 memset(&ih, 0, sizeof(ih));
961 memset(&arg, 0, sizeof(arg));
962 ih.len = reqsize;
963 ih.opcode = FUSE_INTERRUPT;
964 ih.unique = req->intr_unique;
965 arg.unique = req->in.h.unique;
966
967 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +0200968 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700969 return -EINVAL;
970
Miklos Szeredic3021622010-05-25 15:06:07 +0200971 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700972 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +0200973 err = fuse_copy_one(cs, &arg, sizeof(arg));
974 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700975
976 return err ? err : reqsize;
977}
978
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100979static struct fuse_forget_link *dequeue_forget(struct fuse_conn *fc,
980 unsigned max,
981 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100982{
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100983 struct fuse_forget_link *head = fc->forget_list_head.next;
984 struct fuse_forget_link **newhead = &head;
985 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100986
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100987 for (count = 0; *newhead != NULL && count < max; count++)
988 newhead = &(*newhead)->next;
989
990 fc->forget_list_head.next = *newhead;
991 *newhead = NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100992 if (fc->forget_list_head.next == NULL)
993 fc->forget_list_tail = &fc->forget_list_head;
994
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100995 if (countp != NULL)
996 *countp = count;
997
998 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100999}
1000
1001static int fuse_read_single_forget(struct fuse_conn *fc,
1002 struct fuse_copy_state *cs,
1003 size_t nbytes)
1004__releases(fc->lock)
1005{
1006 int err;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001007 struct fuse_forget_link *forget = dequeue_forget(fc, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001008 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001009 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001010 };
1011 struct fuse_in_header ih = {
1012 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001013 .nodeid = forget->forget_one.nodeid,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001014 .unique = fuse_get_unique(fc),
1015 .len = sizeof(ih) + sizeof(arg),
1016 };
1017
1018 spin_unlock(&fc->lock);
1019 kfree(forget);
1020 if (nbytes < ih.len)
1021 return -EINVAL;
1022
1023 err = fuse_copy_one(cs, &ih, sizeof(ih));
1024 if (!err)
1025 err = fuse_copy_one(cs, &arg, sizeof(arg));
1026 fuse_copy_finish(cs);
1027
1028 if (err)
1029 return err;
1030
1031 return ih.len;
1032}
1033
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001034static int fuse_read_batch_forget(struct fuse_conn *fc,
1035 struct fuse_copy_state *cs, size_t nbytes)
1036__releases(fc->lock)
1037{
1038 int err;
1039 unsigned max_forgets;
1040 unsigned count;
1041 struct fuse_forget_link *head;
1042 struct fuse_batch_forget_in arg = { .count = 0 };
1043 struct fuse_in_header ih = {
1044 .opcode = FUSE_BATCH_FORGET,
1045 .unique = fuse_get_unique(fc),
1046 .len = sizeof(ih) + sizeof(arg),
1047 };
1048
1049 if (nbytes < ih.len) {
1050 spin_unlock(&fc->lock);
1051 return -EINVAL;
1052 }
1053
1054 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
1055 head = dequeue_forget(fc, max_forgets, &count);
1056 spin_unlock(&fc->lock);
1057
1058 arg.count = count;
1059 ih.len += count * sizeof(struct fuse_forget_one);
1060 err = fuse_copy_one(cs, &ih, sizeof(ih));
1061 if (!err)
1062 err = fuse_copy_one(cs, &arg, sizeof(arg));
1063
1064 while (head) {
1065 struct fuse_forget_link *forget = head;
1066
1067 if (!err) {
1068 err = fuse_copy_one(cs, &forget->forget_one,
1069 sizeof(forget->forget_one));
1070 }
1071 head = forget->next;
1072 kfree(forget);
1073 }
1074
1075 fuse_copy_finish(cs);
1076
1077 if (err)
1078 return err;
1079
1080 return ih.len;
1081}
1082
1083static int fuse_read_forget(struct fuse_conn *fc, struct fuse_copy_state *cs,
1084 size_t nbytes)
1085__releases(fc->lock)
1086{
1087 if (fc->minor < 16 || fc->forget_list_head.next->next == NULL)
1088 return fuse_read_single_forget(fc, cs, nbytes);
1089 else
1090 return fuse_read_batch_forget(fc, cs, nbytes);
1091}
1092
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001093/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001094 * Read a single request into the userspace filesystem's buffer. This
1095 * function waits until a request is available, then removes it from
1096 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001097 * no reply is needed (FORGET) or request has been aborted or there
1098 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001099 * request_end(). Otherwise add it to the processing list, and set
1100 * the 'sent' flag.
1101 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001102static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1103 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001104{
1105 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001106 struct fuse_req *req;
1107 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001108 unsigned reqsize;
1109
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001110 restart:
Miklos Szeredid7133112006-04-10 22:54:55 -07001111 spin_lock(&fc->lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001112 err = -EAGAIN;
1113 if ((file->f_flags & O_NONBLOCK) && fc->connected &&
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001114 !request_pending(fc))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001115 goto err_unlock;
1116
Miklos Szeredi334f4852005-09-09 13:10:27 -07001117 request_wait(fc);
1118 err = -ENODEV;
Miklos Szeredi9ba7cbb2006-01-16 22:14:34 -08001119 if (!fc->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001120 goto err_unlock;
1121 err = -ERESTARTSYS;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001122 if (!request_pending(fc))
Miklos Szeredi334f4852005-09-09 13:10:27 -07001123 goto err_unlock;
1124
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001125 if (!list_empty(&fc->interrupts)) {
1126 req = list_entry(fc->interrupts.next, struct fuse_req,
1127 intr_entry);
Miklos Szeredic3021622010-05-25 15:06:07 +02001128 return fuse_read_interrupt(fc, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001129 }
1130
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001131 if (forget_pending(fc)) {
1132 if (list_empty(&fc->pending) || fc->forget_batch-- > 0)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001133 return fuse_read_forget(fc, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001134
1135 if (fc->forget_batch <= -8)
1136 fc->forget_batch = 16;
1137 }
1138
Miklos Szeredi334f4852005-09-09 13:10:27 -07001139 req = list_entry(fc->pending.next, struct fuse_req, list);
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001140 req->state = FUSE_REQ_READING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001141 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001142
1143 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001144 reqsize = in->h.len;
1145 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001146 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001147 req->out.h.error = -EIO;
1148 /* SETXATTR is special, since it may contain too large data */
1149 if (in->h.opcode == FUSE_SETXATTR)
1150 req->out.h.error = -E2BIG;
1151 request_end(fc, req);
1152 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001153 }
Miklos Szeredid7133112006-04-10 22:54:55 -07001154 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001155 cs->req = req;
1156 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001157 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001158 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001159 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001160 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001161 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001162 req->locked = 0;
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001163 if (req->aborted) {
1164 request_end(fc, req);
1165 return -ENODEV;
1166 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001167 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001168 req->out.h.error = -EIO;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001169 request_end(fc, req);
1170 return err;
1171 }
1172 if (!req->isreply)
1173 request_end(fc, req);
1174 else {
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001175 req->state = FUSE_REQ_SENT;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001176 list_move_tail(&req->list, &fc->processing);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001177 if (req->interrupted)
1178 queue_interrupt(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001179 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001180 }
1181 return reqsize;
1182
1183 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001184 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001185 return err;
1186}
1187
Miklos Szeredic3021622010-05-25 15:06:07 +02001188static ssize_t fuse_dev_read(struct kiocb *iocb, const struct iovec *iov,
1189 unsigned long nr_segs, loff_t pos)
1190{
1191 struct fuse_copy_state cs;
1192 struct file *file = iocb->ki_filp;
1193 struct fuse_conn *fc = fuse_get_conn(file);
1194 if (!fc)
1195 return -EPERM;
1196
1197 fuse_copy_init(&cs, fc, 1, iov, nr_segs);
1198
1199 return fuse_dev_do_read(fc, file, &cs, iov_length(iov, nr_segs));
1200}
1201
1202static int fuse_dev_pipe_buf_steal(struct pipe_inode_info *pipe,
1203 struct pipe_buffer *buf)
1204{
1205 return 1;
1206}
1207
1208static const struct pipe_buf_operations fuse_dev_pipe_buf_ops = {
1209 .can_merge = 0,
1210 .map = generic_pipe_buf_map,
1211 .unmap = generic_pipe_buf_unmap,
1212 .confirm = generic_pipe_buf_confirm,
1213 .release = generic_pipe_buf_release,
1214 .steal = fuse_dev_pipe_buf_steal,
1215 .get = generic_pipe_buf_get,
1216};
1217
1218static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1219 struct pipe_inode_info *pipe,
1220 size_t len, unsigned int flags)
1221{
1222 int ret;
1223 int page_nr = 0;
1224 int do_wakeup = 0;
1225 struct pipe_buffer *bufs;
1226 struct fuse_copy_state cs;
1227 struct fuse_conn *fc = fuse_get_conn(in);
1228 if (!fc)
1229 return -EPERM;
1230
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001231 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001232 if (!bufs)
1233 return -ENOMEM;
1234
1235 fuse_copy_init(&cs, fc, 1, NULL, 0);
1236 cs.pipebufs = bufs;
1237 cs.pipe = pipe;
1238 ret = fuse_dev_do_read(fc, in, &cs, len);
1239 if (ret < 0)
1240 goto out;
1241
1242 ret = 0;
1243 pipe_lock(pipe);
1244
1245 if (!pipe->readers) {
1246 send_sig(SIGPIPE, current, 0);
1247 if (!ret)
1248 ret = -EPIPE;
1249 goto out_unlock;
1250 }
1251
1252 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1253 ret = -EIO;
1254 goto out_unlock;
1255 }
1256
1257 while (page_nr < cs.nr_segs) {
1258 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1259 struct pipe_buffer *buf = pipe->bufs + newbuf;
1260
1261 buf->page = bufs[page_nr].page;
1262 buf->offset = bufs[page_nr].offset;
1263 buf->len = bufs[page_nr].len;
1264 buf->ops = &fuse_dev_pipe_buf_ops;
1265
1266 pipe->nrbufs++;
1267 page_nr++;
1268 ret += buf->len;
1269
1270 if (pipe->inode)
1271 do_wakeup = 1;
1272 }
1273
1274out_unlock:
1275 pipe_unlock(pipe);
1276
1277 if (do_wakeup) {
1278 smp_mb();
1279 if (waitqueue_active(&pipe->wait))
1280 wake_up_interruptible(&pipe->wait);
1281 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1282 }
1283
1284out:
1285 for (; page_nr < cs.nr_segs; page_nr++)
1286 page_cache_release(bufs[page_nr].page);
1287
1288 kfree(bufs);
1289 return ret;
1290}
1291
Tejun Heo95668a62008-11-26 12:03:55 +01001292static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1293 struct fuse_copy_state *cs)
1294{
1295 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001296 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001297
1298 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001299 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001300
1301 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1302 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001303 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001304
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001305 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001306 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001307
1308err:
1309 fuse_copy_finish(cs);
1310 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001311}
1312
John Muir3b463ae2009-05-31 11:13:57 -04001313static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1314 struct fuse_copy_state *cs)
1315{
1316 struct fuse_notify_inval_inode_out outarg;
1317 int err = -EINVAL;
1318
1319 if (size != sizeof(outarg))
1320 goto err;
1321
1322 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1323 if (err)
1324 goto err;
1325 fuse_copy_finish(cs);
1326
1327 down_read(&fc->killsb);
1328 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001329 if (fc->sb) {
1330 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1331 outarg.off, outarg.len);
1332 }
John Muir3b463ae2009-05-31 11:13:57 -04001333 up_read(&fc->killsb);
1334 return err;
1335
1336err:
1337 fuse_copy_finish(cs);
1338 return err;
1339}
1340
1341static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1342 struct fuse_copy_state *cs)
1343{
1344 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001345 int err = -ENOMEM;
1346 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001347 struct qstr name;
1348
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001349 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1350 if (!buf)
1351 goto err;
1352
1353 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001354 if (size < sizeof(outarg))
1355 goto err;
1356
1357 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1358 if (err)
1359 goto err;
1360
1361 err = -ENAMETOOLONG;
1362 if (outarg.namelen > FUSE_NAME_MAX)
1363 goto err;
1364
1365 name.name = buf;
1366 name.len = outarg.namelen;
1367 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1368 if (err)
1369 goto err;
1370 fuse_copy_finish(cs);
1371 buf[outarg.namelen] = 0;
1372 name.hash = full_name_hash(name.name, name.len);
1373
1374 down_read(&fc->killsb);
1375 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001376 if (fc->sb)
1377 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001378 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001379 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001380 return err;
1381
1382err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001383 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001384 fuse_copy_finish(cs);
1385 return err;
1386}
1387
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001388static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1389 struct fuse_copy_state *cs)
1390{
1391 struct fuse_notify_store_out outarg;
1392 struct inode *inode;
1393 struct address_space *mapping;
1394 u64 nodeid;
1395 int err;
1396 pgoff_t index;
1397 unsigned int offset;
1398 unsigned int num;
1399 loff_t file_size;
1400 loff_t end;
1401
1402 err = -EINVAL;
1403 if (size < sizeof(outarg))
1404 goto out_finish;
1405
1406 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1407 if (err)
1408 goto out_finish;
1409
1410 err = -EINVAL;
1411 if (size - sizeof(outarg) != outarg.size)
1412 goto out_finish;
1413
1414 nodeid = outarg.nodeid;
1415
1416 down_read(&fc->killsb);
1417
1418 err = -ENOENT;
1419 if (!fc->sb)
1420 goto out_up_killsb;
1421
1422 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1423 if (!inode)
1424 goto out_up_killsb;
1425
1426 mapping = inode->i_mapping;
1427 index = outarg.offset >> PAGE_CACHE_SHIFT;
1428 offset = outarg.offset & ~PAGE_CACHE_MASK;
1429 file_size = i_size_read(inode);
1430 end = outarg.offset + outarg.size;
1431 if (end > file_size) {
1432 file_size = end;
1433 fuse_write_update_size(inode, file_size);
1434 }
1435
1436 num = outarg.size;
1437 while (num) {
1438 struct page *page;
1439 unsigned int this_num;
1440
1441 err = -ENOMEM;
1442 page = find_or_create_page(mapping, index,
1443 mapping_gfp_mask(mapping));
1444 if (!page)
1445 goto out_iput;
1446
1447 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1448 err = fuse_copy_page(cs, &page, offset, this_num, 0);
1449 if (!err && offset == 0 && (num != 0 || file_size == end))
1450 SetPageUptodate(page);
1451 unlock_page(page);
1452 page_cache_release(page);
1453
1454 if (err)
1455 goto out_iput;
1456
1457 num -= this_num;
1458 offset = 0;
1459 index++;
1460 }
1461
1462 err = 0;
1463
1464out_iput:
1465 iput(inode);
1466out_up_killsb:
1467 up_read(&fc->killsb);
1468out_finish:
1469 fuse_copy_finish(cs);
1470 return err;
1471}
1472
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001473static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1474{
Miklos Szeredi0be85572010-10-27 15:34:46 -07001475 release_pages(req->pages, req->num_pages, 0);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001476}
1477
1478static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1479 struct fuse_notify_retrieve_out *outarg)
1480{
1481 int err;
1482 struct address_space *mapping = inode->i_mapping;
1483 struct fuse_req *req;
1484 pgoff_t index;
1485 loff_t file_size;
1486 unsigned int num;
1487 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001488 size_t total_len = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001489
1490 req = fuse_get_req(fc);
1491 if (IS_ERR(req))
1492 return PTR_ERR(req);
1493
1494 offset = outarg->offset & ~PAGE_CACHE_MASK;
1495
1496 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1497 req->in.h.nodeid = outarg->nodeid;
1498 req->in.numargs = 2;
1499 req->in.argpages = 1;
1500 req->page_offset = offset;
1501 req->end = fuse_retrieve_end;
1502
1503 index = outarg->offset >> PAGE_CACHE_SHIFT;
1504 file_size = i_size_read(inode);
1505 num = outarg->size;
1506 if (outarg->offset > file_size)
1507 num = 0;
1508 else if (outarg->offset + num > file_size)
1509 num = file_size - outarg->offset;
1510
1511 while (num) {
1512 struct page *page;
1513 unsigned int this_num;
1514
1515 page = find_get_page(mapping, index);
1516 if (!page)
1517 break;
1518
1519 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1520 req->pages[req->num_pages] = page;
1521 req->num_pages++;
1522
1523 num -= this_num;
1524 total_len += this_num;
1525 }
1526 req->misc.retrieve_in.offset = outarg->offset;
1527 req->misc.retrieve_in.size = total_len;
1528 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1529 req->in.args[0].value = &req->misc.retrieve_in;
1530 req->in.args[1].size = total_len;
1531
1532 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1533 if (err)
1534 fuse_retrieve_end(fc, req);
1535
1536 return err;
1537}
1538
1539static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1540 struct fuse_copy_state *cs)
1541{
1542 struct fuse_notify_retrieve_out outarg;
1543 struct inode *inode;
1544 int err;
1545
1546 err = -EINVAL;
1547 if (size != sizeof(outarg))
1548 goto copy_finish;
1549
1550 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1551 if (err)
1552 goto copy_finish;
1553
1554 fuse_copy_finish(cs);
1555
1556 down_read(&fc->killsb);
1557 err = -ENOENT;
1558 if (fc->sb) {
1559 u64 nodeid = outarg.nodeid;
1560
1561 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1562 if (inode) {
1563 err = fuse_retrieve(fc, inode, &outarg);
1564 iput(inode);
1565 }
1566 }
1567 up_read(&fc->killsb);
1568
1569 return err;
1570
1571copy_finish:
1572 fuse_copy_finish(cs);
1573 return err;
1574}
1575
Tejun Heo85993962008-11-26 12:03:55 +01001576static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1577 unsigned int size, struct fuse_copy_state *cs)
1578{
1579 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001580 case FUSE_NOTIFY_POLL:
1581 return fuse_notify_poll(fc, size, cs);
1582
John Muir3b463ae2009-05-31 11:13:57 -04001583 case FUSE_NOTIFY_INVAL_INODE:
1584 return fuse_notify_inval_inode(fc, size, cs);
1585
1586 case FUSE_NOTIFY_INVAL_ENTRY:
1587 return fuse_notify_inval_entry(fc, size, cs);
1588
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001589 case FUSE_NOTIFY_STORE:
1590 return fuse_notify_store(fc, size, cs);
1591
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001592 case FUSE_NOTIFY_RETRIEVE:
1593 return fuse_notify_retrieve(fc, size, cs);
1594
Tejun Heo85993962008-11-26 12:03:55 +01001595 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001596 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001597 return -EINVAL;
1598 }
1599}
1600
Miklos Szeredi334f4852005-09-09 13:10:27 -07001601/* Look up request on processing list by unique ID */
1602static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
1603{
1604 struct list_head *entry;
1605
1606 list_for_each(entry, &fc->processing) {
1607 struct fuse_req *req;
1608 req = list_entry(entry, struct fuse_req, list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001609 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001610 return req;
1611 }
1612 return NULL;
1613}
1614
1615static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1616 unsigned nbytes)
1617{
1618 unsigned reqsize = sizeof(struct fuse_out_header);
1619
1620 if (out->h.error)
1621 return nbytes != reqsize ? -EINVAL : 0;
1622
1623 reqsize += len_args(out->numargs, out->args);
1624
1625 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1626 return -EINVAL;
1627 else if (reqsize > nbytes) {
1628 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1629 unsigned diffsize = reqsize - nbytes;
1630 if (diffsize > lastarg->size)
1631 return -EINVAL;
1632 lastarg->size -= diffsize;
1633 }
1634 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1635 out->page_zeroing);
1636}
1637
1638/*
1639 * Write a single reply to a request. First the header is copied from
1640 * the write buffer. The request is then searched on the processing
1641 * list by the unique ID found in the header. If found, then remove
1642 * it from the list and copy the rest of the buffer to the request.
1643 * The request is finished by calling request_end()
1644 */
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001645static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1646 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001647{
1648 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001649 struct fuse_req *req;
1650 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001651
Miklos Szeredi334f4852005-09-09 13:10:27 -07001652 if (nbytes < sizeof(struct fuse_out_header))
1653 return -EINVAL;
1654
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001655 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001656 if (err)
1657 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001658
Miklos Szeredi334f4852005-09-09 13:10:27 -07001659 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001660 if (oh.len != nbytes)
1661 goto err_finish;
1662
1663 /*
1664 * Zero oh.unique indicates unsolicited notification message
1665 * and error contains notification code.
1666 */
1667 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001668 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001669 return err ? err : nbytes;
1670 }
1671
1672 err = -EINVAL;
1673 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001674 goto err_finish;
1675
Miklos Szeredid7133112006-04-10 22:54:55 -07001676 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001677 err = -ENOENT;
1678 if (!fc->connected)
1679 goto err_unlock;
1680
Miklos Szeredi334f4852005-09-09 13:10:27 -07001681 req = request_find(fc, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001682 if (!req)
1683 goto err_unlock;
1684
Miklos Szeredif9a28422006-06-25 05:48:53 -07001685 if (req->aborted) {
Miklos Szeredid7133112006-04-10 22:54:55 -07001686 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001687 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001688 spin_lock(&fc->lock);
Miklos Szeredi222f1d62006-01-16 22:14:25 -08001689 request_end(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001690 return -ENOENT;
1691 }
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001692 /* Is it an interrupt reply? */
1693 if (req->intr_unique == oh.unique) {
1694 err = -EINVAL;
1695 if (nbytes != sizeof(struct fuse_out_header))
1696 goto err_unlock;
1697
1698 if (oh.error == -ENOSYS)
1699 fc->no_interrupt = 1;
1700 else if (oh.error == -EAGAIN)
1701 queue_interrupt(fc, req);
1702
1703 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001704 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001705 return nbytes;
1706 }
1707
1708 req->state = FUSE_REQ_WRITING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001709 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001710 req->out.h = oh;
1711 req->locked = 1;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001712 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001713 if (!req->out.page_replace)
1714 cs->move_pages = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -07001715 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001716
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001717 err = copy_out_args(cs, &req->out, nbytes);
1718 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001719
Miklos Szeredid7133112006-04-10 22:54:55 -07001720 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001721 req->locked = 0;
1722 if (!err) {
Miklos Szeredif9a28422006-06-25 05:48:53 -07001723 if (req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001724 err = -ENOENT;
Miklos Szeredif9a28422006-06-25 05:48:53 -07001725 } else if (!req->aborted)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001726 req->out.h.error = -EIO;
1727 request_end(fc, req);
1728
1729 return err ? err : nbytes;
1730
1731 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001732 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001733 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001734 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001735 return err;
1736}
1737
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001738static ssize_t fuse_dev_write(struct kiocb *iocb, const struct iovec *iov,
1739 unsigned long nr_segs, loff_t pos)
1740{
1741 struct fuse_copy_state cs;
1742 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1743 if (!fc)
1744 return -EPERM;
1745
Miklos Szeredic3021622010-05-25 15:06:07 +02001746 fuse_copy_init(&cs, fc, 0, iov, nr_segs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001747
1748 return fuse_dev_do_write(fc, &cs, iov_length(iov, nr_segs));
1749}
1750
1751static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1752 struct file *out, loff_t *ppos,
1753 size_t len, unsigned int flags)
1754{
1755 unsigned nbuf;
1756 unsigned idx;
1757 struct pipe_buffer *bufs;
1758 struct fuse_copy_state cs;
1759 struct fuse_conn *fc;
1760 size_t rem;
1761 ssize_t ret;
1762
1763 fc = fuse_get_conn(out);
1764 if (!fc)
1765 return -EPERM;
1766
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001767 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001768 if (!bufs)
1769 return -ENOMEM;
1770
1771 pipe_lock(pipe);
1772 nbuf = 0;
1773 rem = 0;
1774 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
1775 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
1776
1777 ret = -EINVAL;
1778 if (rem < len) {
1779 pipe_unlock(pipe);
1780 goto out;
1781 }
1782
1783 rem = len;
1784 while (rem) {
1785 struct pipe_buffer *ibuf;
1786 struct pipe_buffer *obuf;
1787
1788 BUG_ON(nbuf >= pipe->buffers);
1789 BUG_ON(!pipe->nrbufs);
1790 ibuf = &pipe->bufs[pipe->curbuf];
1791 obuf = &bufs[nbuf];
1792
1793 if (rem >= ibuf->len) {
1794 *obuf = *ibuf;
1795 ibuf->ops = NULL;
1796 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
1797 pipe->nrbufs--;
1798 } else {
1799 ibuf->ops->get(pipe, ibuf);
1800 *obuf = *ibuf;
1801 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1802 obuf->len = rem;
1803 ibuf->offset += obuf->len;
1804 ibuf->len -= obuf->len;
1805 }
1806 nbuf++;
1807 rem -= obuf->len;
1808 }
1809 pipe_unlock(pipe);
1810
Miklos Szeredic3021622010-05-25 15:06:07 +02001811 fuse_copy_init(&cs, fc, 0, NULL, nbuf);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001812 cs.pipebufs = bufs;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001813 cs.pipe = pipe;
1814
Miklos Szeredice534fb2010-05-25 15:06:07 +02001815 if (flags & SPLICE_F_MOVE)
1816 cs.move_pages = 1;
1817
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001818 ret = fuse_dev_do_write(fc, &cs, len);
1819
1820 for (idx = 0; idx < nbuf; idx++) {
1821 struct pipe_buffer *buf = &bufs[idx];
1822 buf->ops->release(pipe, buf);
1823 }
1824out:
1825 kfree(bufs);
1826 return ret;
1827}
1828
Miklos Szeredi334f4852005-09-09 13:10:27 -07001829static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
1830{
Miklos Szeredi334f4852005-09-09 13:10:27 -07001831 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07001832 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001833 if (!fc)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07001834 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001835
1836 poll_wait(file, &fc->waitq, wait);
1837
Miklos Szeredid7133112006-04-10 22:54:55 -07001838 spin_lock(&fc->lock);
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07001839 if (!fc->connected)
1840 mask = POLLERR;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001841 else if (request_pending(fc))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07001842 mask |= POLLIN | POLLRDNORM;
Miklos Szeredid7133112006-04-10 22:54:55 -07001843 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001844
1845 return mask;
1846}
1847
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001848/*
1849 * Abort all requests on the given list (pending or processing)
1850 *
Miklos Szeredid7133112006-04-10 22:54:55 -07001851 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001852 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07001853static void end_requests(struct fuse_conn *fc, struct list_head *head)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001854__releases(fc->lock)
1855__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001856{
1857 while (!list_empty(head)) {
1858 struct fuse_req *req;
1859 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001860 req->out.h.error = -ECONNABORTED;
1861 request_end(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001862 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001863 }
1864}
1865
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001866/*
1867 * Abort requests under I/O
1868 *
Miklos Szeredif9a28422006-06-25 05:48:53 -07001869 * The requests are set to aborted and finished, and the request
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001870 * waiter is woken up. This will make request_wait_answer() wait
1871 * until the request is unlocked and then return.
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001872 *
1873 * If the request is asynchronous, then the end function needs to be
1874 * called after waiting for the request to be unlocked (if it was
1875 * locked).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001876 */
1877static void end_io_requests(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001878__releases(fc->lock)
1879__acquires(fc->lock)
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001880{
1881 while (!list_empty(&fc->io)) {
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001882 struct fuse_req *req =
1883 list_entry(fc->io.next, struct fuse_req, list);
1884 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
1885
Miklos Szeredif9a28422006-06-25 05:48:53 -07001886 req->aborted = 1;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001887 req->out.h.error = -ECONNABORTED;
1888 req->state = FUSE_REQ_FINISHED;
1889 list_del_init(&req->list);
1890 wake_up(&req->waitq);
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001891 if (end) {
1892 req->end = NULL;
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001893 __fuse_get_request(req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001894 spin_unlock(&fc->lock);
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001895 wait_event(req->waitq, !req->locked);
1896 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +01001897 fuse_put_request(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001898 spin_lock(&fc->lock);
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -08001899 }
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001900 }
1901}
1902
Miklos Szeredi595afaf2010-09-07 13:42:41 +02001903static void end_queued_requests(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001904__releases(fc->lock)
1905__acquires(fc->lock)
Miklos Szeredi595afaf2010-09-07 13:42:41 +02001906{
1907 fc->max_background = UINT_MAX;
1908 flush_bg_queue(fc);
1909 end_requests(fc, &fc->pending);
1910 end_requests(fc, &fc->processing);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001911 while (forget_pending(fc))
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001912 kfree(dequeue_forget(fc, 1, NULL));
Miklos Szeredi595afaf2010-09-07 13:42:41 +02001913}
1914
Bryan Green357ccf22011-03-01 16:43:52 -08001915static void end_polls(struct fuse_conn *fc)
1916{
1917 struct rb_node *p;
1918
1919 p = rb_first(&fc->polled_files);
1920
1921 while (p) {
1922 struct fuse_file *ff;
1923 ff = rb_entry(p, struct fuse_file, polled_node);
1924 wake_up_interruptible_all(&ff->poll_wait);
1925
1926 p = rb_next(p);
1927 }
1928}
1929
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001930/*
1931 * Abort all requests.
1932 *
1933 * Emergency exit in case of a malicious or accidental deadlock, or
1934 * just a hung filesystem.
1935 *
1936 * The same effect is usually achievable through killing the
1937 * filesystem daemon and all users of the filesystem. The exception
1938 * is the combination of an asynchronous request and the tricky
1939 * deadlock (see Documentation/filesystems/fuse.txt).
1940 *
1941 * During the aborting, progression of requests from the pending and
1942 * processing lists onto the io list, and progression of new requests
1943 * onto the pending list is prevented by req->connected being false.
1944 *
1945 * Progression of requests under I/O to the processing list is
Miklos Szeredif9a28422006-06-25 05:48:53 -07001946 * prevented by the req->aborted flag being true for these requests.
1947 * For this reason requests on the io list must be aborted first.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001948 */
1949void fuse_abort_conn(struct fuse_conn *fc)
1950{
Miklos Szeredid7133112006-04-10 22:54:55 -07001951 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001952 if (fc->connected) {
1953 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07001954 fc->blocked = 0;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001955 end_io_requests(fc);
Miklos Szeredi595afaf2010-09-07 13:42:41 +02001956 end_queued_requests(fc);
Bryan Green357ccf22011-03-01 16:43:52 -08001957 end_polls(fc);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001958 wake_up_all(&fc->waitq);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07001959 wake_up_all(&fc->blocked_waitq);
Jeff Dike385a17b2006-04-10 22:54:52 -07001960 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001961 }
Miklos Szeredid7133112006-04-10 22:54:55 -07001962 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001963}
Tejun Heo08cbf542009-04-14 10:54:53 +09001964EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001965
Tejun Heo08cbf542009-04-14 10:54:53 +09001966int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001967{
Miklos Szeredi0720b312006-04-10 22:54:55 -07001968 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001969 if (fc) {
Miklos Szeredid7133112006-04-10 22:54:55 -07001970 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -07001971 fc->connected = 0;
Miklos Szeredi595afaf2010-09-07 13:42:41 +02001972 fc->blocked = 0;
1973 end_queued_requests(fc);
Bryan Green357ccf22011-03-01 16:43:52 -08001974 end_polls(fc);
Miklos Szeredi595afaf2010-09-07 13:42:41 +02001975 wake_up_all(&fc->blocked_waitq);
Miklos Szeredid7133112006-04-10 22:54:55 -07001976 spin_unlock(&fc->lock);
Miklos Szeredibafa9652006-06-25 05:48:51 -07001977 fuse_conn_put(fc);
Jeff Dike385a17b2006-04-10 22:54:52 -07001978 }
Miklos Szeredif543f252006-01-16 22:14:35 -08001979
Miklos Szeredi334f4852005-09-09 13:10:27 -07001980 return 0;
1981}
Tejun Heo08cbf542009-04-14 10:54:53 +09001982EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001983
Jeff Dike385a17b2006-04-10 22:54:52 -07001984static int fuse_dev_fasync(int fd, struct file *file, int on)
1985{
1986 struct fuse_conn *fc = fuse_get_conn(file);
1987 if (!fc)
Miklos Szeredia87046d2006-04-10 22:54:56 -07001988 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07001989
1990 /* No locking - fasync_helper does its own locking */
1991 return fasync_helper(fd, file, on, &fc->fasync);
1992}
1993
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001994const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001995 .owner = THIS_MODULE,
1996 .llseek = no_llseek,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07001997 .read = do_sync_read,
1998 .aio_read = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02001999 .splice_read = fuse_dev_splice_read,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002000 .write = do_sync_write,
2001 .aio_write = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002002 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002003 .poll = fuse_dev_poll,
2004 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002005 .fasync = fuse_dev_fasync,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002006};
Tejun Heo08cbf542009-04-14 10:54:53 +09002007EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002008
2009static struct miscdevice fuse_miscdevice = {
2010 .minor = FUSE_MINOR,
2011 .name = "fuse",
2012 .fops = &fuse_dev_operations,
2013};
2014
2015int __init fuse_dev_init(void)
2016{
2017 int err = -ENOMEM;
2018 fuse_req_cachep = kmem_cache_create("fuse_request",
2019 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002020 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002021 if (!fuse_req_cachep)
2022 goto out;
2023
2024 err = misc_register(&fuse_miscdevice);
2025 if (err)
2026 goto out_cache_clean;
2027
2028 return 0;
2029
2030 out_cache_clean:
2031 kmem_cache_destroy(fuse_req_cachep);
2032 out:
2033 return err;
2034}
2035
2036void fuse_dev_cleanup(void)
2037{
2038 misc_deregister(&fuse_miscdevice);
2039 kmem_cache_destroy(fuse_req_cachep);
2040}