blob: 6cb0b0bc9029835c48d4b3513b9edb696e4c47d8 [file] [log] [blame]
Miklos Szeredi334f4852005-09-09 13:10:27 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi1729a162008-11-26 12:03:54 +01003 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi334f4852005-09-09 13:10:27 -07004
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
9#include "fuse_i.h"
10
11#include <linux/init.h>
12#include <linux/module.h>
13#include <linux/poll.h>
14#include <linux/uio.h>
15#include <linux/miscdevice.h>
16#include <linux/pagemap.h>
17#include <linux/file.h>
18#include <linux/slab.h>
Miklos Szeredidd3bb142010-05-25 15:06:06 +020019#include <linux/pipe_fs_i.h>
Miklos Szeredice534fb2010-05-25 15:06:07 +020020#include <linux/swap.h>
21#include <linux/splice.h>
Miklos Szeredi334f4852005-09-09 13:10:27 -070022
23MODULE_ALIAS_MISCDEV(FUSE_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +020024MODULE_ALIAS("devname:fuse");
Miklos Szeredi334f4852005-09-09 13:10:27 -070025
Christoph Lametere18b8902006-12-06 20:33:20 -080026static struct kmem_cache *fuse_req_cachep;
Miklos Szeredi334f4852005-09-09 13:10:27 -070027
Miklos Szeredi8bfc0162006-01-16 22:14:28 -080028static struct fuse_conn *fuse_get_conn(struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -070029{
Miklos Szeredi0720b312006-04-10 22:54:55 -070030 /*
31 * Lockless access is OK, because file->private data is set
32 * once during mount and is valid until the file is released.
33 */
34 return file->private_data;
Miklos Szeredi334f4852005-09-09 13:10:27 -070035}
36
Maxim Patlasov4250c062012-10-26 19:48:07 +040037static void fuse_request_init(struct fuse_req *req, struct page **pages,
Maxim Patlasovb2430d72012-10-26 19:49:24 +040038 struct fuse_page_desc *page_descs,
Maxim Patlasov4250c062012-10-26 19:48:07 +040039 unsigned npages)
Miklos Szeredi334f4852005-09-09 13:10:27 -070040{
41 memset(req, 0, sizeof(*req));
Maxim Patlasov4250c062012-10-26 19:48:07 +040042 memset(pages, 0, sizeof(*pages) * npages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040043 memset(page_descs, 0, sizeof(*page_descs) * npages);
Miklos Szeredi334f4852005-09-09 13:10:27 -070044 INIT_LIST_HEAD(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -070045 INIT_LIST_HEAD(&req->intr_entry);
Miklos Szeredi334f4852005-09-09 13:10:27 -070046 init_waitqueue_head(&req->waitq);
47 atomic_set(&req->count, 1);
Maxim Patlasov4250c062012-10-26 19:48:07 +040048 req->pages = pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040049 req->page_descs = page_descs;
Maxim Patlasov4250c062012-10-26 19:48:07 +040050 req->max_pages = npages;
Miklos Szeredi334f4852005-09-09 13:10:27 -070051}
52
Maxim Patlasov4250c062012-10-26 19:48:07 +040053static struct fuse_req *__fuse_request_alloc(unsigned npages, gfp_t flags)
Miklos Szeredi334f4852005-09-09 13:10:27 -070054{
Maxim Patlasov4250c062012-10-26 19:48:07 +040055 struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, flags);
56 if (req) {
57 struct page **pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040058 struct fuse_page_desc *page_descs;
Maxim Patlasov4250c062012-10-26 19:48:07 +040059
Maxim Patlasovb2430d72012-10-26 19:49:24 +040060 if (npages <= FUSE_REQ_INLINE_PAGES) {
Maxim Patlasov4250c062012-10-26 19:48:07 +040061 pages = req->inline_pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040062 page_descs = req->inline_page_descs;
63 } else {
Maxim Patlasov4250c062012-10-26 19:48:07 +040064 pages = kmalloc(sizeof(struct page *) * npages, flags);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040065 page_descs = kmalloc(sizeof(struct fuse_page_desc) *
66 npages, flags);
67 }
Maxim Patlasov4250c062012-10-26 19:48:07 +040068
Maxim Patlasovb2430d72012-10-26 19:49:24 +040069 if (!pages || !page_descs) {
70 kfree(pages);
71 kfree(page_descs);
Maxim Patlasov4250c062012-10-26 19:48:07 +040072 kmem_cache_free(fuse_req_cachep, req);
73 return NULL;
74 }
75
Maxim Patlasovb2430d72012-10-26 19:49:24 +040076 fuse_request_init(req, pages, page_descs, npages);
Maxim Patlasov4250c062012-10-26 19:48:07 +040077 }
Miklos Szeredi334f4852005-09-09 13:10:27 -070078 return req;
79}
Maxim Patlasov4250c062012-10-26 19:48:07 +040080
81struct fuse_req *fuse_request_alloc(unsigned npages)
82{
83 return __fuse_request_alloc(npages, GFP_KERNEL);
84}
Tejun Heo08cbf542009-04-14 10:54:53 +090085EXPORT_SYMBOL_GPL(fuse_request_alloc);
Miklos Szeredi334f4852005-09-09 13:10:27 -070086
Maxim Patlasov4250c062012-10-26 19:48:07 +040087struct fuse_req *fuse_request_alloc_nofs(unsigned npages)
Miklos Szeredi3be5a522008-04-30 00:54:41 -070088{
Maxim Patlasov4250c062012-10-26 19:48:07 +040089 return __fuse_request_alloc(npages, GFP_NOFS);
Miklos Szeredi3be5a522008-04-30 00:54:41 -070090}
91
Miklos Szeredi334f4852005-09-09 13:10:27 -070092void fuse_request_free(struct fuse_req *req)
93{
Maxim Patlasovb2430d72012-10-26 19:49:24 +040094 if (req->pages != req->inline_pages) {
Maxim Patlasov4250c062012-10-26 19:48:07 +040095 kfree(req->pages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040096 kfree(req->page_descs);
97 }
Miklos Szeredi334f4852005-09-09 13:10:27 -070098 kmem_cache_free(fuse_req_cachep, req);
99}
100
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800101static void block_sigs(sigset_t *oldset)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700102{
103 sigset_t mask;
104
105 siginitsetinv(&mask, sigmask(SIGKILL));
106 sigprocmask(SIG_BLOCK, &mask, oldset);
107}
108
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800109static void restore_sigs(sigset_t *oldset)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700110{
111 sigprocmask(SIG_SETMASK, oldset, NULL);
112}
113
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400114void __fuse_get_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700115{
116 atomic_inc(&req->count);
117}
118
119/* Must be called with > 1 refcount */
120static void __fuse_put_request(struct fuse_req *req)
121{
122 BUG_ON(atomic_read(&req->count) < 2);
123 atomic_dec(&req->count);
124}
125
Miklos Szeredi33649c92006-06-25 05:48:52 -0700126static void fuse_req_init_context(struct fuse_req *req)
127{
Eric W. Biederman499dcf22012-02-07 16:26:03 -0800128 req->in.h.uid = from_kuid_munged(&init_user_ns, current_fsuid());
129 req->in.h.gid = from_kgid_munged(&init_user_ns, current_fsgid());
Miklos Szeredi33649c92006-06-25 05:48:52 -0700130 req->in.h.pid = current->pid;
131}
132
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100133void fuse_set_initialized(struct fuse_conn *fc)
134{
135 /* Make sure stores before this are seen on another CPU */
136 smp_wmb();
137 fc->initialized = 1;
138}
139
Maxim Patlasov0aada882013-03-21 18:02:28 +0400140static bool fuse_block_alloc(struct fuse_conn *fc, bool for_background)
141{
142 return !fc->initialized || (for_background && fc->blocked);
143}
144
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400145static struct fuse_req *__fuse_get_req(struct fuse_conn *fc, unsigned npages,
146 bool for_background)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700147{
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700148 struct fuse_req *req;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700149 int err;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200150 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400151
152 if (fuse_block_alloc(fc, for_background)) {
153 sigset_t oldset;
154 int intr;
155
156 block_sigs(&oldset);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400157 intr = wait_event_interruptible_exclusive(fc->blocked_waitq,
Maxim Patlasov0aada882013-03-21 18:02:28 +0400158 !fuse_block_alloc(fc, for_background));
159 restore_sigs(&oldset);
160 err = -EINTR;
161 if (intr)
162 goto out;
163 }
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100164 /* Matches smp_wmb() in fuse_set_initialized() */
165 smp_rmb();
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700166
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700167 err = -ENOTCONN;
168 if (!fc->connected)
169 goto out;
170
Miklos Szeredide155222015-07-01 16:25:57 +0200171 err = -ECONNREFUSED;
172 if (fc->conn_error)
173 goto out;
174
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400175 req = fuse_request_alloc(npages);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200176 err = -ENOMEM;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400177 if (!req) {
178 if (for_background)
179 wake_up(&fc->blocked_waitq);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200180 goto out;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400181 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700182
Miklos Szeredi33649c92006-06-25 05:48:52 -0700183 fuse_req_init_context(req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200184 __set_bit(FR_WAITING, &req->flags);
185 if (for_background)
186 __set_bit(FR_BACKGROUND, &req->flags);
187
Miklos Szeredi334f4852005-09-09 13:10:27 -0700188 return req;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200189
190 out:
191 atomic_dec(&fc->num_waiting);
192 return ERR_PTR(err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700193}
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400194
195struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages)
196{
197 return __fuse_get_req(fc, npages, false);
198}
Tejun Heo08cbf542009-04-14 10:54:53 +0900199EXPORT_SYMBOL_GPL(fuse_get_req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700200
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400201struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc,
202 unsigned npages)
203{
204 return __fuse_get_req(fc, npages, true);
205}
206EXPORT_SYMBOL_GPL(fuse_get_req_for_background);
207
Miklos Szeredi33649c92006-06-25 05:48:52 -0700208/*
209 * Return request in fuse_file->reserved_req. However that may
210 * currently be in use. If that is the case, wait for it to become
211 * available.
212 */
213static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
214 struct file *file)
215{
216 struct fuse_req *req = NULL;
217 struct fuse_file *ff = file->private_data;
218
219 do {
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700220 wait_event(fc->reserved_req_waitq, ff->reserved_req);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700221 spin_lock(&fc->lock);
222 if (ff->reserved_req) {
223 req = ff->reserved_req;
224 ff->reserved_req = NULL;
Al Virocb0942b2012-08-27 14:48:26 -0400225 req->stolen_file = get_file(file);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700226 }
227 spin_unlock(&fc->lock);
228 } while (!req);
229
230 return req;
231}
232
233/*
234 * Put stolen request back into fuse_file->reserved_req
235 */
236static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
237{
238 struct file *file = req->stolen_file;
239 struct fuse_file *ff = file->private_data;
240
241 spin_lock(&fc->lock);
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400242 fuse_request_init(req, req->pages, req->page_descs, req->max_pages);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700243 BUG_ON(ff->reserved_req);
244 ff->reserved_req = req;
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700245 wake_up_all(&fc->reserved_req_waitq);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700246 spin_unlock(&fc->lock);
247 fput(file);
248}
249
250/*
251 * Gets a requests for a file operation, always succeeds
252 *
253 * This is used for sending the FLUSH request, which must get to
254 * userspace, due to POSIX locks which may need to be unlocked.
255 *
256 * If allocation fails due to OOM, use the reserved request in
257 * fuse_file.
258 *
259 * This is very unlikely to deadlock accidentally, since the
260 * filesystem should not have it's own file open. If deadlock is
261 * intentional, it can still be broken by "aborting" the filesystem.
262 */
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400263struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc,
264 struct file *file)
Miklos Szeredi33649c92006-06-25 05:48:52 -0700265{
266 struct fuse_req *req;
267
268 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400269 wait_event(fc->blocked_waitq, fc->initialized);
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100270 /* Matches smp_wmb() in fuse_set_initialized() */
271 smp_rmb();
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400272 req = fuse_request_alloc(0);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700273 if (!req)
274 req = get_reserved_req(fc, file);
275
276 fuse_req_init_context(req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200277 __set_bit(FR_WAITING, &req->flags);
278 __clear_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700279 return req;
280}
281
Miklos Szeredi334f4852005-09-09 13:10:27 -0700282void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
283{
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800284 if (atomic_dec_and_test(&req->count)) {
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200285 if (test_bit(FR_BACKGROUND, &req->flags)) {
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400286 /*
287 * We get here in the unlikely case that a background
288 * request was allocated but not sent
289 */
290 spin_lock(&fc->lock);
291 if (!fc->blocked)
292 wake_up(&fc->blocked_waitq);
293 spin_unlock(&fc->lock);
294 }
295
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200296 if (test_bit(FR_WAITING, &req->flags)) {
297 __clear_bit(FR_WAITING, &req->flags);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200298 atomic_dec(&fc->num_waiting);
Miklos Szeredi73e0e732015-07-01 16:25:56 +0200299 }
Miklos Szeredi33649c92006-06-25 05:48:52 -0700300
301 if (req->stolen_file)
302 put_reserved_req(fc, req);
303 else
304 fuse_request_free(req);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800305 }
306}
Tejun Heo08cbf542009-04-14 10:54:53 +0900307EXPORT_SYMBOL_GPL(fuse_put_request);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800308
Miklos Szeredid12def12008-02-06 01:38:39 -0800309static unsigned len_args(unsigned numargs, struct fuse_arg *args)
310{
311 unsigned nbytes = 0;
312 unsigned i;
313
314 for (i = 0; i < numargs; i++)
315 nbytes += args[i].size;
316
317 return nbytes;
318}
319
320static u64 fuse_get_unique(struct fuse_conn *fc)
321{
322 fc->reqctr++;
323 /* zero is special */
324 if (fc->reqctr == 0)
325 fc->reqctr = 1;
326
327 return fc->reqctr;
328}
329
330static void queue_request(struct fuse_conn *fc, struct fuse_req *req)
331{
Miklos Szeredid12def12008-02-06 01:38:39 -0800332 req->in.h.len = sizeof(struct fuse_in_header) +
333 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
334 list_add_tail(&req->list, &fc->pending);
335 req->state = FUSE_REQ_PENDING;
Miklos Szeredid12def12008-02-06 01:38:39 -0800336 wake_up(&fc->waitq);
337 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
338}
339
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100340void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
341 u64 nodeid, u64 nlookup)
342{
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100343 forget->forget_one.nodeid = nodeid;
344 forget->forget_one.nlookup = nlookup;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100345
346 spin_lock(&fc->lock);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200347 if (fc->connected) {
348 fc->forget_list_tail->next = forget;
349 fc->forget_list_tail = forget;
350 wake_up(&fc->waitq);
351 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
352 } else {
353 kfree(forget);
354 }
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100355 spin_unlock(&fc->lock);
356}
357
Miklos Szeredid12def12008-02-06 01:38:39 -0800358static void flush_bg_queue(struct fuse_conn *fc)
359{
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700360 while (fc->active_background < fc->max_background &&
Miklos Szeredid12def12008-02-06 01:38:39 -0800361 !list_empty(&fc->bg_queue)) {
362 struct fuse_req *req;
363
364 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
365 list_del(&req->list);
366 fc->active_background++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200367 req->in.h.unique = fuse_get_unique(fc);
Miklos Szeredid12def12008-02-06 01:38:39 -0800368 queue_request(fc, req);
369 }
370}
371
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200372/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700373 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700374 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800375 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700376 * was closed. The requester thread is woken up (if still waiting),
377 * the 'end' callback is called if given, else the reference to the
378 * request is released
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800379 *
Miklos Szeredid7133112006-04-10 22:54:55 -0700380 * Called with fc->lock, unlocks it
Miklos Szeredi334f4852005-09-09 13:10:27 -0700381 */
382static void request_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200383__releases(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700384{
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700385 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
386 req->end = NULL;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200387 list_del_init(&req->list);
388 list_del_init(&req->intr_entry);
Miklos Szeredi83cfd492006-01-16 22:14:31 -0800389 req->state = FUSE_REQ_FINISHED;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200390 if (test_bit(FR_BACKGROUND, &req->flags)) {
391 clear_bit(FR_BACKGROUND, &req->flags);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400392 if (fc->num_background == fc->max_background)
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700393 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400394
395 /* Wake up next waiter, if any */
Miklos Szeredi3c18ef82013-04-17 21:50:58 +0200396 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400397 wake_up(&fc->blocked_waitq);
398
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700399 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900400 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200401 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
402 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700403 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700404 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800405 fc->active_background--;
406 flush_bg_queue(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700407 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700408 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700409 wake_up(&req->waitq);
410 if (end)
411 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100412 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700413}
414
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700415static void wait_answer_interruptible(struct fuse_conn *fc,
416 struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200417__releases(fc->lock)
418__acquires(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700419{
420 if (signal_pending(current))
421 return;
422
423 spin_unlock(&fc->lock);
424 wait_event_interruptible(req->waitq, req->state == FUSE_REQ_FINISHED);
425 spin_lock(&fc->lock);
426}
427
428static void queue_interrupt(struct fuse_conn *fc, struct fuse_req *req)
429{
430 list_add_tail(&req->intr_entry, &fc->interrupts);
431 wake_up(&fc->waitq);
432 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
433}
434
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700435static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200436__releases(fc->lock)
437__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700438{
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700439 if (!fc->no_interrupt) {
440 /* Any signal may interrupt this */
441 wait_answer_interruptible(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700442
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700443 if (req->state == FUSE_REQ_FINISHED)
444 return;
445
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200446 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700447 if (req->state == FUSE_REQ_SENT)
448 queue_interrupt(fc, req);
449 }
450
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200451 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700452 sigset_t oldset;
453
454 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700455 block_sigs(&oldset);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700456 wait_answer_interruptible(fc, req);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700457 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700458
Miklos Szeredia131de02007-10-16 23:31:04 -0700459 if (req->state == FUSE_REQ_FINISHED)
460 return;
461
462 /* Request is not yet in userspace, bail out */
463 if (req->state == FUSE_REQ_PENDING) {
464 list_del(&req->list);
465 __fuse_put_request(req);
466 req->out.h.error = -EINTR;
467 return;
468 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700469 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700470
Miklos Szeredia131de02007-10-16 23:31:04 -0700471 /*
472 * Either request is already in userspace, or it was forced.
473 * Wait it out.
474 */
475 spin_unlock(&fc->lock);
476 wait_event(req->waitq, req->state == FUSE_REQ_FINISHED);
477 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700478}
479
Eric Wong6a4e9222013-02-04 13:04:44 +0000480static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700481{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200482 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredid7133112006-04-10 22:54:55 -0700483 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700484 if (!fc->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700485 req->out.h.error = -ENOTCONN;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700486 else {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200487 req->in.h.unique = fuse_get_unique(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700488 queue_request(fc, req);
489 /* acquire extra reference, since request is still needed
490 after request_end() */
491 __fuse_get_request(req);
492
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700493 request_wait_answer(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700494 }
Miklos Szeredid7133112006-04-10 22:54:55 -0700495 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700496}
Eric Wong6a4e9222013-02-04 13:04:44 +0000497
498void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
499{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200500 __set_bit(FR_ISREPLY, &req->flags);
501 if (!test_bit(FR_WAITING, &req->flags)) {
502 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200503 atomic_inc(&fc->num_waiting);
504 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000505 __fuse_request_send(fc, req);
506}
Tejun Heo08cbf542009-04-14 10:54:53 +0900507EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700508
Miklos Szeredi21f62172015-01-06 10:45:35 +0100509static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
510{
511 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
512 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
513
514 if (fc->minor < 9) {
515 switch (args->in.h.opcode) {
516 case FUSE_LOOKUP:
517 case FUSE_CREATE:
518 case FUSE_MKNOD:
519 case FUSE_MKDIR:
520 case FUSE_SYMLINK:
521 case FUSE_LINK:
522 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
523 break;
524 case FUSE_GETATTR:
525 case FUSE_SETATTR:
526 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
527 break;
528 }
529 }
530 if (fc->minor < 12) {
531 switch (args->in.h.opcode) {
532 case FUSE_CREATE:
533 args->in.args[0].size = sizeof(struct fuse_open_in);
534 break;
535 case FUSE_MKNOD:
536 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
537 break;
538 }
539 }
540}
541
Miklos Szeredi70781872014-12-12 09:49:05 +0100542ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
543{
544 struct fuse_req *req;
545 ssize_t ret;
546
547 req = fuse_get_req(fc, 0);
548 if (IS_ERR(req))
549 return PTR_ERR(req);
550
Miklos Szeredi21f62172015-01-06 10:45:35 +0100551 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
552 fuse_adjust_compat(fc, args);
553
Miklos Szeredi70781872014-12-12 09:49:05 +0100554 req->in.h.opcode = args->in.h.opcode;
555 req->in.h.nodeid = args->in.h.nodeid;
556 req->in.numargs = args->in.numargs;
557 memcpy(req->in.args, args->in.args,
558 args->in.numargs * sizeof(struct fuse_in_arg));
559 req->out.argvar = args->out.argvar;
560 req->out.numargs = args->out.numargs;
561 memcpy(req->out.args, args->out.args,
562 args->out.numargs * sizeof(struct fuse_arg));
563 fuse_request_send(fc, req);
564 ret = req->out.h.error;
565 if (!ret && args->out.argvar) {
566 BUG_ON(args->out.numargs != 1);
567 ret = req->out.args[0].size;
568 }
569 fuse_put_request(fc, req);
570
571 return ret;
572}
573
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200574/*
575 * Called under fc->lock
576 *
577 * fc->connected must have been checked previously
578 */
579void fuse_request_send_background_locked(struct fuse_conn *fc,
580 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800581{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200582 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
583 if (!test_bit(FR_WAITING, &req->flags)) {
584 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200585 atomic_inc(&fc->num_waiting);
586 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200587 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800588 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700589 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800590 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700591 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900592 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200593 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
594 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800595 }
596 list_add_tail(&req->list, &fc->bg_queue);
597 flush_bg_queue(fc);
598}
599
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200600void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700601{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200602 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700603 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700604 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200605 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700606 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700607 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200608 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700609 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200610 req->end(fc, req);
611 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700612 }
613}
Tejun Heo08cbf542009-04-14 10:54:53 +0900614EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700615
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200616static int fuse_request_send_notify_reply(struct fuse_conn *fc,
617 struct fuse_req *req, u64 unique)
618{
619 int err = -ENODEV;
620
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200621 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200622 req->in.h.unique = unique;
623 spin_lock(&fc->lock);
624 if (fc->connected) {
625 queue_request(fc, req);
626 err = 0;
627 }
628 spin_unlock(&fc->lock);
629
630 return err;
631}
632
Anand V. Avati0b05b182012-08-19 08:53:23 -0400633void fuse_force_forget(struct file *file, u64 nodeid)
634{
Al Viro6131ffa2013-02-27 16:59:05 -0500635 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400636 struct fuse_conn *fc = get_fuse_conn(inode);
637 struct fuse_req *req;
638 struct fuse_forget_in inarg;
639
640 memset(&inarg, 0, sizeof(inarg));
641 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400642 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400643 req->in.h.opcode = FUSE_FORGET;
644 req->in.h.nodeid = nodeid;
645 req->in.numargs = 1;
646 req->in.args[0].size = sizeof(inarg);
647 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200648 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000649 __fuse_request_send(fc, req);
650 /* ignore errors */
651 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400652}
653
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700654/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700655 * Lock the request. Up to the next unlock_request() there mustn't be
656 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700657 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700658 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200659static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700660{
661 int err = 0;
662 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200663 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200664 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700665 err = -ENOENT;
666 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200667 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200668 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700669 }
670 return err;
671}
672
673/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200674 * Unlock request. If it was aborted while locked, caller is responsible
675 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700676 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200677static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700678{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200679 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700680 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200681 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200682 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200683 err = -ENOENT;
684 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200685 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200686 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700687 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200688 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700689}
690
691struct fuse_copy_state {
692 int write;
693 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400694 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200695 struct pipe_buffer *pipebufs;
696 struct pipe_buffer *currbuf;
697 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700698 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700699 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700700 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200701 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200702 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700703};
704
Miklos Szeredidc008092015-07-01 16:25:58 +0200705static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400706 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700707{
708 memset(cs, 0, sizeof(*cs));
709 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400710 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700711}
712
713/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800714static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700715{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200716 if (cs->currbuf) {
717 struct pipe_buffer *buf = cs->currbuf;
718
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200719 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200720 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200721 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200722 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700723 if (cs->write) {
724 flush_dcache_page(cs->pg);
725 set_page_dirty_lock(cs->pg);
726 }
727 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700728 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200729 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700730}
731
732/*
733 * Get another pagefull of userspace buffer, and map it to kernel
734 * address space, and lock request
735 */
736static int fuse_copy_fill(struct fuse_copy_state *cs)
737{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200738 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700739 int err;
740
Miklos Szeredidc008092015-07-01 16:25:58 +0200741 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200742 if (err)
743 return err;
744
Miklos Szeredi334f4852005-09-09 13:10:27 -0700745 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200746 if (cs->pipebufs) {
747 struct pipe_buffer *buf = cs->pipebufs;
748
Miklos Szeredic3021622010-05-25 15:06:07 +0200749 if (!cs->write) {
750 err = buf->ops->confirm(cs->pipe, buf);
751 if (err)
752 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200753
Miklos Szeredic3021622010-05-25 15:06:07 +0200754 BUG_ON(!cs->nr_segs);
755 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200756 cs->pg = buf->page;
757 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200758 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200759 cs->pipebufs++;
760 cs->nr_segs--;
761 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200762 if (cs->nr_segs == cs->pipe->buffers)
763 return -EIO;
764
765 page = alloc_page(GFP_HIGHUSER);
766 if (!page)
767 return -ENOMEM;
768
769 buf->page = page;
770 buf->offset = 0;
771 buf->len = 0;
772
773 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200774 cs->pg = page;
775 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200776 cs->len = PAGE_SIZE;
777 cs->pipebufs++;
778 cs->nr_segs++;
779 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200780 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400781 size_t off;
782 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200783 if (err < 0)
784 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400785 BUG_ON(!err);
786 cs->len = err;
787 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200788 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400789 cs->offset = off;
790 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700791 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700792
Miklos Szeredidc008092015-07-01 16:25:58 +0200793 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700794}
795
796/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800797static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700798{
799 unsigned ncpy = min(*size, cs->len);
800 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200801 void *pgaddr = kmap_atomic(cs->pg);
802 void *buf = pgaddr + cs->offset;
803
Miklos Szeredi334f4852005-09-09 13:10:27 -0700804 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200805 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700806 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200807 memcpy(*val, buf, ncpy);
808
809 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700810 *val += ncpy;
811 }
812 *size -= ncpy;
813 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200814 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700815 return ncpy;
816}
817
Miklos Szeredice534fb2010-05-25 15:06:07 +0200818static int fuse_check_page(struct page *page)
819{
820 if (page_mapcount(page) ||
821 page->mapping != NULL ||
822 page_count(page) != 1 ||
823 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
824 ~(1 << PG_locked |
825 1 << PG_referenced |
826 1 << PG_uptodate |
827 1 << PG_lru |
828 1 << PG_active |
829 1 << PG_reclaim))) {
830 printk(KERN_WARNING "fuse: trying to steal weird page\n");
831 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);
832 return 1;
833 }
834 return 0;
835}
836
837static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
838{
839 int err;
840 struct page *oldpage = *pagep;
841 struct page *newpage;
842 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200843
Miklos Szeredidc008092015-07-01 16:25:58 +0200844 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200845 if (err)
846 return err;
847
Miklos Szeredice534fb2010-05-25 15:06:07 +0200848 fuse_copy_finish(cs);
849
850 err = buf->ops->confirm(cs->pipe, buf);
851 if (err)
852 return err;
853
854 BUG_ON(!cs->nr_segs);
855 cs->currbuf = buf;
856 cs->len = buf->len;
857 cs->pipebufs++;
858 cs->nr_segs--;
859
860 if (cs->len != PAGE_SIZE)
861 goto out_fallback;
862
863 if (buf->ops->steal(cs->pipe, buf) != 0)
864 goto out_fallback;
865
866 newpage = buf->page;
867
Miklos Szerediaa991b32015-02-26 11:45:47 +0100868 if (!PageUptodate(newpage))
869 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200870
871 ClearPageMappedToDisk(newpage);
872
873 if (fuse_check_page(newpage) != 0)
874 goto out_fallback_unlock;
875
Miklos Szeredice534fb2010-05-25 15:06:07 +0200876 /*
877 * This is a new and locked page, it shouldn't be mapped or
878 * have any special flags on it
879 */
880 if (WARN_ON(page_mapped(oldpage)))
881 goto out_fallback_unlock;
882 if (WARN_ON(page_has_private(oldpage)))
883 goto out_fallback_unlock;
884 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
885 goto out_fallback_unlock;
886 if (WARN_ON(PageMlocked(oldpage)))
887 goto out_fallback_unlock;
888
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700889 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200890 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700891 unlock_page(newpage);
892 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200893 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700894
Miklos Szeredice534fb2010-05-25 15:06:07 +0200895 page_cache_get(newpage);
896
897 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
898 lru_cache_add_file(newpage);
899
900 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200901 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200902 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200903 err = -ENOENT;
904 else
905 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200906 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200907
908 if (err) {
909 unlock_page(newpage);
910 page_cache_release(newpage);
911 return err;
912 }
913
914 unlock_page(oldpage);
915 page_cache_release(oldpage);
916 cs->len = 0;
917
918 return 0;
919
920out_fallback_unlock:
921 unlock_page(newpage);
922out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200923 cs->pg = buf->page;
924 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200925
Miklos Szeredidc008092015-07-01 16:25:58 +0200926 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200927 if (err)
928 return err;
929
930 return 1;
931}
932
Miklos Szeredic3021622010-05-25 15:06:07 +0200933static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
934 unsigned offset, unsigned count)
935{
936 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200937 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200938
939 if (cs->nr_segs == cs->pipe->buffers)
940 return -EIO;
941
Miklos Szeredidc008092015-07-01 16:25:58 +0200942 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200943 if (err)
944 return err;
945
Miklos Szeredic3021622010-05-25 15:06:07 +0200946 fuse_copy_finish(cs);
947
948 buf = cs->pipebufs;
949 page_cache_get(page);
950 buf->page = page;
951 buf->offset = offset;
952 buf->len = count;
953
954 cs->pipebufs++;
955 cs->nr_segs++;
956 cs->len = 0;
957
958 return 0;
959}
960
Miklos Szeredi334f4852005-09-09 13:10:27 -0700961/*
962 * Copy a page in the request to/from the userspace buffer. Must be
963 * done atomically
964 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200965static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800966 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700967{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200968 int err;
969 struct page *page = *pagep;
970
Miklos Szeredib6777c42010-10-26 14:22:27 -0700971 if (page && zeroing && count < PAGE_SIZE)
972 clear_highpage(page);
973
Miklos Szeredi334f4852005-09-09 13:10:27 -0700974 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200975 if (cs->write && cs->pipebufs && page) {
976 return fuse_ref_page(cs, page, offset, count);
977 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200978 if (cs->move_pages && page &&
979 offset == 0 && count == PAGE_SIZE) {
980 err = fuse_try_move_page(cs, pagep);
981 if (err <= 0)
982 return err;
983 } else {
984 err = fuse_copy_fill(cs);
985 if (err)
986 return err;
987 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100988 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700989 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800990 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700991 void *buf = mapaddr + offset;
992 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +0800993 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700994 } else
995 offset += fuse_copy_do(cs, NULL, &count);
996 }
997 if (page && !cs->write)
998 flush_dcache_page(page);
999 return 0;
1000}
1001
1002/* Copy pages in the request to/from userspace buffer */
1003static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
1004 int zeroing)
1005{
1006 unsigned i;
1007 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001008
1009 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +02001010 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001011 unsigned offset = req->page_descs[i].offset;
1012 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001013
1014 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1015 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001016 if (err)
1017 return err;
1018
1019 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001020 }
1021 return 0;
1022}
1023
1024/* Copy a single argument in the request to/from userspace buffer */
1025static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1026{
1027 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001028 if (!cs->len) {
1029 int err = fuse_copy_fill(cs);
1030 if (err)
1031 return err;
1032 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001033 fuse_copy_do(cs, &val, &size);
1034 }
1035 return 0;
1036}
1037
1038/* Copy request arguments to/from userspace buffer */
1039static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1040 unsigned argpages, struct fuse_arg *args,
1041 int zeroing)
1042{
1043 int err = 0;
1044 unsigned i;
1045
1046 for (i = 0; !err && i < numargs; i++) {
1047 struct fuse_arg *arg = &args[i];
1048 if (i == numargs - 1 && argpages)
1049 err = fuse_copy_pages(cs, arg->size, zeroing);
1050 else
1051 err = fuse_copy_one(cs, arg->value, arg->size);
1052 }
1053 return err;
1054}
1055
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001056static int forget_pending(struct fuse_conn *fc)
1057{
1058 return fc->forget_list_head.next != NULL;
1059}
1060
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001061static int request_pending(struct fuse_conn *fc)
1062{
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001063 return !list_empty(&fc->pending) || !list_empty(&fc->interrupts) ||
1064 forget_pending(fc);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001065}
1066
Miklos Szeredi334f4852005-09-09 13:10:27 -07001067/* Wait until a request is available on the pending list */
1068static void request_wait(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001069__releases(fc->lock)
1070__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001071{
1072 DECLARE_WAITQUEUE(wait, current);
1073
1074 add_wait_queue_exclusive(&fc->waitq, &wait);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001075 while (fc->connected && !request_pending(fc)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001076 set_current_state(TASK_INTERRUPTIBLE);
1077 if (signal_pending(current))
1078 break;
1079
Miklos Szeredid7133112006-04-10 22:54:55 -07001080 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001081 schedule();
Miklos Szeredid7133112006-04-10 22:54:55 -07001082 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001083 }
1084 set_current_state(TASK_RUNNING);
1085 remove_wait_queue(&fc->waitq, &wait);
1086}
1087
1088/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001089 * Transfer an interrupt request to userspace
1090 *
1091 * Unlike other requests this is assembled on demand, without a need
1092 * to allocate a separate fuse_req structure.
1093 *
1094 * Called with fc->lock held, releases it
1095 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001096static int fuse_read_interrupt(struct fuse_conn *fc, struct fuse_copy_state *cs,
1097 size_t nbytes, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001098__releases(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001099{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001100 struct fuse_in_header ih;
1101 struct fuse_interrupt_in arg;
1102 unsigned reqsize = sizeof(ih) + sizeof(arg);
1103 int err;
1104
1105 list_del_init(&req->intr_entry);
1106 req->intr_unique = fuse_get_unique(fc);
1107 memset(&ih, 0, sizeof(ih));
1108 memset(&arg, 0, sizeof(arg));
1109 ih.len = reqsize;
1110 ih.opcode = FUSE_INTERRUPT;
1111 ih.unique = req->intr_unique;
1112 arg.unique = req->in.h.unique;
1113
1114 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001115 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001116 return -EINVAL;
1117
Miklos Szeredic3021622010-05-25 15:06:07 +02001118 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001119 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001120 err = fuse_copy_one(cs, &arg, sizeof(arg));
1121 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001122
1123 return err ? err : reqsize;
1124}
1125
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001126static struct fuse_forget_link *dequeue_forget(struct fuse_conn *fc,
1127 unsigned max,
1128 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001129{
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001130 struct fuse_forget_link *head = fc->forget_list_head.next;
1131 struct fuse_forget_link **newhead = &head;
1132 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001133
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001134 for (count = 0; *newhead != NULL && count < max; count++)
1135 newhead = &(*newhead)->next;
1136
1137 fc->forget_list_head.next = *newhead;
1138 *newhead = NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001139 if (fc->forget_list_head.next == NULL)
1140 fc->forget_list_tail = &fc->forget_list_head;
1141
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001142 if (countp != NULL)
1143 *countp = count;
1144
1145 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001146}
1147
1148static int fuse_read_single_forget(struct fuse_conn *fc,
1149 struct fuse_copy_state *cs,
1150 size_t nbytes)
1151__releases(fc->lock)
1152{
1153 int err;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001154 struct fuse_forget_link *forget = dequeue_forget(fc, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001155 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001156 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001157 };
1158 struct fuse_in_header ih = {
1159 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001160 .nodeid = forget->forget_one.nodeid,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001161 .unique = fuse_get_unique(fc),
1162 .len = sizeof(ih) + sizeof(arg),
1163 };
1164
1165 spin_unlock(&fc->lock);
1166 kfree(forget);
1167 if (nbytes < ih.len)
1168 return -EINVAL;
1169
1170 err = fuse_copy_one(cs, &ih, sizeof(ih));
1171 if (!err)
1172 err = fuse_copy_one(cs, &arg, sizeof(arg));
1173 fuse_copy_finish(cs);
1174
1175 if (err)
1176 return err;
1177
1178 return ih.len;
1179}
1180
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001181static int fuse_read_batch_forget(struct fuse_conn *fc,
1182 struct fuse_copy_state *cs, size_t nbytes)
1183__releases(fc->lock)
1184{
1185 int err;
1186 unsigned max_forgets;
1187 unsigned count;
1188 struct fuse_forget_link *head;
1189 struct fuse_batch_forget_in arg = { .count = 0 };
1190 struct fuse_in_header ih = {
1191 .opcode = FUSE_BATCH_FORGET,
1192 .unique = fuse_get_unique(fc),
1193 .len = sizeof(ih) + sizeof(arg),
1194 };
1195
1196 if (nbytes < ih.len) {
1197 spin_unlock(&fc->lock);
1198 return -EINVAL;
1199 }
1200
1201 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
1202 head = dequeue_forget(fc, max_forgets, &count);
1203 spin_unlock(&fc->lock);
1204
1205 arg.count = count;
1206 ih.len += count * sizeof(struct fuse_forget_one);
1207 err = fuse_copy_one(cs, &ih, sizeof(ih));
1208 if (!err)
1209 err = fuse_copy_one(cs, &arg, sizeof(arg));
1210
1211 while (head) {
1212 struct fuse_forget_link *forget = head;
1213
1214 if (!err) {
1215 err = fuse_copy_one(cs, &forget->forget_one,
1216 sizeof(forget->forget_one));
1217 }
1218 head = forget->next;
1219 kfree(forget);
1220 }
1221
1222 fuse_copy_finish(cs);
1223
1224 if (err)
1225 return err;
1226
1227 return ih.len;
1228}
1229
1230static int fuse_read_forget(struct fuse_conn *fc, struct fuse_copy_state *cs,
1231 size_t nbytes)
1232__releases(fc->lock)
1233{
1234 if (fc->minor < 16 || fc->forget_list_head.next->next == NULL)
1235 return fuse_read_single_forget(fc, cs, nbytes);
1236 else
1237 return fuse_read_batch_forget(fc, cs, nbytes);
1238}
1239
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001240/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001241 * Read a single request into the userspace filesystem's buffer. This
1242 * function waits until a request is available, then removes it from
1243 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001244 * no reply is needed (FORGET) or request has been aborted or there
1245 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001246 * request_end(). Otherwise add it to the processing list, and set
1247 * the 'sent' flag.
1248 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001249static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1250 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001251{
1252 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001253 struct fuse_req *req;
1254 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001255 unsigned reqsize;
1256
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001257 restart:
Miklos Szeredid7133112006-04-10 22:54:55 -07001258 spin_lock(&fc->lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001259 err = -EAGAIN;
1260 if ((file->f_flags & O_NONBLOCK) && fc->connected &&
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001261 !request_pending(fc))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001262 goto err_unlock;
1263
Miklos Szeredi334f4852005-09-09 13:10:27 -07001264 request_wait(fc);
1265 err = -ENODEV;
Miklos Szeredi9ba7cbb2006-01-16 22:14:34 -08001266 if (!fc->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001267 goto err_unlock;
1268 err = -ERESTARTSYS;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001269 if (!request_pending(fc))
Miklos Szeredi334f4852005-09-09 13:10:27 -07001270 goto err_unlock;
1271
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001272 if (!list_empty(&fc->interrupts)) {
1273 req = list_entry(fc->interrupts.next, struct fuse_req,
1274 intr_entry);
Miklos Szeredic3021622010-05-25 15:06:07 +02001275 return fuse_read_interrupt(fc, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001276 }
1277
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001278 if (forget_pending(fc)) {
1279 if (list_empty(&fc->pending) || fc->forget_batch-- > 0)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001280 return fuse_read_forget(fc, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001281
1282 if (fc->forget_batch <= -8)
1283 fc->forget_batch = 16;
1284 }
1285
Miklos Szeredi334f4852005-09-09 13:10:27 -07001286 req = list_entry(fc->pending.next, struct fuse_req, list);
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001287 req->state = FUSE_REQ_READING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001288 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001289
1290 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001291 reqsize = in->h.len;
1292 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001293 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001294 req->out.h.error = -EIO;
1295 /* SETXATTR is special, since it may contain too large data */
1296 if (in->h.opcode == FUSE_SETXATTR)
1297 req->out.h.error = -E2BIG;
1298 request_end(fc, req);
1299 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001300 }
Miklos Szeredid7133112006-04-10 22:54:55 -07001301 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001302 cs->req = req;
1303 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001304 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001305 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001306 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001307 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001308 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001309 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001310 if (!fc->connected) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001311 request_end(fc, req);
1312 return -ENODEV;
1313 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001314 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001315 req->out.h.error = -EIO;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001316 request_end(fc, req);
1317 return err;
1318 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001319 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001320 request_end(fc, req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001321 } else {
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001322 req->state = FUSE_REQ_SENT;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001323 list_move_tail(&req->list, &fc->processing);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001324 if (test_bit(FR_INTERRUPTED, &req->flags))
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001325 queue_interrupt(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001326 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001327 }
1328 return reqsize;
1329
1330 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001331 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001332 return err;
1333}
1334
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001335static int fuse_dev_open(struct inode *inode, struct file *file)
1336{
1337 /*
1338 * The fuse device's file's private_data is used to hold
1339 * the fuse_conn(ection) when it is mounted, and is used to
1340 * keep track of whether the file has been mounted already.
1341 */
1342 file->private_data = NULL;
1343 return 0;
1344}
1345
Al Virofbdbacc2015-04-03 21:53:39 -04001346static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001347{
1348 struct fuse_copy_state cs;
1349 struct file *file = iocb->ki_filp;
1350 struct fuse_conn *fc = fuse_get_conn(file);
1351 if (!fc)
1352 return -EPERM;
1353
Al Virofbdbacc2015-04-03 21:53:39 -04001354 if (!iter_is_iovec(to))
1355 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001356
Miklos Szeredidc008092015-07-01 16:25:58 +02001357 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001358
1359 return fuse_dev_do_read(fc, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001360}
1361
Miklos Szeredic3021622010-05-25 15:06:07 +02001362static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1363 struct pipe_inode_info *pipe,
1364 size_t len, unsigned int flags)
1365{
1366 int ret;
1367 int page_nr = 0;
1368 int do_wakeup = 0;
1369 struct pipe_buffer *bufs;
1370 struct fuse_copy_state cs;
1371 struct fuse_conn *fc = fuse_get_conn(in);
1372 if (!fc)
1373 return -EPERM;
1374
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001375 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001376 if (!bufs)
1377 return -ENOMEM;
1378
Miklos Szeredidc008092015-07-01 16:25:58 +02001379 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001380 cs.pipebufs = bufs;
1381 cs.pipe = pipe;
1382 ret = fuse_dev_do_read(fc, in, &cs, len);
1383 if (ret < 0)
1384 goto out;
1385
1386 ret = 0;
1387 pipe_lock(pipe);
1388
1389 if (!pipe->readers) {
1390 send_sig(SIGPIPE, current, 0);
1391 if (!ret)
1392 ret = -EPIPE;
1393 goto out_unlock;
1394 }
1395
1396 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1397 ret = -EIO;
1398 goto out_unlock;
1399 }
1400
1401 while (page_nr < cs.nr_segs) {
1402 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1403 struct pipe_buffer *buf = pipe->bufs + newbuf;
1404
1405 buf->page = bufs[page_nr].page;
1406 buf->offset = bufs[page_nr].offset;
1407 buf->len = bufs[page_nr].len;
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001408 /*
1409 * Need to be careful about this. Having buf->ops in module
1410 * code can Oops if the buffer persists after module unload.
1411 */
1412 buf->ops = &nosteal_pipe_buf_ops;
Miklos Szeredic3021622010-05-25 15:06:07 +02001413
1414 pipe->nrbufs++;
1415 page_nr++;
1416 ret += buf->len;
1417
Al Viro6447a3c2013-03-21 11:01:38 -04001418 if (pipe->files)
Miklos Szeredic3021622010-05-25 15:06:07 +02001419 do_wakeup = 1;
1420 }
1421
1422out_unlock:
1423 pipe_unlock(pipe);
1424
1425 if (do_wakeup) {
1426 smp_mb();
1427 if (waitqueue_active(&pipe->wait))
1428 wake_up_interruptible(&pipe->wait);
1429 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1430 }
1431
1432out:
1433 for (; page_nr < cs.nr_segs; page_nr++)
1434 page_cache_release(bufs[page_nr].page);
1435
1436 kfree(bufs);
1437 return ret;
1438}
1439
Tejun Heo95668a62008-11-26 12:03:55 +01001440static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1441 struct fuse_copy_state *cs)
1442{
1443 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001444 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001445
1446 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001447 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001448
1449 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1450 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001451 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001452
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001453 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001454 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001455
1456err:
1457 fuse_copy_finish(cs);
1458 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001459}
1460
John Muir3b463ae2009-05-31 11:13:57 -04001461static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1462 struct fuse_copy_state *cs)
1463{
1464 struct fuse_notify_inval_inode_out outarg;
1465 int err = -EINVAL;
1466
1467 if (size != sizeof(outarg))
1468 goto err;
1469
1470 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1471 if (err)
1472 goto err;
1473 fuse_copy_finish(cs);
1474
1475 down_read(&fc->killsb);
1476 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001477 if (fc->sb) {
1478 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1479 outarg.off, outarg.len);
1480 }
John Muir3b463ae2009-05-31 11:13:57 -04001481 up_read(&fc->killsb);
1482 return err;
1483
1484err:
1485 fuse_copy_finish(cs);
1486 return err;
1487}
1488
1489static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1490 struct fuse_copy_state *cs)
1491{
1492 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001493 int err = -ENOMEM;
1494 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001495 struct qstr name;
1496
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001497 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1498 if (!buf)
1499 goto err;
1500
1501 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001502 if (size < sizeof(outarg))
1503 goto err;
1504
1505 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1506 if (err)
1507 goto err;
1508
1509 err = -ENAMETOOLONG;
1510 if (outarg.namelen > FUSE_NAME_MAX)
1511 goto err;
1512
Miklos Szeredic2183d12011-08-24 10:20:17 +02001513 err = -EINVAL;
1514 if (size != sizeof(outarg) + outarg.namelen + 1)
1515 goto err;
1516
John Muir3b463ae2009-05-31 11:13:57 -04001517 name.name = buf;
1518 name.len = outarg.namelen;
1519 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1520 if (err)
1521 goto err;
1522 fuse_copy_finish(cs);
1523 buf[outarg.namelen] = 0;
1524 name.hash = full_name_hash(name.name, name.len);
1525
1526 down_read(&fc->killsb);
1527 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001528 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001529 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1530 up_read(&fc->killsb);
1531 kfree(buf);
1532 return err;
1533
1534err:
1535 kfree(buf);
1536 fuse_copy_finish(cs);
1537 return err;
1538}
1539
1540static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1541 struct fuse_copy_state *cs)
1542{
1543 struct fuse_notify_delete_out outarg;
1544 int err = -ENOMEM;
1545 char *buf;
1546 struct qstr name;
1547
1548 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1549 if (!buf)
1550 goto err;
1551
1552 err = -EINVAL;
1553 if (size < sizeof(outarg))
1554 goto err;
1555
1556 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1557 if (err)
1558 goto err;
1559
1560 err = -ENAMETOOLONG;
1561 if (outarg.namelen > FUSE_NAME_MAX)
1562 goto err;
1563
1564 err = -EINVAL;
1565 if (size != sizeof(outarg) + outarg.namelen + 1)
1566 goto err;
1567
1568 name.name = buf;
1569 name.len = outarg.namelen;
1570 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1571 if (err)
1572 goto err;
1573 fuse_copy_finish(cs);
1574 buf[outarg.namelen] = 0;
1575 name.hash = full_name_hash(name.name, name.len);
1576
1577 down_read(&fc->killsb);
1578 err = -ENOENT;
1579 if (fc->sb)
1580 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1581 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001582 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001583 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001584 return err;
1585
1586err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001587 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001588 fuse_copy_finish(cs);
1589 return err;
1590}
1591
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001592static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1593 struct fuse_copy_state *cs)
1594{
1595 struct fuse_notify_store_out outarg;
1596 struct inode *inode;
1597 struct address_space *mapping;
1598 u64 nodeid;
1599 int err;
1600 pgoff_t index;
1601 unsigned int offset;
1602 unsigned int num;
1603 loff_t file_size;
1604 loff_t end;
1605
1606 err = -EINVAL;
1607 if (size < sizeof(outarg))
1608 goto out_finish;
1609
1610 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1611 if (err)
1612 goto out_finish;
1613
1614 err = -EINVAL;
1615 if (size - sizeof(outarg) != outarg.size)
1616 goto out_finish;
1617
1618 nodeid = outarg.nodeid;
1619
1620 down_read(&fc->killsb);
1621
1622 err = -ENOENT;
1623 if (!fc->sb)
1624 goto out_up_killsb;
1625
1626 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1627 if (!inode)
1628 goto out_up_killsb;
1629
1630 mapping = inode->i_mapping;
1631 index = outarg.offset >> PAGE_CACHE_SHIFT;
1632 offset = outarg.offset & ~PAGE_CACHE_MASK;
1633 file_size = i_size_read(inode);
1634 end = outarg.offset + outarg.size;
1635 if (end > file_size) {
1636 file_size = end;
1637 fuse_write_update_size(inode, file_size);
1638 }
1639
1640 num = outarg.size;
1641 while (num) {
1642 struct page *page;
1643 unsigned int this_num;
1644
1645 err = -ENOMEM;
1646 page = find_or_create_page(mapping, index,
1647 mapping_gfp_mask(mapping));
1648 if (!page)
1649 goto out_iput;
1650
1651 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1652 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001653 if (!err && offset == 0 &&
1654 (this_num == PAGE_CACHE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001655 SetPageUptodate(page);
1656 unlock_page(page);
1657 page_cache_release(page);
1658
1659 if (err)
1660 goto out_iput;
1661
1662 num -= this_num;
1663 offset = 0;
1664 index++;
1665 }
1666
1667 err = 0;
1668
1669out_iput:
1670 iput(inode);
1671out_up_killsb:
1672 up_read(&fc->killsb);
1673out_finish:
1674 fuse_copy_finish(cs);
1675 return err;
1676}
1677
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001678static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1679{
Mel Gormanb745bc82014-06-04 16:10:22 -07001680 release_pages(req->pages, req->num_pages, false);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001681}
1682
1683static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1684 struct fuse_notify_retrieve_out *outarg)
1685{
1686 int err;
1687 struct address_space *mapping = inode->i_mapping;
1688 struct fuse_req *req;
1689 pgoff_t index;
1690 loff_t file_size;
1691 unsigned int num;
1692 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001693 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001694 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001695
1696 offset = outarg->offset & ~PAGE_CACHE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001697 file_size = i_size_read(inode);
1698
1699 num = outarg->size;
1700 if (outarg->offset > file_size)
1701 num = 0;
1702 else if (outarg->offset + num > file_size)
1703 num = file_size - outarg->offset;
1704
1705 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1706 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1707
1708 req = fuse_get_req(fc, num_pages);
1709 if (IS_ERR(req))
1710 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001711
1712 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1713 req->in.h.nodeid = outarg->nodeid;
1714 req->in.numargs = 2;
1715 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001716 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001717 req->end = fuse_retrieve_end;
1718
1719 index = outarg->offset >> PAGE_CACHE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001720
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001721 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001722 struct page *page;
1723 unsigned int this_num;
1724
1725 page = find_get_page(mapping, index);
1726 if (!page)
1727 break;
1728
1729 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1730 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001731 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001732 req->num_pages++;
1733
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001734 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001735 num -= this_num;
1736 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001737 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001738 }
1739 req->misc.retrieve_in.offset = outarg->offset;
1740 req->misc.retrieve_in.size = total_len;
1741 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1742 req->in.args[0].value = &req->misc.retrieve_in;
1743 req->in.args[1].size = total_len;
1744
1745 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1746 if (err)
1747 fuse_retrieve_end(fc, req);
1748
1749 return err;
1750}
1751
1752static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1753 struct fuse_copy_state *cs)
1754{
1755 struct fuse_notify_retrieve_out outarg;
1756 struct inode *inode;
1757 int err;
1758
1759 err = -EINVAL;
1760 if (size != sizeof(outarg))
1761 goto copy_finish;
1762
1763 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1764 if (err)
1765 goto copy_finish;
1766
1767 fuse_copy_finish(cs);
1768
1769 down_read(&fc->killsb);
1770 err = -ENOENT;
1771 if (fc->sb) {
1772 u64 nodeid = outarg.nodeid;
1773
1774 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1775 if (inode) {
1776 err = fuse_retrieve(fc, inode, &outarg);
1777 iput(inode);
1778 }
1779 }
1780 up_read(&fc->killsb);
1781
1782 return err;
1783
1784copy_finish:
1785 fuse_copy_finish(cs);
1786 return err;
1787}
1788
Tejun Heo85993962008-11-26 12:03:55 +01001789static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1790 unsigned int size, struct fuse_copy_state *cs)
1791{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001792 /* Don't try to move pages (yet) */
1793 cs->move_pages = 0;
1794
Tejun Heo85993962008-11-26 12:03:55 +01001795 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001796 case FUSE_NOTIFY_POLL:
1797 return fuse_notify_poll(fc, size, cs);
1798
John Muir3b463ae2009-05-31 11:13:57 -04001799 case FUSE_NOTIFY_INVAL_INODE:
1800 return fuse_notify_inval_inode(fc, size, cs);
1801
1802 case FUSE_NOTIFY_INVAL_ENTRY:
1803 return fuse_notify_inval_entry(fc, size, cs);
1804
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001805 case FUSE_NOTIFY_STORE:
1806 return fuse_notify_store(fc, size, cs);
1807
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001808 case FUSE_NOTIFY_RETRIEVE:
1809 return fuse_notify_retrieve(fc, size, cs);
1810
John Muir451d0f52011-12-06 21:50:06 +01001811 case FUSE_NOTIFY_DELETE:
1812 return fuse_notify_delete(fc, size, cs);
1813
Tejun Heo85993962008-11-26 12:03:55 +01001814 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001815 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001816 return -EINVAL;
1817 }
1818}
1819
Miklos Szeredi334f4852005-09-09 13:10:27 -07001820/* Look up request on processing list by unique ID */
1821static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
1822{
Dong Fang05726ac2013-07-30 22:50:01 -04001823 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001824
Dong Fang05726ac2013-07-30 22:50:01 -04001825 list_for_each_entry(req, &fc->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001826 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001827 return req;
1828 }
1829 return NULL;
1830}
1831
1832static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1833 unsigned nbytes)
1834{
1835 unsigned reqsize = sizeof(struct fuse_out_header);
1836
1837 if (out->h.error)
1838 return nbytes != reqsize ? -EINVAL : 0;
1839
1840 reqsize += len_args(out->numargs, out->args);
1841
1842 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1843 return -EINVAL;
1844 else if (reqsize > nbytes) {
1845 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1846 unsigned diffsize = reqsize - nbytes;
1847 if (diffsize > lastarg->size)
1848 return -EINVAL;
1849 lastarg->size -= diffsize;
1850 }
1851 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1852 out->page_zeroing);
1853}
1854
1855/*
1856 * Write a single reply to a request. First the header is copied from
1857 * the write buffer. The request is then searched on the processing
1858 * list by the unique ID found in the header. If found, then remove
1859 * it from the list and copy the rest of the buffer to the request.
1860 * The request is finished by calling request_end()
1861 */
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001862static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1863 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001864{
1865 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001866 struct fuse_req *req;
1867 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001868
Miklos Szeredi334f4852005-09-09 13:10:27 -07001869 if (nbytes < sizeof(struct fuse_out_header))
1870 return -EINVAL;
1871
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001872 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001873 if (err)
1874 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001875
Miklos Szeredi334f4852005-09-09 13:10:27 -07001876 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001877 if (oh.len != nbytes)
1878 goto err_finish;
1879
1880 /*
1881 * Zero oh.unique indicates unsolicited notification message
1882 * and error contains notification code.
1883 */
1884 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001885 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001886 return err ? err : nbytes;
1887 }
1888
1889 err = -EINVAL;
1890 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001891 goto err_finish;
1892
Miklos Szeredid7133112006-04-10 22:54:55 -07001893 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001894 err = -ENOENT;
1895 if (!fc->connected)
1896 goto err_unlock;
1897
Miklos Szeredi334f4852005-09-09 13:10:27 -07001898 req = request_find(fc, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001899 if (!req)
1900 goto err_unlock;
1901
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001902 /* Is it an interrupt reply? */
1903 if (req->intr_unique == oh.unique) {
1904 err = -EINVAL;
1905 if (nbytes != sizeof(struct fuse_out_header))
1906 goto err_unlock;
1907
1908 if (oh.error == -ENOSYS)
1909 fc->no_interrupt = 1;
1910 else if (oh.error == -EAGAIN)
1911 queue_interrupt(fc, req);
1912
1913 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001914 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001915 return nbytes;
1916 }
1917
1918 req->state = FUSE_REQ_WRITING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001919 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001920 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001921 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001922 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001923 if (!req->out.page_replace)
1924 cs->move_pages = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -07001925 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001926
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001927 err = copy_out_args(cs, &req->out, nbytes);
1928 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001929
Miklos Szeredid7133112006-04-10 22:54:55 -07001930 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001931 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001932 if (!fc->connected)
1933 err = -ENOENT;
1934 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001935 req->out.h.error = -EIO;
1936 request_end(fc, req);
1937
1938 return err ? err : nbytes;
1939
1940 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001941 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001942 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001943 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001944 return err;
1945}
1946
Al Virofbdbacc2015-04-03 21:53:39 -04001947static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001948{
1949 struct fuse_copy_state cs;
1950 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1951 if (!fc)
1952 return -EPERM;
1953
Al Virofbdbacc2015-04-03 21:53:39 -04001954 if (!iter_is_iovec(from))
1955 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001956
Miklos Szeredidc008092015-07-01 16:25:58 +02001957 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001958
1959 return fuse_dev_do_write(fc, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001960}
1961
1962static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1963 struct file *out, loff_t *ppos,
1964 size_t len, unsigned int flags)
1965{
1966 unsigned nbuf;
1967 unsigned idx;
1968 struct pipe_buffer *bufs;
1969 struct fuse_copy_state cs;
1970 struct fuse_conn *fc;
1971 size_t rem;
1972 ssize_t ret;
1973
1974 fc = fuse_get_conn(out);
1975 if (!fc)
1976 return -EPERM;
1977
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001978 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001979 if (!bufs)
1980 return -ENOMEM;
1981
1982 pipe_lock(pipe);
1983 nbuf = 0;
1984 rem = 0;
1985 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
1986 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
1987
1988 ret = -EINVAL;
1989 if (rem < len) {
1990 pipe_unlock(pipe);
1991 goto out;
1992 }
1993
1994 rem = len;
1995 while (rem) {
1996 struct pipe_buffer *ibuf;
1997 struct pipe_buffer *obuf;
1998
1999 BUG_ON(nbuf >= pipe->buffers);
2000 BUG_ON(!pipe->nrbufs);
2001 ibuf = &pipe->bufs[pipe->curbuf];
2002 obuf = &bufs[nbuf];
2003
2004 if (rem >= ibuf->len) {
2005 *obuf = *ibuf;
2006 ibuf->ops = NULL;
2007 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
2008 pipe->nrbufs--;
2009 } else {
2010 ibuf->ops->get(pipe, ibuf);
2011 *obuf = *ibuf;
2012 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2013 obuf->len = rem;
2014 ibuf->offset += obuf->len;
2015 ibuf->len -= obuf->len;
2016 }
2017 nbuf++;
2018 rem -= obuf->len;
2019 }
2020 pipe_unlock(pipe);
2021
Miklos Szeredidc008092015-07-01 16:25:58 +02002022 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002023 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04002024 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002025 cs.pipe = pipe;
2026
Miklos Szeredice534fb2010-05-25 15:06:07 +02002027 if (flags & SPLICE_F_MOVE)
2028 cs.move_pages = 1;
2029
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002030 ret = fuse_dev_do_write(fc, &cs, len);
2031
2032 for (idx = 0; idx < nbuf; idx++) {
2033 struct pipe_buffer *buf = &bufs[idx];
2034 buf->ops->release(pipe, buf);
2035 }
2036out:
2037 kfree(bufs);
2038 return ret;
2039}
2040
Miklos Szeredi334f4852005-09-09 13:10:27 -07002041static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2042{
Miklos Szeredi334f4852005-09-09 13:10:27 -07002043 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002044 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002045 if (!fc)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002046 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002047
2048 poll_wait(file, &fc->waitq, wait);
2049
Miklos Szeredid7133112006-04-10 22:54:55 -07002050 spin_lock(&fc->lock);
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002051 if (!fc->connected)
2052 mask = POLLERR;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07002053 else if (request_pending(fc))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002054 mask |= POLLIN | POLLRDNORM;
Miklos Szeredid7133112006-04-10 22:54:55 -07002055 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002056
2057 return mask;
2058}
2059
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002060/*
2061 * Abort all requests on the given list (pending or processing)
2062 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002063 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002064 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002065static void end_requests(struct fuse_conn *fc, struct list_head *head)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02002066__releases(fc->lock)
2067__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002068{
2069 while (!list_empty(head)) {
2070 struct fuse_req *req;
2071 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002072 req->out.h.error = -ECONNABORTED;
2073 request_end(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07002074 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002075 }
2076}
2077
Bryan Green357ccf22011-03-01 16:43:52 -08002078static void end_polls(struct fuse_conn *fc)
2079{
2080 struct rb_node *p;
2081
2082 p = rb_first(&fc->polled_files);
2083
2084 while (p) {
2085 struct fuse_file *ff;
2086 ff = rb_entry(p, struct fuse_file, polled_node);
2087 wake_up_interruptible_all(&ff->poll_wait);
2088
2089 p = rb_next(p);
2090 }
2091}
2092
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002093/*
2094 * Abort all requests.
2095 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002096 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2097 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002098 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002099 * The same effect is usually achievable through killing the filesystem daemon
2100 * and all users of the filesystem. The exception is the combination of an
2101 * asynchronous request and the tricky deadlock (see
2102 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002103 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002104 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2105 * requests, they should be finished off immediately. Locked requests will be
2106 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2107 * requests. It is possible that some request will finish before we can. This
2108 * is OK, the request will in that case be removed from the list before we touch
2109 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002110 */
2111void fuse_abort_conn(struct fuse_conn *fc)
2112{
Miklos Szeredid7133112006-04-10 22:54:55 -07002113 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002114 if (fc->connected) {
Miklos Szeredib716d422015-07-01 16:25:59 +02002115 struct fuse_req *req, *next;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002116 LIST_HEAD(to_end1);
2117 LIST_HEAD(to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002118
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002119 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002120 fc->blocked = 0;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002121 fuse_set_initialized(fc);
Miklos Szeredib716d422015-07-01 16:25:59 +02002122 list_for_each_entry_safe(req, next, &fc->io, list) {
2123 req->out.h.error = -ECONNABORTED;
2124 spin_lock(&req->waitq.lock);
2125 set_bit(FR_ABORTED, &req->flags);
2126 if (!test_bit(FR_LOCKED, &req->flags))
Miklos Szeredi41f98272015-07-01 16:25:59 +02002127 list_move(&req->list, &to_end1);
Miklos Szeredib716d422015-07-01 16:25:59 +02002128 spin_unlock(&req->waitq.lock);
2129 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002130 fc->max_background = UINT_MAX;
2131 flush_bg_queue(fc);
2132 list_splice_init(&fc->pending, &to_end2);
2133 list_splice_init(&fc->processing, &to_end2);
2134 while (!list_empty(&to_end1)) {
2135 req = list_first_entry(&to_end1, struct fuse_req, list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002136 __fuse_get_request(req);
2137 request_end(fc, req);
2138 spin_lock(&fc->lock);
2139 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002140 end_requests(fc, &to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002141 while (forget_pending(fc))
2142 kfree(dequeue_forget(fc, 1, NULL));
Bryan Green357ccf22011-03-01 16:43:52 -08002143 end_polls(fc);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002144 wake_up_all(&fc->waitq);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002145 wake_up_all(&fc->blocked_waitq);
Jeff Dike385a17b2006-04-10 22:54:52 -07002146 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002147 }
Miklos Szeredid7133112006-04-10 22:54:55 -07002148 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002149}
Tejun Heo08cbf542009-04-14 10:54:53 +09002150EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002151
Tejun Heo08cbf542009-04-14 10:54:53 +09002152int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002153{
Miklos Szeredi0720b312006-04-10 22:54:55 -07002154 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002155 if (fc) {
Miklos Szerediccd0a0b2015-07-01 16:25:57 +02002156 WARN_ON(!list_empty(&fc->io));
2157 WARN_ON(fc->fasync != NULL);
2158 fuse_abort_conn(fc);
Miklos Szeredibafa9652006-06-25 05:48:51 -07002159 fuse_conn_put(fc);
Jeff Dike385a17b2006-04-10 22:54:52 -07002160 }
Miklos Szeredif543f252006-01-16 22:14:35 -08002161
Miklos Szeredi334f4852005-09-09 13:10:27 -07002162 return 0;
2163}
Tejun Heo08cbf542009-04-14 10:54:53 +09002164EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002165
Jeff Dike385a17b2006-04-10 22:54:52 -07002166static int fuse_dev_fasync(int fd, struct file *file, int on)
2167{
2168 struct fuse_conn *fc = fuse_get_conn(file);
2169 if (!fc)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002170 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002171
2172 /* No locking - fasync_helper does its own locking */
2173 return fasync_helper(fd, file, on, &fc->fasync);
2174}
2175
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002176const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002177 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002178 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002179 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002180 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002181 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002182 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002183 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002184 .poll = fuse_dev_poll,
2185 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002186 .fasync = fuse_dev_fasync,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002187};
Tejun Heo08cbf542009-04-14 10:54:53 +09002188EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002189
2190static struct miscdevice fuse_miscdevice = {
2191 .minor = FUSE_MINOR,
2192 .name = "fuse",
2193 .fops = &fuse_dev_operations,
2194};
2195
2196int __init fuse_dev_init(void)
2197{
2198 int err = -ENOMEM;
2199 fuse_req_cachep = kmem_cache_create("fuse_request",
2200 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002201 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002202 if (!fuse_req_cachep)
2203 goto out;
2204
2205 err = misc_register(&fuse_miscdevice);
2206 if (err)
2207 goto out_cache_clean;
2208
2209 return 0;
2210
2211 out_cache_clean:
2212 kmem_cache_destroy(fuse_req_cachep);
2213 out:
2214 return err;
2215}
2216
2217void fuse_dev_cleanup(void)
2218{
2219 misc_deregister(&fuse_miscdevice);
2220 kmem_cache_destroy(fuse_req_cachep);
2221}