blob: 65ad9b1e055de4df3b2f17ddf20dbc011ca1b3e9 [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 Szeredif88996a2015-07-01 16:26:01 +0200426 list_add_tail(&req->intr_entry, &fiq->interrupts);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200427 wake_up_locked(&fiq->waitq);
428 spin_unlock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200429 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700430}
431
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700432static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700433{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200434 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic4775262015-07-01 16:26:00 +0200435 int err;
436
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700437 if (!fc->no_interrupt) {
438 /* Any signal may interrupt this */
Miklos Szeredic4775262015-07-01 16:26:00 +0200439 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200440 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200441 if (!err)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700442 return;
443
Miklos Szeredic4775262015-07-01 16:26:00 +0200444 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200445 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200446 if (test_bit(FR_SENT, &req->flags))
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200447 queue_interrupt(fiq, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200448 spin_unlock(&fc->lock);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700449 }
450
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200451 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700452 sigset_t oldset;
453
454 /* Only fatal signals may interrupt this */
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700455 block_sigs(&oldset);
Miklos Szeredic4775262015-07-01 16:26:00 +0200456 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200457 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700458 restore_sigs(&oldset);
Miklos Szeredia131de02007-10-16 23:31:04 -0700459
Miklos Szeredic4775262015-07-01 16:26:00 +0200460 if (!err)
Miklos Szeredia131de02007-10-16 23:31:04 -0700461 return;
462
Miklos Szeredic4775262015-07-01 16:26:00 +0200463 spin_lock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200464 spin_lock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700465 /* Request is not yet in userspace, bail out */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200466 if (test_bit(FR_PENDING, &req->flags)) {
Miklos Szeredia131de02007-10-16 23:31:04 -0700467 list_del(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200468 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic4775262015-07-01 16:26:00 +0200469 spin_unlock(&fc->lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700470 __fuse_put_request(req);
471 req->out.h.error = -EINTR;
472 return;
473 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200474 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic4775262015-07-01 16:26:00 +0200475 spin_unlock(&fc->lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700476 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700477
Miklos Szeredia131de02007-10-16 23:31:04 -0700478 /*
479 * Either request is already in userspace, or it was forced.
480 * Wait it out.
481 */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200482 wait_event(req->waitq, test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi334f4852005-09-09 13:10:27 -0700483}
484
Eric Wong6a4e9222013-02-04 13:04:44 +0000485static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700486{
Miklos Szeredie16714d2015-07-01 16:26:01 +0200487 struct fuse_iqueue *fiq = &fc->iq;
488
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200489 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredid7133112006-04-10 22:54:55 -0700490 spin_lock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200491 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200492 if (!fiq->connected) {
Miklos Szeredic4775262015-07-01 16:26:00 +0200493 spin_unlock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200494 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700495 req->out.h.error = -ENOTCONN;
Miklos Szeredic4775262015-07-01 16:26:00 +0200496 } else {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200497 req->in.h.unique = fuse_get_unique(fiq);
498 queue_request(fiq, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700499 /* acquire extra reference, since request is still needed
500 after request_end() */
501 __fuse_get_request(req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200502 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic4775262015-07-01 16:26:00 +0200503 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700504
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700505 request_wait_answer(fc, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200506 /* Pairs with smp_wmb() in request_end() */
507 smp_rmb();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700508 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700509}
Eric Wong6a4e9222013-02-04 13:04:44 +0000510
511void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
512{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200513 __set_bit(FR_ISREPLY, &req->flags);
514 if (!test_bit(FR_WAITING, &req->flags)) {
515 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200516 atomic_inc(&fc->num_waiting);
517 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000518 __fuse_request_send(fc, req);
519}
Tejun Heo08cbf542009-04-14 10:54:53 +0900520EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700521
Miklos Szeredi21f62172015-01-06 10:45:35 +0100522static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
523{
524 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
525 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
526
527 if (fc->minor < 9) {
528 switch (args->in.h.opcode) {
529 case FUSE_LOOKUP:
530 case FUSE_CREATE:
531 case FUSE_MKNOD:
532 case FUSE_MKDIR:
533 case FUSE_SYMLINK:
534 case FUSE_LINK:
535 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
536 break;
537 case FUSE_GETATTR:
538 case FUSE_SETATTR:
539 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
540 break;
541 }
542 }
543 if (fc->minor < 12) {
544 switch (args->in.h.opcode) {
545 case FUSE_CREATE:
546 args->in.args[0].size = sizeof(struct fuse_open_in);
547 break;
548 case FUSE_MKNOD:
549 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
550 break;
551 }
552 }
553}
554
Miklos Szeredi70781872014-12-12 09:49:05 +0100555ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
556{
557 struct fuse_req *req;
558 ssize_t ret;
559
560 req = fuse_get_req(fc, 0);
561 if (IS_ERR(req))
562 return PTR_ERR(req);
563
Miklos Szeredi21f62172015-01-06 10:45:35 +0100564 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
565 fuse_adjust_compat(fc, args);
566
Miklos Szeredi70781872014-12-12 09:49:05 +0100567 req->in.h.opcode = args->in.h.opcode;
568 req->in.h.nodeid = args->in.h.nodeid;
569 req->in.numargs = args->in.numargs;
570 memcpy(req->in.args, args->in.args,
571 args->in.numargs * sizeof(struct fuse_in_arg));
572 req->out.argvar = args->out.argvar;
573 req->out.numargs = args->out.numargs;
574 memcpy(req->out.args, args->out.args,
575 args->out.numargs * sizeof(struct fuse_arg));
576 fuse_request_send(fc, req);
577 ret = req->out.h.error;
578 if (!ret && args->out.argvar) {
579 BUG_ON(args->out.numargs != 1);
580 ret = req->out.args[0].size;
581 }
582 fuse_put_request(fc, req);
583
584 return ret;
585}
586
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200587/*
588 * Called under fc->lock
589 *
590 * fc->connected must have been checked previously
591 */
592void fuse_request_send_background_locked(struct fuse_conn *fc,
593 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800594{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200595 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
596 if (!test_bit(FR_WAITING, &req->flags)) {
597 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200598 atomic_inc(&fc->num_waiting);
599 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200600 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800601 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700602 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800603 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700604 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900605 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200606 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
607 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800608 }
609 list_add_tail(&req->list, &fc->bg_queue);
610 flush_bg_queue(fc);
611}
612
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200613void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700614{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200615 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700616 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700617 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200618 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700619 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700620 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200621 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700622 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200623 req->end(fc, req);
624 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700625 }
626}
Tejun Heo08cbf542009-04-14 10:54:53 +0900627EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700628
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200629static int fuse_request_send_notify_reply(struct fuse_conn *fc,
630 struct fuse_req *req, u64 unique)
631{
632 int err = -ENODEV;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200633 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200634
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200635 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200636 req->in.h.unique = unique;
637 spin_lock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200638 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200639 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200640 queue_request(fiq, req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200641 err = 0;
642 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200643 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200644 spin_unlock(&fc->lock);
645
646 return err;
647}
648
Anand V. Avati0b05b182012-08-19 08:53:23 -0400649void fuse_force_forget(struct file *file, u64 nodeid)
650{
Al Viro6131ffa2013-02-27 16:59:05 -0500651 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400652 struct fuse_conn *fc = get_fuse_conn(inode);
653 struct fuse_req *req;
654 struct fuse_forget_in inarg;
655
656 memset(&inarg, 0, sizeof(inarg));
657 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400658 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400659 req->in.h.opcode = FUSE_FORGET;
660 req->in.h.nodeid = nodeid;
661 req->in.numargs = 1;
662 req->in.args[0].size = sizeof(inarg);
663 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200664 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000665 __fuse_request_send(fc, req);
666 /* ignore errors */
667 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400668}
669
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700670/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700671 * Lock the request. Up to the next unlock_request() there mustn't be
672 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700673 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700674 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200675static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700676{
677 int err = 0;
678 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200679 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200680 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700681 err = -ENOENT;
682 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200683 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200684 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700685 }
686 return err;
687}
688
689/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200690 * Unlock request. If it was aborted while locked, caller is responsible
691 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700692 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200693static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700694{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200695 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700696 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200697 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200698 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200699 err = -ENOENT;
700 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200701 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200702 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700703 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200704 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700705}
706
707struct fuse_copy_state {
708 int write;
709 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400710 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200711 struct pipe_buffer *pipebufs;
712 struct pipe_buffer *currbuf;
713 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700714 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700715 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700716 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200717 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200718 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700719};
720
Miklos Szeredidc008092015-07-01 16:25:58 +0200721static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400722 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700723{
724 memset(cs, 0, sizeof(*cs));
725 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400726 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700727}
728
729/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800730static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700731{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200732 if (cs->currbuf) {
733 struct pipe_buffer *buf = cs->currbuf;
734
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200735 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200736 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200737 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200738 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700739 if (cs->write) {
740 flush_dcache_page(cs->pg);
741 set_page_dirty_lock(cs->pg);
742 }
743 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700744 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200745 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700746}
747
748/*
749 * Get another pagefull of userspace buffer, and map it to kernel
750 * address space, and lock request
751 */
752static int fuse_copy_fill(struct fuse_copy_state *cs)
753{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200754 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700755 int err;
756
Miklos Szeredidc008092015-07-01 16:25:58 +0200757 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200758 if (err)
759 return err;
760
Miklos Szeredi334f4852005-09-09 13:10:27 -0700761 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200762 if (cs->pipebufs) {
763 struct pipe_buffer *buf = cs->pipebufs;
764
Miklos Szeredic3021622010-05-25 15:06:07 +0200765 if (!cs->write) {
766 err = buf->ops->confirm(cs->pipe, buf);
767 if (err)
768 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200769
Miklos Szeredic3021622010-05-25 15:06:07 +0200770 BUG_ON(!cs->nr_segs);
771 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200772 cs->pg = buf->page;
773 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200774 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200775 cs->pipebufs++;
776 cs->nr_segs--;
777 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200778 if (cs->nr_segs == cs->pipe->buffers)
779 return -EIO;
780
781 page = alloc_page(GFP_HIGHUSER);
782 if (!page)
783 return -ENOMEM;
784
785 buf->page = page;
786 buf->offset = 0;
787 buf->len = 0;
788
789 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200790 cs->pg = page;
791 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200792 cs->len = PAGE_SIZE;
793 cs->pipebufs++;
794 cs->nr_segs++;
795 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200796 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400797 size_t off;
798 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200799 if (err < 0)
800 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400801 BUG_ON(!err);
802 cs->len = err;
803 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200804 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400805 cs->offset = off;
806 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700807 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700808
Miklos Szeredidc008092015-07-01 16:25:58 +0200809 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700810}
811
812/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800813static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700814{
815 unsigned ncpy = min(*size, cs->len);
816 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200817 void *pgaddr = kmap_atomic(cs->pg);
818 void *buf = pgaddr + cs->offset;
819
Miklos Szeredi334f4852005-09-09 13:10:27 -0700820 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200821 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700822 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200823 memcpy(*val, buf, ncpy);
824
825 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700826 *val += ncpy;
827 }
828 *size -= ncpy;
829 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200830 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700831 return ncpy;
832}
833
Miklos Szeredice534fb2010-05-25 15:06:07 +0200834static int fuse_check_page(struct page *page)
835{
836 if (page_mapcount(page) ||
837 page->mapping != NULL ||
838 page_count(page) != 1 ||
839 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
840 ~(1 << PG_locked |
841 1 << PG_referenced |
842 1 << PG_uptodate |
843 1 << PG_lru |
844 1 << PG_active |
845 1 << PG_reclaim))) {
846 printk(KERN_WARNING "fuse: trying to steal weird page\n");
847 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);
848 return 1;
849 }
850 return 0;
851}
852
853static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
854{
855 int err;
856 struct page *oldpage = *pagep;
857 struct page *newpage;
858 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200859
Miklos Szeredidc008092015-07-01 16:25:58 +0200860 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200861 if (err)
862 return err;
863
Miklos Szeredice534fb2010-05-25 15:06:07 +0200864 fuse_copy_finish(cs);
865
866 err = buf->ops->confirm(cs->pipe, buf);
867 if (err)
868 return err;
869
870 BUG_ON(!cs->nr_segs);
871 cs->currbuf = buf;
872 cs->len = buf->len;
873 cs->pipebufs++;
874 cs->nr_segs--;
875
876 if (cs->len != PAGE_SIZE)
877 goto out_fallback;
878
879 if (buf->ops->steal(cs->pipe, buf) != 0)
880 goto out_fallback;
881
882 newpage = buf->page;
883
Miklos Szerediaa991b32015-02-26 11:45:47 +0100884 if (!PageUptodate(newpage))
885 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200886
887 ClearPageMappedToDisk(newpage);
888
889 if (fuse_check_page(newpage) != 0)
890 goto out_fallback_unlock;
891
Miklos Szeredice534fb2010-05-25 15:06:07 +0200892 /*
893 * This is a new and locked page, it shouldn't be mapped or
894 * have any special flags on it
895 */
896 if (WARN_ON(page_mapped(oldpage)))
897 goto out_fallback_unlock;
898 if (WARN_ON(page_has_private(oldpage)))
899 goto out_fallback_unlock;
900 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
901 goto out_fallback_unlock;
902 if (WARN_ON(PageMlocked(oldpage)))
903 goto out_fallback_unlock;
904
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700905 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200906 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700907 unlock_page(newpage);
908 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200909 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700910
Miklos Szeredice534fb2010-05-25 15:06:07 +0200911 page_cache_get(newpage);
912
913 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
914 lru_cache_add_file(newpage);
915
916 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200917 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200918 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200919 err = -ENOENT;
920 else
921 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200922 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200923
924 if (err) {
925 unlock_page(newpage);
926 page_cache_release(newpage);
927 return err;
928 }
929
930 unlock_page(oldpage);
931 page_cache_release(oldpage);
932 cs->len = 0;
933
934 return 0;
935
936out_fallback_unlock:
937 unlock_page(newpage);
938out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200939 cs->pg = buf->page;
940 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200941
Miklos Szeredidc008092015-07-01 16:25:58 +0200942 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200943 if (err)
944 return err;
945
946 return 1;
947}
948
Miklos Szeredic3021622010-05-25 15:06:07 +0200949static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
950 unsigned offset, unsigned count)
951{
952 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200953 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200954
955 if (cs->nr_segs == cs->pipe->buffers)
956 return -EIO;
957
Miklos Szeredidc008092015-07-01 16:25:58 +0200958 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200959 if (err)
960 return err;
961
Miklos Szeredic3021622010-05-25 15:06:07 +0200962 fuse_copy_finish(cs);
963
964 buf = cs->pipebufs;
965 page_cache_get(page);
966 buf->page = page;
967 buf->offset = offset;
968 buf->len = count;
969
970 cs->pipebufs++;
971 cs->nr_segs++;
972 cs->len = 0;
973
974 return 0;
975}
976
Miklos Szeredi334f4852005-09-09 13:10:27 -0700977/*
978 * Copy a page in the request to/from the userspace buffer. Must be
979 * done atomically
980 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200981static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800982 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700983{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200984 int err;
985 struct page *page = *pagep;
986
Miklos Szeredib6777c42010-10-26 14:22:27 -0700987 if (page && zeroing && count < PAGE_SIZE)
988 clear_highpage(page);
989
Miklos Szeredi334f4852005-09-09 13:10:27 -0700990 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200991 if (cs->write && cs->pipebufs && page) {
992 return fuse_ref_page(cs, page, offset, count);
993 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200994 if (cs->move_pages && page &&
995 offset == 0 && count == PAGE_SIZE) {
996 err = fuse_try_move_page(cs, pagep);
997 if (err <= 0)
998 return err;
999 } else {
1000 err = fuse_copy_fill(cs);
1001 if (err)
1002 return err;
1003 }
Miklos Szeredi1729a162008-11-26 12:03:54 +01001004 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001005 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +08001006 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001007 void *buf = mapaddr + offset;
1008 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +08001009 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001010 } else
1011 offset += fuse_copy_do(cs, NULL, &count);
1012 }
1013 if (page && !cs->write)
1014 flush_dcache_page(page);
1015 return 0;
1016}
1017
1018/* Copy pages in the request to/from userspace buffer */
1019static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
1020 int zeroing)
1021{
1022 unsigned i;
1023 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001024
1025 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +02001026 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001027 unsigned offset = req->page_descs[i].offset;
1028 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001029
1030 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1031 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001032 if (err)
1033 return err;
1034
1035 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001036 }
1037 return 0;
1038}
1039
1040/* Copy a single argument in the request to/from userspace buffer */
1041static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1042{
1043 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001044 if (!cs->len) {
1045 int err = fuse_copy_fill(cs);
1046 if (err)
1047 return err;
1048 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001049 fuse_copy_do(cs, &val, &size);
1050 }
1051 return 0;
1052}
1053
1054/* Copy request arguments to/from userspace buffer */
1055static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1056 unsigned argpages, struct fuse_arg *args,
1057 int zeroing)
1058{
1059 int err = 0;
1060 unsigned i;
1061
1062 for (i = 0; !err && i < numargs; i++) {
1063 struct fuse_arg *arg = &args[i];
1064 if (i == numargs - 1 && argpages)
1065 err = fuse_copy_pages(cs, arg->size, zeroing);
1066 else
1067 err = fuse_copy_one(cs, arg->value, arg->size);
1068 }
1069 return err;
1070}
1071
Miklos Szeredif88996a2015-07-01 16:26:01 +02001072static int forget_pending(struct fuse_iqueue *fiq)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001073{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001074 return fiq->forget_list_head.next != NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001075}
1076
Miklos Szeredif88996a2015-07-01 16:26:01 +02001077static int request_pending(struct fuse_iqueue *fiq)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001078{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001079 return !list_empty(&fiq->pending) || !list_empty(&fiq->interrupts) ||
1080 forget_pending(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001081}
1082
Miklos Szeredi334f4852005-09-09 13:10:27 -07001083/* Wait until a request is available on the pending list */
1084static void request_wait(struct fuse_conn *fc)
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001085__releases(fc->iq.waitq.lock)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001086__releases(fc->lock)
1087__acquires(fc->lock)
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001088__acquires(fc->iq.waitq.lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001089{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001090 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001091 DECLARE_WAITQUEUE(wait, current);
1092
Miklos Szeredif88996a2015-07-01 16:26:01 +02001093 add_wait_queue_exclusive(&fiq->waitq, &wait);
Miklos Szeredie16714d2015-07-01 16:26:01 +02001094 while (fiq->connected && !request_pending(fiq)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001095 set_current_state(TASK_INTERRUPTIBLE);
1096 if (signal_pending(current))
1097 break;
1098
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001099 spin_unlock(&fiq->waitq.lock);
Miklos Szeredid7133112006-04-10 22:54:55 -07001100 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001101 schedule();
Miklos Szeredid7133112006-04-10 22:54:55 -07001102 spin_lock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001103 spin_lock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001104 }
1105 set_current_state(TASK_RUNNING);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001106 remove_wait_queue(&fiq->waitq, &wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001107}
1108
1109/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001110 * Transfer an interrupt request to userspace
1111 *
1112 * Unlike other requests this is assembled on demand, without a need
1113 * to allocate a separate fuse_req structure.
1114 *
1115 * Called with fc->lock held, releases it
1116 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001117static int fuse_read_interrupt(struct fuse_conn *fc, struct fuse_copy_state *cs,
1118 size_t nbytes, struct fuse_req *req)
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001119__releases(fc->iq.waitq.lock)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02001120__releases(fc->lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001121{
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001122 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001123 struct fuse_in_header ih;
1124 struct fuse_interrupt_in arg;
1125 unsigned reqsize = sizeof(ih) + sizeof(arg);
1126 int err;
1127
1128 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001129 req->intr_unique = fuse_get_unique(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001130 memset(&ih, 0, sizeof(ih));
1131 memset(&arg, 0, sizeof(arg));
1132 ih.len = reqsize;
1133 ih.opcode = FUSE_INTERRUPT;
1134 ih.unique = req->intr_unique;
1135 arg.unique = req->in.h.unique;
1136
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001137 spin_unlock(&fiq->waitq.lock);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001138 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001139 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001140 return -EINVAL;
1141
Miklos Szeredic3021622010-05-25 15:06:07 +02001142 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001143 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001144 err = fuse_copy_one(cs, &arg, sizeof(arg));
1145 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001146
1147 return err ? err : reqsize;
1148}
1149
Miklos Szeredif88996a2015-07-01 16:26:01 +02001150static struct fuse_forget_link *dequeue_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001151 unsigned max,
1152 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001153{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001154 struct fuse_forget_link *head = fiq->forget_list_head.next;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001155 struct fuse_forget_link **newhead = &head;
1156 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001157
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001158 for (count = 0; *newhead != NULL && count < max; count++)
1159 newhead = &(*newhead)->next;
1160
Miklos Szeredif88996a2015-07-01 16:26:01 +02001161 fiq->forget_list_head.next = *newhead;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001162 *newhead = NULL;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001163 if (fiq->forget_list_head.next == NULL)
1164 fiq->forget_list_tail = &fiq->forget_list_head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001165
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001166 if (countp != NULL)
1167 *countp = count;
1168
1169 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001170}
1171
1172static int fuse_read_single_forget(struct fuse_conn *fc,
1173 struct fuse_copy_state *cs,
1174 size_t nbytes)
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001175__releases(fc->iq.waitq.lock)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001176__releases(fc->lock)
1177{
1178 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001179 struct fuse_iqueue *fiq = &fc->iq;
1180 struct fuse_forget_link *forget = dequeue_forget(fiq, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001181 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001182 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001183 };
1184 struct fuse_in_header ih = {
1185 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001186 .nodeid = forget->forget_one.nodeid,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001187 .unique = fuse_get_unique(fiq),
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001188 .len = sizeof(ih) + sizeof(arg),
1189 };
1190
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001191 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001192 spin_unlock(&fc->lock);
1193 kfree(forget);
1194 if (nbytes < ih.len)
1195 return -EINVAL;
1196
1197 err = fuse_copy_one(cs, &ih, sizeof(ih));
1198 if (!err)
1199 err = fuse_copy_one(cs, &arg, sizeof(arg));
1200 fuse_copy_finish(cs);
1201
1202 if (err)
1203 return err;
1204
1205 return ih.len;
1206}
1207
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001208static int fuse_read_batch_forget(struct fuse_conn *fc,
1209 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001210__releases(fc->iq.waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001211__releases(fc->lock)
1212{
1213 int err;
1214 unsigned max_forgets;
1215 unsigned count;
1216 struct fuse_forget_link *head;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001217 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001218 struct fuse_batch_forget_in arg = { .count = 0 };
1219 struct fuse_in_header ih = {
1220 .opcode = FUSE_BATCH_FORGET,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001221 .unique = fuse_get_unique(fiq),
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001222 .len = sizeof(ih) + sizeof(arg),
1223 };
1224
1225 if (nbytes < ih.len) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001226 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001227 spin_unlock(&fc->lock);
1228 return -EINVAL;
1229 }
1230
1231 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001232 head = dequeue_forget(fiq, max_forgets, &count);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001233 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001234 spin_unlock(&fc->lock);
1235
1236 arg.count = count;
1237 ih.len += count * sizeof(struct fuse_forget_one);
1238 err = fuse_copy_one(cs, &ih, sizeof(ih));
1239 if (!err)
1240 err = fuse_copy_one(cs, &arg, sizeof(arg));
1241
1242 while (head) {
1243 struct fuse_forget_link *forget = head;
1244
1245 if (!err) {
1246 err = fuse_copy_one(cs, &forget->forget_one,
1247 sizeof(forget->forget_one));
1248 }
1249 head = forget->next;
1250 kfree(forget);
1251 }
1252
1253 fuse_copy_finish(cs);
1254
1255 if (err)
1256 return err;
1257
1258 return ih.len;
1259}
1260
1261static int fuse_read_forget(struct fuse_conn *fc, struct fuse_copy_state *cs,
1262 size_t nbytes)
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001263__releases(fc->iq.waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001264__releases(fc->lock)
1265{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001266 struct fuse_iqueue *fiq = &fc->iq;
1267
1268 if (fc->minor < 16 || fiq->forget_list_head.next->next == NULL)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001269 return fuse_read_single_forget(fc, cs, nbytes);
1270 else
1271 return fuse_read_batch_forget(fc, cs, nbytes);
1272}
1273
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001274/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001275 * Read a single request into the userspace filesystem's buffer. This
1276 * function waits until a request is available, then removes it from
1277 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001278 * no reply is needed (FORGET) or request has been aborted or there
1279 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001280 * request_end(). Otherwise add it to the processing list, and set
1281 * the 'sent' flag.
1282 */
Miklos Szeredic3021622010-05-25 15:06:07 +02001283static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
1284 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001285{
1286 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001287 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001288 struct fuse_req *req;
1289 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001290 unsigned reqsize;
1291
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001292 restart:
Miklos Szeredid7133112006-04-10 22:54:55 -07001293 spin_lock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001294 spin_lock(&fiq->waitq.lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001295 err = -EAGAIN;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001296 if ((file->f_flags & O_NONBLOCK) && fiq->connected &&
Miklos Szeredif88996a2015-07-01 16:26:01 +02001297 !request_pending(fiq))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001298 goto err_unlock;
1299
Miklos Szeredi334f4852005-09-09 13:10:27 -07001300 request_wait(fc);
1301 err = -ENODEV;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001302 if (!fiq->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001303 goto err_unlock;
1304 err = -ERESTARTSYS;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001305 if (!request_pending(fiq))
Miklos Szeredi334f4852005-09-09 13:10:27 -07001306 goto err_unlock;
1307
Miklos Szeredif88996a2015-07-01 16:26:01 +02001308 if (!list_empty(&fiq->interrupts)) {
1309 req = list_entry(fiq->interrupts.next, struct fuse_req,
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001310 intr_entry);
Miklos Szeredic3021622010-05-25 15:06:07 +02001311 return fuse_read_interrupt(fc, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001312 }
1313
Miklos Szeredif88996a2015-07-01 16:26:01 +02001314 if (forget_pending(fiq)) {
1315 if (list_empty(&fiq->pending) || fiq->forget_batch-- > 0)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001316 return fuse_read_forget(fc, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001317
Miklos Szeredif88996a2015-07-01 16:26:01 +02001318 if (fiq->forget_batch <= -8)
1319 fiq->forget_batch = 16;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001320 }
1321
Miklos Szeredif88996a2015-07-01 16:26:01 +02001322 req = list_entry(fiq->pending.next, struct fuse_req, list);
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001323 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredief759252015-07-01 16:26:02 +02001324 list_del_init(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001325 spin_unlock(&fiq->waitq.lock);
1326
Miklos Szeredief759252015-07-01 16:26:02 +02001327 list_add(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001328
1329 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001330 reqsize = in->h.len;
1331 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001332 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001333 req->out.h.error = -EIO;
1334 /* SETXATTR is special, since it may contain too large data */
1335 if (in->h.opcode == FUSE_SETXATTR)
1336 req->out.h.error = -E2BIG;
1337 request_end(fc, req);
1338 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001339 }
Miklos Szeredid7133112006-04-10 22:54:55 -07001340 spin_unlock(&fc->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001341 cs->req = req;
1342 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001343 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001344 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001345 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001346 fuse_copy_finish(cs);
Miklos Szeredid7133112006-04-10 22:54:55 -07001347 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001348 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001349 if (!fc->connected) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001350 request_end(fc, req);
1351 return -ENODEV;
1352 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001353 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001354 req->out.h.error = -EIO;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001355 request_end(fc, req);
1356 return err;
1357 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001358 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi334f4852005-09-09 13:10:27 -07001359 request_end(fc, req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001360 } else {
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001361 set_bit(FR_SENT, &req->flags);
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001362 list_move_tail(&req->list, &fc->processing);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001363 if (test_bit(FR_INTERRUPTED, &req->flags))
Miklos Szeredif88996a2015-07-01 16:26:01 +02001364 queue_interrupt(fiq, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07001365 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001366 }
1367 return reqsize;
1368
1369 err_unlock:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001370 spin_unlock(&fiq->waitq.lock);
Miklos Szeredid7133112006-04-10 22:54:55 -07001371 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001372 return err;
1373}
1374
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001375static int fuse_dev_open(struct inode *inode, struct file *file)
1376{
1377 /*
1378 * The fuse device's file's private_data is used to hold
1379 * the fuse_conn(ection) when it is mounted, and is used to
1380 * keep track of whether the file has been mounted already.
1381 */
1382 file->private_data = NULL;
1383 return 0;
1384}
1385
Al Virofbdbacc2015-04-03 21:53:39 -04001386static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001387{
1388 struct fuse_copy_state cs;
1389 struct file *file = iocb->ki_filp;
1390 struct fuse_conn *fc = fuse_get_conn(file);
1391 if (!fc)
1392 return -EPERM;
1393
Al Virofbdbacc2015-04-03 21:53:39 -04001394 if (!iter_is_iovec(to))
1395 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001396
Miklos Szeredidc008092015-07-01 16:25:58 +02001397 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001398
1399 return fuse_dev_do_read(fc, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001400}
1401
Miklos Szeredic3021622010-05-25 15:06:07 +02001402static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1403 struct pipe_inode_info *pipe,
1404 size_t len, unsigned int flags)
1405{
1406 int ret;
1407 int page_nr = 0;
1408 int do_wakeup = 0;
1409 struct pipe_buffer *bufs;
1410 struct fuse_copy_state cs;
1411 struct fuse_conn *fc = fuse_get_conn(in);
1412 if (!fc)
1413 return -EPERM;
1414
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001415 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001416 if (!bufs)
1417 return -ENOMEM;
1418
Miklos Szeredidc008092015-07-01 16:25:58 +02001419 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001420 cs.pipebufs = bufs;
1421 cs.pipe = pipe;
1422 ret = fuse_dev_do_read(fc, in, &cs, len);
1423 if (ret < 0)
1424 goto out;
1425
1426 ret = 0;
1427 pipe_lock(pipe);
1428
1429 if (!pipe->readers) {
1430 send_sig(SIGPIPE, current, 0);
1431 if (!ret)
1432 ret = -EPIPE;
1433 goto out_unlock;
1434 }
1435
1436 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1437 ret = -EIO;
1438 goto out_unlock;
1439 }
1440
1441 while (page_nr < cs.nr_segs) {
1442 int newbuf = (pipe->curbuf + pipe->nrbufs) & (pipe->buffers - 1);
1443 struct pipe_buffer *buf = pipe->bufs + newbuf;
1444
1445 buf->page = bufs[page_nr].page;
1446 buf->offset = bufs[page_nr].offset;
1447 buf->len = bufs[page_nr].len;
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001448 /*
1449 * Need to be careful about this. Having buf->ops in module
1450 * code can Oops if the buffer persists after module unload.
1451 */
1452 buf->ops = &nosteal_pipe_buf_ops;
Miklos Szeredic3021622010-05-25 15:06:07 +02001453
1454 pipe->nrbufs++;
1455 page_nr++;
1456 ret += buf->len;
1457
Al Viro6447a3c2013-03-21 11:01:38 -04001458 if (pipe->files)
Miklos Szeredic3021622010-05-25 15:06:07 +02001459 do_wakeup = 1;
1460 }
1461
1462out_unlock:
1463 pipe_unlock(pipe);
1464
1465 if (do_wakeup) {
1466 smp_mb();
1467 if (waitqueue_active(&pipe->wait))
1468 wake_up_interruptible(&pipe->wait);
1469 kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
1470 }
1471
1472out:
1473 for (; page_nr < cs.nr_segs; page_nr++)
1474 page_cache_release(bufs[page_nr].page);
1475
1476 kfree(bufs);
1477 return ret;
1478}
1479
Tejun Heo95668a62008-11-26 12:03:55 +01001480static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1481 struct fuse_copy_state *cs)
1482{
1483 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001484 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001485
1486 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001487 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001488
1489 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1490 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001491 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001492
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001493 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001494 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001495
1496err:
1497 fuse_copy_finish(cs);
1498 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001499}
1500
John Muir3b463ae2009-05-31 11:13:57 -04001501static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1502 struct fuse_copy_state *cs)
1503{
1504 struct fuse_notify_inval_inode_out outarg;
1505 int err = -EINVAL;
1506
1507 if (size != sizeof(outarg))
1508 goto err;
1509
1510 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1511 if (err)
1512 goto err;
1513 fuse_copy_finish(cs);
1514
1515 down_read(&fc->killsb);
1516 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001517 if (fc->sb) {
1518 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1519 outarg.off, outarg.len);
1520 }
John Muir3b463ae2009-05-31 11:13:57 -04001521 up_read(&fc->killsb);
1522 return err;
1523
1524err:
1525 fuse_copy_finish(cs);
1526 return err;
1527}
1528
1529static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1530 struct fuse_copy_state *cs)
1531{
1532 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001533 int err = -ENOMEM;
1534 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001535 struct qstr name;
1536
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001537 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1538 if (!buf)
1539 goto err;
1540
1541 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001542 if (size < sizeof(outarg))
1543 goto err;
1544
1545 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1546 if (err)
1547 goto err;
1548
1549 err = -ENAMETOOLONG;
1550 if (outarg.namelen > FUSE_NAME_MAX)
1551 goto err;
1552
Miklos Szeredic2183d12011-08-24 10:20:17 +02001553 err = -EINVAL;
1554 if (size != sizeof(outarg) + outarg.namelen + 1)
1555 goto err;
1556
John Muir3b463ae2009-05-31 11:13:57 -04001557 name.name = buf;
1558 name.len = outarg.namelen;
1559 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1560 if (err)
1561 goto err;
1562 fuse_copy_finish(cs);
1563 buf[outarg.namelen] = 0;
1564 name.hash = full_name_hash(name.name, name.len);
1565
1566 down_read(&fc->killsb);
1567 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001568 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001569 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1570 up_read(&fc->killsb);
1571 kfree(buf);
1572 return err;
1573
1574err:
1575 kfree(buf);
1576 fuse_copy_finish(cs);
1577 return err;
1578}
1579
1580static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1581 struct fuse_copy_state *cs)
1582{
1583 struct fuse_notify_delete_out outarg;
1584 int err = -ENOMEM;
1585 char *buf;
1586 struct qstr name;
1587
1588 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1589 if (!buf)
1590 goto err;
1591
1592 err = -EINVAL;
1593 if (size < sizeof(outarg))
1594 goto err;
1595
1596 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1597 if (err)
1598 goto err;
1599
1600 err = -ENAMETOOLONG;
1601 if (outarg.namelen > FUSE_NAME_MAX)
1602 goto err;
1603
1604 err = -EINVAL;
1605 if (size != sizeof(outarg) + outarg.namelen + 1)
1606 goto err;
1607
1608 name.name = buf;
1609 name.len = outarg.namelen;
1610 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1611 if (err)
1612 goto err;
1613 fuse_copy_finish(cs);
1614 buf[outarg.namelen] = 0;
1615 name.hash = full_name_hash(name.name, name.len);
1616
1617 down_read(&fc->killsb);
1618 err = -ENOENT;
1619 if (fc->sb)
1620 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1621 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001622 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001623 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001624 return err;
1625
1626err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001627 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001628 fuse_copy_finish(cs);
1629 return err;
1630}
1631
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001632static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1633 struct fuse_copy_state *cs)
1634{
1635 struct fuse_notify_store_out outarg;
1636 struct inode *inode;
1637 struct address_space *mapping;
1638 u64 nodeid;
1639 int err;
1640 pgoff_t index;
1641 unsigned int offset;
1642 unsigned int num;
1643 loff_t file_size;
1644 loff_t end;
1645
1646 err = -EINVAL;
1647 if (size < sizeof(outarg))
1648 goto out_finish;
1649
1650 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1651 if (err)
1652 goto out_finish;
1653
1654 err = -EINVAL;
1655 if (size - sizeof(outarg) != outarg.size)
1656 goto out_finish;
1657
1658 nodeid = outarg.nodeid;
1659
1660 down_read(&fc->killsb);
1661
1662 err = -ENOENT;
1663 if (!fc->sb)
1664 goto out_up_killsb;
1665
1666 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1667 if (!inode)
1668 goto out_up_killsb;
1669
1670 mapping = inode->i_mapping;
1671 index = outarg.offset >> PAGE_CACHE_SHIFT;
1672 offset = outarg.offset & ~PAGE_CACHE_MASK;
1673 file_size = i_size_read(inode);
1674 end = outarg.offset + outarg.size;
1675 if (end > file_size) {
1676 file_size = end;
1677 fuse_write_update_size(inode, file_size);
1678 }
1679
1680 num = outarg.size;
1681 while (num) {
1682 struct page *page;
1683 unsigned int this_num;
1684
1685 err = -ENOMEM;
1686 page = find_or_create_page(mapping, index,
1687 mapping_gfp_mask(mapping));
1688 if (!page)
1689 goto out_iput;
1690
1691 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1692 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001693 if (!err && offset == 0 &&
1694 (this_num == PAGE_CACHE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001695 SetPageUptodate(page);
1696 unlock_page(page);
1697 page_cache_release(page);
1698
1699 if (err)
1700 goto out_iput;
1701
1702 num -= this_num;
1703 offset = 0;
1704 index++;
1705 }
1706
1707 err = 0;
1708
1709out_iput:
1710 iput(inode);
1711out_up_killsb:
1712 up_read(&fc->killsb);
1713out_finish:
1714 fuse_copy_finish(cs);
1715 return err;
1716}
1717
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001718static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1719{
Mel Gormanb745bc82014-06-04 16:10:22 -07001720 release_pages(req->pages, req->num_pages, false);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001721}
1722
1723static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1724 struct fuse_notify_retrieve_out *outarg)
1725{
1726 int err;
1727 struct address_space *mapping = inode->i_mapping;
1728 struct fuse_req *req;
1729 pgoff_t index;
1730 loff_t file_size;
1731 unsigned int num;
1732 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001733 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001734 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001735
1736 offset = outarg->offset & ~PAGE_CACHE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001737 file_size = i_size_read(inode);
1738
1739 num = outarg->size;
1740 if (outarg->offset > file_size)
1741 num = 0;
1742 else if (outarg->offset + num > file_size)
1743 num = file_size - outarg->offset;
1744
1745 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1746 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1747
1748 req = fuse_get_req(fc, num_pages);
1749 if (IS_ERR(req))
1750 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001751
1752 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1753 req->in.h.nodeid = outarg->nodeid;
1754 req->in.numargs = 2;
1755 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001756 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001757 req->end = fuse_retrieve_end;
1758
1759 index = outarg->offset >> PAGE_CACHE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001760
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001761 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001762 struct page *page;
1763 unsigned int this_num;
1764
1765 page = find_get_page(mapping, index);
1766 if (!page)
1767 break;
1768
1769 this_num = min_t(unsigned, num, PAGE_CACHE_SIZE - offset);
1770 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001771 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001772 req->num_pages++;
1773
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001774 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001775 num -= this_num;
1776 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001777 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001778 }
1779 req->misc.retrieve_in.offset = outarg->offset;
1780 req->misc.retrieve_in.size = total_len;
1781 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1782 req->in.args[0].value = &req->misc.retrieve_in;
1783 req->in.args[1].size = total_len;
1784
1785 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1786 if (err)
1787 fuse_retrieve_end(fc, req);
1788
1789 return err;
1790}
1791
1792static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1793 struct fuse_copy_state *cs)
1794{
1795 struct fuse_notify_retrieve_out outarg;
1796 struct inode *inode;
1797 int err;
1798
1799 err = -EINVAL;
1800 if (size != sizeof(outarg))
1801 goto copy_finish;
1802
1803 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1804 if (err)
1805 goto copy_finish;
1806
1807 fuse_copy_finish(cs);
1808
1809 down_read(&fc->killsb);
1810 err = -ENOENT;
1811 if (fc->sb) {
1812 u64 nodeid = outarg.nodeid;
1813
1814 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1815 if (inode) {
1816 err = fuse_retrieve(fc, inode, &outarg);
1817 iput(inode);
1818 }
1819 }
1820 up_read(&fc->killsb);
1821
1822 return err;
1823
1824copy_finish:
1825 fuse_copy_finish(cs);
1826 return err;
1827}
1828
Tejun Heo85993962008-11-26 12:03:55 +01001829static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1830 unsigned int size, struct fuse_copy_state *cs)
1831{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001832 /* Don't try to move pages (yet) */
1833 cs->move_pages = 0;
1834
Tejun Heo85993962008-11-26 12:03:55 +01001835 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001836 case FUSE_NOTIFY_POLL:
1837 return fuse_notify_poll(fc, size, cs);
1838
John Muir3b463ae2009-05-31 11:13:57 -04001839 case FUSE_NOTIFY_INVAL_INODE:
1840 return fuse_notify_inval_inode(fc, size, cs);
1841
1842 case FUSE_NOTIFY_INVAL_ENTRY:
1843 return fuse_notify_inval_entry(fc, size, cs);
1844
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001845 case FUSE_NOTIFY_STORE:
1846 return fuse_notify_store(fc, size, cs);
1847
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001848 case FUSE_NOTIFY_RETRIEVE:
1849 return fuse_notify_retrieve(fc, size, cs);
1850
John Muir451d0f52011-12-06 21:50:06 +01001851 case FUSE_NOTIFY_DELETE:
1852 return fuse_notify_delete(fc, size, cs);
1853
Tejun Heo85993962008-11-26 12:03:55 +01001854 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001855 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001856 return -EINVAL;
1857 }
1858}
1859
Miklos Szeredi334f4852005-09-09 13:10:27 -07001860/* Look up request on processing list by unique ID */
1861static struct fuse_req *request_find(struct fuse_conn *fc, u64 unique)
1862{
Dong Fang05726ac2013-07-30 22:50:01 -04001863 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001864
Dong Fang05726ac2013-07-30 22:50:01 -04001865 list_for_each_entry(req, &fc->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001866 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001867 return req;
1868 }
1869 return NULL;
1870}
1871
1872static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1873 unsigned nbytes)
1874{
1875 unsigned reqsize = sizeof(struct fuse_out_header);
1876
1877 if (out->h.error)
1878 return nbytes != reqsize ? -EINVAL : 0;
1879
1880 reqsize += len_args(out->numargs, out->args);
1881
1882 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1883 return -EINVAL;
1884 else if (reqsize > nbytes) {
1885 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1886 unsigned diffsize = reqsize - nbytes;
1887 if (diffsize > lastarg->size)
1888 return -EINVAL;
1889 lastarg->size -= diffsize;
1890 }
1891 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1892 out->page_zeroing);
1893}
1894
1895/*
1896 * Write a single reply to a request. First the header is copied from
1897 * the write buffer. The request is then searched on the processing
1898 * list by the unique ID found in the header. If found, then remove
1899 * it from the list and copy the rest of the buffer to the request.
1900 * The request is finished by calling request_end()
1901 */
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001902static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
1903 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001904{
1905 int err;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001906 struct fuse_req *req;
1907 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001908
Miklos Szeredi334f4852005-09-09 13:10:27 -07001909 if (nbytes < sizeof(struct fuse_out_header))
1910 return -EINVAL;
1911
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001912 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001913 if (err)
1914 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001915
Miklos Szeredi334f4852005-09-09 13:10:27 -07001916 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001917 if (oh.len != nbytes)
1918 goto err_finish;
1919
1920 /*
1921 * Zero oh.unique indicates unsolicited notification message
1922 * and error contains notification code.
1923 */
1924 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001925 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001926 return err ? err : nbytes;
1927 }
1928
1929 err = -EINVAL;
1930 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001931 goto err_finish;
1932
Miklos Szeredid7133112006-04-10 22:54:55 -07001933 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001934 err = -ENOENT;
1935 if (!fc->connected)
1936 goto err_unlock;
1937
Miklos Szeredi334f4852005-09-09 13:10:27 -07001938 req = request_find(fc, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001939 if (!req)
1940 goto err_unlock;
1941
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001942 /* Is it an interrupt reply? */
1943 if (req->intr_unique == oh.unique) {
1944 err = -EINVAL;
1945 if (nbytes != sizeof(struct fuse_out_header))
1946 goto err_unlock;
1947
1948 if (oh.error == -ENOSYS)
1949 fc->no_interrupt = 1;
1950 else if (oh.error == -EAGAIN)
Miklos Szeredif88996a2015-07-01 16:26:01 +02001951 queue_interrupt(&fc->iq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001952
1953 spin_unlock(&fc->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001954 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001955 return nbytes;
1956 }
1957
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001958 clear_bit(FR_SENT, &req->flags);
Miklos Szeredid77a1d52006-01-16 22:14:31 -08001959 list_move(&req->list, &fc->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001960 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001961 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001962 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001963 if (!req->out.page_replace)
1964 cs->move_pages = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -07001965 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001966
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001967 err = copy_out_args(cs, &req->out, nbytes);
1968 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001969
Miklos Szeredid7133112006-04-10 22:54:55 -07001970 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001971 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001972 if (!fc->connected)
1973 err = -ENOENT;
1974 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001975 req->out.h.error = -EIO;
1976 request_end(fc, req);
1977
1978 return err ? err : nbytes;
1979
1980 err_unlock:
Miklos Szeredid7133112006-04-10 22:54:55 -07001981 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001982 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001983 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001984 return err;
1985}
1986
Al Virofbdbacc2015-04-03 21:53:39 -04001987static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001988{
1989 struct fuse_copy_state cs;
1990 struct fuse_conn *fc = fuse_get_conn(iocb->ki_filp);
1991 if (!fc)
1992 return -EPERM;
1993
Al Virofbdbacc2015-04-03 21:53:39 -04001994 if (!iter_is_iovec(from))
1995 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001996
Miklos Szeredidc008092015-07-01 16:25:58 +02001997 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001998
1999 return fuse_dev_do_write(fc, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002000}
2001
2002static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
2003 struct file *out, loff_t *ppos,
2004 size_t len, unsigned int flags)
2005{
2006 unsigned nbuf;
2007 unsigned idx;
2008 struct pipe_buffer *bufs;
2009 struct fuse_copy_state cs;
2010 struct fuse_conn *fc;
2011 size_t rem;
2012 ssize_t ret;
2013
2014 fc = fuse_get_conn(out);
2015 if (!fc)
2016 return -EPERM;
2017
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01002018 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002019 if (!bufs)
2020 return -ENOMEM;
2021
2022 pipe_lock(pipe);
2023 nbuf = 0;
2024 rem = 0;
2025 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
2026 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
2027
2028 ret = -EINVAL;
2029 if (rem < len) {
2030 pipe_unlock(pipe);
2031 goto out;
2032 }
2033
2034 rem = len;
2035 while (rem) {
2036 struct pipe_buffer *ibuf;
2037 struct pipe_buffer *obuf;
2038
2039 BUG_ON(nbuf >= pipe->buffers);
2040 BUG_ON(!pipe->nrbufs);
2041 ibuf = &pipe->bufs[pipe->curbuf];
2042 obuf = &bufs[nbuf];
2043
2044 if (rem >= ibuf->len) {
2045 *obuf = *ibuf;
2046 ibuf->ops = NULL;
2047 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
2048 pipe->nrbufs--;
2049 } else {
2050 ibuf->ops->get(pipe, ibuf);
2051 *obuf = *ibuf;
2052 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
2053 obuf->len = rem;
2054 ibuf->offset += obuf->len;
2055 ibuf->len -= obuf->len;
2056 }
2057 nbuf++;
2058 rem -= obuf->len;
2059 }
2060 pipe_unlock(pipe);
2061
Miklos Szeredidc008092015-07-01 16:25:58 +02002062 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002063 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04002064 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002065 cs.pipe = pipe;
2066
Miklos Szeredice534fb2010-05-25 15:06:07 +02002067 if (flags & SPLICE_F_MOVE)
2068 cs.move_pages = 1;
2069
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002070 ret = fuse_dev_do_write(fc, &cs, len);
2071
2072 for (idx = 0; idx < nbuf; idx++) {
2073 struct pipe_buffer *buf = &bufs[idx];
2074 buf->ops->release(pipe, buf);
2075 }
2076out:
2077 kfree(bufs);
2078 return ret;
2079}
2080
Miklos Szeredi334f4852005-09-09 13:10:27 -07002081static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2082{
Miklos Szeredi334f4852005-09-09 13:10:27 -07002083 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002084 struct fuse_iqueue *fiq;
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002085 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002086 if (!fc)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002087 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002088
Miklos Szeredif88996a2015-07-01 16:26:01 +02002089 fiq = &fc->iq;
2090 poll_wait(file, &fiq->waitq, wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002091
Miklos Szeredid7133112006-04-10 22:54:55 -07002092 spin_lock(&fc->lock);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002093 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +02002094 if (!fiq->connected)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002095 mask = POLLERR;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002096 else if (request_pending(fiq))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002097 mask |= POLLIN | POLLRDNORM;
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002098 spin_unlock(&fiq->waitq.lock);
Miklos Szeredid7133112006-04-10 22:54:55 -07002099 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002100
2101 return mask;
2102}
2103
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002104/*
2105 * Abort all requests on the given list (pending or processing)
2106 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002107 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002108 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002109static void end_requests(struct fuse_conn *fc, struct list_head *head)
Miklos Szeredib9ca67b2010-09-07 13:42:41 +02002110__releases(fc->lock)
2111__acquires(fc->lock)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002112{
2113 while (!list_empty(head)) {
2114 struct fuse_req *req;
2115 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002116 req->out.h.error = -ECONNABORTED;
Miklos Szeredi33e14b42015-07-01 16:26:01 +02002117 clear_bit(FR_PENDING, &req->flags);
2118 clear_bit(FR_SENT, &req->flags);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002119 request_end(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -07002120 spin_lock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002121 }
2122}
2123
Bryan Green357ccf22011-03-01 16:43:52 -08002124static void end_polls(struct fuse_conn *fc)
2125{
2126 struct rb_node *p;
2127
2128 p = rb_first(&fc->polled_files);
2129
2130 while (p) {
2131 struct fuse_file *ff;
2132 ff = rb_entry(p, struct fuse_file, polled_node);
2133 wake_up_interruptible_all(&ff->poll_wait);
2134
2135 p = rb_next(p);
2136 }
2137}
2138
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002139/*
2140 * Abort all requests.
2141 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002142 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2143 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002144 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002145 * The same effect is usually achievable through killing the filesystem daemon
2146 * and all users of the filesystem. The exception is the combination of an
2147 * asynchronous request and the tricky deadlock (see
2148 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002149 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002150 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2151 * requests, they should be finished off immediately. Locked requests will be
2152 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2153 * requests. It is possible that some request will finish before we can. This
2154 * is OK, the request will in that case be removed from the list before we touch
2155 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002156 */
2157void fuse_abort_conn(struct fuse_conn *fc)
2158{
Miklos Szeredif88996a2015-07-01 16:26:01 +02002159 struct fuse_iqueue *fiq = &fc->iq;
2160
Miklos Szeredid7133112006-04-10 22:54:55 -07002161 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002162 if (fc->connected) {
Miklos Szeredib716d422015-07-01 16:25:59 +02002163 struct fuse_req *req, *next;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002164 LIST_HEAD(to_end1);
2165 LIST_HEAD(to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002166
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002167 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002168 fc->blocked = 0;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002169 fuse_set_initialized(fc);
Miklos Szeredib716d422015-07-01 16:25:59 +02002170 list_for_each_entry_safe(req, next, &fc->io, list) {
2171 req->out.h.error = -ECONNABORTED;
2172 spin_lock(&req->waitq.lock);
2173 set_bit(FR_ABORTED, &req->flags);
2174 if (!test_bit(FR_LOCKED, &req->flags))
Miklos Szeredi41f98272015-07-01 16:25:59 +02002175 list_move(&req->list, &to_end1);
Miklos Szeredib716d422015-07-01 16:25:59 +02002176 spin_unlock(&req->waitq.lock);
2177 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002178 fc->max_background = UINT_MAX;
2179 flush_bg_queue(fc);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002180
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002181 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002182 fiq->connected = 0;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002183 list_splice_init(&fiq->pending, &to_end2);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002184 while (forget_pending(fiq))
2185 kfree(dequeue_forget(fiq, 1, NULL));
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002186 wake_up_all_locked(&fiq->waitq);
2187 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002188 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
2189
Miklos Szeredi41f98272015-07-01 16:25:59 +02002190 list_splice_init(&fc->processing, &to_end2);
2191 while (!list_empty(&to_end1)) {
2192 req = list_first_entry(&to_end1, struct fuse_req, list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002193 __fuse_get_request(req);
2194 request_end(fc, req);
2195 spin_lock(&fc->lock);
2196 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002197 end_requests(fc, &to_end2);
Bryan Green357ccf22011-03-01 16:43:52 -08002198 end_polls(fc);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002199 wake_up_all(&fc->blocked_waitq);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002200 }
Miklos Szeredid7133112006-04-10 22:54:55 -07002201 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002202}
Tejun Heo08cbf542009-04-14 10:54:53 +09002203EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002204
Tejun Heo08cbf542009-04-14 10:54:53 +09002205int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002206{
Miklos Szeredi0720b312006-04-10 22:54:55 -07002207 struct fuse_conn *fc = fuse_get_conn(file);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002208 if (fc) {
Miklos Szerediccd0a0b2015-07-01 16:25:57 +02002209 WARN_ON(!list_empty(&fc->io));
Miklos Szeredif88996a2015-07-01 16:26:01 +02002210 WARN_ON(fc->iq.fasync != NULL);
Miklos Szerediccd0a0b2015-07-01 16:25:57 +02002211 fuse_abort_conn(fc);
Miklos Szeredibafa9652006-06-25 05:48:51 -07002212 fuse_conn_put(fc);
Jeff Dike385a17b2006-04-10 22:54:52 -07002213 }
Miklos Szeredif543f252006-01-16 22:14:35 -08002214
Miklos Szeredi334f4852005-09-09 13:10:27 -07002215 return 0;
2216}
Tejun Heo08cbf542009-04-14 10:54:53 +09002217EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002218
Jeff Dike385a17b2006-04-10 22:54:52 -07002219static int fuse_dev_fasync(int fd, struct file *file, int on)
2220{
2221 struct fuse_conn *fc = fuse_get_conn(file);
2222 if (!fc)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002223 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002224
2225 /* No locking - fasync_helper does its own locking */
Miklos Szeredif88996a2015-07-01 16:26:01 +02002226 return fasync_helper(fd, file, on, &fc->iq.fasync);
Jeff Dike385a17b2006-04-10 22:54:52 -07002227}
2228
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08002229const struct file_operations fuse_dev_operations = {
Miklos Szeredi334f4852005-09-09 13:10:27 -07002230 .owner = THIS_MODULE,
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01002231 .open = fuse_dev_open,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002232 .llseek = no_llseek,
Al Virofbdbacc2015-04-03 21:53:39 -04002233 .read_iter = fuse_dev_read,
Miklos Szeredic3021622010-05-25 15:06:07 +02002234 .splice_read = fuse_dev_splice_read,
Al Virofbdbacc2015-04-03 21:53:39 -04002235 .write_iter = fuse_dev_write,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002236 .splice_write = fuse_dev_splice_write,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002237 .poll = fuse_dev_poll,
2238 .release = fuse_dev_release,
Jeff Dike385a17b2006-04-10 22:54:52 -07002239 .fasync = fuse_dev_fasync,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002240};
Tejun Heo08cbf542009-04-14 10:54:53 +09002241EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002242
2243static struct miscdevice fuse_miscdevice = {
2244 .minor = FUSE_MINOR,
2245 .name = "fuse",
2246 .fops = &fuse_dev_operations,
2247};
2248
2249int __init fuse_dev_init(void)
2250{
2251 int err = -ENOMEM;
2252 fuse_req_cachep = kmem_cache_create("fuse_request",
2253 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002254 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002255 if (!fuse_req_cachep)
2256 goto out;
2257
2258 err = misc_register(&fuse_miscdevice);
2259 if (err)
2260 goto out_cache_clean;
2261
2262 return 0;
2263
2264 out_cache_clean:
2265 kmem_cache_destroy(fuse_req_cachep);
2266 out:
2267 return err;
2268}
2269
2270void fuse_dev_cleanup(void)
2271{
2272 misc_deregister(&fuse_miscdevice);
2273 kmem_cache_destroy(fuse_req_cachep);
2274}