blob: 2014cee76036b51a751110ce32c995d150978857 [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{
Miklos Szeredi7d2e0a02015-07-01 16:26:00 +0200322 return ++fc->reqctr;
Miklos Szeredid12def12008-02-06 01:38:39 -0800323}
324
325static void queue_request(struct fuse_conn *fc, struct fuse_req *req)
326{
Miklos Szeredid12def12008-02-06 01:38:39 -0800327 req->in.h.len = sizeof(struct fuse_in_header) +
328 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
329 list_add_tail(&req->list, &fc->pending);
330 req->state = FUSE_REQ_PENDING;
Miklos Szeredid12def12008-02-06 01:38:39 -0800331 wake_up(&fc->waitq);
332 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
333}
334
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100335void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
336 u64 nodeid, u64 nlookup)
337{
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100338 forget->forget_one.nodeid = nodeid;
339 forget->forget_one.nlookup = nlookup;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100340
341 spin_lock(&fc->lock);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200342 if (fc->connected) {
343 fc->forget_list_tail->next = forget;
344 fc->forget_list_tail = forget;
345 wake_up(&fc->waitq);
346 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
347 } else {
348 kfree(forget);
349 }
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100350 spin_unlock(&fc->lock);
351}
352
Miklos Szeredid12def12008-02-06 01:38:39 -0800353static void flush_bg_queue(struct fuse_conn *fc)
354{
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700355 while (fc->active_background < fc->max_background &&
Miklos Szeredid12def12008-02-06 01:38:39 -0800356 !list_empty(&fc->bg_queue)) {
357 struct fuse_req *req;
358
359 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
360 list_del(&req->list);
361 fc->active_background++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200362 req->in.h.unique = fuse_get_unique(fc);
Miklos Szeredid12def12008-02-06 01:38:39 -0800363 queue_request(fc, req);
364 }
365}
366
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200367/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700368 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700369 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800370 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700371 * was closed. The requester thread is woken up (if still waiting),
372 * the 'end' callback is called if given, else the reference to the
373 * request is released
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800374 *
Miklos Szeredid7133112006-04-10 22:54:55 -0700375 * Called with fc->lock, unlocks it
Miklos Szeredi334f4852005-09-09 13:10:27 -0700376 */
377static void request_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200378__releases(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700379{
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700380 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
381 req->end = NULL;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200382 list_del_init(&req->list);
383 list_del_init(&req->intr_entry);
Miklos Szeredi83cfd492006-01-16 22:14:31 -0800384 req->state = FUSE_REQ_FINISHED;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200385 if (test_bit(FR_BACKGROUND, &req->flags)) {
386 clear_bit(FR_BACKGROUND, &req->flags);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400387 if (fc->num_background == fc->max_background)
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700388 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400389
390 /* Wake up next waiter, if any */
Miklos Szeredi3c18ef82013-04-17 21:50:58 +0200391 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400392 wake_up(&fc->blocked_waitq);
393
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700394 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900395 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200396 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
397 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700398 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700399 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800400 fc->active_background--;
401 flush_bg_queue(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700402 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700403 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700404 wake_up(&req->waitq);
405 if (end)
406 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100407 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700408}
409
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700410static void wait_answer_interruptible(struct fuse_conn *fc,
411 struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200412__releases(fc->lock)
413__acquires(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700414{
415 if (signal_pending(current))
416 return;
417
418 spin_unlock(&fc->lock);
419 wait_event_interruptible(req->waitq, req->state == FUSE_REQ_FINISHED);
420 spin_lock(&fc->lock);
421}
422
423static void queue_interrupt(struct fuse_conn *fc, struct fuse_req *req)
424{
425 list_add_tail(&req->intr_entry, &fc->interrupts);
426 wake_up(&fc->waitq);
427 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
428}
429
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700430static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200431__releases(fc->lock)
432__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700433{
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700434 if (!fc->no_interrupt) {
435 /* Any signal may interrupt this */
436 wait_answer_interruptible(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700437
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700438 if (req->state == FUSE_REQ_FINISHED)
439 return;
440
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200441 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700442 if (req->state == FUSE_REQ_SENT)
443 queue_interrupt(fc, req);
444 }
445
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200446 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700447 sigset_t oldset;
448
449 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700450 block_sigs(&oldset);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700451 wait_answer_interruptible(fc, req);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700452 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700453
Miklos Szeredia131de02007-10-16 23:31:04 -0700454 if (req->state == FUSE_REQ_FINISHED)
455 return;
456
457 /* Request is not yet in userspace, bail out */
458 if (req->state == FUSE_REQ_PENDING) {
459 list_del(&req->list);
460 __fuse_put_request(req);
461 req->out.h.error = -EINTR;
462 return;
463 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700464 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700465
Miklos Szeredia131de02007-10-16 23:31:04 -0700466 /*
467 * Either request is already in userspace, or it was forced.
468 * Wait it out.
469 */
470 spin_unlock(&fc->lock);
471 wait_event(req->waitq, req->state == FUSE_REQ_FINISHED);
472 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700473}
474
Eric Wong6a4e9222013-02-04 13:04:44 +0000475static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700476{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200477 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredid7133112006-04-10 22:54:55 -0700478 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700479 if (!fc->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700480 req->out.h.error = -ENOTCONN;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700481 else {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200482 req->in.h.unique = fuse_get_unique(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700483 queue_request(fc, req);
484 /* acquire extra reference, since request is still needed
485 after request_end() */
486 __fuse_get_request(req);
487
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700488 request_wait_answer(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700489 }
Miklos Szeredid7133112006-04-10 22:54:55 -0700490 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700491}
Eric Wong6a4e9222013-02-04 13:04:44 +0000492
493void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
494{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200495 __set_bit(FR_ISREPLY, &req->flags);
496 if (!test_bit(FR_WAITING, &req->flags)) {
497 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200498 atomic_inc(&fc->num_waiting);
499 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000500 __fuse_request_send(fc, req);
501}
Tejun Heo08cbf542009-04-14 10:54:53 +0900502EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700503
Miklos Szeredi21f62172015-01-06 10:45:35 +0100504static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
505{
506 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
507 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
508
509 if (fc->minor < 9) {
510 switch (args->in.h.opcode) {
511 case FUSE_LOOKUP:
512 case FUSE_CREATE:
513 case FUSE_MKNOD:
514 case FUSE_MKDIR:
515 case FUSE_SYMLINK:
516 case FUSE_LINK:
517 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
518 break;
519 case FUSE_GETATTR:
520 case FUSE_SETATTR:
521 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
522 break;
523 }
524 }
525 if (fc->minor < 12) {
526 switch (args->in.h.opcode) {
527 case FUSE_CREATE:
528 args->in.args[0].size = sizeof(struct fuse_open_in);
529 break;
530 case FUSE_MKNOD:
531 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
532 break;
533 }
534 }
535}
536
Miklos Szeredi70781872014-12-12 09:49:05 +0100537ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
538{
539 struct fuse_req *req;
540 ssize_t ret;
541
542 req = fuse_get_req(fc, 0);
543 if (IS_ERR(req))
544 return PTR_ERR(req);
545
Miklos Szeredi21f62172015-01-06 10:45:35 +0100546 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
547 fuse_adjust_compat(fc, args);
548
Miklos Szeredi70781872014-12-12 09:49:05 +0100549 req->in.h.opcode = args->in.h.opcode;
550 req->in.h.nodeid = args->in.h.nodeid;
551 req->in.numargs = args->in.numargs;
552 memcpy(req->in.args, args->in.args,
553 args->in.numargs * sizeof(struct fuse_in_arg));
554 req->out.argvar = args->out.argvar;
555 req->out.numargs = args->out.numargs;
556 memcpy(req->out.args, args->out.args,
557 args->out.numargs * sizeof(struct fuse_arg));
558 fuse_request_send(fc, req);
559 ret = req->out.h.error;
560 if (!ret && args->out.argvar) {
561 BUG_ON(args->out.numargs != 1);
562 ret = req->out.args[0].size;
563 }
564 fuse_put_request(fc, req);
565
566 return ret;
567}
568
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200569/*
570 * Called under fc->lock
571 *
572 * fc->connected must have been checked previously
573 */
574void fuse_request_send_background_locked(struct fuse_conn *fc,
575 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800576{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200577 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
578 if (!test_bit(FR_WAITING, &req->flags)) {
579 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200580 atomic_inc(&fc->num_waiting);
581 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200582 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800583 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700584 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800585 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700586 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900587 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200588 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
589 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800590 }
591 list_add_tail(&req->list, &fc->bg_queue);
592 flush_bg_queue(fc);
593}
594
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200595void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700596{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200597 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700598 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700599 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200600 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700601 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700602 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200603 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700604 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200605 req->end(fc, req);
606 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700607 }
608}
Tejun Heo08cbf542009-04-14 10:54:53 +0900609EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700610
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200611static int fuse_request_send_notify_reply(struct fuse_conn *fc,
612 struct fuse_req *req, u64 unique)
613{
614 int err = -ENODEV;
615
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200616 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200617 req->in.h.unique = unique;
618 spin_lock(&fc->lock);
619 if (fc->connected) {
620 queue_request(fc, req);
621 err = 0;
622 }
623 spin_unlock(&fc->lock);
624
625 return err;
626}
627
Anand V. Avati0b05b182012-08-19 08:53:23 -0400628void fuse_force_forget(struct file *file, u64 nodeid)
629{
Al Viro6131ffa2013-02-27 16:59:05 -0500630 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400631 struct fuse_conn *fc = get_fuse_conn(inode);
632 struct fuse_req *req;
633 struct fuse_forget_in inarg;
634
635 memset(&inarg, 0, sizeof(inarg));
636 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400637 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400638 req->in.h.opcode = FUSE_FORGET;
639 req->in.h.nodeid = nodeid;
640 req->in.numargs = 1;
641 req->in.args[0].size = sizeof(inarg);
642 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200643 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000644 __fuse_request_send(fc, req);
645 /* ignore errors */
646 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400647}
648
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700649/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700650 * Lock the request. Up to the next unlock_request() there mustn't be
651 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700652 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700653 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200654static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700655{
656 int err = 0;
657 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200658 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200659 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700660 err = -ENOENT;
661 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200662 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200663 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700664 }
665 return err;
666}
667
668/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200669 * Unlock request. If it was aborted while locked, caller is responsible
670 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700671 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200672static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700673{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200674 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700675 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200676 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200677 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200678 err = -ENOENT;
679 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200680 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200681 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700682 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200683 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700684}
685
686struct fuse_copy_state {
687 int write;
688 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400689 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200690 struct pipe_buffer *pipebufs;
691 struct pipe_buffer *currbuf;
692 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700693 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700694 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700695 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200696 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200697 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700698};
699
Miklos Szeredidc008092015-07-01 16:25:58 +0200700static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400701 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700702{
703 memset(cs, 0, sizeof(*cs));
704 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400705 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700706}
707
708/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800709static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700710{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200711 if (cs->currbuf) {
712 struct pipe_buffer *buf = cs->currbuf;
713
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200714 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200715 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200716 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200717 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700718 if (cs->write) {
719 flush_dcache_page(cs->pg);
720 set_page_dirty_lock(cs->pg);
721 }
722 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700723 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200724 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700725}
726
727/*
728 * Get another pagefull of userspace buffer, and map it to kernel
729 * address space, and lock request
730 */
731static int fuse_copy_fill(struct fuse_copy_state *cs)
732{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200733 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700734 int err;
735
Miklos Szeredidc008092015-07-01 16:25:58 +0200736 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200737 if (err)
738 return err;
739
Miklos Szeredi334f4852005-09-09 13:10:27 -0700740 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200741 if (cs->pipebufs) {
742 struct pipe_buffer *buf = cs->pipebufs;
743
Miklos Szeredic3021622010-05-25 15:06:07 +0200744 if (!cs->write) {
745 err = buf->ops->confirm(cs->pipe, buf);
746 if (err)
747 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200748
Miklos Szeredic3021622010-05-25 15:06:07 +0200749 BUG_ON(!cs->nr_segs);
750 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200751 cs->pg = buf->page;
752 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200753 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200754 cs->pipebufs++;
755 cs->nr_segs--;
756 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200757 if (cs->nr_segs == cs->pipe->buffers)
758 return -EIO;
759
760 page = alloc_page(GFP_HIGHUSER);
761 if (!page)
762 return -ENOMEM;
763
764 buf->page = page;
765 buf->offset = 0;
766 buf->len = 0;
767
768 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200769 cs->pg = page;
770 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200771 cs->len = PAGE_SIZE;
772 cs->pipebufs++;
773 cs->nr_segs++;
774 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200775 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400776 size_t off;
777 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200778 if (err < 0)
779 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400780 BUG_ON(!err);
781 cs->len = err;
782 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200783 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400784 cs->offset = off;
785 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700786 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700787
Miklos Szeredidc008092015-07-01 16:25:58 +0200788 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700789}
790
791/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800792static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700793{
794 unsigned ncpy = min(*size, cs->len);
795 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200796 void *pgaddr = kmap_atomic(cs->pg);
797 void *buf = pgaddr + cs->offset;
798
Miklos Szeredi334f4852005-09-09 13:10:27 -0700799 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200800 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700801 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200802 memcpy(*val, buf, ncpy);
803
804 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700805 *val += ncpy;
806 }
807 *size -= ncpy;
808 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200809 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700810 return ncpy;
811}
812
Miklos Szeredice534fb2010-05-25 15:06:07 +0200813static int fuse_check_page(struct page *page)
814{
815 if (page_mapcount(page) ||
816 page->mapping != NULL ||
817 page_count(page) != 1 ||
818 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
819 ~(1 << PG_locked |
820 1 << PG_referenced |
821 1 << PG_uptodate |
822 1 << PG_lru |
823 1 << PG_active |
824 1 << PG_reclaim))) {
825 printk(KERN_WARNING "fuse: trying to steal weird page\n");
826 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);
827 return 1;
828 }
829 return 0;
830}
831
832static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
833{
834 int err;
835 struct page *oldpage = *pagep;
836 struct page *newpage;
837 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200838
Miklos Szeredidc008092015-07-01 16:25:58 +0200839 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200840 if (err)
841 return err;
842
Miklos Szeredice534fb2010-05-25 15:06:07 +0200843 fuse_copy_finish(cs);
844
845 err = buf->ops->confirm(cs->pipe, buf);
846 if (err)
847 return err;
848
849 BUG_ON(!cs->nr_segs);
850 cs->currbuf = buf;
851 cs->len = buf->len;
852 cs->pipebufs++;
853 cs->nr_segs--;
854
855 if (cs->len != PAGE_SIZE)
856 goto out_fallback;
857
858 if (buf->ops->steal(cs->pipe, buf) != 0)
859 goto out_fallback;
860
861 newpage = buf->page;
862
Miklos Szerediaa991b32015-02-26 11:45:47 +0100863 if (!PageUptodate(newpage))
864 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200865
866 ClearPageMappedToDisk(newpage);
867
868 if (fuse_check_page(newpage) != 0)
869 goto out_fallback_unlock;
870
Miklos Szeredice534fb2010-05-25 15:06:07 +0200871 /*
872 * This is a new and locked page, it shouldn't be mapped or
873 * have any special flags on it
874 */
875 if (WARN_ON(page_mapped(oldpage)))
876 goto out_fallback_unlock;
877 if (WARN_ON(page_has_private(oldpage)))
878 goto out_fallback_unlock;
879 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
880 goto out_fallback_unlock;
881 if (WARN_ON(PageMlocked(oldpage)))
882 goto out_fallback_unlock;
883
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700884 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200885 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700886 unlock_page(newpage);
887 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200888 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700889
Miklos Szeredice534fb2010-05-25 15:06:07 +0200890 page_cache_get(newpage);
891
892 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
893 lru_cache_add_file(newpage);
894
895 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200896 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200897 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200898 err = -ENOENT;
899 else
900 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200901 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200902
903 if (err) {
904 unlock_page(newpage);
905 page_cache_release(newpage);
906 return err;
907 }
908
909 unlock_page(oldpage);
910 page_cache_release(oldpage);
911 cs->len = 0;
912
913 return 0;
914
915out_fallback_unlock:
916 unlock_page(newpage);
917out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200918 cs->pg = buf->page;
919 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200920
Miklos Szeredidc008092015-07-01 16:25:58 +0200921 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200922 if (err)
923 return err;
924
925 return 1;
926}
927
Miklos Szeredic3021622010-05-25 15:06:07 +0200928static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
929 unsigned offset, unsigned count)
930{
931 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200932 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200933
934 if (cs->nr_segs == cs->pipe->buffers)
935 return -EIO;
936
Miklos Szeredidc008092015-07-01 16:25:58 +0200937 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200938 if (err)
939 return err;
940
Miklos Szeredic3021622010-05-25 15:06:07 +0200941 fuse_copy_finish(cs);
942
943 buf = cs->pipebufs;
944 page_cache_get(page);
945 buf->page = page;
946 buf->offset = offset;
947 buf->len = count;
948
949 cs->pipebufs++;
950 cs->nr_segs++;
951 cs->len = 0;
952
953 return 0;
954}
955
Miklos Szeredi334f4852005-09-09 13:10:27 -0700956/*
957 * Copy a page in the request to/from the userspace buffer. Must be
958 * done atomically
959 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200960static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800961 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700962{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200963 int err;
964 struct page *page = *pagep;
965
Miklos Szeredib6777c42010-10-26 14:22:27 -0700966 if (page && zeroing && count < PAGE_SIZE)
967 clear_highpage(page);
968
Miklos Szeredi334f4852005-09-09 13:10:27 -0700969 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200970 if (cs->write && cs->pipebufs && page) {
971 return fuse_ref_page(cs, page, offset, count);
972 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200973 if (cs->move_pages && page &&
974 offset == 0 && count == PAGE_SIZE) {
975 err = fuse_try_move_page(cs, pagep);
976 if (err <= 0)
977 return err;
978 } else {
979 err = fuse_copy_fill(cs);
980 if (err)
981 return err;
982 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100983 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700984 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800985 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700986 void *buf = mapaddr + offset;
987 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +0800988 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700989 } else
990 offset += fuse_copy_do(cs, NULL, &count);
991 }
992 if (page && !cs->write)
993 flush_dcache_page(page);
994 return 0;
995}
996
997/* Copy pages in the request to/from userspace buffer */
998static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
999 int zeroing)
1000{
1001 unsigned i;
1002 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001003
1004 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +02001005 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001006 unsigned offset = req->page_descs[i].offset;
1007 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001008
1009 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1010 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001011 if (err)
1012 return err;
1013
1014 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001015 }
1016 return 0;
1017}
1018
1019/* Copy a single argument in the request to/from userspace buffer */
1020static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1021{
1022 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001023 if (!cs->len) {
1024 int err = fuse_copy_fill(cs);
1025 if (err)
1026 return err;
1027 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001028 fuse_copy_do(cs, &val, &size);
1029 }
1030 return 0;
1031}
1032
1033/* Copy request arguments to/from userspace buffer */
1034static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1035 unsigned argpages, struct fuse_arg *args,
1036 int zeroing)
1037{
1038 int err = 0;
1039 unsigned i;
1040
1041 for (i = 0; !err && i < numargs; i++) {
1042 struct fuse_arg *arg = &args[i];
1043 if (i == numargs - 1 && argpages)
1044 err = fuse_copy_pages(cs, arg->size, zeroing);
1045 else
1046 err = fuse_copy_one(cs, arg->value, arg->size);
1047 }
1048 return err;
1049}
1050
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001051static int forget_pending(struct fuse_conn *fc)
1052{
1053 return fc->forget_list_head.next != NULL;
1054}
1055
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001056static int request_pending(struct fuse_conn *fc)
1057{
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001058 return !list_empty(&fc->pending) || !list_empty(&fc->interrupts) ||
1059 forget_pending(fc);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001060}
1061
Miklos Szeredi334f4852005-09-09 13:10:27 -07001062/* Wait until a request is available on the pending list */
1063static void request_wait(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001064__releases(fc->lock)
1065__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001066{
1067 DECLARE_WAITQUEUE(wait, current);
1068
1069 add_wait_queue_exclusive(&fc->waitq, &wait);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001070 while (fc->connected && !request_pending(fc)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001071 set_current_state(TASK_INTERRUPTIBLE);
1072 if (signal_pending(current))
1073 break;
1074
Miklos Szeredid7133112006-04-10 22:54:55 -07001075 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001076 schedule();
Miklos Szeredid7133112006-04-10 22:54:55 -07001077 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001078 }
1079 set_current_state(TASK_RUNNING);
1080 remove_wait_queue(&fc->waitq, &wait);
1081}
1082
1083/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001084 * Transfer an interrupt request to userspace
1085 *
1086 * Unlike other requests this is assembled on demand, without a need
1087 * to allocate a separate fuse_req structure.
1088 *
1089 * Called with fc->lock held, releases it
1090 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001091static int fuse_read_interrupt(struct fuse_conn *fc, struct fuse_copy_state *cs,
1092 size_t nbytes, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001093__releases(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001094{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001095 struct fuse_in_header ih;
1096 struct fuse_interrupt_in arg;
1097 unsigned reqsize = sizeof(ih) + sizeof(arg);
1098 int err;
1099
1100 list_del_init(&req->intr_entry);
1101 req->intr_unique = fuse_get_unique(fc);
1102 memset(&ih, 0, sizeof(ih));
1103 memset(&arg, 0, sizeof(arg));
1104 ih.len = reqsize;
1105 ih.opcode = FUSE_INTERRUPT;
1106 ih.unique = req->intr_unique;
1107 arg.unique = req->in.h.unique;
1108
1109 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001110 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001111 return -EINVAL;
1112
Miklos Szeredic3021622010-05-25 15:06:07 +02001113 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001114 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001115 err = fuse_copy_one(cs, &arg, sizeof(arg));
1116 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001117
1118 return err ? err : reqsize;
1119}
1120
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001121static struct fuse_forget_link *dequeue_forget(struct fuse_conn *fc,
1122 unsigned max,
1123 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001124{
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001125 struct fuse_forget_link *head = fc->forget_list_head.next;
1126 struct fuse_forget_link **newhead = &head;
1127 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001128
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001129 for (count = 0; *newhead != NULL && count < max; count++)
1130 newhead = &(*newhead)->next;
1131
1132 fc->forget_list_head.next = *newhead;
1133 *newhead = NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001134 if (fc->forget_list_head.next == NULL)
1135 fc->forget_list_tail = &fc->forget_list_head;
1136
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001137 if (countp != NULL)
1138 *countp = count;
1139
1140 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001141}
1142
1143static int fuse_read_single_forget(struct fuse_conn *fc,
1144 struct fuse_copy_state *cs,
1145 size_t nbytes)
1146__releases(fc->lock)
1147{
1148 int err;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001149 struct fuse_forget_link *forget = dequeue_forget(fc, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001150 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001151 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001152 };
1153 struct fuse_in_header ih = {
1154 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001155 .nodeid = forget->forget_one.nodeid,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001156 .unique = fuse_get_unique(fc),
1157 .len = sizeof(ih) + sizeof(arg),
1158 };
1159
1160 spin_unlock(&fc->lock);
1161 kfree(forget);
1162 if (nbytes < ih.len)
1163 return -EINVAL;
1164
1165 err = fuse_copy_one(cs, &ih, sizeof(ih));
1166 if (!err)
1167 err = fuse_copy_one(cs, &arg, sizeof(arg));
1168 fuse_copy_finish(cs);
1169
1170 if (err)
1171 return err;
1172
1173 return ih.len;
1174}
1175
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001176static int fuse_read_batch_forget(struct fuse_conn *fc,
1177 struct fuse_copy_state *cs, size_t nbytes)
1178__releases(fc->lock)
1179{
1180 int err;
1181 unsigned max_forgets;
1182 unsigned count;
1183 struct fuse_forget_link *head;
1184 struct fuse_batch_forget_in arg = { .count = 0 };
1185 struct fuse_in_header ih = {
1186 .opcode = FUSE_BATCH_FORGET,
1187 .unique = fuse_get_unique(fc),
1188 .len = sizeof(ih) + sizeof(arg),
1189 };
1190
1191 if (nbytes < ih.len) {
1192 spin_unlock(&fc->lock);
1193 return -EINVAL;
1194 }
1195
1196 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
1197 head = dequeue_forget(fc, max_forgets, &count);
1198 spin_unlock(&fc->lock);
1199
1200 arg.count = count;
1201 ih.len += count * sizeof(struct fuse_forget_one);
1202 err = fuse_copy_one(cs, &ih, sizeof(ih));
1203 if (!err)
1204 err = fuse_copy_one(cs, &arg, sizeof(arg));
1205
1206 while (head) {
1207 struct fuse_forget_link *forget = head;
1208
1209 if (!err) {
1210 err = fuse_copy_one(cs, &forget->forget_one,
1211 sizeof(forget->forget_one));
1212 }
1213 head = forget->next;
1214 kfree(forget);
1215 }
1216
1217 fuse_copy_finish(cs);
1218
1219 if (err)
1220 return err;
1221
1222 return ih.len;
1223}
1224
1225static int fuse_read_forget(struct fuse_conn *fc, struct fuse_copy_state *cs,
1226 size_t nbytes)
1227__releases(fc->lock)
1228{
1229 if (fc->minor < 16 || fc->forget_list_head.next->next == NULL)
1230 return fuse_read_single_forget(fc, cs, nbytes);
1231 else
1232 return fuse_read_batch_forget(fc, cs, nbytes);
1233}
1234
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001235/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001236 * Read a single request into the userspace filesystem's buffer. This
1237 * function waits until a request is available, then removes it from
1238 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001239 * no reply is needed (FORGET) or request has been aborted or there
1240 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001241 * request_end(). Otherwise add it to the processing list, and set
1242 * the 'sent' flag.
1243 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001244static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1245 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001246{
1247 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001248 struct fuse_req *req;
1249 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001250 unsigned reqsize;
1251
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001252 restart:
Miklos Szeredid7133112006-04-10 22:54:55 -07001253 spin_lock(&fc->lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001254 err = -EAGAIN;
1255 if ((file->f_flags & O_NONBLOCK) && fc->connected &&
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001256 !request_pending(fc))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001257 goto err_unlock;
1258
Miklos Szeredi334f4852005-09-09 13:10:27 -07001259 request_wait(fc);
1260 err = -ENODEV;
Miklos Szeredi9ba7cbb2006-01-16 22:14:34 -08001261 if (!fc->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001262 goto err_unlock;
1263 err = -ERESTARTSYS;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001264 if (!request_pending(fc))
Miklos Szeredi334f4852005-09-09 13:10:27 -07001265 goto err_unlock;
1266
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001267 if (!list_empty(&fc->interrupts)) {
1268 req = list_entry(fc->interrupts.next, struct fuse_req,
1269 intr_entry);
Miklos Szeredic3021622010-05-25 15:06:07 +02001270 return fuse_read_interrupt(fc, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001271 }
1272
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001273 if (forget_pending(fc)) {
1274 if (list_empty(&fc->pending) || fc->forget_batch-- > 0)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001275 return fuse_read_forget(fc, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001276
1277 if (fc->forget_batch <= -8)
1278 fc->forget_batch = 16;
1279 }
1280
Miklos Szeredi334f4852005-09-09 13:10:27 -07001281 req = list_entry(fc->pending.next, struct fuse_req, list);
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001282 req->state = FUSE_REQ_READING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001283 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001284
1285 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001286 reqsize = in->h.len;
1287 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001288 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001289 req->out.h.error = -EIO;
1290 /* SETXATTR is special, since it may contain too large data */
1291 if (in->h.opcode == FUSE_SETXATTR)
1292 req->out.h.error = -E2BIG;
1293 request_end(fc, req);
1294 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001295 }
Miklos Szeredid7133112006-04-10 22:54:55 -07001296 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001297 cs->req = req;
1298 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001299 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001300 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001301 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001302 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001303 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001304 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001305 if (!fc->connected) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001306 request_end(fc, req);
1307 return -ENODEV;
1308 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001309 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001310 req->out.h.error = -EIO;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001311 request_end(fc, req);
1312 return err;
1313 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001314 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001315 request_end(fc, req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001316 } else {
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001317 req->state = FUSE_REQ_SENT;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001318 list_move_tail(&req->list, &fc->processing);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001319 if (test_bit(FR_INTERRUPTED, &req->flags))
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001320 queue_interrupt(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001321 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001322 }
1323 return reqsize;
1324
1325 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001326 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001327 return err;
1328}
1329
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001330static int fuse_dev_open(struct inode *inode, struct file *file)
1331{
1332 /*
1333 * The fuse device's file's private_data is used to hold
1334 * the fuse_conn(ection) when it is mounted, and is used to
1335 * keep track of whether the file has been mounted already.
1336 */
1337 file->private_data = NULL;
1338 return 0;
1339}
1340
Al Virofbdbacc2015-04-03 21:53:39 -04001341static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001342{
1343 struct fuse_copy_state cs;
1344 struct file *file = iocb->ki_filp;
1345 struct fuse_conn *fc = fuse_get_conn(file);
1346 if (!fc)
1347 return -EPERM;
1348
Al Virofbdbacc2015-04-03 21:53:39 -04001349 if (!iter_is_iovec(to))
1350 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001351
Miklos Szeredidc008092015-07-01 16:25:58 +02001352 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001353
1354 return fuse_dev_do_read(fc, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001355}
1356
Miklos Szeredic3021622010-05-25 15:06:07 +02001357static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1358 struct pipe_inode_info *pipe,
1359 size_t len, unsigned int flags)
1360{
1361 int ret;
1362 int page_nr = 0;
1363 int do_wakeup = 0;
1364 struct pipe_buffer *bufs;
1365 struct fuse_copy_state cs;
1366 struct fuse_conn *fc = fuse_get_conn(in);
1367 if (!fc)
1368 return -EPERM;
1369
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001370 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001371 if (!bufs)
1372 return -ENOMEM;
1373
Miklos Szeredidc008092015-07-01 16:25:58 +02001374 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001375 cs.pipebufs = bufs;
1376 cs.pipe = pipe;
1377 ret = fuse_dev_do_read(fc, in, &cs, len);
1378 if (ret < 0)
1379 goto out;
1380
1381 ret = 0;
1382 pipe_lock(pipe);
1383
1384 if (!pipe->readers) {
1385 send_sig(SIGPIPE, current, 0);
1386 if (!ret)
1387 ret = -EPIPE;
1388 goto out_unlock;
1389 }
1390
1391 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1392 ret = -EIO;
1393 goto out_unlock;
1394 }
1395
1396 while (page_nr < cs.nr_segs) {
1397 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1398 struct pipe_buffer *buf = pipe->bufs + newbuf;
1399
1400 buf->page = bufs[page_nr].page;
1401 buf->offset = bufs[page_nr].offset;
1402 buf->len = bufs[page_nr].len;
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001403 /*
1404 * Need to be careful about this. Having buf->ops in module
1405 * code can Oops if the buffer persists after module unload.
1406 */
1407 buf->ops = &nosteal_pipe_buf_ops;
Miklos Szeredic3021622010-05-25 15:06:07 +02001408
1409 pipe->nrbufs++;
1410 page_nr++;
1411 ret += buf->len;
1412
Al Viro6447a3c2013-03-21 11:01:38 -04001413 if (pipe->files)
Miklos Szeredic3021622010-05-25 15:06:07 +02001414 do_wakeup = 1;
1415 }
1416
1417out_unlock:
1418 pipe_unlock(pipe);
1419
1420 if (do_wakeup) {
1421 smp_mb();
1422 if (waitqueue_active(&pipe->wait))
1423 wake_up_interruptible(&pipe->wait);
1424 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1425 }
1426
1427out:
1428 for (; page_nr < cs.nr_segs; page_nr++)
1429 page_cache_release(bufs[page_nr].page);
1430
1431 kfree(bufs);
1432 return ret;
1433}
1434
Tejun Heo95668a62008-11-26 12:03:55 +01001435static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1436 struct fuse_copy_state *cs)
1437{
1438 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001439 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001440
1441 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001442 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001443
1444 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1445 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001446 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001447
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001448 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001449 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001450
1451err:
1452 fuse_copy_finish(cs);
1453 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001454}
1455
John Muir3b463ae2009-05-31 11:13:57 -04001456static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1457 struct fuse_copy_state *cs)
1458{
1459 struct fuse_notify_inval_inode_out outarg;
1460 int err = -EINVAL;
1461
1462 if (size != sizeof(outarg))
1463 goto err;
1464
1465 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1466 if (err)
1467 goto err;
1468 fuse_copy_finish(cs);
1469
1470 down_read(&fc->killsb);
1471 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001472 if (fc->sb) {
1473 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1474 outarg.off, outarg.len);
1475 }
John Muir3b463ae2009-05-31 11:13:57 -04001476 up_read(&fc->killsb);
1477 return err;
1478
1479err:
1480 fuse_copy_finish(cs);
1481 return err;
1482}
1483
1484static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1485 struct fuse_copy_state *cs)
1486{
1487 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001488 int err = -ENOMEM;
1489 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001490 struct qstr name;
1491
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001492 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1493 if (!buf)
1494 goto err;
1495
1496 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001497 if (size < sizeof(outarg))
1498 goto err;
1499
1500 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1501 if (err)
1502 goto err;
1503
1504 err = -ENAMETOOLONG;
1505 if (outarg.namelen > FUSE_NAME_MAX)
1506 goto err;
1507
Miklos Szeredic2183d12011-08-24 10:20:17 +02001508 err = -EINVAL;
1509 if (size != sizeof(outarg) + outarg.namelen + 1)
1510 goto err;
1511
John Muir3b463ae2009-05-31 11:13:57 -04001512 name.name = buf;
1513 name.len = outarg.namelen;
1514 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1515 if (err)
1516 goto err;
1517 fuse_copy_finish(cs);
1518 buf[outarg.namelen] = 0;
1519 name.hash = full_name_hash(name.name, name.len);
1520
1521 down_read(&fc->killsb);
1522 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001523 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001524 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1525 up_read(&fc->killsb);
1526 kfree(buf);
1527 return err;
1528
1529err:
1530 kfree(buf);
1531 fuse_copy_finish(cs);
1532 return err;
1533}
1534
1535static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1536 struct fuse_copy_state *cs)
1537{
1538 struct fuse_notify_delete_out outarg;
1539 int err = -ENOMEM;
1540 char *buf;
1541 struct qstr name;
1542
1543 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1544 if (!buf)
1545 goto err;
1546
1547 err = -EINVAL;
1548 if (size < sizeof(outarg))
1549 goto err;
1550
1551 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1552 if (err)
1553 goto err;
1554
1555 err = -ENAMETOOLONG;
1556 if (outarg.namelen > FUSE_NAME_MAX)
1557 goto err;
1558
1559 err = -EINVAL;
1560 if (size != sizeof(outarg) + outarg.namelen + 1)
1561 goto err;
1562
1563 name.name = buf;
1564 name.len = outarg.namelen;
1565 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1566 if (err)
1567 goto err;
1568 fuse_copy_finish(cs);
1569 buf[outarg.namelen] = 0;
1570 name.hash = full_name_hash(name.name, name.len);
1571
1572 down_read(&fc->killsb);
1573 err = -ENOENT;
1574 if (fc->sb)
1575 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1576 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001577 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001578 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001579 return err;
1580
1581err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001582 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001583 fuse_copy_finish(cs);
1584 return err;
1585}
1586
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001587static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1588 struct fuse_copy_state *cs)
1589{
1590 struct fuse_notify_store_out outarg;
1591 struct inode *inode;
1592 struct address_space *mapping;
1593 u64 nodeid;
1594 int err;
1595 pgoff_t index;
1596 unsigned int offset;
1597 unsigned int num;
1598 loff_t file_size;
1599 loff_t end;
1600
1601 err = -EINVAL;
1602 if (size < sizeof(outarg))
1603 goto out_finish;
1604
1605 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1606 if (err)
1607 goto out_finish;
1608
1609 err = -EINVAL;
1610 if (size - sizeof(outarg) != outarg.size)
1611 goto out_finish;
1612
1613 nodeid = outarg.nodeid;
1614
1615 down_read(&fc->killsb);
1616
1617 err = -ENOENT;
1618 if (!fc->sb)
1619 goto out_up_killsb;
1620
1621 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1622 if (!inode)
1623 goto out_up_killsb;
1624
1625 mapping = inode->i_mapping;
1626 index = outarg.offset >> PAGE_CACHE_SHIFT;
1627 offset = outarg.offset & ~PAGE_CACHE_MASK;
1628 file_size = i_size_read(inode);
1629 end = outarg.offset + outarg.size;
1630 if (end > file_size) {
1631 file_size = end;
1632 fuse_write_update_size(inode, file_size);
1633 }
1634
1635 num = outarg.size;
1636 while (num) {
1637 struct page *page;
1638 unsigned int this_num;
1639
1640 err = -ENOMEM;
1641 page = find_or_create_page(mapping, index,
1642 mapping_gfp_mask(mapping));
1643 if (!page)
1644 goto out_iput;
1645
1646 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1647 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001648 if (!err && offset == 0 &&
1649 (this_num == PAGE_CACHE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001650 SetPageUptodate(page);
1651 unlock_page(page);
1652 page_cache_release(page);
1653
1654 if (err)
1655 goto out_iput;
1656
1657 num -= this_num;
1658 offset = 0;
1659 index++;
1660 }
1661
1662 err = 0;
1663
1664out_iput:
1665 iput(inode);
1666out_up_killsb:
1667 up_read(&fc->killsb);
1668out_finish:
1669 fuse_copy_finish(cs);
1670 return err;
1671}
1672
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001673static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1674{
Mel Gormanb745bc82014-06-04 16:10:22 -07001675 release_pages(req->pages, req->num_pages, false);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001676}
1677
1678static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1679 struct fuse_notify_retrieve_out *outarg)
1680{
1681 int err;
1682 struct address_space *mapping = inode->i_mapping;
1683 struct fuse_req *req;
1684 pgoff_t index;
1685 loff_t file_size;
1686 unsigned int num;
1687 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001688 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001689 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001690
1691 offset = outarg->offset & ~PAGE_CACHE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001692 file_size = i_size_read(inode);
1693
1694 num = outarg->size;
1695 if (outarg->offset > file_size)
1696 num = 0;
1697 else if (outarg->offset + num > file_size)
1698 num = file_size - outarg->offset;
1699
1700 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1701 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1702
1703 req = fuse_get_req(fc, num_pages);
1704 if (IS_ERR(req))
1705 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001706
1707 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1708 req->in.h.nodeid = outarg->nodeid;
1709 req->in.numargs = 2;
1710 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001711 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001712 req->end = fuse_retrieve_end;
1713
1714 index = outarg->offset >> PAGE_CACHE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001715
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001716 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001717 struct page *page;
1718 unsigned int this_num;
1719
1720 page = find_get_page(mapping, index);
1721 if (!page)
1722 break;
1723
1724 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1725 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001726 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001727 req->num_pages++;
1728
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001729 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001730 num -= this_num;
1731 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001732 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001733 }
1734 req->misc.retrieve_in.offset = outarg->offset;
1735 req->misc.retrieve_in.size = total_len;
1736 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1737 req->in.args[0].value = &req->misc.retrieve_in;
1738 req->in.args[1].size = total_len;
1739
1740 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1741 if (err)
1742 fuse_retrieve_end(fc, req);
1743
1744 return err;
1745}
1746
1747static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1748 struct fuse_copy_state *cs)
1749{
1750 struct fuse_notify_retrieve_out outarg;
1751 struct inode *inode;
1752 int err;
1753
1754 err = -EINVAL;
1755 if (size != sizeof(outarg))
1756 goto copy_finish;
1757
1758 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1759 if (err)
1760 goto copy_finish;
1761
1762 fuse_copy_finish(cs);
1763
1764 down_read(&fc->killsb);
1765 err = -ENOENT;
1766 if (fc->sb) {
1767 u64 nodeid = outarg.nodeid;
1768
1769 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1770 if (inode) {
1771 err = fuse_retrieve(fc, inode, &outarg);
1772 iput(inode);
1773 }
1774 }
1775 up_read(&fc->killsb);
1776
1777 return err;
1778
1779copy_finish:
1780 fuse_copy_finish(cs);
1781 return err;
1782}
1783
Tejun Heo85993962008-11-26 12:03:55 +01001784static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1785 unsigned int size, struct fuse_copy_state *cs)
1786{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001787 /* Don't try to move pages (yet) */
1788 cs->move_pages = 0;
1789
Tejun Heo85993962008-11-26 12:03:55 +01001790 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001791 case FUSE_NOTIFY_POLL:
1792 return fuse_notify_poll(fc, size, cs);
1793
John Muir3b463ae2009-05-31 11:13:57 -04001794 case FUSE_NOTIFY_INVAL_INODE:
1795 return fuse_notify_inval_inode(fc, size, cs);
1796
1797 case FUSE_NOTIFY_INVAL_ENTRY:
1798 return fuse_notify_inval_entry(fc, size, cs);
1799
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001800 case FUSE_NOTIFY_STORE:
1801 return fuse_notify_store(fc, size, cs);
1802
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001803 case FUSE_NOTIFY_RETRIEVE:
1804 return fuse_notify_retrieve(fc, size, cs);
1805
John Muir451d0f52011-12-06 21:50:06 +01001806 case FUSE_NOTIFY_DELETE:
1807 return fuse_notify_delete(fc, size, cs);
1808
Tejun Heo85993962008-11-26 12:03:55 +01001809 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001810 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001811 return -EINVAL;
1812 }
1813}
1814
Miklos Szeredi334f4852005-09-09 13:10:27 -07001815/* Look up request on processing list by unique ID */
1816static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
1817{
Dong Fang05726ac2013-07-30 22:50:01 -04001818 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001819
Dong Fang05726ac2013-07-30 22:50:01 -04001820 list_for_each_entry(req, &fc->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001821 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001822 return req;
1823 }
1824 return NULL;
1825}
1826
1827static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1828 unsigned nbytes)
1829{
1830 unsigned reqsize = sizeof(struct fuse_out_header);
1831
1832 if (out->h.error)
1833 return nbytes != reqsize ? -EINVAL : 0;
1834
1835 reqsize += len_args(out->numargs, out->args);
1836
1837 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1838 return -EINVAL;
1839 else if (reqsize > nbytes) {
1840 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1841 unsigned diffsize = reqsize - nbytes;
1842 if (diffsize > lastarg->size)
1843 return -EINVAL;
1844 lastarg->size -= diffsize;
1845 }
1846 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1847 out->page_zeroing);
1848}
1849
1850/*
1851 * Write a single reply to a request. First the header is copied from
1852 * the write buffer. The request is then searched on the processing
1853 * list by the unique ID found in the header. If found, then remove
1854 * it from the list and copy the rest of the buffer to the request.
1855 * The request is finished by calling request_end()
1856 */
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001857static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1858 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001859{
1860 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001861 struct fuse_req *req;
1862 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001863
Miklos Szeredi334f4852005-09-09 13:10:27 -07001864 if (nbytes < sizeof(struct fuse_out_header))
1865 return -EINVAL;
1866
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001867 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001868 if (err)
1869 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001870
Miklos Szeredi334f4852005-09-09 13:10:27 -07001871 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001872 if (oh.len != nbytes)
1873 goto err_finish;
1874
1875 /*
1876 * Zero oh.unique indicates unsolicited notification message
1877 * and error contains notification code.
1878 */
1879 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001880 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001881 return err ? err : nbytes;
1882 }
1883
1884 err = -EINVAL;
1885 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001886 goto err_finish;
1887
Miklos Szeredid7133112006-04-10 22:54:55 -07001888 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001889 err = -ENOENT;
1890 if (!fc->connected)
1891 goto err_unlock;
1892
Miklos Szeredi334f4852005-09-09 13:10:27 -07001893 req = request_find(fc, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001894 if (!req)
1895 goto err_unlock;
1896
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001897 /* Is it an interrupt reply? */
1898 if (req->intr_unique == oh.unique) {
1899 err = -EINVAL;
1900 if (nbytes != sizeof(struct fuse_out_header))
1901 goto err_unlock;
1902
1903 if (oh.error == -ENOSYS)
1904 fc->no_interrupt = 1;
1905 else if (oh.error == -EAGAIN)
1906 queue_interrupt(fc, req);
1907
1908 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001909 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001910 return nbytes;
1911 }
1912
1913 req->state = FUSE_REQ_WRITING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001914 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001915 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001916 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001917 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001918 if (!req->out.page_replace)
1919 cs->move_pages = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -07001920 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001921
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001922 err = copy_out_args(cs, &req->out, nbytes);
1923 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001924
Miklos Szeredid7133112006-04-10 22:54:55 -07001925 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001926 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001927 if (!fc->connected)
1928 err = -ENOENT;
1929 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001930 req->out.h.error = -EIO;
1931 request_end(fc, req);
1932
1933 return err ? err : nbytes;
1934
1935 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001936 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001937 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001938 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001939 return err;
1940}
1941
Al Virofbdbacc2015-04-03 21:53:39 -04001942static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001943{
1944 struct fuse_copy_state cs;
1945 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1946 if (!fc)
1947 return -EPERM;
1948
Al Virofbdbacc2015-04-03 21:53:39 -04001949 if (!iter_is_iovec(from))
1950 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001951
Miklos Szeredidc008092015-07-01 16:25:58 +02001952 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001953
1954 return fuse_dev_do_write(fc, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001955}
1956
1957static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1958 struct file *out, loff_t *ppos,
1959 size_t len, unsigned int flags)
1960{
1961 unsigned nbuf;
1962 unsigned idx;
1963 struct pipe_buffer *bufs;
1964 struct fuse_copy_state cs;
1965 struct fuse_conn *fc;
1966 size_t rem;
1967 ssize_t ret;
1968
1969 fc = fuse_get_conn(out);
1970 if (!fc)
1971 return -EPERM;
1972
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001973 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001974 if (!bufs)
1975 return -ENOMEM;
1976
1977 pipe_lock(pipe);
1978 nbuf = 0;
1979 rem = 0;
1980 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
1981 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
1982
1983 ret = -EINVAL;
1984 if (rem < len) {
1985 pipe_unlock(pipe);
1986 goto out;
1987 }
1988
1989 rem = len;
1990 while (rem) {
1991 struct pipe_buffer *ibuf;
1992 struct pipe_buffer *obuf;
1993
1994 BUG_ON(nbuf >= pipe->buffers);
1995 BUG_ON(!pipe->nrbufs);
1996 ibuf = &pipe->bufs[pipe->curbuf];
1997 obuf = &bufs[nbuf];
1998
1999 if (rem >= ibuf->len) {
2000 *obuf = *ibuf;
2001 ibuf->ops = NULL;
2002 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
2003 pipe->nrbufs--;
2004 } else {
2005 ibuf->ops->get(pipe, ibuf);
2006 *obuf = *ibuf;
2007 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2008 obuf->len = rem;
2009 ibuf->offset += obuf->len;
2010 ibuf->len -= obuf->len;
2011 }
2012 nbuf++;
2013 rem -= obuf->len;
2014 }
2015 pipe_unlock(pipe);
2016
Miklos Szeredidc008092015-07-01 16:25:58 +02002017 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002018 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04002019 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002020 cs.pipe = pipe;
2021
Miklos Szeredice534fb2010-05-25 15:06:07 +02002022 if (flags & SPLICE_F_MOVE)
2023 cs.move_pages = 1;
2024
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002025 ret = fuse_dev_do_write(fc, &cs, len);
2026
2027 for (idx = 0; idx < nbuf; idx++) {
2028 struct pipe_buffer *buf = &bufs[idx];
2029 buf->ops->release(pipe, buf);
2030 }
2031out:
2032 kfree(bufs);
2033 return ret;
2034}
2035
Miklos Szeredi334f4852005-09-09 13:10:27 -07002036static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2037{
Miklos Szeredi334f4852005-09-09 13:10:27 -07002038 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002039 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002040 if (!fc)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002041 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002042
2043 poll_wait(file, &fc->waitq, wait);
2044
Miklos Szeredid7133112006-04-10 22:54:55 -07002045 spin_lock(&fc->lock);
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002046 if (!fc->connected)
2047 mask = POLLERR;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07002048 else if (request_pending(fc))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002049 mask |= POLLIN | POLLRDNORM;
Miklos Szeredid7133112006-04-10 22:54:55 -07002050 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002051
2052 return mask;
2053}
2054
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002055/*
2056 * Abort all requests on the given list (pending or processing)
2057 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002058 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002059 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002060static void end_requests(struct fuse_conn *fc, struct list_head *head)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02002061__releases(fc->lock)
2062__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002063{
2064 while (!list_empty(head)) {
2065 struct fuse_req *req;
2066 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002067 req->out.h.error = -ECONNABORTED;
2068 request_end(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07002069 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002070 }
2071}
2072
Bryan Green357ccf22011-03-01 16:43:52 -08002073static void end_polls(struct fuse_conn *fc)
2074{
2075 struct rb_node *p;
2076
2077 p = rb_first(&fc->polled_files);
2078
2079 while (p) {
2080 struct fuse_file *ff;
2081 ff = rb_entry(p, struct fuse_file, polled_node);
2082 wake_up_interruptible_all(&ff->poll_wait);
2083
2084 p = rb_next(p);
2085 }
2086}
2087
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002088/*
2089 * Abort all requests.
2090 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002091 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2092 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002093 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002094 * The same effect is usually achievable through killing the filesystem daemon
2095 * and all users of the filesystem. The exception is the combination of an
2096 * asynchronous request and the tricky deadlock (see
2097 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002098 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002099 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2100 * requests, they should be finished off immediately. Locked requests will be
2101 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2102 * requests. It is possible that some request will finish before we can. This
2103 * is OK, the request will in that case be removed from the list before we touch
2104 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002105 */
2106void fuse_abort_conn(struct fuse_conn *fc)
2107{
Miklos Szeredid7133112006-04-10 22:54:55 -07002108 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002109 if (fc->connected) {
Miklos Szeredib716d422015-07-01 16:25:59 +02002110 struct fuse_req *req, *next;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002111 LIST_HEAD(to_end1);
2112 LIST_HEAD(to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002113
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002114 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002115 fc->blocked = 0;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002116 fuse_set_initialized(fc);
Miklos Szeredib716d422015-07-01 16:25:59 +02002117 list_for_each_entry_safe(req, next, &fc->io, list) {
2118 req->out.h.error = -ECONNABORTED;
2119 spin_lock(&req->waitq.lock);
2120 set_bit(FR_ABORTED, &req->flags);
2121 if (!test_bit(FR_LOCKED, &req->flags))
Miklos Szeredi41f98272015-07-01 16:25:59 +02002122 list_move(&req->list, &to_end1);
Miklos Szeredib716d422015-07-01 16:25:59 +02002123 spin_unlock(&req->waitq.lock);
2124 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002125 fc->max_background = UINT_MAX;
2126 flush_bg_queue(fc);
2127 list_splice_init(&fc->pending, &to_end2);
2128 list_splice_init(&fc->processing, &to_end2);
2129 while (!list_empty(&to_end1)) {
2130 req = list_first_entry(&to_end1, struct fuse_req, list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002131 __fuse_get_request(req);
2132 request_end(fc, req);
2133 spin_lock(&fc->lock);
2134 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002135 end_requests(fc, &to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002136 while (forget_pending(fc))
2137 kfree(dequeue_forget(fc, 1, NULL));
Bryan Green357ccf22011-03-01 16:43:52 -08002138 end_polls(fc);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002139 wake_up_all(&fc->waitq);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002140 wake_up_all(&fc->blocked_waitq);
Jeff Dike385a17b2006-04-10 22:54:52 -07002141 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002142 }
Miklos Szeredid7133112006-04-10 22:54:55 -07002143 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002144}
Tejun Heo08cbf542009-04-14 10:54:53 +09002145EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002146
Tejun Heo08cbf542009-04-14 10:54:53 +09002147int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002148{
Miklos Szeredi0720b312006-04-10 22:54:55 -07002149 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002150 if (fc) {
Miklos Szerediccd0a0b2015-07-01 16:25:57 +02002151 WARN_ON(!list_empty(&fc->io));
2152 WARN_ON(fc->fasync != NULL);
2153 fuse_abort_conn(fc);
Miklos Szeredibafa9652006-06-25 05:48:51 -07002154 fuse_conn_put(fc);
Jeff Dike385a17b2006-04-10 22:54:52 -07002155 }
Miklos Szeredif543f252006-01-16 22:14:35 -08002156
Miklos Szeredi334f4852005-09-09 13:10:27 -07002157 return 0;
2158}
Tejun Heo08cbf542009-04-14 10:54:53 +09002159EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002160
Jeff Dike385a17b2006-04-10 22:54:52 -07002161static int fuse_dev_fasync(int fd, struct file *file, int on)
2162{
2163 struct fuse_conn *fc = fuse_get_conn(file);
2164 if (!fc)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002165 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002166
2167 /* No locking - fasync_helper does its own locking */
2168 return fasync_helper(fd, file, on, &fc->fasync);
2169}
2170
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002171const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002172 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002173 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002174 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002175 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002176 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002177 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002178 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002179 .poll = fuse_dev_poll,
2180 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002181 .fasync = fuse_dev_fasync,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002182};
Tejun Heo08cbf542009-04-14 10:54:53 +09002183EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002184
2185static struct miscdevice fuse_miscdevice = {
2186 .minor = FUSE_MINOR,
2187 .name = "fuse",
2188 .fops = &fuse_dev_operations,
2189};
2190
2191int __init fuse_dev_init(void)
2192{
2193 int err = -ENOMEM;
2194 fuse_req_cachep = kmem_cache_create("fuse_request",
2195 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002196 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002197 if (!fuse_req_cachep)
2198 goto out;
2199
2200 err = misc_register(&fuse_miscdevice);
2201 if (err)
2202 goto out_cache_clean;
2203
2204 return 0;
2205
2206 out_cache_clean:
2207 kmem_cache_destroy(fuse_req_cachep);
2208 out:
2209 return err;
2210}
2211
2212void fuse_dev_cleanup(void)
2213{
2214 misc_deregister(&fuse_miscdevice);
2215 kmem_cache_destroy(fuse_req_cachep);
2216}