blob: 2ca3c1ea1918a9a17cbfd596e9edf0ae278e7d76 [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>
Daniel Rosenbergfac99a72016-04-22 00:00:48 -070016#include <linux/namei.h>
Miklos Szeredi334f4852005-09-09 13:10:27 -070017#include <linux/pagemap.h>
18#include <linux/file.h>
19#include <linux/slab.h>
Miklos Szeredidd3bb142010-05-25 15:06:06 +020020#include <linux/pipe_fs_i.h>
Miklos Szeredice534fb2010-05-25 15:06:07 +020021#include <linux/swap.h>
22#include <linux/splice.h>
Todd Poynor1672c662011-08-24 15:01:30 -070023#include <linux/freezer.h>
Miklos Szeredi334f4852005-09-09 13:10:27 -070024
25MODULE_ALIAS_MISCDEV(FUSE_MINOR);
Kay Sievers578454f2010-05-20 18:07:20 +020026MODULE_ALIAS("devname:fuse");
Miklos Szeredi334f4852005-09-09 13:10:27 -070027
Christoph Lametere18b8902006-12-06 20:33:20 -080028static struct kmem_cache *fuse_req_cachep;
Miklos Szeredi334f4852005-09-09 13:10:27 -070029
Miklos Szeredicc080e92015-07-01 16:26:08 +020030static struct fuse_dev *fuse_get_dev(struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -070031{
Miklos Szeredi0720b312006-04-10 22:54:55 -070032 /*
33 * Lockless access is OK, because file->private data is set
34 * once during mount and is valid until the file is released.
35 */
Miklos Szeredicc080e92015-07-01 16:26:08 +020036 return ACCESS_ONCE(file->private_data);
Miklos Szeredi334f4852005-09-09 13:10:27 -070037}
38
Maxim Patlasov4250c062012-10-26 19:48:07 +040039static void fuse_request_init(struct fuse_req *req, struct page **pages,
Maxim Patlasovb2430d72012-10-26 19:49:24 +040040 struct fuse_page_desc *page_descs,
Maxim Patlasov4250c062012-10-26 19:48:07 +040041 unsigned npages)
Miklos Szeredi334f4852005-09-09 13:10:27 -070042{
43 memset(req, 0, sizeof(*req));
Maxim Patlasov4250c062012-10-26 19:48:07 +040044 memset(pages, 0, sizeof(*pages) * npages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040045 memset(page_descs, 0, sizeof(*page_descs) * npages);
Miklos Szeredi334f4852005-09-09 13:10:27 -070046 INIT_LIST_HEAD(&req->list);
Miklos Szeredia4d27e72006-06-25 05:48:54 -070047 INIT_LIST_HEAD(&req->intr_entry);
Miklos Szeredi334f4852005-09-09 13:10:27 -070048 init_waitqueue_head(&req->waitq);
49 atomic_set(&req->count, 1);
Maxim Patlasov4250c062012-10-26 19:48:07 +040050 req->pages = pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040051 req->page_descs = page_descs;
Maxim Patlasov4250c062012-10-26 19:48:07 +040052 req->max_pages = npages;
Miklos Szeredi33e14b42015-07-01 16:26:01 +020053 __set_bit(FR_PENDING, &req->flags);
Miklos Szeredi334f4852005-09-09 13:10:27 -070054}
55
Maxim Patlasov4250c062012-10-26 19:48:07 +040056static struct fuse_req *__fuse_request_alloc(unsigned npages, gfp_t flags)
Miklos Szeredi334f4852005-09-09 13:10:27 -070057{
Maxim Patlasov4250c062012-10-26 19:48:07 +040058 struct fuse_req *req = kmem_cache_alloc(fuse_req_cachep, flags);
59 if (req) {
60 struct page **pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040061 struct fuse_page_desc *page_descs;
Maxim Patlasov4250c062012-10-26 19:48:07 +040062
Maxim Patlasovb2430d72012-10-26 19:49:24 +040063 if (npages <= FUSE_REQ_INLINE_PAGES) {
Maxim Patlasov4250c062012-10-26 19:48:07 +040064 pages = req->inline_pages;
Maxim Patlasovb2430d72012-10-26 19:49:24 +040065 page_descs = req->inline_page_descs;
66 } else {
Maxim Patlasov4250c062012-10-26 19:48:07 +040067 pages = kmalloc(sizeof(struct page *) * npages, flags);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040068 page_descs = kmalloc(sizeof(struct fuse_page_desc) *
69 npages, flags);
70 }
Maxim Patlasov4250c062012-10-26 19:48:07 +040071
Maxim Patlasovb2430d72012-10-26 19:49:24 +040072 if (!pages || !page_descs) {
73 kfree(pages);
74 kfree(page_descs);
Maxim Patlasov4250c062012-10-26 19:48:07 +040075 kmem_cache_free(fuse_req_cachep, req);
76 return NULL;
77 }
78
Maxim Patlasovb2430d72012-10-26 19:49:24 +040079 fuse_request_init(req, pages, page_descs, npages);
Maxim Patlasov4250c062012-10-26 19:48:07 +040080 }
Miklos Szeredi334f4852005-09-09 13:10:27 -070081 return req;
82}
Maxim Patlasov4250c062012-10-26 19:48:07 +040083
84struct fuse_req *fuse_request_alloc(unsigned npages)
85{
86 return __fuse_request_alloc(npages, GFP_KERNEL);
87}
Tejun Heo08cbf542009-04-14 10:54:53 +090088EXPORT_SYMBOL_GPL(fuse_request_alloc);
Miklos Szeredi334f4852005-09-09 13:10:27 -070089
Maxim Patlasov4250c062012-10-26 19:48:07 +040090struct fuse_req *fuse_request_alloc_nofs(unsigned npages)
Miklos Szeredi3be5a522008-04-30 00:54:41 -070091{
Maxim Patlasov4250c062012-10-26 19:48:07 +040092 return __fuse_request_alloc(npages, GFP_NOFS);
Miklos Szeredi3be5a522008-04-30 00:54:41 -070093}
94
Miklos Szeredi334f4852005-09-09 13:10:27 -070095void fuse_request_free(struct fuse_req *req)
96{
Maxim Patlasovb2430d72012-10-26 19:49:24 +040097 if (req->pages != req->inline_pages) {
Maxim Patlasov4250c062012-10-26 19:48:07 +040098 kfree(req->pages);
Maxim Patlasovb2430d72012-10-26 19:49:24 +040099 kfree(req->page_descs);
100 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700101 kmem_cache_free(fuse_req_cachep, req);
102}
103
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400104void __fuse_get_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700105{
106 atomic_inc(&req->count);
107}
108
109/* Must be called with > 1 refcount */
110static void __fuse_put_request(struct fuse_req *req)
111{
112 BUG_ON(atomic_read(&req->count) < 2);
113 atomic_dec(&req->count);
114}
115
Miklos Szeredi33649c92006-06-25 05:48:52 -0700116static void fuse_req_init_context(struct fuse_req *req)
117{
Eric W. Biederman499dcf22012-02-07 16:26:03 -0800118 req->in.h.uid = from_kuid_munged(&init_user_ns, current_fsuid());
119 req->in.h.gid = from_kgid_munged(&init_user_ns, current_fsgid());
Miklos Szeredi33649c92006-06-25 05:48:52 -0700120 req->in.h.pid = current->pid;
121}
122
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100123void fuse_set_initialized(struct fuse_conn *fc)
124{
125 /* Make sure stores before this are seen on another CPU */
126 smp_wmb();
127 fc->initialized = 1;
128}
129
Maxim Patlasov0aada882013-03-21 18:02:28 +0400130static bool fuse_block_alloc(struct fuse_conn *fc, bool for_background)
131{
132 return !fc->initialized || (for_background && fc->blocked);
133}
134
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400135static struct fuse_req *__fuse_get_req(struct fuse_conn *fc, unsigned npages,
136 bool for_background)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700137{
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700138 struct fuse_req *req;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700139 int err;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200140 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400141
142 if (fuse_block_alloc(fc, for_background)) {
Maxim Patlasov0aada882013-03-21 18:02:28 +0400143 err = -EINTR;
Al Viro7d3a07f2016-07-19 03:08:27 -0400144 if (wait_event_killable_exclusive(fc->blocked_waitq,
145 !fuse_block_alloc(fc, for_background)))
Maxim Patlasov0aada882013-03-21 18:02:28 +0400146 goto out;
147 }
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100148 /* Matches smp_wmb() in fuse_set_initialized() */
149 smp_rmb();
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700150
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700151 err = -ENOTCONN;
152 if (!fc->connected)
153 goto out;
154
Miklos Szeredide155222015-07-01 16:25:57 +0200155 err = -ECONNREFUSED;
156 if (fc->conn_error)
157 goto out;
158
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400159 req = fuse_request_alloc(npages);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200160 err = -ENOMEM;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400161 if (!req) {
162 if (for_background)
163 wake_up(&fc->blocked_waitq);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200164 goto out;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400165 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700166
Miklos Szeredi33649c92006-06-25 05:48:52 -0700167 fuse_req_init_context(req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200168 __set_bit(FR_WAITING, &req->flags);
169 if (for_background)
170 __set_bit(FR_BACKGROUND, &req->flags);
171
Miklos Szeredi334f4852005-09-09 13:10:27 -0700172 return req;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200173
174 out:
175 atomic_dec(&fc->num_waiting);
176 return ERR_PTR(err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700177}
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400178
179struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages)
180{
181 return __fuse_get_req(fc, npages, false);
182}
Tejun Heo08cbf542009-04-14 10:54:53 +0900183EXPORT_SYMBOL_GPL(fuse_get_req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700184
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400185struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc,
186 unsigned npages)
187{
188 return __fuse_get_req(fc, npages, true);
189}
190EXPORT_SYMBOL_GPL(fuse_get_req_for_background);
191
Miklos Szeredi33649c92006-06-25 05:48:52 -0700192/*
193 * Return request in fuse_file->reserved_req. However that may
194 * currently be in use. If that is the case, wait for it to become
195 * available.
196 */
197static struct fuse_req *get_reserved_req(struct fuse_conn *fc,
198 struct file *file)
199{
200 struct fuse_req *req = NULL;
201 struct fuse_file *ff = file->private_data;
202
203 do {
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700204 wait_event(fc->reserved_req_waitq, ff->reserved_req);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700205 spin_lock(&fc->lock);
206 if (ff->reserved_req) {
207 req = ff->reserved_req;
208 ff->reserved_req = NULL;
Al Virocb0942b2012-08-27 14:48:26 -0400209 req->stolen_file = get_file(file);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700210 }
211 spin_unlock(&fc->lock);
212 } while (!req);
213
214 return req;
215}
216
217/*
218 * Put stolen request back into fuse_file->reserved_req
219 */
220static void put_reserved_req(struct fuse_conn *fc, struct fuse_req *req)
221{
222 struct file *file = req->stolen_file;
223 struct fuse_file *ff = file->private_data;
224
225 spin_lock(&fc->lock);
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400226 fuse_request_init(req, req->pages, req->page_descs, req->max_pages);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700227 BUG_ON(ff->reserved_req);
228 ff->reserved_req = req;
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700229 wake_up_all(&fc->reserved_req_waitq);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700230 spin_unlock(&fc->lock);
231 fput(file);
232}
233
234/*
235 * Gets a requests for a file operation, always succeeds
236 *
237 * This is used for sending the FLUSH request, which must get to
238 * userspace, due to POSIX locks which may need to be unlocked.
239 *
240 * If allocation fails due to OOM, use the reserved request in
241 * fuse_file.
242 *
243 * This is very unlikely to deadlock accidentally, since the
244 * filesystem should not have it's own file open. If deadlock is
245 * intentional, it can still be broken by "aborting" the filesystem.
246 */
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400247struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc,
248 struct file *file)
Miklos Szeredi33649c92006-06-25 05:48:52 -0700249{
250 struct fuse_req *req;
251
252 atomic_inc(&fc->num_waiting);
Maxim Patlasov0aada882013-03-21 18:02:28 +0400253 wait_event(fc->blocked_waitq, fc->initialized);
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100254 /* Matches smp_wmb() in fuse_set_initialized() */
255 smp_rmb();
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400256 req = fuse_request_alloc(0);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700257 if (!req)
258 req = get_reserved_req(fc, file);
259
260 fuse_req_init_context(req);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200261 __set_bit(FR_WAITING, &req->flags);
262 __clear_bit(FR_BACKGROUND, &req->flags);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700263 return req;
264}
265
Miklos Szeredi334f4852005-09-09 13:10:27 -0700266void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req)
267{
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800268 if (atomic_dec_and_test(&req->count)) {
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200269 if (test_bit(FR_BACKGROUND, &req->flags)) {
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400270 /*
271 * We get here in the unlikely case that a background
272 * request was allocated but not sent
273 */
274 spin_lock(&fc->lock);
275 if (!fc->blocked)
276 wake_up(&fc->blocked_waitq);
277 spin_unlock(&fc->lock);
278 }
279
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200280 if (test_bit(FR_WAITING, &req->flags)) {
281 __clear_bit(FR_WAITING, &req->flags);
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200282 atomic_dec(&fc->num_waiting);
Miklos Szeredi73e0e732015-07-01 16:25:56 +0200283 }
Miklos Szeredi33649c92006-06-25 05:48:52 -0700284
285 if (req->stolen_file)
286 put_reserved_req(fc, req);
287 else
288 fuse_request_free(req);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800289 }
290}
Tejun Heo08cbf542009-04-14 10:54:53 +0900291EXPORT_SYMBOL_GPL(fuse_put_request);
Miklos Szeredi7128ec22006-02-04 23:27:40 -0800292
Miklos Szeredid12def12008-02-06 01:38:39 -0800293static unsigned len_args(unsigned numargs, struct fuse_arg *args)
294{
295 unsigned nbytes = 0;
296 unsigned i;
297
298 for (i = 0; i < numargs; i++)
299 nbytes += args[i].size;
300
301 return nbytes;
302}
303
Miklos Szeredif88996a2015-07-01 16:26:01 +0200304static u64 fuse_get_unique(struct fuse_iqueue *fiq)
Miklos Szeredid12def12008-02-06 01:38:39 -0800305{
Miklos Szeredif88996a2015-07-01 16:26:01 +0200306 return ++fiq->reqctr;
Miklos Szeredid12def12008-02-06 01:38:39 -0800307}
308
Miklos Szeredif88996a2015-07-01 16:26:01 +0200309static void queue_request(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800310{
Miklos Szeredid12def12008-02-06 01:38:39 -0800311 req->in.h.len = sizeof(struct fuse_in_header) +
312 len_args(req->in.numargs, (struct fuse_arg *) req->in.args);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200313 list_add_tail(&req->list, &fiq->pending);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200314 wake_up_locked(&fiq->waitq);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200315 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredid12def12008-02-06 01:38:39 -0800316}
317
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100318void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
319 u64 nodeid, u64 nlookup)
320{
Miklos Szeredif88996a2015-07-01 16:26:01 +0200321 struct fuse_iqueue *fiq = &fc->iq;
322
Miklos Szeredi02c048b2010-12-07 20:16:56 +0100323 forget->forget_one.nodeid = nodeid;
324 forget->forget_one.nlookup = nlookup;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100325
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200326 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200327 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200328 fiq->forget_list_tail->next = forget;
329 fiq->forget_list_tail = forget;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200330 wake_up_locked(&fiq->waitq);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200331 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredi5dfcc872011-09-12 09:38:03 +0200332 } else {
333 kfree(forget);
334 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200335 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100336}
337
Miklos Szeredid12def12008-02-06 01:38:39 -0800338static void flush_bg_queue(struct fuse_conn *fc)
339{
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700340 while (fc->active_background < fc->max_background &&
Miklos Szeredid12def12008-02-06 01:38:39 -0800341 !list_empty(&fc->bg_queue)) {
342 struct fuse_req *req;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200343 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredid12def12008-02-06 01:38:39 -0800344
345 req = list_entry(fc->bg_queue.next, struct fuse_req, list);
346 list_del(&req->list);
347 fc->active_background++;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200348 spin_lock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200349 req->in.h.unique = fuse_get_unique(fiq);
350 queue_request(fiq, req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200351 spin_unlock(&fiq->waitq.lock);
Miklos Szeredid12def12008-02-06 01:38:39 -0800352 }
353}
354
Miklos Szeredi6dbbcb12006-04-26 10:49:06 +0200355/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700356 * This function is called when a request is finished. Either a reply
Miklos Szeredif9a28422006-06-25 05:48:53 -0700357 * has arrived or it was aborted (and not yet sent) or some error
Miklos Szeredif43b1552006-01-16 22:14:26 -0800358 * occurred during communication with userspace, or the device file
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700359 * was closed. The requester thread is woken up (if still waiting),
360 * the 'end' callback is called if given, else the reference to the
361 * request is released
Miklos Szeredi334f4852005-09-09 13:10:27 -0700362 */
363static void request_end(struct fuse_conn *fc, struct fuse_req *req)
364{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200365 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi365ae712015-07-01 16:26:06 +0200366
Miklos Szerediefe28002015-07-01 16:26:07 +0200367 if (test_and_set_bit(FR_FINISHED, &req->flags))
Miklos Szeredi365ae712015-07-01 16:26:06 +0200368 return;
Miklos Szeredi365ae712015-07-01 16:26:06 +0200369
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200370 spin_lock(&fiq->waitq.lock);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200371 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200372 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200373 WARN_ON(test_bit(FR_PENDING, &req->flags));
374 WARN_ON(test_bit(FR_SENT, &req->flags));
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200375 if (test_bit(FR_BACKGROUND, &req->flags)) {
Miklos Szerediefe28002015-07-01 16:26:07 +0200376 spin_lock(&fc->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200377 clear_bit(FR_BACKGROUND, &req->flags);
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400378 if (fc->num_background == fc->max_background)
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700379 fc->blocked = 0;
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400380
381 /* Wake up next waiter, if any */
Miklos Szeredi3c18ef82013-04-17 21:50:58 +0200382 if (!fc->blocked && waitqueue_active(&fc->blocked_waitq))
Maxim Patlasov722d2be2013-03-21 18:02:36 +0400383 wake_up(&fc->blocked_waitq);
384
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700385 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900386 fc->connected && fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200387 clear_bdi_congested(&fc->bdi, BLK_RW_SYNC);
388 clear_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredif92b99b2007-10-16 23:30:59 -0700389 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700390 fc->num_background--;
Miklos Szeredid12def12008-02-06 01:38:39 -0800391 fc->active_background--;
392 flush_bg_queue(fc);
Miklos Szerediefe28002015-07-01 16:26:07 +0200393 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700394 }
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700395 wake_up(&req->waitq);
Miklos Szeredi1e6881c2015-07-01 16:26:07 +0200396 if (req->end)
397 req->end(fc, req);
Tejun Heoe9bb09d2008-11-26 12:03:54 +0100398 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700399}
400
Miklos Szeredif88996a2015-07-01 16:26:01 +0200401static void queue_interrupt(struct fuse_iqueue *fiq, struct fuse_req *req)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700402{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200403 spin_lock(&fiq->waitq.lock);
Sahitya Tummala72834482017-02-08 20:30:56 +0530404 if (test_bit(FR_FINISHED, &req->flags)) {
405 spin_unlock(&fiq->waitq.lock);
406 return;
407 }
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200408 if (list_empty(&req->intr_entry)) {
409 list_add_tail(&req->intr_entry, &fiq->interrupts);
410 wake_up_locked(&fiq->waitq);
411 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200412 spin_unlock(&fiq->waitq.lock);
Miklos Szeredif88996a2015-07-01 16:26:01 +0200413 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700414}
415
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700416static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700417{
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200418 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic4775262015-07-01 16:26:00 +0200419 int err;
420
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700421 if (!fc->no_interrupt) {
422 /* Any signal may interrupt this */
Miklos Szeredic4775262015-07-01 16:26:00 +0200423 err = wait_event_interruptible(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200424 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200425 if (!err)
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700426 return;
427
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200428 set_bit(FR_INTERRUPTED, &req->flags);
Miklos Szeredi8f7bb362015-07-01 16:26:03 +0200429 /* matches barrier in fuse_dev_do_read() */
430 smp_mb__after_atomic();
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200431 if (test_bit(FR_SENT, &req->flags))
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200432 queue_interrupt(fiq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700433 }
434
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200435 if (!test_bit(FR_FORCE, &req->flags)) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700436 /* Only fatal signals may interrupt this */
Al Viro7d3a07f2016-07-19 03:08:27 -0400437 err = wait_event_killable(req->waitq,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200438 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredic4775262015-07-01 16:26:00 +0200439 if (!err)
Miklos Szeredia131de02007-10-16 23:31:04 -0700440 return;
441
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200442 spin_lock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700443 /* Request is not yet in userspace, bail out */
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200444 if (test_bit(FR_PENDING, &req->flags)) {
Miklos Szeredia131de02007-10-16 23:31:04 -0700445 list_del(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200446 spin_unlock(&fiq->waitq.lock);
Miklos Szeredia131de02007-10-16 23:31:04 -0700447 __fuse_put_request(req);
448 req->out.h.error = -EINTR;
449 return;
450 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200451 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700452 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700453
Miklos Szeredia131de02007-10-16 23:31:04 -0700454 /*
455 * Either request is already in userspace, or it was forced.
456 * Wait it out.
457 */
Todd Poynor1672c662011-08-24 15:01:30 -0700458 while (!test_bit(FR_FINISHED, &req->flags))
459 wait_event_freezable(req->waitq,
460 test_bit(FR_FINISHED, &req->flags));
Miklos Szeredi334f4852005-09-09 13:10:27 -0700461}
462
Eric Wong6a4e9222013-02-04 13:04:44 +0000463static void __fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700464{
Miklos Szeredie16714d2015-07-01 16:26:01 +0200465 struct fuse_iqueue *fiq = &fc->iq;
466
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200467 BUG_ON(test_bit(FR_BACKGROUND, &req->flags));
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200468 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200469 if (!fiq->connected) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200470 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700471 req->out.h.error = -ENOTCONN;
Miklos Szeredic4775262015-07-01 16:26:00 +0200472 } else {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200473 req->in.h.unique = fuse_get_unique(fiq);
474 queue_request(fiq, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700475 /* acquire extra reference, since request is still needed
476 after request_end() */
477 __fuse_get_request(req);
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200478 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700479
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700480 request_wait_answer(fc, req);
Miklos Szeredic4775262015-07-01 16:26:00 +0200481 /* Pairs with smp_wmb() in request_end() */
482 smp_rmb();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700483 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700484}
Eric Wong6a4e9222013-02-04 13:04:44 +0000485
486void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req)
487{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200488 __set_bit(FR_ISREPLY, &req->flags);
489 if (!test_bit(FR_WAITING, &req->flags)) {
490 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200491 atomic_inc(&fc->num_waiting);
492 }
Eric Wong6a4e9222013-02-04 13:04:44 +0000493 __fuse_request_send(fc, req);
494}
Tejun Heo08cbf542009-04-14 10:54:53 +0900495EXPORT_SYMBOL_GPL(fuse_request_send);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700496
Miklos Szeredi21f62172015-01-06 10:45:35 +0100497static void fuse_adjust_compat(struct fuse_conn *fc, struct fuse_args *args)
498{
499 if (fc->minor < 4 && args->in.h.opcode == FUSE_STATFS)
500 args->out.args[0].size = FUSE_COMPAT_STATFS_SIZE;
501
502 if (fc->minor < 9) {
503 switch (args->in.h.opcode) {
504 case FUSE_LOOKUP:
505 case FUSE_CREATE:
506 case FUSE_MKNOD:
507 case FUSE_MKDIR:
508 case FUSE_SYMLINK:
509 case FUSE_LINK:
510 args->out.args[0].size = FUSE_COMPAT_ENTRY_OUT_SIZE;
511 break;
512 case FUSE_GETATTR:
513 case FUSE_SETATTR:
514 args->out.args[0].size = FUSE_COMPAT_ATTR_OUT_SIZE;
515 break;
516 }
517 }
518 if (fc->minor < 12) {
519 switch (args->in.h.opcode) {
520 case FUSE_CREATE:
521 args->in.args[0].size = sizeof(struct fuse_open_in);
522 break;
523 case FUSE_MKNOD:
524 args->in.args[0].size = FUSE_COMPAT_MKNOD_IN_SIZE;
525 break;
526 }
527 }
528}
529
Miklos Szeredi70781872014-12-12 09:49:05 +0100530ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args)
531{
532 struct fuse_req *req;
533 ssize_t ret;
534
535 req = fuse_get_req(fc, 0);
536 if (IS_ERR(req))
537 return PTR_ERR(req);
538
Miklos Szeredi21f62172015-01-06 10:45:35 +0100539 /* Needs to be done after fuse_get_req() so that fc->minor is valid */
540 fuse_adjust_compat(fc, args);
541
Miklos Szeredi70781872014-12-12 09:49:05 +0100542 req->in.h.opcode = args->in.h.opcode;
543 req->in.h.nodeid = args->in.h.nodeid;
544 req->in.numargs = args->in.numargs;
545 memcpy(req->in.args, args->in.args,
546 args->in.numargs * sizeof(struct fuse_in_arg));
547 req->out.argvar = args->out.argvar;
548 req->out.numargs = args->out.numargs;
549 memcpy(req->out.args, args->out.args,
550 args->out.numargs * sizeof(struct fuse_arg));
551 fuse_request_send(fc, req);
552 ret = req->out.h.error;
553 if (!ret && args->out.argvar) {
554 BUG_ON(args->out.numargs != 1);
555 ret = req->out.args[0].size;
556 }
557 fuse_put_request(fc, req);
558
559 return ret;
560}
561
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200562/*
563 * Called under fc->lock
564 *
565 * fc->connected must have been checked previously
566 */
567void fuse_request_send_background_locked(struct fuse_conn *fc,
568 struct fuse_req *req)
Miklos Szeredid12def12008-02-06 01:38:39 -0800569{
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200570 BUG_ON(!test_bit(FR_BACKGROUND, &req->flags));
571 if (!test_bit(FR_WAITING, &req->flags)) {
572 __set_bit(FR_WAITING, &req->flags);
Miklos Szeredi5437f242015-07-01 16:25:56 +0200573 atomic_inc(&fc->num_waiting);
574 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200575 __set_bit(FR_ISREPLY, &req->flags);
Miklos Szeredid12def12008-02-06 01:38:39 -0800576 fc->num_background++;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700577 if (fc->num_background == fc->max_background)
Miklos Szeredid12def12008-02-06 01:38:39 -0800578 fc->blocked = 1;
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700579 if (fc->num_background == fc->congestion_threshold &&
Tejun Heoa325f9b2009-04-14 10:54:52 +0900580 fc->bdi_initialized) {
Jens Axboe8aa7e842009-07-09 14:52:32 +0200581 set_bdi_congested(&fc->bdi, BLK_RW_SYNC);
582 set_bdi_congested(&fc->bdi, BLK_RW_ASYNC);
Miklos Szeredid12def12008-02-06 01:38:39 -0800583 }
584 list_add_tail(&req->list, &fc->bg_queue);
585 flush_bg_queue(fc);
586}
587
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200588void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700589{
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200590 BUG_ON(!req->end);
Miklos Szeredid7133112006-04-10 22:54:55 -0700591 spin_lock(&fc->lock);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700592 if (fc->connected) {
Miklos Szeredif0139aa2015-07-01 16:25:57 +0200593 fuse_request_send_background_locked(fc, req);
Miklos Szeredid7133112006-04-10 22:54:55 -0700594 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700595 } else {
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200596 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700597 req->out.h.error = -ENOTCONN;
Miklos Szeredi42dc6212015-07-01 16:25:56 +0200598 req->end(fc, req);
599 fuse_put_request(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700600 }
601}
Tejun Heo08cbf542009-04-14 10:54:53 +0900602EXPORT_SYMBOL_GPL(fuse_request_send_background);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700603
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200604static int fuse_request_send_notify_reply(struct fuse_conn *fc,
605 struct fuse_req *req, u64 unique)
606{
607 int err = -ENODEV;
Miklos Szeredif88996a2015-07-01 16:26:01 +0200608 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200609
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200610 __clear_bit(FR_ISREPLY, &req->flags);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200611 req->in.h.unique = unique;
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200612 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +0200613 if (fiq->connected) {
Miklos Szeredif88996a2015-07-01 16:26:01 +0200614 queue_request(fiq, req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200615 err = 0;
616 }
Miklos Szeredi4ce60812015-07-01 16:26:02 +0200617 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200618
619 return err;
620}
621
Anand V. Avati0b05b182012-08-19 08:53:23 -0400622void fuse_force_forget(struct file *file, u64 nodeid)
623{
Al Viro6131ffa2013-02-27 16:59:05 -0500624 struct inode *inode = file_inode(file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400625 struct fuse_conn *fc = get_fuse_conn(inode);
626 struct fuse_req *req;
627 struct fuse_forget_in inarg;
628
629 memset(&inarg, 0, sizeof(inarg));
630 inarg.nlookup = 1;
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400631 req = fuse_get_req_nofail_nopages(fc, file);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400632 req->in.h.opcode = FUSE_FORGET;
633 req->in.h.nodeid = nodeid;
634 req->in.numargs = 1;
635 req->in.args[0].size = sizeof(inarg);
636 req->in.args[0].value = &inarg;
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200637 __clear_bit(FR_ISREPLY, &req->flags);
Eric Wong6a4e9222013-02-04 13:04:44 +0000638 __fuse_request_send(fc, req);
639 /* ignore errors */
640 fuse_put_request(fc, req);
Anand V. Avati0b05b182012-08-19 08:53:23 -0400641}
642
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700643/*
Miklos Szeredi334f4852005-09-09 13:10:27 -0700644 * Lock the request. Up to the next unlock_request() there mustn't be
645 * anything that could cause a page-fault. If the request was already
Miklos Szeredif9a28422006-06-25 05:48:53 -0700646 * aborted bail out.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700647 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200648static int lock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700649{
650 int err = 0;
651 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200652 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200653 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi334f4852005-09-09 13:10:27 -0700654 err = -ENOENT;
655 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200656 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200657 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700658 }
659 return err;
660}
661
662/*
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200663 * Unlock request. If it was aborted while locked, caller is responsible
664 * for unlocking and ending the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700665 */
Miklos Szeredidc008092015-07-01 16:25:58 +0200666static int unlock_request(struct fuse_req *req)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700667{
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200668 int err = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700669 if (req) {
Miklos Szeredidc008092015-07-01 16:25:58 +0200670 spin_lock(&req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200671 if (test_bit(FR_ABORTED, &req->flags))
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200672 err = -ENOENT;
673 else
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200674 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredidc008092015-07-01 16:25:58 +0200675 spin_unlock(&req->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700676 }
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200677 return err;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700678}
679
680struct fuse_copy_state {
681 int write;
682 struct fuse_req *req;
Al Viro6c09e942015-04-03 22:06:08 -0400683 struct iov_iter *iter;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200684 struct pipe_buffer *pipebufs;
685 struct pipe_buffer *currbuf;
686 struct pipe_inode_info *pipe;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700687 unsigned long nr_segs;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700688 struct page *pg;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700689 unsigned len;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200690 unsigned offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200691 unsigned move_pages:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700692};
693
Miklos Szeredidc008092015-07-01 16:25:58 +0200694static void fuse_copy_init(struct fuse_copy_state *cs, int write,
Al Viro6c09e942015-04-03 22:06:08 -0400695 struct iov_iter *iter)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700696{
697 memset(cs, 0, sizeof(*cs));
698 cs->write = write;
Al Viro6c09e942015-04-03 22:06:08 -0400699 cs->iter = iter;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700700}
701
702/* Unmap and put previous page of userspace buffer */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800703static void fuse_copy_finish(struct fuse_copy_state *cs)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700704{
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200705 if (cs->currbuf) {
706 struct pipe_buffer *buf = cs->currbuf;
707
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200708 if (cs->write)
Miklos Szeredic3021622010-05-25 15:06:07 +0200709 buf->len = PAGE_SIZE - cs->len;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200710 cs->currbuf = NULL;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200711 } else if (cs->pg) {
Miklos Szeredi334f4852005-09-09 13:10:27 -0700712 if (cs->write) {
713 flush_dcache_page(cs->pg);
714 set_page_dirty_lock(cs->pg);
715 }
716 put_page(cs->pg);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700717 }
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200718 cs->pg = NULL;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700719}
720
721/*
722 * Get another pagefull of userspace buffer, and map it to kernel
723 * address space, and lock request
724 */
725static int fuse_copy_fill(struct fuse_copy_state *cs)
726{
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200727 struct page *page;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700728 int err;
729
Miklos Szeredidc008092015-07-01 16:25:58 +0200730 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200731 if (err)
732 return err;
733
Miklos Szeredi334f4852005-09-09 13:10:27 -0700734 fuse_copy_finish(cs);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200735 if (cs->pipebufs) {
736 struct pipe_buffer *buf = cs->pipebufs;
737
Miklos Szeredic3021622010-05-25 15:06:07 +0200738 if (!cs->write) {
Miklos Szeredifba597d2016-09-27 10:45:12 +0200739 err = pipe_buf_confirm(cs->pipe, buf);
Miklos Szeredic3021622010-05-25 15:06:07 +0200740 if (err)
741 return err;
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200742
Miklos Szeredic3021622010-05-25 15:06:07 +0200743 BUG_ON(!cs->nr_segs);
744 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200745 cs->pg = buf->page;
746 cs->offset = buf->offset;
Miklos Szeredic3021622010-05-25 15:06:07 +0200747 cs->len = buf->len;
Miklos Szeredic3021622010-05-25 15:06:07 +0200748 cs->pipebufs++;
749 cs->nr_segs--;
750 } else {
Miklos Szeredic3021622010-05-25 15:06:07 +0200751 if (cs->nr_segs == cs->pipe->buffers)
752 return -EIO;
753
754 page = alloc_page(GFP_HIGHUSER);
755 if (!page)
756 return -ENOMEM;
757
758 buf->page = page;
759 buf->offset = 0;
760 buf->len = 0;
761
762 cs->currbuf = buf;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200763 cs->pg = page;
764 cs->offset = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +0200765 cs->len = PAGE_SIZE;
766 cs->pipebufs++;
767 cs->nr_segs++;
768 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200769 } else {
Al Viro6c09e942015-04-03 22:06:08 -0400770 size_t off;
771 err = iov_iter_get_pages(cs->iter, &page, PAGE_SIZE, 1, &off);
Miklos Szeredidd3bb142010-05-25 15:06:06 +0200772 if (err < 0)
773 return err;
Al Viro6c09e942015-04-03 22:06:08 -0400774 BUG_ON(!err);
775 cs->len = err;
776 cs->offset = off;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200777 cs->pg = page;
Al Viro6c09e942015-04-03 22:06:08 -0400778 iov_iter_advance(cs->iter, err);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700779 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700780
Miklos Szeredidc008092015-07-01 16:25:58 +0200781 return lock_request(cs->req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700782}
783
784/* Do as much copy to/from userspace buffer as we can */
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800785static int fuse_copy_do(struct fuse_copy_state *cs, void **val, unsigned *size)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700786{
787 unsigned ncpy = min(*size, cs->len);
788 if (val) {
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200789 void *pgaddr = kmap_atomic(cs->pg);
790 void *buf = pgaddr + cs->offset;
791
Miklos Szeredi334f4852005-09-09 13:10:27 -0700792 if (cs->write)
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200793 memcpy(buf, *val, ncpy);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700794 else
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200795 memcpy(*val, buf, ncpy);
796
797 kunmap_atomic(pgaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700798 *val += ncpy;
799 }
800 *size -= ncpy;
801 cs->len -= ncpy;
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200802 cs->offset += ncpy;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700803 return ncpy;
804}
805
Miklos Szeredice534fb2010-05-25 15:06:07 +0200806static int fuse_check_page(struct page *page)
807{
808 if (page_mapcount(page) ||
809 page->mapping != NULL ||
810 page_count(page) != 1 ||
811 (page->flags & PAGE_FLAGS_CHECK_AT_PREP &
812 ~(1 << PG_locked |
813 1 << PG_referenced |
814 1 << PG_uptodate |
815 1 << PG_lru |
816 1 << PG_active |
817 1 << PG_reclaim))) {
818 printk(KERN_WARNING "fuse: trying to steal weird page\n");
819 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);
820 return 1;
821 }
822 return 0;
823}
824
825static int fuse_try_move_page(struct fuse_copy_state *cs, struct page **pagep)
826{
827 int err;
828 struct page *oldpage = *pagep;
829 struct page *newpage;
830 struct pipe_buffer *buf = cs->pipebufs;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200831
Miklos Szeredidc008092015-07-01 16:25:58 +0200832 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200833 if (err)
834 return err;
835
Miklos Szeredice534fb2010-05-25 15:06:07 +0200836 fuse_copy_finish(cs);
837
Miklos Szeredifba597d2016-09-27 10:45:12 +0200838 err = pipe_buf_confirm(cs->pipe, buf);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200839 if (err)
840 return err;
841
842 BUG_ON(!cs->nr_segs);
843 cs->currbuf = buf;
844 cs->len = buf->len;
845 cs->pipebufs++;
846 cs->nr_segs--;
847
848 if (cs->len != PAGE_SIZE)
849 goto out_fallback;
850
Miklos Szeredica76f5b2016-09-27 10:45:12 +0200851 if (pipe_buf_steal(cs->pipe, buf) != 0)
Miklos Szeredice534fb2010-05-25 15:06:07 +0200852 goto out_fallback;
853
854 newpage = buf->page;
855
Miklos Szerediaa991b32015-02-26 11:45:47 +0100856 if (!PageUptodate(newpage))
857 SetPageUptodate(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200858
859 ClearPageMappedToDisk(newpage);
860
861 if (fuse_check_page(newpage) != 0)
862 goto out_fallback_unlock;
863
Miklos Szeredice534fb2010-05-25 15:06:07 +0200864 /*
865 * This is a new and locked page, it shouldn't be mapped or
866 * have any special flags on it
867 */
868 if (WARN_ON(page_mapped(oldpage)))
869 goto out_fallback_unlock;
870 if (WARN_ON(page_has_private(oldpage)))
871 goto out_fallback_unlock;
872 if (WARN_ON(PageDirty(oldpage) || PageWriteback(oldpage)))
873 goto out_fallback_unlock;
874 if (WARN_ON(PageMlocked(oldpage)))
875 goto out_fallback_unlock;
876
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700877 err = replace_page_cache_page(oldpage, newpage, GFP_KERNEL);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200878 if (err) {
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700879 unlock_page(newpage);
880 return err;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200881 }
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700882
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300883 get_page(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200884
885 if (!(buf->flags & PIPE_BUF_FLAG_LRU))
886 lru_cache_add_file(newpage);
887
888 err = 0;
Miklos Szeredidc008092015-07-01 16:25:58 +0200889 spin_lock(&cs->req->waitq.lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200890 if (test_bit(FR_ABORTED, &cs->req->flags))
Miklos Szeredice534fb2010-05-25 15:06:07 +0200891 err = -ENOENT;
892 else
893 *pagep = newpage;
Miklos Szeredidc008092015-07-01 16:25:58 +0200894 spin_unlock(&cs->req->waitq.lock);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200895
896 if (err) {
897 unlock_page(newpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300898 put_page(newpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200899 return err;
900 }
901
902 unlock_page(oldpage);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300903 put_page(oldpage);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200904 cs->len = 0;
905
906 return 0;
907
908out_fallback_unlock:
909 unlock_page(newpage);
910out_fallback:
Miklos Szeredic55a01d2014-07-07 15:28:51 +0200911 cs->pg = buf->page;
912 cs->offset = buf->offset;
Miklos Szeredice534fb2010-05-25 15:06:07 +0200913
Miklos Szeredidc008092015-07-01 16:25:58 +0200914 err = lock_request(cs->req);
Miklos Szeredice534fb2010-05-25 15:06:07 +0200915 if (err)
916 return err;
917
918 return 1;
919}
920
Miklos Szeredic3021622010-05-25 15:06:07 +0200921static int fuse_ref_page(struct fuse_copy_state *cs, struct page *page,
922 unsigned offset, unsigned count)
923{
924 struct pipe_buffer *buf;
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200925 int err;
Miklos Szeredic3021622010-05-25 15:06:07 +0200926
927 if (cs->nr_segs == cs->pipe->buffers)
928 return -EIO;
929
Miklos Szeredidc008092015-07-01 16:25:58 +0200930 err = unlock_request(cs->req);
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +0200931 if (err)
932 return err;
933
Miklos Szeredic3021622010-05-25 15:06:07 +0200934 fuse_copy_finish(cs);
935
936 buf = cs->pipebufs;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300937 get_page(page);
Miklos Szeredic3021622010-05-25 15:06:07 +0200938 buf->page = page;
939 buf->offset = offset;
940 buf->len = count;
941
942 cs->pipebufs++;
943 cs->nr_segs++;
944 cs->len = 0;
945
946 return 0;
947}
948
Miklos Szeredi334f4852005-09-09 13:10:27 -0700949/*
950 * Copy a page in the request to/from the userspace buffer. Must be
951 * done atomically
952 */
Miklos Szeredice534fb2010-05-25 15:06:07 +0200953static int fuse_copy_page(struct fuse_copy_state *cs, struct page **pagep,
Miklos Szeredi8bfc0162006-01-16 22:14:28 -0800954 unsigned offset, unsigned count, int zeroing)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700955{
Miklos Szeredice534fb2010-05-25 15:06:07 +0200956 int err;
957 struct page *page = *pagep;
958
Miklos Szeredib6777c42010-10-26 14:22:27 -0700959 if (page && zeroing && count < PAGE_SIZE)
960 clear_highpage(page);
961
Miklos Szeredi334f4852005-09-09 13:10:27 -0700962 while (count) {
Miklos Szeredic3021622010-05-25 15:06:07 +0200963 if (cs->write && cs->pipebufs && page) {
964 return fuse_ref_page(cs, page, offset, count);
965 } else if (!cs->len) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200966 if (cs->move_pages && page &&
967 offset == 0 && count == PAGE_SIZE) {
968 err = fuse_try_move_page(cs, pagep);
969 if (err <= 0)
970 return err;
971 } else {
972 err = fuse_copy_fill(cs);
973 if (err)
974 return err;
975 }
Miklos Szeredi1729a162008-11-26 12:03:54 +0100976 }
Miklos Szeredi334f4852005-09-09 13:10:27 -0700977 if (page) {
Cong Wang2408f6e2011-11-25 23:14:30 +0800978 void *mapaddr = kmap_atomic(page);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700979 void *buf = mapaddr + offset;
980 offset += fuse_copy_do(cs, &buf, &count);
Cong Wang2408f6e2011-11-25 23:14:30 +0800981 kunmap_atomic(mapaddr);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700982 } else
983 offset += fuse_copy_do(cs, NULL, &count);
984 }
985 if (page && !cs->write)
986 flush_dcache_page(page);
987 return 0;
988}
989
990/* Copy pages in the request to/from userspace buffer */
991static int fuse_copy_pages(struct fuse_copy_state *cs, unsigned nbytes,
992 int zeroing)
993{
994 unsigned i;
995 struct fuse_req *req = cs->req;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700996
997 for (i = 0; i < req->num_pages && (nbytes || zeroing); i++) {
Miklos Szeredice534fb2010-05-25 15:06:07 +0200998 int err;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +0400999 unsigned offset = req->page_descs[i].offset;
1000 unsigned count = min(nbytes, req->page_descs[i].length);
Miklos Szeredice534fb2010-05-25 15:06:07 +02001001
1002 err = fuse_copy_page(cs, &req->pages[i], offset, count,
1003 zeroing);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001004 if (err)
1005 return err;
1006
1007 nbytes -= count;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001008 }
1009 return 0;
1010}
1011
1012/* Copy a single argument in the request to/from userspace buffer */
1013static int fuse_copy_one(struct fuse_copy_state *cs, void *val, unsigned size)
1014{
1015 while (size) {
Miklos Szeredi1729a162008-11-26 12:03:54 +01001016 if (!cs->len) {
1017 int err = fuse_copy_fill(cs);
1018 if (err)
1019 return err;
1020 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001021 fuse_copy_do(cs, &val, &size);
1022 }
1023 return 0;
1024}
1025
1026/* Copy request arguments to/from userspace buffer */
1027static int fuse_copy_args(struct fuse_copy_state *cs, unsigned numargs,
1028 unsigned argpages, struct fuse_arg *args,
1029 int zeroing)
1030{
1031 int err = 0;
1032 unsigned i;
1033
1034 for (i = 0; !err && i < numargs; i++) {
1035 struct fuse_arg *arg = &args[i];
1036 if (i == numargs - 1 && argpages)
1037 err = fuse_copy_pages(cs, arg->size, zeroing);
1038 else
1039 err = fuse_copy_one(cs, arg->value, arg->size);
1040 }
1041 return err;
1042}
1043
Miklos Szeredif88996a2015-07-01 16:26:01 +02001044static int forget_pending(struct fuse_iqueue *fiq)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001045{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001046 return fiq->forget_list_head.next != NULL;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001047}
1048
Miklos Szeredif88996a2015-07-01 16:26:01 +02001049static int request_pending(struct fuse_iqueue *fiq)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001050{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001051 return !list_empty(&fiq->pending) || !list_empty(&fiq->interrupts) ||
1052 forget_pending(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001053}
1054
Miklos Szeredi334f4852005-09-09 13:10:27 -07001055/*
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001056 * Transfer an interrupt request to userspace
1057 *
1058 * Unlike other requests this is assembled on demand, without a need
1059 * to allocate a separate fuse_req structure.
1060 *
Miklos Szeredifd22d622015-07-01 16:26:03 +02001061 * Called with fiq->waitq.lock held, releases it
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001062 */
Miklos Szeredifd22d622015-07-01 16:26:03 +02001063static int fuse_read_interrupt(struct fuse_iqueue *fiq,
1064 struct fuse_copy_state *cs,
Miklos Szeredic3021622010-05-25 15:06:07 +02001065 size_t nbytes, struct fuse_req *req)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001066__releases(fiq->waitq.lock)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001067{
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001068 struct fuse_in_header ih;
1069 struct fuse_interrupt_in arg;
1070 unsigned reqsize = sizeof(ih) + sizeof(arg);
1071 int err;
1072
1073 list_del_init(&req->intr_entry);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001074 req->intr_unique = fuse_get_unique(fiq);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001075 memset(&ih, 0, sizeof(ih));
1076 memset(&arg, 0, sizeof(arg));
1077 ih.len = reqsize;
1078 ih.opcode = FUSE_INTERRUPT;
1079 ih.unique = req->intr_unique;
1080 arg.unique = req->in.h.unique;
1081
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001082 spin_unlock(&fiq->waitq.lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001083 if (nbytes < reqsize)
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001084 return -EINVAL;
1085
Miklos Szeredic3021622010-05-25 15:06:07 +02001086 err = fuse_copy_one(cs, &ih, sizeof(ih));
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001087 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001088 err = fuse_copy_one(cs, &arg, sizeof(arg));
1089 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001090
1091 return err ? err : reqsize;
1092}
1093
Miklos Szeredif88996a2015-07-01 16:26:01 +02001094static struct fuse_forget_link *dequeue_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001095 unsigned max,
1096 unsigned *countp)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001097{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001098 struct fuse_forget_link *head = fiq->forget_list_head.next;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001099 struct fuse_forget_link **newhead = &head;
1100 unsigned count;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001101
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001102 for (count = 0; *newhead != NULL && count < max; count++)
1103 newhead = &(*newhead)->next;
1104
Miklos Szeredif88996a2015-07-01 16:26:01 +02001105 fiq->forget_list_head.next = *newhead;
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001106 *newhead = NULL;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001107 if (fiq->forget_list_head.next == NULL)
1108 fiq->forget_list_tail = &fiq->forget_list_head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001109
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001110 if (countp != NULL)
1111 *countp = count;
1112
1113 return head;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001114}
1115
Miklos Szeredifd22d622015-07-01 16:26:03 +02001116static int fuse_read_single_forget(struct fuse_iqueue *fiq,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001117 struct fuse_copy_state *cs,
1118 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001119__releases(fiq->waitq.lock)
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001120{
1121 int err;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001122 struct fuse_forget_link *forget = dequeue_forget(fiq, 1, NULL);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001123 struct fuse_forget_in arg = {
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001124 .nlookup = forget->forget_one.nlookup,
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001125 };
1126 struct fuse_in_header ih = {
1127 .opcode = FUSE_FORGET,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001128 .nodeid = forget->forget_one.nodeid,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001129 .unique = fuse_get_unique(fiq),
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001130 .len = sizeof(ih) + sizeof(arg),
1131 };
1132
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001133 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001134 kfree(forget);
1135 if (nbytes < ih.len)
1136 return -EINVAL;
1137
1138 err = fuse_copy_one(cs, &ih, sizeof(ih));
1139 if (!err)
1140 err = fuse_copy_one(cs, &arg, sizeof(arg));
1141 fuse_copy_finish(cs);
1142
1143 if (err)
1144 return err;
1145
1146 return ih.len;
1147}
1148
Miklos Szeredifd22d622015-07-01 16:26:03 +02001149static int fuse_read_batch_forget(struct fuse_iqueue *fiq,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001150 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001151__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001152{
1153 int err;
1154 unsigned max_forgets;
1155 unsigned count;
1156 struct fuse_forget_link *head;
1157 struct fuse_batch_forget_in arg = { .count = 0 };
1158 struct fuse_in_header ih = {
1159 .opcode = FUSE_BATCH_FORGET,
Miklos Szeredif88996a2015-07-01 16:26:01 +02001160 .unique = fuse_get_unique(fiq),
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001161 .len = sizeof(ih) + sizeof(arg),
1162 };
1163
1164 if (nbytes < ih.len) {
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001165 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001166 return -EINVAL;
1167 }
1168
1169 max_forgets = (nbytes - ih.len) / sizeof(struct fuse_forget_one);
Miklos Szeredif88996a2015-07-01 16:26:01 +02001170 head = dequeue_forget(fiq, max_forgets, &count);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001171 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001172
1173 arg.count = count;
1174 ih.len += count * sizeof(struct fuse_forget_one);
1175 err = fuse_copy_one(cs, &ih, sizeof(ih));
1176 if (!err)
1177 err = fuse_copy_one(cs, &arg, sizeof(arg));
1178
1179 while (head) {
1180 struct fuse_forget_link *forget = head;
1181
1182 if (!err) {
1183 err = fuse_copy_one(cs, &forget->forget_one,
1184 sizeof(forget->forget_one));
1185 }
1186 head = forget->next;
1187 kfree(forget);
1188 }
1189
1190 fuse_copy_finish(cs);
1191
1192 if (err)
1193 return err;
1194
1195 return ih.len;
1196}
1197
Miklos Szeredifd22d622015-07-01 16:26:03 +02001198static int fuse_read_forget(struct fuse_conn *fc, struct fuse_iqueue *fiq,
1199 struct fuse_copy_state *cs,
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001200 size_t nbytes)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001201__releases(fiq->waitq.lock)
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001202{
Miklos Szeredif88996a2015-07-01 16:26:01 +02001203 if (fc->minor < 16 || fiq->forget_list_head.next->next == NULL)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001204 return fuse_read_single_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001205 else
Miklos Szeredifd22d622015-07-01 16:26:03 +02001206 return fuse_read_batch_forget(fiq, cs, nbytes);
Miklos Szeredi02c048b2010-12-07 20:16:56 +01001207}
1208
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001209/*
Miklos Szeredi334f4852005-09-09 13:10:27 -07001210 * Read a single request into the userspace filesystem's buffer. This
1211 * function waits until a request is available, then removes it from
1212 * the pending list and copies request data to userspace buffer. If
Miklos Szeredif9a28422006-06-25 05:48:53 -07001213 * no reply is needed (FORGET) or request has been aborted or there
1214 * was an error during the copying then it's finished by calling
Miklos Szeredi334f4852005-09-09 13:10:27 -07001215 * request_end(). Otherwise add it to the processing list, and set
1216 * the 'sent' flag.
1217 */
Miklos Szeredic36960462015-07-01 16:26:09 +02001218static ssize_t fuse_dev_do_read(struct fuse_dev *fud, struct file *file,
Miklos Szeredic3021622010-05-25 15:06:07 +02001219 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001220{
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001221 ssize_t err;
Miklos Szeredic36960462015-07-01 16:26:09 +02001222 struct fuse_conn *fc = fud->fc;
Miklos Szeredif88996a2015-07-01 16:26:01 +02001223 struct fuse_iqueue *fiq = &fc->iq;
Miklos Szeredic36960462015-07-01 16:26:09 +02001224 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001225 struct fuse_req *req;
1226 struct fuse_in *in;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001227 unsigned reqsize;
1228
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001229 restart:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001230 spin_lock(&fiq->waitq.lock);
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001231 err = -EAGAIN;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001232 if ((file->f_flags & O_NONBLOCK) && fiq->connected &&
Miklos Szeredif88996a2015-07-01 16:26:01 +02001233 !request_pending(fiq))
Jeff Dikee5ac1d12006-04-10 22:54:53 -07001234 goto err_unlock;
1235
Miklos Szeredi52509212015-07-01 16:26:03 +02001236 err = wait_event_interruptible_exclusive_locked(fiq->waitq,
1237 !fiq->connected || request_pending(fiq));
1238 if (err)
1239 goto err_unlock;
1240
Miklos Szeredi334f4852005-09-09 13:10:27 -07001241 err = -ENODEV;
Miklos Szeredie16714d2015-07-01 16:26:01 +02001242 if (!fiq->connected)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001243 goto err_unlock;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001244
Miklos Szeredif88996a2015-07-01 16:26:01 +02001245 if (!list_empty(&fiq->interrupts)) {
1246 req = list_entry(fiq->interrupts.next, struct fuse_req,
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001247 intr_entry);
Miklos Szeredifd22d622015-07-01 16:26:03 +02001248 return fuse_read_interrupt(fiq, cs, nbytes, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001249 }
1250
Miklos Szeredif88996a2015-07-01 16:26:01 +02001251 if (forget_pending(fiq)) {
1252 if (list_empty(&fiq->pending) || fiq->forget_batch-- > 0)
Miklos Szeredifd22d622015-07-01 16:26:03 +02001253 return fuse_read_forget(fc, fiq, cs, nbytes);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001254
Miklos Szeredif88996a2015-07-01 16:26:01 +02001255 if (fiq->forget_batch <= -8)
1256 fiq->forget_batch = 16;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001257 }
1258
Miklos Szeredif88996a2015-07-01 16:26:01 +02001259 req = list_entry(fiq->pending.next, struct fuse_req, list);
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001260 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredief759252015-07-01 16:26:02 +02001261 list_del_init(&req->list);
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001262 spin_unlock(&fiq->waitq.lock);
1263
Miklos Szeredi334f4852005-09-09 13:10:27 -07001264 in = &req->in;
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001265 reqsize = in->h.len;
1266 /* If request is too large, reply with an error and restart the read */
Miklos Szeredic3021622010-05-25 15:06:07 +02001267 if (nbytes < reqsize) {
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001268 req->out.h.error = -EIO;
1269 /* SETXATTR is special, since it may contain too large data */
1270 if (in->h.opcode == FUSE_SETXATTR)
1271 req->out.h.error = -E2BIG;
1272 request_end(fc, req);
1273 goto restart;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001274 }
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001275 spin_lock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001276 list_add(&req->list, &fpq->io);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001277 spin_unlock(&fpq->lock);
Miklos Szeredic3021622010-05-25 15:06:07 +02001278 cs->req = req;
1279 err = fuse_copy_one(cs, &in->h, sizeof(in->h));
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001280 if (!err)
Miklos Szeredic3021622010-05-25 15:06:07 +02001281 err = fuse_copy_args(cs, in->numargs, in->argpages,
Miklos Szeredi1d3d7522006-01-06 00:19:40 -08001282 (struct fuse_arg *) in->args, 0);
Miklos Szeredic3021622010-05-25 15:06:07 +02001283 fuse_copy_finish(cs);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001284 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001285 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001286 if (!fpq->connected) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001287 err = -ENODEV;
1288 goto out_end;
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001289 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07001290 if (err) {
Miklos Szeredic9c9d7d2007-10-16 23:31:05 -07001291 req->out.h.error = -EIO;
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001292 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001293 }
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001294 if (!test_bit(FR_ISREPLY, &req->flags)) {
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001295 err = reqsize;
1296 goto out_end;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001297 }
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001298 list_move_tail(&req->list, &fpq->processing);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001299 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001300 set_bit(FR_SENT, &req->flags);
1301 /* matches barrier in request_wait_answer() */
1302 smp_mb__after_atomic();
1303 if (test_bit(FR_INTERRUPTED, &req->flags))
1304 queue_interrupt(fiq, req);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001305
Miklos Szeredi334f4852005-09-09 13:10:27 -07001306 return reqsize;
1307
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001308out_end:
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001309 if (!test_bit(FR_PRIVATE, &req->flags))
1310 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001311 spin_unlock(&fpq->lock);
Miklos Szeredi82cbdcd2015-07-01 16:26:05 +02001312 request_end(fc, req);
1313 return err;
1314
Miklos Szeredi334f4852005-09-09 13:10:27 -07001315 err_unlock:
Miklos Szeredi4ce60812015-07-01 16:26:02 +02001316 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001317 return err;
1318}
1319
Tom Van Braeckel94e4fe22015-01-12 05:22:16 +01001320static int fuse_dev_open(struct inode *inode, struct file *file)
1321{
1322 /*
1323 * The fuse device's file's private_data is used to hold
1324 * the fuse_conn(ection) when it is mounted, and is used to
1325 * keep track of whether the file has been mounted already.
1326 */
1327 file->private_data = NULL;
1328 return 0;
1329}
1330
Al Virofbdbacc2015-04-03 21:53:39 -04001331static ssize_t fuse_dev_read(struct kiocb *iocb, struct iov_iter *to)
Miklos Szeredic3021622010-05-25 15:06:07 +02001332{
1333 struct fuse_copy_state cs;
1334 struct file *file = iocb->ki_filp;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001335 struct fuse_dev *fud = fuse_get_dev(file);
1336
1337 if (!fud)
Miklos Szeredic3021622010-05-25 15:06:07 +02001338 return -EPERM;
1339
Al Virofbdbacc2015-04-03 21:53:39 -04001340 if (!iter_is_iovec(to))
1341 return -EINVAL;
Miklos Szeredic3021622010-05-25 15:06:07 +02001342
Miklos Szeredidc008092015-07-01 16:25:58 +02001343 fuse_copy_init(&cs, 1, to);
Al Virofbdbacc2015-04-03 21:53:39 -04001344
Miklos Szeredic36960462015-07-01 16:26:09 +02001345 return fuse_dev_do_read(fud, file, &cs, iov_iter_count(to));
Miklos Szeredic3021622010-05-25 15:06:07 +02001346}
1347
Miklos Szeredic3021622010-05-25 15:06:07 +02001348static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
1349 struct pipe_inode_info *pipe,
1350 size_t len, unsigned int flags)
1351{
Al Virod82718e2016-09-17 22:56:25 -04001352 int total, ret;
Miklos Szeredic3021622010-05-25 15:06:07 +02001353 int page_nr = 0;
Miklos Szeredic3021622010-05-25 15:06:07 +02001354 struct pipe_buffer *bufs;
1355 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001356 struct fuse_dev *fud = fuse_get_dev(in);
1357
1358 if (!fud)
Miklos Szeredic3021622010-05-25 15:06:07 +02001359 return -EPERM;
1360
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001361 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001362 if (!bufs)
1363 return -ENOMEM;
1364
Miklos Szeredidc008092015-07-01 16:25:58 +02001365 fuse_copy_init(&cs, 1, NULL);
Miklos Szeredic3021622010-05-25 15:06:07 +02001366 cs.pipebufs = bufs;
1367 cs.pipe = pipe;
Miklos Szeredic36960462015-07-01 16:26:09 +02001368 ret = fuse_dev_do_read(fud, in, &cs, len);
Miklos Szeredic3021622010-05-25 15:06:07 +02001369 if (ret < 0)
1370 goto out;
1371
Miklos Szeredic3021622010-05-25 15:06:07 +02001372 if (pipe->nrbufs + cs.nr_segs > pipe->buffers) {
1373 ret = -EIO;
Al Virod82718e2016-09-17 22:56:25 -04001374 goto out;
Miklos Szeredic3021622010-05-25 15:06:07 +02001375 }
1376
Al Virod82718e2016-09-17 22:56:25 -04001377 for (ret = total = 0; page_nr < cs.nr_segs; total += ret) {
Miklos Szeredi28a625c2014-01-22 19:36:57 +01001378 /*
1379 * Need to be careful about this. Having buf->ops in module
1380 * code can Oops if the buffer persists after module unload.
1381 */
Al Virod82718e2016-09-17 22:56:25 -04001382 bufs[page_nr].ops = &nosteal_pipe_buf_ops;
Miklos Szeredi80a04772017-02-16 15:08:20 +01001383 bufs[page_nr].flags = 0;
Al Virod82718e2016-09-17 22:56:25 -04001384 ret = add_to_pipe(pipe, &bufs[page_nr++]);
1385 if (unlikely(ret < 0))
1386 break;
Miklos Szeredic3021622010-05-25 15:06:07 +02001387 }
Al Virod82718e2016-09-17 22:56:25 -04001388 if (total)
1389 ret = total;
Miklos Szeredic3021622010-05-25 15:06:07 +02001390out:
1391 for (; page_nr < cs.nr_segs; page_nr++)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001392 put_page(bufs[page_nr].page);
Miklos Szeredic3021622010-05-25 15:06:07 +02001393
1394 kfree(bufs);
1395 return ret;
1396}
1397
Tejun Heo95668a62008-11-26 12:03:55 +01001398static int fuse_notify_poll(struct fuse_conn *fc, unsigned int size,
1399 struct fuse_copy_state *cs)
1400{
1401 struct fuse_notify_poll_wakeup_out outarg;
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001402 int err = -EINVAL;
Tejun Heo95668a62008-11-26 12:03:55 +01001403
1404 if (size != sizeof(outarg))
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001405 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001406
1407 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1408 if (err)
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001409 goto err;
Tejun Heo95668a62008-11-26 12:03:55 +01001410
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001411 fuse_copy_finish(cs);
Tejun Heo95668a62008-11-26 12:03:55 +01001412 return fuse_notify_poll_wakeup(fc, &outarg);
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001413
1414err:
1415 fuse_copy_finish(cs);
1416 return err;
Tejun Heo95668a62008-11-26 12:03:55 +01001417}
1418
John Muir3b463ae2009-05-31 11:13:57 -04001419static int fuse_notify_inval_inode(struct fuse_conn *fc, unsigned int size,
1420 struct fuse_copy_state *cs)
1421{
1422 struct fuse_notify_inval_inode_out outarg;
1423 int err = -EINVAL;
1424
1425 if (size != sizeof(outarg))
1426 goto err;
1427
1428 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1429 if (err)
1430 goto err;
1431 fuse_copy_finish(cs);
1432
1433 down_read(&fc->killsb);
1434 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001435 if (fc->sb) {
1436 err = fuse_reverse_inval_inode(fc->sb, outarg.ino,
1437 outarg.off, outarg.len);
1438 }
John Muir3b463ae2009-05-31 11:13:57 -04001439 up_read(&fc->killsb);
1440 return err;
1441
1442err:
1443 fuse_copy_finish(cs);
1444 return err;
1445}
1446
1447static int fuse_notify_inval_entry(struct fuse_conn *fc, unsigned int size,
1448 struct fuse_copy_state *cs)
1449{
1450 struct fuse_notify_inval_entry_out outarg;
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001451 int err = -ENOMEM;
1452 char *buf;
John Muir3b463ae2009-05-31 11:13:57 -04001453 struct qstr name;
1454
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001455 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1456 if (!buf)
1457 goto err;
1458
1459 err = -EINVAL;
John Muir3b463ae2009-05-31 11:13:57 -04001460 if (size < sizeof(outarg))
1461 goto err;
1462
1463 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1464 if (err)
1465 goto err;
1466
1467 err = -ENAMETOOLONG;
1468 if (outarg.namelen > FUSE_NAME_MAX)
1469 goto err;
1470
Miklos Szeredic2183d12011-08-24 10:20:17 +02001471 err = -EINVAL;
1472 if (size != sizeof(outarg) + outarg.namelen + 1)
1473 goto err;
1474
John Muir3b463ae2009-05-31 11:13:57 -04001475 name.name = buf;
1476 name.len = outarg.namelen;
1477 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1478 if (err)
1479 goto err;
1480 fuse_copy_finish(cs);
1481 buf[outarg.namelen] = 0;
John Muir3b463ae2009-05-31 11:13:57 -04001482
1483 down_read(&fc->killsb);
1484 err = -ENOENT;
Miklos Szeredib21dda42010-02-05 12:08:31 +01001485 if (fc->sb)
John Muir451d0f52011-12-06 21:50:06 +01001486 err = fuse_reverse_inval_entry(fc->sb, outarg.parent, 0, &name);
1487 up_read(&fc->killsb);
1488 kfree(buf);
1489 return err;
1490
1491err:
1492 kfree(buf);
1493 fuse_copy_finish(cs);
1494 return err;
1495}
1496
1497static int fuse_notify_delete(struct fuse_conn *fc, unsigned int size,
1498 struct fuse_copy_state *cs)
1499{
1500 struct fuse_notify_delete_out outarg;
1501 int err = -ENOMEM;
1502 char *buf;
1503 struct qstr name;
1504
1505 buf = kzalloc(FUSE_NAME_MAX + 1, GFP_KERNEL);
1506 if (!buf)
1507 goto err;
1508
1509 err = -EINVAL;
1510 if (size < sizeof(outarg))
1511 goto err;
1512
1513 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1514 if (err)
1515 goto err;
1516
1517 err = -ENAMETOOLONG;
1518 if (outarg.namelen > FUSE_NAME_MAX)
1519 goto err;
1520
1521 err = -EINVAL;
1522 if (size != sizeof(outarg) + outarg.namelen + 1)
1523 goto err;
1524
1525 name.name = buf;
1526 name.len = outarg.namelen;
1527 err = fuse_copy_one(cs, buf, outarg.namelen + 1);
1528 if (err)
1529 goto err;
1530 fuse_copy_finish(cs);
1531 buf[outarg.namelen] = 0;
John Muir451d0f52011-12-06 21:50:06 +01001532
1533 down_read(&fc->killsb);
1534 err = -ENOENT;
1535 if (fc->sb)
1536 err = fuse_reverse_inval_entry(fc->sb, outarg.parent,
1537 outarg.child, &name);
John Muir3b463ae2009-05-31 11:13:57 -04001538 up_read(&fc->killsb);
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001539 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001540 return err;
1541
1542err:
Fang Wenqib2d82ee2009-12-30 18:37:13 +08001543 kfree(buf);
John Muir3b463ae2009-05-31 11:13:57 -04001544 fuse_copy_finish(cs);
1545 return err;
1546}
1547
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001548static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
1549 struct fuse_copy_state *cs)
1550{
1551 struct fuse_notify_store_out outarg;
1552 struct inode *inode;
1553 struct address_space *mapping;
1554 u64 nodeid;
1555 int err;
1556 pgoff_t index;
1557 unsigned int offset;
1558 unsigned int num;
1559 loff_t file_size;
1560 loff_t end;
1561
1562 err = -EINVAL;
1563 if (size < sizeof(outarg))
1564 goto out_finish;
1565
1566 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1567 if (err)
1568 goto out_finish;
1569
1570 err = -EINVAL;
1571 if (size - sizeof(outarg) != outarg.size)
1572 goto out_finish;
1573
1574 nodeid = outarg.nodeid;
1575
1576 down_read(&fc->killsb);
1577
1578 err = -ENOENT;
1579 if (!fc->sb)
1580 goto out_up_killsb;
1581
1582 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1583 if (!inode)
1584 goto out_up_killsb;
1585
1586 mapping = inode->i_mapping;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001587 index = outarg.offset >> PAGE_SHIFT;
1588 offset = outarg.offset & ~PAGE_MASK;
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001589 file_size = i_size_read(inode);
1590 end = outarg.offset + outarg.size;
1591 if (end > file_size) {
1592 file_size = end;
1593 fuse_write_update_size(inode, file_size);
1594 }
1595
1596 num = outarg.size;
1597 while (num) {
1598 struct page *page;
1599 unsigned int this_num;
1600
1601 err = -ENOMEM;
1602 page = find_or_create_page(mapping, index,
1603 mapping_gfp_mask(mapping));
1604 if (!page)
1605 goto out_iput;
1606
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001607 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001608 err = fuse_copy_page(cs, &page, offset, this_num, 0);
Miklos Szeredi063ec1e2014-01-22 19:36:58 +01001609 if (!err && offset == 0 &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001610 (this_num == PAGE_SIZE || file_size == end))
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001611 SetPageUptodate(page);
1612 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001613 put_page(page);
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001614
1615 if (err)
1616 goto out_iput;
1617
1618 num -= this_num;
1619 offset = 0;
1620 index++;
1621 }
1622
1623 err = 0;
1624
1625out_iput:
1626 iput(inode);
1627out_up_killsb:
1628 up_read(&fc->killsb);
1629out_finish:
1630 fuse_copy_finish(cs);
1631 return err;
1632}
1633
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001634static void fuse_retrieve_end(struct fuse_conn *fc, struct fuse_req *req)
1635{
Mel Gormanb745bc82014-06-04 16:10:22 -07001636 release_pages(req->pages, req->num_pages, false);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001637}
1638
1639static int fuse_retrieve(struct fuse_conn *fc, struct inode *inode,
1640 struct fuse_notify_retrieve_out *outarg)
1641{
1642 int err;
1643 struct address_space *mapping = inode->i_mapping;
1644 struct fuse_req *req;
1645 pgoff_t index;
1646 loff_t file_size;
1647 unsigned int num;
1648 unsigned int offset;
Geert Uytterhoeven01574432010-09-30 22:06:21 +02001649 size_t total_len = 0;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001650 int num_pages;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001651
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001652 offset = outarg->offset & ~PAGE_MASK;
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001653 file_size = i_size_read(inode);
1654
1655 num = outarg->size;
1656 if (outarg->offset > file_size)
1657 num = 0;
1658 else if (outarg->offset + num > file_size)
1659 num = file_size - outarg->offset;
1660
1661 num_pages = (num + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
1662 num_pages = min(num_pages, FUSE_MAX_PAGES_PER_REQ);
1663
1664 req = fuse_get_req(fc, num_pages);
1665 if (IS_ERR(req))
1666 return PTR_ERR(req);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001667
1668 req->in.h.opcode = FUSE_NOTIFY_REPLY;
1669 req->in.h.nodeid = outarg->nodeid;
1670 req->in.numargs = 2;
1671 req->in.argpages = 1;
Maxim Patlasovb2430d72012-10-26 19:49:24 +04001672 req->page_descs[0].offset = offset;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001673 req->end = fuse_retrieve_end;
1674
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001675 index = outarg->offset >> PAGE_SHIFT;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001676
Maxim Patlasov4d53dc92012-10-26 19:48:42 +04001677 while (num && req->num_pages < num_pages) {
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001678 struct page *page;
1679 unsigned int this_num;
1680
1681 page = find_get_page(mapping, index);
1682 if (!page)
1683 break;
1684
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001685 this_num = min_t(unsigned, num, PAGE_SIZE - offset);
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001686 req->pages[req->num_pages] = page;
Maxim Patlasov85f40ae2012-10-26 19:49:33 +04001687 req->page_descs[req->num_pages].length = this_num;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001688 req->num_pages++;
1689
Miklos Szeredic9e67d42012-09-04 18:45:54 +02001690 offset = 0;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001691 num -= this_num;
1692 total_len += this_num;
Miklos Szeredi48706d02011-12-13 10:36:59 +01001693 index++;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001694 }
1695 req->misc.retrieve_in.offset = outarg->offset;
1696 req->misc.retrieve_in.size = total_len;
1697 req->in.args[0].size = sizeof(req->misc.retrieve_in);
1698 req->in.args[0].value = &req->misc.retrieve_in;
1699 req->in.args[1].size = total_len;
1700
1701 err = fuse_request_send_notify_reply(fc, req, outarg->notify_unique);
1702 if (err)
1703 fuse_retrieve_end(fc, req);
1704
1705 return err;
1706}
1707
1708static int fuse_notify_retrieve(struct fuse_conn *fc, unsigned int size,
1709 struct fuse_copy_state *cs)
1710{
1711 struct fuse_notify_retrieve_out outarg;
1712 struct inode *inode;
1713 int err;
1714
1715 err = -EINVAL;
1716 if (size != sizeof(outarg))
1717 goto copy_finish;
1718
1719 err = fuse_copy_one(cs, &outarg, sizeof(outarg));
1720 if (err)
1721 goto copy_finish;
1722
1723 fuse_copy_finish(cs);
1724
1725 down_read(&fc->killsb);
1726 err = -ENOENT;
1727 if (fc->sb) {
1728 u64 nodeid = outarg.nodeid;
1729
1730 inode = ilookup5(fc->sb, nodeid, fuse_inode_eq, &nodeid);
1731 if (inode) {
1732 err = fuse_retrieve(fc, inode, &outarg);
1733 iput(inode);
1734 }
1735 }
1736 up_read(&fc->killsb);
1737
1738 return err;
1739
1740copy_finish:
1741 fuse_copy_finish(cs);
1742 return err;
1743}
1744
Tejun Heo85993962008-11-26 12:03:55 +01001745static int fuse_notify(struct fuse_conn *fc, enum fuse_notify_code code,
1746 unsigned int size, struct fuse_copy_state *cs)
1747{
Miklos Szeredi0d278362015-02-26 11:45:47 +01001748 /* Don't try to move pages (yet) */
1749 cs->move_pages = 0;
1750
Tejun Heo85993962008-11-26 12:03:55 +01001751 switch (code) {
Tejun Heo95668a62008-11-26 12:03:55 +01001752 case FUSE_NOTIFY_POLL:
1753 return fuse_notify_poll(fc, size, cs);
1754
John Muir3b463ae2009-05-31 11:13:57 -04001755 case FUSE_NOTIFY_INVAL_INODE:
1756 return fuse_notify_inval_inode(fc, size, cs);
1757
1758 case FUSE_NOTIFY_INVAL_ENTRY:
1759 return fuse_notify_inval_entry(fc, size, cs);
1760
Miklos Szeredia1d75f22010-07-12 14:41:40 +02001761 case FUSE_NOTIFY_STORE:
1762 return fuse_notify_store(fc, size, cs);
1763
Miklos Szeredi2d45ba32010-07-12 14:41:40 +02001764 case FUSE_NOTIFY_RETRIEVE:
1765 return fuse_notify_retrieve(fc, size, cs);
1766
John Muir451d0f52011-12-06 21:50:06 +01001767 case FUSE_NOTIFY_DELETE:
1768 return fuse_notify_delete(fc, size, cs);
1769
Tejun Heo85993962008-11-26 12:03:55 +01001770 default:
Miklos Szeredif6d47a12009-01-26 15:00:59 +01001771 fuse_copy_finish(cs);
Tejun Heo85993962008-11-26 12:03:55 +01001772 return -EINVAL;
1773 }
1774}
1775
Miklos Szeredi334f4852005-09-09 13:10:27 -07001776/* Look up request on processing list by unique ID */
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001777static struct fuse_req *request_find(struct fuse_pqueue *fpq, u64 unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001778{
Dong Fang05726ac2013-07-30 22:50:01 -04001779 struct fuse_req *req;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001780
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001781 list_for_each_entry(req, &fpq->processing, list) {
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001782 if (req->in.h.unique == unique || req->intr_unique == unique)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001783 return req;
1784 }
1785 return NULL;
1786}
1787
1788static int copy_out_args(struct fuse_copy_state *cs, struct fuse_out *out,
1789 unsigned nbytes)
1790{
1791 unsigned reqsize = sizeof(struct fuse_out_header);
1792
1793 if (out->h.error)
1794 return nbytes != reqsize ? -EINVAL : 0;
1795
1796 reqsize += len_args(out->numargs, out->args);
1797
1798 if (reqsize < nbytes || (reqsize > nbytes && !out->argvar))
1799 return -EINVAL;
1800 else if (reqsize > nbytes) {
1801 struct fuse_arg *lastarg = &out->args[out->numargs-1];
1802 unsigned diffsize = reqsize - nbytes;
1803 if (diffsize > lastarg->size)
1804 return -EINVAL;
1805 lastarg->size -= diffsize;
1806 }
1807 return fuse_copy_args(cs, out->numargs, out->argpages, out->args,
1808 out->page_zeroing);
1809}
1810
1811/*
1812 * Write a single reply to a request. First the header is copied from
1813 * the write buffer. The request is then searched on the processing
1814 * list by the unique ID found in the header. If found, then remove
1815 * it from the list and copy the rest of the buffer to the request.
1816 * The request is finished by calling request_end()
1817 */
Miklos Szeredic36960462015-07-01 16:26:09 +02001818static ssize_t fuse_dev_do_write(struct fuse_dev *fud,
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001819 struct fuse_copy_state *cs, size_t nbytes)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001820{
1821 int err;
Miklos Szeredic36960462015-07-01 16:26:09 +02001822 struct fuse_conn *fc = fud->fc;
1823 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001824 struct fuse_req *req;
1825 struct fuse_out_header oh;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001826
Miklos Szeredi334f4852005-09-09 13:10:27 -07001827 if (nbytes < sizeof(struct fuse_out_header))
1828 return -EINVAL;
1829
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001830 err = fuse_copy_one(cs, &oh, sizeof(oh));
Miklos Szeredi334f4852005-09-09 13:10:27 -07001831 if (err)
1832 goto err_finish;
Tejun Heo85993962008-11-26 12:03:55 +01001833
Miklos Szeredi334f4852005-09-09 13:10:27 -07001834 err = -EINVAL;
Tejun Heo85993962008-11-26 12:03:55 +01001835 if (oh.len != nbytes)
1836 goto err_finish;
1837
1838 /*
1839 * Zero oh.unique indicates unsolicited notification message
1840 * and error contains notification code.
1841 */
1842 if (!oh.unique) {
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001843 err = fuse_notify(fc, oh.error, nbytes - sizeof(oh), cs);
Tejun Heo85993962008-11-26 12:03:55 +01001844 return err ? err : nbytes;
1845 }
1846
1847 err = -EINVAL;
1848 if (oh.error <= -1000 || oh.error > 0)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001849 goto err_finish;
1850
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001851 spin_lock(&fpq->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001852 err = -ENOENT;
Miklos Szeredie96edd92015-07-01 16:26:04 +02001853 if (!fpq->connected)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001854 goto err_unlock_pq;
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08001855
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001856 req = request_find(fpq, oh.unique);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001857 if (!req)
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001858 goto err_unlock_pq;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001859
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001860 /* Is it an interrupt reply? */
1861 if (req->intr_unique == oh.unique) {
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001862 spin_unlock(&fpq->lock);
1863
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001864 err = -EINVAL;
1865 if (nbytes != sizeof(struct fuse_out_header))
Miklos Szeredi46c34a32015-07-01 16:26:07 +02001866 goto err_finish;
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001867
1868 if (oh.error == -ENOSYS)
1869 fc->no_interrupt = 1;
1870 else if (oh.error == -EAGAIN)
Miklos Szeredif88996a2015-07-01 16:26:01 +02001871 queue_interrupt(&fc->iq, req);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001872
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001873 fuse_copy_finish(cs);
Miklos Szeredia4d27e72006-06-25 05:48:54 -07001874 return nbytes;
1875 }
1876
Miklos Szeredi33e14b42015-07-01 16:26:01 +02001877 clear_bit(FR_SENT, &req->flags);
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +02001878 list_move(&req->list, &fpq->io);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001879 req->out.h = oh;
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001880 set_bit(FR_LOCKED, &req->flags);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001881 spin_unlock(&fpq->lock);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001882 cs->req = req;
Miklos Szeredice534fb2010-05-25 15:06:07 +02001883 if (!req->out.page_replace)
1884 cs->move_pages = 0;
Miklos Szeredi334f4852005-09-09 13:10:27 -07001885
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001886 err = copy_out_args(cs, &req->out, nbytes);
Daniel Rosenbergfac99a72016-04-22 00:00:48 -07001887 if (req->in.h.opcode == FUSE_CANONICAL_PATH) {
Ritesh Harjani4fb542f2018-03-19 16:03:09 +05301888 char *path = (char *)req->out.args[0].value;
1889
1890 path[req->out.args[0].size - 1] = 0;
1891 req->out.h.error = kern_path(path, 0, req->canonical_path);
Daniel Rosenbergfac99a72016-04-22 00:00:48 -07001892 }
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001893 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001894
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001895 spin_lock(&fpq->lock);
Miklos Szeredi825d6d32015-07-01 16:25:58 +02001896 clear_bit(FR_LOCKED, &req->flags);
Miklos Szeredie96edd92015-07-01 16:26:04 +02001897 if (!fpq->connected)
Miklos Szeredi0d8e84b2015-07-01 16:25:58 +02001898 err = -ENOENT;
1899 else if (err)
Miklos Szeredi334f4852005-09-09 13:10:27 -07001900 req->out.h.error = -EIO;
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02001901 if (!test_bit(FR_PRIVATE, &req->flags))
1902 list_del_init(&req->list);
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001903 spin_unlock(&fpq->lock);
Miklos Szeredi46c34a32015-07-01 16:26:07 +02001904
Miklos Szeredi334f4852005-09-09 13:10:27 -07001905 request_end(fc, req);
1906
1907 return err ? err : nbytes;
1908
Miklos Szeredi45a91cb2015-07-01 16:26:06 +02001909 err_unlock_pq:
1910 spin_unlock(&fpq->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001911 err_finish:
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001912 fuse_copy_finish(cs);
Miklos Szeredi334f4852005-09-09 13:10:27 -07001913 return err;
1914}
1915
Al Virofbdbacc2015-04-03 21:53:39 -04001916static ssize_t fuse_dev_write(struct kiocb *iocb, struct iov_iter *from)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001917{
1918 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001919 struct fuse_dev *fud = fuse_get_dev(iocb->ki_filp);
1920
1921 if (!fud)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001922 return -EPERM;
1923
Al Virofbdbacc2015-04-03 21:53:39 -04001924 if (!iter_is_iovec(from))
1925 return -EINVAL;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001926
Miklos Szeredidc008092015-07-01 16:25:58 +02001927 fuse_copy_init(&cs, 0, from);
Al Virofbdbacc2015-04-03 21:53:39 -04001928
Miklos Szeredic36960462015-07-01 16:26:09 +02001929 return fuse_dev_do_write(fud, &cs, iov_iter_count(from));
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001930}
1931
1932static ssize_t fuse_dev_splice_write(struct pipe_inode_info *pipe,
1933 struct file *out, loff_t *ppos,
1934 size_t len, unsigned int flags)
1935{
1936 unsigned nbuf;
1937 unsigned idx;
1938 struct pipe_buffer *bufs;
1939 struct fuse_copy_state cs;
Miklos Szeredicc080e92015-07-01 16:26:08 +02001940 struct fuse_dev *fud;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001941 size_t rem;
1942 ssize_t ret;
1943
Miklos Szeredicc080e92015-07-01 16:26:08 +02001944 fud = fuse_get_dev(out);
1945 if (!fud)
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001946 return -EPERM;
1947
Miklos Szeredi07e77dc2010-12-07 20:16:56 +01001948 bufs = kmalloc(pipe->buffers * sizeof(struct pipe_buffer), GFP_KERNEL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001949 if (!bufs)
1950 return -ENOMEM;
1951
1952 pipe_lock(pipe);
1953 nbuf = 0;
1954 rem = 0;
1955 for (idx = 0; idx < pipe->nrbufs && rem < len; idx++)
1956 rem += pipe->bufs[(pipe->curbuf + idx) & (pipe->buffers - 1)].len;
1957
1958 ret = -EINVAL;
1959 if (rem < len) {
1960 pipe_unlock(pipe);
1961 goto out;
1962 }
1963
1964 rem = len;
1965 while (rem) {
1966 struct pipe_buffer *ibuf;
1967 struct pipe_buffer *obuf;
1968
1969 BUG_ON(nbuf >= pipe->buffers);
1970 BUG_ON(!pipe->nrbufs);
1971 ibuf = &pipe->bufs[pipe->curbuf];
1972 obuf = &bufs[nbuf];
1973
1974 if (rem >= ibuf->len) {
1975 *obuf = *ibuf;
1976 ibuf->ops = NULL;
1977 pipe->curbuf = (pipe->curbuf + 1) & (pipe->buffers - 1);
1978 pipe->nrbufs--;
1979 } else {
Miklos Szeredi7bf2d1d2016-09-27 10:45:12 +02001980 pipe_buf_get(pipe, ibuf);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001981 *obuf = *ibuf;
1982 obuf->flags &= ~PIPE_BUF_FLAG_GIFT;
1983 obuf->len = rem;
1984 ibuf->offset += obuf->len;
1985 ibuf->len -= obuf->len;
1986 }
1987 nbuf++;
1988 rem -= obuf->len;
1989 }
1990 pipe_unlock(pipe);
1991
Miklos Szeredidc008092015-07-01 16:25:58 +02001992 fuse_copy_init(&cs, 0, NULL);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001993 cs.pipebufs = bufs;
Al Viro6c09e942015-04-03 22:06:08 -04001994 cs.nr_segs = nbuf;
Miklos Szeredidd3bb142010-05-25 15:06:06 +02001995 cs.pipe = pipe;
1996
Miklos Szeredice534fb2010-05-25 15:06:07 +02001997 if (flags & SPLICE_F_MOVE)
1998 cs.move_pages = 1;
1999
Miklos Szeredic36960462015-07-01 16:26:09 +02002000 ret = fuse_dev_do_write(fud, &cs, len);
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002001
Miklos Szeredia7796382016-09-27 10:45:12 +02002002 for (idx = 0; idx < nbuf; idx++)
2003 pipe_buf_release(pipe, &bufs[idx]);
2004
Miklos Szeredidd3bb142010-05-25 15:06:06 +02002005out:
2006 kfree(bufs);
2007 return ret;
2008}
2009
Miklos Szeredi334f4852005-09-09 13:10:27 -07002010static unsigned fuse_dev_poll(struct file *file, poll_table *wait)
2011{
Miklos Szeredi334f4852005-09-09 13:10:27 -07002012 unsigned mask = POLLOUT | POLLWRNORM;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002013 struct fuse_iqueue *fiq;
Miklos Szeredicc080e92015-07-01 16:26:08 +02002014 struct fuse_dev *fud = fuse_get_dev(file);
2015
2016 if (!fud)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002017 return POLLERR;
Miklos Szeredi334f4852005-09-09 13:10:27 -07002018
Miklos Szeredicc080e92015-07-01 16:26:08 +02002019 fiq = &fud->fc->iq;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002020 poll_wait(file, &fiq->waitq, wait);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002021
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002022 spin_lock(&fiq->waitq.lock);
Miklos Szeredie16714d2015-07-01 16:26:01 +02002023 if (!fiq->connected)
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002024 mask = POLLERR;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002025 else if (request_pending(fiq))
Miklos Szeredi7025d9a2006-04-10 22:54:50 -07002026 mask |= POLLIN | POLLRDNORM;
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002027 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002028
2029 return mask;
2030}
2031
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002032/*
2033 * Abort all requests on the given list (pending or processing)
2034 *
Miklos Szeredid7133112006-04-10 22:54:55 -07002035 * This function releases and reacquires fc->lock
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002036 */
Miklos Szeredi334f4852005-09-09 13:10:27 -07002037static void end_requests(struct fuse_conn *fc, struct list_head *head)
2038{
2039 while (!list_empty(head)) {
2040 struct fuse_req *req;
2041 req = list_entry(head->next, struct fuse_req, list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002042 req->out.h.error = -ECONNABORTED;
Miklos Szeredi33e14b42015-07-01 16:26:01 +02002043 clear_bit(FR_SENT, &req->flags);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002044 list_del_init(&req->list);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002045 request_end(fc, req);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002046 }
2047}
2048
Bryan Green357ccf22011-03-01 16:43:52 -08002049static void end_polls(struct fuse_conn *fc)
2050{
2051 struct rb_node *p;
2052
2053 p = rb_first(&fc->polled_files);
2054
2055 while (p) {
2056 struct fuse_file *ff;
2057 ff = rb_entry(p, struct fuse_file, polled_node);
2058 wake_up_interruptible_all(&ff->poll_wait);
2059
2060 p = rb_next(p);
2061 }
2062}
2063
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002064/*
2065 * Abort all requests.
2066 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002067 * Emergency exit in case of a malicious or accidental deadlock, or just a hung
2068 * filesystem.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002069 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002070 * The same effect is usually achievable through killing the filesystem daemon
2071 * and all users of the filesystem. The exception is the combination of an
2072 * asynchronous request and the tricky deadlock (see
2073 * Documentation/filesystems/fuse.txt).
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002074 *
Miklos Szeredib716d422015-07-01 16:25:59 +02002075 * Aborting requests under I/O goes as follows: 1: Separate out unlocked
2076 * requests, they should be finished off immediately. Locked requests will be
2077 * finished after unlock; see unlock_request(). 2: Finish off the unlocked
2078 * requests. It is possible that some request will finish before we can. This
2079 * is OK, the request will in that case be removed from the list before we touch
2080 * it.
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002081 */
2082void fuse_abort_conn(struct fuse_conn *fc)
2083{
Miklos Szeredif88996a2015-07-01 16:26:01 +02002084 struct fuse_iqueue *fiq = &fc->iq;
2085
Miklos Szeredid7133112006-04-10 22:54:55 -07002086 spin_lock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002087 if (fc->connected) {
Miklos Szeredic36960462015-07-01 16:26:09 +02002088 struct fuse_dev *fud;
Miklos Szeredib716d422015-07-01 16:25:59 +02002089 struct fuse_req *req, *next;
Miklos Szeredi41f98272015-07-01 16:25:59 +02002090 LIST_HEAD(to_end1);
2091 LIST_HEAD(to_end2);
Miklos Szeredib716d422015-07-01 16:25:59 +02002092
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002093 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -07002094 fc->blocked = 0;
Miklos Szeredi9759bd512015-01-06 10:45:35 +01002095 fuse_set_initialized(fc);
Miklos Szeredic36960462015-07-01 16:26:09 +02002096 list_for_each_entry(fud, &fc->devices, entry) {
2097 struct fuse_pqueue *fpq = &fud->pq;
2098
2099 spin_lock(&fpq->lock);
2100 fpq->connected = 0;
2101 list_for_each_entry_safe(req, next, &fpq->io, list) {
2102 req->out.h.error = -ECONNABORTED;
2103 spin_lock(&req->waitq.lock);
2104 set_bit(FR_ABORTED, &req->flags);
2105 if (!test_bit(FR_LOCKED, &req->flags)) {
2106 set_bit(FR_PRIVATE, &req->flags);
2107 list_move(&req->list, &to_end1);
2108 }
2109 spin_unlock(&req->waitq.lock);
Miklos Szeredi77cd9d42015-07-01 16:26:06 +02002110 }
Miklos Szeredic36960462015-07-01 16:26:09 +02002111 list_splice_init(&fpq->processing, &to_end2);
2112 spin_unlock(&fpq->lock);
Miklos Szeredib716d422015-07-01 16:25:59 +02002113 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002114 fc->max_background = UINT_MAX;
2115 flush_bg_queue(fc);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002116
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002117 spin_lock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002118 fiq->connected = 0;
Miklos Szeredif88996a2015-07-01 16:26:01 +02002119 list_splice_init(&fiq->pending, &to_end2);
Tahsin Erdogan0181b362017-01-12 12:04:04 -08002120 list_for_each_entry(req, &to_end2, list)
2121 clear_bit(FR_PENDING, &req->flags);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002122 while (forget_pending(fiq))
2123 kfree(dequeue_forget(fiq, 1, NULL));
Miklos Szeredi4ce60812015-07-01 16:26:02 +02002124 wake_up_all_locked(&fiq->waitq);
2125 spin_unlock(&fiq->waitq.lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002126 kill_fasync(&fiq->fasync, SIGIO, POLL_IN);
Miklos Szerediee314a82015-07-01 16:26:08 +02002127 end_polls(fc);
2128 wake_up_all(&fc->blocked_waitq);
2129 spin_unlock(&fc->lock);
Miklos Szeredi8c911892015-07-01 16:26:02 +02002130
Miklos Szeredi41f98272015-07-01 16:25:59 +02002131 while (!list_empty(&to_end1)) {
2132 req = list_first_entry(&to_end1, struct fuse_req, list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002133 __fuse_get_request(req);
Miklos Szeredif377cb72015-07-01 16:26:04 +02002134 list_del_init(&req->list);
Miklos Szeredib716d422015-07-01 16:25:59 +02002135 request_end(fc, req);
Miklos Szeredib716d422015-07-01 16:25:59 +02002136 }
Miklos Szeredi41f98272015-07-01 16:25:59 +02002137 end_requests(fc, &to_end2);
Miklos Szerediee314a82015-07-01 16:26:08 +02002138 } else {
2139 spin_unlock(&fc->lock);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002140 }
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002141}
Tejun Heo08cbf542009-04-14 10:54:53 +09002142EXPORT_SYMBOL_GPL(fuse_abort_conn);
Miklos Szeredi69a53bf2006-01-16 22:14:41 -08002143
Tejun Heo08cbf542009-04-14 10:54:53 +09002144int fuse_dev_release(struct inode *inode, struct file *file)
Miklos Szeredi334f4852005-09-09 13:10:27 -07002145{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002146 struct fuse_dev *fud = fuse_get_dev(file);
2147
2148 if (fud) {
2149 struct fuse_conn *fc = fud->fc;
Miklos Szeredic36960462015-07-01 16:26:09 +02002150 struct fuse_pqueue *fpq = &fud->pq;
Miklos Szeredicc080e92015-07-01 16:26:08 +02002151
Miklos Szeredic36960462015-07-01 16:26:09 +02002152 WARN_ON(!list_empty(&fpq->io));
2153 end_requests(fc, &fpq->processing);
2154 /* Are we the last open device? */
2155 if (atomic_dec_and_test(&fc->dev_count)) {
2156 WARN_ON(fc->iq.fasync != NULL);
2157 fuse_abort_conn(fc);
2158 }
Miklos Szeredicc080e92015-07-01 16:26:08 +02002159 fuse_dev_free(fud);
Jeff Dike385a17b2006-04-10 22:54:52 -07002160 }
Miklos Szeredi334f4852005-09-09 13:10:27 -07002161 return 0;
2162}
Tejun Heo08cbf542009-04-14 10:54:53 +09002163EXPORT_SYMBOL_GPL(fuse_dev_release);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002164
Jeff Dike385a17b2006-04-10 22:54:52 -07002165static int fuse_dev_fasync(int fd, struct file *file, int on)
2166{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002167 struct fuse_dev *fud = fuse_get_dev(file);
2168
2169 if (!fud)
Miklos Szeredia87046d2006-04-10 22:54:56 -07002170 return -EPERM;
Jeff Dike385a17b2006-04-10 22:54:52 -07002171
2172 /* No locking - fasync_helper does its own locking */
Miklos Szeredicc080e92015-07-01 16:26:08 +02002173 return fasync_helper(fd, file, on, &fud->fc->iq.fasync);
Jeff Dike385a17b2006-04-10 22:54:52 -07002174}
2175
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002176static int fuse_device_clone(struct fuse_conn *fc, struct file *new)
2177{
Miklos Szeredicc080e92015-07-01 16:26:08 +02002178 struct fuse_dev *fud;
2179
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002180 if (new->private_data)
2181 return -EINVAL;
2182
Miklos Szeredicc080e92015-07-01 16:26:08 +02002183 fud = fuse_dev_alloc(fc);
2184 if (!fud)
2185 return -ENOMEM;
2186
2187 new->private_data = fud;
Miklos Szeredic36960462015-07-01 16:26:09 +02002188 atomic_inc(&fc->dev_count);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002189
2190 return 0;
2191}
2192
2193static long fuse_dev_ioctl(struct file *file, unsigned int cmd,
2194 unsigned long arg)
2195{
2196 int err = -ENOTTY;
2197
2198 if (cmd == FUSE_DEV_IOC_CLONE) {
2199 int oldfd;
2200
2201 err = -EFAULT;
2202 if (!get_user(oldfd, (__u32 __user *) arg)) {
2203 struct file *old = fget(oldfd);
2204
2205 err = -EINVAL;
2206 if (old) {
Jann Horn8ed1f0e2015-08-16 20:27:01 +02002207 struct fuse_dev *fud = NULL;
2208
2209 /*
2210 * Check against file->f_op because CUSE
2211 * uses the same ioctl handler.
2212 */
2213 if (old->f_op == file->f_op &&
2214 old->f_cred->user_ns == file->f_cred->user_ns)
2215 fud = fuse_get_dev(old);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002216
Miklos Szeredicc080e92015-07-01 16:26:08 +02002217 if (fud) {
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002218 mutex_lock(&fuse_mutex);
Miklos Szeredicc080e92015-07-01 16:26:08 +02002219 err = fuse_device_clone(fud->fc, file);
Miklos Szeredi00c570f2015-07-01 16:26:08 +02002220 mutex_unlock(&fuse_mutex);
2221 }
2222 fput(old);
2223 }
2224 }
2225 }
2226 return err;
2227}
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 Szeredi00c570f2015-07-01 16:26:08 +02002240 .unlocked_ioctl = fuse_dev_ioctl,
2241 .compat_ioctl = fuse_dev_ioctl,
Miklos Szeredi334f4852005-09-09 13:10:27 -07002242};
Tejun Heo08cbf542009-04-14 10:54:53 +09002243EXPORT_SYMBOL_GPL(fuse_dev_operations);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002244
2245static struct miscdevice fuse_miscdevice = {
2246 .minor = FUSE_MINOR,
2247 .name = "fuse",
2248 .fops = &fuse_dev_operations,
2249};
2250
2251int __init fuse_dev_init(void)
2252{
2253 int err = -ENOMEM;
2254 fuse_req_cachep = kmem_cache_create("fuse_request",
2255 sizeof(struct fuse_req),
Paul Mundt20c2df82007-07-20 10:11:58 +09002256 0, 0, NULL);
Miklos Szeredi334f4852005-09-09 13:10:27 -07002257 if (!fuse_req_cachep)
2258 goto out;
2259
2260 err = misc_register(&fuse_miscdevice);
2261 if (err)
2262 goto out_cache_clean;
2263
2264 return 0;
2265
2266 out_cache_clean:
2267 kmem_cache_destroy(fuse_req_cachep);
2268 out:
2269 return err;
2270}
2271
2272void fuse_dev_cleanup(void)
2273{
2274 misc_deregister(&fuse_miscdevice);
2275 kmem_cache_destroy(fuse_req_cachep);
2276}