blob: 638aafde6e22c5c9b5ec2721168a37f339b69770 [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 Szeredic4775262015-07-01 16:26:00 +0200384 smp_wmb();
Miklos Szeredi83cfd492006-01-16 22:14:31 -0800385 req->state = FUSE_REQ_FINISHED;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200386 if (test_bit(FR_BACKGROUND, &req->flags)) {
387 clear_bit(FR_BACKGROUND, &req->flags);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400388 if (fc->num_background == fc->max_background)
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700389 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400390
391 /* Wake up next waiter, if any */
Miklos Szeredi3c18ef82013-04-17 21:50:58 +0200392 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400393 wake_up(&fc->blocked_waitq);
394
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700395 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900396 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200397 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
398 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700399 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700400 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800401 fc->active_background--;
402 flush_bg_queue(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700403 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700404 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700405 wake_up(&req->waitq);
406 if (end)
407 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100408 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700409}
410
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700411static void queue_interrupt(struct fuse_conn *fc, struct fuse_req *req)
412{
413 list_add_tail(&req->intr_entry, &fc->interrupts);
414 wake_up(&fc->waitq);
415 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
416}
417
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700418static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700419{
Miklos Szeredic4775262015-07-01 16:26:00 +0200420 int err;
421
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700422 if (!fc->no_interrupt) {
423 /* Any signal may interrupt this */
Miklos Szeredic4775262015-07-01 16:26:00 +0200424 err = wait_event_interruptible(req->waitq,
425 req->state == FUSE_REQ_FINISHED);
426 if (!err)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700427 return;
428
Miklos Szeredic4775262015-07-01 16:26:00 +0200429 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200430 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700431 if (req->state == FUSE_REQ_SENT)
432 queue_interrupt(fc, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200433 spin_unlock(&fc->lock);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700434 }
435
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200436 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700437 sigset_t oldset;
438
439 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700440 block_sigs(&oldset);
Miklos Szeredic4775262015-07-01 16:26:00 +0200441 err = wait_event_interruptible(req->waitq,
442 req->state == FUSE_REQ_FINISHED);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700443 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700444
Miklos Szeredic4775262015-07-01 16:26:00 +0200445 if (!err)
Miklos Szeredia131de02007-10-16 23:31:04 -0700446 return;
447
Miklos Szeredic4775262015-07-01 16:26:00 +0200448 spin_lock(&fc->lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700449 /* Request is not yet in userspace, bail out */
450 if (req->state == FUSE_REQ_PENDING) {
451 list_del(&req->list);
Miklos Szeredic4775262015-07-01 16:26:00 +0200452 spin_unlock(&fc->lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700453 __fuse_put_request(req);
454 req->out.h.error = -EINTR;
455 return;
456 }
Miklos Szeredic4775262015-07-01 16:26:00 +0200457 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700458 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700459
Miklos Szeredia131de02007-10-16 23:31:04 -0700460 /*
461 * Either request is already in userspace, or it was forced.
462 * Wait it out.
463 */
Miklos Szeredia131de02007-10-16 23:31:04 -0700464 wait_event(req->waitq, req->state == FUSE_REQ_FINISHED);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700465}
466
Eric Wong6a4e9222013-02-04 13:04:44 +0000467static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700468{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200469 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredid7133112006-04-10 22:54:55 -0700470 spin_lock(&fc->lock);
Miklos Szeredic4775262015-07-01 16:26:00 +0200471 if (!fc->connected) {
472 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700473 req->out.h.error = -ENOTCONN;
Miklos Szeredic4775262015-07-01 16:26:00 +0200474 } else {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200475 req->in.h.unique = fuse_get_unique(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700476 queue_request(fc, req);
477 /* acquire extra reference, since request is still needed
478 after request_end() */
479 __fuse_get_request(req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200480 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700481
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700482 request_wait_answer(fc, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200483 /* Pairs with smp_wmb() in request_end() */
484 smp_rmb();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700485 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700486}
Eric Wong6a4e9222013-02-04 13:04:44 +0000487
488void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
489{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200490 __set_bit(FR_ISREPLY, &req->flags);
491 if (!test_bit(FR_WAITING, &req->flags)) {
492 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200493 atomic_inc(&fc->num_waiting);
494 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000495 __fuse_request_send(fc, req);
496}
Tejun Heo08cbf542009-04-14 10:54:53 +0900497EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700498
Miklos Szeredi21f62172015-01-06 10:45:35 +0100499static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
500{
501 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
502 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
503
504 if (fc->minor < 9) {
505 switch (args->in.h.opcode) {
506 case FUSE_LOOKUP:
507 case FUSE_CREATE:
508 case FUSE_MKNOD:
509 case FUSE_MKDIR:
510 case FUSE_SYMLINK:
511 case FUSE_LINK:
512 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
513 break;
514 case FUSE_GETATTR:
515 case FUSE_SETATTR:
516 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
517 break;
518 }
519 }
520 if (fc->minor < 12) {
521 switch (args->in.h.opcode) {
522 case FUSE_CREATE:
523 args->in.args[0].size = sizeof(struct fuse_open_in);
524 break;
525 case FUSE_MKNOD:
526 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
527 break;
528 }
529 }
530}
531
Miklos Szeredi70781872014-12-12 09:49:05 +0100532ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
533{
534 struct fuse_req *req;
535 ssize_t ret;
536
537 req = fuse_get_req(fc, 0);
538 if (IS_ERR(req))
539 return PTR_ERR(req);
540
Miklos Szeredi21f62172015-01-06 10:45:35 +0100541 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
542 fuse_adjust_compat(fc, args);
543
Miklos Szeredi70781872014-12-12 09:49:05 +0100544 req->in.h.opcode = args->in.h.opcode;
545 req->in.h.nodeid = args->in.h.nodeid;
546 req->in.numargs = args->in.numargs;
547 memcpy(req->in.args, args->in.args,
548 args->in.numargs * sizeof(struct fuse_in_arg));
549 req->out.argvar = args->out.argvar;
550 req->out.numargs = args->out.numargs;
551 memcpy(req->out.args, args->out.args,
552 args->out.numargs * sizeof(struct fuse_arg));
553 fuse_request_send(fc, req);
554 ret = req->out.h.error;
555 if (!ret && args->out.argvar) {
556 BUG_ON(args->out.numargs != 1);
557 ret = req->out.args[0].size;
558 }
559 fuse_put_request(fc, req);
560
561 return ret;
562}
563
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200564/*
565 * Called under fc->lock
566 *
567 * fc->connected must have been checked previously
568 */
569void fuse_request_send_background_locked(struct fuse_conn *fc,
570 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800571{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200572 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
573 if (!test_bit(FR_WAITING, &req->flags)) {
574 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200575 atomic_inc(&fc->num_waiting);
576 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200577 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800578 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700579 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800580 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700581 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900582 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200583 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
584 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800585 }
586 list_add_tail(&req->list, &fc->bg_queue);
587 flush_bg_queue(fc);
588}
589
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200590void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700591{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200592 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700593 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700594 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200595 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700596 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700597 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200598 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700599 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200600 req->end(fc, req);
601 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700602 }
603}
Tejun Heo08cbf542009-04-14 10:54:53 +0900604EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700605
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200606static int fuse_request_send_notify_reply(struct fuse_conn *fc,
607 struct fuse_req *req, u64 unique)
608{
609 int err = -ENODEV;
610
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200611 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200612 req->in.h.unique = unique;
613 spin_lock(&fc->lock);
614 if (fc->connected) {
615 queue_request(fc, req);
616 err = 0;
617 }
618 spin_unlock(&fc->lock);
619
620 return err;
621}
622
Anand V. Avati0b05b182012-08-19 08:53:23 -0400623void fuse_force_forget(struct file *file, u64 nodeid)
624{
Al Viro6131ffa2013-02-27 16:59:05 -0500625 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400626 struct fuse_conn *fc = get_fuse_conn(inode);
627 struct fuse_req *req;
628 struct fuse_forget_in inarg;
629
630 memset(&inarg, 0, sizeof(inarg));
631 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400632 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400633 req->in.h.opcode = FUSE_FORGET;
634 req->in.h.nodeid = nodeid;
635 req->in.numargs = 1;
636 req->in.args[0].size = sizeof(inarg);
637 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200638 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000639 __fuse_request_send(fc, req);
640 /* ignore errors */
641 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400642}
643
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700644/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700645 * Lock the request. Up to the next unlock_request() there mustn't be
646 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700647 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700648 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200649static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700650{
651 int err = 0;
652 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200653 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200654 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700655 err = -ENOENT;
656 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200657 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200658 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700659 }
660 return err;
661}
662
663/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200664 * Unlock request. If it was aborted while locked, caller is responsible
665 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700666 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200667static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700668{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200669 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700670 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200671 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200672 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200673 err = -ENOENT;
674 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200675 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200676 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700677 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200678 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700679}
680
681struct fuse_copy_state {
682 int write;
683 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400684 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200685 struct pipe_buffer *pipebufs;
686 struct pipe_buffer *currbuf;
687 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700688 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700689 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700690 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200691 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200692 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700693};
694
Miklos Szeredidc008092015-07-01 16:25:58 +0200695static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400696 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700697{
698 memset(cs, 0, sizeof(*cs));
699 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400700 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700701}
702
703/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800704static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700705{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200706 if (cs->currbuf) {
707 struct pipe_buffer *buf = cs->currbuf;
708
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200709 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200710 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200711 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200712 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700713 if (cs->write) {
714 flush_dcache_page(cs->pg);
715 set_page_dirty_lock(cs->pg);
716 }
717 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700718 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200719 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700720}
721
722/*
723 * Get another pagefull of userspace buffer, and map it to kernel
724 * address space, and lock request
725 */
726static int fuse_copy_fill(struct fuse_copy_state *cs)
727{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200728 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700729 int err;
730
Miklos Szeredidc008092015-07-01 16:25:58 +0200731 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200732 if (err)
733 return err;
734
Miklos Szeredi334f4852005-09-09 13:10:27 -0700735 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200736 if (cs->pipebufs) {
737 struct pipe_buffer *buf = cs->pipebufs;
738
Miklos Szeredic3021622010-05-25 15:06:07 +0200739 if (!cs->write) {
740 err = buf->ops->confirm(cs->pipe, buf);
741 if (err)
742 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200743
Miklos Szeredic3021622010-05-25 15:06:07 +0200744 BUG_ON(!cs->nr_segs);
745 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200746 cs->pg = buf->page;
747 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200748 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200749 cs->pipebufs++;
750 cs->nr_segs--;
751 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200752 if (cs->nr_segs == cs->pipe->buffers)
753 return -EIO;
754
755 page = alloc_page(GFP_HIGHUSER);
756 if (!page)
757 return -ENOMEM;
758
759 buf->page = page;
760 buf->offset = 0;
761 buf->len = 0;
762
763 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200764 cs->pg = page;
765 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200766 cs->len = PAGE_SIZE;
767 cs->pipebufs++;
768 cs->nr_segs++;
769 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200770 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400771 size_t off;
772 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200773 if (err < 0)
774 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400775 BUG_ON(!err);
776 cs->len = err;
777 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200778 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400779 cs->offset = off;
780 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700781 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700782
Miklos Szeredidc008092015-07-01 16:25:58 +0200783 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700784}
785
786/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800787static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700788{
789 unsigned ncpy = min(*size, cs->len);
790 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200791 void *pgaddr = kmap_atomic(cs->pg);
792 void *buf = pgaddr + cs->offset;
793
Miklos Szeredi334f4852005-09-09 13:10:27 -0700794 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200795 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700796 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200797 memcpy(*val, buf, ncpy);
798
799 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700800 *val += ncpy;
801 }
802 *size -= ncpy;
803 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200804 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700805 return ncpy;
806}
807
Miklos Szeredice534fb2010-05-25 15:06:07 +0200808static int fuse_check_page(struct page *page)
809{
810 if (page_mapcount(page) ||
811 page->mapping != NULL ||
812 page_count(page) != 1 ||
813 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
814 ~(1 << PG_locked |
815 1 << PG_referenced |
816 1 << PG_uptodate |
817 1 << PG_lru |
818 1 << PG_active |
819 1 << PG_reclaim))) {
820 printk(KERN_WARNING "fuse: trying to steal weird page\n");
821 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);
822 return 1;
823 }
824 return 0;
825}
826
827static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
828{
829 int err;
830 struct page *oldpage = *pagep;
831 struct page *newpage;
832 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200833
Miklos Szeredidc008092015-07-01 16:25:58 +0200834 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200835 if (err)
836 return err;
837
Miklos Szeredice534fb2010-05-25 15:06:07 +0200838 fuse_copy_finish(cs);
839
840 err = buf->ops->confirm(cs->pipe, buf);
841 if (err)
842 return err;
843
844 BUG_ON(!cs->nr_segs);
845 cs->currbuf = buf;
846 cs->len = buf->len;
847 cs->pipebufs++;
848 cs->nr_segs--;
849
850 if (cs->len != PAGE_SIZE)
851 goto out_fallback;
852
853 if (buf->ops->steal(cs->pipe, buf) != 0)
854 goto out_fallback;
855
856 newpage = buf->page;
857
Miklos Szerediaa991b32015-02-26 11:45:47 +0100858 if (!PageUptodate(newpage))
859 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200860
861 ClearPageMappedToDisk(newpage);
862
863 if (fuse_check_page(newpage) != 0)
864 goto out_fallback_unlock;
865
Miklos Szeredice534fb2010-05-25 15:06:07 +0200866 /*
867 * This is a new and locked page, it shouldn't be mapped or
868 * have any special flags on it
869 */
870 if (WARN_ON(page_mapped(oldpage)))
871 goto out_fallback_unlock;
872 if (WARN_ON(page_has_private(oldpage)))
873 goto out_fallback_unlock;
874 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
875 goto out_fallback_unlock;
876 if (WARN_ON(PageMlocked(oldpage)))
877 goto out_fallback_unlock;
878
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700879 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200880 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700881 unlock_page(newpage);
882 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200883 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700884
Miklos Szeredice534fb2010-05-25 15:06:07 +0200885 page_cache_get(newpage);
886
887 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
888 lru_cache_add_file(newpage);
889
890 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200891 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200892 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200893 err = -ENOENT;
894 else
895 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200896 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200897
898 if (err) {
899 unlock_page(newpage);
900 page_cache_release(newpage);
901 return err;
902 }
903
904 unlock_page(oldpage);
905 page_cache_release(oldpage);
906 cs->len = 0;
907
908 return 0;
909
910out_fallback_unlock:
911 unlock_page(newpage);
912out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200913 cs->pg = buf->page;
914 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200915
Miklos Szeredidc008092015-07-01 16:25:58 +0200916 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200917 if (err)
918 return err;
919
920 return 1;
921}
922
Miklos Szeredic3021622010-05-25 15:06:07 +0200923static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
924 unsigned offset, unsigned count)
925{
926 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200927 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200928
929 if (cs->nr_segs == cs->pipe->buffers)
930 return -EIO;
931
Miklos Szeredidc008092015-07-01 16:25:58 +0200932 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200933 if (err)
934 return err;
935
Miklos Szeredic3021622010-05-25 15:06:07 +0200936 fuse_copy_finish(cs);
937
938 buf = cs->pipebufs;
939 page_cache_get(page);
940 buf->page = page;
941 buf->offset = offset;
942 buf->len = count;
943
944 cs->pipebufs++;
945 cs->nr_segs++;
946 cs->len = 0;
947
948 return 0;
949}
950
Miklos Szeredi334f4852005-09-09 13:10:27 -0700951/*
952 * Copy a page in the request to/from the userspace buffer. Must be
953 * done atomically
954 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200955static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800956 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700957{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200958 int err;
959 struct page *page = *pagep;
960
Miklos Szeredib6777c42010-10-26 14:22:27 -0700961 if (page && zeroing && count < PAGE_SIZE)
962 clear_highpage(page);
963
Miklos Szeredi334f4852005-09-09 13:10:27 -0700964 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200965 if (cs->write && cs->pipebufs && page) {
966 return fuse_ref_page(cs, page, offset, count);
967 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200968 if (cs->move_pages && page &&
969 offset == 0 && count == PAGE_SIZE) {
970 err = fuse_try_move_page(cs, pagep);
971 if (err <= 0)
972 return err;
973 } else {
974 err = fuse_copy_fill(cs);
975 if (err)
976 return err;
977 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100978 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700979 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800980 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700981 void *buf = mapaddr + offset;
982 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +0800983 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700984 } else
985 offset += fuse_copy_do(cs, NULL, &count);
986 }
987 if (page && !cs->write)
988 flush_dcache_page(page);
989 return 0;
990}
991
992/* Copy pages in the request to/from userspace buffer */
993static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
994 int zeroing)
995{
996 unsigned i;
997 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700998
999 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +02001000 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001001 unsigned offset = req->page_descs[i].offset;
1002 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001003
1004 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1005 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001006 if (err)
1007 return err;
1008
1009 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001010 }
1011 return 0;
1012}
1013
1014/* Copy a single argument in the request to/from userspace buffer */
1015static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1016{
1017 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001018 if (!cs->len) {
1019 int err = fuse_copy_fill(cs);
1020 if (err)
1021 return err;
1022 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001023 fuse_copy_do(cs, &val, &size);
1024 }
1025 return 0;
1026}
1027
1028/* Copy request arguments to/from userspace buffer */
1029static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1030 unsigned argpages, struct fuse_arg *args,
1031 int zeroing)
1032{
1033 int err = 0;
1034 unsigned i;
1035
1036 for (i = 0; !err && i < numargs; i++) {
1037 struct fuse_arg *arg = &args[i];
1038 if (i == numargs - 1 && argpages)
1039 err = fuse_copy_pages(cs, arg->size, zeroing);
1040 else
1041 err = fuse_copy_one(cs, arg->value, arg->size);
1042 }
1043 return err;
1044}
1045
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001046static int forget_pending(struct fuse_conn *fc)
1047{
1048 return fc->forget_list_head.next != NULL;
1049}
1050
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001051static int request_pending(struct fuse_conn *fc)
1052{
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001053 return !list_empty(&fc->pending) || !list_empty(&fc->interrupts) ||
1054 forget_pending(fc);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001055}
1056
Miklos Szeredi334f4852005-09-09 13:10:27 -07001057/* Wait until a request is available on the pending list */
1058static void request_wait(struct fuse_conn *fc)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001059__releases(fc->lock)
1060__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001061{
1062 DECLARE_WAITQUEUE(wait, current);
1063
1064 add_wait_queue_exclusive(&fc->waitq, &wait);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001065 while (fc->connected && !request_pending(fc)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001066 set_current_state(TASK_INTERRUPTIBLE);
1067 if (signal_pending(current))
1068 break;
1069
Miklos Szeredid7133112006-04-10 22:54:55 -07001070 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001071 schedule();
Miklos Szeredid7133112006-04-10 22:54:55 -07001072 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001073 }
1074 set_current_state(TASK_RUNNING);
1075 remove_wait_queue(&fc->waitq, &wait);
1076}
1077
1078/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001079 * Transfer an interrupt request to userspace
1080 *
1081 * Unlike other requests this is assembled on demand, without a need
1082 * to allocate a separate fuse_req structure.
1083 *
1084 * Called with fc->lock held, releases it
1085 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001086static int fuse_read_interrupt(struct fuse_conn *fc, struct fuse_copy_state *cs,
1087 size_t nbytes, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001088__releases(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001089{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001090 struct fuse_in_header ih;
1091 struct fuse_interrupt_in arg;
1092 unsigned reqsize = sizeof(ih) + sizeof(arg);
1093 int err;
1094
1095 list_del_init(&req->intr_entry);
1096 req->intr_unique = fuse_get_unique(fc);
1097 memset(&ih, 0, sizeof(ih));
1098 memset(&arg, 0, sizeof(arg));
1099 ih.len = reqsize;
1100 ih.opcode = FUSE_INTERRUPT;
1101 ih.unique = req->intr_unique;
1102 arg.unique = req->in.h.unique;
1103
1104 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001105 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001106 return -EINVAL;
1107
Miklos Szeredic3021622010-05-25 15:06:07 +02001108 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001109 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001110 err = fuse_copy_one(cs, &arg, sizeof(arg));
1111 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001112
1113 return err ? err : reqsize;
1114}
1115
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001116static struct fuse_forget_link *dequeue_forget(struct fuse_conn *fc,
1117 unsigned max,
1118 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001119{
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001120 struct fuse_forget_link *head = fc->forget_list_head.next;
1121 struct fuse_forget_link **newhead = &head;
1122 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001123
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001124 for (count = 0; *newhead != NULL && count < max; count++)
1125 newhead = &(*newhead)->next;
1126
1127 fc->forget_list_head.next = *newhead;
1128 *newhead = NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001129 if (fc->forget_list_head.next == NULL)
1130 fc->forget_list_tail = &fc->forget_list_head;
1131
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001132 if (countp != NULL)
1133 *countp = count;
1134
1135 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001136}
1137
1138static int fuse_read_single_forget(struct fuse_conn *fc,
1139 struct fuse_copy_state *cs,
1140 size_t nbytes)
1141__releases(fc->lock)
1142{
1143 int err;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001144 struct fuse_forget_link *forget = dequeue_forget(fc, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001145 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001146 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001147 };
1148 struct fuse_in_header ih = {
1149 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001150 .nodeid = forget->forget_one.nodeid,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001151 .unique = fuse_get_unique(fc),
1152 .len = sizeof(ih) + sizeof(arg),
1153 };
1154
1155 spin_unlock(&fc->lock);
1156 kfree(forget);
1157 if (nbytes < ih.len)
1158 return -EINVAL;
1159
1160 err = fuse_copy_one(cs, &ih, sizeof(ih));
1161 if (!err)
1162 err = fuse_copy_one(cs, &arg, sizeof(arg));
1163 fuse_copy_finish(cs);
1164
1165 if (err)
1166 return err;
1167
1168 return ih.len;
1169}
1170
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001171static int fuse_read_batch_forget(struct fuse_conn *fc,
1172 struct fuse_copy_state *cs, size_t nbytes)
1173__releases(fc->lock)
1174{
1175 int err;
1176 unsigned max_forgets;
1177 unsigned count;
1178 struct fuse_forget_link *head;
1179 struct fuse_batch_forget_in arg = { .count = 0 };
1180 struct fuse_in_header ih = {
1181 .opcode = FUSE_BATCH_FORGET,
1182 .unique = fuse_get_unique(fc),
1183 .len = sizeof(ih) + sizeof(arg),
1184 };
1185
1186 if (nbytes < ih.len) {
1187 spin_unlock(&fc->lock);
1188 return -EINVAL;
1189 }
1190
1191 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
1192 head = dequeue_forget(fc, max_forgets, &count);
1193 spin_unlock(&fc->lock);
1194
1195 arg.count = count;
1196 ih.len += count * sizeof(struct fuse_forget_one);
1197 err = fuse_copy_one(cs, &ih, sizeof(ih));
1198 if (!err)
1199 err = fuse_copy_one(cs, &arg, sizeof(arg));
1200
1201 while (head) {
1202 struct fuse_forget_link *forget = head;
1203
1204 if (!err) {
1205 err = fuse_copy_one(cs, &forget->forget_one,
1206 sizeof(forget->forget_one));
1207 }
1208 head = forget->next;
1209 kfree(forget);
1210 }
1211
1212 fuse_copy_finish(cs);
1213
1214 if (err)
1215 return err;
1216
1217 return ih.len;
1218}
1219
1220static int fuse_read_forget(struct fuse_conn *fc, struct fuse_copy_state *cs,
1221 size_t nbytes)
1222__releases(fc->lock)
1223{
1224 if (fc->minor < 16 || fc->forget_list_head.next->next == NULL)
1225 return fuse_read_single_forget(fc, cs, nbytes);
1226 else
1227 return fuse_read_batch_forget(fc, cs, nbytes);
1228}
1229
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001230/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001231 * Read a single request into the userspace filesystem's buffer. This
1232 * function waits until a request is available, then removes it from
1233 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001234 * no reply is needed (FORGET) or request has been aborted or there
1235 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001236 * request_end(). Otherwise add it to the processing list, and set
1237 * the 'sent' flag.
1238 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001239static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1240 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001241{
1242 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001243 struct fuse_req *req;
1244 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001245 unsigned reqsize;
1246
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001247 restart:
Miklos Szeredid7133112006-04-10 22:54:55 -07001248 spin_lock(&fc->lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001249 err = -EAGAIN;
1250 if ((file->f_flags & O_NONBLOCK) && fc->connected &&
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001251 !request_pending(fc))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001252 goto err_unlock;
1253
Miklos Szeredi334f4852005-09-09 13:10:27 -07001254 request_wait(fc);
1255 err = -ENODEV;
Miklos Szeredi9ba7cbb2006-01-16 22:14:34 -08001256 if (!fc->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001257 goto err_unlock;
1258 err = -ERESTARTSYS;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001259 if (!request_pending(fc))
Miklos Szeredi334f4852005-09-09 13:10:27 -07001260 goto err_unlock;
1261
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001262 if (!list_empty(&fc->interrupts)) {
1263 req = list_entry(fc->interrupts.next, struct fuse_req,
1264 intr_entry);
Miklos Szeredic3021622010-05-25 15:06:07 +02001265 return fuse_read_interrupt(fc, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001266 }
1267
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001268 if (forget_pending(fc)) {
1269 if (list_empty(&fc->pending) || fc->forget_batch-- > 0)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001270 return fuse_read_forget(fc, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001271
1272 if (fc->forget_batch <= -8)
1273 fc->forget_batch = 16;
1274 }
1275
Miklos Szeredi334f4852005-09-09 13:10:27 -07001276 req = list_entry(fc->pending.next, struct fuse_req, list);
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001277 req->state = FUSE_REQ_READING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001278 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001279
1280 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001281 reqsize = in->h.len;
1282 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001283 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001284 req->out.h.error = -EIO;
1285 /* SETXATTR is special, since it may contain too large data */
1286 if (in->h.opcode == FUSE_SETXATTR)
1287 req->out.h.error = -E2BIG;
1288 request_end(fc, req);
1289 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001290 }
Miklos Szeredid7133112006-04-10 22:54:55 -07001291 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001292 cs->req = req;
1293 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001294 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001295 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001296 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001297 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001298 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001299 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001300 if (!fc->connected) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001301 request_end(fc, req);
1302 return -ENODEV;
1303 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001304 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001305 req->out.h.error = -EIO;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001306 request_end(fc, req);
1307 return err;
1308 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001309 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001310 request_end(fc, req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001311 } else {
Miklos Szeredi83cfd492006-01-16 22:14:31 -08001312 req->state = FUSE_REQ_SENT;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001313 list_move_tail(&req->list, &fc->processing);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001314 if (test_bit(FR_INTERRUPTED, &req->flags))
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001315 queue_interrupt(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001316 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001317 }
1318 return reqsize;
1319
1320 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001321 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001322 return err;
1323}
1324
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001325static int fuse_dev_open(struct inode *inode, struct file *file)
1326{
1327 /*
1328 * The fuse device's file's private_data is used to hold
1329 * the fuse_conn(ection) when it is mounted, and is used to
1330 * keep track of whether the file has been mounted already.
1331 */
1332 file->private_data = NULL;
1333 return 0;
1334}
1335
Al Virofbdbacc2015-04-03 21:53:39 -04001336static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001337{
1338 struct fuse_copy_state cs;
1339 struct file *file = iocb->ki_filp;
1340 struct fuse_conn *fc = fuse_get_conn(file);
1341 if (!fc)
1342 return -EPERM;
1343
Al Virofbdbacc2015-04-03 21:53:39 -04001344 if (!iter_is_iovec(to))
1345 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001346
Miklos Szeredidc008092015-07-01 16:25:58 +02001347 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001348
1349 return fuse_dev_do_read(fc, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001350}
1351
Miklos Szeredic3021622010-05-25 15:06:07 +02001352static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1353 struct pipe_inode_info *pipe,
1354 size_t len, unsigned int flags)
1355{
1356 int ret;
1357 int page_nr = 0;
1358 int do_wakeup = 0;
1359 struct pipe_buffer *bufs;
1360 struct fuse_copy_state cs;
1361 struct fuse_conn *fc = fuse_get_conn(in);
1362 if (!fc)
1363 return -EPERM;
1364
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001365 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001366 if (!bufs)
1367 return -ENOMEM;
1368
Miklos Szeredidc008092015-07-01 16:25:58 +02001369 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001370 cs.pipebufs = bufs;
1371 cs.pipe = pipe;
1372 ret = fuse_dev_do_read(fc, in, &cs, len);
1373 if (ret < 0)
1374 goto out;
1375
1376 ret = 0;
1377 pipe_lock(pipe);
1378
1379 if (!pipe->readers) {
1380 send_sig(SIGPIPE, current, 0);
1381 if (!ret)
1382 ret = -EPIPE;
1383 goto out_unlock;
1384 }
1385
1386 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1387 ret = -EIO;
1388 goto out_unlock;
1389 }
1390
1391 while (page_nr < cs.nr_segs) {
1392 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1393 struct pipe_buffer *buf = pipe->bufs + newbuf;
1394
1395 buf->page = bufs[page_nr].page;
1396 buf->offset = bufs[page_nr].offset;
1397 buf->len = bufs[page_nr].len;
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001398 /*
1399 * Need to be careful about this. Having buf->ops in module
1400 * code can Oops if the buffer persists after module unload.
1401 */
1402 buf->ops = &nosteal_pipe_buf_ops;
Miklos Szeredic3021622010-05-25 15:06:07 +02001403
1404 pipe->nrbufs++;
1405 page_nr++;
1406 ret += buf->len;
1407
Al Viro6447a3c2013-03-21 11:01:38 -04001408 if (pipe->files)
Miklos Szeredic3021622010-05-25 15:06:07 +02001409 do_wakeup = 1;
1410 }
1411
1412out_unlock:
1413 pipe_unlock(pipe);
1414
1415 if (do_wakeup) {
1416 smp_mb();
1417 if (waitqueue_active(&pipe->wait))
1418 wake_up_interruptible(&pipe->wait);
1419 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1420 }
1421
1422out:
1423 for (; page_nr < cs.nr_segs; page_nr++)
1424 page_cache_release(bufs[page_nr].page);
1425
1426 kfree(bufs);
1427 return ret;
1428}
1429
Tejun Heo95668a62008-11-26 12:03:55 +01001430static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1431 struct fuse_copy_state *cs)
1432{
1433 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001434 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001435
1436 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001437 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001438
1439 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1440 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001441 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001442
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001443 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001444 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001445
1446err:
1447 fuse_copy_finish(cs);
1448 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001449}
1450
John Muir3b463ae2009-05-31 11:13:57 -04001451static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1452 struct fuse_copy_state *cs)
1453{
1454 struct fuse_notify_inval_inode_out outarg;
1455 int err = -EINVAL;
1456
1457 if (size != sizeof(outarg))
1458 goto err;
1459
1460 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1461 if (err)
1462 goto err;
1463 fuse_copy_finish(cs);
1464
1465 down_read(&fc->killsb);
1466 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001467 if (fc->sb) {
1468 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1469 outarg.off, outarg.len);
1470 }
John Muir3b463ae2009-05-31 11:13:57 -04001471 up_read(&fc->killsb);
1472 return err;
1473
1474err:
1475 fuse_copy_finish(cs);
1476 return err;
1477}
1478
1479static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1480 struct fuse_copy_state *cs)
1481{
1482 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001483 int err = -ENOMEM;
1484 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001485 struct qstr name;
1486
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001487 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1488 if (!buf)
1489 goto err;
1490
1491 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001492 if (size < sizeof(outarg))
1493 goto err;
1494
1495 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1496 if (err)
1497 goto err;
1498
1499 err = -ENAMETOOLONG;
1500 if (outarg.namelen > FUSE_NAME_MAX)
1501 goto err;
1502
Miklos Szeredic2183d12011-08-24 10:20:17 +02001503 err = -EINVAL;
1504 if (size != sizeof(outarg) + outarg.namelen + 1)
1505 goto err;
1506
John Muir3b463ae2009-05-31 11:13:57 -04001507 name.name = buf;
1508 name.len = outarg.namelen;
1509 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1510 if (err)
1511 goto err;
1512 fuse_copy_finish(cs);
1513 buf[outarg.namelen] = 0;
1514 name.hash = full_name_hash(name.name, name.len);
1515
1516 down_read(&fc->killsb);
1517 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001518 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001519 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1520 up_read(&fc->killsb);
1521 kfree(buf);
1522 return err;
1523
1524err:
1525 kfree(buf);
1526 fuse_copy_finish(cs);
1527 return err;
1528}
1529
1530static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1531 struct fuse_copy_state *cs)
1532{
1533 struct fuse_notify_delete_out outarg;
1534 int err = -ENOMEM;
1535 char *buf;
1536 struct qstr name;
1537
1538 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1539 if (!buf)
1540 goto err;
1541
1542 err = -EINVAL;
1543 if (size < sizeof(outarg))
1544 goto err;
1545
1546 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1547 if (err)
1548 goto err;
1549
1550 err = -ENAMETOOLONG;
1551 if (outarg.namelen > FUSE_NAME_MAX)
1552 goto err;
1553
1554 err = -EINVAL;
1555 if (size != sizeof(outarg) + outarg.namelen + 1)
1556 goto err;
1557
1558 name.name = buf;
1559 name.len = outarg.namelen;
1560 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1561 if (err)
1562 goto err;
1563 fuse_copy_finish(cs);
1564 buf[outarg.namelen] = 0;
1565 name.hash = full_name_hash(name.name, name.len);
1566
1567 down_read(&fc->killsb);
1568 err = -ENOENT;
1569 if (fc->sb)
1570 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1571 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001572 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001573 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001574 return err;
1575
1576err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001577 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001578 fuse_copy_finish(cs);
1579 return err;
1580}
1581
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001582static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1583 struct fuse_copy_state *cs)
1584{
1585 struct fuse_notify_store_out outarg;
1586 struct inode *inode;
1587 struct address_space *mapping;
1588 u64 nodeid;
1589 int err;
1590 pgoff_t index;
1591 unsigned int offset;
1592 unsigned int num;
1593 loff_t file_size;
1594 loff_t end;
1595
1596 err = -EINVAL;
1597 if (size < sizeof(outarg))
1598 goto out_finish;
1599
1600 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1601 if (err)
1602 goto out_finish;
1603
1604 err = -EINVAL;
1605 if (size - sizeof(outarg) != outarg.size)
1606 goto out_finish;
1607
1608 nodeid = outarg.nodeid;
1609
1610 down_read(&fc->killsb);
1611
1612 err = -ENOENT;
1613 if (!fc->sb)
1614 goto out_up_killsb;
1615
1616 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1617 if (!inode)
1618 goto out_up_killsb;
1619
1620 mapping = inode->i_mapping;
1621 index = outarg.offset >> PAGE_CACHE_SHIFT;
1622 offset = outarg.offset & ~PAGE_CACHE_MASK;
1623 file_size = i_size_read(inode);
1624 end = outarg.offset + outarg.size;
1625 if (end > file_size) {
1626 file_size = end;
1627 fuse_write_update_size(inode, file_size);
1628 }
1629
1630 num = outarg.size;
1631 while (num) {
1632 struct page *page;
1633 unsigned int this_num;
1634
1635 err = -ENOMEM;
1636 page = find_or_create_page(mapping, index,
1637 mapping_gfp_mask(mapping));
1638 if (!page)
1639 goto out_iput;
1640
1641 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1642 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001643 if (!err && offset == 0 &&
1644 (this_num == PAGE_CACHE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001645 SetPageUptodate(page);
1646 unlock_page(page);
1647 page_cache_release(page);
1648
1649 if (err)
1650 goto out_iput;
1651
1652 num -= this_num;
1653 offset = 0;
1654 index++;
1655 }
1656
1657 err = 0;
1658
1659out_iput:
1660 iput(inode);
1661out_up_killsb:
1662 up_read(&fc->killsb);
1663out_finish:
1664 fuse_copy_finish(cs);
1665 return err;
1666}
1667
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001668static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1669{
Mel Gormanb745bc82014-06-04 16:10:22 -07001670 release_pages(req->pages, req->num_pages, false);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001671}
1672
1673static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1674 struct fuse_notify_retrieve_out *outarg)
1675{
1676 int err;
1677 struct address_space *mapping = inode->i_mapping;
1678 struct fuse_req *req;
1679 pgoff_t index;
1680 loff_t file_size;
1681 unsigned int num;
1682 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001683 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001684 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001685
1686 offset = outarg->offset & ~PAGE_CACHE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001687 file_size = i_size_read(inode);
1688
1689 num = outarg->size;
1690 if (outarg->offset > file_size)
1691 num = 0;
1692 else if (outarg->offset + num > file_size)
1693 num = file_size - outarg->offset;
1694
1695 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1696 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1697
1698 req = fuse_get_req(fc, num_pages);
1699 if (IS_ERR(req))
1700 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001701
1702 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1703 req->in.h.nodeid = outarg->nodeid;
1704 req->in.numargs = 2;
1705 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001706 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001707 req->end = fuse_retrieve_end;
1708
1709 index = outarg->offset >> PAGE_CACHE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001710
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001711 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001712 struct page *page;
1713 unsigned int this_num;
1714
1715 page = find_get_page(mapping, index);
1716 if (!page)
1717 break;
1718
1719 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1720 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001721 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001722 req->num_pages++;
1723
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001724 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001725 num -= this_num;
1726 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001727 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001728 }
1729 req->misc.retrieve_in.offset = outarg->offset;
1730 req->misc.retrieve_in.size = total_len;
1731 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1732 req->in.args[0].value = &req->misc.retrieve_in;
1733 req->in.args[1].size = total_len;
1734
1735 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1736 if (err)
1737 fuse_retrieve_end(fc, req);
1738
1739 return err;
1740}
1741
1742static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1743 struct fuse_copy_state *cs)
1744{
1745 struct fuse_notify_retrieve_out outarg;
1746 struct inode *inode;
1747 int err;
1748
1749 err = -EINVAL;
1750 if (size != sizeof(outarg))
1751 goto copy_finish;
1752
1753 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1754 if (err)
1755 goto copy_finish;
1756
1757 fuse_copy_finish(cs);
1758
1759 down_read(&fc->killsb);
1760 err = -ENOENT;
1761 if (fc->sb) {
1762 u64 nodeid = outarg.nodeid;
1763
1764 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1765 if (inode) {
1766 err = fuse_retrieve(fc, inode, &outarg);
1767 iput(inode);
1768 }
1769 }
1770 up_read(&fc->killsb);
1771
1772 return err;
1773
1774copy_finish:
1775 fuse_copy_finish(cs);
1776 return err;
1777}
1778
Tejun Heo85993962008-11-26 12:03:55 +01001779static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1780 unsigned int size, struct fuse_copy_state *cs)
1781{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001782 /* Don't try to move pages (yet) */
1783 cs->move_pages = 0;
1784
Tejun Heo85993962008-11-26 12:03:55 +01001785 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001786 case FUSE_NOTIFY_POLL:
1787 return fuse_notify_poll(fc, size, cs);
1788
John Muir3b463ae2009-05-31 11:13:57 -04001789 case FUSE_NOTIFY_INVAL_INODE:
1790 return fuse_notify_inval_inode(fc, size, cs);
1791
1792 case FUSE_NOTIFY_INVAL_ENTRY:
1793 return fuse_notify_inval_entry(fc, size, cs);
1794
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001795 case FUSE_NOTIFY_STORE:
1796 return fuse_notify_store(fc, size, cs);
1797
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001798 case FUSE_NOTIFY_RETRIEVE:
1799 return fuse_notify_retrieve(fc, size, cs);
1800
John Muir451d0f52011-12-06 21:50:06 +01001801 case FUSE_NOTIFY_DELETE:
1802 return fuse_notify_delete(fc, size, cs);
1803
Tejun Heo85993962008-11-26 12:03:55 +01001804 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001805 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001806 return -EINVAL;
1807 }
1808}
1809
Miklos Szeredi334f4852005-09-09 13:10:27 -07001810/* Look up request on processing list by unique ID */
1811static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
1812{
Dong Fang05726ac2013-07-30 22:50:01 -04001813 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001814
Dong Fang05726ac2013-07-30 22:50:01 -04001815 list_for_each_entry(req, &fc->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001816 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001817 return req;
1818 }
1819 return NULL;
1820}
1821
1822static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1823 unsigned nbytes)
1824{
1825 unsigned reqsize = sizeof(struct fuse_out_header);
1826
1827 if (out->h.error)
1828 return nbytes != reqsize ? -EINVAL : 0;
1829
1830 reqsize += len_args(out->numargs, out->args);
1831
1832 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1833 return -EINVAL;
1834 else if (reqsize > nbytes) {
1835 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1836 unsigned diffsize = reqsize - nbytes;
1837 if (diffsize > lastarg->size)
1838 return -EINVAL;
1839 lastarg->size -= diffsize;
1840 }
1841 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1842 out->page_zeroing);
1843}
1844
1845/*
1846 * Write a single reply to a request. First the header is copied from
1847 * the write buffer. The request is then searched on the processing
1848 * list by the unique ID found in the header. If found, then remove
1849 * it from the list and copy the rest of the buffer to the request.
1850 * The request is finished by calling request_end()
1851 */
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001852static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1853 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001854{
1855 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001856 struct fuse_req *req;
1857 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001858
Miklos Szeredi334f4852005-09-09 13:10:27 -07001859 if (nbytes < sizeof(struct fuse_out_header))
1860 return -EINVAL;
1861
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001862 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001863 if (err)
1864 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001865
Miklos Szeredi334f4852005-09-09 13:10:27 -07001866 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001867 if (oh.len != nbytes)
1868 goto err_finish;
1869
1870 /*
1871 * Zero oh.unique indicates unsolicited notification message
1872 * and error contains notification code.
1873 */
1874 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001875 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001876 return err ? err : nbytes;
1877 }
1878
1879 err = -EINVAL;
1880 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001881 goto err_finish;
1882
Miklos Szeredid7133112006-04-10 22:54:55 -07001883 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001884 err = -ENOENT;
1885 if (!fc->connected)
1886 goto err_unlock;
1887
Miklos Szeredi334f4852005-09-09 13:10:27 -07001888 req = request_find(fc, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001889 if (!req)
1890 goto err_unlock;
1891
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001892 /* Is it an interrupt reply? */
1893 if (req->intr_unique == oh.unique) {
1894 err = -EINVAL;
1895 if (nbytes != sizeof(struct fuse_out_header))
1896 goto err_unlock;
1897
1898 if (oh.error == -ENOSYS)
1899 fc->no_interrupt = 1;
1900 else if (oh.error == -EAGAIN)
1901 queue_interrupt(fc, req);
1902
1903 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001904 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001905 return nbytes;
1906 }
1907
1908 req->state = FUSE_REQ_WRITING;
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001909 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001910 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001911 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001912 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001913 if (!req->out.page_replace)
1914 cs->move_pages = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -07001915 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001916
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001917 err = copy_out_args(cs, &req->out, nbytes);
1918 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001919
Miklos Szeredid7133112006-04-10 22:54:55 -07001920 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001921 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001922 if (!fc->connected)
1923 err = -ENOENT;
1924 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001925 req->out.h.error = -EIO;
1926 request_end(fc, req);
1927
1928 return err ? err : nbytes;
1929
1930 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001931 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001932 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001933 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001934 return err;
1935}
1936
Al Virofbdbacc2015-04-03 21:53:39 -04001937static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001938{
1939 struct fuse_copy_state cs;
1940 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1941 if (!fc)
1942 return -EPERM;
1943
Al Virofbdbacc2015-04-03 21:53:39 -04001944 if (!iter_is_iovec(from))
1945 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001946
Miklos Szeredidc008092015-07-01 16:25:58 +02001947 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001948
1949 return fuse_dev_do_write(fc, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001950}
1951
1952static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1953 struct file *out, loff_t *ppos,
1954 size_t len, unsigned int flags)
1955{
1956 unsigned nbuf;
1957 unsigned idx;
1958 struct pipe_buffer *bufs;
1959 struct fuse_copy_state cs;
1960 struct fuse_conn *fc;
1961 size_t rem;
1962 ssize_t ret;
1963
1964 fc = fuse_get_conn(out);
1965 if (!fc)
1966 return -EPERM;
1967
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001968 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001969 if (!bufs)
1970 return -ENOMEM;
1971
1972 pipe_lock(pipe);
1973 nbuf = 0;
1974 rem = 0;
1975 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
1976 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
1977
1978 ret = -EINVAL;
1979 if (rem < len) {
1980 pipe_unlock(pipe);
1981 goto out;
1982 }
1983
1984 rem = len;
1985 while (rem) {
1986 struct pipe_buffer *ibuf;
1987 struct pipe_buffer *obuf;
1988
1989 BUG_ON(nbuf >= pipe->buffers);
1990 BUG_ON(!pipe->nrbufs);
1991 ibuf = &pipe->bufs[pipe->curbuf];
1992 obuf = &bufs[nbuf];
1993
1994 if (rem >= ibuf->len) {
1995 *obuf = *ibuf;
1996 ibuf->ops = NULL;
1997 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
1998 pipe->nrbufs--;
1999 } else {
2000 ibuf->ops->get(pipe, ibuf);
2001 *obuf = *ibuf;
2002 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2003 obuf->len = rem;
2004 ibuf->offset += obuf->len;
2005 ibuf->len -= obuf->len;
2006 }
2007 nbuf++;
2008 rem -= obuf->len;
2009 }
2010 pipe_unlock(pipe);
2011
Miklos Szeredidc008092015-07-01 16:25:58 +02002012 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002013 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04002014 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002015 cs.pipe = pipe;
2016
Miklos Szeredice534fb2010-05-25 15:06:07 +02002017 if (flags & SPLICE_F_MOVE)
2018 cs.move_pages = 1;
2019
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002020 ret = fuse_dev_do_write(fc, &cs, len);
2021
2022 for (idx = 0; idx < nbuf; idx++) {
2023 struct pipe_buffer *buf = &bufs[idx];
2024 buf->ops->release(pipe, buf);
2025 }
2026out:
2027 kfree(bufs);
2028 return ret;
2029}
2030
Miklos Szeredi334f4852005-09-09 13:10:27 -07002031static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2032{
Miklos Szeredi334f4852005-09-09 13:10:27 -07002033 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002034 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002035 if (!fc)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002036 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002037
2038 poll_wait(file, &fc->waitq, wait);
2039
Miklos Szeredid7133112006-04-10 22:54:55 -07002040 spin_lock(&fc->lock);
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002041 if (!fc->connected)
2042 mask = POLLERR;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07002043 else if (request_pending(fc))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002044 mask |= POLLIN | POLLRDNORM;
Miklos Szeredid7133112006-04-10 22:54:55 -07002045 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002046
2047 return mask;
2048}
2049
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002050/*
2051 * Abort all requests on the given list (pending or processing)
2052 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002053 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002054 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002055static void end_requests(struct fuse_conn *fc, struct list_head *head)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02002056__releases(fc->lock)
2057__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002058{
2059 while (!list_empty(head)) {
2060 struct fuse_req *req;
2061 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002062 req->out.h.error = -ECONNABORTED;
2063 request_end(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07002064 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002065 }
2066}
2067
Bryan Green357ccf22011-03-01 16:43:52 -08002068static void end_polls(struct fuse_conn *fc)
2069{
2070 struct rb_node *p;
2071
2072 p = rb_first(&fc->polled_files);
2073
2074 while (p) {
2075 struct fuse_file *ff;
2076 ff = rb_entry(p, struct fuse_file, polled_node);
2077 wake_up_interruptible_all(&ff->poll_wait);
2078
2079 p = rb_next(p);
2080 }
2081}
2082
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002083/*
2084 * Abort all requests.
2085 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002086 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2087 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002088 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002089 * The same effect is usually achievable through killing the filesystem daemon
2090 * and all users of the filesystem. The exception is the combination of an
2091 * asynchronous request and the tricky deadlock (see
2092 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002093 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002094 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2095 * requests, they should be finished off immediately. Locked requests will be
2096 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2097 * requests. It is possible that some request will finish before we can. This
2098 * is OK, the request will in that case be removed from the list before we touch
2099 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002100 */
2101void fuse_abort_conn(struct fuse_conn *fc)
2102{
Miklos Szeredid7133112006-04-10 22:54:55 -07002103 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002104 if (fc->connected) {
Miklos Szeredib716d422015-07-01 16:25:59 +02002105 struct fuse_req *req, *next;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002106 LIST_HEAD(to_end1);
2107 LIST_HEAD(to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002108
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002109 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002110 fc->blocked = 0;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002111 fuse_set_initialized(fc);
Miklos Szeredib716d422015-07-01 16:25:59 +02002112 list_for_each_entry_safe(req, next, &fc->io, list) {
2113 req->out.h.error = -ECONNABORTED;
2114 spin_lock(&req->waitq.lock);
2115 set_bit(FR_ABORTED, &req->flags);
2116 if (!test_bit(FR_LOCKED, &req->flags))
Miklos Szeredi41f98272015-07-01 16:25:59 +02002117 list_move(&req->list, &to_end1);
Miklos Szeredib716d422015-07-01 16:25:59 +02002118 spin_unlock(&req->waitq.lock);
2119 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002120 fc->max_background = UINT_MAX;
2121 flush_bg_queue(fc);
2122 list_splice_init(&fc->pending, &to_end2);
2123 list_splice_init(&fc->processing, &to_end2);
2124 while (!list_empty(&to_end1)) {
2125 req = list_first_entry(&to_end1, struct fuse_req, list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002126 __fuse_get_request(req);
2127 request_end(fc, req);
2128 spin_lock(&fc->lock);
2129 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002130 end_requests(fc, &to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002131 while (forget_pending(fc))
2132 kfree(dequeue_forget(fc, 1, NULL));
Bryan Green357ccf22011-03-01 16:43:52 -08002133 end_polls(fc);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002134 wake_up_all(&fc->waitq);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002135 wake_up_all(&fc->blocked_waitq);
Jeff Dike385a17b2006-04-10 22:54:52 -07002136 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002137 }
Miklos Szeredid7133112006-04-10 22:54:55 -07002138 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002139}
Tejun Heo08cbf542009-04-14 10:54:53 +09002140EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002141
Tejun Heo08cbf542009-04-14 10:54:53 +09002142int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002143{
Miklos Szeredi0720b312006-04-10 22:54:55 -07002144 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002145 if (fc) {
Miklos Szerediccd0a0b2015-07-01 16:25:57 +02002146 WARN_ON(!list_empty(&fc->io));
2147 WARN_ON(fc->fasync != NULL);
2148 fuse_abort_conn(fc);
Miklos Szeredibafa9652006-06-25 05:48:51 -07002149 fuse_conn_put(fc);
Jeff Dike385a17b2006-04-10 22:54:52 -07002150 }
Miklos Szeredif543f252006-01-16 22:14:35 -08002151
Miklos Szeredi334f4852005-09-09 13:10:27 -07002152 return 0;
2153}
Tejun Heo08cbf542009-04-14 10:54:53 +09002154EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002155
Jeff Dike385a17b2006-04-10 22:54:52 -07002156static int fuse_dev_fasync(int fd, struct file *file, int on)
2157{
2158 struct fuse_conn *fc = fuse_get_conn(file);
2159 if (!fc)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002160 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002161
2162 /* No locking - fasync_helper does its own locking */
2163 return fasync_helper(fd, file, on, &fc->fasync);
2164}
2165
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002166const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002167 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002168 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002169 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002170 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002171 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002172 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002173 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002174 .poll = fuse_dev_poll,
2175 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002176 .fasync = fuse_dev_fasync,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002177};
Tejun Heo08cbf542009-04-14 10:54:53 +09002178EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002179
2180static struct miscdevice fuse_miscdevice = {
2181 .minor = FUSE_MINOR,
2182 .name = "fuse",
2183 .fops = &fuse_dev_operations,
2184};
2185
2186int __init fuse_dev_init(void)
2187{
2188 int err = -ENOMEM;
2189 fuse_req_cachep = kmem_cache_create("fuse_request",
2190 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002191 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002192 if (!fuse_req_cachep)
2193 goto out;
2194
2195 err = misc_register(&fuse_miscdevice);
2196 if (err)
2197 goto out_cache_clean;
2198
2199 return 0;
2200
2201 out_cache_clean:
2202 kmem_cache_destroy(fuse_req_cachep);
2203 out:
2204 return err;
2205}
2206
2207void fuse_dev_cleanup(void)
2208{
2209 misc_deregister(&fuse_miscdevice);
2210 kmem_cache_destroy(fuse_req_cachep);
2211}