]> Git Repo - linux.git/blame - fs/nfs/write.c
Merge tag 'selinux-pr-20170831' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / fs / nfs / write.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/nfs/write.c
3 *
7c85d900 4 * Write file data over NFS.
1da177e4
LT
5 *
6 * Copyright (C) 1996, 1997, Olaf Kirch <[email protected]>
7 */
8
1da177e4
LT
9#include <linux/types.h>
10#include <linux/slab.h>
11#include <linux/mm.h>
12#include <linux/pagemap.h>
13#include <linux/file.h>
1da177e4 14#include <linux/writeback.h>
89a09141 15#include <linux/swap.h>
074cc1de 16#include <linux/migrate.h>
1da177e4
LT
17
18#include <linux/sunrpc/clnt.h>
19#include <linux/nfs_fs.h>
20#include <linux/nfs_mount.h>
21#include <linux/nfs_page.h>
3fcfab16 22#include <linux/backing-dev.h>
afeacc8c 23#include <linux/export.h>
af7cf057
TM
24#include <linux/freezer.h>
25#include <linux/wait.h>
3fcfab16 26
7c0f6ba6 27#include <linux/uaccess.h>
1da177e4
LT
28
29#include "delegation.h"
49a70f27 30#include "internal.h"
91d5b470 31#include "iostat.h"
def6ed7e 32#include "nfs4_fs.h"
074cc1de 33#include "fscache.h"
94ad1c80 34#include "pnfs.h"
1da177e4 35
f4ce1299
TM
36#include "nfstrace.h"
37
1da177e4
LT
38#define NFSDBG_FACILITY NFSDBG_PAGECACHE
39
40#define MIN_POOL_WRITE (32)
41#define MIN_POOL_COMMIT (4)
42
919e3bd9
TM
43struct nfs_io_completion {
44 void (*complete)(void *data);
45 void *data;
46 struct kref refcount;
47};
48
1da177e4
LT
49/*
50 * Local function declarations
51 */
f8512ad0 52static void nfs_redirty_request(struct nfs_page *req);
788e7a89 53static const struct rpc_call_ops nfs_commit_ops;
061ae2ed 54static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops;
f453a54a 55static const struct nfs_commit_completion_ops nfs_commit_completion_ops;
4a0de55c 56static const struct nfs_rw_ops nfs_rw_write_ops;
d4581383 57static void nfs_clear_request_commit(struct nfs_page *req);
02d1426c
WAA
58static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
59 struct inode *inode);
3a3908c8
TM
60static struct nfs_page *
61nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi,
62 struct page *page);
1da177e4 63
e18b890b 64static struct kmem_cache *nfs_wdata_cachep;
3feb2d49 65static mempool_t *nfs_wdata_mempool;
0b7c0153 66static struct kmem_cache *nfs_cdata_cachep;
1da177e4
LT
67static mempool_t *nfs_commit_mempool;
68
518662e0 69struct nfs_commit_data *nfs_commitdata_alloc(bool never_fail)
1da177e4 70{
518662e0 71 struct nfs_commit_data *p;
40859d7e 72
518662e0
N
73 if (never_fail)
74 p = mempool_alloc(nfs_commit_mempool, GFP_NOIO);
75 else {
76 /* It is OK to do some reclaim, not no safe to wait
77 * for anything to be returned to the pool.
78 * mempool_alloc() cannot handle that particular combination,
79 * so we need two separate attempts.
80 */
81 p = mempool_alloc(nfs_commit_mempool, GFP_NOWAIT);
82 if (!p)
83 p = kmem_cache_alloc(nfs_cdata_cachep, GFP_NOIO |
84 __GFP_NOWARN | __GFP_NORETRY);
85 if (!p)
86 return NULL;
1da177e4 87 }
518662e0
N
88
89 memset(p, 0, sizeof(*p));
90 INIT_LIST_HEAD(&p->pages);
1da177e4
LT
91 return p;
92}
e0c2b380 93EXPORT_SYMBOL_GPL(nfs_commitdata_alloc);
1da177e4 94
0b7c0153 95void nfs_commit_free(struct nfs_commit_data *p)
1da177e4
LT
96{
97 mempool_free(p, nfs_commit_mempool);
98}
e0c2b380 99EXPORT_SYMBOL_GPL(nfs_commit_free);
1da177e4 100
1e7f3a48 101static struct nfs_pgio_header *nfs_writehdr_alloc(void)
3feb2d49 102{
1e7f3a48 103 struct nfs_pgio_header *p = mempool_alloc(nfs_wdata_mempool, GFP_NOIO);
cd841605 104
237f8306
N
105 memset(p, 0, sizeof(*p));
106 p->rw_mode = FMODE_WRITE;
3feb2d49
TM
107 return p;
108}
6c75dc0d 109
1e7f3a48 110static void nfs_writehdr_free(struct nfs_pgio_header *hdr)
3feb2d49 111{
1e7f3a48 112 mempool_free(hdr, nfs_wdata_mempool);
3feb2d49 113}
1da177e4 114
919e3bd9
TM
115static struct nfs_io_completion *nfs_io_completion_alloc(gfp_t gfp_flags)
116{
117 return kmalloc(sizeof(struct nfs_io_completion), gfp_flags);
118}
119
120static void nfs_io_completion_init(struct nfs_io_completion *ioc,
121 void (*complete)(void *), void *data)
122{
123 ioc->complete = complete;
124 ioc->data = data;
125 kref_init(&ioc->refcount);
126}
127
128static void nfs_io_completion_release(struct kref *kref)
129{
130 struct nfs_io_completion *ioc = container_of(kref,
131 struct nfs_io_completion, refcount);
132 ioc->complete(ioc->data);
133 kfree(ioc);
134}
135
136static void nfs_io_completion_get(struct nfs_io_completion *ioc)
137{
138 if (ioc != NULL)
139 kref_get(&ioc->refcount);
140}
141
142static void nfs_io_completion_put(struct nfs_io_completion *ioc)
143{
144 if (ioc != NULL)
145 kref_put(&ioc->refcount, nfs_io_completion_release);
146}
147
7b159fc1
TM
148static void nfs_context_set_write_error(struct nfs_open_context *ctx, int error)
149{
150 ctx->error = error;
151 smp_wmb();
152 set_bit(NFS_CONTEXT_ERROR_WRITE, &ctx->flags);
153}
154
bd37d6fc
TM
155static struct nfs_page *
156nfs_page_private_request(struct page *page)
157{
158 if (!PagePrivate(page))
159 return NULL;
160 return (struct nfs_page *)page_private(page);
161}
162
84d3a9a9
WAA
163/*
164 * nfs_page_find_head_request_locked - find head request associated with @page
165 *
166 * must be called while holding the inode lock.
167 *
168 * returns matching head request with reference held, or NULL if not found.
169 */
29418aa4 170static struct nfs_page *
b30d2f04 171nfs_page_find_private_request(struct page *page)
277459d2 172{
4b9bb25b 173 struct address_space *mapping = page_file_mapping(page);
bd37d6fc 174 struct nfs_page *req;
277459d2 175
b30d2f04
TM
176 if (!PagePrivate(page))
177 return NULL;
4b9bb25b 178 spin_lock(&mapping->private_lock);
bd37d6fc 179 req = nfs_page_private_request(page);
84d3a9a9
WAA
180 if (req) {
181 WARN_ON_ONCE(req->wb_head != req);
29418aa4 182 kref_get(&req->wb_kref);
84d3a9a9 183 }
4b9bb25b 184 spin_unlock(&mapping->private_lock);
b30d2f04
TM
185 return req;
186}
29418aa4 187
b30d2f04
TM
188static struct nfs_page *
189nfs_page_find_swap_request(struct page *page)
190{
191 struct inode *inode = page_file_mapping(page)->host;
192 struct nfs_inode *nfsi = NFS_I(inode);
193 struct nfs_page *req = NULL;
194 if (!PageSwapCache(page))
195 return NULL;
e824f99a 196 mutex_lock(&nfsi->commit_mutex);
b30d2f04
TM
197 if (PageSwapCache(page)) {
198 req = nfs_page_search_commits_for_head_request_locked(nfsi,
199 page);
200 if (req) {
201 WARN_ON_ONCE(req->wb_head != req);
202 kref_get(&req->wb_kref);
203 }
204 }
e824f99a 205 mutex_unlock(&nfsi->commit_mutex);
277459d2
TM
206 return req;
207}
208
84d3a9a9
WAA
209/*
210 * nfs_page_find_head_request - find head request associated with @page
211 *
212 * returns matching head request with reference held, or NULL if not found.
213 */
214static struct nfs_page *nfs_page_find_head_request(struct page *page)
277459d2 215{
b30d2f04 216 struct nfs_page *req;
277459d2 217
b30d2f04
TM
218 req = nfs_page_find_private_request(page);
219 if (!req)
220 req = nfs_page_find_swap_request(page);
277459d2
TM
221 return req;
222}
223
1da177e4
LT
224/* Adjust the file length if we're writing beyond the end */
225static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count)
226{
d56b4ddf 227 struct inode *inode = page_file_mapping(page)->host;
a3d01454
TM
228 loff_t end, i_size;
229 pgoff_t end_index;
1da177e4 230
a3d01454
TM
231 spin_lock(&inode->i_lock);
232 i_size = i_size_read(inode);
09cbfeaf 233 end_index = (i_size - 1) >> PAGE_SHIFT;
8cd79788 234 if (i_size > 0 && page_index(page) < end_index)
a3d01454 235 goto out;
d56b4ddf 236 end = page_file_offset(page) + ((loff_t)offset+count);
1da177e4 237 if (i_size >= end)
a3d01454 238 goto out;
1da177e4 239 i_size_write(inode, end);
a3d01454
TM
240 nfs_inc_stats(inode, NFSIOS_EXTENDWRITE);
241out:
242 spin_unlock(&inode->i_lock);
1da177e4
LT
243}
244
a301b777
TM
245/* A writeback failed: mark the page as bad, and invalidate the page cache */
246static void nfs_set_pageerror(struct page *page)
247{
d56b4ddf 248 nfs_zap_mapping(page_file_mapping(page)->host, page_file_mapping(page));
a301b777
TM
249}
250
d72ddcba
WAA
251/*
252 * nfs_page_group_search_locked
253 * @head - head request of page group
254 * @page_offset - offset into page
255 *
256 * Search page group with head @head to find a request that contains the
257 * page offset @page_offset.
258 *
259 * Returns a pointer to the first matching nfs request, or NULL if no
260 * match is found.
261 *
262 * Must be called with the page group lock held
263 */
264static struct nfs_page *
265nfs_page_group_search_locked(struct nfs_page *head, unsigned int page_offset)
266{
267 struct nfs_page *req;
268
d72ddcba
WAA
269 req = head;
270 do {
271 if (page_offset >= req->wb_pgbase &&
272 page_offset < (req->wb_pgbase + req->wb_bytes))
273 return req;
274
275 req = req->wb_this_page;
276 } while (req != head);
277
278 return NULL;
279}
280
281/*
282 * nfs_page_group_covers_page
283 * @head - head request of page group
284 *
285 * Return true if the page group with head @head covers the whole page,
286 * returns false otherwise
287 */
288static bool nfs_page_group_covers_page(struct nfs_page *req)
289{
290 struct nfs_page *tmp;
291 unsigned int pos = 0;
292 unsigned int len = nfs_page_length(req->wb_page);
293
1344b7ea 294 nfs_page_group_lock(req);
d72ddcba 295
7e8a30f8 296 for (;;) {
d72ddcba 297 tmp = nfs_page_group_search_locked(req->wb_head, pos);
7e8a30f8
TM
298 if (!tmp)
299 break;
300 pos = tmp->wb_pgbase + tmp->wb_bytes;
301 }
d72ddcba
WAA
302
303 nfs_page_group_unlock(req);
7e8a30f8 304 return pos >= len;
d72ddcba
WAA
305}
306
1da177e4
LT
307/* We can set the PG_uptodate flag if we see that a write request
308 * covers the full page.
309 */
d72ddcba 310static void nfs_mark_uptodate(struct nfs_page *req)
1da177e4 311{
d72ddcba 312 if (PageUptodate(req->wb_page))
1da177e4 313 return;
d72ddcba 314 if (!nfs_page_group_covers_page(req))
1da177e4 315 return;
d72ddcba 316 SetPageUptodate(req->wb_page);
1da177e4
LT
317}
318
1da177e4
LT
319static int wb_priority(struct writeback_control *wbc)
320{
e87b4c7a 321 int ret = 0;
cca588d6 322
e87b4c7a
N
323 if (wbc->sync_mode == WB_SYNC_ALL)
324 ret = FLUSH_COND_STABLE;
e87b4c7a 325 return ret;
1da177e4
LT
326}
327
89a09141
PZ
328/*
329 * NFS congestion control
330 */
331
332int nfs_congestion_kb;
333
334#define NFS_CONGESTION_ON_THRESH (nfs_congestion_kb >> (PAGE_SHIFT-10))
335#define NFS_CONGESTION_OFF_THRESH \
336 (NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2))
337
deed85e7 338static void nfs_set_page_writeback(struct page *page)
89a09141 339{
0db10944
JK
340 struct inode *inode = page_file_mapping(page)->host;
341 struct nfs_server *nfss = NFS_SERVER(inode);
5a6d41b3
TM
342 int ret = test_set_page_writeback(page);
343
deed85e7 344 WARN_ON_ONCE(ret != 0);
89a09141 345
deed85e7 346 if (atomic_long_inc_return(&nfss->writeback) >
0db10944
JK
347 NFS_CONGESTION_ON_THRESH)
348 set_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
89a09141
PZ
349}
350
20633f04 351static void nfs_end_page_writeback(struct nfs_page *req)
89a09141 352{
20633f04 353 struct inode *inode = page_file_mapping(req->wb_page)->host;
89a09141 354 struct nfs_server *nfss = NFS_SERVER(inode);
31a01f09 355 bool is_done;
89a09141 356
31a01f09
TM
357 is_done = nfs_page_group_sync_on_bit(req, PG_WB_END);
358 nfs_unlock_request(req);
359 if (!is_done)
20633f04
WAA
360 return;
361
362 end_page_writeback(req->wb_page);
c4dc4bee 363 if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
0db10944 364 clear_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
89a09141
PZ
365}
366
d4581383
WAA
367/*
368 * nfs_unroll_locks_and_wait - unlock all newly locked reqs and wait on @req
369 *
370 * this is a helper function for nfs_lock_and_join_requests
371 *
372 * @inode - inode associated with request page group, must be holding inode lock
373 * @head - head request of page group, must be holding head lock
374 * @req - request that couldn't lock and needs to wait on the req bit lock
d4581383 375 *
b5bab9bf
TM
376 * NOTE: this must be called holding page_group bit lock
377 * which will be released before returning.
d4581383
WAA
378 *
379 * returns 0 on success, < 0 on error.
380 */
74a6d4b5
TM
381static void
382nfs_unroll_locks(struct inode *inode, struct nfs_page *head,
6d17d653 383 struct nfs_page *req)
d4581383
WAA
384{
385 struct nfs_page *tmp;
d4581383
WAA
386
387 /* relinquish all the locks successfully grabbed this run */
5b2b5187
TM
388 for (tmp = head->wb_this_page ; tmp != req; tmp = tmp->wb_this_page) {
389 if (!kref_read(&tmp->wb_kref))
390 continue;
391 nfs_unlock_and_release_request(tmp);
392 }
d4581383
WAA
393}
394
395/*
396 * nfs_destroy_unlinked_subrequests - destroy recently unlinked subrequests
397 *
398 * @destroy_list - request list (using wb_this_page) terminated by @old_head
399 * @old_head - the old head of the list
400 *
401 * All subrequests must be locked and removed from all lists, so at this point
402 * they are only "active" in this function, and possibly in nfs_wait_on_request
403 * with a reference held by some other context.
404 */
405static void
406nfs_destroy_unlinked_subrequests(struct nfs_page *destroy_list,
b66aaa8d
TM
407 struct nfs_page *old_head,
408 struct inode *inode)
d4581383
WAA
409{
410 while (destroy_list) {
411 struct nfs_page *subreq = destroy_list;
412
413 destroy_list = (subreq->wb_this_page == old_head) ?
414 NULL : subreq->wb_this_page;
415
416 WARN_ON_ONCE(old_head != subreq->wb_head);
417
418 /* make sure old group is not used */
d4581383
WAA
419 subreq->wb_this_page = subreq;
420
902a4c00
TM
421 clear_bit(PG_REMOVE, &subreq->wb_flags);
422
5b2b5187
TM
423 /* Note: races with nfs_page_group_destroy() */
424 if (!kref_read(&subreq->wb_kref)) {
5b2b5187 425 /* Check if we raced with nfs_page_group_destroy() */
902a4c00 426 if (test_and_clear_bit(PG_TEARDOWN, &subreq->wb_flags))
5b2b5187
TM
427 nfs_free_request(subreq);
428 continue;
429 }
d4581383 430
5b2b5187
TM
431 subreq->wb_head = subreq;
432
433 if (test_and_clear_bit(PG_INODE_REF, &subreq->wb_flags)) {
434 nfs_release_request(subreq);
a6b6d5b8 435 atomic_long_dec(&NFS_I(inode)->nrequests);
d4581383 436 }
5b2b5187 437
5b2b5187
TM
438 /* subreq is now totally disconnected from page group or any
439 * write / commit lists. last chance to wake any waiters */
440 nfs_unlock_and_release_request(subreq);
d4581383
WAA
441 }
442}
443
444/*
445 * nfs_lock_and_join_requests - join all subreqs to the head req and return
446 * a locked reference, cancelling any pending
447 * operations for this page.
448 *
449 * @page - the page used to lookup the "page group" of nfs_page structures
d4581383
WAA
450 *
451 * This function joins all sub requests to the head request by first
452 * locking all requests in the group, cancelling any pending operations
453 * and finally updating the head request to cover the whole range covered by
454 * the (former) group. All subrequests are removed from any write or commit
455 * lists, unlinked from the group and destroyed.
456 *
457 * Returns a locked, referenced pointer to the head request - which after
458 * this call is guaranteed to be the only request associated with the page.
459 * Returns NULL if no requests are found for @page, or a ERR_PTR if an
460 * error was encountered.
461 */
462static struct nfs_page *
6d17d653 463nfs_lock_and_join_requests(struct page *page)
e261f51f 464{
d56b4ddf 465 struct inode *inode = page_file_mapping(page)->host;
d4581383
WAA
466 struct nfs_page *head, *subreq;
467 struct nfs_page *destroy_list = NULL;
468 unsigned int total_bytes;
e261f51f
TM
469 int ret;
470
d4581383 471try_again:
d4581383
WAA
472 /*
473 * A reference is taken only on the head request which acts as a
474 * reference to the whole page group - the group will not be destroyed
475 * until the head reference is released.
476 */
bd37d6fc
TM
477 head = nfs_page_find_head_request(page);
478 if (!head)
d4581383 479 return NULL;
d4581383 480
a0e265bc
TM
481 /* lock the page head first in order to avoid an ABBA inefficiency */
482 if (!nfs_lock_request(head)) {
a0e265bc
TM
483 ret = nfs_wait_on_request(head);
484 nfs_release_request(head);
485 if (ret < 0)
486 return ERR_PTR(ret);
487 goto try_again;
488 }
bd37d6fc
TM
489
490 /* Ensure that nobody removed the request before we locked it */
491 if (head != nfs_page_private_request(page) && !PageSwapCache(page)) {
492 nfs_unlock_and_release_request(head);
493 goto try_again;
494 }
a0e265bc 495
1344b7ea 496 ret = nfs_page_group_lock(head);
94970014 497 if (ret < 0) {
a0e265bc 498 nfs_unlock_and_release_request(head);
b5bab9bf 499 return ERR_PTR(ret);
94970014 500 }
7c3af975
WAA
501
502 /* lock each request in the page group */
a0e265bc
TM
503 total_bytes = head->wb_bytes;
504 for (subreq = head->wb_this_page; subreq != head;
505 subreq = subreq->wb_this_page) {
74a6d4b5 506
1bd5d6d0
TM
507 if (!kref_get_unless_zero(&subreq->wb_kref)) {
508 if (subreq->wb_offset == head->wb_offset + total_bytes)
509 total_bytes += subreq->wb_bytes;
5b2b5187 510 continue;
1bd5d6d0
TM
511 }
512
74a6d4b5 513 while (!nfs_lock_request(subreq)) {
b5bab9bf 514 /*
74a6d4b5
TM
515 * Unlock page to allow nfs_page_group_sync_on_bit()
516 * to succeed
b5bab9bf 517 */
74a6d4b5
TM
518 nfs_page_group_unlock(head);
519 ret = nfs_wait_on_request(subreq);
520 if (!ret)
1344b7ea 521 ret = nfs_page_group_lock(head);
74a6d4b5
TM
522 if (ret < 0) {
523 nfs_unroll_locks(inode, head, subreq);
5b2b5187 524 nfs_release_request(subreq);
74a6d4b5
TM
525 nfs_unlock_and_release_request(head);
526 return ERR_PTR(ret);
527 }
e14bebf6 528 }
d4581383
WAA
529 /*
530 * Subrequests are always contiguous, non overlapping
309a1d65 531 * and in order - but may be repeated (mirrored writes).
d4581383 532 */
309a1d65
WAA
533 if (subreq->wb_offset == (head->wb_offset + total_bytes)) {
534 /* keep track of how many bytes this group covers */
535 total_bytes += subreq->wb_bytes;
536 } else if (WARN_ON_ONCE(subreq->wb_offset < head->wb_offset ||
537 ((subreq->wb_offset + subreq->wb_bytes) >
538 (head->wb_offset + total_bytes)))) {
8b77484f 539 nfs_page_group_unlock(head);
74a6d4b5 540 nfs_unroll_locks(inode, head, subreq);
5b2b5187 541 nfs_unlock_and_release_request(subreq);
74a6d4b5 542 nfs_unlock_and_release_request(head);
309a1d65
WAA
543 return ERR_PTR(-EIO);
544 }
a0e265bc 545 }
d4581383
WAA
546
547 /* Now that all requests are locked, make sure they aren't on any list.
548 * Commit list removal accounting is done after locks are dropped */
549 subreq = head;
550 do {
411a99ad 551 nfs_clear_request_commit(subreq);
d4581383
WAA
552 subreq = subreq->wb_this_page;
553 } while (subreq != head);
554
555 /* unlink subrequests from head, destroy them later */
556 if (head->wb_this_page != head) {
557 /* destroy list will be terminated by head */
558 destroy_list = head->wb_this_page;
559 head->wb_this_page = head;
560
561 /* change head request to cover whole range that
562 * the former page group covered */
563 head->wb_bytes = total_bytes;
e261f51f 564 }
d4581383 565
b66aaa8d
TM
566 /* Postpone destruction of this request */
567 if (test_and_clear_bit(PG_REMOVE, &head->wb_flags)) {
568 set_bit(PG_INODE_REF, &head->wb_flags);
569 kref_get(&head->wb_kref);
a6b6d5b8 570 atomic_long_inc(&NFS_I(inode)->nrequests);
b66aaa8d
TM
571 }
572
d4581383
WAA
573 nfs_page_group_unlock(head);
574
b66aaa8d 575 nfs_destroy_unlinked_subrequests(destroy_list, head, inode);
d4581383 576
b5bab9bf
TM
577 /* Did we lose a race with nfs_inode_remove_request()? */
578 if (!(PagePrivate(page) || PageSwapCache(page))) {
579 nfs_unlock_and_release_request(head);
580 return NULL;
581 }
582
bd37d6fc 583 /* still holds ref on head from nfs_page_find_head_request
d4581383
WAA
584 * and still has lock on head from lock loop */
585 return head;
074cc1de
TM
586}
587
0bcbf039
PT
588static void nfs_write_error_remove_page(struct nfs_page *req)
589{
0bcbf039 590 nfs_end_page_writeback(req);
0bcbf039
PT
591 generic_error_remove_page(page_file_mapping(req->wb_page),
592 req->wb_page);
1f84ccdf 593 nfs_release_request(req);
0bcbf039
PT
594}
595
a6598813
TM
596static bool
597nfs_error_is_fatal_on_server(int err)
598{
599 switch (err) {
600 case 0:
601 case -ERESTARTSYS:
602 case -EINTR:
603 return false;
604 }
605 return nfs_error_is_fatal(err);
0bcbf039
PT
606}
607
074cc1de
TM
608/*
609 * Find an associated nfs write request, and prepare to flush it out
610 * May return an error if the user signalled nfs_wait_on_request().
611 */
612static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio,
6d17d653 613 struct page *page)
074cc1de
TM
614{
615 struct nfs_page *req;
616 int ret = 0;
617
6d17d653 618 req = nfs_lock_and_join_requests(page);
074cc1de
TM
619 if (!req)
620 goto out;
621 ret = PTR_ERR(req);
622 if (IS_ERR(req))
623 goto out;
624
deed85e7
TM
625 nfs_set_page_writeback(page);
626 WARN_ON_ONCE(test_bit(PG_CLEAN, &req->wb_flags));
074cc1de 627
deed85e7 628 ret = 0;
a6598813
TM
629 /* If there is a fatal error that covers this write, just exit */
630 if (nfs_error_is_fatal_on_server(req->wb_context->error))
631 goto out_launder;
632
f8512ad0 633 if (!nfs_pageio_add_request(pgio, req)) {
074cc1de 634 ret = pgio->pg_error;
0bcbf039 635 /*
c373fff7 636 * Remove the problematic req upon fatal errors on the server
0bcbf039
PT
637 */
638 if (nfs_error_is_fatal(ret)) {
639 nfs_context_set_write_error(req->wb_context, ret);
c373fff7 640 if (nfs_error_is_fatal_on_server(ret))
a6598813 641 goto out_launder;
0bcbf039 642 }
d6c843b9
PT
643 nfs_redirty_request(req);
644 ret = -EAGAIN;
40f90271
TM
645 } else
646 nfs_add_stats(page_file_mapping(page)->host,
647 NFSIOS_WRITEPAGES, 1);
074cc1de
TM
648out:
649 return ret;
a6598813
TM
650out_launder:
651 nfs_write_error_remove_page(req);
652 return ret;
e261f51f
TM
653}
654
d6c843b9 655static int nfs_do_writepage(struct page *page, struct writeback_control *wbc,
c373fff7 656 struct nfs_pageio_descriptor *pgio)
1da177e4 657{
cfb506e1 658 int ret;
1da177e4 659
8cd79788 660 nfs_pageio_cond_complete(pgio, page_index(page));
6d17d653 661 ret = nfs_page_async_flush(pgio, page);
cfb506e1
TM
662 if (ret == -EAGAIN) {
663 redirty_page_for_writepage(wbc, page);
664 ret = 0;
665 }
666 return ret;
f758c885 667}
7fe7f848 668
f758c885
TM
669/*
670 * Write an mmapped page to the server.
671 */
d6c843b9 672static int nfs_writepage_locked(struct page *page,
c373fff7 673 struct writeback_control *wbc)
f758c885
TM
674{
675 struct nfs_pageio_descriptor pgio;
40f90271 676 struct inode *inode = page_file_mapping(page)->host;
f758c885 677 int err;
49a70f27 678
40f90271 679 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE);
811ed92e 680 nfs_pageio_init_write(&pgio, inode, 0,
a20c93e3 681 false, &nfs_async_write_completion_ops);
c373fff7 682 err = nfs_do_writepage(page, wbc, &pgio);
f758c885
TM
683 nfs_pageio_complete(&pgio);
684 if (err < 0)
685 return err;
686 if (pgio.pg_error < 0)
687 return pgio.pg_error;
688 return 0;
4d770ccf
TM
689}
690
691int nfs_writepage(struct page *page, struct writeback_control *wbc)
692{
f758c885 693 int ret;
4d770ccf 694
c373fff7 695 ret = nfs_writepage_locked(page, wbc);
1da177e4 696 unlock_page(page);
f758c885
TM
697 return ret;
698}
699
700static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data)
701{
702 int ret;
703
c373fff7 704 ret = nfs_do_writepage(page, wbc, data);
f758c885
TM
705 unlock_page(page);
706 return ret;
1da177e4
LT
707}
708
919e3bd9
TM
709static void nfs_io_completion_commit(void *inode)
710{
711 nfs_commit_inode(inode, 0);
712}
713
1da177e4
LT
714int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc)
715{
1da177e4 716 struct inode *inode = mapping->host;
c63c7b05 717 struct nfs_pageio_descriptor pgio;
919e3bd9 718 struct nfs_io_completion *ioc = nfs_io_completion_alloc(GFP_NOFS);
1da177e4
LT
719 int err;
720
91d5b470
CL
721 nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES);
722
919e3bd9
TM
723 if (ioc)
724 nfs_io_completion_init(ioc, nfs_io_completion_commit, inode);
725
a20c93e3
CH
726 nfs_pageio_init_write(&pgio, inode, wb_priority(wbc), false,
727 &nfs_async_write_completion_ops);
919e3bd9 728 pgio.pg_io_completion = ioc;
f758c885 729 err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio);
c63c7b05 730 nfs_pageio_complete(&pgio);
919e3bd9 731 nfs_io_completion_put(ioc);
72cb77f4 732
f758c885 733 if (err < 0)
72cb77f4
TM
734 goto out_err;
735 err = pgio.pg_error;
736 if (err < 0)
737 goto out_err;
c63c7b05 738 return 0;
72cb77f4
TM
739out_err:
740 return err;
1da177e4
LT
741}
742
743/*
744 * Insert a write request into an inode
745 */
d6d6dc7c 746static void nfs_inode_add_request(struct inode *inode, struct nfs_page *req)
1da177e4 747{
4b9bb25b 748 struct address_space *mapping = page_file_mapping(req->wb_page);
1da177e4 749 struct nfs_inode *nfsi = NFS_I(inode);
e7d39069 750
2bfc6e56
WAA
751 WARN_ON_ONCE(req->wb_this_page != req);
752
e7d39069 753 /* Lock the request! */
7ad84aa9 754 nfs_lock_request(req);
e7d39069 755
29418aa4
MG
756 /*
757 * Swap-space should not get truncated. Hence no need to plug the race
758 * with invalidate/truncate.
759 */
4b9bb25b
TM
760 spin_lock(&mapping->private_lock);
761 if (!nfs_have_writebacks(inode) &&
762 NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE)) {
763 spin_lock(&inode->i_lock);
764 inode->i_version++;
765 spin_unlock(&inode->i_lock);
766 }
29418aa4
MG
767 if (likely(!PageSwapCache(req->wb_page))) {
768 set_bit(PG_MAPPED, &req->wb_flags);
769 SetPagePrivate(req->wb_page);
770 set_page_private(req->wb_page, (unsigned long)req);
771 }
4b9bb25b 772 spin_unlock(&mapping->private_lock);
a6b6d5b8 773 atomic_long_inc(&nfsi->nrequests);
17089a29 774 /* this a head request for a page group - mark it as having an
cb1410c7
WAA
775 * extra reference so sub groups can follow suit.
776 * This flag also informs pgio layer when to bump nrequests when
777 * adding subrequests. */
17089a29 778 WARN_ON(test_and_set_bit(PG_INODE_REF, &req->wb_flags));
c03b4024 779 kref_get(&req->wb_kref);
1da177e4
LT
780}
781
782/*
89a09141 783 * Remove a write request from an inode
1da177e4
LT
784 */
785static void nfs_inode_remove_request(struct nfs_page *req)
786{
4b9bb25b
TM
787 struct address_space *mapping = page_file_mapping(req->wb_page);
788 struct inode *inode = mapping->host;
1da177e4 789 struct nfs_inode *nfsi = NFS_I(inode);
20633f04 790 struct nfs_page *head;
1da177e4 791
a6b6d5b8 792 atomic_long_dec(&nfsi->nrequests);
20633f04
WAA
793 if (nfs_page_group_sync_on_bit(req, PG_REMOVE)) {
794 head = req->wb_head;
795
4b9bb25b 796 spin_lock(&mapping->private_lock);
67911c8f 797 if (likely(head->wb_page && !PageSwapCache(head->wb_page))) {
20633f04
WAA
798 set_page_private(head->wb_page, 0);
799 ClearPagePrivate(head->wb_page);
800 clear_bit(PG_MAPPED, &head->wb_flags);
801 }
4b9bb25b 802 spin_unlock(&mapping->private_lock);
29418aa4 803 }
17089a29
WAA
804
805 if (test_and_clear_bit(PG_INODE_REF, &req->wb_flags))
806 nfs_release_request(req);
1da177e4
LT
807}
808
61822ab5 809static void
6d884e8f 810nfs_mark_request_dirty(struct nfs_page *req)
61822ab5 811{
67911c8f
AS
812 if (req->wb_page)
813 __set_page_dirty_nobuffers(req->wb_page);
61822ab5
TM
814}
815
3a3908c8
TM
816/*
817 * nfs_page_search_commits_for_head_request_locked
818 *
819 * Search through commit lists on @inode for the head request for @page.
820 * Must be called while holding the inode (which is cinfo) lock.
821 *
822 * Returns the head request if found, or NULL if not found.
823 */
824static struct nfs_page *
825nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi,
826 struct page *page)
827{
828 struct nfs_page *freq, *t;
829 struct nfs_commit_info cinfo;
830 struct inode *inode = &nfsi->vfs_inode;
831
832 nfs_init_cinfo_from_inode(&cinfo, inode);
833
834 /* search through pnfs commit lists */
835 freq = pnfs_search_commit_reqs(inode, &cinfo, page);
836 if (freq)
837 return freq->wb_head;
838
839 /* Linearly search the commit list for the correct request */
840 list_for_each_entry_safe(freq, t, &cinfo.mds->list, wb_list) {
841 if (freq->wb_page == page)
842 return freq->wb_head;
843 }
844
845 return NULL;
846}
847
86d80f97
TM
848/**
849 * nfs_request_add_commit_list_locked - add request to a commit list
850 * @req: pointer to a struct nfs_page
851 * @dst: commit list head
852 * @cinfo: holds list lock and accounting info
853 *
854 * This sets the PG_CLEAN bit, updates the cinfo count of
855 * number of outstanding requests requiring a commit as well as
856 * the MM page stats.
857 *
e824f99a
TM
858 * The caller must hold NFS_I(cinfo->inode)->commit_mutex, and the
859 * nfs_page lock.
86d80f97
TM
860 */
861void
862nfs_request_add_commit_list_locked(struct nfs_page *req, struct list_head *dst,
863 struct nfs_commit_info *cinfo)
864{
865 set_bit(PG_CLEAN, &req->wb_flags);
866 nfs_list_add_request(req, dst);
5cb953d4 867 atomic_long_inc(&cinfo->mds->ncommit);
86d80f97
TM
868}
869EXPORT_SYMBOL_GPL(nfs_request_add_commit_list_locked);
870
8dd37758
TM
871/**
872 * nfs_request_add_commit_list - add request to a commit list
873 * @req: pointer to a struct nfs_page
ea2cf228
FI
874 * @dst: commit list head
875 * @cinfo: holds list lock and accounting info
8dd37758 876 *
ea2cf228 877 * This sets the PG_CLEAN bit, updates the cinfo count of
8dd37758
TM
878 * number of outstanding requests requiring a commit as well as
879 * the MM page stats.
880 *
ea2cf228 881 * The caller must _not_ hold the cinfo->lock, but must be
8dd37758 882 * holding the nfs_page lock.
1da177e4 883 */
8dd37758 884void
6272dcc6 885nfs_request_add_commit_list(struct nfs_page *req, struct nfs_commit_info *cinfo)
1da177e4 886{
e824f99a 887 mutex_lock(&NFS_I(cinfo->inode)->commit_mutex);
6272dcc6 888 nfs_request_add_commit_list_locked(req, &cinfo->mds->list, cinfo);
e824f99a 889 mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex);
67911c8f
AS
890 if (req->wb_page)
891 nfs_mark_page_unstable(req->wb_page, cinfo);
1da177e4 892}
8dd37758
TM
893EXPORT_SYMBOL_GPL(nfs_request_add_commit_list);
894
895/**
896 * nfs_request_remove_commit_list - Remove request from a commit list
897 * @req: pointer to a nfs_page
ea2cf228 898 * @cinfo: holds list lock and accounting info
8dd37758 899 *
ea2cf228 900 * This clears the PG_CLEAN bit, and updates the cinfo's count of
8dd37758
TM
901 * number of outstanding requests requiring a commit
902 * It does not update the MM page stats.
903 *
ea2cf228 904 * The caller _must_ hold the cinfo->lock and the nfs_page lock.
8dd37758
TM
905 */
906void
ea2cf228
FI
907nfs_request_remove_commit_list(struct nfs_page *req,
908 struct nfs_commit_info *cinfo)
8dd37758 909{
8dd37758
TM
910 if (!test_and_clear_bit(PG_CLEAN, &(req)->wb_flags))
911 return;
912 nfs_list_remove_request(req);
5cb953d4 913 atomic_long_dec(&cinfo->mds->ncommit);
8dd37758
TM
914}
915EXPORT_SYMBOL_GPL(nfs_request_remove_commit_list);
916
ea2cf228
FI
917static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo,
918 struct inode *inode)
919{
fe238e60 920 cinfo->inode = inode;
ea2cf228
FI
921 cinfo->mds = &NFS_I(inode)->commit_info;
922 cinfo->ds = pnfs_get_ds_info(inode);
b359f9d0 923 cinfo->dreq = NULL;
f453a54a 924 cinfo->completion_ops = &nfs_commit_completion_ops;
ea2cf228
FI
925}
926
927void nfs_init_cinfo(struct nfs_commit_info *cinfo,
928 struct inode *inode,
929 struct nfs_direct_req *dreq)
930{
1763da12
FI
931 if (dreq)
932 nfs_init_cinfo_from_dreq(cinfo, dreq);
933 else
934 nfs_init_cinfo_from_inode(cinfo, inode);
ea2cf228
FI
935}
936EXPORT_SYMBOL_GPL(nfs_init_cinfo);
8dd37758
TM
937
938/*
939 * Add a request to the inode's commit list.
940 */
1763da12 941void
ea2cf228 942nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg,
b57ff130 943 struct nfs_commit_info *cinfo, u32 ds_commit_idx)
8dd37758 944{
b57ff130 945 if (pnfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx))
8dd37758 946 return;
6272dcc6 947 nfs_request_add_commit_list(req, cinfo);
8dd37758 948}
8e821cad 949
d6d6dc7c
FI
950static void
951nfs_clear_page_commit(struct page *page)
952{
11fb9989 953 dec_node_page_state(page, NR_UNSTABLE_NFS);
93f78d88
TH
954 dec_wb_stat(&inode_to_bdi(page_file_mapping(page)->host)->wb,
955 WB_RECLAIMABLE);
d6d6dc7c
FI
956}
957
b5bab9bf 958/* Called holding the request lock on @req */
8dd37758 959static void
e468bae9
TM
960nfs_clear_request_commit(struct nfs_page *req)
961{
8dd37758 962 if (test_bit(PG_CLEAN, &req->wb_flags)) {
2b0143b5 963 struct inode *inode = d_inode(req->wb_context->dentry);
ea2cf228 964 struct nfs_commit_info cinfo;
e468bae9 965
ea2cf228 966 nfs_init_cinfo_from_inode(&cinfo, inode);
e824f99a 967 mutex_lock(&NFS_I(inode)->commit_mutex);
ea2cf228 968 if (!pnfs_clear_request_commit(req, &cinfo)) {
ea2cf228 969 nfs_request_remove_commit_list(req, &cinfo);
8dd37758 970 }
e824f99a 971 mutex_unlock(&NFS_I(inode)->commit_mutex);
d6d6dc7c 972 nfs_clear_page_commit(req->wb_page);
e468bae9 973 }
e468bae9
TM
974}
975
d45f60c6 976int nfs_write_need_commit(struct nfs_pgio_header *hdr)
8e821cad 977{
c65e6254 978 if (hdr->verf.committed == NFS_DATA_SYNC)
d45f60c6 979 return hdr->lseg == NULL;
c65e6254 980 return hdr->verf.committed != NFS_FILE_SYNC;
8e821cad
TM
981}
982
919e3bd9
TM
983static void nfs_async_write_init(struct nfs_pgio_header *hdr)
984{
985 nfs_io_completion_get(hdr->io_completion);
986}
987
061ae2ed 988static void nfs_write_completion(struct nfs_pgio_header *hdr)
8e821cad 989{
ea2cf228 990 struct nfs_commit_info cinfo;
6c75dc0d
FI
991 unsigned long bytes = 0;
992
993 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
994 goto out;
ea2cf228 995 nfs_init_cinfo_from_inode(&cinfo, hdr->inode);
6c75dc0d
FI
996 while (!list_empty(&hdr->pages)) {
997 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
6c75dc0d
FI
998
999 bytes += req->wb_bytes;
1000 nfs_list_remove_request(req);
1001 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags) &&
1002 (hdr->good_bytes < bytes)) {
d1182b33 1003 nfs_set_pageerror(req->wb_page);
6c75dc0d
FI
1004 nfs_context_set_write_error(req->wb_context, hdr->error);
1005 goto remove_req;
1006 }
c65e6254 1007 if (nfs_write_need_commit(hdr)) {
f79d06f5 1008 memcpy(&req->wb_verf, &hdr->verf.verifier, sizeof(req->wb_verf));
b57ff130 1009 nfs_mark_request_commit(req, hdr->lseg, &cinfo,
a7d42ddb 1010 hdr->pgio_mirror_idx);
6c75dc0d
FI
1011 goto next;
1012 }
1013remove_req:
1014 nfs_inode_remove_request(req);
1015next:
20633f04 1016 nfs_end_page_writeback(req);
3aff4ebb 1017 nfs_release_request(req);
6c75dc0d
FI
1018 }
1019out:
919e3bd9 1020 nfs_io_completion_put(hdr->io_completion);
6c75dc0d 1021 hdr->release(hdr);
8e821cad 1022}
1da177e4 1023
ce59515c 1024unsigned long
ea2cf228 1025nfs_reqs_to_commit(struct nfs_commit_info *cinfo)
fb8a1f11 1026{
5cb953d4 1027 return atomic_long_read(&cinfo->mds->ncommit);
d6d6dc7c
FI
1028}
1029
e824f99a 1030/* NFS_I(cinfo->inode)->commit_mutex held by caller */
1763da12 1031int
ea2cf228
FI
1032nfs_scan_commit_list(struct list_head *src, struct list_head *dst,
1033 struct nfs_commit_info *cinfo, int max)
d6d6dc7c 1034{
137da553 1035 struct nfs_page *req, *tmp;
d6d6dc7c
FI
1036 int ret = 0;
1037
137da553
TM
1038restart:
1039 list_for_each_entry_safe(req, tmp, src, wb_list) {
7ad84aa9 1040 kref_get(&req->wb_kref);
2ce209c4
TM
1041 if (!nfs_lock_request(req)) {
1042 int status;
137da553
TM
1043
1044 /* Prevent deadlock with nfs_lock_and_join_requests */
1045 if (!list_empty(dst)) {
1046 nfs_release_request(req);
1047 continue;
1048 }
1049 /* Ensure we make progress to prevent livelock */
2ce209c4
TM
1050 mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex);
1051 status = nfs_wait_on_request(req);
1052 nfs_release_request(req);
1053 mutex_lock(&NFS_I(cinfo->inode)->commit_mutex);
1054 if (status < 0)
1055 break;
137da553 1056 goto restart;
2ce209c4 1057 }
ea2cf228 1058 nfs_request_remove_commit_list(req, cinfo);
5d2a9d9d 1059 clear_bit(PG_COMMIT_TO_DS, &req->wb_flags);
8dd37758
TM
1060 nfs_list_add_request(req, dst);
1061 ret++;
1763da12 1062 if ((ret == max) && !cinfo->dreq)
8dd37758 1063 break;
e824f99a 1064 cond_resched();
d6d6dc7c
FI
1065 }
1066 return ret;
fb8a1f11 1067}
5d2a9d9d 1068EXPORT_SYMBOL_GPL(nfs_scan_commit_list);
fb8a1f11 1069
1da177e4
LT
1070/*
1071 * nfs_scan_commit - Scan an inode for commit requests
1072 * @inode: NFS inode to scan
ea2cf228
FI
1073 * @dst: mds destination list
1074 * @cinfo: mds and ds lists of reqs ready to commit
1da177e4
LT
1075 *
1076 * Moves requests from the inode's 'commit' request list.
1077 * The requests are *not* checked to ensure that they form a contiguous set.
1078 */
1763da12 1079int
ea2cf228
FI
1080nfs_scan_commit(struct inode *inode, struct list_head *dst,
1081 struct nfs_commit_info *cinfo)
1da177e4 1082{
d6d6dc7c 1083 int ret = 0;
fb8a1f11 1084
5cb953d4
TM
1085 if (!atomic_long_read(&cinfo->mds->ncommit))
1086 return 0;
e824f99a 1087 mutex_lock(&NFS_I(cinfo->inode)->commit_mutex);
5cb953d4 1088 if (atomic_long_read(&cinfo->mds->ncommit) > 0) {
8dd37758 1089 const int max = INT_MAX;
d6d6dc7c 1090
ea2cf228
FI
1091 ret = nfs_scan_commit_list(&cinfo->mds->list, dst,
1092 cinfo, max);
1093 ret += pnfs_scan_commit_lists(inode, cinfo, max - ret);
d6d6dc7c 1094 }
e824f99a 1095 mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex);
ff778d02 1096 return ret;
1da177e4 1097}
d6d6dc7c 1098
1da177e4 1099/*
e7d39069
TM
1100 * Search for an existing write request, and attempt to update
1101 * it to reflect a new dirty region on a given page.
1da177e4 1102 *
e7d39069
TM
1103 * If the attempt fails, then the existing request is flushed out
1104 * to disk.
1da177e4 1105 */
e7d39069
TM
1106static struct nfs_page *nfs_try_to_update_request(struct inode *inode,
1107 struct page *page,
1108 unsigned int offset,
1109 unsigned int bytes)
1da177e4 1110{
e7d39069
TM
1111 struct nfs_page *req;
1112 unsigned int rqend;
1113 unsigned int end;
1114 int error;
1115
1da177e4
LT
1116 end = offset + bytes;
1117
f6032f21
TM
1118 req = nfs_lock_and_join_requests(page);
1119 if (IS_ERR_OR_NULL(req))
1120 return req;
1da177e4 1121
f6032f21
TM
1122 rqend = req->wb_offset + req->wb_bytes;
1123 /*
1124 * Tell the caller to flush out the request if
1125 * the offsets are non-contiguous.
1126 * Note: nfs_flush_incompatible() will already
1127 * have flushed out requests having wrong owners.
1128 */
1129 if (offset > rqend || end < req->wb_offset)
1130 goto out_flushme;
1da177e4
LT
1131
1132 /* Okay, the request matches. Update the region */
1133 if (offset < req->wb_offset) {
1134 req->wb_offset = offset;
1135 req->wb_pgbase = offset;
1da177e4 1136 }
1da177e4
LT
1137 if (end > rqend)
1138 req->wb_bytes = end - req->wb_offset;
e7d39069
TM
1139 else
1140 req->wb_bytes = rqend - req->wb_offset;
e7d39069
TM
1141 return req;
1142out_flushme:
f6032f21
TM
1143 /*
1144 * Note: we mark the request dirty here because
1145 * nfs_lock_and_join_requests() cannot preserve
1146 * commit flags, so we have to replay the write.
1147 */
1148 nfs_mark_request_dirty(req);
1149 nfs_unlock_and_release_request(req);
e7d39069 1150 error = nfs_wb_page(inode, page);
f6032f21 1151 return (error < 0) ? ERR_PTR(error) : NULL;
e7d39069
TM
1152}
1153
1154/*
1155 * Try to update an existing write request, or create one if there is none.
1156 *
1157 * Note: Should always be called with the Page Lock held to prevent races
1158 * if we have to add a new request. Also assumes that the caller has
1159 * already called nfs_flush_incompatible() if necessary.
1160 */
1161static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx,
1162 struct page *page, unsigned int offset, unsigned int bytes)
1163{
d56b4ddf 1164 struct inode *inode = page_file_mapping(page)->host;
e7d39069 1165 struct nfs_page *req;
1da177e4 1166
e7d39069
TM
1167 req = nfs_try_to_update_request(inode, page, offset, bytes);
1168 if (req != NULL)
1169 goto out;
2bfc6e56 1170 req = nfs_create_request(ctx, page, NULL, offset, bytes);
e7d39069
TM
1171 if (IS_ERR(req))
1172 goto out;
d6d6dc7c 1173 nfs_inode_add_request(inode, req);
efc91ed0 1174out:
61e930a9 1175 return req;
1da177e4
LT
1176}
1177
e7d39069
TM
1178static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page,
1179 unsigned int offset, unsigned int count)
1180{
1181 struct nfs_page *req;
1182
1183 req = nfs_setup_write_request(ctx, page, offset, count);
1184 if (IS_ERR(req))
1185 return PTR_ERR(req);
1186 /* Update file length */
1187 nfs_grow_file(page, offset, count);
d72ddcba 1188 nfs_mark_uptodate(req);
a6305ddb 1189 nfs_mark_request_dirty(req);
1d1afcbc 1190 nfs_unlock_and_release_request(req);
e7d39069
TM
1191 return 0;
1192}
1193
1da177e4
LT
1194int nfs_flush_incompatible(struct file *file, struct page *page)
1195{
cd3758e3 1196 struct nfs_open_context *ctx = nfs_file_open_context(file);
2a369153 1197 struct nfs_lock_context *l_ctx;
bd61e0a9 1198 struct file_lock_context *flctx = file_inode(file)->i_flctx;
1da177e4 1199 struct nfs_page *req;
1a54533e 1200 int do_flush, status;
1da177e4
LT
1201 /*
1202 * Look for a request corresponding to this page. If there
1203 * is one, and it belongs to another file, we flush it out
1204 * before we try to copy anything into the page. Do this
1205 * due to the lack of an ACCESS-type call in NFSv2.
1206 * Also do the same if we find a request from an existing
1207 * dropped page.
1208 */
1a54533e 1209 do {
84d3a9a9 1210 req = nfs_page_find_head_request(page);
1a54533e
TM
1211 if (req == NULL)
1212 return 0;
2a369153 1213 l_ctx = req->wb_lock_context;
138a2935
TM
1214 do_flush = req->wb_page != page ||
1215 !nfs_match_open_context(req->wb_context, ctx);
bd61e0a9
JL
1216 if (l_ctx && flctx &&
1217 !(list_empty_careful(&flctx->flc_posix) &&
1218 list_empty_careful(&flctx->flc_flock))) {
d51fdb87 1219 do_flush |= l_ctx->lockowner != current->files;
5263e31e 1220 }
1da177e4 1221 nfs_release_request(req);
1a54533e
TM
1222 if (!do_flush)
1223 return 0;
d56b4ddf 1224 status = nfs_wb_page(page_file_mapping(page)->host, page);
1a54533e
TM
1225 } while (status == 0);
1226 return status;
1da177e4
LT
1227}
1228
dc24826b
AA
1229/*
1230 * Avoid buffered writes when a open context credential's key would
1231 * expire soon.
1232 *
1233 * Returns -EACCES if the key will expire within RPC_KEY_EXPIRE_FAIL.
1234 *
1235 * Return 0 and set a credential flag which triggers the inode to flush
1236 * and performs NFS_FILE_SYNC writes if the key will expired within
1237 * RPC_KEY_EXPIRE_TIMEO.
1238 */
1239int
1240nfs_key_timeout_notify(struct file *filp, struct inode *inode)
1241{
1242 struct nfs_open_context *ctx = nfs_file_open_context(filp);
1243 struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth;
1244
1245 return rpcauth_key_timeout_notify(auth, ctx->cred);
1246}
1247
1248/*
1249 * Test if the open context credential key is marked to expire soon.
1250 */
ce52914e 1251bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx, struct inode *inode)
dc24826b 1252{
ce52914e
SM
1253 struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth;
1254
1255 return rpcauth_cred_key_to_expire(auth, ctx->cred);
dc24826b
AA
1256}
1257
5d47a356
TM
1258/*
1259 * If the page cache is marked as unsafe or invalid, then we can't rely on
1260 * the PageUptodate() flag. In this case, we will need to turn off
1261 * write optimisations that depend on the page contents being correct.
1262 */
8d197a56 1263static bool nfs_write_pageuptodate(struct page *page, struct inode *inode)
5d47a356 1264{
d529ef83
JL
1265 struct nfs_inode *nfsi = NFS_I(inode);
1266
8d197a56
TM
1267 if (nfs_have_delegated_attributes(inode))
1268 goto out;
18dd78c4 1269 if (nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE)
d529ef83 1270 return false;
4db72b40 1271 smp_rmb();
d529ef83 1272 if (test_bit(NFS_INO_INVALIDATING, &nfsi->flags))
8d197a56
TM
1273 return false;
1274out:
18dd78c4
SM
1275 if (nfsi->cache_validity & NFS_INO_INVALID_DATA)
1276 return false;
8d197a56 1277 return PageUptodate(page) != 0;
5d47a356
TM
1278}
1279
5263e31e
JL
1280static bool
1281is_whole_file_wrlock(struct file_lock *fl)
1282{
1283 return fl->fl_start == 0 && fl->fl_end == OFFSET_MAX &&
1284 fl->fl_type == F_WRLCK;
1285}
1286
c7559663
SM
1287/* If we know the page is up to date, and we're not using byte range locks (or
1288 * if we have the whole file locked for writing), it may be more efficient to
1289 * extend the write to cover the entire page in order to avoid fragmentation
1290 * inefficiencies.
1291 *
263b4509
SM
1292 * If the file is opened for synchronous writes then we can just skip the rest
1293 * of the checks.
c7559663
SM
1294 */
1295static int nfs_can_extend_write(struct file *file, struct page *page, struct inode *inode)
1296{
5263e31e
JL
1297 int ret;
1298 struct file_lock_context *flctx = inode->i_flctx;
1299 struct file_lock *fl;
1300
c7559663
SM
1301 if (file->f_flags & O_DSYNC)
1302 return 0;
263b4509
SM
1303 if (!nfs_write_pageuptodate(page, inode))
1304 return 0;
c7559663
SM
1305 if (NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE))
1306 return 1;
bd61e0a9
JL
1307 if (!flctx || (list_empty_careful(&flctx->flc_flock) &&
1308 list_empty_careful(&flctx->flc_posix)))
8fa4592a 1309 return 1;
5263e31e
JL
1310
1311 /* Check to see if there are whole file write locks */
5263e31e 1312 ret = 0;
6109c850 1313 spin_lock(&flctx->flc_lock);
bd61e0a9
JL
1314 if (!list_empty(&flctx->flc_posix)) {
1315 fl = list_first_entry(&flctx->flc_posix, struct file_lock,
1316 fl_list);
1317 if (is_whole_file_wrlock(fl))
1318 ret = 1;
1319 } else if (!list_empty(&flctx->flc_flock)) {
5263e31e
JL
1320 fl = list_first_entry(&flctx->flc_flock, struct file_lock,
1321 fl_list);
1322 if (fl->fl_type == F_WRLCK)
1323 ret = 1;
1324 }
6109c850 1325 spin_unlock(&flctx->flc_lock);
5263e31e 1326 return ret;
c7559663
SM
1327}
1328
1da177e4
LT
1329/*
1330 * Update and possibly write a cached page of an NFS file.
1331 *
1332 * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad
1333 * things with a page scheduled for an RPC call (e.g. invalidate it).
1334 */
1335int nfs_updatepage(struct file *file, struct page *page,
1336 unsigned int offset, unsigned int count)
1337{
cd3758e3 1338 struct nfs_open_context *ctx = nfs_file_open_context(file);
d56b4ddf 1339 struct inode *inode = page_file_mapping(page)->host;
1da177e4
LT
1340 int status = 0;
1341
91d5b470
CL
1342 nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE);
1343
6de1472f
AV
1344 dprintk("NFS: nfs_updatepage(%pD2 %d@%lld)\n",
1345 file, count, (long long)(page_file_offset(page) + offset));
1da177e4 1346
149a4fdd
BC
1347 if (!count)
1348 goto out;
1349
c7559663 1350 if (nfs_can_extend_write(file, page, inode)) {
49a70f27 1351 count = max(count + offset, nfs_page_length(page));
1da177e4 1352 offset = 0;
1da177e4
LT
1353 }
1354
e21195a7 1355 status = nfs_writepage_setup(ctx, page, offset, count);
03fa9e84
TM
1356 if (status < 0)
1357 nfs_set_pageerror(page);
59b7c05f
TM
1358 else
1359 __set_page_dirty_nobuffers(page);
149a4fdd 1360out:
48186c7d 1361 dprintk("NFS: nfs_updatepage returns %d (isize %lld)\n",
1da177e4 1362 status, (long long)i_size_read(inode));
1da177e4
LT
1363 return status;
1364}
1365
3ff7576d 1366static int flush_task_priority(int how)
1da177e4
LT
1367{
1368 switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) {
1369 case FLUSH_HIGHPRI:
1370 return RPC_PRIORITY_HIGH;
1371 case FLUSH_LOWPRI:
1372 return RPC_PRIORITY_LOW;
1373 }
1374 return RPC_PRIORITY_NORMAL;
1375}
1376
d45f60c6
WAA
1377static void nfs_initiate_write(struct nfs_pgio_header *hdr,
1378 struct rpc_message *msg,
abde71f4 1379 const struct nfs_rpc_ops *rpc_ops,
1ed26f33 1380 struct rpc_task_setup *task_setup_data, int how)
1da177e4 1381{
3ff7576d 1382 int priority = flush_task_priority(how);
d138d5d1 1383
1ed26f33 1384 task_setup_data->priority = priority;
abde71f4 1385 rpc_ops->write_setup(hdr, msg);
d138d5d1 1386
abde71f4 1387 nfs4_state_protect_write(NFS_SERVER(hdr->inode)->nfs_client,
d45f60c6 1388 &task_setup_data->rpc_client, msg, hdr);
275acaaf
TM
1389}
1390
6d884e8f
F
1391/* If a nfs_flush_* function fails, it should remove reqs from @head and
1392 * call this on each, which will prepare them to be retried on next
1393 * writeback using standard nfs.
1394 */
1395static void nfs_redirty_request(struct nfs_page *req)
1396{
1397 nfs_mark_request_dirty(req);
c7070113 1398 set_bit(NFS_CONTEXT_RESEND_WRITES, &req->wb_context->flags);
20633f04 1399 nfs_end_page_writeback(req);
3aff4ebb 1400 nfs_release_request(req);
6d884e8f
F
1401}
1402
061ae2ed 1403static void nfs_async_write_error(struct list_head *head)
6c75dc0d
FI
1404{
1405 struct nfs_page *req;
1406
1407 while (!list_empty(head)) {
1408 req = nfs_list_entry(head->next);
1409 nfs_list_remove_request(req);
1410 nfs_redirty_request(req);
1411 }
1412}
1413
dc602dd7
TM
1414static void nfs_async_write_reschedule_io(struct nfs_pgio_header *hdr)
1415{
1416 nfs_async_write_error(&hdr->pages);
1417}
1418
061ae2ed 1419static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops = {
919e3bd9 1420 .init_hdr = nfs_async_write_init,
061ae2ed
FI
1421 .error_cleanup = nfs_async_write_error,
1422 .completion = nfs_write_completion,
dc602dd7 1423 .reschedule_io = nfs_async_write_reschedule_io,
061ae2ed
FI
1424};
1425
57208fa7 1426void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio,
a20c93e3 1427 struct inode *inode, int ioflags, bool force_mds,
061ae2ed 1428 const struct nfs_pgio_completion_ops *compl_ops)
1da177e4 1429{
a20c93e3 1430 struct nfs_server *server = NFS_SERVER(inode);
41d8d5b7 1431 const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops;
a20c93e3
CH
1432
1433#ifdef CONFIG_NFS_V4_1
1434 if (server->pnfs_curr_ld && !force_mds)
1435 pg_ops = server->pnfs_curr_ld->pg_write_ops;
1436#endif
4a0de55c 1437 nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_write_ops,
3bde7afd 1438 server->wsize, ioflags);
1751c363 1439}
ddda8e0a 1440EXPORT_SYMBOL_GPL(nfs_pageio_init_write);
1da177e4 1441
dce81290
TM
1442void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio)
1443{
a7d42ddb
WAA
1444 struct nfs_pgio_mirror *mirror;
1445
6f29b9bb
KM
1446 if (pgio->pg_ops && pgio->pg_ops->pg_cleanup)
1447 pgio->pg_ops->pg_cleanup(pgio);
1448
41d8d5b7 1449 pgio->pg_ops = &nfs_pgio_rw_ops;
a7d42ddb
WAA
1450
1451 nfs_pageio_stop_mirroring(pgio);
1452
1453 mirror = &pgio->pg_mirrors[0];
1454 mirror->pg_bsize = NFS_SERVER(pgio->pg_inode)->wsize;
dce81290 1455}
1f945357 1456EXPORT_SYMBOL_GPL(nfs_pageio_reset_write_mds);
dce81290 1457
1da177e4 1458
0b7c0153
FI
1459void nfs_commit_prepare(struct rpc_task *task, void *calldata)
1460{
1461 struct nfs_commit_data *data = calldata;
1462
1463 NFS_PROTO(data->inode)->commit_rpc_prepare(task, data);
1464}
1465
1f2edbe3
TM
1466/*
1467 * Special version of should_remove_suid() that ignores capabilities.
1468 */
1469static int nfs_should_remove_suid(const struct inode *inode)
1470{
1471 umode_t mode = inode->i_mode;
1472 int kill = 0;
1473
1474 /* suid always must be killed */
1475 if (unlikely(mode & S_ISUID))
1476 kill = ATTR_KILL_SUID;
788e7a89 1477
1f2edbe3
TM
1478 /*
1479 * sgid without any exec bits is just a mandatory locking mark; leave
1480 * it alone. If some exec bits are set, it's a real sgid; kill it.
1481 */
1482 if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
1483 kill |= ATTR_KILL_SGID;
1484
1485 if (unlikely(kill && S_ISREG(mode)))
1486 return kill;
1487
1488 return 0;
1489}
788e7a89 1490
a08a8cd3
TM
1491static void nfs_writeback_check_extend(struct nfs_pgio_header *hdr,
1492 struct nfs_fattr *fattr)
1493{
1494 struct nfs_pgio_args *argp = &hdr->args;
1495 struct nfs_pgio_res *resp = &hdr->res;
2b83d3de 1496 u64 size = argp->offset + resp->count;
a08a8cd3
TM
1497
1498 if (!(fattr->valid & NFS_ATTR_FATTR_SIZE))
2b83d3de
TM
1499 fattr->size = size;
1500 if (nfs_size_to_loff_t(fattr->size) < i_size_read(hdr->inode)) {
1501 fattr->valid &= ~NFS_ATTR_FATTR_SIZE;
a08a8cd3 1502 return;
2b83d3de
TM
1503 }
1504 if (size != fattr->size)
a08a8cd3
TM
1505 return;
1506 /* Set attribute barrier */
1507 nfs_fattr_set_barrier(fattr);
2b83d3de
TM
1508 /* ...and update size */
1509 fattr->valid |= NFS_ATTR_FATTR_SIZE;
a08a8cd3
TM
1510}
1511
1512void nfs_writeback_update_inode(struct nfs_pgio_header *hdr)
1513{
2b83d3de 1514 struct nfs_fattr *fattr = &hdr->fattr;
a08a8cd3
TM
1515 struct inode *inode = hdr->inode;
1516
a08a8cd3
TM
1517 spin_lock(&inode->i_lock);
1518 nfs_writeback_check_extend(hdr, fattr);
1519 nfs_post_op_update_inode_force_wcc_locked(inode, fattr);
1520 spin_unlock(&inode->i_lock);
1521}
1522EXPORT_SYMBOL_GPL(nfs_writeback_update_inode);
1523
1da177e4
LT
1524/*
1525 * This function is called when the WRITE call is complete.
1526 */
d45f60c6
WAA
1527static int nfs_writeback_done(struct rpc_task *task,
1528 struct nfs_pgio_header *hdr,
0eecb214 1529 struct inode *inode)
1da177e4 1530{
788e7a89 1531 int status;
1da177e4 1532
f551e44f
CL
1533 /*
1534 * ->write_done will attempt to use post-op attributes to detect
1535 * conflicting writes by other clients. A strict interpretation
1536 * of close-to-open would allow us to continue caching even if
1537 * another writer had changed the file, but some applications
1538 * depend on tighter cache coherency when writing.
1539 */
d45f60c6 1540 status = NFS_PROTO(inode)->write_done(task, hdr);
788e7a89 1541 if (status != 0)
0eecb214 1542 return status;
d45f60c6 1543 nfs_add_stats(inode, NFSIOS_SERVERWRITTENBYTES, hdr->res.count);
91d5b470 1544
d45f60c6
WAA
1545 if (hdr->res.verf->committed < hdr->args.stable &&
1546 task->tk_status >= 0) {
1da177e4
LT
1547 /* We tried a write call, but the server did not
1548 * commit data to stable storage even though we
1549 * requested it.
1550 * Note: There is a known bug in Tru64 < 5.0 in which
1551 * the server reports NFS_DATA_SYNC, but performs
1552 * NFS_FILE_SYNC. We therefore implement this checking
1553 * as a dprintk() in order to avoid filling syslog.
1554 */
1555 static unsigned long complain;
1556
a69aef14 1557 /* Note this will print the MDS for a DS write */
1da177e4 1558 if (time_before(complain, jiffies)) {
48186c7d 1559 dprintk("NFS: faulty NFS server %s:"
1da177e4 1560 " (committed = %d) != (stable = %d)\n",
cd841605 1561 NFS_SERVER(inode)->nfs_client->cl_hostname,
d45f60c6 1562 hdr->res.verf->committed, hdr->args.stable);
1da177e4
LT
1563 complain = jiffies + 300 * HZ;
1564 }
1565 }
1f2edbe3
TM
1566
1567 /* Deal with the suid/sgid bit corner case */
1568 if (nfs_should_remove_suid(inode))
1569 nfs_mark_for_revalidate(inode);
0eecb214
AS
1570 return 0;
1571}
1572
1573/*
1574 * This function is called when the WRITE call is complete.
1575 */
d45f60c6
WAA
1576static void nfs_writeback_result(struct rpc_task *task,
1577 struct nfs_pgio_header *hdr)
0eecb214 1578{
d45f60c6
WAA
1579 struct nfs_pgio_args *argp = &hdr->args;
1580 struct nfs_pgio_res *resp = &hdr->res;
1f2edbe3
TM
1581
1582 if (resp->count < argp->count) {
1da177e4
LT
1583 static unsigned long complain;
1584
6c75dc0d 1585 /* This a short write! */
d45f60c6 1586 nfs_inc_stats(hdr->inode, NFSIOS_SHORTWRITE);
91d5b470 1587
1da177e4 1588 /* Has the server at least made some progress? */
6c75dc0d
FI
1589 if (resp->count == 0) {
1590 if (time_before(complain, jiffies)) {
1591 printk(KERN_WARNING
1592 "NFS: Server wrote zero bytes, expected %u.\n",
1593 argp->count);
1594 complain = jiffies + 300 * HZ;
1da177e4 1595 }
d45f60c6 1596 nfs_set_pgio_error(hdr, -EIO, argp->offset);
6c75dc0d 1597 task->tk_status = -EIO;
13602896 1598 return;
1da177e4 1599 }
f8417b48
KM
1600
1601 /* For non rpc-based layout drivers, retry-through-MDS */
1602 if (!task->tk_ops) {
1603 hdr->pnfs_error = -EAGAIN;
1604 return;
1605 }
1606
6c75dc0d
FI
1607 /* Was this an NFSv2 write or an NFSv3 stable write? */
1608 if (resp->verf->committed != NFS_UNSTABLE) {
1609 /* Resend from where the server left off */
d45f60c6 1610 hdr->mds_offset += resp->count;
6c75dc0d
FI
1611 argp->offset += resp->count;
1612 argp->pgbase += resp->count;
1613 argp->count -= resp->count;
1614 } else {
1615 /* Resend as a stable write in order to avoid
1616 * headaches in the case of a server crash.
1617 */
1618 argp->stable = NFS_FILE_SYNC;
1da177e4 1619 }
6c75dc0d 1620 rpc_restart_call_prepare(task);
1da177e4 1621 }
1da177e4
LT
1622}
1623
af7cf057 1624static int wait_on_commit(struct nfs_mds_commit_info *cinfo)
71d0a611 1625{
af7cf057
TM
1626 return wait_on_atomic_t(&cinfo->rpcs_out,
1627 nfs_wait_atomic_killable, TASK_KILLABLE);
1628}
b8413f98 1629
af7cf057
TM
1630static void nfs_commit_begin(struct nfs_mds_commit_info *cinfo)
1631{
1632 atomic_inc(&cinfo->rpcs_out);
71d0a611
TM
1633}
1634
af7cf057 1635static void nfs_commit_end(struct nfs_mds_commit_info *cinfo)
71d0a611 1636{
af7cf057
TM
1637 if (atomic_dec_and_test(&cinfo->rpcs_out))
1638 wake_up_atomic_t(&cinfo->rpcs_out);
71d0a611
TM
1639}
1640
0b7c0153 1641void nfs_commitdata_release(struct nfs_commit_data *data)
1da177e4 1642{
0b7c0153
FI
1643 put_nfs_open_context(data->context);
1644 nfs_commit_free(data);
1da177e4 1645}
e0c2b380 1646EXPORT_SYMBOL_GPL(nfs_commitdata_release);
1da177e4 1647
0b7c0153 1648int nfs_initiate_commit(struct rpc_clnt *clnt, struct nfs_commit_data *data,
c36aae9a 1649 const struct nfs_rpc_ops *nfs_ops,
9ace33cd 1650 const struct rpc_call_ops *call_ops,
9f0ec176 1651 int how, int flags)
1da177e4 1652{
07737691 1653 struct rpc_task *task;
9ace33cd 1654 int priority = flush_task_priority(how);
bdc7f021
TM
1655 struct rpc_message msg = {
1656 .rpc_argp = &data->args,
1657 .rpc_resp = &data->res,
9ace33cd 1658 .rpc_cred = data->cred,
bdc7f021 1659 };
84115e1c 1660 struct rpc_task_setup task_setup_data = {
07737691 1661 .task = &data->task,
9ace33cd 1662 .rpc_client = clnt,
bdc7f021 1663 .rpc_message = &msg,
9ace33cd 1664 .callback_ops = call_ops,
84115e1c 1665 .callback_data = data,
101070ca 1666 .workqueue = nfsiod_workqueue,
9f0ec176 1667 .flags = RPC_TASK_ASYNC | flags,
3ff7576d 1668 .priority = priority,
84115e1c 1669 };
9ace33cd 1670 /* Set up the initial task struct. */
c36aae9a 1671 nfs_ops->commit_setup(data, &msg);
9ace33cd 1672
b4839ebe 1673 dprintk("NFS: initiated commit call\n");
9ace33cd 1674
8c21c62c
WAA
1675 nfs4_state_protect(NFS_SERVER(data->inode)->nfs_client,
1676 NFS_SP4_MACH_CRED_COMMIT, &task_setup_data.rpc_client, &msg);
1677
9ace33cd
FI
1678 task = rpc_run_task(&task_setup_data);
1679 if (IS_ERR(task))
1680 return PTR_ERR(task);
1681 if (how & FLUSH_SYNC)
1682 rpc_wait_for_completion_task(task);
1683 rpc_put_task(task);
1684 return 0;
1685}
e0c2b380 1686EXPORT_SYMBOL_GPL(nfs_initiate_commit);
9ace33cd 1687
378520b8
PT
1688static loff_t nfs_get_lwb(struct list_head *head)
1689{
1690 loff_t lwb = 0;
1691 struct nfs_page *req;
1692
1693 list_for_each_entry(req, head, wb_list)
1694 if (lwb < (req_offset(req) + req->wb_bytes))
1695 lwb = req_offset(req) + req->wb_bytes;
1696
1697 return lwb;
1698}
1699
9ace33cd
FI
1700/*
1701 * Set up the argument/result storage required for the RPC call.
1702 */
0b7c0153 1703void nfs_init_commit(struct nfs_commit_data *data,
f453a54a
FI
1704 struct list_head *head,
1705 struct pnfs_layout_segment *lseg,
1706 struct nfs_commit_info *cinfo)
9ace33cd
FI
1707{
1708 struct nfs_page *first = nfs_list_entry(head->next);
2b0143b5 1709 struct inode *inode = d_inode(first->wb_context->dentry);
1da177e4
LT
1710
1711 /* Set up the RPC argument and reply structs
1712 * NB: take care not to mess about with data->commit et al. */
1713
1714 list_splice_init(head, &data->pages);
1da177e4 1715
1da177e4 1716 data->inode = inode;
9ace33cd 1717 data->cred = first->wb_context->cred;
988b6dce 1718 data->lseg = lseg; /* reference transferred */
378520b8
PT
1719 /* only set lwb for pnfs commit */
1720 if (lseg)
1721 data->lwb = nfs_get_lwb(&data->pages);
9ace33cd 1722 data->mds_ops = &nfs_commit_ops;
f453a54a 1723 data->completion_ops = cinfo->completion_ops;
b359f9d0 1724 data->dreq = cinfo->dreq;
1da177e4
LT
1725
1726 data->args.fh = NFS_FH(data->inode);
3da28eb1
TM
1727 /* Note: we always request a commit of the entire inode */
1728 data->args.offset = 0;
1729 data->args.count = 0;
0b7c0153 1730 data->context = get_nfs_open_context(first->wb_context);
1da177e4
LT
1731 data->res.fattr = &data->fattr;
1732 data->res.verf = &data->verf;
0e574af1 1733 nfs_fattr_init(&data->fattr);
1da177e4 1734}
e0c2b380 1735EXPORT_SYMBOL_GPL(nfs_init_commit);
1da177e4 1736
e0c2b380 1737void nfs_retry_commit(struct list_head *page_list,
ea2cf228 1738 struct pnfs_layout_segment *lseg,
b57ff130
WAA
1739 struct nfs_commit_info *cinfo,
1740 u32 ds_commit_idx)
64bfeb49
FI
1741{
1742 struct nfs_page *req;
1743
1744 while (!list_empty(page_list)) {
1745 req = nfs_list_entry(page_list->next);
1746 nfs_list_remove_request(req);
b57ff130 1747 nfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx);
487b9b8a
TH
1748 if (!cinfo->dreq)
1749 nfs_clear_page_commit(req->wb_page);
1d1afcbc 1750 nfs_unlock_and_release_request(req);
64bfeb49
FI
1751 }
1752}
e0c2b380 1753EXPORT_SYMBOL_GPL(nfs_retry_commit);
64bfeb49 1754
b20135d0
TM
1755static void
1756nfs_commit_resched_write(struct nfs_commit_info *cinfo,
1757 struct nfs_page *req)
1758{
1759 __set_page_dirty_nobuffers(req->wb_page);
1760}
1761
1da177e4
LT
1762/*
1763 * Commit dirty pages
1764 */
1765static int
ea2cf228
FI
1766nfs_commit_list(struct inode *inode, struct list_head *head, int how,
1767 struct nfs_commit_info *cinfo)
1da177e4 1768{
0b7c0153 1769 struct nfs_commit_data *data;
1da177e4 1770
ade8febd
WAA
1771 /* another commit raced with us */
1772 if (list_empty(head))
1773 return 0;
1774
518662e0 1775 data = nfs_commitdata_alloc(true);
1da177e4
LT
1776
1777 /* Set up the argument struct */
f453a54a
FI
1778 nfs_init_commit(data, head, NULL, cinfo);
1779 atomic_inc(&cinfo->mds->rpcs_out);
c36aae9a
PT
1780 return nfs_initiate_commit(NFS_CLIENT(inode), data, NFS_PROTO(inode),
1781 data->mds_ops, how, 0);
67911c8f 1782}
67911c8f 1783
1da177e4
LT
1784/*
1785 * COMMIT call returned
1786 */
788e7a89 1787static void nfs_commit_done(struct rpc_task *task, void *calldata)
1da177e4 1788{
0b7c0153 1789 struct nfs_commit_data *data = calldata;
1da177e4 1790
a3f565b1 1791 dprintk("NFS: %5u nfs_commit_done (status %d)\n",
1da177e4
LT
1792 task->tk_pid, task->tk_status);
1793
788e7a89 1794 /* Call the NFS version-specific code */
c0d0e96b 1795 NFS_PROTO(data->inode)->commit_done(task, data);
c9d8f89d
TM
1796}
1797
f453a54a 1798static void nfs_commit_release_pages(struct nfs_commit_data *data)
c9d8f89d 1799{
5917ce84 1800 struct nfs_page *req;
c9d8f89d 1801 int status = data->task.tk_status;
f453a54a 1802 struct nfs_commit_info cinfo;
353db796 1803 struct nfs_server *nfss;
788e7a89 1804
1da177e4
LT
1805 while (!list_empty(&data->pages)) {
1806 req = nfs_list_entry(data->pages.next);
1807 nfs_list_remove_request(req);
67911c8f
AS
1808 if (req->wb_page)
1809 nfs_clear_page_commit(req->wb_page);
1da177e4 1810
1e8968c5 1811 dprintk("NFS: commit (%s/%llu %d@%lld)",
3d4ff43d 1812 req->wb_context->dentry->d_sb->s_id,
2b0143b5 1813 (unsigned long long)NFS_FILEID(d_inode(req->wb_context->dentry)),
1da177e4
LT
1814 req->wb_bytes,
1815 (long long)req_offset(req));
c9d8f89d
TM
1816 if (status < 0) {
1817 nfs_context_set_write_error(req->wb_context, status);
38a33101
KM
1818 if (req->wb_page)
1819 nfs_inode_remove_request(req);
ddeaa637 1820 dprintk_cont(", error = %d\n", status);
1da177e4
LT
1821 goto next;
1822 }
1823
1824 /* Okay, COMMIT succeeded, apparently. Check the verifier
1825 * returned by the server against all stored verfs. */
8fc3c386 1826 if (!nfs_write_verifier_cmp(&req->wb_verf, &data->verf.verifier)) {
1da177e4 1827 /* We have a match */
38a33101
KM
1828 if (req->wb_page)
1829 nfs_inode_remove_request(req);
ddeaa637 1830 dprintk_cont(" OK\n");
1da177e4
LT
1831 goto next;
1832 }
1833 /* We have a mismatch. Write the page again */
ddeaa637 1834 dprintk_cont(" mismatch\n");
6d884e8f 1835 nfs_mark_request_dirty(req);
05990d1b 1836 set_bit(NFS_CONTEXT_RESEND_WRITES, &req->wb_context->flags);
1da177e4 1837 next:
1d1afcbc 1838 nfs_unlock_and_release_request(req);
1da177e4 1839 }
353db796
N
1840 nfss = NFS_SERVER(data->inode);
1841 if (atomic_long_read(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH)
0db10944 1842 clear_bdi_congested(inode_to_bdi(data->inode), BLK_RW_ASYNC);
353db796 1843
f453a54a 1844 nfs_init_cinfo(&cinfo, data->inode, data->dreq);
af7cf057 1845 nfs_commit_end(cinfo.mds);
5917ce84
FI
1846}
1847
1848static void nfs_commit_release(void *calldata)
1849{
0b7c0153 1850 struct nfs_commit_data *data = calldata;
5917ce84 1851
f453a54a 1852 data->completion_ops->completion(data);
c9d8f89d 1853 nfs_commitdata_release(calldata);
1da177e4 1854}
788e7a89
TM
1855
1856static const struct rpc_call_ops nfs_commit_ops = {
0b7c0153 1857 .rpc_call_prepare = nfs_commit_prepare,
788e7a89
TM
1858 .rpc_call_done = nfs_commit_done,
1859 .rpc_release = nfs_commit_release,
1860};
1da177e4 1861
f453a54a
FI
1862static const struct nfs_commit_completion_ops nfs_commit_completion_ops = {
1863 .completion = nfs_commit_release_pages,
b20135d0 1864 .resched_write = nfs_commit_resched_write,
f453a54a
FI
1865};
1866
1763da12
FI
1867int nfs_generic_commit_list(struct inode *inode, struct list_head *head,
1868 int how, struct nfs_commit_info *cinfo)
84c53ab5
FI
1869{
1870 int status;
1871
ea2cf228 1872 status = pnfs_commit_list(inode, head, how, cinfo);
84c53ab5 1873 if (status == PNFS_NOT_ATTEMPTED)
ea2cf228 1874 status = nfs_commit_list(inode, head, how, cinfo);
84c53ab5
FI
1875 return status;
1876}
1877
b608b283 1878int nfs_commit_inode(struct inode *inode, int how)
1da177e4 1879{
1da177e4 1880 LIST_HEAD(head);
ea2cf228 1881 struct nfs_commit_info cinfo;
71d0a611 1882 int may_wait = how & FLUSH_SYNC;
af7cf057 1883 int error = 0;
b8413f98 1884 int res;
1da177e4 1885
ea2cf228 1886 nfs_init_cinfo_from_inode(&cinfo, inode);
af7cf057 1887 nfs_commit_begin(cinfo.mds);
ea2cf228 1888 res = nfs_scan_commit(inode, &head, &cinfo);
af7cf057 1889 if (res)
ea2cf228 1890 error = nfs_generic_commit_list(inode, &head, how, &cinfo);
af7cf057
TM
1891 nfs_commit_end(cinfo.mds);
1892 if (error < 0)
1893 goto out_error;
1894 if (!may_wait)
1895 goto out_mark_dirty;
1896 error = wait_on_commit(cinfo.mds);
1897 if (error < 0)
1898 return error;
c5efa5fc 1899 return res;
af7cf057
TM
1900out_error:
1901 res = error;
c5efa5fc
TM
1902 /* Note: If we exit without ensuring that the commit is complete,
1903 * we must mark the inode as dirty. Otherwise, future calls to
1904 * sync_inode() with the WB_SYNC_ALL flag set will fail to ensure
1905 * that the data is on the disk.
1906 */
1907out_mark_dirty:
1908 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1da177e4
LT
1909 return res;
1910}
b20135d0 1911EXPORT_SYMBOL_GPL(nfs_commit_inode);
8fc795f7 1912
ae09c31f 1913int nfs_write_inode(struct inode *inode, struct writeback_control *wbc)
8fc795f7 1914{
420e3646
TM
1915 struct nfs_inode *nfsi = NFS_I(inode);
1916 int flags = FLUSH_SYNC;
1917 int ret = 0;
8fc795f7 1918
3236c3e1 1919 /* no commits means nothing needs to be done */
5cb953d4 1920 if (!atomic_long_read(&nfsi->commit_info.ncommit))
3236c3e1
JL
1921 return ret;
1922
a00dd6c0
JL
1923 if (wbc->sync_mode == WB_SYNC_NONE) {
1924 /* Don't commit yet if this is a non-blocking flush and there
1925 * are a lot of outstanding writes for this mapping.
1926 */
1a4edf0f 1927 if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK))
a00dd6c0 1928 goto out_mark_dirty;
420e3646 1929
a00dd6c0 1930 /* don't wait for the COMMIT response */
420e3646 1931 flags = 0;
a00dd6c0
JL
1932 }
1933
420e3646
TM
1934 ret = nfs_commit_inode(inode, flags);
1935 if (ret >= 0) {
1936 if (wbc->sync_mode == WB_SYNC_NONE) {
1937 if (ret < wbc->nr_to_write)
1938 wbc->nr_to_write -= ret;
1939 else
1940 wbc->nr_to_write = 0;
1941 }
8fc795f7 1942 return 0;
420e3646
TM
1943 }
1944out_mark_dirty:
8fc795f7
TM
1945 __mark_inode_dirty(inode, I_DIRTY_DATASYNC);
1946 return ret;
1947}
89d77c8f 1948EXPORT_SYMBOL_GPL(nfs_write_inode);
a8d8f02c 1949
837bb1d7
TM
1950/*
1951 * Wrapper for filemap_write_and_wait_range()
1952 *
1953 * Needed for pNFS in order to ensure data becomes visible to the
1954 * client.
1955 */
1956int nfs_filemap_write_and_wait_range(struct address_space *mapping,
1957 loff_t lstart, loff_t lend)
1958{
1959 int ret;
1960
1961 ret = filemap_write_and_wait_range(mapping, lstart, lend);
1962 if (ret == 0)
1963 ret = pnfs_sync_inode(mapping->host, true);
1964 return ret;
1965}
1966EXPORT_SYMBOL_GPL(nfs_filemap_write_and_wait_range);
1967
acdc53b2
TM
1968/*
1969 * flush the inode to disk.
1970 */
1971int nfs_wb_all(struct inode *inode)
34901f70 1972{
f4ce1299
TM
1973 int ret;
1974
1975 trace_nfs_writeback_inode_enter(inode);
1976
5bb89b47 1977 ret = filemap_write_and_wait(inode->i_mapping);
6b196875
CL
1978 if (ret)
1979 goto out;
1980 ret = nfs_commit_inode(inode, FLUSH_SYNC);
1981 if (ret < 0)
1982 goto out;
1983 pnfs_sync_inode(inode, true);
1984 ret = 0;
34901f70 1985
6b196875 1986out:
f4ce1299
TM
1987 trace_nfs_writeback_inode_exit(inode, ret);
1988 return ret;
1c75950b 1989}
ddda8e0a 1990EXPORT_SYMBOL_GPL(nfs_wb_all);
1c75950b 1991
1b3b4a1a
TM
1992int nfs_wb_page_cancel(struct inode *inode, struct page *page)
1993{
1994 struct nfs_page *req;
1b3b4a1a
TM
1995 int ret = 0;
1996
3e217045
WAA
1997 wait_on_page_writeback(page);
1998
1999 /* blocking call to cancel all requests and join to a single (head)
2000 * request */
6d17d653 2001 req = nfs_lock_and_join_requests(page);
3e217045
WAA
2002
2003 if (IS_ERR(req)) {
2004 ret = PTR_ERR(req);
2005 } else if (req) {
2006 /* all requests from this page have been cancelled by
2007 * nfs_lock_and_join_requests, so just remove the head
2008 * request from the inode / page_private pointer and
2009 * release it */
2010 nfs_inode_remove_request(req);
3e217045 2011 nfs_unlock_and_release_request(req);
1b3b4a1a 2012 }
3e217045 2013
1b3b4a1a
TM
2014 return ret;
2015}
2016
7f2f12d9
TM
2017/*
2018 * Write back all requests on one page - we do this before reading it.
2019 */
c373fff7 2020int nfs_wb_page(struct inode *inode, struct page *page)
1c75950b 2021{
29418aa4 2022 loff_t range_start = page_file_offset(page);
09cbfeaf 2023 loff_t range_end = range_start + (loff_t)(PAGE_SIZE - 1);
4d770ccf 2024 struct writeback_control wbc = {
4d770ccf 2025 .sync_mode = WB_SYNC_ALL,
7f2f12d9 2026 .nr_to_write = 0,
4d770ccf
TM
2027 .range_start = range_start,
2028 .range_end = range_end,
2029 };
2030 int ret;
1c75950b 2031
f4ce1299
TM
2032 trace_nfs_writeback_page_enter(inode);
2033
0522f6ad 2034 for (;;) {
ba8b06e6 2035 wait_on_page_writeback(page);
73e3302f 2036 if (clear_page_dirty_for_io(page)) {
c373fff7 2037 ret = nfs_writepage_locked(page, &wbc);
73e3302f
TM
2038 if (ret < 0)
2039 goto out_error;
0522f6ad 2040 continue;
7f2f12d9 2041 }
f4ce1299 2042 ret = 0;
0522f6ad
TM
2043 if (!PagePrivate(page))
2044 break;
2045 ret = nfs_commit_inode(inode, FLUSH_SYNC);
ba8b06e6 2046 if (ret < 0)
73e3302f 2047 goto out_error;
7f2f12d9 2048 }
73e3302f 2049out_error:
f4ce1299 2050 trace_nfs_writeback_page_exit(inode, ret);
4d770ccf 2051 return ret;
1c75950b
TM
2052}
2053
074cc1de
TM
2054#ifdef CONFIG_MIGRATION
2055int nfs_migrate_page(struct address_space *mapping, struct page *newpage,
a6bc32b8 2056 struct page *page, enum migrate_mode mode)
074cc1de 2057{
2da95652
JL
2058 /*
2059 * If PagePrivate is set, then the page is currently associated with
2060 * an in-progress read or write request. Don't try to migrate it.
2061 *
2062 * FIXME: we could do this in principle, but we'll need a way to ensure
2063 * that we can safely release the inode reference while holding
2064 * the page lock.
2065 */
2066 if (PagePrivate(page))
2067 return -EBUSY;
074cc1de 2068
8c209ce7
DH
2069 if (!nfs_fscache_release_page(page, GFP_KERNEL))
2070 return -EBUSY;
074cc1de 2071
a6bc32b8 2072 return migrate_page(mapping, newpage, page, mode);
074cc1de
TM
2073}
2074#endif
2075
f7b422b1 2076int __init nfs_init_writepagecache(void)
1da177e4
LT
2077{
2078 nfs_wdata_cachep = kmem_cache_create("nfs_write_data",
1e7f3a48 2079 sizeof(struct nfs_pgio_header),
1da177e4 2080 0, SLAB_HWCACHE_ALIGN,
20c2df83 2081 NULL);
1da177e4
LT
2082 if (nfs_wdata_cachep == NULL)
2083 return -ENOMEM;
2084
93d2341c
MD
2085 nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE,
2086 nfs_wdata_cachep);
1da177e4 2087 if (nfs_wdata_mempool == NULL)
3dd4765f 2088 goto out_destroy_write_cache;
1da177e4 2089
0b7c0153
FI
2090 nfs_cdata_cachep = kmem_cache_create("nfs_commit_data",
2091 sizeof(struct nfs_commit_data),
2092 0, SLAB_HWCACHE_ALIGN,
2093 NULL);
2094 if (nfs_cdata_cachep == NULL)
3dd4765f 2095 goto out_destroy_write_mempool;
0b7c0153 2096
93d2341c 2097 nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT,
4c100210 2098 nfs_cdata_cachep);
1da177e4 2099 if (nfs_commit_mempool == NULL)
3dd4765f 2100 goto out_destroy_commit_cache;
1da177e4 2101
89a09141
PZ
2102 /*
2103 * NFS congestion size, scale with available memory.
2104 *
2105 * 64MB: 8192k
2106 * 128MB: 11585k
2107 * 256MB: 16384k
2108 * 512MB: 23170k
2109 * 1GB: 32768k
2110 * 2GB: 46340k
2111 * 4GB: 65536k
2112 * 8GB: 92681k
2113 * 16GB: 131072k
2114 *
2115 * This allows larger machines to have larger/more transfers.
2116 * Limit the default to 256M
2117 */
2118 nfs_congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
2119 if (nfs_congestion_kb > 256*1024)
2120 nfs_congestion_kb = 256*1024;
2121
1da177e4 2122 return 0;
3dd4765f
JL
2123
2124out_destroy_commit_cache:
2125 kmem_cache_destroy(nfs_cdata_cachep);
2126out_destroy_write_mempool:
2127 mempool_destroy(nfs_wdata_mempool);
2128out_destroy_write_cache:
2129 kmem_cache_destroy(nfs_wdata_cachep);
2130 return -ENOMEM;
1da177e4
LT
2131}
2132
266bee88 2133void nfs_destroy_writepagecache(void)
1da177e4
LT
2134{
2135 mempool_destroy(nfs_commit_mempool);
3dd4765f 2136 kmem_cache_destroy(nfs_cdata_cachep);
1da177e4 2137 mempool_destroy(nfs_wdata_mempool);
1a1d92c1 2138 kmem_cache_destroy(nfs_wdata_cachep);
1da177e4
LT
2139}
2140
4a0de55c
AS
2141static const struct nfs_rw_ops nfs_rw_write_ops = {
2142 .rw_alloc_header = nfs_writehdr_alloc,
2143 .rw_free_header = nfs_writehdr_free,
0eecb214
AS
2144 .rw_done = nfs_writeback_done,
2145 .rw_result = nfs_writeback_result,
1ed26f33 2146 .rw_initiate = nfs_initiate_write,
4a0de55c 2147};
This page took 1.321853 seconds and 4 git commands to generate.