blob: c7f1a633239fdca2e53b5d88e4917dd751862ac7 [file] [log] [blame]
Miklos Szeredi334f4852005-09-09 13:10:27 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi1729a162008-11-26 12:03:54 +01003 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi334f4852005-09-09 13:10:27 -07004
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
9#include "fuse_i.h"
10
11#include <linux/init.h>
12#include <linux/module.h>
13#include <linux/poll.h>
14#include <linux/uio.h>
15#include <linux/miscdevice.h>
16#include <linux/pagemap.h>
17#include <linux/file.h>
18#include <linux/slab.h>
Miklos Szeredidd3bb142010-05-25 15:06:06 +020019#include <linux/pipe_fs_i.h>
Miklos Szeredice534fb2010-05-25 15:06:07 +020020#include <linux/swap.h>
21#include <linux/splice.h>
Miklos Szeredi334f4852005-09-09 13:10:27 -070022
23MODULE_ALIAS_MISCDEV(FUSE_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +020024MODULE_ALIAS("devname:fuse");
Miklos Szeredi334f4852005-09-09 13:10:27 -070025
Christoph Lametere18b8902006-12-06 20:33:20 -080026static struct kmem_cache *fuse_req_cachep;
Miklos Szeredi334f4852005-09-09 13:10:27 -070027
Miklos Szeredi8bfc0162006-01-16 22:14:28 -080028static struct fuse_conn *fuse_get_conn(struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -070029{
Miklos Szeredi0720b312006-04-10 22:54:55 -070030 /*
31 * Lockless access is OK, because file->private data is set
32 * once during mount and is valid until the file is released.
33 */
34 return file->private_data;
Miklos Szeredi334f4852005-09-09 13:10:27 -070035}
36
Maxim Patlasov4250c062012-10-26 19:48:07 +040037static void fuse_request_init(struct fuse_req *req, struct page **pages,
Maxim Patlasovb2430d72012-10-26 19:49:24 +040038 struct fuse_page_desc *page_descs,
Maxim Patlasov4250c062012-10-26 19:48:07 +040039 unsigned npages)
Miklos Szeredi334f4852005-09-09 13:10:27 -070040{
41 memset(req, 0, sizeof(*req));
Maxim Patlasov4250c062012-10-26 19:48:07 +040042 memset(pages, 0, sizeof(*pages) * npages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040043 memset(page_descs, 0, sizeof(*page_descs) * npages);
Miklos Szeredi334f4852005-09-09 13:10:27 -070044 INIT_LIST_HEAD(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -070045 INIT_LIST_HEAD(&req->intr_entry);
Miklos Szeredi334f4852005-09-09 13:10:27 -070046 init_waitqueue_head(&req->waitq);
47 atomic_set(&req->count, 1);
Maxim Patlasov4250c062012-10-26 19:48:07 +040048 req->pages = pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040049 req->page_descs = page_descs;
Maxim Patlasov4250c062012-10-26 19:48:07 +040050 req->max_pages = npages;
Miklos 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
343 spin_lock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200344 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200345 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200346 fiq->forget_list_tail->next = forget;
347 fiq->forget_list_tail = forget;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200348 wake_up_locked(&fiq->waitq);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200349 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200350 } else {
351 kfree(forget);
352 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200353 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100354 spin_unlock(&fc->lock);
355}
356
Miklos Szeredid12def12008-02-06 01:38:39 -0800357static void flush_bg_queue(struct fuse_conn *fc)
358{
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700359 while (fc->active_background < fc->max_background &&
Miklos Szeredid12def12008-02-06 01:38:39 -0800360 !list_empty(&fc->bg_queue)) {
361 struct fuse_req *req;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200362 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredid12def12008-02-06 01:38:39 -0800363
364 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
365 list_del(&req->list);
366 fc->active_background++;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200367 spin_lock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200368 req->in.h.unique = fuse_get_unique(fiq);
369 queue_request(fiq, req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200370 spin_unlock(&fiq->waitq.lock);
Miklos Szeredid12def12008-02-06 01:38:39 -0800371 }
372}
373
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200374/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700375 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700376 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800377 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700378 * was closed. The requester thread is woken up (if still waiting),
379 * the 'end' callback is called if given, else the reference to the
380 * request is released
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800381 *
Miklos Szeredid7133112006-04-10 22:54:55 -0700382 * Called with fc->lock, unlocks it
Miklos Szeredi334f4852005-09-09 13:10:27 -0700383 */
384static void request_end(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +0200385__releases(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700386{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200387 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700388 void (*end) (struct fuse_conn *, struct fuse_req *) = req->end;
389 req->end = NULL;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200390 list_del_init(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200391 spin_lock(&fiq->waitq.lock);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200392 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200393 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200394 WARN_ON(test_bit(FR_PENDING, &req->flags));
395 WARN_ON(test_bit(FR_SENT, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200396 smp_wmb();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200397 set_bit(FR_FINISHED, &req->flags);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200398 if (test_bit(FR_BACKGROUND, &req->flags)) {
399 clear_bit(FR_BACKGROUND, &req->flags);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400400 if (fc->num_background == fc->max_background)
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700401 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400402
403 /* Wake up next waiter, if any */
Miklos Szeredi3c18ef82013-04-17 21:50:58 +0200404 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400405 wake_up(&fc->blocked_waitq);
406
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700407 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900408 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200409 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
410 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700411 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700412 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800413 fc->active_background--;
414 flush_bg_queue(fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700415 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700416 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700417 wake_up(&req->waitq);
418 if (end)
419 end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100420 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700421}
422
Miklos Szeredif88996a2015-07-01 16:26:01 +0200423static void queue_interrupt(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700424{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200425 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200426 if (list_empty(&req->intr_entry)) {
427 list_add_tail(&req->intr_entry, &fiq->interrupts);
428 wake_up_locked(&fiq->waitq);
429 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200430 spin_unlock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200431 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700432}
433
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700434static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700435{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200436 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic4775262015-07-01 16:26:00 +0200437 int err;
438
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700439 if (!fc->no_interrupt) {
440 /* Any signal may interrupt this */
Miklos Szeredic4775262015-07-01 16:26:00 +0200441 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200442 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200443 if (!err)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700444 return;
445
Miklos Szeredic4775262015-07-01 16:26:00 +0200446 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200447 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200448 /* matches barrier in fuse_dev_do_read() */
449 smp_mb__after_atomic();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200450 if (test_bit(FR_SENT, &req->flags))
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200451 queue_interrupt(fiq, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200452 spin_unlock(&fc->lock);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700453 }
454
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200455 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700456 sigset_t oldset;
457
458 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700459 block_sigs(&oldset);
Miklos Szeredic4775262015-07-01 16:26:00 +0200460 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200461 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700462 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700463
Miklos Szeredic4775262015-07-01 16:26:00 +0200464 if (!err)
Miklos Szeredia131de02007-10-16 23:31:04 -0700465 return;
466
Miklos Szeredic4775262015-07-01 16:26:00 +0200467 spin_lock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200468 spin_lock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700469 /* Request is not yet in userspace, bail out */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200470 if (test_bit(FR_PENDING, &req->flags)) {
Miklos Szeredia131de02007-10-16 23:31:04 -0700471 list_del(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200472 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic4775262015-07-01 16:26:00 +0200473 spin_unlock(&fc->lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700474 __fuse_put_request(req);
475 req->out.h.error = -EINTR;
476 return;
477 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200478 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic4775262015-07-01 16:26:00 +0200479 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700480 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700481
Miklos Szeredia131de02007-10-16 23:31:04 -0700482 /*
483 * Either request is already in userspace, or it was forced.
484 * Wait it out.
485 */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200486 wait_event(req->waitq, test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi334f4852005-09-09 13:10:27 -0700487}
488
Eric Wong6a4e9222013-02-04 13:04:44 +0000489static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700490{
Miklos Szeredie16714d2015-07-01 16:26:01 +0200491 struct fuse_iqueue *fiq = &fc->iq;
492
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200493 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredid7133112006-04-10 22:54:55 -0700494 spin_lock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200495 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200496 if (!fiq->connected) {
Miklos Szeredic4775262015-07-01 16:26:00 +0200497 spin_unlock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200498 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700499 req->out.h.error = -ENOTCONN;
Miklos Szeredic4775262015-07-01 16:26:00 +0200500 } else {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200501 req->in.h.unique = fuse_get_unique(fiq);
502 queue_request(fiq, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700503 /* acquire extra reference, since request is still needed
504 after request_end() */
505 __fuse_get_request(req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200506 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic4775262015-07-01 16:26:00 +0200507 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700508
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700509 request_wait_answer(fc, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200510 /* Pairs with smp_wmb() in request_end() */
511 smp_rmb();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700512 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700513}
Eric Wong6a4e9222013-02-04 13:04:44 +0000514
515void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
516{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200517 __set_bit(FR_ISREPLY, &req->flags);
518 if (!test_bit(FR_WAITING, &req->flags)) {
519 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200520 atomic_inc(&fc->num_waiting);
521 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000522 __fuse_request_send(fc, req);
523}
Tejun Heo08cbf542009-04-14 10:54:53 +0900524EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700525
Miklos Szeredi21f62172015-01-06 10:45:35 +0100526static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
527{
528 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
529 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
530
531 if (fc->minor < 9) {
532 switch (args->in.h.opcode) {
533 case FUSE_LOOKUP:
534 case FUSE_CREATE:
535 case FUSE_MKNOD:
536 case FUSE_MKDIR:
537 case FUSE_SYMLINK:
538 case FUSE_LINK:
539 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
540 break;
541 case FUSE_GETATTR:
542 case FUSE_SETATTR:
543 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
544 break;
545 }
546 }
547 if (fc->minor < 12) {
548 switch (args->in.h.opcode) {
549 case FUSE_CREATE:
550 args->in.args[0].size = sizeof(struct fuse_open_in);
551 break;
552 case FUSE_MKNOD:
553 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
554 break;
555 }
556 }
557}
558
Miklos Szeredi70781872014-12-12 09:49:05 +0100559ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
560{
561 struct fuse_req *req;
562 ssize_t ret;
563
564 req = fuse_get_req(fc, 0);
565 if (IS_ERR(req))
566 return PTR_ERR(req);
567
Miklos Szeredi21f62172015-01-06 10:45:35 +0100568 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
569 fuse_adjust_compat(fc, args);
570
Miklos Szeredi70781872014-12-12 09:49:05 +0100571 req->in.h.opcode = args->in.h.opcode;
572 req->in.h.nodeid = args->in.h.nodeid;
573 req->in.numargs = args->in.numargs;
574 memcpy(req->in.args, args->in.args,
575 args->in.numargs * sizeof(struct fuse_in_arg));
576 req->out.argvar = args->out.argvar;
577 req->out.numargs = args->out.numargs;
578 memcpy(req->out.args, args->out.args,
579 args->out.numargs * sizeof(struct fuse_arg));
580 fuse_request_send(fc, req);
581 ret = req->out.h.error;
582 if (!ret && args->out.argvar) {
583 BUG_ON(args->out.numargs != 1);
584 ret = req->out.args[0].size;
585 }
586 fuse_put_request(fc, req);
587
588 return ret;
589}
590
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200591/*
592 * Called under fc->lock
593 *
594 * fc->connected must have been checked previously
595 */
596void fuse_request_send_background_locked(struct fuse_conn *fc,
597 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800598{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200599 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
600 if (!test_bit(FR_WAITING, &req->flags)) {
601 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200602 atomic_inc(&fc->num_waiting);
603 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200604 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800605 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700606 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800607 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700608 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900609 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200610 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
611 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800612 }
613 list_add_tail(&req->list, &fc->bg_queue);
614 flush_bg_queue(fc);
615}
616
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200617void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700618{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200619 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700620 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700621 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200622 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700623 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700624 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200625 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700626 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200627 req->end(fc, req);
628 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700629 }
630}
Tejun Heo08cbf542009-04-14 10:54:53 +0900631EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700632
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200633static int fuse_request_send_notify_reply(struct fuse_conn *fc,
634 struct fuse_req *req, u64 unique)
635{
636 int err = -ENODEV;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200637 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200638
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200639 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200640 req->in.h.unique = unique;
641 spin_lock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200642 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200643 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200644 queue_request(fiq, req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200645 err = 0;
646 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200647 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200648 spin_unlock(&fc->lock);
649
650 return err;
651}
652
Anand V. Avati0b05b182012-08-19 08:53:23 -0400653void fuse_force_forget(struct file *file, u64 nodeid)
654{
Al Viro6131ffa2013-02-27 16:59:05 -0500655 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400656 struct fuse_conn *fc = get_fuse_conn(inode);
657 struct fuse_req *req;
658 struct fuse_forget_in inarg;
659
660 memset(&inarg, 0, sizeof(inarg));
661 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400662 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400663 req->in.h.opcode = FUSE_FORGET;
664 req->in.h.nodeid = nodeid;
665 req->in.numargs = 1;
666 req->in.args[0].size = sizeof(inarg);
667 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200668 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000669 __fuse_request_send(fc, req);
670 /* ignore errors */
671 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400672}
673
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700674/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700675 * Lock the request. Up to the next unlock_request() there mustn't be
676 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700677 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700678 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200679static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700680{
681 int err = 0;
682 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200683 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200684 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700685 err = -ENOENT;
686 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200687 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200688 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700689 }
690 return err;
691}
692
693/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200694 * Unlock request. If it was aborted while locked, caller is responsible
695 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700696 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200697static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700698{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200699 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700700 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200701 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200702 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200703 err = -ENOENT;
704 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200705 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200706 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700707 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200708 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700709}
710
711struct fuse_copy_state {
712 int write;
713 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400714 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200715 struct pipe_buffer *pipebufs;
716 struct pipe_buffer *currbuf;
717 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700718 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700719 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700720 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200721 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200722 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700723};
724
Miklos Szeredidc008092015-07-01 16:25:58 +0200725static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400726 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700727{
728 memset(cs, 0, sizeof(*cs));
729 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400730 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700731}
732
733/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800734static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700735{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200736 if (cs->currbuf) {
737 struct pipe_buffer *buf = cs->currbuf;
738
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200739 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200740 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200741 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200742 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700743 if (cs->write) {
744 flush_dcache_page(cs->pg);
745 set_page_dirty_lock(cs->pg);
746 }
747 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700748 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200749 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700750}
751
752/*
753 * Get another pagefull of userspace buffer, and map it to kernel
754 * address space, and lock request
755 */
756static int fuse_copy_fill(struct fuse_copy_state *cs)
757{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200758 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700759 int err;
760
Miklos Szeredidc008092015-07-01 16:25:58 +0200761 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200762 if (err)
763 return err;
764
Miklos Szeredi334f4852005-09-09 13:10:27 -0700765 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200766 if (cs->pipebufs) {
767 struct pipe_buffer *buf = cs->pipebufs;
768
Miklos Szeredic3021622010-05-25 15:06:07 +0200769 if (!cs->write) {
770 err = buf->ops->confirm(cs->pipe, buf);
771 if (err)
772 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200773
Miklos Szeredic3021622010-05-25 15:06:07 +0200774 BUG_ON(!cs->nr_segs);
775 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200776 cs->pg = buf->page;
777 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200778 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200779 cs->pipebufs++;
780 cs->nr_segs--;
781 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200782 if (cs->nr_segs == cs->pipe->buffers)
783 return -EIO;
784
785 page = alloc_page(GFP_HIGHUSER);
786 if (!page)
787 return -ENOMEM;
788
789 buf->page = page;
790 buf->offset = 0;
791 buf->len = 0;
792
793 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200794 cs->pg = page;
795 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200796 cs->len = PAGE_SIZE;
797 cs->pipebufs++;
798 cs->nr_segs++;
799 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200800 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400801 size_t off;
802 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200803 if (err < 0)
804 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400805 BUG_ON(!err);
806 cs->len = err;
807 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200808 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400809 cs->offset = off;
810 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700811 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700812
Miklos Szeredidc008092015-07-01 16:25:58 +0200813 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700814}
815
816/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800817static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700818{
819 unsigned ncpy = min(*size, cs->len);
820 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200821 void *pgaddr = kmap_atomic(cs->pg);
822 void *buf = pgaddr + cs->offset;
823
Miklos Szeredi334f4852005-09-09 13:10:27 -0700824 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200825 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700826 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200827 memcpy(*val, buf, ncpy);
828
829 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700830 *val += ncpy;
831 }
832 *size -= ncpy;
833 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200834 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700835 return ncpy;
836}
837
Miklos Szeredice534fb2010-05-25 15:06:07 +0200838static int fuse_check_page(struct page *page)
839{
840 if (page_mapcount(page) ||
841 page->mapping != NULL ||
842 page_count(page) != 1 ||
843 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
844 ~(1 << PG_locked |
845 1 << PG_referenced |
846 1 << PG_uptodate |
847 1 << PG_lru |
848 1 << PG_active |
849 1 << PG_reclaim))) {
850 printk(KERN_WARNING "fuse: trying to steal weird page\n");
851 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);
852 return 1;
853 }
854 return 0;
855}
856
857static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
858{
859 int err;
860 struct page *oldpage = *pagep;
861 struct page *newpage;
862 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200863
Miklos Szeredidc008092015-07-01 16:25:58 +0200864 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200865 if (err)
866 return err;
867
Miklos Szeredice534fb2010-05-25 15:06:07 +0200868 fuse_copy_finish(cs);
869
870 err = buf->ops->confirm(cs->pipe, buf);
871 if (err)
872 return err;
873
874 BUG_ON(!cs->nr_segs);
875 cs->currbuf = buf;
876 cs->len = buf->len;
877 cs->pipebufs++;
878 cs->nr_segs--;
879
880 if (cs->len != PAGE_SIZE)
881 goto out_fallback;
882
883 if (buf->ops->steal(cs->pipe, buf) != 0)
884 goto out_fallback;
885
886 newpage = buf->page;
887
Miklos Szerediaa991b32015-02-26 11:45:47 +0100888 if (!PageUptodate(newpage))
889 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200890
891 ClearPageMappedToDisk(newpage);
892
893 if (fuse_check_page(newpage) != 0)
894 goto out_fallback_unlock;
895
Miklos Szeredice534fb2010-05-25 15:06:07 +0200896 /*
897 * This is a new and locked page, it shouldn't be mapped or
898 * have any special flags on it
899 */
900 if (WARN_ON(page_mapped(oldpage)))
901 goto out_fallback_unlock;
902 if (WARN_ON(page_has_private(oldpage)))
903 goto out_fallback_unlock;
904 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
905 goto out_fallback_unlock;
906 if (WARN_ON(PageMlocked(oldpage)))
907 goto out_fallback_unlock;
908
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700909 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200910 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700911 unlock_page(newpage);
912 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200913 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700914
Miklos Szeredice534fb2010-05-25 15:06:07 +0200915 page_cache_get(newpage);
916
917 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
918 lru_cache_add_file(newpage);
919
920 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200921 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200922 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200923 err = -ENOENT;
924 else
925 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200926 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200927
928 if (err) {
929 unlock_page(newpage);
930 page_cache_release(newpage);
931 return err;
932 }
933
934 unlock_page(oldpage);
935 page_cache_release(oldpage);
936 cs->len = 0;
937
938 return 0;
939
940out_fallback_unlock:
941 unlock_page(newpage);
942out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200943 cs->pg = buf->page;
944 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200945
Miklos Szeredidc008092015-07-01 16:25:58 +0200946 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200947 if (err)
948 return err;
949
950 return 1;
951}
952
Miklos Szeredic3021622010-05-25 15:06:07 +0200953static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
954 unsigned offset, unsigned count)
955{
956 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200957 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200958
959 if (cs->nr_segs == cs->pipe->buffers)
960 return -EIO;
961
Miklos Szeredidc008092015-07-01 16:25:58 +0200962 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200963 if (err)
964 return err;
965
Miklos Szeredic3021622010-05-25 15:06:07 +0200966 fuse_copy_finish(cs);
967
968 buf = cs->pipebufs;
969 page_cache_get(page);
970 buf->page = page;
971 buf->offset = offset;
972 buf->len = count;
973
974 cs->pipebufs++;
975 cs->nr_segs++;
976 cs->len = 0;
977
978 return 0;
979}
980
Miklos Szeredi334f4852005-09-09 13:10:27 -0700981/*
982 * Copy a page in the request to/from the userspace buffer. Must be
983 * done atomically
984 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200985static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800986 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700987{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200988 int err;
989 struct page *page = *pagep;
990
Miklos Szeredib6777c42010-10-26 14:22:27 -0700991 if (page && zeroing && count < PAGE_SIZE)
992 clear_highpage(page);
993
Miklos Szeredi334f4852005-09-09 13:10:27 -0700994 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200995 if (cs->write && cs->pipebufs && page) {
996 return fuse_ref_page(cs, page, offset, count);
997 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200998 if (cs->move_pages && page &&
999 offset == 0 && count == PAGE_SIZE) {
1000 err = fuse_try_move_page(cs, pagep);
1001 if (err <= 0)
1002 return err;
1003 } else {
1004 err = fuse_copy_fill(cs);
1005 if (err)
1006 return err;
1007 }
Miklos Szeredi1729a162008-11-26 12:03:54 +01001008 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001009 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +08001010 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001011 void *buf = mapaddr + offset;
1012 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +08001013 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001014 } else
1015 offset += fuse_copy_do(cs, NULL, &count);
1016 }
1017 if (page && !cs->write)
1018 flush_dcache_page(page);
1019 return 0;
1020}
1021
1022/* Copy pages in the request to/from userspace buffer */
1023static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
1024 int zeroing)
1025{
1026 unsigned i;
1027 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001028
1029 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +02001030 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001031 unsigned offset = req->page_descs[i].offset;
1032 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001033
1034 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1035 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001036 if (err)
1037 return err;
1038
1039 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001040 }
1041 return 0;
1042}
1043
1044/* Copy a single argument in the request to/from userspace buffer */
1045static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1046{
1047 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001048 if (!cs->len) {
1049 int err = fuse_copy_fill(cs);
1050 if (err)
1051 return err;
1052 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001053 fuse_copy_do(cs, &val, &size);
1054 }
1055 return 0;
1056}
1057
1058/* Copy request arguments to/from userspace buffer */
1059static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1060 unsigned argpages, struct fuse_arg *args,
1061 int zeroing)
1062{
1063 int err = 0;
1064 unsigned i;
1065
1066 for (i = 0; !err && i < numargs; i++) {
1067 struct fuse_arg *arg = &args[i];
1068 if (i == numargs - 1 && argpages)
1069 err = fuse_copy_pages(cs, arg->size, zeroing);
1070 else
1071 err = fuse_copy_one(cs, arg->value, arg->size);
1072 }
1073 return err;
1074}
1075
Miklos Szeredif88996a2015-07-01 16:26:01 +02001076static int forget_pending(struct fuse_iqueue *fiq)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001077{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001078 return fiq->forget_list_head.next != NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001079}
1080
Miklos Szeredif88996a2015-07-01 16:26:01 +02001081static int request_pending(struct fuse_iqueue *fiq)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001082{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001083 return !list_empty(&fiq->pending) || !list_empty(&fiq->interrupts) ||
1084 forget_pending(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001085}
1086
Miklos Szeredi334f4852005-09-09 13:10:27 -07001087/* Wait until a request is available on the pending list */
1088static void request_wait(struct fuse_conn *fc)
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001089__releases(fc->iq.waitq.lock)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001090__releases(fc->lock)
1091__acquires(fc->lock)
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001092__acquires(fc->iq.waitq.lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001093{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001094 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001095 DECLARE_WAITQUEUE(wait, current);
1096
Miklos Szeredif88996a2015-07-01 16:26:01 +02001097 add_wait_queue_exclusive(&fiq->waitq, &wait);
Miklos Szeredie16714d2015-07-01 16:26:01 +02001098 while (fiq->connected && !request_pending(fiq)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001099 set_current_state(TASK_INTERRUPTIBLE);
1100 if (signal_pending(current))
1101 break;
1102
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001103 spin_unlock(&fiq->waitq.lock);
Miklos Szeredid7133112006-04-10 22:54:55 -07001104 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001105 schedule();
Miklos Szeredid7133112006-04-10 22:54:55 -07001106 spin_lock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001107 spin_lock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001108 }
1109 set_current_state(TASK_RUNNING);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001110 remove_wait_queue(&fiq->waitq, &wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001111}
1112
1113/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001114 * Transfer an interrupt request to userspace
1115 *
1116 * Unlike other requests this is assembled on demand, without a need
1117 * to allocate a separate fuse_req structure.
1118 *
1119 * Called with fc->lock held, releases it
1120 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001121static int fuse_read_interrupt(struct fuse_conn *fc, struct fuse_copy_state *cs,
1122 size_t nbytes, struct fuse_req *req)
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001123__releases(fc->iq.waitq.lock)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001124__releases(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001125{
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001126 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001127 struct fuse_in_header ih;
1128 struct fuse_interrupt_in arg;
1129 unsigned reqsize = sizeof(ih) + sizeof(arg);
1130 int err;
1131
1132 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001133 req->intr_unique = fuse_get_unique(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001134 memset(&ih, 0, sizeof(ih));
1135 memset(&arg, 0, sizeof(arg));
1136 ih.len = reqsize;
1137 ih.opcode = FUSE_INTERRUPT;
1138 ih.unique = req->intr_unique;
1139 arg.unique = req->in.h.unique;
1140
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001141 spin_unlock(&fiq->waitq.lock);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001142 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001143 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001144 return -EINVAL;
1145
Miklos Szeredic3021622010-05-25 15:06:07 +02001146 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001147 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001148 err = fuse_copy_one(cs, &arg, sizeof(arg));
1149 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001150
1151 return err ? err : reqsize;
1152}
1153
Miklos Szeredif88996a2015-07-01 16:26:01 +02001154static struct fuse_forget_link *dequeue_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001155 unsigned max,
1156 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001157{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001158 struct fuse_forget_link *head = fiq->forget_list_head.next;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001159 struct fuse_forget_link **newhead = &head;
1160 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001161
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001162 for (count = 0; *newhead != NULL && count < max; count++)
1163 newhead = &(*newhead)->next;
1164
Miklos Szeredif88996a2015-07-01 16:26:01 +02001165 fiq->forget_list_head.next = *newhead;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001166 *newhead = NULL;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001167 if (fiq->forget_list_head.next == NULL)
1168 fiq->forget_list_tail = &fiq->forget_list_head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001169
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001170 if (countp != NULL)
1171 *countp = count;
1172
1173 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001174}
1175
1176static int fuse_read_single_forget(struct fuse_conn *fc,
1177 struct fuse_copy_state *cs,
1178 size_t nbytes)
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001179__releases(fc->iq.waitq.lock)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001180__releases(fc->lock)
1181{
1182 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001183 struct fuse_iqueue *fiq = &fc->iq;
1184 struct fuse_forget_link *forget = dequeue_forget(fiq, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001185 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001186 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001187 };
1188 struct fuse_in_header ih = {
1189 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001190 .nodeid = forget->forget_one.nodeid,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001191 .unique = fuse_get_unique(fiq),
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001192 .len = sizeof(ih) + sizeof(arg),
1193 };
1194
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001195 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001196 spin_unlock(&fc->lock);
1197 kfree(forget);
1198 if (nbytes < ih.len)
1199 return -EINVAL;
1200
1201 err = fuse_copy_one(cs, &ih, sizeof(ih));
1202 if (!err)
1203 err = fuse_copy_one(cs, &arg, sizeof(arg));
1204 fuse_copy_finish(cs);
1205
1206 if (err)
1207 return err;
1208
1209 return ih.len;
1210}
1211
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001212static int fuse_read_batch_forget(struct fuse_conn *fc,
1213 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001214__releases(fc->iq.waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001215__releases(fc->lock)
1216{
1217 int err;
1218 unsigned max_forgets;
1219 unsigned count;
1220 struct fuse_forget_link *head;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001221 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001222 struct fuse_batch_forget_in arg = { .count = 0 };
1223 struct fuse_in_header ih = {
1224 .opcode = FUSE_BATCH_FORGET,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001225 .unique = fuse_get_unique(fiq),
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001226 .len = sizeof(ih) + sizeof(arg),
1227 };
1228
1229 if (nbytes < ih.len) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001230 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001231 spin_unlock(&fc->lock);
1232 return -EINVAL;
1233 }
1234
1235 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001236 head = dequeue_forget(fiq, max_forgets, &count);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001237 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001238 spin_unlock(&fc->lock);
1239
1240 arg.count = count;
1241 ih.len += count * sizeof(struct fuse_forget_one);
1242 err = fuse_copy_one(cs, &ih, sizeof(ih));
1243 if (!err)
1244 err = fuse_copy_one(cs, &arg, sizeof(arg));
1245
1246 while (head) {
1247 struct fuse_forget_link *forget = head;
1248
1249 if (!err) {
1250 err = fuse_copy_one(cs, &forget->forget_one,
1251 sizeof(forget->forget_one));
1252 }
1253 head = forget->next;
1254 kfree(forget);
1255 }
1256
1257 fuse_copy_finish(cs);
1258
1259 if (err)
1260 return err;
1261
1262 return ih.len;
1263}
1264
1265static int fuse_read_forget(struct fuse_conn *fc, struct fuse_copy_state *cs,
1266 size_t nbytes)
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001267__releases(fc->iq.waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001268__releases(fc->lock)
1269{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001270 struct fuse_iqueue *fiq = &fc->iq;
1271
1272 if (fc->minor < 16 || fiq->forget_list_head.next->next == NULL)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001273 return fuse_read_single_forget(fc, cs, nbytes);
1274 else
1275 return fuse_read_batch_forget(fc, cs, nbytes);
1276}
1277
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001278/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001279 * Read a single request into the userspace filesystem's buffer. This
1280 * function waits until a request is available, then removes it from
1281 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001282 * no reply is needed (FORGET) or request has been aborted or there
1283 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001284 * request_end(). Otherwise add it to the processing list, and set
1285 * the 'sent' flag.
1286 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001287static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1288 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001289{
1290 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001291 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001292 struct fuse_req *req;
1293 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001294 unsigned reqsize;
1295
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001296 restart:
Miklos Szeredid7133112006-04-10 22:54:55 -07001297 spin_lock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001298 spin_lock(&fiq->waitq.lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001299 err = -EAGAIN;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001300 if ((file->f_flags & O_NONBLOCK) && fiq->connected &&
Miklos Szeredif88996a2015-07-01 16:26:01 +02001301 !request_pending(fiq))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001302 goto err_unlock;
1303
Miklos Szeredi334f4852005-09-09 13:10:27 -07001304 request_wait(fc);
1305 err = -ENODEV;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001306 if (!fiq->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001307 goto err_unlock;
1308 err = -ERESTARTSYS;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001309 if (!request_pending(fiq))
Miklos Szeredi334f4852005-09-09 13:10:27 -07001310 goto err_unlock;
1311
Miklos Szeredif88996a2015-07-01 16:26:01 +02001312 if (!list_empty(&fiq->interrupts)) {
1313 req = list_entry(fiq->interrupts.next, struct fuse_req,
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001314 intr_entry);
Miklos Szeredic3021622010-05-25 15:06:07 +02001315 return fuse_read_interrupt(fc, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001316 }
1317
Miklos Szeredif88996a2015-07-01 16:26:01 +02001318 if (forget_pending(fiq)) {
1319 if (list_empty(&fiq->pending) || fiq->forget_batch-- > 0)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001320 return fuse_read_forget(fc, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001321
Miklos Szeredif88996a2015-07-01 16:26:01 +02001322 if (fiq->forget_batch <= -8)
1323 fiq->forget_batch = 16;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001324 }
1325
Miklos Szeredif88996a2015-07-01 16:26:01 +02001326 req = list_entry(fiq->pending.next, struct fuse_req, list);
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001327 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredief759252015-07-01 16:26:02 +02001328 list_del_init(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001329 spin_unlock(&fiq->waitq.lock);
1330
Miklos Szeredief759252015-07-01 16:26:02 +02001331 list_add(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001332
1333 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001334 reqsize = in->h.len;
1335 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001336 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001337 req->out.h.error = -EIO;
1338 /* SETXATTR is special, since it may contain too large data */
1339 if (in->h.opcode == FUSE_SETXATTR)
1340 req->out.h.error = -E2BIG;
1341 request_end(fc, req);
1342 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001343 }
Miklos Szeredid7133112006-04-10 22:54:55 -07001344 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001345 cs->req = req;
1346 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001347 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001348 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001349 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001350 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001351 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001352 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001353 if (!fc->connected) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001354 request_end(fc, req);
1355 return -ENODEV;
1356 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001357 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001358 req->out.h.error = -EIO;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001359 request_end(fc, req);
1360 return err;
1361 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001362 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001363 request_end(fc, req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001364 } else {
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001365 list_move_tail(&req->list, &fc->processing);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +02001366 set_bit(FR_SENT, &req->flags);
1367 /* matches barrier in request_wait_answer() */
1368 smp_mb__after_atomic();
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001369 if (test_bit(FR_INTERRUPTED, &req->flags))
Miklos Szeredif88996a2015-07-01 16:26:01 +02001370 queue_interrupt(fiq, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001371 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001372 }
1373 return reqsize;
1374
1375 err_unlock:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001376 spin_unlock(&fiq->waitq.lock);
Miklos Szeredid7133112006-04-10 22:54:55 -07001377 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001378 return err;
1379}
1380
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001381static int fuse_dev_open(struct inode *inode, struct file *file)
1382{
1383 /*
1384 * The fuse device's file's private_data is used to hold
1385 * the fuse_conn(ection) when it is mounted, and is used to
1386 * keep track of whether the file has been mounted already.
1387 */
1388 file->private_data = NULL;
1389 return 0;
1390}
1391
Al Virofbdbacc2015-04-03 21:53:39 -04001392static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001393{
1394 struct fuse_copy_state cs;
1395 struct file *file = iocb->ki_filp;
1396 struct fuse_conn *fc = fuse_get_conn(file);
1397 if (!fc)
1398 return -EPERM;
1399
Al Virofbdbacc2015-04-03 21:53:39 -04001400 if (!iter_is_iovec(to))
1401 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001402
Miklos Szeredidc008092015-07-01 16:25:58 +02001403 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001404
1405 return fuse_dev_do_read(fc, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001406}
1407
Miklos Szeredic3021622010-05-25 15:06:07 +02001408static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1409 struct pipe_inode_info *pipe,
1410 size_t len, unsigned int flags)
1411{
1412 int ret;
1413 int page_nr = 0;
1414 int do_wakeup = 0;
1415 struct pipe_buffer *bufs;
1416 struct fuse_copy_state cs;
1417 struct fuse_conn *fc = fuse_get_conn(in);
1418 if (!fc)
1419 return -EPERM;
1420
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001421 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001422 if (!bufs)
1423 return -ENOMEM;
1424
Miklos Szeredidc008092015-07-01 16:25:58 +02001425 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001426 cs.pipebufs = bufs;
1427 cs.pipe = pipe;
1428 ret = fuse_dev_do_read(fc, in, &cs, len);
1429 if (ret < 0)
1430 goto out;
1431
1432 ret = 0;
1433 pipe_lock(pipe);
1434
1435 if (!pipe->readers) {
1436 send_sig(SIGPIPE, current, 0);
1437 if (!ret)
1438 ret = -EPIPE;
1439 goto out_unlock;
1440 }
1441
1442 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1443 ret = -EIO;
1444 goto out_unlock;
1445 }
1446
1447 while (page_nr < cs.nr_segs) {
1448 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1449 struct pipe_buffer *buf = pipe->bufs + newbuf;
1450
1451 buf->page = bufs[page_nr].page;
1452 buf->offset = bufs[page_nr].offset;
1453 buf->len = bufs[page_nr].len;
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001454 /*
1455 * Need to be careful about this. Having buf->ops in module
1456 * code can Oops if the buffer persists after module unload.
1457 */
1458 buf->ops = &nosteal_pipe_buf_ops;
Miklos Szeredic3021622010-05-25 15:06:07 +02001459
1460 pipe->nrbufs++;
1461 page_nr++;
1462 ret += buf->len;
1463
Al Viro6447a3c2013-03-21 11:01:38 -04001464 if (pipe->files)
Miklos Szeredic3021622010-05-25 15:06:07 +02001465 do_wakeup = 1;
1466 }
1467
1468out_unlock:
1469 pipe_unlock(pipe);
1470
1471 if (do_wakeup) {
1472 smp_mb();
1473 if (waitqueue_active(&pipe->wait))
1474 wake_up_interruptible(&pipe->wait);
1475 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1476 }
1477
1478out:
1479 for (; page_nr < cs.nr_segs; page_nr++)
1480 page_cache_release(bufs[page_nr].page);
1481
1482 kfree(bufs);
1483 return ret;
1484}
1485
Tejun Heo95668a62008-11-26 12:03:55 +01001486static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1487 struct fuse_copy_state *cs)
1488{
1489 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001490 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001491
1492 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001493 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001494
1495 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1496 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001497 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001498
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001499 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001500 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001501
1502err:
1503 fuse_copy_finish(cs);
1504 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001505}
1506
John Muir3b463ae2009-05-31 11:13:57 -04001507static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1508 struct fuse_copy_state *cs)
1509{
1510 struct fuse_notify_inval_inode_out outarg;
1511 int err = -EINVAL;
1512
1513 if (size != sizeof(outarg))
1514 goto err;
1515
1516 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1517 if (err)
1518 goto err;
1519 fuse_copy_finish(cs);
1520
1521 down_read(&fc->killsb);
1522 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001523 if (fc->sb) {
1524 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1525 outarg.off, outarg.len);
1526 }
John Muir3b463ae2009-05-31 11:13:57 -04001527 up_read(&fc->killsb);
1528 return err;
1529
1530err:
1531 fuse_copy_finish(cs);
1532 return err;
1533}
1534
1535static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1536 struct fuse_copy_state *cs)
1537{
1538 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001539 int err = -ENOMEM;
1540 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001541 struct qstr name;
1542
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001543 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1544 if (!buf)
1545 goto err;
1546
1547 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001548 if (size < sizeof(outarg))
1549 goto err;
1550
1551 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1552 if (err)
1553 goto err;
1554
1555 err = -ENAMETOOLONG;
1556 if (outarg.namelen > FUSE_NAME_MAX)
1557 goto err;
1558
Miklos Szeredic2183d12011-08-24 10:20:17 +02001559 err = -EINVAL;
1560 if (size != sizeof(outarg) + outarg.namelen + 1)
1561 goto err;
1562
John Muir3b463ae2009-05-31 11:13:57 -04001563 name.name = buf;
1564 name.len = outarg.namelen;
1565 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1566 if (err)
1567 goto err;
1568 fuse_copy_finish(cs);
1569 buf[outarg.namelen] = 0;
1570 name.hash = full_name_hash(name.name, name.len);
1571
1572 down_read(&fc->killsb);
1573 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001574 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001575 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1576 up_read(&fc->killsb);
1577 kfree(buf);
1578 return err;
1579
1580err:
1581 kfree(buf);
1582 fuse_copy_finish(cs);
1583 return err;
1584}
1585
1586static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1587 struct fuse_copy_state *cs)
1588{
1589 struct fuse_notify_delete_out outarg;
1590 int err = -ENOMEM;
1591 char *buf;
1592 struct qstr name;
1593
1594 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1595 if (!buf)
1596 goto err;
1597
1598 err = -EINVAL;
1599 if (size < sizeof(outarg))
1600 goto err;
1601
1602 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1603 if (err)
1604 goto err;
1605
1606 err = -ENAMETOOLONG;
1607 if (outarg.namelen > FUSE_NAME_MAX)
1608 goto err;
1609
1610 err = -EINVAL;
1611 if (size != sizeof(outarg) + outarg.namelen + 1)
1612 goto err;
1613
1614 name.name = buf;
1615 name.len = outarg.namelen;
1616 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1617 if (err)
1618 goto err;
1619 fuse_copy_finish(cs);
1620 buf[outarg.namelen] = 0;
1621 name.hash = full_name_hash(name.name, name.len);
1622
1623 down_read(&fc->killsb);
1624 err = -ENOENT;
1625 if (fc->sb)
1626 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1627 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001628 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001629 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001630 return err;
1631
1632err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001633 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001634 fuse_copy_finish(cs);
1635 return err;
1636}
1637
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001638static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1639 struct fuse_copy_state *cs)
1640{
1641 struct fuse_notify_store_out outarg;
1642 struct inode *inode;
1643 struct address_space *mapping;
1644 u64 nodeid;
1645 int err;
1646 pgoff_t index;
1647 unsigned int offset;
1648 unsigned int num;
1649 loff_t file_size;
1650 loff_t end;
1651
1652 err = -EINVAL;
1653 if (size < sizeof(outarg))
1654 goto out_finish;
1655
1656 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1657 if (err)
1658 goto out_finish;
1659
1660 err = -EINVAL;
1661 if (size - sizeof(outarg) != outarg.size)
1662 goto out_finish;
1663
1664 nodeid = outarg.nodeid;
1665
1666 down_read(&fc->killsb);
1667
1668 err = -ENOENT;
1669 if (!fc->sb)
1670 goto out_up_killsb;
1671
1672 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1673 if (!inode)
1674 goto out_up_killsb;
1675
1676 mapping = inode->i_mapping;
1677 index = outarg.offset >> PAGE_CACHE_SHIFT;
1678 offset = outarg.offset & ~PAGE_CACHE_MASK;
1679 file_size = i_size_read(inode);
1680 end = outarg.offset + outarg.size;
1681 if (end > file_size) {
1682 file_size = end;
1683 fuse_write_update_size(inode, file_size);
1684 }
1685
1686 num = outarg.size;
1687 while (num) {
1688 struct page *page;
1689 unsigned int this_num;
1690
1691 err = -ENOMEM;
1692 page = find_or_create_page(mapping, index,
1693 mapping_gfp_mask(mapping));
1694 if (!page)
1695 goto out_iput;
1696
1697 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1698 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001699 if (!err && offset == 0 &&
1700 (this_num == PAGE_CACHE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001701 SetPageUptodate(page);
1702 unlock_page(page);
1703 page_cache_release(page);
1704
1705 if (err)
1706 goto out_iput;
1707
1708 num -= this_num;
1709 offset = 0;
1710 index++;
1711 }
1712
1713 err = 0;
1714
1715out_iput:
1716 iput(inode);
1717out_up_killsb:
1718 up_read(&fc->killsb);
1719out_finish:
1720 fuse_copy_finish(cs);
1721 return err;
1722}
1723
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001724static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1725{
Mel Gormanb745bc82014-06-04 16:10:22 -07001726 release_pages(req->pages, req->num_pages, false);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001727}
1728
1729static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1730 struct fuse_notify_retrieve_out *outarg)
1731{
1732 int err;
1733 struct address_space *mapping = inode->i_mapping;
1734 struct fuse_req *req;
1735 pgoff_t index;
1736 loff_t file_size;
1737 unsigned int num;
1738 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001739 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001740 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001741
1742 offset = outarg->offset & ~PAGE_CACHE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001743 file_size = i_size_read(inode);
1744
1745 num = outarg->size;
1746 if (outarg->offset > file_size)
1747 num = 0;
1748 else if (outarg->offset + num > file_size)
1749 num = file_size - outarg->offset;
1750
1751 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1752 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1753
1754 req = fuse_get_req(fc, num_pages);
1755 if (IS_ERR(req))
1756 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001757
1758 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1759 req->in.h.nodeid = outarg->nodeid;
1760 req->in.numargs = 2;
1761 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001762 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001763 req->end = fuse_retrieve_end;
1764
1765 index = outarg->offset >> PAGE_CACHE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001766
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001767 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001768 struct page *page;
1769 unsigned int this_num;
1770
1771 page = find_get_page(mapping, index);
1772 if (!page)
1773 break;
1774
1775 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1776 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001777 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001778 req->num_pages++;
1779
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001780 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001781 num -= this_num;
1782 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001783 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001784 }
1785 req->misc.retrieve_in.offset = outarg->offset;
1786 req->misc.retrieve_in.size = total_len;
1787 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1788 req->in.args[0].value = &req->misc.retrieve_in;
1789 req->in.args[1].size = total_len;
1790
1791 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1792 if (err)
1793 fuse_retrieve_end(fc, req);
1794
1795 return err;
1796}
1797
1798static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1799 struct fuse_copy_state *cs)
1800{
1801 struct fuse_notify_retrieve_out outarg;
1802 struct inode *inode;
1803 int err;
1804
1805 err = -EINVAL;
1806 if (size != sizeof(outarg))
1807 goto copy_finish;
1808
1809 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1810 if (err)
1811 goto copy_finish;
1812
1813 fuse_copy_finish(cs);
1814
1815 down_read(&fc->killsb);
1816 err = -ENOENT;
1817 if (fc->sb) {
1818 u64 nodeid = outarg.nodeid;
1819
1820 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1821 if (inode) {
1822 err = fuse_retrieve(fc, inode, &outarg);
1823 iput(inode);
1824 }
1825 }
1826 up_read(&fc->killsb);
1827
1828 return err;
1829
1830copy_finish:
1831 fuse_copy_finish(cs);
1832 return err;
1833}
1834
Tejun Heo85993962008-11-26 12:03:55 +01001835static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1836 unsigned int size, struct fuse_copy_state *cs)
1837{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001838 /* Don't try to move pages (yet) */
1839 cs->move_pages = 0;
1840
Tejun Heo85993962008-11-26 12:03:55 +01001841 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001842 case FUSE_NOTIFY_POLL:
1843 return fuse_notify_poll(fc, size, cs);
1844
John Muir3b463ae2009-05-31 11:13:57 -04001845 case FUSE_NOTIFY_INVAL_INODE:
1846 return fuse_notify_inval_inode(fc, size, cs);
1847
1848 case FUSE_NOTIFY_INVAL_ENTRY:
1849 return fuse_notify_inval_entry(fc, size, cs);
1850
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001851 case FUSE_NOTIFY_STORE:
1852 return fuse_notify_store(fc, size, cs);
1853
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001854 case FUSE_NOTIFY_RETRIEVE:
1855 return fuse_notify_retrieve(fc, size, cs);
1856
John Muir451d0f52011-12-06 21:50:06 +01001857 case FUSE_NOTIFY_DELETE:
1858 return fuse_notify_delete(fc, size, cs);
1859
Tejun Heo85993962008-11-26 12:03:55 +01001860 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001861 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001862 return -EINVAL;
1863 }
1864}
1865
Miklos Szeredi334f4852005-09-09 13:10:27 -07001866/* Look up request on processing list by unique ID */
1867static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
1868{
Dong Fang05726ac2013-07-30 22:50:01 -04001869 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001870
Dong Fang05726ac2013-07-30 22:50:01 -04001871 list_for_each_entry(req, &fc->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001872 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001873 return req;
1874 }
1875 return NULL;
1876}
1877
1878static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1879 unsigned nbytes)
1880{
1881 unsigned reqsize = sizeof(struct fuse_out_header);
1882
1883 if (out->h.error)
1884 return nbytes != reqsize ? -EINVAL : 0;
1885
1886 reqsize += len_args(out->numargs, out->args);
1887
1888 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1889 return -EINVAL;
1890 else if (reqsize > nbytes) {
1891 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1892 unsigned diffsize = reqsize - nbytes;
1893 if (diffsize > lastarg->size)
1894 return -EINVAL;
1895 lastarg->size -= diffsize;
1896 }
1897 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1898 out->page_zeroing);
1899}
1900
1901/*
1902 * Write a single reply to a request. First the header is copied from
1903 * the write buffer. The request is then searched on the processing
1904 * list by the unique ID found in the header. If found, then remove
1905 * it from the list and copy the rest of the buffer to the request.
1906 * The request is finished by calling request_end()
1907 */
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001908static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1909 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001910{
1911 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001912 struct fuse_req *req;
1913 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001914
Miklos Szeredi334f4852005-09-09 13:10:27 -07001915 if (nbytes < sizeof(struct fuse_out_header))
1916 return -EINVAL;
1917
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001918 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001919 if (err)
1920 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001921
Miklos Szeredi334f4852005-09-09 13:10:27 -07001922 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001923 if (oh.len != nbytes)
1924 goto err_finish;
1925
1926 /*
1927 * Zero oh.unique indicates unsolicited notification message
1928 * and error contains notification code.
1929 */
1930 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001931 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001932 return err ? err : nbytes;
1933 }
1934
1935 err = -EINVAL;
1936 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001937 goto err_finish;
1938
Miklos Szeredid7133112006-04-10 22:54:55 -07001939 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001940 err = -ENOENT;
1941 if (!fc->connected)
1942 goto err_unlock;
1943
Miklos Szeredi334f4852005-09-09 13:10:27 -07001944 req = request_find(fc, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001945 if (!req)
1946 goto err_unlock;
1947
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001948 /* Is it an interrupt reply? */
1949 if (req->intr_unique == oh.unique) {
1950 err = -EINVAL;
1951 if (nbytes != sizeof(struct fuse_out_header))
1952 goto err_unlock;
1953
1954 if (oh.error == -ENOSYS)
1955 fc->no_interrupt = 1;
1956 else if (oh.error == -EAGAIN)
Miklos Szeredif88996a2015-07-01 16:26:01 +02001957 queue_interrupt(&fc->iq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001958
1959 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001960 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001961 return nbytes;
1962 }
1963
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001964 clear_bit(FR_SENT, &req->flags);
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001965 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001966 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001967 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001968 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001969 if (!req->out.page_replace)
1970 cs->move_pages = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -07001971 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001972
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001973 err = copy_out_args(cs, &req->out, nbytes);
1974 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001975
Miklos Szeredid7133112006-04-10 22:54:55 -07001976 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001977 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001978 if (!fc->connected)
1979 err = -ENOENT;
1980 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001981 req->out.h.error = -EIO;
1982 request_end(fc, req);
1983
1984 return err ? err : nbytes;
1985
1986 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001987 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001988 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001989 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001990 return err;
1991}
1992
Al Virofbdbacc2015-04-03 21:53:39 -04001993static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001994{
1995 struct fuse_copy_state cs;
1996 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1997 if (!fc)
1998 return -EPERM;
1999
Al Virofbdbacc2015-04-03 21:53:39 -04002000 if (!iter_is_iovec(from))
2001 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002002
Miklos Szeredidc008092015-07-01 16:25:58 +02002003 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04002004
2005 return fuse_dev_do_write(fc, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002006}
2007
2008static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
2009 struct file *out, loff_t *ppos,
2010 size_t len, unsigned int flags)
2011{
2012 unsigned nbuf;
2013 unsigned idx;
2014 struct pipe_buffer *bufs;
2015 struct fuse_copy_state cs;
2016 struct fuse_conn *fc;
2017 size_t rem;
2018 ssize_t ret;
2019
2020 fc = fuse_get_conn(out);
2021 if (!fc)
2022 return -EPERM;
2023
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01002024 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002025 if (!bufs)
2026 return -ENOMEM;
2027
2028 pipe_lock(pipe);
2029 nbuf = 0;
2030 rem = 0;
2031 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
2032 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
2033
2034 ret = -EINVAL;
2035 if (rem < len) {
2036 pipe_unlock(pipe);
2037 goto out;
2038 }
2039
2040 rem = len;
2041 while (rem) {
2042 struct pipe_buffer *ibuf;
2043 struct pipe_buffer *obuf;
2044
2045 BUG_ON(nbuf >= pipe->buffers);
2046 BUG_ON(!pipe->nrbufs);
2047 ibuf = &pipe->bufs[pipe->curbuf];
2048 obuf = &bufs[nbuf];
2049
2050 if (rem >= ibuf->len) {
2051 *obuf = *ibuf;
2052 ibuf->ops = NULL;
2053 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
2054 pipe->nrbufs--;
2055 } else {
2056 ibuf->ops->get(pipe, ibuf);
2057 *obuf = *ibuf;
2058 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2059 obuf->len = rem;
2060 ibuf->offset += obuf->len;
2061 ibuf->len -= obuf->len;
2062 }
2063 nbuf++;
2064 rem -= obuf->len;
2065 }
2066 pipe_unlock(pipe);
2067
Miklos Szeredidc008092015-07-01 16:25:58 +02002068 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002069 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04002070 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002071 cs.pipe = pipe;
2072
Miklos Szeredice534fb2010-05-25 15:06:07 +02002073 if (flags & SPLICE_F_MOVE)
2074 cs.move_pages = 1;
2075
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002076 ret = fuse_dev_do_write(fc, &cs, len);
2077
2078 for (idx = 0; idx < nbuf; idx++) {
2079 struct pipe_buffer *buf = &bufs[idx];
2080 buf->ops->release(pipe, buf);
2081 }
2082out:
2083 kfree(bufs);
2084 return ret;
2085}
2086
Miklos Szeredi334f4852005-09-09 13:10:27 -07002087static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2088{
Miklos Szeredi334f4852005-09-09 13:10:27 -07002089 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002090 struct fuse_iqueue *fiq;
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002091 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002092 if (!fc)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002093 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002094
Miklos Szeredif88996a2015-07-01 16:26:01 +02002095 fiq = &fc->iq;
2096 poll_wait(file, &fiq->waitq, wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002097
Miklos Szeredid7133112006-04-10 22:54:55 -07002098 spin_lock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002099 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +02002100 if (!fiq->connected)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002101 mask = POLLERR;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002102 else if (request_pending(fiq))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002103 mask |= POLLIN | POLLRDNORM;
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002104 spin_unlock(&fiq->waitq.lock);
Miklos Szeredid7133112006-04-10 22:54:55 -07002105 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002106
2107 return mask;
2108}
2109
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002110/*
2111 * Abort all requests on the given list (pending or processing)
2112 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002113 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002114 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002115static void end_requests(struct fuse_conn *fc, struct list_head *head)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02002116__releases(fc->lock)
2117__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002118{
2119 while (!list_empty(head)) {
2120 struct fuse_req *req;
2121 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002122 req->out.h.error = -ECONNABORTED;
Miklos Szeredi33e14b42015-07-01 16:26:01 +02002123 clear_bit(FR_PENDING, &req->flags);
2124 clear_bit(FR_SENT, &req->flags);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002125 request_end(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07002126 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002127 }
2128}
2129
Bryan Green357ccf22011-03-01 16:43:52 -08002130static void end_polls(struct fuse_conn *fc)
2131{
2132 struct rb_node *p;
2133
2134 p = rb_first(&fc->polled_files);
2135
2136 while (p) {
2137 struct fuse_file *ff;
2138 ff = rb_entry(p, struct fuse_file, polled_node);
2139 wake_up_interruptible_all(&ff->poll_wait);
2140
2141 p = rb_next(p);
2142 }
2143}
2144
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002145/*
2146 * Abort all requests.
2147 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002148 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2149 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002150 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002151 * The same effect is usually achievable through killing the filesystem daemon
2152 * and all users of the filesystem. The exception is the combination of an
2153 * asynchronous request and the tricky deadlock (see
2154 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002155 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002156 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2157 * requests, they should be finished off immediately. Locked requests will be
2158 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2159 * requests. It is possible that some request will finish before we can. This
2160 * is OK, the request will in that case be removed from the list before we touch
2161 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002162 */
2163void fuse_abort_conn(struct fuse_conn *fc)
2164{
Miklos Szeredif88996a2015-07-01 16:26:01 +02002165 struct fuse_iqueue *fiq = &fc->iq;
2166
Miklos Szeredid7133112006-04-10 22:54:55 -07002167 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002168 if (fc->connected) {
Miklos Szeredib716d422015-07-01 16:25:59 +02002169 struct fuse_req *req, *next;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002170 LIST_HEAD(to_end1);
2171 LIST_HEAD(to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002172
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002173 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002174 fc->blocked = 0;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002175 fuse_set_initialized(fc);
Miklos Szeredib716d422015-07-01 16:25:59 +02002176 list_for_each_entry_safe(req, next, &fc->io, list) {
2177 req->out.h.error = -ECONNABORTED;
2178 spin_lock(&req->waitq.lock);
2179 set_bit(FR_ABORTED, &req->flags);
2180 if (!test_bit(FR_LOCKED, &req->flags))
Miklos Szeredi41f98272015-07-01 16:25:59 +02002181 list_move(&req->list, &to_end1);
Miklos Szeredib716d422015-07-01 16:25:59 +02002182 spin_unlock(&req->waitq.lock);
2183 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002184 fc->max_background = UINT_MAX;
2185 flush_bg_queue(fc);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002186
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002187 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002188 fiq->connected = 0;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002189 list_splice_init(&fiq->pending, &to_end2);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002190 while (forget_pending(fiq))
2191 kfree(dequeue_forget(fiq, 1, NULL));
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002192 wake_up_all_locked(&fiq->waitq);
2193 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002194 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
2195
Miklos Szeredi41f98272015-07-01 16:25:59 +02002196 list_splice_init(&fc->processing, &to_end2);
2197 while (!list_empty(&to_end1)) {
2198 req = list_first_entry(&to_end1, struct fuse_req, list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002199 __fuse_get_request(req);
2200 request_end(fc, req);
2201 spin_lock(&fc->lock);
2202 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002203 end_requests(fc, &to_end2);
Bryan Green357ccf22011-03-01 16:43:52 -08002204 end_polls(fc);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002205 wake_up_all(&fc->blocked_waitq);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002206 }
Miklos Szeredid7133112006-04-10 22:54:55 -07002207 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002208}
Tejun Heo08cbf542009-04-14 10:54:53 +09002209EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002210
Tejun Heo08cbf542009-04-14 10:54:53 +09002211int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002212{
Miklos Szeredi0720b312006-04-10 22:54:55 -07002213 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002214 if (fc) {
Miklos Szerediccd0a0b2015-07-01 16:25:57 +02002215 WARN_ON(!list_empty(&fc->io));
Miklos Szeredif88996a2015-07-01 16:26:01 +02002216 WARN_ON(fc->iq.fasync != NULL);
Miklos Szerediccd0a0b2015-07-01 16:25:57 +02002217 fuse_abort_conn(fc);
Miklos Szeredibafa9652006-06-25 05:48:51 -07002218 fuse_conn_put(fc);
Jeff Dike385a17b2006-04-10 22:54:52 -07002219 }
Miklos Szeredif543f252006-01-16 22:14:35 -08002220
Miklos Szeredi334f4852005-09-09 13:10:27 -07002221 return 0;
2222}
Tejun Heo08cbf542009-04-14 10:54:53 +09002223EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002224
Jeff Dike385a17b2006-04-10 22:54:52 -07002225static int fuse_dev_fasync(int fd, struct file *file, int on)
2226{
2227 struct fuse_conn *fc = fuse_get_conn(file);
2228 if (!fc)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002229 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002230
2231 /* No locking - fasync_helper does its own locking */
Miklos Szeredif88996a2015-07-01 16:26:01 +02002232 return fasync_helper(fd, file, on, &fc->iq.fasync);
Jeff Dike385a17b2006-04-10 22:54:52 -07002233}
2234
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002235const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002236 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002237 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002238 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002239 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002240 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002241 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002242 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002243 .poll = fuse_dev_poll,
2244 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002245 .fasync = fuse_dev_fasync,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002246};
Tejun Heo08cbf542009-04-14 10:54:53 +09002247EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002248
2249static struct miscdevice fuse_miscdevice = {
2250 .minor = FUSE_MINOR,
2251 .name = "fuse",
2252 .fops = &fuse_dev_operations,
2253};
2254
2255int __init fuse_dev_init(void)
2256{
2257 int err = -ENOMEM;
2258 fuse_req_cachep = kmem_cache_create("fuse_request",
2259 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002260 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002261 if (!fuse_req_cachep)
2262 goto out;
2263
2264 err = misc_register(&fuse_miscdevice);
2265 if (err)
2266 goto out_cache_clean;
2267
2268 return 0;
2269
2270 out_cache_clean:
2271 kmem_cache_destroy(fuse_req_cachep);
2272 out:
2273 return err;
2274}
2275
2276void fuse_dev_cleanup(void)
2277{
2278 misc_deregister(&fuse_miscdevice);
2279 kmem_cache_destroy(fuse_req_cachep);
2280}