blob: cbece1221417bb0ad5c60a143c724e6b3a5b06e8 [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 Szeredicc080e92015-07-01 16:26:08 +020028static struct fuse_dev *fuse_get_dev(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 */
Miklos Szeredicc080e92015-07-01 16:26:08 +020034 return ACCESS_ONCE(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 Szeredi33e14b42015-07-01 16:26:01 +020051 __set_bit(FR_PENDING, &req->flags);
Miklos Szeredi334f4852005-09-09 13:10:27 -070052}
53
Maxim Patlasov4250c062012-10-26 19:48:07 +040054static struct fuse_req *__fuse_request_alloc(unsigned npages, gfp_t flags)
Miklos Szeredi334f4852005-09-09 13:10:27 -070055{
Maxim Patlasov4250c062012-10-26 19:48:07 +040056 struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, flags);
57 if (req) {
58 struct page **pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040059 struct fuse_page_desc *page_descs;
Maxim Patlasov4250c062012-10-26 19:48:07 +040060
Maxim Patlasovb2430d72012-10-26 19:49:24 +040061 if (npages <= FUSE_REQ_INLINE_PAGES) {
Maxim Patlasov4250c062012-10-26 19:48:07 +040062 pages = req->inline_pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040063 page_descs = req->inline_page_descs;
64 } else {
Maxim Patlasov4250c062012-10-26 19:48:07 +040065 pages = kmalloc(sizeof(struct page *) * npages, flags);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040066 page_descs = kmalloc(sizeof(struct fuse_page_desc) *
67 npages, flags);
68 }
Maxim Patlasov4250c062012-10-26 19:48:07 +040069
Maxim Patlasovb2430d72012-10-26 19:49:24 +040070 if (!pages || !page_descs) {
71 kfree(pages);
72 kfree(page_descs);
Maxim Patlasov4250c062012-10-26 19:48:07 +040073 kmem_cache_free(fuse_req_cachep, req);
74 return NULL;
75 }
76
Maxim Patlasovb2430d72012-10-26 19:49:24 +040077 fuse_request_init(req, pages, page_descs, npages);
Maxim Patlasov4250c062012-10-26 19:48:07 +040078 }
Miklos Szeredi334f4852005-09-09 13:10:27 -070079 return req;
80}
Maxim Patlasov4250c062012-10-26 19:48:07 +040081
82struct fuse_req *fuse_request_alloc(unsigned npages)
83{
84 return __fuse_request_alloc(npages, GFP_KERNEL);
85}
Tejun Heo08cbf542009-04-14 10:54:53 +090086EXPORT_SYMBOL_GPL(fuse_request_alloc);
Miklos Szeredi334f4852005-09-09 13:10:27 -070087
Maxim Patlasov4250c062012-10-26 19:48:07 +040088struct fuse_req *fuse_request_alloc_nofs(unsigned npages)
Miklos Szeredi3be5a522008-04-30 00:54:41 -070089{
Maxim Patlasov4250c062012-10-26 19:48:07 +040090 return __fuse_request_alloc(npages, GFP_NOFS);
Miklos Szeredi3be5a522008-04-30 00:54:41 -070091}
92
Miklos Szeredi334f4852005-09-09 13:10:27 -070093void fuse_request_free(struct fuse_req *req)
94{
Maxim Patlasovb2430d72012-10-26 19:49:24 +040095 if (req->pages != req->inline_pages) {
Maxim Patlasov4250c062012-10-26 19:48:07 +040096 kfree(req->pages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040097 kfree(req->page_descs);
98 }
Miklos Szeredi334f4852005-09-09 13:10:27 -070099 kmem_cache_free(fuse_req_cachep, req);
100}
101
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800102static void block_sigs(sigset_t *oldset)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700103{
104 sigset_t mask;
105
106 siginitsetinv(&mask, sigmask(SIGKILL));
107 sigprocmask(SIG_BLOCK, &mask, oldset);
108}
109
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800110static void restore_sigs(sigset_t *oldset)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700111{
112 sigprocmask(SIG_SETMASK, oldset, NULL);
113}
114
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400115void __fuse_get_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700116{
117 atomic_inc(&req->count);
118}
119
120/* Must be called with > 1 refcount */
121static void __fuse_put_request(struct fuse_req *req)
122{
123 BUG_ON(atomic_read(&req->count) < 2);
124 atomic_dec(&req->count);
125}
126
Miklos Szeredi33649c92006-06-25 05:48:52 -0700127static void fuse_req_init_context(struct fuse_req *req)
128{
Eric W. Biederman499dcf22012-02-07 16:26:03 -0800129 req->in.h.uid = from_kuid_munged(&init_user_ns, current_fsuid());
130 req->in.h.gid = from_kgid_munged(&init_user_ns, current_fsgid());
Miklos Szeredi33649c92006-06-25 05:48:52 -0700131 req->in.h.pid = current->pid;
132}
133
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100134void fuse_set_initialized(struct fuse_conn *fc)
135{
136 /* Make sure stores before this are seen on another CPU */
137 smp_wmb();
138 fc->initialized = 1;
139}
140
Maxim Patlasov0aada882013-03-21 18:02:28 +0400141static bool fuse_block_alloc(struct fuse_conn *fc, bool for_background)
142{
143 return !fc->initialized || (for_background && fc->blocked);
144}
145
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400146static struct fuse_req *__fuse_get_req(struct fuse_conn *fc, unsigned npages,
147 bool for_background)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700148{
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700149 struct fuse_req *req;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700150 int err;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200151 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400152
153 if (fuse_block_alloc(fc, for_background)) {
154 sigset_t oldset;
155 int intr;
156
157 block_sigs(&oldset);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400158 intr = wait_event_interruptible_exclusive(fc->blocked_waitq,
Maxim Patlasov0aada882013-03-21 18:02:28 +0400159 !fuse_block_alloc(fc, for_background));
160 restore_sigs(&oldset);
161 err = -EINTR;
162 if (intr)
163 goto out;
164 }
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100165 /* Matches smp_wmb() in fuse_set_initialized() */
166 smp_rmb();
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700167
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700168 err = -ENOTCONN;
169 if (!fc->connected)
170 goto out;
171
Miklos Szeredide155222015-07-01 16:25:57 +0200172 err = -ECONNREFUSED;
173 if (fc->conn_error)
174 goto out;
175
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400176 req = fuse_request_alloc(npages);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200177 err = -ENOMEM;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400178 if (!req) {
179 if (for_background)
180 wake_up(&fc->blocked_waitq);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200181 goto out;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400182 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700183
Miklos Szeredi33649c92006-06-25 05:48:52 -0700184 fuse_req_init_context(req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200185 __set_bit(FR_WAITING, &req->flags);
186 if (for_background)
187 __set_bit(FR_BACKGROUND, &req->flags);
188
Miklos Szeredi334f4852005-09-09 13:10:27 -0700189 return req;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200190
191 out:
192 atomic_dec(&fc->num_waiting);
193 return ERR_PTR(err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700194}
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400195
196struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages)
197{
198 return __fuse_get_req(fc, npages, false);
199}
Tejun Heo08cbf542009-04-14 10:54:53 +0900200EXPORT_SYMBOL_GPL(fuse_get_req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700201
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400202struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc,
203 unsigned npages)
204{
205 return __fuse_get_req(fc, npages, true);
206}
207EXPORT_SYMBOL_GPL(fuse_get_req_for_background);
208
Miklos Szeredi33649c92006-06-25 05:48:52 -0700209/*
210 * Return request in fuse_file->reserved_req. However that may
211 * currently be in use. If that is the case, wait for it to become
212 * available.
213 */
214static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
215 struct file *file)
216{
217 struct fuse_req *req = NULL;
218 struct fuse_file *ff = file->private_data;
219
220 do {
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700221 wait_event(fc->reserved_req_waitq, ff->reserved_req);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700222 spin_lock(&fc->lock);
223 if (ff->reserved_req) {
224 req = ff->reserved_req;
225 ff->reserved_req = NULL;
Al Virocb0942b2012-08-27 14:48:26 -0400226 req->stolen_file = get_file(file);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700227 }
228 spin_unlock(&fc->lock);
229 } while (!req);
230
231 return req;
232}
233
234/*
235 * Put stolen request back into fuse_file->reserved_req
236 */
237static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
238{
239 struct file *file = req->stolen_file;
240 struct fuse_file *ff = file->private_data;
241
242 spin_lock(&fc->lock);
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400243 fuse_request_init(req, req->pages, req->page_descs, req->max_pages);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700244 BUG_ON(ff->reserved_req);
245 ff->reserved_req = req;
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700246 wake_up_all(&fc->reserved_req_waitq);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700247 spin_unlock(&fc->lock);
248 fput(file);
249}
250
251/*
252 * Gets a requests for a file operation, always succeeds
253 *
254 * This is used for sending the FLUSH request, which must get to
255 * userspace, due to POSIX locks which may need to be unlocked.
256 *
257 * If allocation fails due to OOM, use the reserved request in
258 * fuse_file.
259 *
260 * This is very unlikely to deadlock accidentally, since the
261 * filesystem should not have it's own file open. If deadlock is
262 * intentional, it can still be broken by "aborting" the filesystem.
263 */
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400264struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc,
265 struct file *file)
Miklos Szeredi33649c92006-06-25 05:48:52 -0700266{
267 struct fuse_req *req;
268
269 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400270 wait_event(fc->blocked_waitq, fc->initialized);
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100271 /* Matches smp_wmb() in fuse_set_initialized() */
272 smp_rmb();
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400273 req = fuse_request_alloc(0);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700274 if (!req)
275 req = get_reserved_req(fc, file);
276
277 fuse_req_init_context(req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200278 __set_bit(FR_WAITING, &req->flags);
279 __clear_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700280 return req;
281}
282
Miklos Szeredi334f4852005-09-09 13:10:27 -0700283void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
284{
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800285 if (atomic_dec_and_test(&req->count)) {
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200286 if (test_bit(FR_BACKGROUND, &req->flags)) {
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400287 /*
288 * We get here in the unlikely case that a background
289 * request was allocated but not sent
290 */
291 spin_lock(&fc->lock);
292 if (!fc->blocked)
293 wake_up(&fc->blocked_waitq);
294 spin_unlock(&fc->lock);
295 }
296
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200297 if (test_bit(FR_WAITING, &req->flags)) {
298 __clear_bit(FR_WAITING, &req->flags);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200299 atomic_dec(&fc->num_waiting);
Miklos Szeredi73e0e732015-07-01 16:25:56 +0200300 }
Miklos Szeredi33649c92006-06-25 05:48:52 -0700301
302 if (req->stolen_file)
303 put_reserved_req(fc, req);
304 else
305 fuse_request_free(req);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800306 }
307}
Tejun Heo08cbf542009-04-14 10:54:53 +0900308EXPORT_SYMBOL_GPL(fuse_put_request);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800309
Miklos Szeredid12def12008-02-06 01:38:39 -0800310static unsigned len_args(unsigned numargs, struct fuse_arg *args)
311{
312 unsigned nbytes = 0;
313 unsigned i;
314
315 for (i = 0; i < numargs; i++)
316 nbytes += args[i].size;
317
318 return nbytes;
319}
320
Miklos Szeredif88996a2015-07-01 16:26:01 +0200321static u64 fuse_get_unique(struct fuse_iqueue *fiq)
Miklos Szeredid12def12008-02-06 01:38:39 -0800322{
Miklos Szeredif88996a2015-07-01 16:26:01 +0200323 return ++fiq->reqctr;
Miklos Szeredid12def12008-02-06 01:38:39 -0800324}
325
Miklos Szeredif88996a2015-07-01 16:26:01 +0200326static void queue_request(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800327{
Miklos Szeredid12def12008-02-06 01:38:39 -0800328 req->in.h.len = sizeof(struct fuse_in_header) +
329 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200330 list_add_tail(&req->list, &fiq->pending);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200331 wake_up_locked(&fiq->waitq);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200332 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredid12def12008-02-06 01:38:39 -0800333}
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 Szeredif88996a2015-07-01 16:26:01 +0200338 struct fuse_iqueue *fiq = &fc->iq;
339
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100340 forget->forget_one.nodeid = nodeid;
341 forget->forget_one.nlookup = nlookup;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100342
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200343 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200344 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200345 fiq->forget_list_tail->next = forget;
346 fiq->forget_list_tail = forget;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200347 wake_up_locked(&fiq->waitq);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200348 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200349 } else {
350 kfree(forget);
351 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200352 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100353}
354
Miklos Szeredid12def12008-02-06 01:38:39 -0800355static void flush_bg_queue(struct fuse_conn *fc)
356{
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700357 while (fc->active_background < fc->max_background &&
Miklos Szeredid12def12008-02-06 01:38:39 -0800358 !list_empty(&fc->bg_queue)) {
359 struct fuse_req *req;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200360 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredid12def12008-02-06 01:38:39 -0800361
362 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
363 list_del(&req->list);
364 fc->active_background++;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200365 spin_lock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200366 req->in.h.unique = fuse_get_unique(fiq);
367 queue_request(fiq, req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200368 spin_unlock(&fiq->waitq.lock);
Miklos Szeredid12def12008-02-06 01:38:39 -0800369 }
370}
371
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200372/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700373 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700374 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800375 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700376 * was closed. The requester thread is woken up (if still waiting),
377 * the 'end' callback is called if given, else the reference to the
378 * request is released
Miklos Szeredi334f4852005-09-09 13:10:27 -0700379 */
380static void request_end(struct fuse_conn *fc, struct fuse_req *req)
381{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200382 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi365ae712015-07-01 16:26:06 +0200383
Miklos Szerediefe28002015-07-01 16:26:07 +0200384 if (test_and_set_bit(FR_FINISHED, &req->flags))
Miklos Szeredi365ae712015-07-01 16:26:06 +0200385 return;
Miklos Szeredi365ae712015-07-01 16:26:06 +0200386
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200387 spin_lock(&fiq->waitq.lock);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200388 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200389 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200390 WARN_ON(test_bit(FR_PENDING, &req->flags));
391 WARN_ON(test_bit(FR_SENT, &req->flags));
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200392 if (test_bit(FR_BACKGROUND, &req->flags)) {
Miklos Szerediefe28002015-07-01 16:26:07 +0200393 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200394 clear_bit(FR_BACKGROUND, &req->flags);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400395 if (fc->num_background == fc->max_background)
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700396 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400397
398 /* Wake up next waiter, if any */
Miklos Szeredi3c18ef82013-04-17 21:50:58 +0200399 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400400 wake_up(&fc->blocked_waitq);
401
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700402 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900403 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200404 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
405 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700406 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700407 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800408 fc->active_background--;
409 flush_bg_queue(fc);
Miklos Szerediefe28002015-07-01 16:26:07 +0200410 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700411 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700412 wake_up(&req->waitq);
Miklos Szeredi1e6881c2015-07-01 16:26:07 +0200413 if (req->end)
414 req->end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100415 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700416}
417
Miklos Szeredif88996a2015-07-01 16:26:01 +0200418static void queue_interrupt(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700419{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200420 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200421 if (list_empty(&req->intr_entry)) {
422 list_add_tail(&req->intr_entry, &fiq->interrupts);
423 wake_up_locked(&fiq->waitq);
424 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200425 spin_unlock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200426 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700427}
428
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700429static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700430{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200431 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic4775262015-07-01 16:26:00 +0200432 int err;
433
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700434 if (!fc->no_interrupt) {
435 /* Any signal may interrupt this */
Miklos Szeredic4775262015-07-01 16:26:00 +0200436 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200437 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200438 if (!err)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700439 return;
440
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200441 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200442 /* matches barrier in fuse_dev_do_read() */
443 smp_mb__after_atomic();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200444 if (test_bit(FR_SENT, &req->flags))
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200445 queue_interrupt(fiq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700446 }
447
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200448 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700449 sigset_t oldset;
450
451 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700452 block_sigs(&oldset);
Miklos Szeredic4775262015-07-01 16:26:00 +0200453 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200454 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700455 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700456
Miklos Szeredic4775262015-07-01 16:26:00 +0200457 if (!err)
Miklos Szeredia131de02007-10-16 23:31:04 -0700458 return;
459
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200460 spin_lock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700461 /* Request is not yet in userspace, bail out */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200462 if (test_bit(FR_PENDING, &req->flags)) {
Miklos Szeredia131de02007-10-16 23:31:04 -0700463 list_del(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200464 spin_unlock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700465 __fuse_put_request(req);
466 req->out.h.error = -EINTR;
467 return;
468 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200469 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700470 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700471
Miklos Szeredia131de02007-10-16 23:31:04 -0700472 /*
473 * Either request is already in userspace, or it was forced.
474 * Wait it out.
475 */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200476 wait_event(req->waitq, test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi334f4852005-09-09 13:10:27 -0700477}
478
Eric Wong6a4e9222013-02-04 13:04:44 +0000479static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700480{
Miklos Szeredie16714d2015-07-01 16:26:01 +0200481 struct fuse_iqueue *fiq = &fc->iq;
482
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200483 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200484 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200485 if (!fiq->connected) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200486 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700487 req->out.h.error = -ENOTCONN;
Miklos Szeredic4775262015-07-01 16:26:00 +0200488 } else {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200489 req->in.h.unique = fuse_get_unique(fiq);
490 queue_request(fiq, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700491 /* acquire extra reference, since request is still needed
492 after request_end() */
493 __fuse_get_request(req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200494 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700495
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700496 request_wait_answer(fc, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200497 /* Pairs with smp_wmb() in request_end() */
498 smp_rmb();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700499 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700500}
Eric Wong6a4e9222013-02-04 13:04:44 +0000501
502void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
503{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200504 __set_bit(FR_ISREPLY, &req->flags);
505 if (!test_bit(FR_WAITING, &req->flags)) {
506 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200507 atomic_inc(&fc->num_waiting);
508 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000509 __fuse_request_send(fc, req);
510}
Tejun Heo08cbf542009-04-14 10:54:53 +0900511EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700512
Miklos Szeredi21f62172015-01-06 10:45:35 +0100513static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
514{
515 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
516 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
517
518 if (fc->minor < 9) {
519 switch (args->in.h.opcode) {
520 case FUSE_LOOKUP:
521 case FUSE_CREATE:
522 case FUSE_MKNOD:
523 case FUSE_MKDIR:
524 case FUSE_SYMLINK:
525 case FUSE_LINK:
526 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
527 break;
528 case FUSE_GETATTR:
529 case FUSE_SETATTR:
530 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
531 break;
532 }
533 }
534 if (fc->minor < 12) {
535 switch (args->in.h.opcode) {
536 case FUSE_CREATE:
537 args->in.args[0].size = sizeof(struct fuse_open_in);
538 break;
539 case FUSE_MKNOD:
540 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
541 break;
542 }
543 }
544}
545
Miklos Szeredi70781872014-12-12 09:49:05 +0100546ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
547{
548 struct fuse_req *req;
549 ssize_t ret;
550
551 req = fuse_get_req(fc, 0);
552 if (IS_ERR(req))
553 return PTR_ERR(req);
554
Miklos Szeredi21f62172015-01-06 10:45:35 +0100555 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
556 fuse_adjust_compat(fc, args);
557
Miklos Szeredi70781872014-12-12 09:49:05 +0100558 req->in.h.opcode = args->in.h.opcode;
559 req->in.h.nodeid = args->in.h.nodeid;
560 req->in.numargs = args->in.numargs;
561 memcpy(req->in.args, args->in.args,
562 args->in.numargs * sizeof(struct fuse_in_arg));
563 req->out.argvar = args->out.argvar;
564 req->out.numargs = args->out.numargs;
565 memcpy(req->out.args, args->out.args,
566 args->out.numargs * sizeof(struct fuse_arg));
567 fuse_request_send(fc, req);
568 ret = req->out.h.error;
569 if (!ret && args->out.argvar) {
570 BUG_ON(args->out.numargs != 1);
571 ret = req->out.args[0].size;
572 }
573 fuse_put_request(fc, req);
574
575 return ret;
576}
577
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200578/*
579 * Called under fc->lock
580 *
581 * fc->connected must have been checked previously
582 */
583void fuse_request_send_background_locked(struct fuse_conn *fc,
584 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800585{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200586 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
587 if (!test_bit(FR_WAITING, &req->flags)) {
588 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200589 atomic_inc(&fc->num_waiting);
590 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200591 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800592 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700593 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800594 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700595 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900596 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200597 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
598 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800599 }
600 list_add_tail(&req->list, &fc->bg_queue);
601 flush_bg_queue(fc);
602}
603
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200604void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700605{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200606 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700607 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700608 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200609 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700610 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700611 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200612 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700613 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200614 req->end(fc, req);
615 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700616 }
617}
Tejun Heo08cbf542009-04-14 10:54:53 +0900618EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700619
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200620static int fuse_request_send_notify_reply(struct fuse_conn *fc,
621 struct fuse_req *req, u64 unique)
622{
623 int err = -ENODEV;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200624 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200625
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200626 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200627 req->in.h.unique = unique;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200628 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200629 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200630 queue_request(fiq, req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200631 err = 0;
632 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200633 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200634
635 return err;
636}
637
Anand V. Avati0b05b182012-08-19 08:53:23 -0400638void fuse_force_forget(struct file *file, u64 nodeid)
639{
Al Viro6131ffa2013-02-27 16:59:05 -0500640 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400641 struct fuse_conn *fc = get_fuse_conn(inode);
642 struct fuse_req *req;
643 struct fuse_forget_in inarg;
644
645 memset(&inarg, 0, sizeof(inarg));
646 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400647 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400648 req->in.h.opcode = FUSE_FORGET;
649 req->in.h.nodeid = nodeid;
650 req->in.numargs = 1;
651 req->in.args[0].size = sizeof(inarg);
652 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200653 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000654 __fuse_request_send(fc, req);
655 /* ignore errors */
656 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400657}
658
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700659/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700660 * Lock the request. Up to the next unlock_request() there mustn't be
661 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700662 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700663 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200664static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700665{
666 int err = 0;
667 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200668 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200669 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700670 err = -ENOENT;
671 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200672 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200673 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700674 }
675 return err;
676}
677
678/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200679 * Unlock request. If it was aborted while locked, caller is responsible
680 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700681 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200682static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700683{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200684 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700685 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200686 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200687 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200688 err = -ENOENT;
689 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200690 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200691 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700692 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200693 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700694}
695
696struct fuse_copy_state {
697 int write;
698 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400699 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200700 struct pipe_buffer *pipebufs;
701 struct pipe_buffer *currbuf;
702 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700703 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700704 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700705 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200706 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200707 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700708};
709
Miklos Szeredidc008092015-07-01 16:25:58 +0200710static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400711 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700712{
713 memset(cs, 0, sizeof(*cs));
714 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400715 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700716}
717
718/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800719static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700720{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200721 if (cs->currbuf) {
722 struct pipe_buffer *buf = cs->currbuf;
723
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200724 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200725 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200726 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200727 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700728 if (cs->write) {
729 flush_dcache_page(cs->pg);
730 set_page_dirty_lock(cs->pg);
731 }
732 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700733 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200734 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700735}
736
737/*
738 * Get another pagefull of userspace buffer, and map it to kernel
739 * address space, and lock request
740 */
741static int fuse_copy_fill(struct fuse_copy_state *cs)
742{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200743 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700744 int err;
745
Miklos Szeredidc008092015-07-01 16:25:58 +0200746 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200747 if (err)
748 return err;
749
Miklos Szeredi334f4852005-09-09 13:10:27 -0700750 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200751 if (cs->pipebufs) {
752 struct pipe_buffer *buf = cs->pipebufs;
753
Miklos Szeredic3021622010-05-25 15:06:07 +0200754 if (!cs->write) {
755 err = buf->ops->confirm(cs->pipe, buf);
756 if (err)
757 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200758
Miklos Szeredic3021622010-05-25 15:06:07 +0200759 BUG_ON(!cs->nr_segs);
760 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200761 cs->pg = buf->page;
762 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200763 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200764 cs->pipebufs++;
765 cs->nr_segs--;
766 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200767 if (cs->nr_segs == cs->pipe->buffers)
768 return -EIO;
769
770 page = alloc_page(GFP_HIGHUSER);
771 if (!page)
772 return -ENOMEM;
773
774 buf->page = page;
775 buf->offset = 0;
776 buf->len = 0;
777
778 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200779 cs->pg = page;
780 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200781 cs->len = PAGE_SIZE;
782 cs->pipebufs++;
783 cs->nr_segs++;
784 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200785 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400786 size_t off;
787 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200788 if (err < 0)
789 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400790 BUG_ON(!err);
791 cs->len = err;
792 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200793 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400794 cs->offset = off;
795 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700796 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700797
Miklos Szeredidc008092015-07-01 16:25:58 +0200798 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700799}
800
801/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800802static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700803{
804 unsigned ncpy = min(*size, cs->len);
805 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200806 void *pgaddr = kmap_atomic(cs->pg);
807 void *buf = pgaddr + cs->offset;
808
Miklos Szeredi334f4852005-09-09 13:10:27 -0700809 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200810 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700811 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200812 memcpy(*val, buf, ncpy);
813
814 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700815 *val += ncpy;
816 }
817 *size -= ncpy;
818 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200819 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700820 return ncpy;
821}
822
Miklos Szeredice534fb2010-05-25 15:06:07 +0200823static int fuse_check_page(struct page *page)
824{
825 if (page_mapcount(page) ||
826 page->mapping != NULL ||
827 page_count(page) != 1 ||
828 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
829 ~(1 << PG_locked |
830 1 << PG_referenced |
831 1 << PG_uptodate |
832 1 << PG_lru |
833 1 << PG_active |
834 1 << PG_reclaim))) {
835 printk(KERN_WARNING "fuse: trying to steal weird page\n");
836 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);
837 return 1;
838 }
839 return 0;
840}
841
842static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
843{
844 int err;
845 struct page *oldpage = *pagep;
846 struct page *newpage;
847 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200848
Miklos Szeredidc008092015-07-01 16:25:58 +0200849 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200850 if (err)
851 return err;
852
Miklos Szeredice534fb2010-05-25 15:06:07 +0200853 fuse_copy_finish(cs);
854
855 err = buf->ops->confirm(cs->pipe, buf);
856 if (err)
857 return err;
858
859 BUG_ON(!cs->nr_segs);
860 cs->currbuf = buf;
861 cs->len = buf->len;
862 cs->pipebufs++;
863 cs->nr_segs--;
864
865 if (cs->len != PAGE_SIZE)
866 goto out_fallback;
867
868 if (buf->ops->steal(cs->pipe, buf) != 0)
869 goto out_fallback;
870
871 newpage = buf->page;
872
Miklos Szerediaa991b32015-02-26 11:45:47 +0100873 if (!PageUptodate(newpage))
874 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200875
876 ClearPageMappedToDisk(newpage);
877
878 if (fuse_check_page(newpage) != 0)
879 goto out_fallback_unlock;
880
Miklos Szeredice534fb2010-05-25 15:06:07 +0200881 /*
882 * This is a new and locked page, it shouldn't be mapped or
883 * have any special flags on it
884 */
885 if (WARN_ON(page_mapped(oldpage)))
886 goto out_fallback_unlock;
887 if (WARN_ON(page_has_private(oldpage)))
888 goto out_fallback_unlock;
889 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
890 goto out_fallback_unlock;
891 if (WARN_ON(PageMlocked(oldpage)))
892 goto out_fallback_unlock;
893
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700894 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200895 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700896 unlock_page(newpage);
897 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200898 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700899
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300900 get_page(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200901
902 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
903 lru_cache_add_file(newpage);
904
905 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200906 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200907 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200908 err = -ENOENT;
909 else
910 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200911 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200912
913 if (err) {
914 unlock_page(newpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300915 put_page(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200916 return err;
917 }
918
919 unlock_page(oldpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300920 put_page(oldpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200921 cs->len = 0;
922
923 return 0;
924
925out_fallback_unlock:
926 unlock_page(newpage);
927out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200928 cs->pg = buf->page;
929 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200930
Miklos Szeredidc008092015-07-01 16:25:58 +0200931 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200932 if (err)
933 return err;
934
935 return 1;
936}
937
Miklos Szeredic3021622010-05-25 15:06:07 +0200938static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
939 unsigned offset, unsigned count)
940{
941 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200942 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200943
944 if (cs->nr_segs == cs->pipe->buffers)
945 return -EIO;
946
Miklos Szeredidc008092015-07-01 16:25:58 +0200947 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200948 if (err)
949 return err;
950
Miklos Szeredic3021622010-05-25 15:06:07 +0200951 fuse_copy_finish(cs);
952
953 buf = cs->pipebufs;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300954 get_page(page);
Miklos Szeredic3021622010-05-25 15:06:07 +0200955 buf->page = page;
956 buf->offset = offset;
957 buf->len = count;
958
959 cs->pipebufs++;
960 cs->nr_segs++;
961 cs->len = 0;
962
963 return 0;
964}
965
Miklos Szeredi334f4852005-09-09 13:10:27 -0700966/*
967 * Copy a page in the request to/from the userspace buffer. Must be
968 * done atomically
969 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200970static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800971 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700972{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200973 int err;
974 struct page *page = *pagep;
975
Miklos Szeredib6777c42010-10-26 14:22:27 -0700976 if (page && zeroing && count < PAGE_SIZE)
977 clear_highpage(page);
978
Miklos Szeredi334f4852005-09-09 13:10:27 -0700979 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200980 if (cs->write && cs->pipebufs && page) {
981 return fuse_ref_page(cs, page, offset, count);
982 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200983 if (cs->move_pages && page &&
984 offset == 0 && count == PAGE_SIZE) {
985 err = fuse_try_move_page(cs, pagep);
986 if (err <= 0)
987 return err;
988 } else {
989 err = fuse_copy_fill(cs);
990 if (err)
991 return err;
992 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100993 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700994 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800995 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700996 void *buf = mapaddr + offset;
997 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +0800998 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700999 } else
1000 offset += fuse_copy_do(cs, NULL, &count);
1001 }
1002 if (page && !cs->write)
1003 flush_dcache_page(page);
1004 return 0;
1005}
1006
1007/* Copy pages in the request to/from userspace buffer */
1008static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
1009 int zeroing)
1010{
1011 unsigned i;
1012 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001013
1014 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +02001015 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001016 unsigned offset = req->page_descs[i].offset;
1017 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001018
1019 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1020 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001021 if (err)
1022 return err;
1023
1024 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001025 }
1026 return 0;
1027}
1028
1029/* Copy a single argument in the request to/from userspace buffer */
1030static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1031{
1032 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001033 if (!cs->len) {
1034 int err = fuse_copy_fill(cs);
1035 if (err)
1036 return err;
1037 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001038 fuse_copy_do(cs, &val, &size);
1039 }
1040 return 0;
1041}
1042
1043/* Copy request arguments to/from userspace buffer */
1044static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1045 unsigned argpages, struct fuse_arg *args,
1046 int zeroing)
1047{
1048 int err = 0;
1049 unsigned i;
1050
1051 for (i = 0; !err && i < numargs; i++) {
1052 struct fuse_arg *arg = &args[i];
1053 if (i == numargs - 1 && argpages)
1054 err = fuse_copy_pages(cs, arg->size, zeroing);
1055 else
1056 err = fuse_copy_one(cs, arg->value, arg->size);
1057 }
1058 return err;
1059}
1060
Miklos Szeredif88996a2015-07-01 16:26:01 +02001061static int forget_pending(struct fuse_iqueue *fiq)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001062{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001063 return fiq->forget_list_head.next != NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001064}
1065
Miklos Szeredif88996a2015-07-01 16:26:01 +02001066static int request_pending(struct fuse_iqueue *fiq)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001067{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001068 return !list_empty(&fiq->pending) || !list_empty(&fiq->interrupts) ||
1069 forget_pending(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001070}
1071
Miklos Szeredi334f4852005-09-09 13:10:27 -07001072/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001073 * Transfer an interrupt request to userspace
1074 *
1075 * Unlike other requests this is assembled on demand, without a need
1076 * to allocate a separate fuse_req structure.
1077 *
Miklos Szeredifd22d622015-07-01 16:26:03 +02001078 * Called with fiq->waitq.lock held, releases it
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001079 */
Miklos Szeredifd22d622015-07-01 16:26:03 +02001080static int fuse_read_interrupt(struct fuse_iqueue *fiq,
1081 struct fuse_copy_state *cs,
Miklos Szeredic3021622010-05-25 15:06:07 +02001082 size_t nbytes, struct fuse_req *req)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001083__releases(fiq->waitq.lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001084{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001085 struct fuse_in_header ih;
1086 struct fuse_interrupt_in arg;
1087 unsigned reqsize = sizeof(ih) + sizeof(arg);
1088 int err;
1089
1090 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001091 req->intr_unique = fuse_get_unique(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001092 memset(&ih, 0, sizeof(ih));
1093 memset(&arg, 0, sizeof(arg));
1094 ih.len = reqsize;
1095 ih.opcode = FUSE_INTERRUPT;
1096 ih.unique = req->intr_unique;
1097 arg.unique = req->in.h.unique;
1098
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001099 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001100 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001101 return -EINVAL;
1102
Miklos Szeredic3021622010-05-25 15:06:07 +02001103 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001104 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001105 err = fuse_copy_one(cs, &arg, sizeof(arg));
1106 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001107
1108 return err ? err : reqsize;
1109}
1110
Miklos Szeredif88996a2015-07-01 16:26:01 +02001111static struct fuse_forget_link *dequeue_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001112 unsigned max,
1113 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001114{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001115 struct fuse_forget_link *head = fiq->forget_list_head.next;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001116 struct fuse_forget_link **newhead = &head;
1117 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001118
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001119 for (count = 0; *newhead != NULL && count < max; count++)
1120 newhead = &(*newhead)->next;
1121
Miklos Szeredif88996a2015-07-01 16:26:01 +02001122 fiq->forget_list_head.next = *newhead;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001123 *newhead = NULL;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001124 if (fiq->forget_list_head.next == NULL)
1125 fiq->forget_list_tail = &fiq->forget_list_head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001126
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001127 if (countp != NULL)
1128 *countp = count;
1129
1130 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001131}
1132
Miklos Szeredifd22d622015-07-01 16:26:03 +02001133static int fuse_read_single_forget(struct fuse_iqueue *fiq,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001134 struct fuse_copy_state *cs,
1135 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001136__releases(fiq->waitq.lock)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001137{
1138 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001139 struct fuse_forget_link *forget = dequeue_forget(fiq, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001140 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001141 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001142 };
1143 struct fuse_in_header ih = {
1144 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001145 .nodeid = forget->forget_one.nodeid,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001146 .unique = fuse_get_unique(fiq),
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001147 .len = sizeof(ih) + sizeof(arg),
1148 };
1149
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001150 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001151 kfree(forget);
1152 if (nbytes < ih.len)
1153 return -EINVAL;
1154
1155 err = fuse_copy_one(cs, &ih, sizeof(ih));
1156 if (!err)
1157 err = fuse_copy_one(cs, &arg, sizeof(arg));
1158 fuse_copy_finish(cs);
1159
1160 if (err)
1161 return err;
1162
1163 return ih.len;
1164}
1165
Miklos Szeredifd22d622015-07-01 16:26:03 +02001166static int fuse_read_batch_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001167 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001168__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001169{
1170 int err;
1171 unsigned max_forgets;
1172 unsigned count;
1173 struct fuse_forget_link *head;
1174 struct fuse_batch_forget_in arg = { .count = 0 };
1175 struct fuse_in_header ih = {
1176 .opcode = FUSE_BATCH_FORGET,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001177 .unique = fuse_get_unique(fiq),
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001178 .len = sizeof(ih) + sizeof(arg),
1179 };
1180
1181 if (nbytes < ih.len) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001182 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001183 return -EINVAL;
1184 }
1185
1186 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001187 head = dequeue_forget(fiq, max_forgets, &count);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001188 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001189
1190 arg.count = count;
1191 ih.len += count * sizeof(struct fuse_forget_one);
1192 err = fuse_copy_one(cs, &ih, sizeof(ih));
1193 if (!err)
1194 err = fuse_copy_one(cs, &arg, sizeof(arg));
1195
1196 while (head) {
1197 struct fuse_forget_link *forget = head;
1198
1199 if (!err) {
1200 err = fuse_copy_one(cs, &forget->forget_one,
1201 sizeof(forget->forget_one));
1202 }
1203 head = forget->next;
1204 kfree(forget);
1205 }
1206
1207 fuse_copy_finish(cs);
1208
1209 if (err)
1210 return err;
1211
1212 return ih.len;
1213}
1214
Miklos Szeredifd22d622015-07-01 16:26:03 +02001215static int fuse_read_forget(struct fuse_conn *fc, struct fuse_iqueue *fiq,
1216 struct fuse_copy_state *cs,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001217 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001218__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001219{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001220 if (fc->minor < 16 || fiq->forget_list_head.next->next == NULL)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001221 return fuse_read_single_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001222 else
Miklos Szeredifd22d622015-07-01 16:26:03 +02001223 return fuse_read_batch_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001224}
1225
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001226/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001227 * Read a single request into the userspace filesystem's buffer. This
1228 * function waits until a request is available, then removes it from
1229 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001230 * no reply is needed (FORGET) or request has been aborted or there
1231 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001232 * request_end(). Otherwise add it to the processing list, and set
1233 * the 'sent' flag.
1234 */
Miklos Szeredic36960462015-07-01 16:26:09 +02001235static ssize_t fuse_dev_do_read(struct fuse_dev *fud, struct file *file,
Miklos Szeredic3021622010-05-25 15:06:07 +02001236 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001237{
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001238 ssize_t err;
Miklos Szeredic36960462015-07-01 16:26:09 +02001239 struct fuse_conn *fc = fud->fc;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001240 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic36960462015-07-01 16:26:09 +02001241 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001242 struct fuse_req *req;
1243 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001244 unsigned reqsize;
1245
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001246 restart:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001247 spin_lock(&fiq->waitq.lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001248 err = -EAGAIN;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001249 if ((file->f_flags & O_NONBLOCK) && fiq->connected &&
Miklos Szeredif88996a2015-07-01 16:26:01 +02001250 !request_pending(fiq))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001251 goto err_unlock;
1252
Miklos Szeredi52509212015-07-01 16:26:03 +02001253 err = wait_event_interruptible_exclusive_locked(fiq->waitq,
1254 !fiq->connected || request_pending(fiq));
1255 if (err)
1256 goto err_unlock;
1257
Miklos Szeredi334f4852005-09-09 13:10:27 -07001258 err = -ENODEV;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001259 if (!fiq->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001260 goto err_unlock;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001261
Miklos Szeredif88996a2015-07-01 16:26:01 +02001262 if (!list_empty(&fiq->interrupts)) {
1263 req = list_entry(fiq->interrupts.next, struct fuse_req,
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001264 intr_entry);
Miklos Szeredifd22d622015-07-01 16:26:03 +02001265 return fuse_read_interrupt(fiq, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001266 }
1267
Miklos Szeredif88996a2015-07-01 16:26:01 +02001268 if (forget_pending(fiq)) {
1269 if (list_empty(&fiq->pending) || fiq->forget_batch-- > 0)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001270 return fuse_read_forget(fc, fiq, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001271
Miklos Szeredif88996a2015-07-01 16:26:01 +02001272 if (fiq->forget_batch <= -8)
1273 fiq->forget_batch = 16;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001274 }
1275
Miklos Szeredif88996a2015-07-01 16:26:01 +02001276 req = list_entry(fiq->pending.next, struct fuse_req, list);
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001277 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredief759252015-07-01 16:26:02 +02001278 list_del_init(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001279 spin_unlock(&fiq->waitq.lock);
1280
Miklos Szeredi334f4852005-09-09 13:10:27 -07001281 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001282 reqsize = in->h.len;
1283 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001284 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001285 req->out.h.error = -EIO;
1286 /* SETXATTR is special, since it may contain too large data */
1287 if (in->h.opcode == FUSE_SETXATTR)
1288 req->out.h.error = -E2BIG;
1289 request_end(fc, req);
1290 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001291 }
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001292 spin_lock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001293 list_add(&req->list, &fpq->io);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001294 spin_unlock(&fpq->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001295 cs->req = req;
1296 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001297 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001298 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001299 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001300 fuse_copy_finish(cs);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001301 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001302 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001303 if (!fpq->connected) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001304 err = -ENODEV;
1305 goto out_end;
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001306 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001307 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001308 req->out.h.error = -EIO;
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001309 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001310 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001311 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001312 err = reqsize;
1313 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001314 }
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001315 list_move_tail(&req->list, &fpq->processing);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001316 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001317 set_bit(FR_SENT, &req->flags);
1318 /* matches barrier in request_wait_answer() */
1319 smp_mb__after_atomic();
1320 if (test_bit(FR_INTERRUPTED, &req->flags))
1321 queue_interrupt(fiq, req);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001322
Miklos Szeredi334f4852005-09-09 13:10:27 -07001323 return reqsize;
1324
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001325out_end:
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001326 if (!test_bit(FR_PRIVATE, &req->flags))
1327 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001328 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001329 request_end(fc, req);
1330 return err;
1331
Miklos Szeredi334f4852005-09-09 13:10:27 -07001332 err_unlock:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001333 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001334 return err;
1335}
1336
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001337static int fuse_dev_open(struct inode *inode, struct file *file)
1338{
1339 /*
1340 * The fuse device's file's private_data is used to hold
1341 * the fuse_conn(ection) when it is mounted, and is used to
1342 * keep track of whether the file has been mounted already.
1343 */
1344 file->private_data = NULL;
1345 return 0;
1346}
1347
Al Virofbdbacc2015-04-03 21:53:39 -04001348static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001349{
1350 struct fuse_copy_state cs;
1351 struct file *file = iocb->ki_filp;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001352 struct fuse_dev *fud = fuse_get_dev(file);
1353
1354 if (!fud)
Miklos Szeredic3021622010-05-25 15:06:07 +02001355 return -EPERM;
1356
Al Virofbdbacc2015-04-03 21:53:39 -04001357 if (!iter_is_iovec(to))
1358 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001359
Miklos Szeredidc008092015-07-01 16:25:58 +02001360 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001361
Miklos Szeredic36960462015-07-01 16:26:09 +02001362 return fuse_dev_do_read(fud, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001363}
1364
Miklos Szeredic3021622010-05-25 15:06:07 +02001365static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1366 struct pipe_inode_info *pipe,
1367 size_t len, unsigned int flags)
1368{
1369 int ret;
1370 int page_nr = 0;
1371 int do_wakeup = 0;
1372 struct pipe_buffer *bufs;
1373 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001374 struct fuse_dev *fud = fuse_get_dev(in);
1375
1376 if (!fud)
Miklos Szeredic3021622010-05-25 15:06:07 +02001377 return -EPERM;
1378
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001379 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001380 if (!bufs)
1381 return -ENOMEM;
1382
Miklos Szeredidc008092015-07-01 16:25:58 +02001383 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001384 cs.pipebufs = bufs;
1385 cs.pipe = pipe;
Miklos Szeredic36960462015-07-01 16:26:09 +02001386 ret = fuse_dev_do_read(fud, in, &cs, len);
Miklos Szeredic3021622010-05-25 15:06:07 +02001387 if (ret < 0)
1388 goto out;
1389
1390 ret = 0;
1391 pipe_lock(pipe);
1392
1393 if (!pipe->readers) {
1394 send_sig(SIGPIPE, current, 0);
1395 if (!ret)
1396 ret = -EPIPE;
1397 goto out_unlock;
1398 }
1399
1400 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1401 ret = -EIO;
1402 goto out_unlock;
1403 }
1404
1405 while (page_nr < cs.nr_segs) {
1406 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1407 struct pipe_buffer *buf = pipe->bufs + newbuf;
1408
1409 buf->page = bufs[page_nr].page;
1410 buf->offset = bufs[page_nr].offset;
1411 buf->len = bufs[page_nr].len;
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001412 /*
1413 * Need to be careful about this. Having buf->ops in module
1414 * code can Oops if the buffer persists after module unload.
1415 */
1416 buf->ops = &nosteal_pipe_buf_ops;
Miklos Szeredic3021622010-05-25 15:06:07 +02001417
1418 pipe->nrbufs++;
1419 page_nr++;
1420 ret += buf->len;
1421
Al Viro6447a3c2013-03-21 11:01:38 -04001422 if (pipe->files)
Miklos Szeredic3021622010-05-25 15:06:07 +02001423 do_wakeup = 1;
1424 }
1425
1426out_unlock:
1427 pipe_unlock(pipe);
1428
1429 if (do_wakeup) {
1430 smp_mb();
1431 if (waitqueue_active(&pipe->wait))
1432 wake_up_interruptible(&pipe->wait);
1433 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1434 }
1435
1436out:
1437 for (; page_nr < cs.nr_segs; page_nr++)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001438 put_page(bufs[page_nr].page);
Miklos Szeredic3021622010-05-25 15:06:07 +02001439
1440 kfree(bufs);
1441 return ret;
1442}
1443
Tejun Heo95668a62008-11-26 12:03:55 +01001444static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1445 struct fuse_copy_state *cs)
1446{
1447 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001448 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001449
1450 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001451 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001452
1453 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1454 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001455 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001456
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001457 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001458 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001459
1460err:
1461 fuse_copy_finish(cs);
1462 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001463}
1464
John Muir3b463ae2009-05-31 11:13:57 -04001465static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1466 struct fuse_copy_state *cs)
1467{
1468 struct fuse_notify_inval_inode_out outarg;
1469 int err = -EINVAL;
1470
1471 if (size != sizeof(outarg))
1472 goto err;
1473
1474 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1475 if (err)
1476 goto err;
1477 fuse_copy_finish(cs);
1478
1479 down_read(&fc->killsb);
1480 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001481 if (fc->sb) {
1482 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1483 outarg.off, outarg.len);
1484 }
John Muir3b463ae2009-05-31 11:13:57 -04001485 up_read(&fc->killsb);
1486 return err;
1487
1488err:
1489 fuse_copy_finish(cs);
1490 return err;
1491}
1492
1493static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1494 struct fuse_copy_state *cs)
1495{
1496 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001497 int err = -ENOMEM;
1498 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001499 struct qstr name;
1500
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001501 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1502 if (!buf)
1503 goto err;
1504
1505 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001506 if (size < sizeof(outarg))
1507 goto err;
1508
1509 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1510 if (err)
1511 goto err;
1512
1513 err = -ENAMETOOLONG;
1514 if (outarg.namelen > FUSE_NAME_MAX)
1515 goto err;
1516
Miklos Szeredic2183d12011-08-24 10:20:17 +02001517 err = -EINVAL;
1518 if (size != sizeof(outarg) + outarg.namelen + 1)
1519 goto err;
1520
John Muir3b463ae2009-05-31 11:13:57 -04001521 name.name = buf;
1522 name.len = outarg.namelen;
1523 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1524 if (err)
1525 goto err;
1526 fuse_copy_finish(cs);
1527 buf[outarg.namelen] = 0;
1528 name.hash = full_name_hash(name.name, name.len);
1529
1530 down_read(&fc->killsb);
1531 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001532 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001533 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1534 up_read(&fc->killsb);
1535 kfree(buf);
1536 return err;
1537
1538err:
1539 kfree(buf);
1540 fuse_copy_finish(cs);
1541 return err;
1542}
1543
1544static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1545 struct fuse_copy_state *cs)
1546{
1547 struct fuse_notify_delete_out outarg;
1548 int err = -ENOMEM;
1549 char *buf;
1550 struct qstr name;
1551
1552 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1553 if (!buf)
1554 goto err;
1555
1556 err = -EINVAL;
1557 if (size < sizeof(outarg))
1558 goto err;
1559
1560 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1561 if (err)
1562 goto err;
1563
1564 err = -ENAMETOOLONG;
1565 if (outarg.namelen > FUSE_NAME_MAX)
1566 goto err;
1567
1568 err = -EINVAL;
1569 if (size != sizeof(outarg) + outarg.namelen + 1)
1570 goto err;
1571
1572 name.name = buf;
1573 name.len = outarg.namelen;
1574 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1575 if (err)
1576 goto err;
1577 fuse_copy_finish(cs);
1578 buf[outarg.namelen] = 0;
1579 name.hash = full_name_hash(name.name, name.len);
1580
1581 down_read(&fc->killsb);
1582 err = -ENOENT;
1583 if (fc->sb)
1584 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1585 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001586 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001587 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001588 return err;
1589
1590err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001591 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001592 fuse_copy_finish(cs);
1593 return err;
1594}
1595
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001596static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1597 struct fuse_copy_state *cs)
1598{
1599 struct fuse_notify_store_out outarg;
1600 struct inode *inode;
1601 struct address_space *mapping;
1602 u64 nodeid;
1603 int err;
1604 pgoff_t index;
1605 unsigned int offset;
1606 unsigned int num;
1607 loff_t file_size;
1608 loff_t end;
1609
1610 err = -EINVAL;
1611 if (size < sizeof(outarg))
1612 goto out_finish;
1613
1614 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1615 if (err)
1616 goto out_finish;
1617
1618 err = -EINVAL;
1619 if (size - sizeof(outarg) != outarg.size)
1620 goto out_finish;
1621
1622 nodeid = outarg.nodeid;
1623
1624 down_read(&fc->killsb);
1625
1626 err = -ENOENT;
1627 if (!fc->sb)
1628 goto out_up_killsb;
1629
1630 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1631 if (!inode)
1632 goto out_up_killsb;
1633
1634 mapping = inode->i_mapping;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001635 index = outarg.offset >> PAGE_SHIFT;
1636 offset = outarg.offset & ~PAGE_MASK;
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001637 file_size = i_size_read(inode);
1638 end = outarg.offset + outarg.size;
1639 if (end > file_size) {
1640 file_size = end;
1641 fuse_write_update_size(inode, file_size);
1642 }
1643
1644 num = outarg.size;
1645 while (num) {
1646 struct page *page;
1647 unsigned int this_num;
1648
1649 err = -ENOMEM;
1650 page = find_or_create_page(mapping, index,
1651 mapping_gfp_mask(mapping));
1652 if (!page)
1653 goto out_iput;
1654
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001655 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001656 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001657 if (!err && offset == 0 &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001658 (this_num == PAGE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001659 SetPageUptodate(page);
1660 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001661 put_page(page);
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001662
1663 if (err)
1664 goto out_iput;
1665
1666 num -= this_num;
1667 offset = 0;
1668 index++;
1669 }
1670
1671 err = 0;
1672
1673out_iput:
1674 iput(inode);
1675out_up_killsb:
1676 up_read(&fc->killsb);
1677out_finish:
1678 fuse_copy_finish(cs);
1679 return err;
1680}
1681
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001682static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1683{
Mel Gormanb745bc82014-06-04 16:10:22 -07001684 release_pages(req->pages, req->num_pages, false);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001685}
1686
1687static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1688 struct fuse_notify_retrieve_out *outarg)
1689{
1690 int err;
1691 struct address_space *mapping = inode->i_mapping;
1692 struct fuse_req *req;
1693 pgoff_t index;
1694 loff_t file_size;
1695 unsigned int num;
1696 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001697 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001698 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001699
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001700 offset = outarg->offset & ~PAGE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001701 file_size = i_size_read(inode);
1702
1703 num = outarg->size;
1704 if (outarg->offset > file_size)
1705 num = 0;
1706 else if (outarg->offset + num > file_size)
1707 num = file_size - outarg->offset;
1708
1709 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1710 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1711
1712 req = fuse_get_req(fc, num_pages);
1713 if (IS_ERR(req))
1714 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001715
1716 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1717 req->in.h.nodeid = outarg->nodeid;
1718 req->in.numargs = 2;
1719 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001720 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001721 req->end = fuse_retrieve_end;
1722
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001723 index = outarg->offset >> PAGE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001724
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001725 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001726 struct page *page;
1727 unsigned int this_num;
1728
1729 page = find_get_page(mapping, index);
1730 if (!page)
1731 break;
1732
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001733 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001734 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001735 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001736 req->num_pages++;
1737
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001738 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001739 num -= this_num;
1740 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001741 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001742 }
1743 req->misc.retrieve_in.offset = outarg->offset;
1744 req->misc.retrieve_in.size = total_len;
1745 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1746 req->in.args[0].value = &req->misc.retrieve_in;
1747 req->in.args[1].size = total_len;
1748
1749 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1750 if (err)
1751 fuse_retrieve_end(fc, req);
1752
1753 return err;
1754}
1755
1756static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1757 struct fuse_copy_state *cs)
1758{
1759 struct fuse_notify_retrieve_out outarg;
1760 struct inode *inode;
1761 int err;
1762
1763 err = -EINVAL;
1764 if (size != sizeof(outarg))
1765 goto copy_finish;
1766
1767 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1768 if (err)
1769 goto copy_finish;
1770
1771 fuse_copy_finish(cs);
1772
1773 down_read(&fc->killsb);
1774 err = -ENOENT;
1775 if (fc->sb) {
1776 u64 nodeid = outarg.nodeid;
1777
1778 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1779 if (inode) {
1780 err = fuse_retrieve(fc, inode, &outarg);
1781 iput(inode);
1782 }
1783 }
1784 up_read(&fc->killsb);
1785
1786 return err;
1787
1788copy_finish:
1789 fuse_copy_finish(cs);
1790 return err;
1791}
1792
Tejun Heo85993962008-11-26 12:03:55 +01001793static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1794 unsigned int size, struct fuse_copy_state *cs)
1795{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001796 /* Don't try to move pages (yet) */
1797 cs->move_pages = 0;
1798
Tejun Heo85993962008-11-26 12:03:55 +01001799 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001800 case FUSE_NOTIFY_POLL:
1801 return fuse_notify_poll(fc, size, cs);
1802
John Muir3b463ae2009-05-31 11:13:57 -04001803 case FUSE_NOTIFY_INVAL_INODE:
1804 return fuse_notify_inval_inode(fc, size, cs);
1805
1806 case FUSE_NOTIFY_INVAL_ENTRY:
1807 return fuse_notify_inval_entry(fc, size, cs);
1808
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001809 case FUSE_NOTIFY_STORE:
1810 return fuse_notify_store(fc, size, cs);
1811
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001812 case FUSE_NOTIFY_RETRIEVE:
1813 return fuse_notify_retrieve(fc, size, cs);
1814
John Muir451d0f52011-12-06 21:50:06 +01001815 case FUSE_NOTIFY_DELETE:
1816 return fuse_notify_delete(fc, size, cs);
1817
Tejun Heo85993962008-11-26 12:03:55 +01001818 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001819 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001820 return -EINVAL;
1821 }
1822}
1823
Miklos Szeredi334f4852005-09-09 13:10:27 -07001824/* Look up request on processing list by unique ID */
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001825static struct fuse_req *request_find(struct fuse_pqueue *fpq, u64 unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001826{
Dong Fang05726ac2013-07-30 22:50:01 -04001827 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001828
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001829 list_for_each_entry(req, &fpq->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001830 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001831 return req;
1832 }
1833 return NULL;
1834}
1835
1836static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1837 unsigned nbytes)
1838{
1839 unsigned reqsize = sizeof(struct fuse_out_header);
1840
1841 if (out->h.error)
1842 return nbytes != reqsize ? -EINVAL : 0;
1843
1844 reqsize += len_args(out->numargs, out->args);
1845
1846 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1847 return -EINVAL;
1848 else if (reqsize > nbytes) {
1849 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1850 unsigned diffsize = reqsize - nbytes;
1851 if (diffsize > lastarg->size)
1852 return -EINVAL;
1853 lastarg->size -= diffsize;
1854 }
1855 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1856 out->page_zeroing);
1857}
1858
1859/*
1860 * Write a single reply to a request. First the header is copied from
1861 * the write buffer. The request is then searched on the processing
1862 * list by the unique ID found in the header. If found, then remove
1863 * it from the list and copy the rest of the buffer to the request.
1864 * The request is finished by calling request_end()
1865 */
Miklos Szeredic36960462015-07-01 16:26:09 +02001866static ssize_t fuse_dev_do_write(struct fuse_dev *fud,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001867 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001868{
1869 int err;
Miklos Szeredic36960462015-07-01 16:26:09 +02001870 struct fuse_conn *fc = fud->fc;
1871 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001872 struct fuse_req *req;
1873 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001874
Miklos Szeredi334f4852005-09-09 13:10:27 -07001875 if (nbytes < sizeof(struct fuse_out_header))
1876 return -EINVAL;
1877
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001878 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001879 if (err)
1880 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001881
Miklos Szeredi334f4852005-09-09 13:10:27 -07001882 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001883 if (oh.len != nbytes)
1884 goto err_finish;
1885
1886 /*
1887 * Zero oh.unique indicates unsolicited notification message
1888 * and error contains notification code.
1889 */
1890 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001891 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001892 return err ? err : nbytes;
1893 }
1894
1895 err = -EINVAL;
1896 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001897 goto err_finish;
1898
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001899 spin_lock(&fpq->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001900 err = -ENOENT;
Miklos Szeredie96edd92015-07-01 16:26:04 +02001901 if (!fpq->connected)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001902 goto err_unlock_pq;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001903
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001904 req = request_find(fpq, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001905 if (!req)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001906 goto err_unlock_pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001907
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001908 /* Is it an interrupt reply? */
1909 if (req->intr_unique == oh.unique) {
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001910 spin_unlock(&fpq->lock);
1911
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001912 err = -EINVAL;
1913 if (nbytes != sizeof(struct fuse_out_header))
Miklos Szeredi46c34a32015-07-01 16:26:07 +02001914 goto err_finish;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001915
1916 if (oh.error == -ENOSYS)
1917 fc->no_interrupt = 1;
1918 else if (oh.error == -EAGAIN)
Miklos Szeredif88996a2015-07-01 16:26:01 +02001919 queue_interrupt(&fc->iq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001920
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001921 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001922 return nbytes;
1923 }
1924
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001925 clear_bit(FR_SENT, &req->flags);
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001926 list_move(&req->list, &fpq->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001927 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001928 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001929 spin_unlock(&fpq->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001930 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001931 if (!req->out.page_replace)
1932 cs->move_pages = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001933
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001934 err = copy_out_args(cs, &req->out, nbytes);
1935 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001936
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001937 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001938 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001939 if (!fpq->connected)
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001940 err = -ENOENT;
1941 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001942 req->out.h.error = -EIO;
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001943 if (!test_bit(FR_PRIVATE, &req->flags))
1944 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001945 spin_unlock(&fpq->lock);
Miklos Szeredi46c34a32015-07-01 16:26:07 +02001946
Miklos Szeredi334f4852005-09-09 13:10:27 -07001947 request_end(fc, req);
1948
1949 return err ? err : nbytes;
1950
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001951 err_unlock_pq:
1952 spin_unlock(&fpq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001953 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001954 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001955 return err;
1956}
1957
Al Virofbdbacc2015-04-03 21:53:39 -04001958static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001959{
1960 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001961 struct fuse_dev *fud = fuse_get_dev(iocb->ki_filp);
1962
1963 if (!fud)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001964 return -EPERM;
1965
Al Virofbdbacc2015-04-03 21:53:39 -04001966 if (!iter_is_iovec(from))
1967 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001968
Miklos Szeredidc008092015-07-01 16:25:58 +02001969 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001970
Miklos Szeredic36960462015-07-01 16:26:09 +02001971 return fuse_dev_do_write(fud, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001972}
1973
1974static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1975 struct file *out, loff_t *ppos,
1976 size_t len, unsigned int flags)
1977{
1978 unsigned nbuf;
1979 unsigned idx;
1980 struct pipe_buffer *bufs;
1981 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001982 struct fuse_dev *fud;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001983 size_t rem;
1984 ssize_t ret;
1985
Miklos Szeredicc080e92015-07-01 16:26:08 +02001986 fud = fuse_get_dev(out);
1987 if (!fud)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001988 return -EPERM;
1989
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001990 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001991 if (!bufs)
1992 return -ENOMEM;
1993
1994 pipe_lock(pipe);
1995 nbuf = 0;
1996 rem = 0;
1997 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
1998 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
1999
2000 ret = -EINVAL;
2001 if (rem < len) {
2002 pipe_unlock(pipe);
2003 goto out;
2004 }
2005
2006 rem = len;
2007 while (rem) {
2008 struct pipe_buffer *ibuf;
2009 struct pipe_buffer *obuf;
2010
2011 BUG_ON(nbuf >= pipe->buffers);
2012 BUG_ON(!pipe->nrbufs);
2013 ibuf = &pipe->bufs[pipe->curbuf];
2014 obuf = &bufs[nbuf];
2015
2016 if (rem >= ibuf->len) {
2017 *obuf = *ibuf;
2018 ibuf->ops = NULL;
2019 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
2020 pipe->nrbufs--;
2021 } else {
2022 ibuf->ops->get(pipe, ibuf);
2023 *obuf = *ibuf;
2024 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2025 obuf->len = rem;
2026 ibuf->offset += obuf->len;
2027 ibuf->len -= obuf->len;
2028 }
2029 nbuf++;
2030 rem -= obuf->len;
2031 }
2032 pipe_unlock(pipe);
2033
Miklos Szeredidc008092015-07-01 16:25:58 +02002034 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002035 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04002036 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002037 cs.pipe = pipe;
2038
Miklos Szeredice534fb2010-05-25 15:06:07 +02002039 if (flags & SPLICE_F_MOVE)
2040 cs.move_pages = 1;
2041
Miklos Szeredic36960462015-07-01 16:26:09 +02002042 ret = fuse_dev_do_write(fud, &cs, len);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002043
2044 for (idx = 0; idx < nbuf; idx++) {
2045 struct pipe_buffer *buf = &bufs[idx];
2046 buf->ops->release(pipe, buf);
2047 }
2048out:
2049 kfree(bufs);
2050 return ret;
2051}
2052
Miklos Szeredi334f4852005-09-09 13:10:27 -07002053static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2054{
Miklos Szeredi334f4852005-09-09 13:10:27 -07002055 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002056 struct fuse_iqueue *fiq;
Miklos Szeredicc080e92015-07-01 16:26:08 +02002057 struct fuse_dev *fud = fuse_get_dev(file);
2058
2059 if (!fud)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002060 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002061
Miklos Szeredicc080e92015-07-01 16:26:08 +02002062 fiq = &fud->fc->iq;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002063 poll_wait(file, &fiq->waitq, wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002064
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002065 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +02002066 if (!fiq->connected)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002067 mask = POLLERR;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002068 else if (request_pending(fiq))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002069 mask |= POLLIN | POLLRDNORM;
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002070 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002071
2072 return mask;
2073}
2074
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002075/*
2076 * Abort all requests on the given list (pending or processing)
2077 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002078 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002079 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002080static void end_requests(struct fuse_conn *fc, struct list_head *head)
2081{
2082 while (!list_empty(head)) {
2083 struct fuse_req *req;
2084 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002085 req->out.h.error = -ECONNABORTED;
Miklos Szeredi33e14b42015-07-01 16:26:01 +02002086 clear_bit(FR_PENDING, &req->flags);
2087 clear_bit(FR_SENT, &req->flags);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002088 list_del_init(&req->list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002089 request_end(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002090 }
2091}
2092
Bryan Green357ccf22011-03-01 16:43:52 -08002093static void end_polls(struct fuse_conn *fc)
2094{
2095 struct rb_node *p;
2096
2097 p = rb_first(&fc->polled_files);
2098
2099 while (p) {
2100 struct fuse_file *ff;
2101 ff = rb_entry(p, struct fuse_file, polled_node);
2102 wake_up_interruptible_all(&ff->poll_wait);
2103
2104 p = rb_next(p);
2105 }
2106}
2107
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002108/*
2109 * Abort all requests.
2110 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002111 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2112 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002113 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002114 * The same effect is usually achievable through killing the filesystem daemon
2115 * and all users of the filesystem. The exception is the combination of an
2116 * asynchronous request and the tricky deadlock (see
2117 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002118 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002119 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2120 * requests, they should be finished off immediately. Locked requests will be
2121 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2122 * requests. It is possible that some request will finish before we can. This
2123 * is OK, the request will in that case be removed from the list before we touch
2124 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002125 */
2126void fuse_abort_conn(struct fuse_conn *fc)
2127{
Miklos Szeredif88996a2015-07-01 16:26:01 +02002128 struct fuse_iqueue *fiq = &fc->iq;
2129
Miklos Szeredid7133112006-04-10 22:54:55 -07002130 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002131 if (fc->connected) {
Miklos Szeredic36960462015-07-01 16:26:09 +02002132 struct fuse_dev *fud;
Miklos Szeredib716d422015-07-01 16:25:59 +02002133 struct fuse_req *req, *next;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002134 LIST_HEAD(to_end1);
2135 LIST_HEAD(to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002136
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002137 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002138 fc->blocked = 0;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002139 fuse_set_initialized(fc);
Miklos Szeredic36960462015-07-01 16:26:09 +02002140 list_for_each_entry(fud, &fc->devices, entry) {
2141 struct fuse_pqueue *fpq = &fud->pq;
2142
2143 spin_lock(&fpq->lock);
2144 fpq->connected = 0;
2145 list_for_each_entry_safe(req, next, &fpq->io, list) {
2146 req->out.h.error = -ECONNABORTED;
2147 spin_lock(&req->waitq.lock);
2148 set_bit(FR_ABORTED, &req->flags);
2149 if (!test_bit(FR_LOCKED, &req->flags)) {
2150 set_bit(FR_PRIVATE, &req->flags);
2151 list_move(&req->list, &to_end1);
2152 }
2153 spin_unlock(&req->waitq.lock);
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02002154 }
Miklos Szeredic36960462015-07-01 16:26:09 +02002155 list_splice_init(&fpq->processing, &to_end2);
2156 spin_unlock(&fpq->lock);
Miklos Szeredib716d422015-07-01 16:25:59 +02002157 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002158 fc->max_background = UINT_MAX;
2159 flush_bg_queue(fc);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002160
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002161 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002162 fiq->connected = 0;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002163 list_splice_init(&fiq->pending, &to_end2);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002164 while (forget_pending(fiq))
2165 kfree(dequeue_forget(fiq, 1, NULL));
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002166 wake_up_all_locked(&fiq->waitq);
2167 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002168 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szerediee314a82015-07-01 16:26:08 +02002169 end_polls(fc);
2170 wake_up_all(&fc->blocked_waitq);
2171 spin_unlock(&fc->lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002172
Miklos Szeredi41f98272015-07-01 16:25:59 +02002173 while (!list_empty(&to_end1)) {
2174 req = list_first_entry(&to_end1, struct fuse_req, list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002175 __fuse_get_request(req);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002176 list_del_init(&req->list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002177 request_end(fc, req);
Miklos Szeredib716d422015-07-01 16:25:59 +02002178 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002179 end_requests(fc, &to_end2);
Miklos Szerediee314a82015-07-01 16:26:08 +02002180 } else {
2181 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002182 }
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002183}
Tejun Heo08cbf542009-04-14 10:54:53 +09002184EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002185
Tejun Heo08cbf542009-04-14 10:54:53 +09002186int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002187{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002188 struct fuse_dev *fud = fuse_get_dev(file);
2189
2190 if (fud) {
2191 struct fuse_conn *fc = fud->fc;
Miklos Szeredic36960462015-07-01 16:26:09 +02002192 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredicc080e92015-07-01 16:26:08 +02002193
Miklos Szeredic36960462015-07-01 16:26:09 +02002194 WARN_ON(!list_empty(&fpq->io));
2195 end_requests(fc, &fpq->processing);
2196 /* Are we the last open device? */
2197 if (atomic_dec_and_test(&fc->dev_count)) {
2198 WARN_ON(fc->iq.fasync != NULL);
2199 fuse_abort_conn(fc);
2200 }
Miklos Szeredicc080e92015-07-01 16:26:08 +02002201 fuse_dev_free(fud);
Jeff Dike385a17b2006-04-10 22:54:52 -07002202 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07002203 return 0;
2204}
Tejun Heo08cbf542009-04-14 10:54:53 +09002205EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002206
Jeff Dike385a17b2006-04-10 22:54:52 -07002207static int fuse_dev_fasync(int fd, struct file *file, int on)
2208{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002209 struct fuse_dev *fud = fuse_get_dev(file);
2210
2211 if (!fud)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002212 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002213
2214 /* No locking - fasync_helper does its own locking */
Miklos Szeredicc080e92015-07-01 16:26:08 +02002215 return fasync_helper(fd, file, on, &fud->fc->iq.fasync);
Jeff Dike385a17b2006-04-10 22:54:52 -07002216}
2217
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002218static int fuse_device_clone(struct fuse_conn *fc, struct file *new)
2219{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002220 struct fuse_dev *fud;
2221
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002222 if (new->private_data)
2223 return -EINVAL;
2224
Miklos Szeredicc080e92015-07-01 16:26:08 +02002225 fud = fuse_dev_alloc(fc);
2226 if (!fud)
2227 return -ENOMEM;
2228
2229 new->private_data = fud;
Miklos Szeredic36960462015-07-01 16:26:09 +02002230 atomic_inc(&fc->dev_count);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002231
2232 return 0;
2233}
2234
2235static long fuse_dev_ioctl(struct file *file, unsigned int cmd,
2236 unsigned long arg)
2237{
2238 int err = -ENOTTY;
2239
2240 if (cmd == FUSE_DEV_IOC_CLONE) {
2241 int oldfd;
2242
2243 err = -EFAULT;
2244 if (!get_user(oldfd, (__u32 __user *) arg)) {
2245 struct file *old = fget(oldfd);
2246
2247 err = -EINVAL;
2248 if (old) {
Jann Horn8ed1f0e2015-08-16 20:27:01 +02002249 struct fuse_dev *fud = NULL;
2250
2251 /*
2252 * Check against file->f_op because CUSE
2253 * uses the same ioctl handler.
2254 */
2255 if (old->f_op == file->f_op &&
2256 old->f_cred->user_ns == file->f_cred->user_ns)
2257 fud = fuse_get_dev(old);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002258
Miklos Szeredicc080e92015-07-01 16:26:08 +02002259 if (fud) {
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002260 mutex_lock(&fuse_mutex);
Miklos Szeredicc080e92015-07-01 16:26:08 +02002261 err = fuse_device_clone(fud->fc, file);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002262 mutex_unlock(&fuse_mutex);
2263 }
2264 fput(old);
2265 }
2266 }
2267 }
2268 return err;
2269}
2270
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002271const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002272 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002273 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002274 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002275 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002276 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002277 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002278 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002279 .poll = fuse_dev_poll,
2280 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002281 .fasync = fuse_dev_fasync,
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002282 .unlocked_ioctl = fuse_dev_ioctl,
2283 .compat_ioctl = fuse_dev_ioctl,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002284};
Tejun Heo08cbf542009-04-14 10:54:53 +09002285EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002286
2287static struct miscdevice fuse_miscdevice = {
2288 .minor = FUSE_MINOR,
2289 .name = "fuse",
2290 .fops = &fuse_dev_operations,
2291};
2292
2293int __init fuse_dev_init(void)
2294{
2295 int err = -ENOMEM;
2296 fuse_req_cachep = kmem_cache_create("fuse_request",
2297 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002298 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002299 if (!fuse_req_cachep)
2300 goto out;
2301
2302 err = misc_register(&fuse_miscdevice);
2303 if (err)
2304 goto out_cache_clean;
2305
2306 return 0;
2307
2308 out_cache_clean:
2309 kmem_cache_destroy(fuse_req_cachep);
2310 out:
2311 return err;
2312}
2313
2314void fuse_dev_cleanup(void)
2315{
2316 misc_deregister(&fuse_miscdevice);
2317 kmem_cache_destroy(fuse_req_cachep);
2318}