drivers: remove reference to feature-removal-schedule.txt
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / fuse / file.c
CommitLineData
b6aeaded
MS
1/*
2 FUSE: Filesystem in Userspace
1729a16c 3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
b6aeaded
MS
4
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/pagemap.h>
12#include <linux/slab.h>
13#include <linux/kernel.h>
e8edc6e0 14#include <linux/sched.h>
08cbf542 15#include <linux/module.h>
d9d318d3 16#include <linux/compat.h>
478e0841 17#include <linux/swap.h>
b6aeaded 18
4b6f5d20 19static const struct file_operations fuse_direct_io_file_operations;
45323fb7 20
91fe96b4
MS
21static int fuse_send_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
22 int opcode, struct fuse_open_out *outargp)
b6aeaded 23{
b6aeaded 24 struct fuse_open_in inarg;
fd72faac
MS
25 struct fuse_req *req;
26 int err;
27
ce1d5a49
MS
28 req = fuse_get_req(fc);
29 if (IS_ERR(req))
30 return PTR_ERR(req);
fd72faac
MS
31
32 memset(&inarg, 0, sizeof(inarg));
6ff958ed
MS
33 inarg.flags = file->f_flags & ~(O_CREAT | O_EXCL | O_NOCTTY);
34 if (!fc->atomic_o_trunc)
35 inarg.flags &= ~O_TRUNC;
91fe96b4
MS
36 req->in.h.opcode = opcode;
37 req->in.h.nodeid = nodeid;
fd72faac
MS
38 req->in.numargs = 1;
39 req->in.args[0].size = sizeof(inarg);
40 req->in.args[0].value = &inarg;
41 req->out.numargs = 1;
42 req->out.args[0].size = sizeof(*outargp);
43 req->out.args[0].value = outargp;
b93f858a 44 fuse_request_send(fc, req);
fd72faac
MS
45 err = req->out.h.error;
46 fuse_put_request(fc, req);
47
48 return err;
49}
50
acf99433 51struct fuse_file *fuse_file_alloc(struct fuse_conn *fc)
fd72faac
MS
52{
53 struct fuse_file *ff;
6b2db28a 54
fd72faac 55 ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL);
6b2db28a
TH
56 if (unlikely(!ff))
57 return NULL;
58
da5e4714 59 ff->fc = fc;
6b2db28a
TH
60 ff->reserved_req = fuse_request_alloc();
61 if (unlikely(!ff->reserved_req)) {
62 kfree(ff);
63 return NULL;
fd72faac 64 }
6b2db28a
TH
65
66 INIT_LIST_HEAD(&ff->write_entry);
67 atomic_set(&ff->count, 0);
68 RB_CLEAR_NODE(&ff->polled_node);
69 init_waitqueue_head(&ff->poll_wait);
70
71 spin_lock(&fc->lock);
72 ff->kh = ++fc->khctr;
73 spin_unlock(&fc->lock);
74
fd72faac
MS
75 return ff;
76}
77
78void fuse_file_free(struct fuse_file *ff)
79{
33649c91 80 fuse_request_free(ff->reserved_req);
fd72faac
MS
81 kfree(ff);
82}
83
c7b7143c 84struct fuse_file *fuse_file_get(struct fuse_file *ff)
c756e0a4
MS
85{
86 atomic_inc(&ff->count);
87 return ff;
88}
89
5a18ec17
MS
90static void fuse_release_async(struct work_struct *work)
91{
92 struct fuse_req *req;
93 struct fuse_conn *fc;
94 struct path path;
95
96 req = container_of(work, struct fuse_req, misc.release.work);
97 path = req->misc.release.path;
98 fc = get_fuse_conn(path.dentry->d_inode);
99
100 fuse_put_request(fc, req);
101 path_put(&path);
102}
103
819c4b3b
MS
104static void fuse_release_end(struct fuse_conn *fc, struct fuse_req *req)
105{
5a18ec17
MS
106 if (fc->destroy_req) {
107 /*
108 * If this is a fuseblk mount, then it's possible that
109 * releasing the path will result in releasing the
110 * super block and sending the DESTROY request. If
111 * the server is single threaded, this would hang.
112 * For this reason do the path_put() in a separate
113 * thread.
114 */
115 atomic_inc(&req->count);
116 INIT_WORK(&req->misc.release.work, fuse_release_async);
117 schedule_work(&req->misc.release.work);
118 } else {
119 path_put(&req->misc.release.path);
120 }
819c4b3b
MS
121}
122
5a18ec17 123static void fuse_file_put(struct fuse_file *ff, bool sync)
c756e0a4
MS
124{
125 if (atomic_dec_and_test(&ff->count)) {
126 struct fuse_req *req = ff->reserved_req;
8b0797a4 127
5a18ec17
MS
128 if (sync) {
129 fuse_request_send(ff->fc, req);
130 path_put(&req->misc.release.path);
131 fuse_put_request(ff->fc, req);
132 } else {
133 req->end = fuse_release_end;
134 fuse_request_send_background(ff->fc, req);
135 }
c756e0a4
MS
136 kfree(ff);
137 }
138}
139
08cbf542
TH
140int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
141 bool isdir)
91fe96b4
MS
142{
143 struct fuse_open_out outarg;
144 struct fuse_file *ff;
145 int err;
146 int opcode = isdir ? FUSE_OPENDIR : FUSE_OPEN;
147
148 ff = fuse_file_alloc(fc);
149 if (!ff)
150 return -ENOMEM;
151
152 err = fuse_send_open(fc, nodeid, file, opcode, &outarg);
153 if (err) {
154 fuse_file_free(ff);
155 return err;
156 }
157
158 if (isdir)
159 outarg.open_flags &= ~FOPEN_DIRECT_IO;
160
161 ff->fh = outarg.fh;
162 ff->nodeid = nodeid;
163 ff->open_flags = outarg.open_flags;
164 file->private_data = fuse_file_get(ff);
165
166 return 0;
167}
08cbf542 168EXPORT_SYMBOL_GPL(fuse_do_open);
91fe96b4 169
c7b7143c 170void fuse_finish_open(struct inode *inode, struct file *file)
fd72faac 171{
c7b7143c 172 struct fuse_file *ff = file->private_data;
a0822c55 173 struct fuse_conn *fc = get_fuse_conn(inode);
c7b7143c
MS
174
175 if (ff->open_flags & FOPEN_DIRECT_IO)
fd72faac 176 file->f_op = &fuse_direct_io_file_operations;
c7b7143c 177 if (!(ff->open_flags & FOPEN_KEEP_CACHE))
b1009979 178 invalidate_inode_pages2(inode->i_mapping);
c7b7143c 179 if (ff->open_flags & FOPEN_NONSEEKABLE)
a7c1b990 180 nonseekable_open(inode, file);
a0822c55
KS
181 if (fc->atomic_o_trunc && (file->f_flags & O_TRUNC)) {
182 struct fuse_inode *fi = get_fuse_inode(inode);
183
184 spin_lock(&fc->lock);
185 fi->attr_version = ++fc->attr_version;
186 i_size_write(inode, 0);
187 spin_unlock(&fc->lock);
188 fuse_invalidate_attr(inode);
189 }
fd72faac
MS
190}
191
91fe96b4 192int fuse_open_common(struct inode *inode, struct file *file, bool isdir)
fd72faac 193{
acf99433 194 struct fuse_conn *fc = get_fuse_conn(inode);
b6aeaded 195 int err;
b6aeaded
MS
196
197 err = generic_file_open(inode, file);
198 if (err)
199 return err;
200
91fe96b4 201 err = fuse_do_open(fc, get_node_id(inode), file, isdir);
fd72faac 202 if (err)
91fe96b4 203 return err;
b6aeaded 204
91fe96b4
MS
205 fuse_finish_open(inode, file);
206
207 return 0;
b6aeaded
MS
208}
209
8b0797a4 210static void fuse_prepare_release(struct fuse_file *ff, int flags, int opcode)
64c6d8ed 211{
8b0797a4 212 struct fuse_conn *fc = ff->fc;
33649c91 213 struct fuse_req *req = ff->reserved_req;
b57d4264 214 struct fuse_release_in *inarg = &req->misc.release.in;
b6aeaded 215
8b0797a4
MS
216 spin_lock(&fc->lock);
217 list_del(&ff->write_entry);
218 if (!RB_EMPTY_NODE(&ff->polled_node))
219 rb_erase(&ff->polled_node, &fc->polled_files);
220 spin_unlock(&fc->lock);
221
357ccf2b 222 wake_up_interruptible_all(&ff->poll_wait);
8b0797a4 223
b6aeaded 224 inarg->fh = ff->fh;
fd72faac 225 inarg->flags = flags;
51eb01e7 226 req->in.h.opcode = opcode;
c7b7143c 227 req->in.h.nodeid = ff->nodeid;
b6aeaded
MS
228 req->in.numargs = 1;
229 req->in.args[0].size = sizeof(struct fuse_release_in);
230 req->in.args[0].value = inarg;
fd72faac
MS
231}
232
8b0797a4 233void fuse_release_common(struct file *file, int opcode)
fd72faac 234{
6b2db28a
TH
235 struct fuse_file *ff;
236 struct fuse_req *req;
b6aeaded 237
6b2db28a
TH
238 ff = file->private_data;
239 if (unlikely(!ff))
8b0797a4 240 return;
6b2db28a 241
6b2db28a 242 req = ff->reserved_req;
8b0797a4 243 fuse_prepare_release(ff, file->f_flags, opcode);
6b2db28a 244
37fb3a30
MS
245 if (ff->flock) {
246 struct fuse_release_in *inarg = &req->misc.release.in;
247 inarg->release_flags |= FUSE_RELEASE_FLOCK_UNLOCK;
248 inarg->lock_owner = fuse_lock_owner_id(ff->fc,
249 (fl_owner_t) file);
250 }
6b2db28a 251 /* Hold vfsmount and dentry until release is finished */
b0be46eb
MS
252 path_get(&file->f_path);
253 req->misc.release.path = file->f_path;
6b2db28a 254
6b2db28a
TH
255 /*
256 * Normally this will send the RELEASE request, however if
257 * some asynchronous READ or WRITE requests are outstanding,
258 * the sending will be delayed.
5a18ec17
MS
259 *
260 * Make the release synchronous if this is a fuseblk mount,
261 * synchronous RELEASE is allowed (and desirable) in this case
262 * because the server can be trusted not to screw up.
6b2db28a 263 */
5a18ec17 264 fuse_file_put(ff, ff->fc->destroy_req != NULL);
b6aeaded
MS
265}
266
04730fef
MS
267static int fuse_open(struct inode *inode, struct file *file)
268{
91fe96b4 269 return fuse_open_common(inode, file, false);
04730fef
MS
270}
271
272static int fuse_release(struct inode *inode, struct file *file)
273{
8b0797a4
MS
274 fuse_release_common(file, FUSE_RELEASE);
275
276 /* return value is ignored by VFS */
277 return 0;
278}
279
280void fuse_sync_release(struct fuse_file *ff, int flags)
281{
282 WARN_ON(atomic_read(&ff->count) > 1);
283 fuse_prepare_release(ff, flags, FUSE_RELEASE);
284 ff->reserved_req->force = 1;
285 fuse_request_send(ff->fc, ff->reserved_req);
286 fuse_put_request(ff->fc, ff->reserved_req);
287 kfree(ff);
04730fef 288}
08cbf542 289EXPORT_SYMBOL_GPL(fuse_sync_release);
04730fef 290
71421259 291/*
9c8ef561
MS
292 * Scramble the ID space with XTEA, so that the value of the files_struct
293 * pointer is not exposed to userspace.
71421259 294 */
f3332114 295u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id)
71421259 296{
9c8ef561
MS
297 u32 *k = fc->scramble_key;
298 u64 v = (unsigned long) id;
299 u32 v0 = v;
300 u32 v1 = v >> 32;
301 u32 sum = 0;
302 int i;
303
304 for (i = 0; i < 32; i++) {
305 v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ (sum + k[sum & 3]);
306 sum += 0x9E3779B9;
307 v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ (sum + k[sum>>11 & 3]);
308 }
309
310 return (u64) v0 + ((u64) v1 << 32);
71421259
MS
311}
312
3be5a52b
MS
313/*
314 * Check if page is under writeback
315 *
316 * This is currently done by walking the list of writepage requests
317 * for the inode, which can be pretty inefficient.
318 */
319static bool fuse_page_is_writeback(struct inode *inode, pgoff_t index)
320{
321 struct fuse_conn *fc = get_fuse_conn(inode);
322 struct fuse_inode *fi = get_fuse_inode(inode);
323 struct fuse_req *req;
324 bool found = false;
325
326 spin_lock(&fc->lock);
327 list_for_each_entry(req, &fi->writepages, writepages_entry) {
328 pgoff_t curr_index;
329
330 BUG_ON(req->inode != inode);
331 curr_index = req->misc.write.in.offset >> PAGE_CACHE_SHIFT;
332 if (curr_index == index) {
333 found = true;
334 break;
335 }
336 }
337 spin_unlock(&fc->lock);
338
339 return found;
340}
341
342/*
343 * Wait for page writeback to be completed.
344 *
345 * Since fuse doesn't rely on the VM writeback tracking, this has to
346 * use some other means.
347 */
348static int fuse_wait_on_page_writeback(struct inode *inode, pgoff_t index)
349{
350 struct fuse_inode *fi = get_fuse_inode(inode);
351
352 wait_event(fi->page_waitq, !fuse_page_is_writeback(inode, index));
353 return 0;
354}
355
75e1fcc0 356static int fuse_flush(struct file *file, fl_owner_t id)
b6aeaded 357{
7706a9d6 358 struct inode *inode = file->f_path.dentry->d_inode;
b6aeaded
MS
359 struct fuse_conn *fc = get_fuse_conn(inode);
360 struct fuse_file *ff = file->private_data;
361 struct fuse_req *req;
362 struct fuse_flush_in inarg;
363 int err;
364
248d86e8
MS
365 if (is_bad_inode(inode))
366 return -EIO;
367
b6aeaded
MS
368 if (fc->no_flush)
369 return 0;
370
33649c91 371 req = fuse_get_req_nofail(fc, file);
b6aeaded
MS
372 memset(&inarg, 0, sizeof(inarg));
373 inarg.fh = ff->fh;
9c8ef561 374 inarg.lock_owner = fuse_lock_owner_id(fc, id);
b6aeaded
MS
375 req->in.h.opcode = FUSE_FLUSH;
376 req->in.h.nodeid = get_node_id(inode);
b6aeaded
MS
377 req->in.numargs = 1;
378 req->in.args[0].size = sizeof(inarg);
379 req->in.args[0].value = &inarg;
71421259 380 req->force = 1;
b93f858a 381 fuse_request_send(fc, req);
b6aeaded
MS
382 err = req->out.h.error;
383 fuse_put_request(fc, req);
384 if (err == -ENOSYS) {
385 fc->no_flush = 1;
386 err = 0;
387 }
388 return err;
389}
390
3be5a52b
MS
391/*
392 * Wait for all pending writepages on the inode to finish.
393 *
394 * This is currently done by blocking further writes with FUSE_NOWRITE
395 * and waiting for all sent writes to complete.
396 *
397 * This must be called under i_mutex, otherwise the FUSE_NOWRITE usage
398 * could conflict with truncation.
399 */
400static void fuse_sync_writes(struct inode *inode)
401{
402 fuse_set_nowrite(inode);
403 fuse_release_nowrite(inode);
404}
405
02c24a82
JB
406int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
407 int datasync, int isdir)
b6aeaded 408{
7ea80859 409 struct inode *inode = file->f_mapping->host;
b6aeaded
MS
410 struct fuse_conn *fc = get_fuse_conn(inode);
411 struct fuse_file *ff = file->private_data;
412 struct fuse_req *req;
413 struct fuse_fsync_in inarg;
414 int err;
415
248d86e8
MS
416 if (is_bad_inode(inode))
417 return -EIO;
418
02c24a82
JB
419 err = filemap_write_and_wait_range(inode->i_mapping, start, end);
420 if (err)
421 return err;
422
82547981 423 if ((!isdir && fc->no_fsync) || (isdir && fc->no_fsyncdir))
b6aeaded
MS
424 return 0;
425
02c24a82
JB
426 mutex_lock(&inode->i_mutex);
427
3be5a52b
MS
428 /*
429 * Start writeback against all dirty pages of the inode, then
430 * wait for all outstanding writes, before sending the FSYNC
431 * request.
432 */
433 err = write_inode_now(inode, 0);
434 if (err)
02c24a82 435 goto out;
3be5a52b
MS
436
437 fuse_sync_writes(inode);
438
ce1d5a49 439 req = fuse_get_req(fc);
02c24a82
JB
440 if (IS_ERR(req)) {
441 err = PTR_ERR(req);
442 goto out;
443 }
b6aeaded
MS
444
445 memset(&inarg, 0, sizeof(inarg));
446 inarg.fh = ff->fh;
447 inarg.fsync_flags = datasync ? 1 : 0;
82547981 448 req->in.h.opcode = isdir ? FUSE_FSYNCDIR : FUSE_FSYNC;
b6aeaded 449 req->in.h.nodeid = get_node_id(inode);
b6aeaded
MS
450 req->in.numargs = 1;
451 req->in.args[0].size = sizeof(inarg);
452 req->in.args[0].value = &inarg;
b93f858a 453 fuse_request_send(fc, req);
b6aeaded
MS
454 err = req->out.h.error;
455 fuse_put_request(fc, req);
456 if (err == -ENOSYS) {
82547981
MS
457 if (isdir)
458 fc->no_fsyncdir = 1;
459 else
460 fc->no_fsync = 1;
b6aeaded
MS
461 err = 0;
462 }
02c24a82
JB
463out:
464 mutex_unlock(&inode->i_mutex);
b6aeaded
MS
465 return err;
466}
467
02c24a82
JB
468static int fuse_fsync(struct file *file, loff_t start, loff_t end,
469 int datasync)
82547981 470{
02c24a82 471 return fuse_fsync_common(file, start, end, datasync, 0);
82547981
MS
472}
473
2106cb18
MS
474void fuse_read_fill(struct fuse_req *req, struct file *file, loff_t pos,
475 size_t count, int opcode)
b6aeaded 476{
5c5c5e51 477 struct fuse_read_in *inarg = &req->misc.read.in;
a6643094 478 struct fuse_file *ff = file->private_data;
b6aeaded 479
361b1eb5
MS
480 inarg->fh = ff->fh;
481 inarg->offset = pos;
482 inarg->size = count;
a6643094 483 inarg->flags = file->f_flags;
361b1eb5 484 req->in.h.opcode = opcode;
2106cb18 485 req->in.h.nodeid = ff->nodeid;
b6aeaded
MS
486 req->in.numargs = 1;
487 req->in.args[0].size = sizeof(struct fuse_read_in);
c1aa96a5 488 req->in.args[0].value = inarg;
b6aeaded
MS
489 req->out.argvar = 1;
490 req->out.numargs = 1;
491 req->out.args[0].size = count;
b6aeaded
MS
492}
493
8bfc016d 494static size_t fuse_send_read(struct fuse_req *req, struct file *file,
2106cb18 495 loff_t pos, size_t count, fl_owner_t owner)
04730fef 496{
2106cb18
MS
497 struct fuse_file *ff = file->private_data;
498 struct fuse_conn *fc = ff->fc;
f3332114 499
2106cb18 500 fuse_read_fill(req, file, pos, count, FUSE_READ);
f3332114 501 if (owner != NULL) {
5c5c5e51 502 struct fuse_read_in *inarg = &req->misc.read.in;
f3332114
MS
503
504 inarg->read_flags |= FUSE_READ_LOCKOWNER;
505 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
506 }
b93f858a 507 fuse_request_send(fc, req);
361b1eb5 508 return req->out.args[0].size;
04730fef
MS
509}
510
5c5c5e51
MS
511static void fuse_read_update_size(struct inode *inode, loff_t size,
512 u64 attr_ver)
513{
514 struct fuse_conn *fc = get_fuse_conn(inode);
515 struct fuse_inode *fi = get_fuse_inode(inode);
516
517 spin_lock(&fc->lock);
518 if (attr_ver == fi->attr_version && size < inode->i_size) {
519 fi->attr_version = ++fc->attr_version;
520 i_size_write(inode, size);
521 }
522 spin_unlock(&fc->lock);
523}
524
b6aeaded
MS
525static int fuse_readpage(struct file *file, struct page *page)
526{
527 struct inode *inode = page->mapping->host;
528 struct fuse_conn *fc = get_fuse_conn(inode);
248d86e8 529 struct fuse_req *req;
5c5c5e51
MS
530 size_t num_read;
531 loff_t pos = page_offset(page);
532 size_t count = PAGE_CACHE_SIZE;
533 u64 attr_ver;
248d86e8
MS
534 int err;
535
536 err = -EIO;
537 if (is_bad_inode(inode))
538 goto out;
539
3be5a52b 540 /*
25985edc 541 * Page writeback can extend beyond the lifetime of the
3be5a52b
MS
542 * page-cache page, so make sure we read a properly synced
543 * page.
544 */
545 fuse_wait_on_page_writeback(inode, page->index);
546
ce1d5a49
MS
547 req = fuse_get_req(fc);
548 err = PTR_ERR(req);
549 if (IS_ERR(req))
b6aeaded
MS
550 goto out;
551
5c5c5e51
MS
552 attr_ver = fuse_get_attr_version(fc);
553
b6aeaded 554 req->out.page_zeroing = 1;
f4975c67 555 req->out.argpages = 1;
b6aeaded
MS
556 req->num_pages = 1;
557 req->pages[0] = page;
2106cb18 558 num_read = fuse_send_read(req, file, pos, count, NULL);
b6aeaded
MS
559 err = req->out.h.error;
560 fuse_put_request(fc, req);
5c5c5e51
MS
561
562 if (!err) {
563 /*
564 * Short read means EOF. If file size is larger, truncate it
565 */
566 if (num_read < count)
567 fuse_read_update_size(inode, pos + num_read, attr_ver);
568
b6aeaded 569 SetPageUptodate(page);
5c5c5e51
MS
570 }
571
b36c31ba 572 fuse_invalidate_attr(inode); /* atime changed */
b6aeaded
MS
573 out:
574 unlock_page(page);
575 return err;
576}
577
c1aa96a5 578static void fuse_readpages_end(struct fuse_conn *fc, struct fuse_req *req)
db50b96c 579{
c1aa96a5 580 int i;
5c5c5e51
MS
581 size_t count = req->misc.read.in.size;
582 size_t num_read = req->out.args[0].size;
ce534fb0 583 struct address_space *mapping = NULL;
c1aa96a5 584
ce534fb0
MS
585 for (i = 0; mapping == NULL && i < req->num_pages; i++)
586 mapping = req->pages[i]->mapping;
5c5c5e51 587
ce534fb0
MS
588 if (mapping) {
589 struct inode *inode = mapping->host;
590
591 /*
592 * Short read means EOF. If file size is larger, truncate it
593 */
594 if (!req->out.h.error && num_read < count) {
595 loff_t pos;
596
597 pos = page_offset(req->pages[0]) + num_read;
598 fuse_read_update_size(inode, pos,
599 req->misc.read.attr_ver);
600 }
601 fuse_invalidate_attr(inode); /* atime changed */
602 }
c1aa96a5 603
db50b96c
MS
604 for (i = 0; i < req->num_pages; i++) {
605 struct page *page = req->pages[i];
606 if (!req->out.h.error)
607 SetPageUptodate(page);
c1aa96a5
MS
608 else
609 SetPageError(page);
db50b96c 610 unlock_page(page);
b5dd3285 611 page_cache_release(page);
db50b96c 612 }
c756e0a4 613 if (req->ff)
5a18ec17 614 fuse_file_put(req->ff, false);
c1aa96a5
MS
615}
616
2106cb18 617static void fuse_send_readpages(struct fuse_req *req, struct file *file)
c1aa96a5 618{
2106cb18
MS
619 struct fuse_file *ff = file->private_data;
620 struct fuse_conn *fc = ff->fc;
c1aa96a5
MS
621 loff_t pos = page_offset(req->pages[0]);
622 size_t count = req->num_pages << PAGE_CACHE_SHIFT;
f4975c67
MS
623
624 req->out.argpages = 1;
c1aa96a5 625 req->out.page_zeroing = 1;
ce534fb0 626 req->out.page_replace = 1;
2106cb18 627 fuse_read_fill(req, file, pos, count, FUSE_READ);
5c5c5e51 628 req->misc.read.attr_ver = fuse_get_attr_version(fc);
9cd68455 629 if (fc->async_read) {
c756e0a4 630 req->ff = fuse_file_get(ff);
9cd68455 631 req->end = fuse_readpages_end;
b93f858a 632 fuse_request_send_background(fc, req);
9cd68455 633 } else {
b93f858a 634 fuse_request_send(fc, req);
9cd68455 635 fuse_readpages_end(fc, req);
e9bb09dd 636 fuse_put_request(fc, req);
9cd68455 637 }
db50b96c
MS
638}
639
c756e0a4 640struct fuse_fill_data {
db50b96c 641 struct fuse_req *req;
a6643094 642 struct file *file;
db50b96c
MS
643 struct inode *inode;
644};
645
646static int fuse_readpages_fill(void *_data, struct page *page)
647{
c756e0a4 648 struct fuse_fill_data *data = _data;
db50b96c
MS
649 struct fuse_req *req = data->req;
650 struct inode *inode = data->inode;
651 struct fuse_conn *fc = get_fuse_conn(inode);
652
3be5a52b
MS
653 fuse_wait_on_page_writeback(inode, page->index);
654
db50b96c
MS
655 if (req->num_pages &&
656 (req->num_pages == FUSE_MAX_PAGES_PER_REQ ||
657 (req->num_pages + 1) * PAGE_CACHE_SIZE > fc->max_read ||
658 req->pages[req->num_pages - 1]->index + 1 != page->index)) {
2106cb18 659 fuse_send_readpages(req, data->file);
ce1d5a49
MS
660 data->req = req = fuse_get_req(fc);
661 if (IS_ERR(req)) {
db50b96c 662 unlock_page(page);
ce1d5a49 663 return PTR_ERR(req);
db50b96c 664 }
db50b96c 665 }
b5dd3285 666 page_cache_get(page);
db50b96c 667 req->pages[req->num_pages] = page;
1729a16c 668 req->num_pages++;
db50b96c
MS
669 return 0;
670}
671
672static int fuse_readpages(struct file *file, struct address_space *mapping,
673 struct list_head *pages, unsigned nr_pages)
674{
675 struct inode *inode = mapping->host;
676 struct fuse_conn *fc = get_fuse_conn(inode);
c756e0a4 677 struct fuse_fill_data data;
db50b96c 678 int err;
248d86e8 679
1d7ea732 680 err = -EIO;
248d86e8 681 if (is_bad_inode(inode))
2e990021 682 goto out;
248d86e8 683
a6643094 684 data.file = file;
db50b96c 685 data.inode = inode;
ce1d5a49 686 data.req = fuse_get_req(fc);
1d7ea732 687 err = PTR_ERR(data.req);
ce1d5a49 688 if (IS_ERR(data.req))
2e990021 689 goto out;
db50b96c
MS
690
691 err = read_cache_pages(mapping, pages, fuse_readpages_fill, &data);
d3406ffa
MS
692 if (!err) {
693 if (data.req->num_pages)
2106cb18 694 fuse_send_readpages(data.req, file);
d3406ffa
MS
695 else
696 fuse_put_request(fc, data.req);
697 }
2e990021 698out:
1d7ea732 699 return err;
db50b96c
MS
700}
701
bcb4be80
MS
702static ssize_t fuse_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
703 unsigned long nr_segs, loff_t pos)
704{
705 struct inode *inode = iocb->ki_filp->f_mapping->host;
a8894274 706 struct fuse_conn *fc = get_fuse_conn(inode);
bcb4be80 707
a8894274
BF
708 /*
709 * In auto invalidate mode, always update attributes on read.
710 * Otherwise, only update if we attempt to read past EOF (to ensure
711 * i_size is up to date).
712 */
713 if (fc->auto_inval_data ||
714 (pos + iov_length(iov, nr_segs) > i_size_read(inode))) {
bcb4be80 715 int err;
bcb4be80
MS
716 err = fuse_update_attributes(inode, NULL, iocb->ki_filp, NULL);
717 if (err)
718 return err;
719 }
720
721 return generic_file_aio_read(iocb, iov, nr_segs, pos);
722}
723
2d698b07 724static void fuse_write_fill(struct fuse_req *req, struct fuse_file *ff,
2106cb18 725 loff_t pos, size_t count)
b6aeaded 726{
b25e82e5
MS
727 struct fuse_write_in *inarg = &req->misc.write.in;
728 struct fuse_write_out *outarg = &req->misc.write.out;
b6aeaded 729
b25e82e5
MS
730 inarg->fh = ff->fh;
731 inarg->offset = pos;
732 inarg->size = count;
b6aeaded 733 req->in.h.opcode = FUSE_WRITE;
2106cb18 734 req->in.h.nodeid = ff->nodeid;
b6aeaded 735 req->in.numargs = 2;
2106cb18 736 if (ff->fc->minor < 9)
f3332114
MS
737 req->in.args[0].size = FUSE_COMPAT_WRITE_IN_SIZE;
738 else
739 req->in.args[0].size = sizeof(struct fuse_write_in);
b25e82e5 740 req->in.args[0].value = inarg;
b6aeaded
MS
741 req->in.args[1].size = count;
742 req->out.numargs = 1;
743 req->out.args[0].size = sizeof(struct fuse_write_out);
b25e82e5
MS
744 req->out.args[0].value = outarg;
745}
746
747static size_t fuse_send_write(struct fuse_req *req, struct file *file,
2106cb18 748 loff_t pos, size_t count, fl_owner_t owner)
b25e82e5 749{
2106cb18
MS
750 struct fuse_file *ff = file->private_data;
751 struct fuse_conn *fc = ff->fc;
2d698b07
MS
752 struct fuse_write_in *inarg = &req->misc.write.in;
753
2106cb18 754 fuse_write_fill(req, ff, pos, count);
2d698b07 755 inarg->flags = file->f_flags;
f3332114 756 if (owner != NULL) {
f3332114
MS
757 inarg->write_flags |= FUSE_WRITE_LOCKOWNER;
758 inarg->lock_owner = fuse_lock_owner_id(fc, owner);
759 }
b93f858a 760 fuse_request_send(fc, req);
b25e82e5 761 return req->misc.write.out.size;
b6aeaded
MS
762}
763
a1d75f25 764void fuse_write_update_size(struct inode *inode, loff_t pos)
854512ec
MS
765{
766 struct fuse_conn *fc = get_fuse_conn(inode);
767 struct fuse_inode *fi = get_fuse_inode(inode);
768
769 spin_lock(&fc->lock);
770 fi->attr_version = ++fc->attr_version;
771 if (pos > inode->i_size)
772 i_size_write(inode, pos);
773 spin_unlock(&fc->lock);
774}
775
ea9b9907
NP
776static size_t fuse_send_write_pages(struct fuse_req *req, struct file *file,
777 struct inode *inode, loff_t pos,
778 size_t count)
779{
780 size_t res;
781 unsigned offset;
782 unsigned i;
783
784 for (i = 0; i < req->num_pages; i++)
785 fuse_wait_on_page_writeback(inode, req->pages[i]->index);
786
2106cb18 787 res = fuse_send_write(req, file, pos, count, NULL);
ea9b9907
NP
788
789 offset = req->page_offset;
790 count = res;
791 for (i = 0; i < req->num_pages; i++) {
792 struct page *page = req->pages[i];
793
794 if (!req->out.h.error && !offset && count >= PAGE_CACHE_SIZE)
795 SetPageUptodate(page);
796
797 if (count > PAGE_CACHE_SIZE - offset)
798 count -= PAGE_CACHE_SIZE - offset;
799 else
800 count = 0;
801 offset = 0;
802
803 unlock_page(page);
804 page_cache_release(page);
805 }
806
807 return res;
808}
809
810static ssize_t fuse_fill_write_pages(struct fuse_req *req,
811 struct address_space *mapping,
812 struct iov_iter *ii, loff_t pos)
813{
814 struct fuse_conn *fc = get_fuse_conn(mapping->host);
815 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
816 size_t count = 0;
817 int err;
818
f4975c67 819 req->in.argpages = 1;
ea9b9907
NP
820 req->page_offset = offset;
821
822 do {
823 size_t tmp;
824 struct page *page;
825 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
826 size_t bytes = min_t(size_t, PAGE_CACHE_SIZE - offset,
827 iov_iter_count(ii));
828
829 bytes = min_t(size_t, bytes, fc->max_write - count);
830
831 again:
832 err = -EFAULT;
833 if (iov_iter_fault_in_readable(ii, bytes))
834 break;
835
836 err = -ENOMEM;
54566b2c 837 page = grab_cache_page_write_begin(mapping, index, 0);
ea9b9907
NP
838 if (!page)
839 break;
840
931e80e4 841 if (mapping_writably_mapped(mapping))
842 flush_dcache_page(page);
843
ea9b9907
NP
844 pagefault_disable();
845 tmp = iov_iter_copy_from_user_atomic(page, ii, offset, bytes);
846 pagefault_enable();
847 flush_dcache_page(page);
848
478e0841
JW
849 mark_page_accessed(page);
850
ea9b9907
NP
851 if (!tmp) {
852 unlock_page(page);
853 page_cache_release(page);
854 bytes = min(bytes, iov_iter_single_seg_count(ii));
855 goto again;
856 }
857
858 err = 0;
859 req->pages[req->num_pages] = page;
860 req->num_pages++;
861
862 iov_iter_advance(ii, tmp);
863 count += tmp;
864 pos += tmp;
865 offset += tmp;
866 if (offset == PAGE_CACHE_SIZE)
867 offset = 0;
868
78bb6cb9
MS
869 if (!fc->big_writes)
870 break;
ea9b9907
NP
871 } while (iov_iter_count(ii) && count < fc->max_write &&
872 req->num_pages < FUSE_MAX_PAGES_PER_REQ && offset == 0);
873
874 return count > 0 ? count : err;
875}
876
877static ssize_t fuse_perform_write(struct file *file,
878 struct address_space *mapping,
879 struct iov_iter *ii, loff_t pos)
880{
881 struct inode *inode = mapping->host;
882 struct fuse_conn *fc = get_fuse_conn(inode);
883 int err = 0;
884 ssize_t res = 0;
885
886 if (is_bad_inode(inode))
887 return -EIO;
888
889 do {
890 struct fuse_req *req;
891 ssize_t count;
892
893 req = fuse_get_req(fc);
894 if (IS_ERR(req)) {
895 err = PTR_ERR(req);
896 break;
897 }
898
899 count = fuse_fill_write_pages(req, mapping, ii, pos);
900 if (count <= 0) {
901 err = count;
902 } else {
903 size_t num_written;
904
905 num_written = fuse_send_write_pages(req, file, inode,
906 pos, count);
907 err = req->out.h.error;
908 if (!err) {
909 res += num_written;
910 pos += num_written;
911
912 /* break out of the loop on short write */
913 if (num_written != count)
914 err = -EIO;
915 }
916 }
917 fuse_put_request(fc, req);
918 } while (!err && iov_iter_count(ii));
919
920 if (res > 0)
921 fuse_write_update_size(inode, pos);
922
923 fuse_invalidate_attr(inode);
924
925 return res > 0 ? res : err;
926}
927
928static ssize_t fuse_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
929 unsigned long nr_segs, loff_t pos)
930{
931 struct file *file = iocb->ki_filp;
932 struct address_space *mapping = file->f_mapping;
933 size_t count = 0;
4273b793 934 size_t ocount = 0;
ea9b9907 935 ssize_t written = 0;
4273b793 936 ssize_t written_buffered = 0;
ea9b9907
NP
937 struct inode *inode = mapping->host;
938 ssize_t err;
939 struct iov_iter i;
4273b793 940 loff_t endbyte = 0;
ea9b9907
NP
941
942 WARN_ON(iocb->ki_pos != pos);
943
4273b793
AA
944 ocount = 0;
945 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
ea9b9907
NP
946 if (err)
947 return err;
948
4273b793 949 count = ocount;
58ef6a75 950 sb_start_write(inode->i_sb);
ea9b9907 951 mutex_lock(&inode->i_mutex);
ea9b9907
NP
952
953 /* We can write back this queue in page reclaim */
954 current->backing_dev_info = mapping->backing_dev_info;
955
956 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
957 if (err)
958 goto out;
959
960 if (count == 0)
961 goto out;
962
2f1936b8 963 err = file_remove_suid(file);
ea9b9907
NP
964 if (err)
965 goto out;
966
c3b2da31
JB
967 err = file_update_time(file);
968 if (err)
969 goto out;
ea9b9907 970
4273b793
AA
971 if (file->f_flags & O_DIRECT) {
972 written = generic_file_direct_write(iocb, iov, &nr_segs,
973 pos, &iocb->ki_pos,
974 count, ocount);
975 if (written < 0 || written == count)
976 goto out;
977
978 pos += written;
979 count -= written;
ea9b9907 980
4273b793
AA
981 iov_iter_init(&i, iov, nr_segs, count, written);
982 written_buffered = fuse_perform_write(file, mapping, &i, pos);
983 if (written_buffered < 0) {
984 err = written_buffered;
985 goto out;
986 }
987 endbyte = pos + written_buffered - 1;
988
989 err = filemap_write_and_wait_range(file->f_mapping, pos,
990 endbyte);
991 if (err)
992 goto out;
993
994 invalidate_mapping_pages(file->f_mapping,
995 pos >> PAGE_CACHE_SHIFT,
996 endbyte >> PAGE_CACHE_SHIFT);
997
998 written += written_buffered;
999 iocb->ki_pos = pos + written_buffered;
1000 } else {
1001 iov_iter_init(&i, iov, nr_segs, count, 0);
1002 written = fuse_perform_write(file, mapping, &i, pos);
1003 if (written >= 0)
1004 iocb->ki_pos = pos + written;
1005 }
ea9b9907
NP
1006out:
1007 current->backing_dev_info = NULL;
1008 mutex_unlock(&inode->i_mutex);
58ef6a75 1009 sb_end_write(inode->i_sb);
ea9b9907
NP
1010
1011 return written ? written : err;
1012}
1013
413ef8cb
MS
1014static void fuse_release_user_pages(struct fuse_req *req, int write)
1015{
1016 unsigned i;
1017
1018 for (i = 0; i < req->num_pages; i++) {
1019 struct page *page = req->pages[i];
1020 if (write)
1021 set_page_dirty_lock(page);
1022 put_page(page);
1023 }
1024}
1025
1026static int fuse_get_user_pages(struct fuse_req *req, const char __user *buf,
ce60a2f1 1027 size_t *nbytesp, int write)
413ef8cb 1028{
ce60a2f1 1029 size_t nbytes = *nbytesp;
413ef8cb
MS
1030 unsigned long user_addr = (unsigned long) buf;
1031 unsigned offset = user_addr & ~PAGE_MASK;
1032 int npages;
1033
f4975c67
MS
1034 /* Special case for kernel I/O: can copy directly into the buffer */
1035 if (segment_eq(get_fs(), KERNEL_DS)) {
1036 if (write)
1037 req->in.args[1].value = (void *) user_addr;
1038 else
1039 req->out.args[0].value = (void *) user_addr;
1040
1041 return 0;
1042 }
413ef8cb 1043
ce60a2f1 1044 nbytes = min_t(size_t, nbytes, FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT);
413ef8cb 1045 npages = (nbytes + offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
bd730967 1046 npages = clamp(npages, 1, FUSE_MAX_PAGES_PER_REQ);
1bf94ca7 1047 npages = get_user_pages_fast(user_addr, npages, !write, req->pages);
413ef8cb
MS
1048 if (npages < 0)
1049 return npages;
1050
1051 req->num_pages = npages;
1052 req->page_offset = offset;
f4975c67
MS
1053
1054 if (write)
1055 req->in.argpages = 1;
1056 else
1057 req->out.argpages = 1;
1058
1059 nbytes = (req->num_pages << PAGE_SHIFT) - req->page_offset;
1060 *nbytesp = min(*nbytesp, nbytes);
1061
413ef8cb
MS
1062 return 0;
1063}
1064
08cbf542
TH
1065ssize_t fuse_direct_io(struct file *file, const char __user *buf,
1066 size_t count, loff_t *ppos, int write)
413ef8cb 1067{
2106cb18
MS
1068 struct fuse_file *ff = file->private_data;
1069 struct fuse_conn *fc = ff->fc;
413ef8cb
MS
1070 size_t nmax = write ? fc->max_write : fc->max_read;
1071 loff_t pos = *ppos;
1072 ssize_t res = 0;
248d86e8
MS
1073 struct fuse_req *req;
1074
ce1d5a49
MS
1075 req = fuse_get_req(fc);
1076 if (IS_ERR(req))
1077 return PTR_ERR(req);
413ef8cb
MS
1078
1079 while (count) {
413ef8cb 1080 size_t nres;
2106cb18 1081 fl_owner_t owner = current->files;
f4975c67
MS
1082 size_t nbytes = min(count, nmax);
1083 int err = fuse_get_user_pages(req, buf, &nbytes, write);
413ef8cb
MS
1084 if (err) {
1085 res = err;
1086 break;
1087 }
f4975c67 1088
413ef8cb 1089 if (write)
2106cb18 1090 nres = fuse_send_write(req, file, pos, nbytes, owner);
413ef8cb 1091 else
2106cb18
MS
1092 nres = fuse_send_read(req, file, pos, nbytes, owner);
1093
413ef8cb
MS
1094 fuse_release_user_pages(req, !write);
1095 if (req->out.h.error) {
1096 if (!res)
1097 res = req->out.h.error;
1098 break;
1099 } else if (nres > nbytes) {
1100 res = -EIO;
1101 break;
1102 }
1103 count -= nres;
1104 res += nres;
1105 pos += nres;
1106 buf += nres;
1107 if (nres != nbytes)
1108 break;
56cf34ff
MS
1109 if (count) {
1110 fuse_put_request(fc, req);
1111 req = fuse_get_req(fc);
1112 if (IS_ERR(req))
1113 break;
1114 }
413ef8cb 1115 }
f60311d5
AA
1116 if (!IS_ERR(req))
1117 fuse_put_request(fc, req);
d09cb9d7 1118 if (res > 0)
413ef8cb 1119 *ppos = pos;
413ef8cb
MS
1120
1121 return res;
1122}
08cbf542 1123EXPORT_SYMBOL_GPL(fuse_direct_io);
413ef8cb
MS
1124
1125static ssize_t fuse_direct_read(struct file *file, char __user *buf,
1126 size_t count, loff_t *ppos)
1127{
d09cb9d7
MS
1128 ssize_t res;
1129 struct inode *inode = file->f_path.dentry->d_inode;
1130
1131 if (is_bad_inode(inode))
1132 return -EIO;
1133
1134 res = fuse_direct_io(file, buf, count, ppos, 0);
1135
1136 fuse_invalidate_attr(inode);
1137
1138 return res;
413ef8cb
MS
1139}
1140
4273b793
AA
1141static ssize_t __fuse_direct_write(struct file *file, const char __user *buf,
1142 size_t count, loff_t *ppos)
413ef8cb 1143{
7706a9d6 1144 struct inode *inode = file->f_path.dentry->d_inode;
413ef8cb 1145 ssize_t res;
d09cb9d7 1146
889f7848 1147 res = generic_write_checks(file, ppos, &count, 0);
d09cb9d7 1148 if (!res) {
889f7848 1149 res = fuse_direct_io(file, buf, count, ppos, 1);
d09cb9d7
MS
1150 if (res > 0)
1151 fuse_write_update_size(inode, *ppos);
1152 }
d09cb9d7
MS
1153
1154 fuse_invalidate_attr(inode);
1155
413ef8cb
MS
1156 return res;
1157}
1158
4273b793
AA
1159static ssize_t fuse_direct_write(struct file *file, const char __user *buf,
1160 size_t count, loff_t *ppos)
1161{
1162 struct inode *inode = file->f_path.dentry->d_inode;
1163 ssize_t res;
1164
1165 if (is_bad_inode(inode))
1166 return -EIO;
1167
1168 /* Don't allow parallel writes to the same file */
1169 mutex_lock(&inode->i_mutex);
1170 res = __fuse_direct_write(file, buf, count, ppos);
1171 mutex_unlock(&inode->i_mutex);
1172
1173 return res;
1174}
1175
3be5a52b 1176static void fuse_writepage_free(struct fuse_conn *fc, struct fuse_req *req)
b6aeaded 1177{
3be5a52b 1178 __free_page(req->pages[0]);
5a18ec17 1179 fuse_file_put(req->ff, false);
3be5a52b
MS
1180}
1181
1182static void fuse_writepage_finish(struct fuse_conn *fc, struct fuse_req *req)
1183{
1184 struct inode *inode = req->inode;
1185 struct fuse_inode *fi = get_fuse_inode(inode);
1186 struct backing_dev_info *bdi = inode->i_mapping->backing_dev_info;
1187
1188 list_del(&req->writepages_entry);
1189 dec_bdi_stat(bdi, BDI_WRITEBACK);
1190 dec_zone_page_state(req->pages[0], NR_WRITEBACK_TEMP);
1191 bdi_writeout_inc(bdi);
1192 wake_up(&fi->page_waitq);
1193}
1194
1195/* Called under fc->lock, may release and reacquire it */
1196static void fuse_send_writepage(struct fuse_conn *fc, struct fuse_req *req)
b9ca67b2
MS
1197__releases(fc->lock)
1198__acquires(fc->lock)
3be5a52b
MS
1199{
1200 struct fuse_inode *fi = get_fuse_inode(req->inode);
1201 loff_t size = i_size_read(req->inode);
1202 struct fuse_write_in *inarg = &req->misc.write.in;
1203
1204 if (!fc->connected)
1205 goto out_free;
1206
1207 if (inarg->offset + PAGE_CACHE_SIZE <= size) {
1208 inarg->size = PAGE_CACHE_SIZE;
1209 } else if (inarg->offset < size) {
1210 inarg->size = size & (PAGE_CACHE_SIZE - 1);
1211 } else {
1212 /* Got truncated off completely */
1213 goto out_free;
b6aeaded 1214 }
3be5a52b
MS
1215
1216 req->in.args[1].size = inarg->size;
1217 fi->writectr++;
b93f858a 1218 fuse_request_send_background_locked(fc, req);
3be5a52b
MS
1219 return;
1220
1221 out_free:
1222 fuse_writepage_finish(fc, req);
1223 spin_unlock(&fc->lock);
1224 fuse_writepage_free(fc, req);
e9bb09dd 1225 fuse_put_request(fc, req);
3be5a52b 1226 spin_lock(&fc->lock);
b6aeaded
MS
1227}
1228
3be5a52b
MS
1229/*
1230 * If fi->writectr is positive (no truncate or fsync going on) send
1231 * all queued writepage requests.
1232 *
1233 * Called with fc->lock
1234 */
1235void fuse_flush_writepages(struct inode *inode)
b9ca67b2
MS
1236__releases(fc->lock)
1237__acquires(fc->lock)
b6aeaded 1238{
3be5a52b
MS
1239 struct fuse_conn *fc = get_fuse_conn(inode);
1240 struct fuse_inode *fi = get_fuse_inode(inode);
1241 struct fuse_req *req;
1242
1243 while (fi->writectr >= 0 && !list_empty(&fi->queued_writes)) {
1244 req = list_entry(fi->queued_writes.next, struct fuse_req, list);
1245 list_del_init(&req->list);
1246 fuse_send_writepage(fc, req);
1247 }
1248}
1249
1250static void fuse_writepage_end(struct fuse_conn *fc, struct fuse_req *req)
1251{
1252 struct inode *inode = req->inode;
1253 struct fuse_inode *fi = get_fuse_inode(inode);
1254
1255 mapping_set_error(inode->i_mapping, req->out.h.error);
1256 spin_lock(&fc->lock);
1257 fi->writectr--;
1258 fuse_writepage_finish(fc, req);
1259 spin_unlock(&fc->lock);
1260 fuse_writepage_free(fc, req);
1261}
1262
1263static int fuse_writepage_locked(struct page *page)
1264{
1265 struct address_space *mapping = page->mapping;
1266 struct inode *inode = mapping->host;
1267 struct fuse_conn *fc = get_fuse_conn(inode);
1268 struct fuse_inode *fi = get_fuse_inode(inode);
1269 struct fuse_req *req;
1270 struct fuse_file *ff;
1271 struct page *tmp_page;
1272
1273 set_page_writeback(page);
1274
1275 req = fuse_request_alloc_nofs();
1276 if (!req)
1277 goto err;
1278
1279 tmp_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1280 if (!tmp_page)
1281 goto err_free;
1282
1283 spin_lock(&fc->lock);
1284 BUG_ON(list_empty(&fi->write_files));
1285 ff = list_entry(fi->write_files.next, struct fuse_file, write_entry);
1286 req->ff = fuse_file_get(ff);
1287 spin_unlock(&fc->lock);
1288
2106cb18 1289 fuse_write_fill(req, ff, page_offset(page), 0);
3be5a52b
MS
1290
1291 copy_highpage(tmp_page, page);
2d698b07 1292 req->misc.write.in.write_flags |= FUSE_WRITE_CACHE;
f4975c67 1293 req->in.argpages = 1;
3be5a52b
MS
1294 req->num_pages = 1;
1295 req->pages[0] = tmp_page;
1296 req->page_offset = 0;
1297 req->end = fuse_writepage_end;
1298 req->inode = inode;
1299
1300 inc_bdi_stat(mapping->backing_dev_info, BDI_WRITEBACK);
1301 inc_zone_page_state(tmp_page, NR_WRITEBACK_TEMP);
1302 end_page_writeback(page);
1303
1304 spin_lock(&fc->lock);
1305 list_add(&req->writepages_entry, &fi->writepages);
1306 list_add_tail(&req->list, &fi->queued_writes);
1307 fuse_flush_writepages(inode);
1308 spin_unlock(&fc->lock);
1309
1310 return 0;
1311
1312err_free:
1313 fuse_request_free(req);
1314err:
1315 end_page_writeback(page);
1316 return -ENOMEM;
1317}
1318
1319static int fuse_writepage(struct page *page, struct writeback_control *wbc)
1320{
1321 int err;
1322
1323 err = fuse_writepage_locked(page);
1324 unlock_page(page);
1325
1326 return err;
1327}
1328
1329static int fuse_launder_page(struct page *page)
1330{
1331 int err = 0;
1332 if (clear_page_dirty_for_io(page)) {
1333 struct inode *inode = page->mapping->host;
1334 err = fuse_writepage_locked(page);
1335 if (!err)
1336 fuse_wait_on_page_writeback(inode, page->index);
1337 }
1338 return err;
1339}
1340
1341/*
1342 * Write back dirty pages now, because there may not be any suitable
1343 * open files later
1344 */
1345static void fuse_vma_close(struct vm_area_struct *vma)
1346{
1347 filemap_write_and_wait(vma->vm_file->f_mapping);
1348}
1349
1350/*
1351 * Wait for writeback against this page to complete before allowing it
1352 * to be marked dirty again, and hence written back again, possibly
1353 * before the previous writepage completed.
1354 *
1355 * Block here, instead of in ->writepage(), so that the userspace fs
1356 * can only block processes actually operating on the filesystem.
1357 *
1358 * Otherwise unprivileged userspace fs would be able to block
1359 * unrelated:
1360 *
1361 * - page migration
1362 * - sync(2)
1363 * - try_to_free_pages() with order > PAGE_ALLOC_COSTLY_ORDER
1364 */
c2ec175c 1365static int fuse_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
3be5a52b 1366{
c2ec175c 1367 struct page *page = vmf->page;
3be5a52b
MS
1368 /*
1369 * Don't use page->mapping as it may become NULL from a
1370 * concurrent truncate.
1371 */
1372 struct inode *inode = vma->vm_file->f_mapping->host;
1373
1374 fuse_wait_on_page_writeback(inode, page->index);
1375 return 0;
1376}
1377
f0f37e2f 1378static const struct vm_operations_struct fuse_file_vm_ops = {
3be5a52b
MS
1379 .close = fuse_vma_close,
1380 .fault = filemap_fault,
1381 .page_mkwrite = fuse_page_mkwrite,
0b173bc4 1382 .remap_pages = generic_file_remap_pages,
3be5a52b
MS
1383};
1384
1385static int fuse_file_mmap(struct file *file, struct vm_area_struct *vma)
1386{
1387 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE)) {
1388 struct inode *inode = file->f_dentry->d_inode;
1389 struct fuse_conn *fc = get_fuse_conn(inode);
1390 struct fuse_inode *fi = get_fuse_inode(inode);
1391 struct fuse_file *ff = file->private_data;
1392 /*
1393 * file may be written through mmap, so chain it onto the
1394 * inodes's write_file list
1395 */
1396 spin_lock(&fc->lock);
1397 if (list_empty(&ff->write_entry))
1398 list_add(&ff->write_entry, &fi->write_files);
1399 spin_unlock(&fc->lock);
1400 }
1401 file_accessed(file);
1402 vma->vm_ops = &fuse_file_vm_ops;
b6aeaded
MS
1403 return 0;
1404}
1405
fc280c96
MS
1406static int fuse_direct_mmap(struct file *file, struct vm_area_struct *vma)
1407{
1408 /* Can't provide the coherency needed for MAP_SHARED */
1409 if (vma->vm_flags & VM_MAYSHARE)
1410 return -ENODEV;
1411
3121bfe7
MS
1412 invalidate_inode_pages2(file->f_mapping);
1413
fc280c96
MS
1414 return generic_file_mmap(file, vma);
1415}
1416
71421259
MS
1417static int convert_fuse_file_lock(const struct fuse_file_lock *ffl,
1418 struct file_lock *fl)
1419{
1420 switch (ffl->type) {
1421 case F_UNLCK:
1422 break;
1423
1424 case F_RDLCK:
1425 case F_WRLCK:
1426 if (ffl->start > OFFSET_MAX || ffl->end > OFFSET_MAX ||
1427 ffl->end < ffl->start)
1428 return -EIO;
1429
1430 fl->fl_start = ffl->start;
1431 fl->fl_end = ffl->end;
1432 fl->fl_pid = ffl->pid;
1433 break;
1434
1435 default:
1436 return -EIO;
1437 }
1438 fl->fl_type = ffl->type;
1439 return 0;
1440}
1441
1442static void fuse_lk_fill(struct fuse_req *req, struct file *file,
a9ff4f87
MS
1443 const struct file_lock *fl, int opcode, pid_t pid,
1444 int flock)
71421259 1445{
7706a9d6 1446 struct inode *inode = file->f_path.dentry->d_inode;
9c8ef561 1447 struct fuse_conn *fc = get_fuse_conn(inode);
71421259
MS
1448 struct fuse_file *ff = file->private_data;
1449 struct fuse_lk_in *arg = &req->misc.lk_in;
1450
1451 arg->fh = ff->fh;
9c8ef561 1452 arg->owner = fuse_lock_owner_id(fc, fl->fl_owner);
71421259
MS
1453 arg->lk.start = fl->fl_start;
1454 arg->lk.end = fl->fl_end;
1455 arg->lk.type = fl->fl_type;
1456 arg->lk.pid = pid;
a9ff4f87
MS
1457 if (flock)
1458 arg->lk_flags |= FUSE_LK_FLOCK;
71421259
MS
1459 req->in.h.opcode = opcode;
1460 req->in.h.nodeid = get_node_id(inode);
1461 req->in.numargs = 1;
1462 req->in.args[0].size = sizeof(*arg);
1463 req->in.args[0].value = arg;
1464}
1465
1466static int fuse_getlk(struct file *file, struct file_lock *fl)
1467{
7706a9d6 1468 struct inode *inode = file->f_path.dentry->d_inode;
71421259
MS
1469 struct fuse_conn *fc = get_fuse_conn(inode);
1470 struct fuse_req *req;
1471 struct fuse_lk_out outarg;
1472 int err;
1473
1474 req = fuse_get_req(fc);
1475 if (IS_ERR(req))
1476 return PTR_ERR(req);
1477
a9ff4f87 1478 fuse_lk_fill(req, file, fl, FUSE_GETLK, 0, 0);
71421259
MS
1479 req->out.numargs = 1;
1480 req->out.args[0].size = sizeof(outarg);
1481 req->out.args[0].value = &outarg;
b93f858a 1482 fuse_request_send(fc, req);
71421259
MS
1483 err = req->out.h.error;
1484 fuse_put_request(fc, req);
1485 if (!err)
1486 err = convert_fuse_file_lock(&outarg.lk, fl);
1487
1488 return err;
1489}
1490
a9ff4f87 1491static int fuse_setlk(struct file *file, struct file_lock *fl, int flock)
71421259 1492{
7706a9d6 1493 struct inode *inode = file->f_path.dentry->d_inode;
71421259
MS
1494 struct fuse_conn *fc = get_fuse_conn(inode);
1495 struct fuse_req *req;
1496 int opcode = (fl->fl_flags & FL_SLEEP) ? FUSE_SETLKW : FUSE_SETLK;
1497 pid_t pid = fl->fl_type != F_UNLCK ? current->tgid : 0;
1498 int err;
1499
8fb47a4f 1500 if (fl->fl_lmops && fl->fl_lmops->lm_grant) {
48e90761
MS
1501 /* NLM needs asynchronous locks, which we don't support yet */
1502 return -ENOLCK;
1503 }
1504
71421259
MS
1505 /* Unlock on close is handled by the flush method */
1506 if (fl->fl_flags & FL_CLOSE)
1507 return 0;
1508
1509 req = fuse_get_req(fc);
1510 if (IS_ERR(req))
1511 return PTR_ERR(req);
1512
a9ff4f87 1513 fuse_lk_fill(req, file, fl, opcode, pid, flock);
b93f858a 1514 fuse_request_send(fc, req);
71421259 1515 err = req->out.h.error;
a4d27e75
MS
1516 /* locking is restartable */
1517 if (err == -EINTR)
1518 err = -ERESTARTSYS;
71421259
MS
1519 fuse_put_request(fc, req);
1520 return err;
1521}
1522
1523static int fuse_file_lock(struct file *file, int cmd, struct file_lock *fl)
1524{
7706a9d6 1525 struct inode *inode = file->f_path.dentry->d_inode;
71421259
MS
1526 struct fuse_conn *fc = get_fuse_conn(inode);
1527 int err;
1528
48e90761
MS
1529 if (cmd == F_CANCELLK) {
1530 err = 0;
1531 } else if (cmd == F_GETLK) {
71421259 1532 if (fc->no_lock) {
9d6a8c5c 1533 posix_test_lock(file, fl);
71421259
MS
1534 err = 0;
1535 } else
1536 err = fuse_getlk(file, fl);
1537 } else {
1538 if (fc->no_lock)
48e90761 1539 err = posix_lock_file(file, fl, NULL);
71421259 1540 else
a9ff4f87 1541 err = fuse_setlk(file, fl, 0);
71421259
MS
1542 }
1543 return err;
1544}
1545
a9ff4f87
MS
1546static int fuse_file_flock(struct file *file, int cmd, struct file_lock *fl)
1547{
1548 struct inode *inode = file->f_path.dentry->d_inode;
1549 struct fuse_conn *fc = get_fuse_conn(inode);
1550 int err;
1551
37fb3a30 1552 if (fc->no_flock) {
a9ff4f87
MS
1553 err = flock_lock_file_wait(file, fl);
1554 } else {
37fb3a30
MS
1555 struct fuse_file *ff = file->private_data;
1556
a9ff4f87
MS
1557 /* emulate flock with POSIX locks */
1558 fl->fl_owner = (fl_owner_t) file;
37fb3a30 1559 ff->flock = true;
a9ff4f87
MS
1560 err = fuse_setlk(file, fl, 1);
1561 }
1562
1563 return err;
1564}
1565
b2d2272f
MS
1566static sector_t fuse_bmap(struct address_space *mapping, sector_t block)
1567{
1568 struct inode *inode = mapping->host;
1569 struct fuse_conn *fc = get_fuse_conn(inode);
1570 struct fuse_req *req;
1571 struct fuse_bmap_in inarg;
1572 struct fuse_bmap_out outarg;
1573 int err;
1574
1575 if (!inode->i_sb->s_bdev || fc->no_bmap)
1576 return 0;
1577
1578 req = fuse_get_req(fc);
1579 if (IS_ERR(req))
1580 return 0;
1581
1582 memset(&inarg, 0, sizeof(inarg));
1583 inarg.block = block;
1584 inarg.blocksize = inode->i_sb->s_blocksize;
1585 req->in.h.opcode = FUSE_BMAP;
1586 req->in.h.nodeid = get_node_id(inode);
1587 req->in.numargs = 1;
1588 req->in.args[0].size = sizeof(inarg);
1589 req->in.args[0].value = &inarg;
1590 req->out.numargs = 1;
1591 req->out.args[0].size = sizeof(outarg);
1592 req->out.args[0].value = &outarg;
b93f858a 1593 fuse_request_send(fc, req);
b2d2272f
MS
1594 err = req->out.h.error;
1595 fuse_put_request(fc, req);
1596 if (err == -ENOSYS)
1597 fc->no_bmap = 1;
1598
1599 return err ? 0 : outarg.block;
1600}
1601
5559b8f4
MS
1602static loff_t fuse_file_llseek(struct file *file, loff_t offset, int origin)
1603{
1604 loff_t retval;
1605 struct inode *inode = file->f_path.dentry->d_inode;
1606
c07c3d19
MS
1607 /* No i_mutex protection necessary for SEEK_CUR and SEEK_SET */
1608 if (origin == SEEK_CUR || origin == SEEK_SET)
1609 return generic_file_llseek(file, offset, origin);
06222e49 1610
c07c3d19
MS
1611 mutex_lock(&inode->i_mutex);
1612 retval = fuse_update_attributes(inode, NULL, file, NULL);
1613 if (!retval)
1614 retval = generic_file_llseek(file, offset, origin);
5559b8f4 1615 mutex_unlock(&inode->i_mutex);
c07c3d19 1616
5559b8f4
MS
1617 return retval;
1618}
1619
59efec7b
TH
1620static int fuse_ioctl_copy_user(struct page **pages, struct iovec *iov,
1621 unsigned int nr_segs, size_t bytes, bool to_user)
1622{
1623 struct iov_iter ii;
1624 int page_idx = 0;
1625
1626 if (!bytes)
1627 return 0;
1628
1629 iov_iter_init(&ii, iov, nr_segs, bytes, 0);
1630
1631 while (iov_iter_count(&ii)) {
1632 struct page *page = pages[page_idx++];
1633 size_t todo = min_t(size_t, PAGE_SIZE, iov_iter_count(&ii));
4aa0edd2 1634 void *kaddr;
59efec7b 1635
4aa0edd2 1636 kaddr = kmap(page);
59efec7b
TH
1637
1638 while (todo) {
1639 char __user *uaddr = ii.iov->iov_base + ii.iov_offset;
1640 size_t iov_len = ii.iov->iov_len - ii.iov_offset;
1641 size_t copy = min(todo, iov_len);
1642 size_t left;
1643
1644 if (!to_user)
1645 left = copy_from_user(kaddr, uaddr, copy);
1646 else
1647 left = copy_to_user(uaddr, kaddr, copy);
1648
1649 if (unlikely(left))
1650 return -EFAULT;
1651
1652 iov_iter_advance(&ii, copy);
1653 todo -= copy;
1654 kaddr += copy;
1655 }
1656
0bd87182 1657 kunmap(page);
59efec7b
TH
1658 }
1659
1660 return 0;
1661}
1662
d9d318d3
MS
1663/*
1664 * CUSE servers compiled on 32bit broke on 64bit kernels because the
1665 * ABI was defined to be 'struct iovec' which is different on 32bit
1666 * and 64bit. Fortunately we can determine which structure the server
1667 * used from the size of the reply.
1668 */
1baa26b2
MS
1669static int fuse_copy_ioctl_iovec_old(struct iovec *dst, void *src,
1670 size_t transferred, unsigned count,
1671 bool is_compat)
d9d318d3
MS
1672{
1673#ifdef CONFIG_COMPAT
1674 if (count * sizeof(struct compat_iovec) == transferred) {
1675 struct compat_iovec *ciov = src;
1676 unsigned i;
1677
1678 /*
1679 * With this interface a 32bit server cannot support
1680 * non-compat (i.e. ones coming from 64bit apps) ioctl
1681 * requests
1682 */
1683 if (!is_compat)
1684 return -EINVAL;
1685
1686 for (i = 0; i < count; i++) {
1687 dst[i].iov_base = compat_ptr(ciov[i].iov_base);
1688 dst[i].iov_len = ciov[i].iov_len;
1689 }
1690 return 0;
1691 }
1692#endif
1693
1694 if (count * sizeof(struct iovec) != transferred)
1695 return -EIO;
1696
1697 memcpy(dst, src, transferred);
1698 return 0;
1699}
1700
7572777e
MS
1701/* Make sure iov_length() won't overflow */
1702static int fuse_verify_ioctl_iov(struct iovec *iov, size_t count)
1703{
1704 size_t n;
1705 u32 max = FUSE_MAX_PAGES_PER_REQ << PAGE_SHIFT;
1706
fb6ccff6 1707 for (n = 0; n < count; n++, iov++) {
7572777e
MS
1708 if (iov->iov_len > (size_t) max)
1709 return -ENOMEM;
1710 max -= iov->iov_len;
1711 }
1712 return 0;
1713}
1714
1baa26b2
MS
1715static int fuse_copy_ioctl_iovec(struct fuse_conn *fc, struct iovec *dst,
1716 void *src, size_t transferred, unsigned count,
1717 bool is_compat)
1718{
1719 unsigned i;
1720 struct fuse_ioctl_iovec *fiov = src;
1721
1722 if (fc->minor < 16) {
1723 return fuse_copy_ioctl_iovec_old(dst, src, transferred,
1724 count, is_compat);
1725 }
1726
1727 if (count * sizeof(struct fuse_ioctl_iovec) != transferred)
1728 return -EIO;
1729
1730 for (i = 0; i < count; i++) {
1731 /* Did the server supply an inappropriate value? */
1732 if (fiov[i].base != (unsigned long) fiov[i].base ||
1733 fiov[i].len != (unsigned long) fiov[i].len)
1734 return -EIO;
1735
1736 dst[i].iov_base = (void __user *) (unsigned long) fiov[i].base;
1737 dst[i].iov_len = (size_t) fiov[i].len;
1738
1739#ifdef CONFIG_COMPAT
1740 if (is_compat &&
1741 (ptr_to_compat(dst[i].iov_base) != fiov[i].base ||
1742 (compat_size_t) dst[i].iov_len != fiov[i].len))
1743 return -EIO;
1744#endif
1745 }
1746
1747 return 0;
1748}
1749
1750
59efec7b
TH
1751/*
1752 * For ioctls, there is no generic way to determine how much memory
1753 * needs to be read and/or written. Furthermore, ioctls are allowed
1754 * to dereference the passed pointer, so the parameter requires deep
1755 * copying but FUSE has no idea whatsoever about what to copy in or
1756 * out.
1757 *
1758 * This is solved by allowing FUSE server to retry ioctl with
1759 * necessary in/out iovecs. Let's assume the ioctl implementation
1760 * needs to read in the following structure.
1761 *
1762 * struct a {
1763 * char *buf;
1764 * size_t buflen;
1765 * }
1766 *
1767 * On the first callout to FUSE server, inarg->in_size and
1768 * inarg->out_size will be NULL; then, the server completes the ioctl
1769 * with FUSE_IOCTL_RETRY set in out->flags, out->in_iovs set to 1 and
1770 * the actual iov array to
1771 *
1772 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) } }
1773 *
1774 * which tells FUSE to copy in the requested area and retry the ioctl.
1775 * On the second round, the server has access to the structure and
1776 * from that it can tell what to look for next, so on the invocation,
1777 * it sets FUSE_IOCTL_RETRY, out->in_iovs to 2 and iov array to
1778 *
1779 * { { .iov_base = inarg.arg, .iov_len = sizeof(struct a) },
1780 * { .iov_base = a.buf, .iov_len = a.buflen } }
1781 *
1782 * FUSE will copy both struct a and the pointed buffer from the
1783 * process doing the ioctl and retry ioctl with both struct a and the
1784 * buffer.
1785 *
1786 * This time, FUSE server has everything it needs and completes ioctl
1787 * without FUSE_IOCTL_RETRY which finishes the ioctl call.
1788 *
1789 * Copying data out works the same way.
1790 *
1791 * Note that if FUSE_IOCTL_UNRESTRICTED is clear, the kernel
1792 * automatically initializes in and out iovs by decoding @cmd with
1793 * _IOC_* macros and the server is not allowed to request RETRY. This
1794 * limits ioctl data transfers to well-formed ioctls and is the forced
1795 * behavior for all FUSE servers.
1796 */
08cbf542
TH
1797long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
1798 unsigned int flags)
59efec7b 1799{
59efec7b 1800 struct fuse_file *ff = file->private_data;
d36f2487 1801 struct fuse_conn *fc = ff->fc;
59efec7b
TH
1802 struct fuse_ioctl_in inarg = {
1803 .fh = ff->fh,
1804 .cmd = cmd,
1805 .arg = arg,
1806 .flags = flags
1807 };
1808 struct fuse_ioctl_out outarg;
1809 struct fuse_req *req = NULL;
1810 struct page **pages = NULL;
8ac83505 1811 struct iovec *iov_page = NULL;
59efec7b
TH
1812 struct iovec *in_iov = NULL, *out_iov = NULL;
1813 unsigned int in_iovs = 0, out_iovs = 0, num_pages = 0, max_pages;
1814 size_t in_size, out_size, transferred;
1815 int err;
1816
1baa26b2
MS
1817#if BITS_PER_LONG == 32
1818 inarg.flags |= FUSE_IOCTL_32BIT;
1819#else
1820 if (flags & FUSE_IOCTL_COMPAT)
1821 inarg.flags |= FUSE_IOCTL_32BIT;
1822#endif
1823
59efec7b 1824 /* assume all the iovs returned by client always fits in a page */
1baa26b2 1825 BUILD_BUG_ON(sizeof(struct fuse_ioctl_iovec) * FUSE_IOCTL_MAX_IOV > PAGE_SIZE);
59efec7b 1826
59efec7b 1827 err = -ENOMEM;
c411cc88 1828 pages = kcalloc(FUSE_MAX_PAGES_PER_REQ, sizeof(pages[0]), GFP_KERNEL);
8ac83505 1829 iov_page = (struct iovec *) __get_free_page(GFP_KERNEL);
59efec7b
TH
1830 if (!pages || !iov_page)
1831 goto out;
1832
1833 /*
1834 * If restricted, initialize IO parameters as encoded in @cmd.
1835 * RETRY from server is not allowed.
1836 */
1837 if (!(flags & FUSE_IOCTL_UNRESTRICTED)) {
8ac83505 1838 struct iovec *iov = iov_page;
59efec7b 1839
c9f0523d 1840 iov->iov_base = (void __user *)arg;
59efec7b
TH
1841 iov->iov_len = _IOC_SIZE(cmd);
1842
1843 if (_IOC_DIR(cmd) & _IOC_WRITE) {
1844 in_iov = iov;
1845 in_iovs = 1;
1846 }
1847
1848 if (_IOC_DIR(cmd) & _IOC_READ) {
1849 out_iov = iov;
1850 out_iovs = 1;
1851 }
1852 }
1853
1854 retry:
1855 inarg.in_size = in_size = iov_length(in_iov, in_iovs);
1856 inarg.out_size = out_size = iov_length(out_iov, out_iovs);
1857
1858 /*
1859 * Out data can be used either for actual out data or iovs,
1860 * make sure there always is at least one page.
1861 */
1862 out_size = max_t(size_t, out_size, PAGE_SIZE);
1863 max_pages = DIV_ROUND_UP(max(in_size, out_size), PAGE_SIZE);
1864
1865 /* make sure there are enough buffer pages and init request with them */
1866 err = -ENOMEM;
1867 if (max_pages > FUSE_MAX_PAGES_PER_REQ)
1868 goto out;
1869 while (num_pages < max_pages) {
1870 pages[num_pages] = alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
1871 if (!pages[num_pages])
1872 goto out;
1873 num_pages++;
1874 }
1875
1876 req = fuse_get_req(fc);
1877 if (IS_ERR(req)) {
1878 err = PTR_ERR(req);
1879 req = NULL;
1880 goto out;
1881 }
1882 memcpy(req->pages, pages, sizeof(req->pages[0]) * num_pages);
1883 req->num_pages = num_pages;
1884
1885 /* okay, let's send it to the client */
1886 req->in.h.opcode = FUSE_IOCTL;
d36f2487 1887 req->in.h.nodeid = ff->nodeid;
59efec7b
TH
1888 req->in.numargs = 1;
1889 req->in.args[0].size = sizeof(inarg);
1890 req->in.args[0].value = &inarg;
1891 if (in_size) {
1892 req->in.numargs++;
1893 req->in.args[1].size = in_size;
1894 req->in.argpages = 1;
1895
1896 err = fuse_ioctl_copy_user(pages, in_iov, in_iovs, in_size,
1897 false);
1898 if (err)
1899 goto out;
1900 }
1901
1902 req->out.numargs = 2;
1903 req->out.args[0].size = sizeof(outarg);
1904 req->out.args[0].value = &outarg;
1905 req->out.args[1].size = out_size;
1906 req->out.argpages = 1;
1907 req->out.argvar = 1;
1908
b93f858a 1909 fuse_request_send(fc, req);
59efec7b
TH
1910 err = req->out.h.error;
1911 transferred = req->out.args[1].size;
1912 fuse_put_request(fc, req);
1913 req = NULL;
1914 if (err)
1915 goto out;
1916
1917 /* did it ask for retry? */
1918 if (outarg.flags & FUSE_IOCTL_RETRY) {
8ac83505 1919 void *vaddr;
59efec7b
TH
1920
1921 /* no retry if in restricted mode */
1922 err = -EIO;
1923 if (!(flags & FUSE_IOCTL_UNRESTRICTED))
1924 goto out;
1925
1926 in_iovs = outarg.in_iovs;
1927 out_iovs = outarg.out_iovs;
1928
1929 /*
1930 * Make sure things are in boundary, separate checks
1931 * are to protect against overflow.
1932 */
1933 err = -ENOMEM;
1934 if (in_iovs > FUSE_IOCTL_MAX_IOV ||
1935 out_iovs > FUSE_IOCTL_MAX_IOV ||
1936 in_iovs + out_iovs > FUSE_IOCTL_MAX_IOV)
1937 goto out;
1938
2408f6ef 1939 vaddr = kmap_atomic(pages[0]);
1baa26b2 1940 err = fuse_copy_ioctl_iovec(fc, iov_page, vaddr,
d9d318d3
MS
1941 transferred, in_iovs + out_iovs,
1942 (flags & FUSE_IOCTL_COMPAT) != 0);
2408f6ef 1943 kunmap_atomic(vaddr);
d9d318d3
MS
1944 if (err)
1945 goto out;
59efec7b 1946
8ac83505 1947 in_iov = iov_page;
59efec7b
TH
1948 out_iov = in_iov + in_iovs;
1949
7572777e
MS
1950 err = fuse_verify_ioctl_iov(in_iov, in_iovs);
1951 if (err)
1952 goto out;
1953
1954 err = fuse_verify_ioctl_iov(out_iov, out_iovs);
1955 if (err)
1956 goto out;
1957
59efec7b
TH
1958 goto retry;
1959 }
1960
1961 err = -EIO;
1962 if (transferred > inarg.out_size)
1963 goto out;
1964
1965 err = fuse_ioctl_copy_user(pages, out_iov, out_iovs, transferred, true);
1966 out:
1967 if (req)
1968 fuse_put_request(fc, req);
8ac83505 1969 free_page((unsigned long) iov_page);
59efec7b
TH
1970 while (num_pages)
1971 __free_page(pages[--num_pages]);
1972 kfree(pages);
1973
1974 return err ? err : outarg.result;
1975}
08cbf542 1976EXPORT_SYMBOL_GPL(fuse_do_ioctl);
59efec7b 1977
b18da0c5
MS
1978long fuse_ioctl_common(struct file *file, unsigned int cmd,
1979 unsigned long arg, unsigned int flags)
d36f2487
MS
1980{
1981 struct inode *inode = file->f_dentry->d_inode;
1982 struct fuse_conn *fc = get_fuse_conn(inode);
1983
1984 if (!fuse_allow_task(fc, current))
1985 return -EACCES;
1986
1987 if (is_bad_inode(inode))
1988 return -EIO;
1989
1990 return fuse_do_ioctl(file, cmd, arg, flags);
1991}
1992
59efec7b
TH
1993static long fuse_file_ioctl(struct file *file, unsigned int cmd,
1994 unsigned long arg)
1995{
b18da0c5 1996 return fuse_ioctl_common(file, cmd, arg, 0);
59efec7b
TH
1997}
1998
1999static long fuse_file_compat_ioctl(struct file *file, unsigned int cmd,
2000 unsigned long arg)
2001{
b18da0c5 2002 return fuse_ioctl_common(file, cmd, arg, FUSE_IOCTL_COMPAT);
59efec7b
TH
2003}
2004
95668a69
TH
2005/*
2006 * All files which have been polled are linked to RB tree
2007 * fuse_conn->polled_files which is indexed by kh. Walk the tree and
2008 * find the matching one.
2009 */
2010static struct rb_node **fuse_find_polled_node(struct fuse_conn *fc, u64 kh,
2011 struct rb_node **parent_out)
2012{
2013 struct rb_node **link = &fc->polled_files.rb_node;
2014 struct rb_node *last = NULL;
2015
2016 while (*link) {
2017 struct fuse_file *ff;
2018
2019 last = *link;
2020 ff = rb_entry(last, struct fuse_file, polled_node);
2021
2022 if (kh < ff->kh)
2023 link = &last->rb_left;
2024 else if (kh > ff->kh)
2025 link = &last->rb_right;
2026 else
2027 return link;
2028 }
2029
2030 if (parent_out)
2031 *parent_out = last;
2032 return link;
2033}
2034
2035/*
2036 * The file is about to be polled. Make sure it's on the polled_files
2037 * RB tree. Note that files once added to the polled_files tree are
2038 * not removed before the file is released. This is because a file
2039 * polled once is likely to be polled again.
2040 */
2041static void fuse_register_polled_file(struct fuse_conn *fc,
2042 struct fuse_file *ff)
2043{
2044 spin_lock(&fc->lock);
2045 if (RB_EMPTY_NODE(&ff->polled_node)) {
2046 struct rb_node **link, *parent;
2047
2048 link = fuse_find_polled_node(fc, ff->kh, &parent);
2049 BUG_ON(*link);
2050 rb_link_node(&ff->polled_node, parent, link);
2051 rb_insert_color(&ff->polled_node, &fc->polled_files);
2052 }
2053 spin_unlock(&fc->lock);
2054}
2055
08cbf542 2056unsigned fuse_file_poll(struct file *file, poll_table *wait)
95668a69 2057{
95668a69 2058 struct fuse_file *ff = file->private_data;
797759aa 2059 struct fuse_conn *fc = ff->fc;
95668a69
TH
2060 struct fuse_poll_in inarg = { .fh = ff->fh, .kh = ff->kh };
2061 struct fuse_poll_out outarg;
2062 struct fuse_req *req;
2063 int err;
2064
2065 if (fc->no_poll)
2066 return DEFAULT_POLLMASK;
2067
2068 poll_wait(file, &ff->poll_wait, wait);
2069
2070 /*
2071 * Ask for notification iff there's someone waiting for it.
2072 * The client may ignore the flag and always notify.
2073 */
2074 if (waitqueue_active(&ff->poll_wait)) {
2075 inarg.flags |= FUSE_POLL_SCHEDULE_NOTIFY;
2076 fuse_register_polled_file(fc, ff);
2077 }
2078
2079 req = fuse_get_req(fc);
2080 if (IS_ERR(req))
201fa69a 2081 return POLLERR;
95668a69
TH
2082
2083 req->in.h.opcode = FUSE_POLL;
797759aa 2084 req->in.h.nodeid = ff->nodeid;
95668a69
TH
2085 req->in.numargs = 1;
2086 req->in.args[0].size = sizeof(inarg);
2087 req->in.args[0].value = &inarg;
2088 req->out.numargs = 1;
2089 req->out.args[0].size = sizeof(outarg);
2090 req->out.args[0].value = &outarg;
b93f858a 2091 fuse_request_send(fc, req);
95668a69
TH
2092 err = req->out.h.error;
2093 fuse_put_request(fc, req);
2094
2095 if (!err)
2096 return outarg.revents;
2097 if (err == -ENOSYS) {
2098 fc->no_poll = 1;
2099 return DEFAULT_POLLMASK;
2100 }
2101 return POLLERR;
2102}
08cbf542 2103EXPORT_SYMBOL_GPL(fuse_file_poll);
95668a69
TH
2104
2105/*
2106 * This is called from fuse_handle_notify() on FUSE_NOTIFY_POLL and
2107 * wakes up the poll waiters.
2108 */
2109int fuse_notify_poll_wakeup(struct fuse_conn *fc,
2110 struct fuse_notify_poll_wakeup_out *outarg)
2111{
2112 u64 kh = outarg->kh;
2113 struct rb_node **link;
2114
2115 spin_lock(&fc->lock);
2116
2117 link = fuse_find_polled_node(fc, kh, NULL);
2118 if (*link) {
2119 struct fuse_file *ff;
2120
2121 ff = rb_entry(*link, struct fuse_file, polled_node);
2122 wake_up_interruptible_sync(&ff->poll_wait);
2123 }
2124
2125 spin_unlock(&fc->lock);
2126 return 0;
2127}
2128
4273b793
AA
2129static ssize_t fuse_loop_dio(struct file *filp, const struct iovec *iov,
2130 unsigned long nr_segs, loff_t *ppos, int rw)
2131{
2132 const struct iovec *vector = iov;
2133 ssize_t ret = 0;
2134
2135 while (nr_segs > 0) {
2136 void __user *base;
2137 size_t len;
2138 ssize_t nr;
2139
2140 base = vector->iov_base;
2141 len = vector->iov_len;
2142 vector++;
2143 nr_segs--;
2144
2145 if (rw == WRITE)
2146 nr = __fuse_direct_write(filp, base, len, ppos);
2147 else
2148 nr = fuse_direct_read(filp, base, len, ppos);
2149
2150 if (nr < 0) {
2151 if (!ret)
2152 ret = nr;
2153 break;
2154 }
2155 ret += nr;
2156 if (nr != len)
2157 break;
2158 }
2159
2160 return ret;
2161}
2162
2163
2164static ssize_t
2165fuse_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
2166 loff_t offset, unsigned long nr_segs)
2167{
2168 ssize_t ret = 0;
2169 struct file *file = NULL;
2170 loff_t pos = 0;
2171
2172 file = iocb->ki_filp;
2173 pos = offset;
2174
2175 ret = fuse_loop_dio(file, iov, nr_segs, &pos, rw);
2176
2177 return ret;
2178}
2179
05ba1f08
AP
2180long fuse_file_fallocate(struct file *file, int mode, loff_t offset,
2181 loff_t length)
2182{
2183 struct fuse_file *ff = file->private_data;
2184 struct fuse_conn *fc = ff->fc;
2185 struct fuse_req *req;
2186 struct fuse_fallocate_in inarg = {
2187 .fh = ff->fh,
2188 .offset = offset,
2189 .length = length,
2190 .mode = mode
2191 };
2192 int err;
2193
519c6040
MS
2194 if (fc->no_fallocate)
2195 return -EOPNOTSUPP;
2196
05ba1f08
AP
2197 req = fuse_get_req(fc);
2198 if (IS_ERR(req))
2199 return PTR_ERR(req);
2200
2201 req->in.h.opcode = FUSE_FALLOCATE;
2202 req->in.h.nodeid = ff->nodeid;
2203 req->in.numargs = 1;
2204 req->in.args[0].size = sizeof(inarg);
2205 req->in.args[0].value = &inarg;
2206 fuse_request_send(fc, req);
2207 err = req->out.h.error;
519c6040
MS
2208 if (err == -ENOSYS) {
2209 fc->no_fallocate = 1;
2210 err = -EOPNOTSUPP;
2211 }
05ba1f08
AP
2212 fuse_put_request(fc, req);
2213
2214 return err;
2215}
2216EXPORT_SYMBOL_GPL(fuse_file_fallocate);
2217
4b6f5d20 2218static const struct file_operations fuse_file_operations = {
5559b8f4 2219 .llseek = fuse_file_llseek,
543ade1f 2220 .read = do_sync_read,
bcb4be80 2221 .aio_read = fuse_file_aio_read,
543ade1f 2222 .write = do_sync_write,
ea9b9907 2223 .aio_write = fuse_file_aio_write,
b6aeaded
MS
2224 .mmap = fuse_file_mmap,
2225 .open = fuse_open,
2226 .flush = fuse_flush,
2227 .release = fuse_release,
2228 .fsync = fuse_fsync,
71421259 2229 .lock = fuse_file_lock,
a9ff4f87 2230 .flock = fuse_file_flock,
5ffc4ef4 2231 .splice_read = generic_file_splice_read,
59efec7b
TH
2232 .unlocked_ioctl = fuse_file_ioctl,
2233 .compat_ioctl = fuse_file_compat_ioctl,
95668a69 2234 .poll = fuse_file_poll,
05ba1f08 2235 .fallocate = fuse_file_fallocate,
b6aeaded
MS
2236};
2237
4b6f5d20 2238static const struct file_operations fuse_direct_io_file_operations = {
5559b8f4 2239 .llseek = fuse_file_llseek,
413ef8cb
MS
2240 .read = fuse_direct_read,
2241 .write = fuse_direct_write,
fc280c96 2242 .mmap = fuse_direct_mmap,
413ef8cb
MS
2243 .open = fuse_open,
2244 .flush = fuse_flush,
2245 .release = fuse_release,
2246 .fsync = fuse_fsync,
71421259 2247 .lock = fuse_file_lock,
a9ff4f87 2248 .flock = fuse_file_flock,
59efec7b
TH
2249 .unlocked_ioctl = fuse_file_ioctl,
2250 .compat_ioctl = fuse_file_compat_ioctl,
95668a69 2251 .poll = fuse_file_poll,
05ba1f08 2252 .fallocate = fuse_file_fallocate,
fc280c96 2253 /* no splice_read */
413ef8cb
MS
2254};
2255
f5e54d6e 2256static const struct address_space_operations fuse_file_aops = {
b6aeaded 2257 .readpage = fuse_readpage,
3be5a52b
MS
2258 .writepage = fuse_writepage,
2259 .launder_page = fuse_launder_page,
db50b96c 2260 .readpages = fuse_readpages,
3be5a52b 2261 .set_page_dirty = __set_page_dirty_nobuffers,
b2d2272f 2262 .bmap = fuse_bmap,
4273b793 2263 .direct_IO = fuse_direct_IO,
b6aeaded
MS
2264};
2265
2266void fuse_init_file_inode(struct inode *inode)
2267{
45323fb7
MS
2268 inode->i_fop = &fuse_file_operations;
2269 inode->i_data.a_ops = &fuse_file_aops;
b6aeaded 2270}