afs: Fix afs_write_end() to handle short writes
[linux-2.6-block.git] / fs / afs / write.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
31143d5d
DH
2/* handling of writes to regular files and writing back to the server
3 *
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
31143d5d 6 */
4343d008 7
4af3c9cc 8#include <linux/backing-dev.h>
31143d5d
DH
9#include <linux/slab.h>
10#include <linux/fs.h>
11#include <linux/pagemap.h>
12#include <linux/writeback.h>
13#include <linux/pagevec.h>
3003bbd0
DH
14#include <linux/netfs.h>
15#include <linux/fscache.h>
31143d5d
DH
16#include "internal.h"
17
31143d5d
DH
18/*
19 * mark a page as having been made dirty and thus needing writeback
20 */
21int afs_set_page_dirty(struct page *page)
22{
23 _enter("");
24 return __set_page_dirty_nobuffers(page);
25}
26
31143d5d
DH
27/*
28 * prepare to perform part of a write to a page
31143d5d 29 */
15b4650e
NP
30int afs_write_begin(struct file *file, struct address_space *mapping,
31 loff_t pos, unsigned len, unsigned flags,
21db2cdc 32 struct page **_page, void **fsdata)
31143d5d 33{
496ad9aa 34 struct afs_vnode *vnode = AFS_FS_I(file_inode(file));
15b4650e 35 struct page *page;
4343d008 36 unsigned long priv;
e87b03f5
DH
37 unsigned f, from;
38 unsigned t, to;
39 pgoff_t index;
31143d5d
DH
40 int ret;
41
e87b03f5
DH
42 _enter("{%llx:%llu},%llx,%x",
43 vnode->fid.vid, vnode->fid.vnode, pos, len);
31143d5d 44
3003bbd0
DH
45 /* Prefetch area to be written into the cache if we're caching this
46 * file. We need to do this before we get a lock on the page in case
47 * there's more than one writer competing for the same cache block.
48 */
49 ret = netfs_write_begin(file, mapping, pos, len, flags, &page, fsdata,
50 &afs_req_ops, NULL);
51 if (ret < 0)
52 return ret;
630f5dda 53
e87b03f5
DH
54 index = page->index;
55 from = pos - index * PAGE_SIZE;
56 to = from + len;
57
31143d5d 58try_again:
4343d008
DH
59 /* See if this page is already partially written in a way that we can
60 * merge the new write with.
61 */
4343d008
DH
62 if (PagePrivate(page)) {
63 priv = page_private(page);
67d78a6f
DH
64 f = afs_page_dirty_from(page, priv);
65 t = afs_page_dirty_to(page, priv);
4343d008 66 ASSERTCMP(f, <=, t);
31143d5d 67
5a039c32 68 if (PageWriteback(page)) {
67d78a6f 69 trace_afs_page_dirty(vnode, tracepoint_string("alrdy"), page);
5a039c32
DH
70 goto flush_conflicting_write;
71 }
5a813276
DH
72 /* If the file is being filled locally, allow inter-write
73 * spaces to be merged into writes. If it's not, only write
74 * back what the user gives us.
75 */
76 if (!test_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags) &&
77 (to < f || from > t))
4343d008 78 goto flush_conflicting_write;
31143d5d
DH
79 }
80
21db2cdc 81 *_page = page;
4343d008 82 _leave(" = 0");
31143d5d
DH
83 return 0;
84
4343d008
DH
85 /* The previous write and this write aren't adjacent or overlapping, so
86 * flush the page out.
87 */
88flush_conflicting_write:
31143d5d 89 _debug("flush conflict");
4343d008 90 ret = write_one_page(page);
21db2cdc
DH
91 if (ret < 0)
92 goto error;
31143d5d 93
4343d008 94 ret = lock_page_killable(page);
21db2cdc
DH
95 if (ret < 0)
96 goto error;
31143d5d 97 goto try_again;
21db2cdc
DH
98
99error:
100 put_page(page);
101 _leave(" = %d", ret);
102 return ret;
31143d5d
DH
103}
104
105/*
106 * finalise part of a write to a page
107 */
15b4650e
NP
108int afs_write_end(struct file *file, struct address_space *mapping,
109 loff_t pos, unsigned len, unsigned copied,
110 struct page *page, void *fsdata)
31143d5d 111{
496ad9aa 112 struct afs_vnode *vnode = AFS_FS_I(file_inode(file));
f792e3ac 113 unsigned long priv;
e87b03f5 114 unsigned int f, from = pos & (thp_size(page) - 1);
f792e3ac 115 unsigned int t, to = from + copied;
31143d5d
DH
116 loff_t i_size, maybe_i_size;
117
3b6492df 118 _enter("{%llx:%llu},{%lx}",
15b4650e 119 vnode->fid.vid, vnode->fid.vnode, page->index);
31143d5d 120
66e9c6a8
DH
121 if (!PageUptodate(page)) {
122 if (copied < len) {
123 copied = 0;
124 goto out;
125 }
126
127 SetPageUptodate(page);
128 }
129
3ad216ee
DH
130 if (copied == 0)
131 goto out;
132
15b4650e 133 maybe_i_size = pos + copied;
31143d5d
DH
134
135 i_size = i_size_read(&vnode->vfs_inode);
136 if (maybe_i_size > i_size) {
1f32ef79 137 write_seqlock(&vnode->cb_lock);
31143d5d
DH
138 i_size = i_size_read(&vnode->vfs_inode);
139 if (maybe_i_size > i_size)
140 i_size_write(&vnode->vfs_inode, maybe_i_size);
1f32ef79 141 write_sequnlock(&vnode->cb_lock);
31143d5d
DH
142 }
143
f792e3ac
DH
144 if (PagePrivate(page)) {
145 priv = page_private(page);
67d78a6f
DH
146 f = afs_page_dirty_from(page, priv);
147 t = afs_page_dirty_to(page, priv);
f792e3ac
DH
148 if (from < f)
149 f = from;
150 if (to > t)
151 t = to;
67d78a6f 152 priv = afs_page_dirty(page, f, t);
f792e3ac 153 set_page_private(page, priv);
67d78a6f 154 trace_afs_page_dirty(vnode, tracepoint_string("dirty+"), page);
f792e3ac 155 } else {
67d78a6f 156 priv = afs_page_dirty(page, from, to);
f792e3ac 157 attach_page_private(page, (void *)priv);
67d78a6f 158 trace_afs_page_dirty(vnode, tracepoint_string("dirty"), page);
f792e3ac
DH
159 }
160
e87b03f5
DH
161 if (set_page_dirty(page))
162 _debug("dirtied %lx", page->index);
afae457d
DH
163
164out:
15b4650e 165 unlock_page(page);
09cbfeaf 166 put_page(page);
3003bbd0 167 return copied;
31143d5d
DH
168}
169
170/*
171 * kill all the pages in the given range
172 */
4343d008 173static void afs_kill_pages(struct address_space *mapping,
e87b03f5 174 loff_t start, loff_t len)
31143d5d 175{
4343d008 176 struct afs_vnode *vnode = AFS_FS_I(mapping->host);
31143d5d 177 struct pagevec pv;
e87b03f5 178 unsigned int loop, psize;
31143d5d 179
e87b03f5
DH
180 _enter("{%llx:%llu},%llx @%llx",
181 vnode->fid.vid, vnode->fid.vnode, len, start);
31143d5d 182
86679820 183 pagevec_init(&pv);
31143d5d
DH
184
185 do {
e87b03f5 186 _debug("kill %llx @%llx", len, start);
31143d5d 187
e87b03f5
DH
188 pv.nr = find_get_pages_contig(mapping, start / PAGE_SIZE,
189 PAGEVEC_SIZE, pv.pages);
190 if (pv.nr == 0)
191 break;
31143d5d 192
e87b03f5 193 for (loop = 0; loop < pv.nr; loop++) {
7286a35e 194 struct page *page = pv.pages[loop];
e87b03f5
DH
195
196 if (page->index * PAGE_SIZE >= start + len)
197 break;
198
199 psize = thp_size(page);
200 start += psize;
201 len -= psize;
7286a35e 202 ClearPageUptodate(page);
4343d008 203 end_page_writeback(page);
4343d008
DH
204 lock_page(page);
205 generic_error_remove_page(mapping, page);
21bd68f1 206 unlock_page(page);
31143d5d
DH
207 }
208
209 __pagevec_release(&pv);
e87b03f5 210 } while (len > 0);
31143d5d
DH
211
212 _leave("");
213}
214
215/*
4343d008
DH
216 * Redirty all the pages in a given range.
217 */
218static void afs_redirty_pages(struct writeback_control *wbc,
219 struct address_space *mapping,
e87b03f5 220 loff_t start, loff_t len)
4343d008
DH
221{
222 struct afs_vnode *vnode = AFS_FS_I(mapping->host);
223 struct pagevec pv;
e87b03f5 224 unsigned int loop, psize;
4343d008 225
e87b03f5
DH
226 _enter("{%llx:%llu},%llx @%llx",
227 vnode->fid.vid, vnode->fid.vnode, len, start);
4343d008 228
487e2c9f 229 pagevec_init(&pv);
4343d008
DH
230
231 do {
e87b03f5 232 _debug("redirty %llx @%llx", len, start);
4343d008 233
e87b03f5
DH
234 pv.nr = find_get_pages_contig(mapping, start / PAGE_SIZE,
235 PAGEVEC_SIZE, pv.pages);
236 if (pv.nr == 0)
237 break;
4343d008 238
e87b03f5 239 for (loop = 0; loop < pv.nr; loop++) {
4343d008
DH
240 struct page *page = pv.pages[loop];
241
e87b03f5
DH
242 if (page->index * PAGE_SIZE >= start + len)
243 break;
244
245 psize = thp_size(page);
246 start += psize;
247 len -= psize;
4343d008
DH
248 redirty_page_for_writepage(wbc, page);
249 end_page_writeback(page);
4343d008
DH
250 }
251
252 __pagevec_release(&pv);
e87b03f5 253 } while (len > 0);
31143d5d
DH
254
255 _leave("");
256}
257
a58823ac
DH
258/*
259 * completion of write to server
260 */
e87b03f5 261static void afs_pages_written_back(struct afs_vnode *vnode, loff_t start, unsigned int len)
a58823ac 262{
bd80d8a8
DH
263 struct address_space *mapping = vnode->vfs_inode.i_mapping;
264 struct page *page;
e87b03f5 265 pgoff_t end;
bd80d8a8 266
e87b03f5 267 XA_STATE(xas, &mapping->i_pages, start / PAGE_SIZE);
a58823ac 268
e87b03f5
DH
269 _enter("{%llx:%llu},{%x @%llx}",
270 vnode->fid.vid, vnode->fid.vnode, len, start);
a58823ac 271
bd80d8a8 272 rcu_read_lock();
a58823ac 273
e87b03f5
DH
274 end = (start + len - 1) / PAGE_SIZE;
275 xas_for_each(&xas, page, end) {
276 if (!PageWriteback(page)) {
277 kdebug("bad %x @%llx page %lx %lx", len, start, page->index, end);
278 ASSERT(PageWriteback(page));
279 }
a58823ac 280
bd80d8a8 281 trace_afs_page_dirty(vnode, tracepoint_string("clear"), page);
e87b03f5 282 detach_page_private(page);
bd80d8a8
DH
283 page_endio(page, true, 0);
284 }
a58823ac 285
bd80d8a8 286 rcu_read_unlock();
a58823ac
DH
287
288 afs_prune_wb_keys(vnode);
289 _leave("");
290}
291
d2ddc776 292/*
e49c7b2f
DH
293 * Find a key to use for the writeback. We cached the keys used to author the
294 * writes on the vnode. *_wbk will contain the last writeback key used or NULL
295 * and we need to start from there if it's set.
d2ddc776 296 */
e49c7b2f
DH
297static int afs_get_writeback_key(struct afs_vnode *vnode,
298 struct afs_wb_key **_wbk)
d2ddc776 299{
4343d008
DH
300 struct afs_wb_key *wbk = NULL;
301 struct list_head *p;
302 int ret = -ENOKEY, ret2;
d2ddc776 303
4343d008 304 spin_lock(&vnode->wb_lock);
e49c7b2f
DH
305 if (*_wbk)
306 p = (*_wbk)->vnode_link.next;
307 else
308 p = vnode->wb_keys.next;
4343d008 309
4343d008
DH
310 while (p != &vnode->wb_keys) {
311 wbk = list_entry(p, struct afs_wb_key, vnode_link);
312 _debug("wbk %u", key_serial(wbk->key));
313 ret2 = key_validate(wbk->key);
e49c7b2f
DH
314 if (ret2 == 0) {
315 refcount_inc(&wbk->usage);
316 _debug("USE WB KEY %u", key_serial(wbk->key));
317 break;
318 }
319
320 wbk = NULL;
4343d008
DH
321 if (ret == -ENOKEY)
322 ret = ret2;
323 p = p->next;
324 }
325
326 spin_unlock(&vnode->wb_lock);
e49c7b2f
DH
327 if (*_wbk)
328 afs_put_wb_key(*_wbk);
329 *_wbk = wbk;
330 return 0;
331}
4343d008 332
e49c7b2f
DH
333static void afs_store_data_success(struct afs_operation *op)
334{
335 struct afs_vnode *vnode = op->file[0].vnode;
4343d008 336
da8d0755 337 op->ctime = op->file[0].scb.status.mtime_client;
e49c7b2f
DH
338 afs_vnode_commit_status(op, &op->file[0]);
339 if (op->error == 0) {
d383e346 340 if (!op->store.laundering)
e87b03f5 341 afs_pages_written_back(vnode, op->store.pos, op->store.size);
e49c7b2f 342 afs_stat_v(vnode, n_stores);
bd80d8a8 343 atomic_long_add(op->store.size, &afs_v2net(vnode)->n_store_bytes);
e49c7b2f
DH
344 }
345}
4343d008 346
e49c7b2f
DH
347static const struct afs_operation_ops afs_store_data_operation = {
348 .issue_afs_rpc = afs_fs_store_data,
349 .issue_yfs_rpc = yfs_fs_store_data,
350 .success = afs_store_data_success,
351};
a58823ac 352
e49c7b2f
DH
353/*
354 * write to a file
355 */
e87b03f5 356static int afs_store_data(struct afs_vnode *vnode, struct iov_iter *iter, loff_t pos,
bd80d8a8 357 bool laundering)
e49c7b2f 358{
e49c7b2f
DH
359 struct afs_operation *op;
360 struct afs_wb_key *wbk = NULL;
bd80d8a8
DH
361 loff_t size = iov_iter_count(iter), i_size;
362 int ret = -ENOKEY;
e49c7b2f 363
bd80d8a8 364 _enter("%s{%llx:%llu.%u},%llx,%llx",
e49c7b2f
DH
365 vnode->volume->name,
366 vnode->fid.vid,
367 vnode->fid.vnode,
368 vnode->fid.unique,
bd80d8a8 369 size, pos);
d2ddc776 370
e49c7b2f
DH
371 ret = afs_get_writeback_key(vnode, &wbk);
372 if (ret) {
373 _leave(" = %d [no keys]", ret);
374 return ret;
d2ddc776
DH
375 }
376
e49c7b2f
DH
377 op = afs_alloc_operation(wbk->key, vnode->volume);
378 if (IS_ERR(op)) {
379 afs_put_wb_key(wbk);
380 return -ENOMEM;
381 }
382
bd80d8a8
DH
383 i_size = i_size_read(&vnode->vfs_inode);
384
e49c7b2f
DH
385 afs_op_set_vnode(op, 0, vnode);
386 op->file[0].dv_delta = 1;
22650f14 387 op->file[0].modification = true;
bd80d8a8
DH
388 op->store.write_iter = iter;
389 op->store.pos = pos;
bd80d8a8
DH
390 op->store.size = size;
391 op->store.i_size = max(pos + size, i_size);
d383e346 392 op->store.laundering = laundering;
b3597945 393 op->mtime = vnode->vfs_inode.i_mtime;
811f04ba 394 op->flags |= AFS_OPERATION_UNINTR;
e49c7b2f
DH
395 op->ops = &afs_store_data_operation;
396
397try_next_key:
398 afs_begin_vnode_operation(op);
399 afs_wait_for_operation(op);
400
401 switch (op->error) {
4343d008
DH
402 case -EACCES:
403 case -EPERM:
404 case -ENOKEY:
405 case -EKEYEXPIRED:
406 case -EKEYREJECTED:
407 case -EKEYREVOKED:
408 _debug("next");
e49c7b2f
DH
409
410 ret = afs_get_writeback_key(vnode, &wbk);
411 if (ret == 0) {
412 key_put(op->key);
413 op->key = key_get(wbk->key);
414 goto try_next_key;
415 }
416 break;
4343d008
DH
417 }
418
419 afs_put_wb_key(wbk);
e49c7b2f
DH
420 _leave(" = %d", op->error);
421 return afs_put_operation(op);
d2ddc776
DH
422}
423
31143d5d 424/*
810caa3e
DH
425 * Extend the region to be written back to include subsequent contiguously
426 * dirty pages if possible, but don't sleep while doing so.
427 *
428 * If this page holds new content, then we can include filler zeros in the
429 * writeback.
31143d5d 430 */
810caa3e
DH
431static void afs_extend_writeback(struct address_space *mapping,
432 struct afs_vnode *vnode,
433 long *_count,
e87b03f5
DH
434 loff_t start,
435 loff_t max_len,
436 bool new_content,
437 unsigned int *_len)
31143d5d 438{
e87b03f5
DH
439 struct pagevec pvec;
440 struct page *page;
441 unsigned long priv;
442 unsigned int psize, filler = 0;
443 unsigned int f, t;
444 loff_t len = *_len;
445 pgoff_t index = (start + len) / PAGE_SIZE;
446 bool stop = true;
447 unsigned int i;
448
449 XA_STATE(xas, &mapping->i_pages, index);
450 pagevec_init(&pvec);
4343d008 451
31143d5d 452 do {
e87b03f5
DH
453 /* Firstly, we gather up a batch of contiguous dirty pages
454 * under the RCU read lock - but we can't clear the dirty flags
455 * there if any of those pages are mapped.
456 */
457 rcu_read_lock();
31143d5d 458
e87b03f5
DH
459 xas_for_each(&xas, page, ULONG_MAX) {
460 stop = true;
461 if (xas_retry(&xas, page))
462 continue;
463 if (xa_is_value(page))
464 break;
465 if (page->index != index)
5a813276 466 break;
e87b03f5
DH
467
468 if (!page_cache_get_speculative(page)) {
469 xas_reset(&xas);
470 continue;
471 }
472
473 /* Has the page moved or been split? */
474 if (unlikely(page != xas_reload(&xas)))
31143d5d 475 break;
e87b03f5 476
529ae9aa 477 if (!trylock_page(page))
31143d5d 478 break;
4343d008 479 if (!PageDirty(page) || PageWriteback(page)) {
31143d5d
DH
480 unlock_page(page);
481 break;
482 }
4343d008 483
e87b03f5 484 psize = thp_size(page);
4343d008 485 priv = page_private(page);
67d78a6f
DH
486 f = afs_page_dirty_from(page, priv);
487 t = afs_page_dirty_to(page, priv);
810caa3e 488 if (f != 0 && !new_content) {
31143d5d
DH
489 unlock_page(page);
490 break;
491 }
4343d008 492
e87b03f5
DH
493 len += filler + t;
494 filler = psize - t;
495 if (len >= max_len || *_count <= 0)
496 stop = true;
497 else if (t == psize || new_content)
498 stop = false;
499
500 index += thp_nr_pages(page);
501 if (!pagevec_add(&pvec, page))
502 break;
503 if (stop)
504 break;
505 }
506
507 if (!stop)
508 xas_pause(&xas);
509 rcu_read_unlock();
510
511 /* Now, if we obtained any pages, we can shift them to being
512 * writable and mark them for caching.
513 */
514 if (!pagevec_count(&pvec))
515 break;
516
517 for (i = 0; i < pagevec_count(&pvec); i++) {
518 page = pvec.pages[i];
67d78a6f 519 trace_afs_page_dirty(vnode, tracepoint_string("store+"), page);
13524ab3 520
31143d5d
DH
521 if (!clear_page_dirty_for_io(page))
522 BUG();
523 if (test_set_page_writeback(page))
524 BUG();
e87b03f5
DH
525
526 *_count -= thp_nr_pages(page);
31143d5d 527 unlock_page(page);
31143d5d
DH
528 }
529
e87b03f5
DH
530 pagevec_release(&pvec);
531 cond_resched();
532 } while (!stop);
31143d5d 533
e87b03f5 534 *_len = len;
810caa3e
DH
535}
536
537/*
538 * Synchronously write back the locked page and any subsequent non-locked dirty
539 * pages.
540 */
e87b03f5
DH
541static ssize_t afs_write_back_from_locked_page(struct address_space *mapping,
542 struct writeback_control *wbc,
543 struct page *page,
544 loff_t start, loff_t end)
810caa3e
DH
545{
546 struct afs_vnode *vnode = AFS_FS_I(mapping->host);
547 struct iov_iter iter;
e87b03f5
DH
548 unsigned long priv;
549 unsigned int offset, to, len, max_len;
550 loff_t i_size = i_size_read(&vnode->vfs_inode);
810caa3e 551 bool new_content = test_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
e87b03f5 552 long count = wbc->nr_to_write;
810caa3e
DH
553 int ret;
554
e87b03f5 555 _enter(",%lx,%llx-%llx", page->index, start, end);
810caa3e 556
e87b03f5 557 if (test_set_page_writeback(page))
810caa3e
DH
558 BUG();
559
e87b03f5
DH
560 count -= thp_nr_pages(page);
561
810caa3e
DH
562 /* Find all consecutive lockable dirty pages that have contiguous
563 * written regions, stopping when we find a page that is not
564 * immediately lockable, is not dirty or is missing, or we reach the
565 * end of the range.
566 */
e87b03f5
DH
567 priv = page_private(page);
568 offset = afs_page_dirty_from(page, priv);
569 to = afs_page_dirty_to(page, priv);
570 trace_afs_page_dirty(vnode, tracepoint_string("store"), page);
571
572 len = to - offset;
573 start += offset;
574 if (start < i_size) {
575 /* Trim the write to the EOF; the extra data is ignored. Also
576 * put an upper limit on the size of a single storedata op.
577 */
578 max_len = 65536 * 4096;
579 max_len = min_t(unsigned long long, max_len, end - start + 1);
580 max_len = min_t(unsigned long long, max_len, i_size - start);
581
582 if (len < max_len &&
583 (to == thp_size(page) || new_content))
584 afs_extend_writeback(mapping, vnode, &count,
585 start, max_len, new_content, &len);
586 len = min_t(loff_t, len, max_len);
587 }
810caa3e 588
4343d008
DH
589 /* We now have a contiguous set of dirty pages, each with writeback
590 * set; the first page is still locked at this point, but all the rest
591 * have been unlocked.
592 */
e87b03f5 593 unlock_page(page);
793fe82e 594
e87b03f5
DH
595 if (start < i_size) {
596 _debug("write back %x @%llx [%llx]", len, start, i_size);
bd80d8a8 597
e87b03f5
DH
598 iov_iter_xarray(&iter, WRITE, &mapping->i_pages, start, len);
599 ret = afs_store_data(vnode, &iter, start, false);
bd80d8a8 600 } else {
e87b03f5
DH
601 _debug("write discard %x @%llx [%llx]", len, start, i_size);
602
bd80d8a8 603 /* The dirty region was entirely beyond the EOF. */
e87b03f5 604 afs_pages_written_back(vnode, start, len);
bd80d8a8
DH
605 ret = 0;
606 }
31143d5d 607
4343d008
DH
608 switch (ret) {
609 case 0:
e87b03f5
DH
610 wbc->nr_to_write = count;
611 ret = len;
4343d008
DH
612 break;
613
614 default:
615 pr_notice("kAFS: Unexpected error from FS.StoreData %d\n", ret);
df561f66 616 fallthrough;
4343d008
DH
617 case -EACCES:
618 case -EPERM:
619 case -ENOKEY:
620 case -EKEYEXPIRED:
621 case -EKEYREJECTED:
622 case -EKEYREVOKED:
e87b03f5 623 afs_redirty_pages(wbc, mapping, start, len);
4343d008
DH
624 mapping_set_error(mapping, ret);
625 break;
626
627 case -EDQUOT:
628 case -ENOSPC:
e87b03f5 629 afs_redirty_pages(wbc, mapping, start, len);
4343d008
DH
630 mapping_set_error(mapping, -ENOSPC);
631 break;
632
633 case -EROFS:
634 case -EIO:
635 case -EREMOTEIO:
636 case -EFBIG:
637 case -ENOENT:
638 case -ENOMEDIUM:
639 case -ENXIO:
f51375cd 640 trace_afs_file_error(vnode, ret, afs_file_error_writeback_fail);
e87b03f5 641 afs_kill_pages(mapping, start, len);
4343d008
DH
642 mapping_set_error(mapping, ret);
643 break;
31143d5d
DH
644 }
645
646 _leave(" = %d", ret);
647 return ret;
648}
649
650/*
651 * write a page back to the server
652 * - the caller locked the page for us
653 */
654int afs_writepage(struct page *page, struct writeback_control *wbc)
655{
e87b03f5
DH
656 ssize_t ret;
657 loff_t start;
31143d5d
DH
658
659 _enter("{%lx},", page->index);
660
e87b03f5 661 start = page->index * PAGE_SIZE;
4343d008 662 ret = afs_write_back_from_locked_page(page->mapping, wbc, page,
e87b03f5 663 start, LLONG_MAX - start);
31143d5d 664 if (ret < 0) {
e87b03f5
DH
665 _leave(" = %zd", ret);
666 return ret;
31143d5d
DH
667 }
668
31143d5d
DH
669 _leave(" = 0");
670 return 0;
671}
672
673/*
674 * write a region of pages back to the server
675 */
c1206a2c
AB
676static int afs_writepages_region(struct address_space *mapping,
677 struct writeback_control *wbc,
e87b03f5 678 loff_t start, loff_t end, loff_t *_next)
31143d5d 679{
31143d5d 680 struct page *page;
e87b03f5
DH
681 ssize_t ret;
682 int n;
31143d5d 683
e87b03f5 684 _enter("%llx,%llx,", start, end);
31143d5d
DH
685
686 do {
e87b03f5
DH
687 pgoff_t index = start / PAGE_SIZE;
688
689 n = find_get_pages_range_tag(mapping, &index, end / PAGE_SIZE,
690 PAGECACHE_TAG_DIRTY, 1, &page);
31143d5d
DH
691 if (!n)
692 break;
693
e87b03f5
DH
694 start = (loff_t)page->index * PAGE_SIZE; /* May regress with THPs */
695
31143d5d
DH
696 _debug("wback %lx", page->index);
697
e87b03f5 698 /* At this point we hold neither the i_pages lock nor the
b93b0163
MW
699 * page lock: the page may be truncated or invalidated
700 * (changing page->mapping to NULL), or even swizzled
701 * back from swapper_space to tmpfs file mapping
31143d5d 702 */
e87b03f5
DH
703 if (wbc->sync_mode != WB_SYNC_NONE) {
704 ret = lock_page_killable(page);
705 if (ret < 0) {
706 put_page(page);
707 return ret;
708 }
709 } else {
710 if (!trylock_page(page)) {
711 put_page(page);
712 return 0;
713 }
4343d008 714 }
31143d5d 715
c5051c7b 716 if (page->mapping != mapping || !PageDirty(page)) {
e87b03f5 717 start += thp_size(page);
31143d5d 718 unlock_page(page);
09cbfeaf 719 put_page(page);
31143d5d
DH
720 continue;
721 }
722
c5051c7b 723 if (PageWriteback(page)) {
31143d5d 724 unlock_page(page);
c5051c7b
DH
725 if (wbc->sync_mode != WB_SYNC_NONE)
726 wait_on_page_writeback(page);
29c8bbbd 727 put_page(page);
31143d5d
DH
728 continue;
729 }
730
65a15109
DH
731 if (!clear_page_dirty_for_io(page))
732 BUG();
e87b03f5 733 ret = afs_write_back_from_locked_page(mapping, wbc, page, start, end);
09cbfeaf 734 put_page(page);
31143d5d 735 if (ret < 0) {
e87b03f5 736 _leave(" = %zd", ret);
31143d5d
DH
737 return ret;
738 }
739
dc255730 740 start += ret;
31143d5d 741
31143d5d 742 cond_resched();
e87b03f5 743 } while (wbc->nr_to_write > 0);
31143d5d 744
e87b03f5
DH
745 *_next = start;
746 _leave(" = 0 [%llx]", *_next);
31143d5d
DH
747 return 0;
748}
749
750/*
751 * write some of the pending data back to the server
752 */
753int afs_writepages(struct address_space *mapping,
754 struct writeback_control *wbc)
755{
ec0fa0b6 756 struct afs_vnode *vnode = AFS_FS_I(mapping->host);
e87b03f5 757 loff_t start, next;
31143d5d
DH
758 int ret;
759
760 _enter("");
761
ec0fa0b6
DH
762 /* We have to be careful as we can end up racing with setattr()
763 * truncating the pagecache since the caller doesn't take a lock here
764 * to prevent it.
765 */
766 if (wbc->sync_mode == WB_SYNC_ALL)
767 down_read(&vnode->validate_lock);
768 else if (!down_read_trylock(&vnode->validate_lock))
769 return 0;
770
31143d5d 771 if (wbc->range_cyclic) {
e87b03f5
DH
772 start = mapping->writeback_index * PAGE_SIZE;
773 ret = afs_writepages_region(mapping, wbc, start, LLONG_MAX, &next);
1b430bee 774 if (start > 0 && wbc->nr_to_write > 0 && ret == 0)
31143d5d
DH
775 ret = afs_writepages_region(mapping, wbc, 0, start,
776 &next);
e87b03f5 777 mapping->writeback_index = next / PAGE_SIZE;
31143d5d 778 } else if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) {
e87b03f5 779 ret = afs_writepages_region(mapping, wbc, 0, LLONG_MAX, &next);
31143d5d
DH
780 if (wbc->nr_to_write > 0)
781 mapping->writeback_index = next;
782 } else {
e87b03f5
DH
783 ret = afs_writepages_region(mapping, wbc,
784 wbc->range_start, wbc->range_end, &next);
31143d5d
DH
785 }
786
ec0fa0b6 787 up_read(&vnode->validate_lock);
31143d5d
DH
788 _leave(" = %d", ret);
789 return ret;
790}
791
31143d5d
DH
792/*
793 * write to an AFS file
794 */
50b5551d 795ssize_t afs_file_write(struct kiocb *iocb, struct iov_iter *from)
31143d5d 796{
496ad9aa 797 struct afs_vnode *vnode = AFS_FS_I(file_inode(iocb->ki_filp));
31143d5d 798 ssize_t result;
50b5551d 799 size_t count = iov_iter_count(from);
31143d5d 800
3b6492df 801 _enter("{%llx:%llu},{%zu},",
50b5551d 802 vnode->fid.vid, vnode->fid.vnode, count);
31143d5d
DH
803
804 if (IS_SWAPFILE(&vnode->vfs_inode)) {
805 printk(KERN_INFO
806 "AFS: Attempt to write to active swap file!\n");
807 return -EBUSY;
808 }
809
810 if (!count)
811 return 0;
812
50b5551d 813 result = generic_file_write_iter(iocb, from);
31143d5d 814
31143d5d
DH
815 _leave(" = %zd", result);
816 return result;
817}
818
31143d5d
DH
819/*
820 * flush any dirty pages for this process, and check for write errors.
821 * - the return status from this call provides a reliable indication of
822 * whether any write errors occurred for this process.
823 */
02c24a82 824int afs_fsync(struct file *file, loff_t start, loff_t end, int datasync)
31143d5d 825{
3c981bfc 826 struct inode *inode = file_inode(file);
3c981bfc 827 struct afs_vnode *vnode = AFS_FS_I(inode);
31143d5d 828
3b6492df 829 _enter("{%llx:%llu},{n=%pD},%d",
3c981bfc 830 vnode->fid.vid, vnode->fid.vnode, file,
31143d5d
DH
831 datasync);
832
4343d008 833 return file_write_and_wait_range(file, start, end);
31143d5d 834}
9b3f26c9
DH
835
836/*
837 * notification that a previously read-only page is about to become writable
838 * - if it returns an error, the caller will deliver a bus error signal
839 */
0722f186 840vm_fault_t afs_page_mkwrite(struct vm_fault *vmf)
9b3f26c9 841{
e87b03f5 842 struct page *page = thp_head(vmf->page);
1cf7a151
DH
843 struct file *file = vmf->vma->vm_file;
844 struct inode *inode = file_inode(file);
845 struct afs_vnode *vnode = AFS_FS_I(inode);
846 unsigned long priv;
9b3f26c9 847
e87b03f5 848 _enter("{{%llx:%llu}},{%lx}", vnode->fid.vid, vnode->fid.vnode, page->index);
9b3f26c9 849
1cf7a151 850 sb_start_pagefault(inode->i_sb);
9b3f26c9 851
1cf7a151
DH
852 /* Wait for the page to be written to the cache before we allow it to
853 * be modified. We then assume the entire page will need writing back.
854 */
630f5dda 855#ifdef CONFIG_AFS_FSCACHE
e87b03f5 856 if (PageFsCache(page) &&
5cbf0398 857 wait_on_page_fscache_killable(page) < 0)
630f5dda
DH
858 return VM_FAULT_RETRY;
859#endif
9b3f26c9 860
e87b03f5 861 if (wait_on_page_writeback_killable(page))
1cf7a151
DH
862 return VM_FAULT_RETRY;
863
e87b03f5 864 if (lock_page_killable(page) < 0)
1cf7a151
DH
865 return VM_FAULT_RETRY;
866
867 /* We mustn't change page->private until writeback is complete as that
868 * details the portion of the page we need to write back and we might
869 * need to redirty the page if there's a problem.
870 */
5cbf0398
DH
871 if (wait_on_page_writeback_killable(page) < 0) {
872 unlock_page(page);
873 return VM_FAULT_RETRY;
874 }
1cf7a151 875
e87b03f5 876 priv = afs_page_dirty(page, 0, thp_size(page));
f86726a6 877 priv = afs_page_dirty_mmapped(priv);
e87b03f5
DH
878 if (PagePrivate(page)) {
879 set_page_private(page, priv);
880 trace_afs_page_dirty(vnode, tracepoint_string("mkwrite+"), page);
881 } else {
882 attach_page_private(page, (void *)priv);
883 trace_afs_page_dirty(vnode, tracepoint_string("mkwrite"), page);
884 }
bb413489 885 file_update_time(file);
1cf7a151
DH
886
887 sb_end_pagefault(inode->i_sb);
888 return VM_FAULT_LOCKED;
9b3f26c9 889}
4343d008
DH
890
891/*
892 * Prune the keys cached for writeback. The caller must hold vnode->wb_lock.
893 */
894void afs_prune_wb_keys(struct afs_vnode *vnode)
895{
896 LIST_HEAD(graveyard);
897 struct afs_wb_key *wbk, *tmp;
898
899 /* Discard unused keys */
900 spin_lock(&vnode->wb_lock);
901
902 if (!mapping_tagged(&vnode->vfs_inode.i_data, PAGECACHE_TAG_WRITEBACK) &&
903 !mapping_tagged(&vnode->vfs_inode.i_data, PAGECACHE_TAG_DIRTY)) {
904 list_for_each_entry_safe(wbk, tmp, &vnode->wb_keys, vnode_link) {
905 if (refcount_read(&wbk->usage) == 1)
906 list_move(&wbk->vnode_link, &graveyard);
907 }
908 }
909
910 spin_unlock(&vnode->wb_lock);
911
912 while (!list_empty(&graveyard)) {
913 wbk = list_entry(graveyard.next, struct afs_wb_key, vnode_link);
914 list_del(&wbk->vnode_link);
915 afs_put_wb_key(wbk);
916 }
917}
918
919/*
920 * Clean up a page during invalidation.
921 */
922int afs_launder_page(struct page *page)
923{
924 struct address_space *mapping = page->mapping;
925 struct afs_vnode *vnode = AFS_FS_I(mapping->host);
bd80d8a8
DH
926 struct iov_iter iter;
927 struct bio_vec bv[1];
4343d008
DH
928 unsigned long priv;
929 unsigned int f, t;
930 int ret = 0;
931
932 _enter("{%lx}", page->index);
933
934 priv = page_private(page);
935 if (clear_page_dirty_for_io(page)) {
936 f = 0;
e87b03f5 937 t = thp_size(page);
4343d008 938 if (PagePrivate(page)) {
67d78a6f
DH
939 f = afs_page_dirty_from(page, priv);
940 t = afs_page_dirty_to(page, priv);
4343d008
DH
941 }
942
bd80d8a8
DH
943 bv[0].bv_page = page;
944 bv[0].bv_offset = f;
945 bv[0].bv_len = t - f;
946 iov_iter_bvec(&iter, WRITE, bv, 1, bv[0].bv_len);
947
67d78a6f 948 trace_afs_page_dirty(vnode, tracepoint_string("launder"), page);
e87b03f5
DH
949 ret = afs_store_data(vnode, &iter, (loff_t)page->index * PAGE_SIZE,
950 true);
4343d008
DH
951 }
952
67d78a6f 953 trace_afs_page_dirty(vnode, tracepoint_string("laundered"), page);
e87b03f5 954 detach_page_private(page);
630f5dda 955 wait_on_page_fscache(page);
4343d008 956 return ret;
9b3f26c9 957}