]>
Commit | Line | Data |
---|---|---|
334f485d MS |
1 | /* |
2 | FUSE: Filesystem in Userspace | |
1729a16c | 3 | Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu> |
334f485d MS |
4 | |
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> | |
dd3bb14f | 19 | #include <linux/pipe_fs_i.h> |
ce534fb0 MS |
20 | #include <linux/swap.h> |
21 | #include <linux/splice.h> | |
a27bb332 | 22 | #include <linux/aio.h> |
334f485d MS |
23 | |
24 | MODULE_ALIAS_MISCDEV(FUSE_MINOR); | |
578454ff | 25 | MODULE_ALIAS("devname:fuse"); |
334f485d | 26 | |
e18b890b | 27 | static struct kmem_cache *fuse_req_cachep; |
334f485d | 28 | |
8bfc016d | 29 | static struct fuse_conn *fuse_get_conn(struct file *file) |
334f485d | 30 | { |
0720b315 MS |
31 | /* |
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; | |
334f485d MS |
36 | } |
37 | ||
4250c066 | 38 | static void fuse_request_init(struct fuse_req *req, struct page **pages, |
b2430d75 | 39 | struct fuse_page_desc *page_descs, |
4250c066 | 40 | unsigned npages) |
334f485d MS |
41 | { |
42 | memset(req, 0, sizeof(*req)); | |
4250c066 | 43 | memset(pages, 0, sizeof(*pages) * npages); |
b2430d75 | 44 | memset(page_descs, 0, sizeof(*page_descs) * npages); |
334f485d | 45 | INIT_LIST_HEAD(&req->list); |
a4d27e75 | 46 | INIT_LIST_HEAD(&req->intr_entry); |
334f485d MS |
47 | init_waitqueue_head(&req->waitq); |
48 | atomic_set(&req->count, 1); | |
4250c066 | 49 | req->pages = pages; |
b2430d75 | 50 | req->page_descs = page_descs; |
4250c066 | 51 | req->max_pages = npages; |
334f485d MS |
52 | } |
53 | ||
4250c066 | 54 | static struct fuse_req *__fuse_request_alloc(unsigned npages, gfp_t flags) |
334f485d | 55 | { |
4250c066 MP |
56 | struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, flags); |
57 | if (req) { | |
58 | struct page **pages; | |
b2430d75 | 59 | struct fuse_page_desc *page_descs; |
4250c066 | 60 | |
b2430d75 | 61 | if (npages <= FUSE_REQ_INLINE_PAGES) { |
4250c066 | 62 | pages = req->inline_pages; |
b2430d75 MP |
63 | page_descs = req->inline_page_descs; |
64 | } else { | |
4250c066 | 65 | pages = kmalloc(sizeof(struct page *) * npages, flags); |
b2430d75 MP |
66 | page_descs = kmalloc(sizeof(struct fuse_page_desc) * |
67 | npages, flags); | |
68 | } | |
4250c066 | 69 | |
b2430d75 MP |
70 | if (!pages || !page_descs) { |
71 | kfree(pages); | |
72 | kfree(page_descs); | |
4250c066 MP |
73 | kmem_cache_free(fuse_req_cachep, req); |
74 | return NULL; | |
75 | } | |
76 | ||
b2430d75 | 77 | fuse_request_init(req, pages, page_descs, npages); |
4250c066 | 78 | } |
334f485d MS |
79 | return req; |
80 | } | |
4250c066 MP |
81 | |
82 | struct fuse_req *fuse_request_alloc(unsigned npages) | |
83 | { | |
84 | return __fuse_request_alloc(npages, GFP_KERNEL); | |
85 | } | |
08cbf542 | 86 | EXPORT_SYMBOL_GPL(fuse_request_alloc); |
334f485d | 87 | |
4250c066 | 88 | struct fuse_req *fuse_request_alloc_nofs(unsigned npages) |
3be5a52b | 89 | { |
4250c066 | 90 | return __fuse_request_alloc(npages, GFP_NOFS); |
3be5a52b MS |
91 | } |
92 | ||
334f485d MS |
93 | void fuse_request_free(struct fuse_req *req) |
94 | { | |
b2430d75 | 95 | if (req->pages != req->inline_pages) { |
4250c066 | 96 | kfree(req->pages); |
b2430d75 MP |
97 | kfree(req->page_descs); |
98 | } | |
334f485d MS |
99 | kmem_cache_free(fuse_req_cachep, req); |
100 | } | |
101 | ||
8bfc016d | 102 | static void block_sigs(sigset_t *oldset) |
334f485d MS |
103 | { |
104 | sigset_t mask; | |
105 | ||
106 | siginitsetinv(&mask, sigmask(SIGKILL)); | |
107 | sigprocmask(SIG_BLOCK, &mask, oldset); | |
108 | } | |
109 | ||
8bfc016d | 110 | static void restore_sigs(sigset_t *oldset) |
334f485d MS |
111 | { |
112 | sigprocmask(SIG_SETMASK, oldset, NULL); | |
113 | } | |
114 | ||
36cf66ed | 115 | void __fuse_get_request(struct fuse_req *req) |
334f485d MS |
116 | { |
117 | atomic_inc(&req->count); | |
118 | } | |
119 | ||
120 | /* Must be called with > 1 refcount */ | |
121 | static void __fuse_put_request(struct fuse_req *req) | |
122 | { | |
123 | BUG_ON(atomic_read(&req->count) < 2); | |
124 | atomic_dec(&req->count); | |
125 | } | |
126 | ||
33649c91 MS |
127 | static void fuse_req_init_context(struct fuse_req *req) |
128 | { | |
499dcf20 EB |
129 | req->in.h.uid = from_kuid_munged(&init_user_ns, current_fsuid()); |
130 | req->in.h.gid = from_kgid_munged(&init_user_ns, current_fsgid()); | |
33649c91 MS |
131 | req->in.h.pid = current->pid; |
132 | } | |
133 | ||
9759bd51 MS |
134 | void fuse_set_initialized(struct fuse_conn *fc) |
135 | { | |
136 | /* Make sure stores before this are seen on another CPU */ | |
137 | smp_wmb(); | |
138 | fc->initialized = 1; | |
139 | } | |
140 | ||
0aada884 MP |
141 | static bool fuse_block_alloc(struct fuse_conn *fc, bool for_background) |
142 | { | |
143 | return !fc->initialized || (for_background && fc->blocked); | |
144 | } | |
145 | ||
8b41e671 MP |
146 | static struct fuse_req *__fuse_get_req(struct fuse_conn *fc, unsigned npages, |
147 | bool for_background) | |
334f485d | 148 | { |
08a53cdc | 149 | struct fuse_req *req; |
08a53cdc | 150 | int err; |
9bc5ddda | 151 | atomic_inc(&fc->num_waiting); |
0aada884 MP |
152 | |
153 | if (fuse_block_alloc(fc, for_background)) { | |
154 | sigset_t oldset; | |
155 | int intr; | |
156 | ||
157 | block_sigs(&oldset); | |
722d2bea | 158 | intr = wait_event_interruptible_exclusive(fc->blocked_waitq, |
0aada884 MP |
159 | !fuse_block_alloc(fc, for_background)); |
160 | restore_sigs(&oldset); | |
161 | err = -EINTR; | |
162 | if (intr) | |
163 | goto out; | |
164 | } | |
9759bd51 MS |
165 | /* Matches smp_wmb() in fuse_set_initialized() */ |
166 | smp_rmb(); | |
08a53cdc | 167 | |
51eb01e7 MS |
168 | err = -ENOTCONN; |
169 | if (!fc->connected) | |
170 | goto out; | |
171 | ||
b111c8c0 | 172 | req = fuse_request_alloc(npages); |
9bc5ddda | 173 | err = -ENOMEM; |
722d2bea MP |
174 | if (!req) { |
175 | if (for_background) | |
176 | wake_up(&fc->blocked_waitq); | |
9bc5ddda | 177 | goto out; |
722d2bea | 178 | } |
334f485d | 179 | |
33649c91 | 180 | fuse_req_init_context(req); |
9bc5ddda | 181 | req->waiting = 1; |
8b41e671 | 182 | req->background = for_background; |
334f485d | 183 | return req; |
9bc5ddda MS |
184 | |
185 | out: | |
186 | atomic_dec(&fc->num_waiting); | |
187 | return ERR_PTR(err); | |
334f485d | 188 | } |
8b41e671 MP |
189 | |
190 | struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages) | |
191 | { | |
192 | return __fuse_get_req(fc, npages, false); | |
193 | } | |
08cbf542 | 194 | EXPORT_SYMBOL_GPL(fuse_get_req); |
334f485d | 195 | |
8b41e671 MP |
196 | struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc, |
197 | unsigned npages) | |
198 | { | |
199 | return __fuse_get_req(fc, npages, true); | |
200 | } | |
201 | EXPORT_SYMBOL_GPL(fuse_get_req_for_background); | |
202 | ||
33649c91 MS |
203 | /* |
204 | * Return request in fuse_file->reserved_req. However that may | |
205 | * currently be in use. If that is the case, wait for it to become | |
206 | * available. | |
207 | */ | |
208 | static struct fuse_req *get_reserved_req(struct fuse_conn *fc, | |
209 | struct file *file) | |
210 | { | |
211 | struct fuse_req *req = NULL; | |
212 | struct fuse_file *ff = file->private_data; | |
213 | ||
214 | do { | |
de5e3dec | 215 | wait_event(fc->reserved_req_waitq, ff->reserved_req); |
33649c91 MS |
216 | spin_lock(&fc->lock); |
217 | if (ff->reserved_req) { | |
218 | req = ff->reserved_req; | |
219 | ff->reserved_req = NULL; | |
cb0942b8 | 220 | req->stolen_file = get_file(file); |
33649c91 MS |
221 | } |
222 | spin_unlock(&fc->lock); | |
223 | } while (!req); | |
224 | ||
225 | return req; | |
226 | } | |
227 | ||
228 | /* | |
229 | * Put stolen request back into fuse_file->reserved_req | |
230 | */ | |
231 | static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req) | |
232 | { | |
233 | struct file *file = req->stolen_file; | |
234 | struct fuse_file *ff = file->private_data; | |
235 | ||
236 | spin_lock(&fc->lock); | |
b2430d75 | 237 | fuse_request_init(req, req->pages, req->page_descs, req->max_pages); |
33649c91 MS |
238 | BUG_ON(ff->reserved_req); |
239 | ff->reserved_req = req; | |
de5e3dec | 240 | wake_up_all(&fc->reserved_req_waitq); |
33649c91 MS |
241 | spin_unlock(&fc->lock); |
242 | fput(file); | |
243 | } | |
244 | ||
245 | /* | |
246 | * Gets a requests for a file operation, always succeeds | |
247 | * | |
248 | * This is used for sending the FLUSH request, which must get to | |
249 | * userspace, due to POSIX locks which may need to be unlocked. | |
250 | * | |
251 | * If allocation fails due to OOM, use the reserved request in | |
252 | * fuse_file. | |
253 | * | |
254 | * This is very unlikely to deadlock accidentally, since the | |
255 | * filesystem should not have it's own file open. If deadlock is | |
256 | * intentional, it can still be broken by "aborting" the filesystem. | |
257 | */ | |
b111c8c0 MP |
258 | struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc, |
259 | struct file *file) | |
33649c91 MS |
260 | { |
261 | struct fuse_req *req; | |
262 | ||
263 | atomic_inc(&fc->num_waiting); | |
0aada884 | 264 | wait_event(fc->blocked_waitq, fc->initialized); |
9759bd51 MS |
265 | /* Matches smp_wmb() in fuse_set_initialized() */ |
266 | smp_rmb(); | |
b111c8c0 | 267 | req = fuse_request_alloc(0); |
33649c91 MS |
268 | if (!req) |
269 | req = get_reserved_req(fc, file); | |
270 | ||
271 | fuse_req_init_context(req); | |
272 | req->waiting = 1; | |
8b41e671 | 273 | req->background = 0; |
33649c91 MS |
274 | return req; |
275 | } | |
276 | ||
334f485d | 277 | void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req) |
7128ec2a MS |
278 | { |
279 | if (atomic_dec_and_test(&req->count)) { | |
722d2bea MP |
280 | if (unlikely(req->background)) { |
281 | /* | |
282 | * We get here in the unlikely case that a background | |
283 | * request was allocated but not sent | |
284 | */ | |
285 | spin_lock(&fc->lock); | |
286 | if (!fc->blocked) | |
287 | wake_up(&fc->blocked_waitq); | |
288 | spin_unlock(&fc->lock); | |
289 | } | |
290 | ||
9bc5ddda MS |
291 | if (req->waiting) |
292 | atomic_dec(&fc->num_waiting); | |
33649c91 MS |
293 | |
294 | if (req->stolen_file) | |
295 | put_reserved_req(fc, req); | |
296 | else | |
297 | fuse_request_free(req); | |
7128ec2a MS |
298 | } |
299 | } | |
08cbf542 | 300 | EXPORT_SYMBOL_GPL(fuse_put_request); |
7128ec2a | 301 | |
d12def1b MS |
302 | static unsigned len_args(unsigned numargs, struct fuse_arg *args) |
303 | { | |
304 | unsigned nbytes = 0; | |
305 | unsigned i; | |
306 | ||
307 | for (i = 0; i < numargs; i++) | |
308 | nbytes += args[i].size; | |
309 | ||
310 | return nbytes; | |
311 | } | |
312 | ||
313 | static u64 fuse_get_unique(struct fuse_conn *fc) | |
314 | { | |
315 | fc->reqctr++; | |
316 | /* zero is special */ | |
317 | if (fc->reqctr == 0) | |
318 | fc->reqctr = 1; | |
319 | ||
320 | return fc->reqctr; | |
321 | } | |
322 | ||
323 | static void queue_request(struct fuse_conn *fc, struct fuse_req *req) | |
324 | { | |
d12def1b MS |
325 | req->in.h.len = sizeof(struct fuse_in_header) + |
326 | len_args(req->in.numargs, (struct fuse_arg *) req->in.args); | |
327 | list_add_tail(&req->list, &fc->pending); | |
328 | req->state = FUSE_REQ_PENDING; | |
329 | if (!req->waiting) { | |
330 | req->waiting = 1; | |
331 | atomic_inc(&fc->num_waiting); | |
332 | } | |
333 | wake_up(&fc->waitq); | |
334 | kill_fasync(&fc->fasync, SIGIO, POLL_IN); | |
335 | } | |
336 | ||
07e77dca MS |
337 | void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget, |
338 | u64 nodeid, u64 nlookup) | |
339 | { | |
02c048b9 MS |
340 | forget->forget_one.nodeid = nodeid; |
341 | forget->forget_one.nlookup = nlookup; | |
07e77dca MS |
342 | |
343 | spin_lock(&fc->lock); | |
5dfcc87f MS |
344 | if (fc->connected) { |
345 | fc->forget_list_tail->next = forget; | |
346 | fc->forget_list_tail = forget; | |
347 | wake_up(&fc->waitq); | |
348 | kill_fasync(&fc->fasync, SIGIO, POLL_IN); | |
349 | } else { | |
350 | kfree(forget); | |
351 | } | |
07e77dca MS |
352 | spin_unlock(&fc->lock); |
353 | } | |
354 | ||
d12def1b MS |
355 | static void flush_bg_queue(struct fuse_conn *fc) |
356 | { | |
7a6d3c8b | 357 | while (fc->active_background < fc->max_background && |
d12def1b MS |
358 | !list_empty(&fc->bg_queue)) { |
359 | struct fuse_req *req; | |
360 | ||
361 | req = list_entry(fc->bg_queue.next, struct fuse_req, list); | |
362 | list_del(&req->list); | |
363 | fc->active_background++; | |
2d45ba38 | 364 | req->in.h.unique = fuse_get_unique(fc); |
d12def1b MS |
365 | queue_request(fc, req); |
366 | } | |
367 | } | |
368 | ||
334f485d MS |
369 | /* |
370 | * This function is called when a request is finished. Either a reply | |
f9a2842e | 371 | * has arrived or it was aborted (and not yet sent) or some error |
f43b155a | 372 | * occurred during communication with userspace, or the device file |
51eb01e7 MS |
373 | * was closed. The requester thread is woken up (if still waiting), |
374 | * the 'end' callback is called if given, else the reference to the | |
375 | * request is released | |
7128ec2a | 376 | * |
d7133114 | 377 | * Called with fc->lock, unlocks it |
334f485d MS |
378 | */ |
379 | static void request_end(struct fuse_conn *fc, struct fuse_req *req) | |
b9ca67b2 | 380 | __releases(fc->lock) |
334f485d | 381 | { |
51eb01e7 MS |
382 | void (*end) (struct fuse_conn *, struct fuse_req *) = req->end; |
383 | req->end = NULL; | |
d77a1d5b | 384 | list_del(&req->list); |
a4d27e75 | 385 | list_del(&req->intr_entry); |
83cfd493 | 386 | req->state = FUSE_REQ_FINISHED; |
51eb01e7 | 387 | if (req->background) { |
722d2bea MP |
388 | req->background = 0; |
389 | ||
390 | if (fc->num_background == fc->max_background) | |
51eb01e7 | 391 | fc->blocked = 0; |
722d2bea MP |
392 | |
393 | /* Wake up next waiter, if any */ | |
3c18ef81 | 394 | if (!fc->blocked && waitqueue_active(&fc->blocked_waitq)) |
722d2bea MP |
395 | wake_up(&fc->blocked_waitq); |
396 | ||
7a6d3c8b | 397 | if (fc->num_background == fc->congestion_threshold && |
a325f9b9 | 398 | fc->connected && fc->bdi_initialized) { |
8aa7e847 JA |
399 | clear_bdi_congested(&fc->bdi, BLK_RW_SYNC); |
400 | clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC); | |
f92b99b9 | 401 | } |
51eb01e7 | 402 | fc->num_background--; |
d12def1b MS |
403 | fc->active_background--; |
404 | flush_bg_queue(fc); | |
334f485d | 405 | } |
51eb01e7 | 406 | spin_unlock(&fc->lock); |
51eb01e7 MS |
407 | wake_up(&req->waitq); |
408 | if (end) | |
409 | end(fc, req); | |
e9bb09dd | 410 | fuse_put_request(fc, req); |
334f485d MS |
411 | } |
412 | ||
a4d27e75 MS |
413 | static void wait_answer_interruptible(struct fuse_conn *fc, |
414 | struct fuse_req *req) | |
b9ca67b2 MS |
415 | __releases(fc->lock) |
416 | __acquires(fc->lock) | |
a4d27e75 MS |
417 | { |
418 | if (signal_pending(current)) | |
419 | return; | |
420 | ||
421 | spin_unlock(&fc->lock); | |
422 | wait_event_interruptible(req->waitq, req->state == FUSE_REQ_FINISHED); | |
423 | spin_lock(&fc->lock); | |
424 | } | |
425 | ||
426 | static void queue_interrupt(struct fuse_conn *fc, struct fuse_req *req) | |
427 | { | |
428 | list_add_tail(&req->intr_entry, &fc->interrupts); | |
429 | wake_up(&fc->waitq); | |
430 | kill_fasync(&fc->fasync, SIGIO, POLL_IN); | |
431 | } | |
432 | ||
7c352bdf | 433 | static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req) |
b9ca67b2 MS |
434 | __releases(fc->lock) |
435 | __acquires(fc->lock) | |
334f485d | 436 | { |
a4d27e75 MS |
437 | if (!fc->no_interrupt) { |
438 | /* Any signal may interrupt this */ | |
439 | wait_answer_interruptible(fc, req); | |
334f485d | 440 | |
a4d27e75 MS |
441 | if (req->aborted) |
442 | goto aborted; | |
443 | if (req->state == FUSE_REQ_FINISHED) | |
444 | return; | |
445 | ||
446 | req->interrupted = 1; | |
447 | if (req->state == FUSE_REQ_SENT) | |
448 | queue_interrupt(fc, req); | |
449 | } | |
450 | ||
a131de0a | 451 | if (!req->force) { |
a4d27e75 MS |
452 | sigset_t oldset; |
453 | ||
454 | /* Only fatal signals may interrupt this */ | |
51eb01e7 | 455 | block_sigs(&oldset); |
a4d27e75 | 456 | wait_answer_interruptible(fc, req); |
51eb01e7 | 457 | restore_sigs(&oldset); |
a131de0a MS |
458 | |
459 | if (req->aborted) | |
460 | goto aborted; | |
461 | if (req->state == FUSE_REQ_FINISHED) | |
462 | return; | |
463 | ||
464 | /* Request is not yet in userspace, bail out */ | |
465 | if (req->state == FUSE_REQ_PENDING) { | |
466 | list_del(&req->list); | |
467 | __fuse_put_request(req); | |
468 | req->out.h.error = -EINTR; | |
469 | return; | |
470 | } | |
51eb01e7 | 471 | } |
334f485d | 472 | |
a131de0a MS |
473 | /* |
474 | * Either request is already in userspace, or it was forced. | |
475 | * Wait it out. | |
476 | */ | |
477 | spin_unlock(&fc->lock); | |
478 | wait_event(req->waitq, req->state == FUSE_REQ_FINISHED); | |
479 | spin_lock(&fc->lock); | |
a4d27e75 | 480 | |
a131de0a MS |
481 | if (!req->aborted) |
482 | return; | |
a4d27e75 MS |
483 | |
484 | aborted: | |
a131de0a | 485 | BUG_ON(req->state != FUSE_REQ_FINISHED); |
334f485d MS |
486 | if (req->locked) { |
487 | /* This is uninterruptible sleep, because data is | |
488 | being copied to/from the buffers of req. During | |
489 | locked state, there mustn't be any filesystem | |
490 | operation (e.g. page fault), since that could lead | |
491 | to deadlock */ | |
d7133114 | 492 | spin_unlock(&fc->lock); |
334f485d | 493 | wait_event(req->waitq, !req->locked); |
d7133114 | 494 | spin_lock(&fc->lock); |
334f485d | 495 | } |
334f485d MS |
496 | } |
497 | ||
6a4e922c | 498 | static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req) |
334f485d | 499 | { |
8b41e671 | 500 | BUG_ON(req->background); |
d7133114 | 501 | spin_lock(&fc->lock); |
1e9a4ed9 | 502 | if (!fc->connected) |
334f485d MS |
503 | req->out.h.error = -ENOTCONN; |
504 | else if (fc->conn_error) | |
505 | req->out.h.error = -ECONNREFUSED; | |
506 | else { | |
2d45ba38 | 507 | req->in.h.unique = fuse_get_unique(fc); |
334f485d MS |
508 | queue_request(fc, req); |
509 | /* acquire extra reference, since request is still needed | |
510 | after request_end() */ | |
511 | __fuse_get_request(req); | |
512 | ||
7c352bdf | 513 | request_wait_answer(fc, req); |
334f485d | 514 | } |
d7133114 | 515 | spin_unlock(&fc->lock); |
334f485d | 516 | } |
6a4e922c EW |
517 | |
518 | void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req) | |
519 | { | |
520 | req->isreply = 1; | |
521 | __fuse_request_send(fc, req); | |
522 | } | |
08cbf542 | 523 | EXPORT_SYMBOL_GPL(fuse_request_send); |
334f485d | 524 | |
21f62174 MS |
525 | static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args) |
526 | { | |
527 | if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS) | |
528 | args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE; | |
529 | ||
530 | if (fc->minor < 9) { | |
531 | switch (args->in.h.opcode) { | |
532 | case FUSE_LOOKUP: | |
533 | case FUSE_CREATE: | |
534 | case FUSE_MKNOD: | |
535 | case FUSE_MKDIR: | |
536 | case FUSE_SYMLINK: | |
537 | case FUSE_LINK: | |
538 | args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE; | |
539 | break; | |
540 | case FUSE_GETATTR: | |
541 | case FUSE_SETATTR: | |
542 | args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE; | |
543 | break; | |
544 | } | |
545 | } | |
546 | if (fc->minor < 12) { | |
547 | switch (args->in.h.opcode) { | |
548 | case FUSE_CREATE: | |
549 | args->in.args[0].size = sizeof(struct fuse_open_in); | |
550 | break; | |
551 | case FUSE_MKNOD: | |
552 | args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE; | |
553 | break; | |
554 | } | |
555 | } | |
556 | } | |
557 | ||
7078187a MS |
558 | ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args) |
559 | { | |
560 | struct fuse_req *req; | |
561 | ssize_t ret; | |
562 | ||
563 | req = fuse_get_req(fc, 0); | |
564 | if (IS_ERR(req)) | |
565 | return PTR_ERR(req); | |
566 | ||
21f62174 MS |
567 | /* Needs to be done after fuse_get_req() so that fc->minor is valid */ |
568 | fuse_adjust_compat(fc, args); | |
569 | ||
7078187a MS |
570 | req->in.h.opcode = args->in.h.opcode; |
571 | req->in.h.nodeid = args->in.h.nodeid; | |
572 | req->in.numargs = args->in.numargs; | |
573 | memcpy(req->in.args, args->in.args, | |
574 | args->in.numargs * sizeof(struct fuse_in_arg)); | |
575 | req->out.argvar = args->out.argvar; | |
576 | req->out.numargs = args->out.numargs; | |
577 | memcpy(req->out.args, args->out.args, | |
578 | args->out.numargs * sizeof(struct fuse_arg)); | |
579 | fuse_request_send(fc, req); | |
580 | ret = req->out.h.error; | |
581 | if (!ret && args->out.argvar) { | |
582 | BUG_ON(args->out.numargs != 1); | |
583 | ret = req->out.args[0].size; | |
584 | } | |
585 | fuse_put_request(fc, req); | |
586 | ||
587 | return ret; | |
588 | } | |
589 | ||
b93f858a TH |
590 | static void fuse_request_send_nowait_locked(struct fuse_conn *fc, |
591 | struct fuse_req *req) | |
d12def1b | 592 | { |
8b41e671 | 593 | BUG_ON(!req->background); |
d12def1b | 594 | fc->num_background++; |
7a6d3c8b | 595 | if (fc->num_background == fc->max_background) |
d12def1b | 596 | fc->blocked = 1; |
7a6d3c8b | 597 | if (fc->num_background == fc->congestion_threshold && |
a325f9b9 | 598 | fc->bdi_initialized) { |
8aa7e847 JA |
599 | set_bdi_congested(&fc->bdi, BLK_RW_SYNC); |
600 | set_bdi_congested(&fc->bdi, BLK_RW_ASYNC); | |
d12def1b MS |
601 | } |
602 | list_add_tail(&req->list, &fc->bg_queue); | |
603 | flush_bg_queue(fc); | |
604 | } | |
605 | ||
b93f858a | 606 | static void fuse_request_send_nowait(struct fuse_conn *fc, struct fuse_req *req) |
334f485d | 607 | { |
d7133114 | 608 | spin_lock(&fc->lock); |
1e9a4ed9 | 609 | if (fc->connected) { |
b93f858a | 610 | fuse_request_send_nowait_locked(fc, req); |
d7133114 | 611 | spin_unlock(&fc->lock); |
334f485d MS |
612 | } else { |
613 | req->out.h.error = -ENOTCONN; | |
614 | request_end(fc, req); | |
615 | } | |
616 | } | |
617 | ||
b93f858a | 618 | void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req) |
334f485d MS |
619 | { |
620 | req->isreply = 1; | |
b93f858a | 621 | fuse_request_send_nowait(fc, req); |
334f485d | 622 | } |
08cbf542 | 623 | EXPORT_SYMBOL_GPL(fuse_request_send_background); |
334f485d | 624 | |
2d45ba38 MS |
625 | static int fuse_request_send_notify_reply(struct fuse_conn *fc, |
626 | struct fuse_req *req, u64 unique) | |
627 | { | |
628 | int err = -ENODEV; | |
629 | ||
630 | req->isreply = 0; | |
631 | req->in.h.unique = unique; | |
632 | spin_lock(&fc->lock); | |
633 | if (fc->connected) { | |
634 | queue_request(fc, req); | |
635 | err = 0; | |
636 | } | |
637 | spin_unlock(&fc->lock); | |
638 | ||
639 | return err; | |
640 | } | |
641 | ||
3be5a52b MS |
642 | /* |
643 | * Called under fc->lock | |
644 | * | |
645 | * fc->connected must have been checked previously | |
646 | */ | |
b93f858a TH |
647 | void fuse_request_send_background_locked(struct fuse_conn *fc, |
648 | struct fuse_req *req) | |
3be5a52b MS |
649 | { |
650 | req->isreply = 1; | |
b93f858a | 651 | fuse_request_send_nowait_locked(fc, req); |
3be5a52b MS |
652 | } |
653 | ||
0b05b183 AA |
654 | void fuse_force_forget(struct file *file, u64 nodeid) |
655 | { | |
6131ffaa | 656 | struct inode *inode = file_inode(file); |
0b05b183 AA |
657 | struct fuse_conn *fc = get_fuse_conn(inode); |
658 | struct fuse_req *req; | |
659 | struct fuse_forget_in inarg; | |
660 | ||
661 | memset(&inarg, 0, sizeof(inarg)); | |
662 | inarg.nlookup = 1; | |
b111c8c0 | 663 | req = fuse_get_req_nofail_nopages(fc, file); |
0b05b183 AA |
664 | req->in.h.opcode = FUSE_FORGET; |
665 | req->in.h.nodeid = nodeid; | |
666 | req->in.numargs = 1; | |
667 | req->in.args[0].size = sizeof(inarg); | |
668 | req->in.args[0].value = &inarg; | |
669 | req->isreply = 0; | |
6a4e922c EW |
670 | __fuse_request_send(fc, req); |
671 | /* ignore errors */ | |
672 | fuse_put_request(fc, req); | |
0b05b183 AA |
673 | } |
674 | ||
334f485d MS |
675 | /* |
676 | * Lock the request. Up to the next unlock_request() there mustn't be | |
677 | * anything that could cause a page-fault. If the request was already | |
f9a2842e | 678 | * aborted bail out. |
334f485d | 679 | */ |
d7133114 | 680 | static int lock_request(struct fuse_conn *fc, struct fuse_req *req) |
334f485d MS |
681 | { |
682 | int err = 0; | |
683 | if (req) { | |
d7133114 | 684 | spin_lock(&fc->lock); |
f9a2842e | 685 | if (req->aborted) |
334f485d MS |
686 | err = -ENOENT; |
687 | else | |
688 | req->locked = 1; | |
d7133114 | 689 | spin_unlock(&fc->lock); |
334f485d MS |
690 | } |
691 | return err; | |
692 | } | |
693 | ||
694 | /* | |
f9a2842e | 695 | * Unlock request. If it was aborted during being locked, the |
334f485d MS |
696 | * requester thread is currently waiting for it to be unlocked, so |
697 | * wake it up. | |
698 | */ | |
d7133114 | 699 | static void unlock_request(struct fuse_conn *fc, struct fuse_req *req) |
334f485d MS |
700 | { |
701 | if (req) { | |
d7133114 | 702 | spin_lock(&fc->lock); |
334f485d | 703 | req->locked = 0; |
f9a2842e | 704 | if (req->aborted) |
334f485d | 705 | wake_up(&req->waitq); |
d7133114 | 706 | spin_unlock(&fc->lock); |
334f485d MS |
707 | } |
708 | } | |
709 | ||
710 | struct fuse_copy_state { | |
d7133114 | 711 | struct fuse_conn *fc; |
334f485d MS |
712 | int write; |
713 | struct fuse_req *req; | |
714 | const struct iovec *iov; | |
dd3bb14f MS |
715 | struct pipe_buffer *pipebufs; |
716 | struct pipe_buffer *currbuf; | |
717 | struct pipe_inode_info *pipe; | |
334f485d MS |
718 | unsigned long nr_segs; |
719 | unsigned long seglen; | |
720 | unsigned long addr; | |
721 | struct page *pg; | |
334f485d | 722 | unsigned len; |
c55a01d3 | 723 | unsigned offset; |
ce534fb0 | 724 | unsigned move_pages:1; |
334f485d MS |
725 | }; |
726 | ||
d7133114 | 727 | static void fuse_copy_init(struct fuse_copy_state *cs, struct fuse_conn *fc, |
c3021629 | 728 | int write, |
d7133114 | 729 | const struct iovec *iov, unsigned long nr_segs) |
334f485d MS |
730 | { |
731 | memset(cs, 0, sizeof(*cs)); | |
d7133114 | 732 | cs->fc = fc; |
334f485d | 733 | cs->write = write; |
334f485d MS |
734 | cs->iov = iov; |
735 | cs->nr_segs = nr_segs; | |
736 | } | |
737 | ||
738 | /* Unmap and put previous page of userspace buffer */ | |
8bfc016d | 739 | static void fuse_copy_finish(struct fuse_copy_state *cs) |
334f485d | 740 | { |
dd3bb14f MS |
741 | if (cs->currbuf) { |
742 | struct pipe_buffer *buf = cs->currbuf; | |
743 | ||
c55a01d3 | 744 | if (cs->write) |
c3021629 | 745 | buf->len = PAGE_SIZE - cs->len; |
dd3bb14f | 746 | cs->currbuf = NULL; |
c55a01d3 | 747 | } else if (cs->pg) { |
334f485d MS |
748 | if (cs->write) { |
749 | flush_dcache_page(cs->pg); | |
750 | set_page_dirty_lock(cs->pg); | |
751 | } | |
752 | put_page(cs->pg); | |
334f485d | 753 | } |
c55a01d3 | 754 | cs->pg = NULL; |
334f485d MS |
755 | } |
756 | ||
757 | /* | |
758 | * Get another pagefull of userspace buffer, and map it to kernel | |
759 | * address space, and lock request | |
760 | */ | |
761 | static int fuse_copy_fill(struct fuse_copy_state *cs) | |
762 | { | |
c55a01d3 | 763 | struct page *page; |
334f485d MS |
764 | int err; |
765 | ||
d7133114 | 766 | unlock_request(cs->fc, cs->req); |
334f485d | 767 | fuse_copy_finish(cs); |
dd3bb14f MS |
768 | if (cs->pipebufs) { |
769 | struct pipe_buffer *buf = cs->pipebufs; | |
770 | ||
c3021629 MS |
771 | if (!cs->write) { |
772 | err = buf->ops->confirm(cs->pipe, buf); | |
773 | if (err) | |
774 | return err; | |
775 | ||
776 | BUG_ON(!cs->nr_segs); | |
777 | cs->currbuf = buf; | |
c55a01d3 MS |
778 | cs->pg = buf->page; |
779 | cs->offset = buf->offset; | |
c3021629 | 780 | cs->len = buf->len; |
c3021629 MS |
781 | cs->pipebufs++; |
782 | cs->nr_segs--; | |
783 | } else { | |
c3021629 MS |
784 | if (cs->nr_segs == cs->pipe->buffers) |
785 | return -EIO; | |
786 | ||
787 | page = alloc_page(GFP_HIGHUSER); | |
788 | if (!page) | |
789 | return -ENOMEM; | |
790 | ||
791 | buf->page = page; | |
792 | buf->offset = 0; | |
793 | buf->len = 0; | |
794 | ||
795 | cs->currbuf = buf; | |
c55a01d3 MS |
796 | cs->pg = page; |
797 | cs->offset = 0; | |
c3021629 MS |
798 | cs->len = PAGE_SIZE; |
799 | cs->pipebufs++; | |
800 | cs->nr_segs++; | |
801 | } | |
dd3bb14f MS |
802 | } else { |
803 | if (!cs->seglen) { | |
804 | BUG_ON(!cs->nr_segs); | |
805 | cs->seglen = cs->iov[0].iov_len; | |
806 | cs->addr = (unsigned long) cs->iov[0].iov_base; | |
807 | cs->iov++; | |
808 | cs->nr_segs--; | |
809 | } | |
c55a01d3 | 810 | err = get_user_pages_fast(cs->addr, 1, cs->write, &page); |
dd3bb14f MS |
811 | if (err < 0) |
812 | return err; | |
813 | BUG_ON(err != 1); | |
c55a01d3 MS |
814 | cs->pg = page; |
815 | cs->offset = cs->addr % PAGE_SIZE; | |
816 | cs->len = min(PAGE_SIZE - cs->offset, cs->seglen); | |
dd3bb14f MS |
817 | cs->seglen -= cs->len; |
818 | cs->addr += cs->len; | |
334f485d | 819 | } |
334f485d | 820 | |
d7133114 | 821 | return lock_request(cs->fc, cs->req); |
334f485d MS |
822 | } |
823 | ||
824 | /* Do as much copy to/from userspace buffer as we can */ | |
8bfc016d | 825 | static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size) |
334f485d MS |
826 | { |
827 | unsigned ncpy = min(*size, cs->len); | |
828 | if (val) { | |
c55a01d3 MS |
829 | void *pgaddr = kmap_atomic(cs->pg); |
830 | void *buf = pgaddr + cs->offset; | |
831 | ||
334f485d | 832 | if (cs->write) |
c55a01d3 | 833 | memcpy(buf, *val, ncpy); |
334f485d | 834 | else |
c55a01d3 MS |
835 | memcpy(*val, buf, ncpy); |
836 | ||
837 | kunmap_atomic(pgaddr); | |
334f485d MS |
838 | *val += ncpy; |
839 | } | |
840 | *size -= ncpy; | |
841 | cs->len -= ncpy; | |
c55a01d3 | 842 | cs->offset += ncpy; |
334f485d MS |
843 | return ncpy; |
844 | } | |
845 | ||
ce534fb0 MS |
846 | static int fuse_check_page(struct page *page) |
847 | { | |
848 | if (page_mapcount(page) || | |
849 | page->mapping != NULL || | |
850 | page_count(page) != 1 || | |
851 | (page->flags & PAGE_FLAGS_CHECK_AT_PREP & | |
852 | ~(1 << PG_locked | | |
853 | 1 << PG_referenced | | |
854 | 1 << PG_uptodate | | |
855 | 1 << PG_lru | | |
856 | 1 << PG_active | | |
857 | 1 << PG_reclaim))) { | |
858 | printk(KERN_WARNING "fuse: trying to steal weird page\n"); | |
859 | printk(KERN_WARNING " page=%p index=%li flags=%08lx, count=%i, mapcount=%i, mapping=%p\n", page, page->index, page->flags, page_count(page), page_mapcount(page), page->mapping); | |
860 | return 1; | |
861 | } | |
862 | return 0; | |
863 | } | |
864 | ||
865 | static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep) | |
866 | { | |
867 | int err; | |
868 | struct page *oldpage = *pagep; | |
869 | struct page *newpage; | |
870 | struct pipe_buffer *buf = cs->pipebufs; | |
ce534fb0 MS |
871 | |
872 | unlock_request(cs->fc, cs->req); | |
873 | fuse_copy_finish(cs); | |
874 | ||
875 | err = buf->ops->confirm(cs->pipe, buf); | |
876 | if (err) | |
877 | return err; | |
878 | ||
879 | BUG_ON(!cs->nr_segs); | |
880 | cs->currbuf = buf; | |
881 | cs->len = buf->len; | |
882 | cs->pipebufs++; | |
883 | cs->nr_segs--; | |
884 | ||
885 | if (cs->len != PAGE_SIZE) | |
886 | goto out_fallback; | |
887 | ||
888 | if (buf->ops->steal(cs->pipe, buf) != 0) | |
889 | goto out_fallback; | |
890 | ||
891 | newpage = buf->page; | |
892 | ||
893 | if (WARN_ON(!PageUptodate(newpage))) | |
894 | return -EIO; | |
895 | ||
896 | ClearPageMappedToDisk(newpage); | |
897 | ||
898 | if (fuse_check_page(newpage) != 0) | |
899 | goto out_fallback_unlock; | |
900 | ||
ce534fb0 MS |
901 | /* |
902 | * This is a new and locked page, it shouldn't be mapped or | |
903 | * have any special flags on it | |
904 | */ | |
905 | if (WARN_ON(page_mapped(oldpage))) | |
906 | goto out_fallback_unlock; | |
907 | if (WARN_ON(page_has_private(oldpage))) | |
908 | goto out_fallback_unlock; | |
909 | if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage))) | |
910 | goto out_fallback_unlock; | |
911 | if (WARN_ON(PageMlocked(oldpage))) | |
912 | goto out_fallback_unlock; | |
913 | ||
ef6a3c63 | 914 | err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL); |
ce534fb0 | 915 | if (err) { |
ef6a3c63 MS |
916 | unlock_page(newpage); |
917 | return err; | |
ce534fb0 | 918 | } |
ef6a3c63 | 919 | |
ce534fb0 MS |
920 | page_cache_get(newpage); |
921 | ||
922 | if (!(buf->flags & PIPE_BUF_FLAG_LRU)) | |
923 | lru_cache_add_file(newpage); | |
924 | ||
925 | err = 0; | |
926 | spin_lock(&cs->fc->lock); | |
927 | if (cs->req->aborted) | |
928 | err = -ENOENT; | |
929 | else | |
930 | *pagep = newpage; | |
931 | spin_unlock(&cs->fc->lock); | |
932 | ||
933 | if (err) { | |
934 | unlock_page(newpage); | |
935 | page_cache_release(newpage); | |
936 | return err; | |
937 | } | |
938 | ||
939 | unlock_page(oldpage); | |
940 | page_cache_release(oldpage); | |
941 | cs->len = 0; | |
942 | ||
943 | return 0; | |
944 | ||
945 | out_fallback_unlock: | |
946 | unlock_page(newpage); | |
947 | out_fallback: | |
c55a01d3 MS |
948 | cs->pg = buf->page; |
949 | cs->offset = buf->offset; | |
ce534fb0 MS |
950 | |
951 | err = lock_request(cs->fc, cs->req); | |
952 | if (err) | |
953 | return err; | |
954 | ||
955 | return 1; | |
956 | } | |
957 | ||
c3021629 MS |
958 | static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page, |
959 | unsigned offset, unsigned count) | |
960 | { | |
961 | struct pipe_buffer *buf; | |
962 | ||
963 | if (cs->nr_segs == cs->pipe->buffers) | |
964 | return -EIO; | |
965 | ||
966 | unlock_request(cs->fc, cs->req); | |
967 | fuse_copy_finish(cs); | |
968 | ||
969 | buf = cs->pipebufs; | |
970 | page_cache_get(page); | |
971 | buf->page = page; | |
972 | buf->offset = offset; | |
973 | buf->len = count; | |
974 | ||
975 | cs->pipebufs++; | |
976 | cs->nr_segs++; | |
977 | cs->len = 0; | |
978 | ||
979 | return 0; | |
980 | } | |
981 | ||
334f485d MS |
982 | /* |
983 | * Copy a page in the request to/from the userspace buffer. Must be | |
984 | * done atomically | |
985 | */ | |
ce534fb0 | 986 | static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep, |
8bfc016d | 987 | unsigned offset, unsigned count, int zeroing) |
334f485d | 988 | { |
ce534fb0 MS |
989 | int err; |
990 | struct page *page = *pagep; | |
991 | ||
b6777c40 MS |
992 | if (page && zeroing && count < PAGE_SIZE) |
993 | clear_highpage(page); | |
994 | ||
334f485d | 995 | while (count) { |
c3021629 MS |
996 | if (cs->write && cs->pipebufs && page) { |
997 | return fuse_ref_page(cs, page, offset, count); | |
998 | } else if (!cs->len) { | |
ce534fb0 MS |
999 | if (cs->move_pages && page && |
1000 | offset == 0 && count == PAGE_SIZE) { | |
1001 | err = fuse_try_move_page(cs, pagep); | |
1002 | if (err <= 0) | |
1003 | return err; | |
1004 | } else { | |
1005 | err = fuse_copy_fill(cs); | |
1006 | if (err) | |
1007 | return err; | |
1008 | } | |
1729a16c | 1009 | } |
334f485d | 1010 | if (page) { |
2408f6ef | 1011 | void *mapaddr = kmap_atomic(page); |
334f485d MS |
1012 | void *buf = mapaddr + offset; |
1013 | offset += fuse_copy_do(cs, &buf, &count); | |
2408f6ef | 1014 | kunmap_atomic(mapaddr); |
334f485d MS |
1015 | } else |
1016 | offset += fuse_copy_do(cs, NULL, &count); | |
1017 | } | |
1018 | if (page && !cs->write) | |
1019 | flush_dcache_page(page); | |
1020 | return 0; | |
1021 | } | |
1022 | ||
1023 | /* Copy pages in the request to/from userspace buffer */ | |
1024 | static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes, | |
1025 | int zeroing) | |
1026 | { | |
1027 | unsigned i; | |
1028 | struct fuse_req *req = cs->req; | |
334f485d MS |
1029 | |
1030 | for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) { | |
ce534fb0 | 1031 | int err; |
85f40aec MP |
1032 | unsigned offset = req->page_descs[i].offset; |
1033 | unsigned count = min(nbytes, req->page_descs[i].length); | |
ce534fb0 MS |
1034 | |
1035 | err = fuse_copy_page(cs, &req->pages[i], offset, count, | |
1036 | zeroing); | |
334f485d MS |
1037 | if (err) |
1038 | return err; | |
1039 | ||
1040 | nbytes -= count; | |
334f485d MS |
1041 | } |
1042 | return 0; | |
1043 | } | |
1044 | ||
1045 | /* Copy a single argument in the request to/from userspace buffer */ | |
1046 | static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size) | |
1047 | { | |
1048 | while (size) { | |
1729a16c MS |
1049 | if (!cs->len) { |
1050 | int err = fuse_copy_fill(cs); | |
1051 | if (err) | |
1052 | return err; | |
1053 | } | |
334f485d MS |
1054 | fuse_copy_do(cs, &val, &size); |
1055 | } | |
1056 | return 0; | |
1057 | } | |
1058 | ||
1059 | /* Copy request arguments to/from userspace buffer */ | |
1060 | static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs, | |
1061 | unsigned argpages, struct fuse_arg *args, | |
1062 | int zeroing) | |
1063 | { | |
1064 | int err = 0; | |
1065 | unsigned i; | |
1066 | ||
1067 | for (i = 0; !err && i < numargs; i++) { | |
1068 | struct fuse_arg *arg = &args[i]; | |
1069 | if (i == numargs - 1 && argpages) | |
1070 | err = fuse_copy_pages(cs, arg->size, zeroing); | |
1071 | else | |
1072 | err = fuse_copy_one(cs, arg->value, arg->size); | |
1073 | } | |
1074 | return err; | |
1075 | } | |
1076 | ||
07e77dca MS |
1077 | static int forget_pending(struct fuse_conn *fc) |
1078 | { | |
1079 | return fc->forget_list_head.next != NULL; | |
1080 | } | |
1081 | ||
a4d27e75 MS |
1082 | static int request_pending(struct fuse_conn *fc) |
1083 | { | |
07e77dca MS |
1084 | return !list_empty(&fc->pending) || !list_empty(&fc->interrupts) || |
1085 | forget_pending(fc); | |
a4d27e75 MS |
1086 | } |
1087 | ||
334f485d MS |
1088 | /* Wait until a request is available on the pending list */ |
1089 | static void request_wait(struct fuse_conn *fc) | |
b9ca67b2 MS |
1090 | __releases(fc->lock) |
1091 | __acquires(fc->lock) | |
334f485d MS |
1092 | { |
1093 | DECLARE_WAITQUEUE(wait, current); | |
1094 | ||
1095 | add_wait_queue_exclusive(&fc->waitq, &wait); | |
a4d27e75 | 1096 | while (fc->connected && !request_pending(fc)) { |
334f485d MS |
1097 | set_current_state(TASK_INTERRUPTIBLE); |
1098 | if (signal_pending(current)) | |
1099 | break; | |
1100 | ||
d7133114 | 1101 | spin_unlock(&fc->lock); |
334f485d | 1102 | schedule(); |
d7133114 | 1103 | spin_lock(&fc->lock); |
334f485d MS |
1104 | } |
1105 | set_current_state(TASK_RUNNING); | |
1106 | remove_wait_queue(&fc->waitq, &wait); | |
1107 | } | |
1108 | ||
a4d27e75 MS |
1109 | /* |
1110 | * Transfer an interrupt request to userspace | |
1111 | * | |
1112 | * Unlike other requests this is assembled on demand, without a need | |
1113 | * to allocate a separate fuse_req structure. | |
1114 | * | |
1115 | * Called with fc->lock held, releases it | |
1116 | */ | |
c3021629 MS |
1117 | static int fuse_read_interrupt(struct fuse_conn *fc, struct fuse_copy_state *cs, |
1118 | size_t nbytes, struct fuse_req *req) | |
b9ca67b2 | 1119 | __releases(fc->lock) |
a4d27e75 | 1120 | { |
a4d27e75 MS |
1121 | struct fuse_in_header ih; |
1122 | struct fuse_interrupt_in arg; | |
1123 | unsigned reqsize = sizeof(ih) + sizeof(arg); | |
1124 | int err; | |
1125 | ||
1126 | list_del_init(&req->intr_entry); | |
1127 | req->intr_unique = fuse_get_unique(fc); | |
1128 | memset(&ih, 0, sizeof(ih)); | |
1129 | memset(&arg, 0, sizeof(arg)); | |
1130 | ih.len = reqsize; | |
1131 | ih.opcode = FUSE_INTERRUPT; | |
1132 | ih.unique = req->intr_unique; | |
1133 | arg.unique = req->in.h.unique; | |
1134 | ||
1135 | spin_unlock(&fc->lock); | |
c3021629 | 1136 | if (nbytes < reqsize) |
a4d27e75 MS |
1137 | return -EINVAL; |
1138 | ||
c3021629 | 1139 | err = fuse_copy_one(cs, &ih, sizeof(ih)); |
a4d27e75 | 1140 | if (!err) |
c3021629 MS |
1141 | err = fuse_copy_one(cs, &arg, sizeof(arg)); |
1142 | fuse_copy_finish(cs); | |
a4d27e75 MS |
1143 | |
1144 | return err ? err : reqsize; | |
1145 | } | |
1146 | ||
02c048b9 MS |
1147 | static struct fuse_forget_link *dequeue_forget(struct fuse_conn *fc, |
1148 | unsigned max, | |
1149 | unsigned *countp) | |
07e77dca | 1150 | { |
02c048b9 MS |
1151 | struct fuse_forget_link *head = fc->forget_list_head.next; |
1152 | struct fuse_forget_link **newhead = &head; | |
1153 | unsigned count; | |
07e77dca | 1154 | |
02c048b9 MS |
1155 | for (count = 0; *newhead != NULL && count < max; count++) |
1156 | newhead = &(*newhead)->next; | |
1157 | ||
1158 | fc->forget_list_head.next = *newhead; | |
1159 | *newhead = NULL; | |
07e77dca MS |
1160 | if (fc->forget_list_head.next == NULL) |
1161 | fc->forget_list_tail = &fc->forget_list_head; | |
1162 | ||
02c048b9 MS |
1163 | if (countp != NULL) |
1164 | *countp = count; | |
1165 | ||
1166 | return head; | |
07e77dca MS |
1167 | } |
1168 | ||
1169 | static int fuse_read_single_forget(struct fuse_conn *fc, | |
1170 | struct fuse_copy_state *cs, | |
1171 | size_t nbytes) | |
1172 | __releases(fc->lock) | |
1173 | { | |
1174 | int err; | |
02c048b9 | 1175 | struct fuse_forget_link *forget = dequeue_forget(fc, 1, NULL); |
07e77dca | 1176 | struct fuse_forget_in arg = { |
02c048b9 | 1177 | .nlookup = forget->forget_one.nlookup, |
07e77dca MS |
1178 | }; |
1179 | struct fuse_in_header ih = { | |
1180 | .opcode = FUSE_FORGET, | |
02c048b9 | 1181 | .nodeid = forget->forget_one.nodeid, |
07e77dca MS |
1182 | .unique = fuse_get_unique(fc), |
1183 | .len = sizeof(ih) + sizeof(arg), | |
1184 | }; | |
1185 | ||
1186 | spin_unlock(&fc->lock); | |
1187 | kfree(forget); | |
1188 | if (nbytes < ih.len) | |
1189 | return -EINVAL; | |
1190 | ||
1191 | err = fuse_copy_one(cs, &ih, sizeof(ih)); | |
1192 | if (!err) | |
1193 | err = fuse_copy_one(cs, &arg, sizeof(arg)); | |
1194 | fuse_copy_finish(cs); | |
1195 | ||
1196 | if (err) | |
1197 | return err; | |
1198 | ||
1199 | return ih.len; | |
1200 | } | |
1201 | ||
02c048b9 MS |
1202 | static int fuse_read_batch_forget(struct fuse_conn *fc, |
1203 | struct fuse_copy_state *cs, size_t nbytes) | |
1204 | __releases(fc->lock) | |
1205 | { | |
1206 | int err; | |
1207 | unsigned max_forgets; | |
1208 | unsigned count; | |
1209 | struct fuse_forget_link *head; | |
1210 | struct fuse_batch_forget_in arg = { .count = 0 }; | |
1211 | struct fuse_in_header ih = { | |
1212 | .opcode = FUSE_BATCH_FORGET, | |
1213 | .unique = fuse_get_unique(fc), | |
1214 | .len = sizeof(ih) + sizeof(arg), | |
1215 | }; | |
1216 | ||
1217 | if (nbytes < ih.len) { | |
1218 | spin_unlock(&fc->lock); | |
1219 | return -EINVAL; | |
1220 | } | |
1221 | ||
1222 | max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one); | |
1223 | head = dequeue_forget(fc, max_forgets, &count); | |
1224 | spin_unlock(&fc->lock); | |
1225 | ||
1226 | arg.count = count; | |
1227 | ih.len += count * sizeof(struct fuse_forget_one); | |
1228 | err = fuse_copy_one(cs, &ih, sizeof(ih)); | |
1229 | if (!err) | |
1230 | err = fuse_copy_one(cs, &arg, sizeof(arg)); | |
1231 | ||
1232 | while (head) { | |
1233 | struct fuse_forget_link *forget = head; | |
1234 | ||
1235 | if (!err) { | |
1236 | err = fuse_copy_one(cs, &forget->forget_one, | |
1237 | sizeof(forget->forget_one)); | |
1238 | } | |
1239 | head = forget->next; | |
1240 | kfree(forget); | |
1241 | } | |
1242 | ||
1243 | fuse_copy_finish(cs); | |
1244 | ||
1245 | if (err) | |
1246 | return err; | |
1247 | ||
1248 | return ih.len; | |
1249 | } | |
1250 | ||
1251 | static int fuse_read_forget(struct fuse_conn *fc, struct fuse_copy_state *cs, | |
1252 | size_t nbytes) | |
1253 | __releases(fc->lock) | |
1254 | { | |
1255 | if (fc->minor < 16 || fc->forget_list_head.next->next == NULL) | |
1256 | return fuse_read_single_forget(fc, cs, nbytes); | |
1257 | else | |
1258 | return fuse_read_batch_forget(fc, cs, nbytes); | |
1259 | } | |
1260 | ||
334f485d MS |
1261 | /* |
1262 | * Read a single request into the userspace filesystem's buffer. This | |
1263 | * function waits until a request is available, then removes it from | |
1264 | * the pending list and copies request data to userspace buffer. If | |
f9a2842e MS |
1265 | * no reply is needed (FORGET) or request has been aborted or there |
1266 | * was an error during the copying then it's finished by calling | |
334f485d MS |
1267 | * request_end(). Otherwise add it to the processing list, and set |
1268 | * the 'sent' flag. | |
1269 | */ | |
c3021629 MS |
1270 | static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file, |
1271 | struct fuse_copy_state *cs, size_t nbytes) | |
334f485d MS |
1272 | { |
1273 | int err; | |
334f485d MS |
1274 | struct fuse_req *req; |
1275 | struct fuse_in *in; | |
334f485d MS |
1276 | unsigned reqsize; |
1277 | ||
1d3d752b | 1278 | restart: |
d7133114 | 1279 | spin_lock(&fc->lock); |
e5ac1d1e JD |
1280 | err = -EAGAIN; |
1281 | if ((file->f_flags & O_NONBLOCK) && fc->connected && | |
a4d27e75 | 1282 | !request_pending(fc)) |
e5ac1d1e JD |
1283 | goto err_unlock; |
1284 | ||
334f485d MS |
1285 | request_wait(fc); |
1286 | err = -ENODEV; | |
9ba7cbba | 1287 | if (!fc->connected) |
334f485d MS |
1288 | goto err_unlock; |
1289 | err = -ERESTARTSYS; | |
a4d27e75 | 1290 | if (!request_pending(fc)) |
334f485d MS |
1291 | goto err_unlock; |
1292 | ||
a4d27e75 MS |
1293 | if (!list_empty(&fc->interrupts)) { |
1294 | req = list_entry(fc->interrupts.next, struct fuse_req, | |
1295 | intr_entry); | |
c3021629 | 1296 | return fuse_read_interrupt(fc, cs, nbytes, req); |
a4d27e75 MS |
1297 | } |
1298 | ||
07e77dca MS |
1299 | if (forget_pending(fc)) { |
1300 | if (list_empty(&fc->pending) || fc->forget_batch-- > 0) | |
02c048b9 | 1301 | return fuse_read_forget(fc, cs, nbytes); |
07e77dca MS |
1302 | |
1303 | if (fc->forget_batch <= -8) | |
1304 | fc->forget_batch = 16; | |
1305 | } | |
1306 | ||
334f485d | 1307 | req = list_entry(fc->pending.next, struct fuse_req, list); |
83cfd493 | 1308 | req->state = FUSE_REQ_READING; |
d77a1d5b | 1309 | list_move(&req->list, &fc->io); |
334f485d MS |
1310 | |
1311 | in = &req->in; | |
1d3d752b MS |
1312 | reqsize = in->h.len; |
1313 | /* If request is too large, reply with an error and restart the read */ | |
c3021629 | 1314 | if (nbytes < reqsize) { |
1d3d752b MS |
1315 | req->out.h.error = -EIO; |
1316 | /* SETXATTR is special, since it may contain too large data */ | |
1317 | if (in->h.opcode == FUSE_SETXATTR) | |
1318 | req->out.h.error = -E2BIG; | |
1319 | request_end(fc, req); | |
1320 | goto restart; | |
334f485d | 1321 | } |
d7133114 | 1322 | spin_unlock(&fc->lock); |
c3021629 MS |
1323 | cs->req = req; |
1324 | err = fuse_copy_one(cs, &in->h, sizeof(in->h)); | |
1d3d752b | 1325 | if (!err) |
c3021629 | 1326 | err = fuse_copy_args(cs, in->numargs, in->argpages, |
1d3d752b | 1327 | (struct fuse_arg *) in->args, 0); |
c3021629 | 1328 | fuse_copy_finish(cs); |
d7133114 | 1329 | spin_lock(&fc->lock); |
334f485d | 1330 | req->locked = 0; |
c9c9d7df MS |
1331 | if (req->aborted) { |
1332 | request_end(fc, req); | |
1333 | return -ENODEV; | |
1334 | } | |
334f485d | 1335 | if (err) { |
c9c9d7df | 1336 | req->out.h.error = -EIO; |
334f485d MS |
1337 | request_end(fc, req); |
1338 | return err; | |
1339 | } | |
1340 | if (!req->isreply) | |
1341 | request_end(fc, req); | |
1342 | else { | |
83cfd493 | 1343 | req->state = FUSE_REQ_SENT; |
d77a1d5b | 1344 | list_move_tail(&req->list, &fc->processing); |
a4d27e75 MS |
1345 | if (req->interrupted) |
1346 | queue_interrupt(fc, req); | |
d7133114 | 1347 | spin_unlock(&fc->lock); |
334f485d MS |
1348 | } |
1349 | return reqsize; | |
1350 | ||
1351 | err_unlock: | |
d7133114 | 1352 | spin_unlock(&fc->lock); |
334f485d MS |
1353 | return err; |
1354 | } | |
1355 | ||
c3021629 MS |
1356 | static ssize_t fuse_dev_read(struct kiocb *iocb, const struct iovec *iov, |
1357 | unsigned long nr_segs, loff_t pos) | |
1358 | { | |
1359 | struct fuse_copy_state cs; | |
1360 | struct file *file = iocb->ki_filp; | |
1361 | struct fuse_conn *fc = fuse_get_conn(file); | |
1362 | if (!fc) | |
1363 | return -EPERM; | |
1364 | ||
1365 | fuse_copy_init(&cs, fc, 1, iov, nr_segs); | |
1366 | ||
1367 | return fuse_dev_do_read(fc, file, &cs, iov_length(iov, nr_segs)); | |
1368 | } | |
1369 | ||
c3021629 MS |
1370 | static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos, |
1371 | struct pipe_inode_info *pipe, | |
1372 | size_t len, unsigned int flags) | |
1373 | { | |
1374 | int ret; | |
1375 | int page_nr = 0; | |
1376 | int do_wakeup = 0; | |
1377 | struct pipe_buffer *bufs; | |
1378 | struct fuse_copy_state cs; | |
1379 | struct fuse_conn *fc = fuse_get_conn(in); | |
1380 | if (!fc) | |
1381 | return -EPERM; | |
1382 | ||
07e77dca | 1383 | bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL); |
c3021629 MS |
1384 | if (!bufs) |
1385 | return -ENOMEM; | |
1386 | ||
1387 | fuse_copy_init(&cs, fc, 1, NULL, 0); | |
1388 | cs.pipebufs = bufs; | |
1389 | cs.pipe = pipe; | |
1390 | ret = fuse_dev_do_read(fc, in, &cs, len); | |
1391 | if (ret < 0) | |
1392 | goto out; | |
1393 | ||
1394 | ret = 0; | |
1395 | pipe_lock(pipe); | |
1396 | ||
1397 | if (!pipe->readers) { | |
1398 | send_sig(SIGPIPE, current, 0); | |
1399 | if (!ret) | |
1400 | ret = -EPIPE; | |
1401 | goto out_unlock; | |
1402 | } | |
1403 | ||
1404 | if (pipe->nrbufs + cs.nr_segs > pipe->buffers) { | |
1405 | ret = -EIO; | |
1406 | goto out_unlock; | |
1407 | } | |
1408 | ||
1409 | while (page_nr < cs.nr_segs) { | |
1410 | int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1); | |
1411 | struct pipe_buffer *buf = pipe->bufs + newbuf; | |
1412 | ||
1413 | buf->page = bufs[page_nr].page; | |
1414 | buf->offset = bufs[page_nr].offset; | |
1415 | buf->len = bufs[page_nr].len; | |
28a625cb MS |
1416 | /* |
1417 | * Need to be careful about this. Having buf->ops in module | |
1418 | * code can Oops if the buffer persists after module unload. | |
1419 | */ | |
1420 | buf->ops = &nosteal_pipe_buf_ops; | |
c3021629 MS |
1421 | |
1422 | pipe->nrbufs++; | |
1423 | page_nr++; | |
1424 | ret += buf->len; | |
1425 | ||
6447a3cf | 1426 | if (pipe->files) |
c3021629 MS |
1427 | do_wakeup = 1; |
1428 | } | |
1429 | ||
1430 | out_unlock: | |
1431 | pipe_unlock(pipe); | |
1432 | ||
1433 | if (do_wakeup) { | |
1434 | smp_mb(); | |
1435 | if (waitqueue_active(&pipe->wait)) | |
1436 | wake_up_interruptible(&pipe->wait); | |
1437 | kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN); | |
1438 | } | |
1439 | ||
1440 | out: | |
1441 | for (; page_nr < cs.nr_segs; page_nr++) | |
1442 | page_cache_release(bufs[page_nr].page); | |
1443 | ||
1444 | kfree(bufs); | |
1445 | return ret; | |
1446 | } | |
1447 | ||
95668a69 TH |
1448 | static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size, |
1449 | struct fuse_copy_state *cs) | |
1450 | { | |
1451 | struct fuse_notify_poll_wakeup_out outarg; | |
f6d47a17 | 1452 | int err = -EINVAL; |
95668a69 TH |
1453 | |
1454 | if (size != sizeof(outarg)) | |
f6d47a17 | 1455 | goto err; |
95668a69 TH |
1456 | |
1457 | err = fuse_copy_one(cs, &outarg, sizeof(outarg)); | |
1458 | if (err) | |
f6d47a17 | 1459 | goto err; |
95668a69 | 1460 | |
f6d47a17 | 1461 | fuse_copy_finish(cs); |
95668a69 | 1462 | return fuse_notify_poll_wakeup(fc, &outarg); |
f6d47a17 MS |
1463 | |
1464 | err: | |
1465 | fuse_copy_finish(cs); | |
1466 | return err; | |
95668a69 TH |
1467 | } |
1468 | ||
3b463ae0 JM |
1469 | static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size, |
1470 | struct fuse_copy_state *cs) | |
1471 | { | |
1472 | struct fuse_notify_inval_inode_out outarg; | |
1473 | int err = -EINVAL; | |
1474 | ||
1475 | if (size != sizeof(outarg)) | |
1476 | goto err; | |
1477 | ||
1478 | err = fuse_copy_one(cs, &outarg, sizeof(outarg)); | |
1479 | if (err) | |
1480 | goto err; | |
1481 | fuse_copy_finish(cs); | |
1482 | ||
1483 | down_read(&fc->killsb); | |
1484 | err = -ENOENT; | |
b21dda43 MS |
1485 | if (fc->sb) { |
1486 | err = fuse_reverse_inval_inode(fc->sb, outarg.ino, | |
1487 | outarg.off, outarg.len); | |
1488 | } | |
3b463ae0 JM |
1489 | up_read(&fc->killsb); |
1490 | return err; | |
1491 | ||
1492 | err: | |
1493 | fuse_copy_finish(cs); | |
1494 | return err; | |
1495 | } | |
1496 | ||
1497 | static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size, | |
1498 | struct fuse_copy_state *cs) | |
1499 | { | |
1500 | struct fuse_notify_inval_entry_out outarg; | |
b2d82ee3 FW |
1501 | int err = -ENOMEM; |
1502 | char *buf; | |
3b463ae0 JM |
1503 | struct qstr name; |
1504 | ||
b2d82ee3 FW |
1505 | buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL); |
1506 | if (!buf) | |
1507 | goto err; | |
1508 | ||
1509 | err = -EINVAL; | |
3b463ae0 JM |
1510 | if (size < sizeof(outarg)) |
1511 | goto err; | |
1512 | ||
1513 | err = fuse_copy_one(cs, &outarg, sizeof(outarg)); | |
1514 | if (err) | |
1515 | goto err; | |
1516 | ||
1517 | err = -ENAMETOOLONG; | |
1518 | if (outarg.namelen > FUSE_NAME_MAX) | |
1519 | goto err; | |
1520 | ||
c2183d1e MS |
1521 | err = -EINVAL; |
1522 | if (size != sizeof(outarg) + outarg.namelen + 1) | |
1523 | goto err; | |
1524 | ||
3b463ae0 JM |
1525 | name.name = buf; |
1526 | name.len = outarg.namelen; | |
1527 | err = fuse_copy_one(cs, buf, outarg.namelen + 1); | |
1528 | if (err) | |
1529 | goto err; | |
1530 | fuse_copy_finish(cs); | |
1531 | buf[outarg.namelen] = 0; | |
1532 | name.hash = full_name_hash(name.name, name.len); | |
1533 | ||
1534 | down_read(&fc->killsb); | |
1535 | err = -ENOENT; | |
b21dda43 | 1536 | if (fc->sb) |
451d0f59 JM |
1537 | err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name); |
1538 | up_read(&fc->killsb); | |
1539 | kfree(buf); | |
1540 | return err; | |
1541 | ||
1542 | err: | |
1543 | kfree(buf); | |
1544 | fuse_copy_finish(cs); | |
1545 | return err; | |
1546 | } | |
1547 | ||
1548 | static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size, | |
1549 | struct fuse_copy_state *cs) | |
1550 | { | |
1551 | struct fuse_notify_delete_out outarg; | |
1552 | int err = -ENOMEM; | |
1553 | char *buf; | |
1554 | struct qstr name; | |
1555 | ||
1556 | buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL); | |
1557 | if (!buf) | |
1558 | goto err; | |
1559 | ||
1560 | err = -EINVAL; | |
1561 | if (size < sizeof(outarg)) | |
1562 | goto err; | |
1563 | ||
1564 | err = fuse_copy_one(cs, &outarg, sizeof(outarg)); | |
1565 | if (err) | |
1566 | goto err; | |
1567 | ||
1568 | err = -ENAMETOOLONG; | |
1569 | if (outarg.namelen > FUSE_NAME_MAX) | |
1570 | goto err; | |
1571 | ||
1572 | err = -EINVAL; | |
1573 | if (size != sizeof(outarg) + outarg.namelen + 1) | |
1574 | goto err; | |
1575 | ||
1576 | name.name = buf; | |
1577 | name.len = outarg.namelen; | |
1578 | err = fuse_copy_one(cs, buf, outarg.namelen + 1); | |
1579 | if (err) | |
1580 | goto err; | |
1581 | fuse_copy_finish(cs); | |
1582 | buf[outarg.namelen] = 0; | |
1583 | name.hash = full_name_hash(name.name, name.len); | |
1584 | ||
1585 | down_read(&fc->killsb); | |
1586 | err = -ENOENT; | |
1587 | if (fc->sb) | |
1588 | err = fuse_reverse_inval_entry(fc->sb, outarg.parent, | |
1589 | outarg.child, &name); | |
3b463ae0 | 1590 | up_read(&fc->killsb); |
b2d82ee3 | 1591 | kfree(buf); |
3b463ae0 JM |
1592 | return err; |
1593 | ||
1594 | err: | |
b2d82ee3 | 1595 | kfree(buf); |
3b463ae0 JM |
1596 | fuse_copy_finish(cs); |
1597 | return err; | |
1598 | } | |
1599 | ||
a1d75f25 MS |
1600 | static int fuse_notify_store(struct fuse_conn *fc, unsigned int size, |
1601 | struct fuse_copy_state *cs) | |
1602 | { | |
1603 | struct fuse_notify_store_out outarg; | |
1604 | struct inode *inode; | |
1605 | struct address_space *mapping; | |
1606 | u64 nodeid; | |
1607 | int err; | |
1608 | pgoff_t index; | |
1609 | unsigned int offset; | |
1610 | unsigned int num; | |
1611 | loff_t file_size; | |
1612 | loff_t end; | |
1613 | ||
1614 | err = -EINVAL; | |
1615 | if (size < sizeof(outarg)) | |
1616 | goto out_finish; | |
1617 | ||
1618 | err = fuse_copy_one(cs, &outarg, sizeof(outarg)); | |
1619 | if (err) | |
1620 | goto out_finish; | |
1621 | ||
1622 | err = -EINVAL; | |
1623 | if (size - sizeof(outarg) != outarg.size) | |
1624 | goto out_finish; | |
1625 | ||
1626 | nodeid = outarg.nodeid; | |
1627 | ||
1628 | down_read(&fc->killsb); | |
1629 | ||
1630 | err = -ENOENT; | |
1631 | if (!fc->sb) | |
1632 | goto out_up_killsb; | |
1633 | ||
1634 | inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid); | |
1635 | if (!inode) | |
1636 | goto out_up_killsb; | |
1637 | ||
1638 | mapping = inode->i_mapping; | |
1639 | index = outarg.offset >> PAGE_CACHE_SHIFT; | |
1640 | offset = outarg.offset & ~PAGE_CACHE_MASK; | |
1641 | file_size = i_size_read(inode); | |
1642 | end = outarg.offset + outarg.size; | |
1643 | if (end > file_size) { | |
1644 | file_size = end; | |
1645 | fuse_write_update_size(inode, file_size); | |
1646 | } | |
1647 | ||
1648 | num = outarg.size; | |
1649 | while (num) { | |
1650 | struct page *page; | |
1651 | unsigned int this_num; | |
1652 | ||
1653 | err = -ENOMEM; | |
1654 | page = find_or_create_page(mapping, index, | |
1655 | mapping_gfp_mask(mapping)); | |
1656 | if (!page) | |
1657 | goto out_iput; | |
1658 | ||
1659 | this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset); | |
1660 | err = fuse_copy_page(cs, &page, offset, this_num, 0); | |
063ec1e5 MS |
1661 | if (!err && offset == 0 && |
1662 | (this_num == PAGE_CACHE_SIZE || file_size == end)) | |
a1d75f25 MS |
1663 | SetPageUptodate(page); |
1664 | unlock_page(page); | |
1665 | page_cache_release(page); | |
1666 | ||
1667 | if (err) | |
1668 | goto out_iput; | |
1669 | ||
1670 | num -= this_num; | |
1671 | offset = 0; | |
1672 | index++; | |
1673 | } | |
1674 | ||
1675 | err = 0; | |
1676 | ||
1677 | out_iput: | |
1678 | iput(inode); | |
1679 | out_up_killsb: | |
1680 | up_read(&fc->killsb); | |
1681 | out_finish: | |
1682 | fuse_copy_finish(cs); | |
1683 | return err; | |
1684 | } | |
1685 | ||
2d45ba38 MS |
1686 | static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req) |
1687 | { | |
b745bc85 | 1688 | release_pages(req->pages, req->num_pages, false); |
2d45ba38 MS |
1689 | } |
1690 | ||
1691 | static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode, | |
1692 | struct fuse_notify_retrieve_out *outarg) | |
1693 | { | |
1694 | int err; | |
1695 | struct address_space *mapping = inode->i_mapping; | |
1696 | struct fuse_req *req; | |
1697 | pgoff_t index; | |
1698 | loff_t file_size; | |
1699 | unsigned int num; | |
1700 | unsigned int offset; | |
0157443c | 1701 | size_t total_len = 0; |
4d53dc99 | 1702 | int num_pages; |
2d45ba38 | 1703 | |
4d53dc99 MP |
1704 | offset = outarg->offset & ~PAGE_CACHE_MASK; |
1705 | file_size = i_size_read(inode); | |
1706 | ||
1707 | num = outarg->size; | |
1708 | if (outarg->offset > file_size) | |
1709 | num = 0; | |
1710 | else if (outarg->offset + num > file_size) | |
1711 | num = file_size - outarg->offset; | |
1712 | ||
1713 | num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT; | |
1714 | num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ); | |
1715 | ||
1716 | req = fuse_get_req(fc, num_pages); | |
2d45ba38 MS |
1717 | if (IS_ERR(req)) |
1718 | return PTR_ERR(req); | |
1719 | ||
2d45ba38 MS |
1720 | req->in.h.opcode = FUSE_NOTIFY_REPLY; |
1721 | req->in.h.nodeid = outarg->nodeid; | |
1722 | req->in.numargs = 2; | |
1723 | req->in.argpages = 1; | |
b2430d75 | 1724 | req->page_descs[0].offset = offset; |
2d45ba38 MS |
1725 | req->end = fuse_retrieve_end; |
1726 | ||
1727 | index = outarg->offset >> PAGE_CACHE_SHIFT; | |
2d45ba38 | 1728 | |
4d53dc99 | 1729 | while (num && req->num_pages < num_pages) { |
2d45ba38 MS |
1730 | struct page *page; |
1731 | unsigned int this_num; | |
1732 | ||
1733 | page = find_get_page(mapping, index); | |
1734 | if (!page) | |
1735 | break; | |
1736 | ||
1737 | this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset); | |
1738 | req->pages[req->num_pages] = page; | |
85f40aec | 1739 | req->page_descs[req->num_pages].length = this_num; |
2d45ba38 MS |
1740 | req->num_pages++; |
1741 | ||
c9e67d48 | 1742 | offset = 0; |
2d45ba38 MS |
1743 | num -= this_num; |
1744 | total_len += this_num; | |
48706d0a | 1745 | index++; |
2d45ba38 MS |
1746 | } |
1747 | req->misc.retrieve_in.offset = outarg->offset; | |
1748 | req->misc.retrieve_in.size = total_len; | |
1749 | req->in.args[0].size = sizeof(req->misc.retrieve_in); | |
1750 | req->in.args[0].value = &req->misc.retrieve_in; | |
1751 | req->in.args[1].size = total_len; | |
1752 | ||
1753 | err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique); | |
1754 | if (err) | |
1755 | fuse_retrieve_end(fc, req); | |
1756 | ||
1757 | return err; | |
1758 | } | |
1759 | ||
1760 | static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size, | |
1761 | struct fuse_copy_state *cs) | |
1762 | { | |
1763 | struct fuse_notify_retrieve_out outarg; | |
1764 | struct inode *inode; | |
1765 | int err; | |
1766 | ||
1767 | err = -EINVAL; | |
1768 | if (size != sizeof(outarg)) | |
1769 | goto copy_finish; | |
1770 | ||
1771 | err = fuse_copy_one(cs, &outarg, sizeof(outarg)); | |
1772 | if (err) | |
1773 | goto copy_finish; | |
1774 | ||
1775 | fuse_copy_finish(cs); | |
1776 | ||
1777 | down_read(&fc->killsb); | |
1778 | err = -ENOENT; | |
1779 | if (fc->sb) { | |
1780 | u64 nodeid = outarg.nodeid; | |
1781 | ||
1782 | inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid); | |
1783 | if (inode) { | |
1784 | err = fuse_retrieve(fc, inode, &outarg); | |
1785 | iput(inode); | |
1786 | } | |
1787 | } | |
1788 | up_read(&fc->killsb); | |
1789 | ||
1790 | return err; | |
1791 | ||
1792 | copy_finish: | |
1793 | fuse_copy_finish(cs); | |
1794 | return err; | |
1795 | } | |
1796 | ||
8599396b TH |
1797 | static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code, |
1798 | unsigned int size, struct fuse_copy_state *cs) | |
1799 | { | |
0d278362 MS |
1800 | /* Don't try to move pages (yet) */ |
1801 | cs->move_pages = 0; | |
1802 | ||
8599396b | 1803 | switch (code) { |
95668a69 TH |
1804 | case FUSE_NOTIFY_POLL: |
1805 | return fuse_notify_poll(fc, size, cs); | |
1806 | ||
3b463ae0 JM |
1807 | case FUSE_NOTIFY_INVAL_INODE: |
1808 | return fuse_notify_inval_inode(fc, size, cs); | |
1809 | ||
1810 | case FUSE_NOTIFY_INVAL_ENTRY: | |
1811 | return fuse_notify_inval_entry(fc, size, cs); | |
1812 | ||
a1d75f25 MS |
1813 | case FUSE_NOTIFY_STORE: |
1814 | return fuse_notify_store(fc, size, cs); | |
1815 | ||
2d45ba38 MS |
1816 | case FUSE_NOTIFY_RETRIEVE: |
1817 | return fuse_notify_retrieve(fc, size, cs); | |
1818 | ||
451d0f59 JM |
1819 | case FUSE_NOTIFY_DELETE: |
1820 | return fuse_notify_delete(fc, size, cs); | |
1821 | ||
8599396b | 1822 | default: |
f6d47a17 | 1823 | fuse_copy_finish(cs); |
8599396b TH |
1824 | return -EINVAL; |
1825 | } | |
1826 | } | |
1827 | ||
334f485d MS |
1828 | /* Look up request on processing list by unique ID */ |
1829 | static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique) | |
1830 | { | |
05726aca | 1831 | struct fuse_req *req; |
334f485d | 1832 | |
05726aca | 1833 | list_for_each_entry(req, &fc->processing, list) { |
a4d27e75 | 1834 | if (req->in.h.unique == unique || req->intr_unique == unique) |
334f485d MS |
1835 | return req; |
1836 | } | |
1837 | return NULL; | |
1838 | } | |
1839 | ||
1840 | static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out, | |
1841 | unsigned nbytes) | |
1842 | { | |
1843 | unsigned reqsize = sizeof(struct fuse_out_header); | |
1844 | ||
1845 | if (out->h.error) | |
1846 | return nbytes != reqsize ? -EINVAL : 0; | |
1847 | ||
1848 | reqsize += len_args(out->numargs, out->args); | |
1849 | ||
1850 | if (reqsize < nbytes || (reqsize > nbytes && !out->argvar)) | |
1851 | return -EINVAL; | |
1852 | else if (reqsize > nbytes) { | |
1853 | struct fuse_arg *lastarg = &out->args[out->numargs-1]; | |
1854 | unsigned diffsize = reqsize - nbytes; | |
1855 | if (diffsize > lastarg->size) | |
1856 | return -EINVAL; | |
1857 | lastarg->size -= diffsize; | |
1858 | } | |
1859 | return fuse_copy_args(cs, out->numargs, out->argpages, out->args, | |
1860 | out->page_zeroing); | |
1861 | } | |
1862 | ||
1863 | /* | |
1864 | * Write a single reply to a request. First the header is copied from | |
1865 | * the write buffer. The request is then searched on the processing | |
1866 | * list by the unique ID found in the header. If found, then remove | |
1867 | * it from the list and copy the rest of the buffer to the request. | |
1868 | * The request is finished by calling request_end() | |
1869 | */ | |
dd3bb14f MS |
1870 | static ssize_t fuse_dev_do_write(struct fuse_conn *fc, |
1871 | struct fuse_copy_state *cs, size_t nbytes) | |
334f485d MS |
1872 | { |
1873 | int err; | |
334f485d MS |
1874 | struct fuse_req *req; |
1875 | struct fuse_out_header oh; | |
334f485d | 1876 | |
334f485d MS |
1877 | if (nbytes < sizeof(struct fuse_out_header)) |
1878 | return -EINVAL; | |
1879 | ||
dd3bb14f | 1880 | err = fuse_copy_one(cs, &oh, sizeof(oh)); |
334f485d MS |
1881 | if (err) |
1882 | goto err_finish; | |
8599396b TH |
1883 | |
1884 | err = -EINVAL; | |
1885 | if (oh.len != nbytes) | |
1886 | goto err_finish; | |
1887 | ||
1888 | /* | |
1889 | * Zero oh.unique indicates unsolicited notification message | |
1890 | * and error contains notification code. | |
1891 | */ | |
1892 | if (!oh.unique) { | |
dd3bb14f | 1893 | err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs); |
8599396b TH |
1894 | return err ? err : nbytes; |
1895 | } | |
1896 | ||
334f485d | 1897 | err = -EINVAL; |
8599396b | 1898 | if (oh.error <= -1000 || oh.error > 0) |
334f485d MS |
1899 | goto err_finish; |
1900 | ||
d7133114 | 1901 | spin_lock(&fc->lock); |
69a53bf2 MS |
1902 | err = -ENOENT; |
1903 | if (!fc->connected) | |
1904 | goto err_unlock; | |
1905 | ||
334f485d | 1906 | req = request_find(fc, oh.unique); |
334f485d MS |
1907 | if (!req) |
1908 | goto err_unlock; | |
1909 | ||
f9a2842e | 1910 | if (req->aborted) { |
d7133114 | 1911 | spin_unlock(&fc->lock); |
dd3bb14f | 1912 | fuse_copy_finish(cs); |
d7133114 | 1913 | spin_lock(&fc->lock); |
222f1d69 | 1914 | request_end(fc, req); |
334f485d MS |
1915 | return -ENOENT; |
1916 | } | |
a4d27e75 MS |
1917 | /* Is it an interrupt reply? */ |
1918 | if (req->intr_unique == oh.unique) { | |
1919 | err = -EINVAL; | |
1920 | if (nbytes != sizeof(struct fuse_out_header)) | |
1921 | goto err_unlock; | |
1922 | ||
1923 | if (oh.error == -ENOSYS) | |
1924 | fc->no_interrupt = 1; | |
1925 | else if (oh.error == -EAGAIN) | |
1926 | queue_interrupt(fc, req); | |
1927 | ||
1928 | spin_unlock(&fc->lock); | |
dd3bb14f | 1929 | fuse_copy_finish(cs); |
a4d27e75 MS |
1930 | return nbytes; |
1931 | } | |
1932 | ||
1933 | req->state = FUSE_REQ_WRITING; | |
d77a1d5b | 1934 | list_move(&req->list, &fc->io); |
334f485d MS |
1935 | req->out.h = oh; |
1936 | req->locked = 1; | |
dd3bb14f | 1937 | cs->req = req; |
ce534fb0 MS |
1938 | if (!req->out.page_replace) |
1939 | cs->move_pages = 0; | |
d7133114 | 1940 | spin_unlock(&fc->lock); |
334f485d | 1941 | |
dd3bb14f MS |
1942 | err = copy_out_args(cs, &req->out, nbytes); |
1943 | fuse_copy_finish(cs); | |
334f485d | 1944 | |
d7133114 | 1945 | spin_lock(&fc->lock); |
334f485d MS |
1946 | req->locked = 0; |
1947 | if (!err) { | |
f9a2842e | 1948 | if (req->aborted) |
334f485d | 1949 | err = -ENOENT; |
f9a2842e | 1950 | } else if (!req->aborted) |
334f485d MS |
1951 | req->out.h.error = -EIO; |
1952 | request_end(fc, req); | |
1953 | ||
1954 | return err ? err : nbytes; | |
1955 | ||
1956 | err_unlock: | |
d7133114 | 1957 | spin_unlock(&fc->lock); |
334f485d | 1958 | err_finish: |
dd3bb14f | 1959 | fuse_copy_finish(cs); |
334f485d MS |
1960 | return err; |
1961 | } | |
1962 | ||
dd3bb14f MS |
1963 | static ssize_t fuse_dev_write(struct kiocb *iocb, const struct iovec *iov, |
1964 | unsigned long nr_segs, loff_t pos) | |
1965 | { | |
1966 | struct fuse_copy_state cs; | |
1967 | struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp); | |
1968 | if (!fc) | |
1969 | return -EPERM; | |
1970 | ||
c3021629 | 1971 | fuse_copy_init(&cs, fc, 0, iov, nr_segs); |
dd3bb14f MS |
1972 | |
1973 | return fuse_dev_do_write(fc, &cs, iov_length(iov, nr_segs)); | |
1974 | } | |
1975 | ||
1976 | static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe, | |
1977 | struct file *out, loff_t *ppos, | |
1978 | size_t len, unsigned int flags) | |
1979 | { | |
1980 | unsigned nbuf; | |
1981 | unsigned idx; | |
1982 | struct pipe_buffer *bufs; | |
1983 | struct fuse_copy_state cs; | |
1984 | struct fuse_conn *fc; | |
1985 | size_t rem; | |
1986 | ssize_t ret; | |
1987 | ||
1988 | fc = fuse_get_conn(out); | |
1989 | if (!fc) | |
1990 | return -EPERM; | |
1991 | ||
07e77dca | 1992 | bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL); |
dd3bb14f MS |
1993 | if (!bufs) |
1994 | return -ENOMEM; | |
1995 | ||
1996 | pipe_lock(pipe); | |
1997 | nbuf = 0; | |
1998 | rem = 0; | |
1999 | for (idx = 0; idx < pipe->nrbufs && rem < len; idx++) | |
2000 | rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len; | |
2001 | ||
2002 | ret = -EINVAL; | |
2003 | if (rem < len) { | |
2004 | pipe_unlock(pipe); | |
2005 | goto out; | |
2006 | } | |
2007 | ||
2008 | rem = len; | |
2009 | while (rem) { | |
2010 | struct pipe_buffer *ibuf; | |
2011 | struct pipe_buffer *obuf; | |
2012 | ||
2013 | BUG_ON(nbuf >= pipe->buffers); | |
2014 | BUG_ON(!pipe->nrbufs); | |
2015 | ibuf = &pipe->bufs[pipe->curbuf]; | |
2016 | obuf = &bufs[nbuf]; | |
2017 | ||
2018 | if (rem >= ibuf->len) { | |
2019 | *obuf = *ibuf; | |
2020 | ibuf->ops = NULL; | |
2021 | pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1); | |
2022 | pipe->nrbufs--; | |
2023 | } else { | |
2024 | ibuf->ops->get(pipe, ibuf); | |
2025 | *obuf = *ibuf; | |
2026 | obuf->flags &= ~PIPE_BUF_FLAG_GIFT; | |
2027 | obuf->len = rem; | |
2028 | ibuf->offset += obuf->len; | |
2029 | ibuf->len -= obuf->len; | |
2030 | } | |
2031 | nbuf++; | |
2032 | rem -= obuf->len; | |
2033 | } | |
2034 | pipe_unlock(pipe); | |
2035 | ||
c3021629 | 2036 | fuse_copy_init(&cs, fc, 0, NULL, nbuf); |
dd3bb14f | 2037 | cs.pipebufs = bufs; |
dd3bb14f MS |
2038 | cs.pipe = pipe; |
2039 | ||
ce534fb0 MS |
2040 | if (flags & SPLICE_F_MOVE) |
2041 | cs.move_pages = 1; | |
2042 | ||
dd3bb14f MS |
2043 | ret = fuse_dev_do_write(fc, &cs, len); |
2044 | ||
2045 | for (idx = 0; idx < nbuf; idx++) { | |
2046 | struct pipe_buffer *buf = &bufs[idx]; | |
2047 | buf->ops->release(pipe, buf); | |
2048 | } | |
2049 | out: | |
2050 | kfree(bufs); | |
2051 | return ret; | |
2052 | } | |
2053 | ||
334f485d MS |
2054 | static unsigned fuse_dev_poll(struct file *file, poll_table *wait) |
2055 | { | |
334f485d | 2056 | unsigned mask = POLLOUT | POLLWRNORM; |
7025d9ad | 2057 | struct fuse_conn *fc = fuse_get_conn(file); |
334f485d | 2058 | if (!fc) |
7025d9ad | 2059 | return POLLERR; |
334f485d MS |
2060 | |
2061 | poll_wait(file, &fc->waitq, wait); | |
2062 | ||
d7133114 | 2063 | spin_lock(&fc->lock); |
7025d9ad MS |
2064 | if (!fc->connected) |
2065 | mask = POLLERR; | |
a4d27e75 | 2066 | else if (request_pending(fc)) |
7025d9ad | 2067 | mask |= POLLIN | POLLRDNORM; |
d7133114 | 2068 | spin_unlock(&fc->lock); |
334f485d MS |
2069 | |
2070 | return mask; | |
2071 | } | |
2072 | ||
69a53bf2 MS |
2073 | /* |
2074 | * Abort all requests on the given list (pending or processing) | |
2075 | * | |
d7133114 | 2076 | * This function releases and reacquires fc->lock |
69a53bf2 | 2077 | */ |
334f485d | 2078 | static void end_requests(struct fuse_conn *fc, struct list_head *head) |
b9ca67b2 MS |
2079 | __releases(fc->lock) |
2080 | __acquires(fc->lock) | |
334f485d MS |
2081 | { |
2082 | while (!list_empty(head)) { | |
2083 | struct fuse_req *req; | |
2084 | req = list_entry(head->next, struct fuse_req, list); | |
334f485d MS |
2085 | req->out.h.error = -ECONNABORTED; |
2086 | request_end(fc, req); | |
d7133114 | 2087 | spin_lock(&fc->lock); |
334f485d MS |
2088 | } |
2089 | } | |
2090 | ||
69a53bf2 MS |
2091 | /* |
2092 | * Abort requests under I/O | |
2093 | * | |
f9a2842e | 2094 | * The requests are set to aborted and finished, and the request |
69a53bf2 MS |
2095 | * waiter is woken up. This will make request_wait_answer() wait |
2096 | * until the request is unlocked and then return. | |
64c6d8ed MS |
2097 | * |
2098 | * If the request is asynchronous, then the end function needs to be | |
2099 | * called after waiting for the request to be unlocked (if it was | |
2100 | * locked). | |
69a53bf2 MS |
2101 | */ |
2102 | static void end_io_requests(struct fuse_conn *fc) | |
b9ca67b2 MS |
2103 | __releases(fc->lock) |
2104 | __acquires(fc->lock) | |
69a53bf2 MS |
2105 | { |
2106 | while (!list_empty(&fc->io)) { | |
64c6d8ed MS |
2107 | struct fuse_req *req = |
2108 | list_entry(fc->io.next, struct fuse_req, list); | |
2109 | void (*end) (struct fuse_conn *, struct fuse_req *) = req->end; | |
2110 | ||
f9a2842e | 2111 | req->aborted = 1; |
69a53bf2 MS |
2112 | req->out.h.error = -ECONNABORTED; |
2113 | req->state = FUSE_REQ_FINISHED; | |
2114 | list_del_init(&req->list); | |
2115 | wake_up(&req->waitq); | |
64c6d8ed MS |
2116 | if (end) { |
2117 | req->end = NULL; | |
64c6d8ed | 2118 | __fuse_get_request(req); |
d7133114 | 2119 | spin_unlock(&fc->lock); |
64c6d8ed MS |
2120 | wait_event(req->waitq, !req->locked); |
2121 | end(fc, req); | |
e9bb09dd | 2122 | fuse_put_request(fc, req); |
d7133114 | 2123 | spin_lock(&fc->lock); |
64c6d8ed | 2124 | } |
69a53bf2 MS |
2125 | } |
2126 | } | |
2127 | ||
595afaf9 | 2128 | static void end_queued_requests(struct fuse_conn *fc) |
b9ca67b2 MS |
2129 | __releases(fc->lock) |
2130 | __acquires(fc->lock) | |
595afaf9 MS |
2131 | { |
2132 | fc->max_background = UINT_MAX; | |
2133 | flush_bg_queue(fc); | |
2134 | end_requests(fc, &fc->pending); | |
2135 | end_requests(fc, &fc->processing); | |
07e77dca | 2136 | while (forget_pending(fc)) |
02c048b9 | 2137 | kfree(dequeue_forget(fc, 1, NULL)); |
595afaf9 MS |
2138 | } |
2139 | ||
357ccf2b BG |
2140 | static void end_polls(struct fuse_conn *fc) |
2141 | { | |
2142 | struct rb_node *p; | |
2143 | ||
2144 | p = rb_first(&fc->polled_files); | |
2145 | ||
2146 | while (p) { | |
2147 | struct fuse_file *ff; | |
2148 | ff = rb_entry(p, struct fuse_file, polled_node); | |
2149 | wake_up_interruptible_all(&ff->poll_wait); | |
2150 | ||
2151 | p = rb_next(p); | |
2152 | } | |
2153 | } | |
2154 | ||
69a53bf2 MS |
2155 | /* |
2156 | * Abort all requests. | |
2157 | * | |
2158 | * Emergency exit in case of a malicious or accidental deadlock, or | |
2159 | * just a hung filesystem. | |
2160 | * | |
2161 | * The same effect is usually achievable through killing the | |
2162 | * filesystem daemon and all users of the filesystem. The exception | |
2163 | * is the combination of an asynchronous request and the tricky | |
2164 | * deadlock (see Documentation/filesystems/fuse.txt). | |
2165 | * | |
2166 | * During the aborting, progression of requests from the pending and | |
2167 | * processing lists onto the io list, and progression of new requests | |
2168 | * onto the pending list is prevented by req->connected being false. | |
2169 | * | |
2170 | * Progression of requests under I/O to the processing list is | |
f9a2842e MS |
2171 | * prevented by the req->aborted flag being true for these requests. |
2172 | * For this reason requests on the io list must be aborted first. | |
69a53bf2 MS |
2173 | */ |
2174 | void fuse_abort_conn(struct fuse_conn *fc) | |
2175 | { | |
d7133114 | 2176 | spin_lock(&fc->lock); |
69a53bf2 MS |
2177 | if (fc->connected) { |
2178 | fc->connected = 0; | |
51eb01e7 | 2179 | fc->blocked = 0; |
9759bd51 | 2180 | fuse_set_initialized(fc); |
69a53bf2 | 2181 | end_io_requests(fc); |
595afaf9 | 2182 | end_queued_requests(fc); |
357ccf2b | 2183 | end_polls(fc); |
69a53bf2 | 2184 | wake_up_all(&fc->waitq); |
51eb01e7 | 2185 | wake_up_all(&fc->blocked_waitq); |
385a17bf | 2186 | kill_fasync(&fc->fasync, SIGIO, POLL_IN); |
69a53bf2 | 2187 | } |
d7133114 | 2188 | spin_unlock(&fc->lock); |
69a53bf2 | 2189 | } |
08cbf542 | 2190 | EXPORT_SYMBOL_GPL(fuse_abort_conn); |
69a53bf2 | 2191 | |
08cbf542 | 2192 | int fuse_dev_release(struct inode *inode, struct file *file) |
334f485d | 2193 | { |
0720b315 | 2194 | struct fuse_conn *fc = fuse_get_conn(file); |
334f485d | 2195 | if (fc) { |
d7133114 | 2196 | spin_lock(&fc->lock); |
1e9a4ed9 | 2197 | fc->connected = 0; |
595afaf9 | 2198 | fc->blocked = 0; |
9759bd51 | 2199 | fuse_set_initialized(fc); |
595afaf9 | 2200 | end_queued_requests(fc); |
357ccf2b | 2201 | end_polls(fc); |
595afaf9 | 2202 | wake_up_all(&fc->blocked_waitq); |
d7133114 | 2203 | spin_unlock(&fc->lock); |
bafa9654 | 2204 | fuse_conn_put(fc); |
385a17bf | 2205 | } |
f543f253 | 2206 | |
334f485d MS |
2207 | return 0; |
2208 | } | |
08cbf542 | 2209 | EXPORT_SYMBOL_GPL(fuse_dev_release); |
334f485d | 2210 | |
385a17bf JD |
2211 | static int fuse_dev_fasync(int fd, struct file *file, int on) |
2212 | { | |
2213 | struct fuse_conn *fc = fuse_get_conn(file); | |
2214 | if (!fc) | |
a87046d8 | 2215 | return -EPERM; |
385a17bf JD |
2216 | |
2217 | /* No locking - fasync_helper does its own locking */ | |
2218 | return fasync_helper(fd, file, on, &fc->fasync); | |
2219 | } | |
2220 | ||
4b6f5d20 | 2221 | const struct file_operations fuse_dev_operations = { |
334f485d MS |
2222 | .owner = THIS_MODULE, |
2223 | .llseek = no_llseek, | |
ee0b3e67 BP |
2224 | .read = do_sync_read, |
2225 | .aio_read = fuse_dev_read, | |
c3021629 | 2226 | .splice_read = fuse_dev_splice_read, |
ee0b3e67 BP |
2227 | .write = do_sync_write, |
2228 | .aio_write = fuse_dev_write, | |
dd3bb14f | 2229 | .splice_write = fuse_dev_splice_write, |
334f485d MS |
2230 | .poll = fuse_dev_poll, |
2231 | .release = fuse_dev_release, | |
385a17bf | 2232 | .fasync = fuse_dev_fasync, |
334f485d | 2233 | }; |
08cbf542 | 2234 | EXPORT_SYMBOL_GPL(fuse_dev_operations); |
334f485d MS |
2235 | |
2236 | static struct miscdevice fuse_miscdevice = { | |
2237 | .minor = FUSE_MINOR, | |
2238 | .name = "fuse", | |
2239 | .fops = &fuse_dev_operations, | |
2240 | }; | |
2241 | ||
2242 | int __init fuse_dev_init(void) | |
2243 | { | |
2244 | int err = -ENOMEM; | |
2245 | fuse_req_cachep = kmem_cache_create("fuse_request", | |
2246 | sizeof(struct fuse_req), | |
20c2df83 | 2247 | 0, 0, NULL); |
334f485d MS |
2248 | if (!fuse_req_cachep) |
2249 | goto out; | |
2250 | ||
2251 | err = misc_register(&fuse_miscdevice); | |
2252 | if (err) | |
2253 | goto out_cache_clean; | |
2254 | ||
2255 | return 0; | |
2256 | ||
2257 | out_cache_clean: | |
2258 | kmem_cache_destroy(fuse_req_cachep); | |
2259 | out: | |
2260 | return err; | |
2261 | } | |
2262 | ||
2263 | void fuse_dev_cleanup(void) | |
2264 | { | |
2265 | misc_deregister(&fuse_miscdevice); | |
2266 | kmem_cache_destroy(fuse_req_cachep); | |
2267 | } |