Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/fs/nfs/write.c |
| 4 | * |
Trond Myklebust | 7c85d90 | 2006-12-13 15:23:48 -0500 | [diff] [blame] | 5 | * Write file data over NFS. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 7 | * Copyright (C) 1996, 1997, Olaf Kirch <okir@monad.swb.de> |
| 8 | */ |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/types.h> |
| 11 | #include <linux/slab.h> |
| 12 | #include <linux/mm.h> |
| 13 | #include <linux/pagemap.h> |
| 14 | #include <linux/file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/writeback.h> |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 16 | #include <linux/swap.h> |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 17 | #include <linux/migrate.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
| 19 | #include <linux/sunrpc/clnt.h> |
| 20 | #include <linux/nfs_fs.h> |
| 21 | #include <linux/nfs_mount.h> |
| 22 | #include <linux/nfs_page.h> |
Andrew Morton | 3fcfab1 | 2006-10-19 23:28:16 -0700 | [diff] [blame] | 23 | #include <linux/backing-dev.h> |
Paul Gortmaker | afeacc8 | 2011-05-26 16:00:52 -0400 | [diff] [blame] | 24 | #include <linux/export.h> |
Trond Myklebust | af7cf05 | 2015-09-29 20:34:05 -0400 | [diff] [blame] | 25 | #include <linux/freezer.h> |
| 26 | #include <linux/wait.h> |
Jeff Layton | 1eb5d98 | 2018-01-09 08:21:17 -0500 | [diff] [blame] | 27 | #include <linux/iversion.h> |
Andrew Morton | 3fcfab1 | 2006-10-19 23:28:16 -0700 | [diff] [blame] | 28 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 29 | #include <linux/uaccess.h> |
Trond Myklebust | 875bc3f | 2019-02-18 13:06:54 -0500 | [diff] [blame] | 30 | #include <linux/sched/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | #include "delegation.h" |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 33 | #include "internal.h" |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 34 | #include "iostat.h" |
Andy Adamson | def6ed7 | 2009-04-01 09:22:26 -0400 | [diff] [blame] | 35 | #include "nfs4_fs.h" |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 36 | #include "fscache.h" |
Fred Isaman | 94ad1c8 | 2011-03-01 01:34:14 +0000 | [diff] [blame] | 37 | #include "pnfs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 39 | #include "nfstrace.h" |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #define NFSDBG_FACILITY NFSDBG_PAGECACHE |
| 42 | |
| 43 | #define MIN_POOL_WRITE (32) |
| 44 | #define MIN_POOL_COMMIT (4) |
| 45 | |
Trond Myklebust | 919e3bd | 2017-06-20 19:35:37 -0400 | [diff] [blame] | 46 | struct nfs_io_completion { |
| 47 | void (*complete)(void *data); |
| 48 | void *data; |
| 49 | struct kref refcount; |
| 50 | }; |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | /* |
| 53 | * Local function declarations |
| 54 | */ |
Fred Isaman | f8512ad | 2008-03-19 11:24:39 -0400 | [diff] [blame] | 55 | static void nfs_redirty_request(struct nfs_page *req); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 56 | static const struct rpc_call_ops nfs_commit_ops; |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 57 | static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops; |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 58 | static const struct nfs_commit_completion_ops nfs_commit_completion_ops; |
Anna Schumaker | 4a0de55 | 2014-05-06 09:12:30 -0400 | [diff] [blame] | 59 | static const struct nfs_rw_ops nfs_rw_write_ops; |
Trond Myklebust | 06c9fdf | 2019-08-14 15:42:43 -0400 | [diff] [blame] | 60 | static void nfs_inode_remove_request(struct nfs_page *req); |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 61 | static void nfs_clear_request_commit(struct nfs_page *req); |
Weston Andros Adamson | 02d1426 | 2014-07-17 20:42:17 -0400 | [diff] [blame] | 62 | static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo, |
| 63 | struct inode *inode); |
Trond Myklebust | 3a3908c | 2014-09-08 22:21:00 -0700 | [diff] [blame] | 64 | static struct nfs_page * |
| 65 | nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi, |
| 66 | struct page *page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 68 | static struct kmem_cache *nfs_wdata_cachep; |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 69 | static mempool_t *nfs_wdata_mempool; |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 70 | static struct kmem_cache *nfs_cdata_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | static mempool_t *nfs_commit_mempool; |
| 72 | |
NeilBrown | 518662e | 2017-04-10 12:22:09 +1000 | [diff] [blame] | 73 | struct nfs_commit_data *nfs_commitdata_alloc(bool never_fail) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | { |
NeilBrown | 518662e | 2017-04-10 12:22:09 +1000 | [diff] [blame] | 75 | struct nfs_commit_data *p; |
Chuck Lever | 40859d7 | 2005-11-30 18:09:02 -0500 | [diff] [blame] | 76 | |
NeilBrown | 518662e | 2017-04-10 12:22:09 +1000 | [diff] [blame] | 77 | if (never_fail) |
| 78 | p = mempool_alloc(nfs_commit_mempool, GFP_NOIO); |
| 79 | else { |
| 80 | /* It is OK to do some reclaim, not no safe to wait |
| 81 | * for anything to be returned to the pool. |
| 82 | * mempool_alloc() cannot handle that particular combination, |
| 83 | * so we need two separate attempts. |
| 84 | */ |
| 85 | p = mempool_alloc(nfs_commit_mempool, GFP_NOWAIT); |
| 86 | if (!p) |
| 87 | p = kmem_cache_alloc(nfs_cdata_cachep, GFP_NOIO | |
| 88 | __GFP_NOWARN | __GFP_NORETRY); |
| 89 | if (!p) |
| 90 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
NeilBrown | 518662e | 2017-04-10 12:22:09 +1000 | [diff] [blame] | 92 | |
| 93 | memset(p, 0, sizeof(*p)); |
| 94 | INIT_LIST_HEAD(&p->pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | return p; |
| 96 | } |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 97 | EXPORT_SYMBOL_GPL(nfs_commitdata_alloc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 99 | void nfs_commit_free(struct nfs_commit_data *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { |
| 101 | mempool_free(p, nfs_commit_mempool); |
| 102 | } |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 103 | EXPORT_SYMBOL_GPL(nfs_commit_free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
Weston Andros Adamson | 1e7f3a4 | 2014-06-09 11:48:33 -0400 | [diff] [blame] | 105 | static struct nfs_pgio_header *nfs_writehdr_alloc(void) |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 106 | { |
Trond Myklebust | 2b17d725 | 2019-06-11 16:49:52 -0400 | [diff] [blame] | 107 | struct nfs_pgio_header *p = mempool_alloc(nfs_wdata_mempool, GFP_KERNEL); |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 108 | |
NeilBrown | 237f830 | 2017-08-18 17:12:51 +1000 | [diff] [blame] | 109 | memset(p, 0, sizeof(*p)); |
| 110 | p->rw_mode = FMODE_WRITE; |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 111 | return p; |
| 112 | } |
| 113 | |
Weston Andros Adamson | 1e7f3a4 | 2014-06-09 11:48:33 -0400 | [diff] [blame] | 114 | static void nfs_writehdr_free(struct nfs_pgio_header *hdr) |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 115 | { |
Weston Andros Adamson | 1e7f3a4 | 2014-06-09 11:48:33 -0400 | [diff] [blame] | 116 | mempool_free(hdr, nfs_wdata_mempool); |
Trond Myklebust | 3feb2d4 | 2006-03-20 13:44:37 -0500 | [diff] [blame] | 117 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Trond Myklebust | 919e3bd | 2017-06-20 19:35:37 -0400 | [diff] [blame] | 119 | static struct nfs_io_completion *nfs_io_completion_alloc(gfp_t gfp_flags) |
| 120 | { |
| 121 | return kmalloc(sizeof(struct nfs_io_completion), gfp_flags); |
| 122 | } |
| 123 | |
| 124 | static void nfs_io_completion_init(struct nfs_io_completion *ioc, |
| 125 | void (*complete)(void *), void *data) |
| 126 | { |
| 127 | ioc->complete = complete; |
| 128 | ioc->data = data; |
| 129 | kref_init(&ioc->refcount); |
| 130 | } |
| 131 | |
| 132 | static void nfs_io_completion_release(struct kref *kref) |
| 133 | { |
| 134 | struct nfs_io_completion *ioc = container_of(kref, |
| 135 | struct nfs_io_completion, refcount); |
| 136 | ioc->complete(ioc->data); |
| 137 | kfree(ioc); |
| 138 | } |
| 139 | |
| 140 | static void nfs_io_completion_get(struct nfs_io_completion *ioc) |
| 141 | { |
| 142 | if (ioc != NULL) |
| 143 | kref_get(&ioc->refcount); |
| 144 | } |
| 145 | |
| 146 | static void nfs_io_completion_put(struct nfs_io_completion *ioc) |
| 147 | { |
| 148 | if (ioc != NULL) |
| 149 | kref_put(&ioc->refcount, nfs_io_completion_release); |
| 150 | } |
| 151 | |
Trond Myklebust | e00ed89 | 2020-03-30 12:40:47 -0400 | [diff] [blame] | 152 | static void |
| 153 | nfs_page_set_inode_ref(struct nfs_page *req, struct inode *inode) |
| 154 | { |
| 155 | if (!test_and_set_bit(PG_INODE_REF, &req->wb_flags)) { |
| 156 | kref_get(&req->wb_kref); |
| 157 | atomic_long_inc(&NFS_I(inode)->nrequests); |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | static int |
| 162 | nfs_cancel_remove_inode(struct nfs_page *req, struct inode *inode) |
| 163 | { |
| 164 | int ret; |
| 165 | |
| 166 | if (!test_bit(PG_REMOVE, &req->wb_flags)) |
| 167 | return 0; |
| 168 | ret = nfs_page_group_lock(req); |
| 169 | if (ret) |
| 170 | return ret; |
| 171 | if (test_and_clear_bit(PG_REMOVE, &req->wb_flags)) |
| 172 | nfs_page_set_inode_ref(req, inode); |
| 173 | nfs_page_group_unlock(req); |
| 174 | return 0; |
| 175 | } |
| 176 | |
Trond Myklebust | bd37d6f | 2017-08-01 12:06:30 -0400 | [diff] [blame] | 177 | static struct nfs_page * |
| 178 | nfs_page_private_request(struct page *page) |
| 179 | { |
| 180 | if (!PagePrivate(page)) |
| 181 | return NULL; |
| 182 | return (struct nfs_page *)page_private(page); |
| 183 | } |
| 184 | |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 185 | /* |
| 186 | * nfs_page_find_head_request_locked - find head request associated with @page |
| 187 | * |
| 188 | * must be called while holding the inode lock. |
| 189 | * |
| 190 | * returns matching head request with reference held, or NULL if not found. |
| 191 | */ |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 192 | static struct nfs_page * |
Trond Myklebust | b30d2f0 | 2017-08-01 12:26:53 -0400 | [diff] [blame] | 193 | nfs_page_find_private_request(struct page *page) |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 194 | { |
Trond Myklebust | 4b9bb25 | 2017-08-01 12:34:44 -0400 | [diff] [blame] | 195 | struct address_space *mapping = page_file_mapping(page); |
Trond Myklebust | bd37d6f | 2017-08-01 12:06:30 -0400 | [diff] [blame] | 196 | struct nfs_page *req; |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 197 | |
Trond Myklebust | b30d2f0 | 2017-08-01 12:26:53 -0400 | [diff] [blame] | 198 | if (!PagePrivate(page)) |
| 199 | return NULL; |
Trond Myklebust | 4b9bb25 | 2017-08-01 12:34:44 -0400 | [diff] [blame] | 200 | spin_lock(&mapping->private_lock); |
Trond Myklebust | bd37d6f | 2017-08-01 12:06:30 -0400 | [diff] [blame] | 201 | req = nfs_page_private_request(page); |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 202 | if (req) { |
| 203 | WARN_ON_ONCE(req->wb_head != req); |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 204 | kref_get(&req->wb_kref); |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 205 | } |
Trond Myklebust | 4b9bb25 | 2017-08-01 12:34:44 -0400 | [diff] [blame] | 206 | spin_unlock(&mapping->private_lock); |
Trond Myklebust | b30d2f0 | 2017-08-01 12:26:53 -0400 | [diff] [blame] | 207 | return req; |
| 208 | } |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 209 | |
Trond Myklebust | b30d2f0 | 2017-08-01 12:26:53 -0400 | [diff] [blame] | 210 | static struct nfs_page * |
| 211 | nfs_page_find_swap_request(struct page *page) |
| 212 | { |
| 213 | struct inode *inode = page_file_mapping(page)->host; |
| 214 | struct nfs_inode *nfsi = NFS_I(inode); |
| 215 | struct nfs_page *req = NULL; |
| 216 | if (!PageSwapCache(page)) |
| 217 | return NULL; |
Trond Myklebust | e824f99 | 2017-08-01 11:53:49 -0400 | [diff] [blame] | 218 | mutex_lock(&nfsi->commit_mutex); |
Trond Myklebust | b30d2f0 | 2017-08-01 12:26:53 -0400 | [diff] [blame] | 219 | if (PageSwapCache(page)) { |
| 220 | req = nfs_page_search_commits_for_head_request_locked(nfsi, |
| 221 | page); |
| 222 | if (req) { |
| 223 | WARN_ON_ONCE(req->wb_head != req); |
| 224 | kref_get(&req->wb_kref); |
| 225 | } |
| 226 | } |
Trond Myklebust | e824f99 | 2017-08-01 11:53:49 -0400 | [diff] [blame] | 227 | mutex_unlock(&nfsi->commit_mutex); |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 228 | return req; |
| 229 | } |
| 230 | |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 231 | /* |
| 232 | * nfs_page_find_head_request - find head request associated with @page |
| 233 | * |
| 234 | * returns matching head request with reference held, or NULL if not found. |
| 235 | */ |
| 236 | static struct nfs_page *nfs_page_find_head_request(struct page *page) |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 237 | { |
Trond Myklebust | b30d2f0 | 2017-08-01 12:26:53 -0400 | [diff] [blame] | 238 | struct nfs_page *req; |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 239 | |
Trond Myklebust | b30d2f0 | 2017-08-01 12:26:53 -0400 | [diff] [blame] | 240 | req = nfs_page_find_private_request(page); |
| 241 | if (!req) |
| 242 | req = nfs_page_find_swap_request(page); |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 243 | return req; |
| 244 | } |
| 245 | |
Trond Myklebust | e00ed89 | 2020-03-30 12:40:47 -0400 | [diff] [blame] | 246 | static struct nfs_page *nfs_find_and_lock_page_request(struct page *page) |
| 247 | { |
| 248 | struct inode *inode = page_file_mapping(page)->host; |
| 249 | struct nfs_page *req, *head; |
| 250 | int ret; |
| 251 | |
| 252 | for (;;) { |
| 253 | req = nfs_page_find_head_request(page); |
| 254 | if (!req) |
| 255 | return req; |
| 256 | head = nfs_page_group_lock_head(req); |
| 257 | if (head != req) |
| 258 | nfs_release_request(req); |
| 259 | if (IS_ERR(head)) |
| 260 | return head; |
| 261 | ret = nfs_cancel_remove_inode(head, inode); |
| 262 | if (ret < 0) { |
| 263 | nfs_unlock_and_release_request(head); |
| 264 | return ERR_PTR(ret); |
| 265 | } |
| 266 | /* Ensure that nobody removed the request before we locked it */ |
| 267 | if (head == nfs_page_private_request(page)) |
| 268 | break; |
| 269 | if (PageSwapCache(page)) |
| 270 | break; |
| 271 | nfs_unlock_and_release_request(head); |
| 272 | } |
| 273 | return head; |
| 274 | } |
| 275 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | /* Adjust the file length if we're writing beyond the end */ |
| 277 | static void nfs_grow_file(struct page *page, unsigned int offset, unsigned int count) |
| 278 | { |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 279 | struct inode *inode = page_file_mapping(page)->host; |
Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 280 | loff_t end, i_size; |
| 281 | pgoff_t end_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 283 | spin_lock(&inode->i_lock); |
| 284 | i_size = i_size_read(inode); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 285 | end_index = (i_size - 1) >> PAGE_SHIFT; |
Huang Ying | 8cd7978 | 2016-10-07 17:00:24 -0700 | [diff] [blame] | 286 | if (i_size > 0 && page_index(page) < end_index) |
Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 287 | goto out; |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 288 | end = page_file_offset(page) + ((loff_t)offset+count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | if (i_size >= end) |
Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 290 | goto out; |
Chuck Lever | 110cb2d | 2021-10-04 10:10:16 -0400 | [diff] [blame^] | 291 | trace_nfs_size_grow(inode, end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | i_size_write(inode, end); |
Trond Myklebust | f6cdfa6 | 2018-03-27 17:10:42 -0400 | [diff] [blame] | 293 | NFS_I(inode)->cache_validity &= ~NFS_INO_INVALID_SIZE; |
Trond Myklebust | a3d0145 | 2008-06-11 12:21:19 -0400 | [diff] [blame] | 294 | nfs_inc_stats(inode, NFSIOS_EXTENDWRITE); |
| 295 | out: |
| 296 | spin_unlock(&inode->i_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | } |
| 298 | |
Trond Myklebust | a301b77 | 2007-02-06 11:07:15 -0800 | [diff] [blame] | 299 | /* A writeback failed: mark the page as bad, and invalidate the page cache */ |
Benjamin Coddington | d2ceb7e | 2019-02-06 06:09:43 -0500 | [diff] [blame] | 300 | static void nfs_set_pageerror(struct address_space *mapping) |
Trond Myklebust | a301b77 | 2007-02-06 11:07:15 -0800 | [diff] [blame] | 301 | { |
Trond Myklebust | 0df68ced | 2020-01-06 15:25:00 -0500 | [diff] [blame] | 302 | struct inode *inode = mapping->host; |
| 303 | |
Benjamin Coddington | d2ceb7e | 2019-02-06 06:09:43 -0500 | [diff] [blame] | 304 | nfs_zap_mapping(mapping->host, mapping); |
Trond Myklebust | 0df68ced | 2020-01-06 15:25:00 -0500 | [diff] [blame] | 305 | /* Force file size revalidation */ |
| 306 | spin_lock(&inode->i_lock); |
Trond Myklebust | ac46b3d | 2021-03-08 14:42:54 -0500 | [diff] [blame] | 307 | nfs_set_cache_invalid(inode, NFS_INO_REVAL_FORCED | |
| 308 | NFS_INO_REVAL_PAGECACHE | |
| 309 | NFS_INO_INVALID_SIZE); |
Trond Myklebust | 0df68ced | 2020-01-06 15:25:00 -0500 | [diff] [blame] | 310 | spin_unlock(&inode->i_lock); |
Trond Myklebust | a301b77 | 2007-02-06 11:07:15 -0800 | [diff] [blame] | 311 | } |
| 312 | |
Trond Myklebust | 6fbda89 | 2019-04-07 13:59:05 -0400 | [diff] [blame] | 313 | static void nfs_mapping_set_error(struct page *page, int error) |
| 314 | { |
Trond Myklebust | b8946d7 | 2020-01-06 15:25:01 -0500 | [diff] [blame] | 315 | struct address_space *mapping = page_file_mapping(page); |
| 316 | |
Trond Myklebust | 6fbda89 | 2019-04-07 13:59:05 -0400 | [diff] [blame] | 317 | SetPageError(page); |
Trond Myklebust | b8946d7 | 2020-01-06 15:25:01 -0500 | [diff] [blame] | 318 | mapping_set_error(mapping, error); |
| 319 | nfs_set_pageerror(mapping); |
Trond Myklebust | 6fbda89 | 2019-04-07 13:59:05 -0400 | [diff] [blame] | 320 | } |
| 321 | |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 322 | /* |
| 323 | * nfs_page_group_search_locked |
| 324 | * @head - head request of page group |
| 325 | * @page_offset - offset into page |
| 326 | * |
| 327 | * Search page group with head @head to find a request that contains the |
| 328 | * page offset @page_offset. |
| 329 | * |
| 330 | * Returns a pointer to the first matching nfs request, or NULL if no |
| 331 | * match is found. |
| 332 | * |
| 333 | * Must be called with the page group lock held |
| 334 | */ |
| 335 | static struct nfs_page * |
| 336 | nfs_page_group_search_locked(struct nfs_page *head, unsigned int page_offset) |
| 337 | { |
| 338 | struct nfs_page *req; |
| 339 | |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 340 | req = head; |
| 341 | do { |
| 342 | if (page_offset >= req->wb_pgbase && |
| 343 | page_offset < (req->wb_pgbase + req->wb_bytes)) |
| 344 | return req; |
| 345 | |
| 346 | req = req->wb_this_page; |
| 347 | } while (req != head); |
| 348 | |
| 349 | return NULL; |
| 350 | } |
| 351 | |
| 352 | /* |
| 353 | * nfs_page_group_covers_page |
| 354 | * @head - head request of page group |
| 355 | * |
| 356 | * Return true if the page group with head @head covers the whole page, |
| 357 | * returns false otherwise |
| 358 | */ |
| 359 | static bool nfs_page_group_covers_page(struct nfs_page *req) |
| 360 | { |
| 361 | struct nfs_page *tmp; |
| 362 | unsigned int pos = 0; |
| 363 | unsigned int len = nfs_page_length(req->wb_page); |
| 364 | |
Trond Myklebust | 1344b7e | 2017-07-17 10:54:14 -0400 | [diff] [blame] | 365 | nfs_page_group_lock(req); |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 366 | |
Trond Myklebust | 7e8a30f | 2017-07-17 16:58:07 -0400 | [diff] [blame] | 367 | for (;;) { |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 368 | tmp = nfs_page_group_search_locked(req->wb_head, pos); |
Trond Myklebust | 7e8a30f | 2017-07-17 16:58:07 -0400 | [diff] [blame] | 369 | if (!tmp) |
| 370 | break; |
| 371 | pos = tmp->wb_pgbase + tmp->wb_bytes; |
| 372 | } |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 373 | |
| 374 | nfs_page_group_unlock(req); |
Trond Myklebust | 7e8a30f | 2017-07-17 16:58:07 -0400 | [diff] [blame] | 375 | return pos >= len; |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 376 | } |
| 377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | /* We can set the PG_uptodate flag if we see that a write request |
| 379 | * covers the full page. |
| 380 | */ |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 381 | static void nfs_mark_uptodate(struct nfs_page *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | { |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 383 | if (PageUptodate(req->wb_page)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | return; |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 385 | if (!nfs_page_group_covers_page(req)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | return; |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 387 | SetPageUptodate(req->wb_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | } |
| 389 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | static int wb_priority(struct writeback_control *wbc) |
| 391 | { |
NeilBrown | e87b4c7 | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 392 | int ret = 0; |
Trond Myklebust | cca588d | 2016-05-16 17:42:45 -0400 | [diff] [blame] | 393 | |
NeilBrown | e87b4c7 | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 394 | if (wbc->sync_mode == WB_SYNC_ALL) |
| 395 | ret = FLUSH_COND_STABLE; |
NeilBrown | e87b4c7 | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 396 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | /* |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 400 | * NFS congestion control |
| 401 | */ |
| 402 | |
| 403 | int nfs_congestion_kb; |
| 404 | |
| 405 | #define NFS_CONGESTION_ON_THRESH (nfs_congestion_kb >> (PAGE_SHIFT-10)) |
| 406 | #define NFS_CONGESTION_OFF_THRESH \ |
| 407 | (NFS_CONGESTION_ON_THRESH - (NFS_CONGESTION_ON_THRESH >> 2)) |
| 408 | |
Trond Myklebust | deed85e | 2012-10-15 15:02:01 -0400 | [diff] [blame] | 409 | static void nfs_set_page_writeback(struct page *page) |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 410 | { |
Jan Kara | 0db10944 | 2017-04-12 12:24:45 +0200 | [diff] [blame] | 411 | struct inode *inode = page_file_mapping(page)->host; |
| 412 | struct nfs_server *nfss = NFS_SERVER(inode); |
Trond Myklebust | 5a6d41b | 2007-04-14 19:10:12 -0400 | [diff] [blame] | 413 | int ret = test_set_page_writeback(page); |
| 414 | |
Trond Myklebust | deed85e | 2012-10-15 15:02:01 -0400 | [diff] [blame] | 415 | WARN_ON_ONCE(ret != 0); |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 416 | |
Trond Myklebust | deed85e | 2012-10-15 15:02:01 -0400 | [diff] [blame] | 417 | if (atomic_long_inc_return(&nfss->writeback) > |
Jan Kara | 0db10944 | 2017-04-12 12:24:45 +0200 | [diff] [blame] | 418 | NFS_CONGESTION_ON_THRESH) |
| 419 | set_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC); |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 420 | } |
| 421 | |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 422 | static void nfs_end_page_writeback(struct nfs_page *req) |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 423 | { |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 424 | struct inode *inode = page_file_mapping(req->wb_page)->host; |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 425 | struct nfs_server *nfss = NFS_SERVER(inode); |
Trond Myklebust | 31a01f0 | 2017-07-18 19:18:49 -0400 | [diff] [blame] | 426 | bool is_done; |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 427 | |
Trond Myklebust | 31a01f0 | 2017-07-18 19:18:49 -0400 | [diff] [blame] | 428 | is_done = nfs_page_group_sync_on_bit(req, PG_WB_END); |
| 429 | nfs_unlock_request(req); |
| 430 | if (!is_done) |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 431 | return; |
| 432 | |
| 433 | end_page_writeback(req->wb_page); |
Peter Zijlstra | c4dc4be | 2007-10-16 23:25:41 -0700 | [diff] [blame] | 434 | if (atomic_long_dec_return(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH) |
Jan Kara | 0db10944 | 2017-04-12 12:24:45 +0200 | [diff] [blame] | 435 | clear_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC); |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 436 | } |
| 437 | |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 438 | /* |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 439 | * nfs_destroy_unlinked_subrequests - destroy recently unlinked subrequests |
| 440 | * |
| 441 | * @destroy_list - request list (using wb_this_page) terminated by @old_head |
| 442 | * @old_head - the old head of the list |
| 443 | * |
| 444 | * All subrequests must be locked and removed from all lists, so at this point |
| 445 | * they are only "active" in this function, and possibly in nfs_wait_on_request |
| 446 | * with a reference held by some other context. |
| 447 | */ |
| 448 | static void |
| 449 | nfs_destroy_unlinked_subrequests(struct nfs_page *destroy_list, |
Trond Myklebust | b66aaa8 | 2017-07-18 15:22:12 -0400 | [diff] [blame] | 450 | struct nfs_page *old_head, |
| 451 | struct inode *inode) |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 452 | { |
| 453 | while (destroy_list) { |
| 454 | struct nfs_page *subreq = destroy_list; |
| 455 | |
| 456 | destroy_list = (subreq->wb_this_page == old_head) ? |
| 457 | NULL : subreq->wb_this_page; |
| 458 | |
Trond Myklebust | 08ca8b2 | 2020-04-01 13:04:49 -0400 | [diff] [blame] | 459 | /* Note: lock subreq in order to change subreq->wb_head */ |
| 460 | nfs_page_set_headlock(subreq); |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 461 | WARN_ON_ONCE(old_head != subreq->wb_head); |
| 462 | |
| 463 | /* make sure old group is not used */ |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 464 | subreq->wb_this_page = subreq; |
Trond Myklebust | 08ca8b2 | 2020-04-01 13:04:49 -0400 | [diff] [blame] | 465 | subreq->wb_head = subreq; |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 466 | |
Trond Myklebust | 902a4c0 | 2017-07-19 13:50:07 -0400 | [diff] [blame] | 467 | clear_bit(PG_REMOVE, &subreq->wb_flags); |
| 468 | |
Trond Myklebust | 5b2b518 | 2017-07-19 10:06:36 -0400 | [diff] [blame] | 469 | /* Note: races with nfs_page_group_destroy() */ |
| 470 | if (!kref_read(&subreq->wb_kref)) { |
Trond Myklebust | 5b2b518 | 2017-07-19 10:06:36 -0400 | [diff] [blame] | 471 | /* Check if we raced with nfs_page_group_destroy() */ |
Trond Myklebust | 08ca8b2 | 2020-04-01 13:04:49 -0400 | [diff] [blame] | 472 | if (test_and_clear_bit(PG_TEARDOWN, &subreq->wb_flags)) { |
| 473 | nfs_page_clear_headlock(subreq); |
Trond Myklebust | 5b2b518 | 2017-07-19 10:06:36 -0400 | [diff] [blame] | 474 | nfs_free_request(subreq); |
Trond Myklebust | 08ca8b2 | 2020-04-01 13:04:49 -0400 | [diff] [blame] | 475 | } else |
| 476 | nfs_page_clear_headlock(subreq); |
Trond Myklebust | 5b2b518 | 2017-07-19 10:06:36 -0400 | [diff] [blame] | 477 | continue; |
| 478 | } |
Trond Myklebust | 08ca8b2 | 2020-04-01 13:04:49 -0400 | [diff] [blame] | 479 | nfs_page_clear_headlock(subreq); |
Trond Myklebust | 5b2b518 | 2017-07-19 10:06:36 -0400 | [diff] [blame] | 480 | |
Trond Myklebust | add42de | 2020-04-01 10:07:16 -0400 | [diff] [blame] | 481 | nfs_release_request(old_head); |
Trond Myklebust | 5b2b518 | 2017-07-19 10:06:36 -0400 | [diff] [blame] | 482 | |
| 483 | if (test_and_clear_bit(PG_INODE_REF, &subreq->wb_flags)) { |
| 484 | nfs_release_request(subreq); |
Trond Myklebust | a6b6d5b | 2017-08-01 15:39:46 -0400 | [diff] [blame] | 485 | atomic_long_dec(&NFS_I(inode)->nrequests); |
Trond Myklebust | 5b2b518 | 2017-07-19 10:06:36 -0400 | [diff] [blame] | 486 | } |
| 487 | |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 488 | /* subreq is now totally disconnected from page group or any |
| 489 | * write / commit lists. last chance to wake any waiters */ |
Trond Myklebust | 5b2b518 | 2017-07-19 10:06:36 -0400 | [diff] [blame] | 490 | nfs_unlock_and_release_request(subreq); |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 491 | } |
| 492 | } |
| 493 | |
| 494 | /* |
Trond Myklebust | e00ed89 | 2020-03-30 12:40:47 -0400 | [diff] [blame] | 495 | * nfs_join_page_group - destroy subrequests of the head req |
| 496 | * @head: the page used to lookup the "page group" of nfs_page structures |
| 497 | * @inode: Inode to which the request belongs. |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 498 | * |
| 499 | * This function joins all sub requests to the head request by first |
| 500 | * locking all requests in the group, cancelling any pending operations |
| 501 | * and finally updating the head request to cover the whole range covered by |
| 502 | * the (former) group. All subrequests are removed from any write or commit |
| 503 | * lists, unlinked from the group and destroyed. |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 504 | */ |
Trond Myklebust | ed5d588 | 2020-03-30 20:57:49 -0400 | [diff] [blame] | 505 | void |
Trond Myklebust | e00ed89 | 2020-03-30 12:40:47 -0400 | [diff] [blame] | 506 | nfs_join_page_group(struct nfs_page *head, struct inode *inode) |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 507 | { |
Trond Myklebust | e00ed89 | 2020-03-30 12:40:47 -0400 | [diff] [blame] | 508 | struct nfs_page *subreq; |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 509 | struct nfs_page *destroy_list = NULL; |
Trond Myklebust | a62f8e3 | 2020-03-30 11:12:16 -0400 | [diff] [blame] | 510 | unsigned int pgbase, off, bytes; |
Trond Myklebust | a62f8e3 | 2020-03-30 11:12:16 -0400 | [diff] [blame] | 511 | |
| 512 | pgbase = head->wb_pgbase; |
| 513 | bytes = head->wb_bytes; |
| 514 | off = head->wb_offset; |
Trond Myklebust | a0e265b | 2017-07-17 10:29:32 -0400 | [diff] [blame] | 515 | for (subreq = head->wb_this_page; subreq != head; |
| 516 | subreq = subreq->wb_this_page) { |
Trond Myklebust | a62f8e3 | 2020-03-30 11:12:16 -0400 | [diff] [blame] | 517 | /* Subrequests should always form a contiguous range */ |
| 518 | if (pgbase > subreq->wb_pgbase) { |
| 519 | off -= pgbase - subreq->wb_pgbase; |
| 520 | bytes += pgbase - subreq->wb_pgbase; |
| 521 | pgbase = subreq->wb_pgbase; |
Trond Myklebust | 1bd5d6d | 2017-09-09 16:43:09 -0400 | [diff] [blame] | 522 | } |
Trond Myklebust | a62f8e3 | 2020-03-30 11:12:16 -0400 | [diff] [blame] | 523 | bytes = max(subreq->wb_pgbase + subreq->wb_bytes |
| 524 | - pgbase, bytes); |
Trond Myklebust | a0e265b | 2017-07-17 10:29:32 -0400 | [diff] [blame] | 525 | } |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 526 | |
Trond Myklebust | a62f8e3 | 2020-03-30 11:12:16 -0400 | [diff] [blame] | 527 | /* Set the head request's range to cover the former page group */ |
| 528 | head->wb_pgbase = pgbase; |
| 529 | head->wb_bytes = bytes; |
| 530 | head->wb_offset = off; |
| 531 | |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 532 | /* Now that all requests are locked, make sure they aren't on any list. |
| 533 | * Commit list removal accounting is done after locks are dropped */ |
| 534 | subreq = head; |
| 535 | do { |
Weston Andros Adamson | 411a99a | 2014-07-17 20:42:19 -0400 | [diff] [blame] | 536 | nfs_clear_request_commit(subreq); |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 537 | subreq = subreq->wb_this_page; |
| 538 | } while (subreq != head); |
| 539 | |
| 540 | /* unlink subrequests from head, destroy them later */ |
| 541 | if (head->wb_this_page != head) { |
| 542 | /* destroy list will be terminated by head */ |
| 543 | destroy_list = head->wb_this_page; |
| 544 | head->wb_this_page = head; |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 545 | } |
| 546 | |
Trond Myklebust | b66aaa8 | 2017-07-18 15:22:12 -0400 | [diff] [blame] | 547 | nfs_destroy_unlinked_subrequests(destroy_list, head, inode); |
Trond Myklebust | e00ed89 | 2020-03-30 12:40:47 -0400 | [diff] [blame] | 548 | } |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 549 | |
Trond Myklebust | e00ed89 | 2020-03-30 12:40:47 -0400 | [diff] [blame] | 550 | /* |
| 551 | * nfs_lock_and_join_requests - join all subreqs to the head req |
| 552 | * @page: the page used to lookup the "page group" of nfs_page structures |
| 553 | * |
| 554 | * This function joins all sub requests to the head request by first |
| 555 | * locking all requests in the group, cancelling any pending operations |
| 556 | * and finally updating the head request to cover the whole range covered by |
| 557 | * the (former) group. All subrequests are removed from any write or commit |
| 558 | * lists, unlinked from the group and destroyed. |
| 559 | * |
| 560 | * Returns a locked, referenced pointer to the head request - which after |
| 561 | * this call is guaranteed to be the only request associated with the page. |
| 562 | * Returns NULL if no requests are found for @page, or a ERR_PTR if an |
| 563 | * error was encountered. |
| 564 | */ |
| 565 | static struct nfs_page * |
| 566 | nfs_lock_and_join_requests(struct page *page) |
| 567 | { |
| 568 | struct inode *inode = page_file_mapping(page)->host; |
| 569 | struct nfs_page *head; |
| 570 | int ret; |
| 571 | |
| 572 | /* |
| 573 | * A reference is taken only on the head request which acts as a |
| 574 | * reference to the whole page group - the group will not be destroyed |
| 575 | * until the head reference is released. |
| 576 | */ |
| 577 | head = nfs_find_and_lock_page_request(page); |
| 578 | if (IS_ERR_OR_NULL(head)) |
| 579 | return head; |
| 580 | |
| 581 | /* lock each request in the page group */ |
| 582 | ret = nfs_page_group_lock_subrequests(head); |
| 583 | if (ret < 0) { |
Trond Myklebust | b5bab9b | 2017-07-17 10:34:21 -0400 | [diff] [blame] | 584 | nfs_unlock_and_release_request(head); |
Trond Myklebust | e00ed89 | 2020-03-30 12:40:47 -0400 | [diff] [blame] | 585 | return ERR_PTR(ret); |
Trond Myklebust | b5bab9b | 2017-07-17 10:34:21 -0400 | [diff] [blame] | 586 | } |
| 587 | |
Trond Myklebust | e00ed89 | 2020-03-30 12:40:47 -0400 | [diff] [blame] | 588 | nfs_join_page_group(head, inode); |
Markus Elfring | 0671d8f | 2017-11-07 08:51:00 +0100 | [diff] [blame] | 589 | |
Trond Myklebust | e00ed89 | 2020-03-30 12:40:47 -0400 | [diff] [blame] | 590 | return head; |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 591 | } |
| 592 | |
Trond Myklebust | 6fbda89 | 2019-04-07 13:59:05 -0400 | [diff] [blame] | 593 | static void nfs_write_error(struct nfs_page *req, int error) |
Peng Tao | 0bcbf03 | 2015-12-05 15:57:31 +0800 | [diff] [blame] | 594 | { |
Chuck Lever | 861e167 | 2019-12-23 10:28:33 -0500 | [diff] [blame] | 595 | trace_nfs_write_error(req, error); |
Trond Myklebust | 6fbda89 | 2019-04-07 13:59:05 -0400 | [diff] [blame] | 596 | nfs_mapping_set_error(req->wb_page, error); |
Trond Myklebust | 06c9fdf | 2019-08-14 15:42:43 -0400 | [diff] [blame] | 597 | nfs_inode_remove_request(req); |
Peng Tao | 0bcbf03 | 2015-12-05 15:57:31 +0800 | [diff] [blame] | 598 | nfs_end_page_writeback(req); |
Fred Isaman | 1f84ccd | 2017-04-14 14:24:28 -0400 | [diff] [blame] | 599 | nfs_release_request(req); |
Peng Tao | 0bcbf03 | 2015-12-05 15:57:31 +0800 | [diff] [blame] | 600 | } |
| 601 | |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 602 | /* |
| 603 | * Find an associated nfs write request, and prepare to flush it out |
| 604 | * May return an error if the user signalled nfs_wait_on_request(). |
| 605 | */ |
| 606 | static int nfs_page_async_flush(struct nfs_pageio_descriptor *pgio, |
Trond Myklebust | 6d17d65 | 2017-07-09 13:45:27 -0400 | [diff] [blame] | 607 | struct page *page) |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 608 | { |
| 609 | struct nfs_page *req; |
| 610 | int ret = 0; |
| 611 | |
Trond Myklebust | 6d17d65 | 2017-07-09 13:45:27 -0400 | [diff] [blame] | 612 | req = nfs_lock_and_join_requests(page); |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 613 | if (!req) |
| 614 | goto out; |
| 615 | ret = PTR_ERR(req); |
| 616 | if (IS_ERR(req)) |
| 617 | goto out; |
| 618 | |
Trond Myklebust | deed85e | 2012-10-15 15:02:01 -0400 | [diff] [blame] | 619 | nfs_set_page_writeback(page); |
| 620 | WARN_ON_ONCE(test_bit(PG_CLEAN, &req->wb_flags)); |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 621 | |
Trond Myklebust | a659881 | 2017-04-25 12:06:00 -0400 | [diff] [blame] | 622 | /* If there is a fatal error that covers this write, just exit */ |
Trond Myklebust | 96c4145 | 2019-08-24 10:39:00 -0400 | [diff] [blame] | 623 | ret = pgio->pg_error; |
| 624 | if (nfs_error_is_fatal_on_server(ret)) |
Trond Myklebust | a659881 | 2017-04-25 12:06:00 -0400 | [diff] [blame] | 625 | goto out_launder; |
| 626 | |
Trond Myklebust | 96c4145 | 2019-08-24 10:39:00 -0400 | [diff] [blame] | 627 | ret = 0; |
Fred Isaman | f8512ad | 2008-03-19 11:24:39 -0400 | [diff] [blame] | 628 | if (!nfs_pageio_add_request(pgio, req)) { |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 629 | ret = pgio->pg_error; |
Peng Tao | 0bcbf03 | 2015-12-05 15:57:31 +0800 | [diff] [blame] | 630 | /* |
Trond Myklebust | c373fff | 2017-04-26 12:26:22 -0400 | [diff] [blame] | 631 | * Remove the problematic req upon fatal errors on the server |
Peng Tao | 0bcbf03 | 2015-12-05 15:57:31 +0800 | [diff] [blame] | 632 | */ |
| 633 | if (nfs_error_is_fatal(ret)) { |
Trond Myklebust | c373fff | 2017-04-26 12:26:22 -0400 | [diff] [blame] | 634 | if (nfs_error_is_fatal_on_server(ret)) |
Trond Myklebust | a659881 | 2017-04-25 12:06:00 -0400 | [diff] [blame] | 635 | goto out_launder; |
Trond Myklebust | 8fc75be | 2019-01-29 15:52:55 -0500 | [diff] [blame] | 636 | } else |
| 637 | ret = -EAGAIN; |
Peng Tao | d6c843b | 2015-12-05 16:20:43 +0800 | [diff] [blame] | 638 | nfs_redirty_request(req); |
Trond Myklebust | 96c4145 | 2019-08-24 10:39:00 -0400 | [diff] [blame] | 639 | pgio->pg_error = 0; |
Trond Myklebust | 40f9027 | 2015-10-01 11:36:38 -0400 | [diff] [blame] | 640 | } else |
| 641 | nfs_add_stats(page_file_mapping(page)->host, |
| 642 | NFSIOS_WRITEPAGES, 1); |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 643 | out: |
| 644 | return ret; |
Trond Myklebust | a659881 | 2017-04-25 12:06:00 -0400 | [diff] [blame] | 645 | out_launder: |
Trond Myklebust | 6fbda89 | 2019-04-07 13:59:05 -0400 | [diff] [blame] | 646 | nfs_write_error(req, ret); |
Trond Myklebust | 14bebe3 | 2019-04-07 13:59:02 -0400 | [diff] [blame] | 647 | return 0; |
Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 648 | } |
| 649 | |
Peng Tao | d6c843b | 2015-12-05 16:20:43 +0800 | [diff] [blame] | 650 | static int nfs_do_writepage(struct page *page, struct writeback_control *wbc, |
Trond Myklebust | c373fff | 2017-04-26 12:26:22 -0400 | [diff] [blame] | 651 | struct nfs_pageio_descriptor *pgio) |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 652 | { |
Trond Myklebust | cfb506e | 2010-07-30 15:31:57 -0400 | [diff] [blame] | 653 | int ret; |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 654 | |
Huang Ying | 8cd7978 | 2016-10-07 17:00:24 -0700 | [diff] [blame] | 655 | nfs_pageio_cond_complete(pgio, page_index(page)); |
Trond Myklebust | 6d17d65 | 2017-07-09 13:45:27 -0400 | [diff] [blame] | 656 | ret = nfs_page_async_flush(pgio, page); |
Trond Myklebust | cfb506e | 2010-07-30 15:31:57 -0400 | [diff] [blame] | 657 | if (ret == -EAGAIN) { |
| 658 | redirty_page_for_writepage(wbc, page); |
Trond Myklebust | 96c4145 | 2019-08-24 10:39:00 -0400 | [diff] [blame] | 659 | ret = AOP_WRITEPAGE_ACTIVATE; |
Trond Myklebust | cfb506e | 2010-07-30 15:31:57 -0400 | [diff] [blame] | 660 | } |
| 661 | return ret; |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 662 | } |
| 663 | |
Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 664 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | * Write an mmapped page to the server. |
| 666 | */ |
Peng Tao | d6c843b | 2015-12-05 16:20:43 +0800 | [diff] [blame] | 667 | static int nfs_writepage_locked(struct page *page, |
Trond Myklebust | c373fff | 2017-04-26 12:26:22 -0400 | [diff] [blame] | 668 | struct writeback_control *wbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | { |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 670 | struct nfs_pageio_descriptor pgio; |
Trond Myklebust | 40f9027 | 2015-10-01 11:36:38 -0400 | [diff] [blame] | 671 | struct inode *inode = page_file_mapping(page)->host; |
Trond Myklebust | e261f51 | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 672 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | |
Trond Myklebust | 40f9027 | 2015-10-01 11:36:38 -0400 | [diff] [blame] | 674 | nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGE); |
Trond Myklebust | 811ed92 | 2016-06-01 18:25:56 -0400 | [diff] [blame] | 675 | nfs_pageio_init_write(&pgio, inode, 0, |
Christoph Hellwig | a20c93e | 2014-04-16 15:07:21 +0200 | [diff] [blame] | 676 | false, &nfs_async_write_completion_ops); |
Trond Myklebust | c373fff | 2017-04-26 12:26:22 -0400 | [diff] [blame] | 677 | err = nfs_do_writepage(page, wbc, &pgio); |
Trond Myklebust | 96c4145 | 2019-08-24 10:39:00 -0400 | [diff] [blame] | 678 | pgio.pg_error = 0; |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 679 | nfs_pageio_complete(&pgio); |
| 680 | if (err < 0) |
| 681 | return err; |
Trond Myklebust | 96c4145 | 2019-08-24 10:39:00 -0400 | [diff] [blame] | 682 | if (nfs_error_is_fatal(pgio.pg_error)) |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 683 | return pgio.pg_error; |
| 684 | return 0; |
Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 685 | } |
| 686 | |
| 687 | int nfs_writepage(struct page *page, struct writeback_control *wbc) |
| 688 | { |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 689 | int ret; |
Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 690 | |
Trond Myklebust | c373fff | 2017-04-26 12:26:22 -0400 | [diff] [blame] | 691 | ret = nfs_writepage_locked(page, wbc); |
Trond Myklebust | 96c4145 | 2019-08-24 10:39:00 -0400 | [diff] [blame] | 692 | if (ret != AOP_WRITEPAGE_ACTIVATE) |
| 693 | unlock_page(page); |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 694 | return ret; |
| 695 | } |
| 696 | |
| 697 | static int nfs_writepages_callback(struct page *page, struct writeback_control *wbc, void *data) |
| 698 | { |
| 699 | int ret; |
| 700 | |
Trond Myklebust | c373fff | 2017-04-26 12:26:22 -0400 | [diff] [blame] | 701 | ret = nfs_do_writepage(page, wbc, data); |
Trond Myklebust | 96c4145 | 2019-08-24 10:39:00 -0400 | [diff] [blame] | 702 | if (ret != AOP_WRITEPAGE_ACTIVATE) |
| 703 | unlock_page(page); |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 704 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | } |
| 706 | |
Trond Myklebust | 919e3bd | 2017-06-20 19:35:37 -0400 | [diff] [blame] | 707 | static void nfs_io_completion_commit(void *inode) |
| 708 | { |
| 709 | nfs_commit_inode(inode, 0); |
| 710 | } |
| 711 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | int nfs_writepages(struct address_space *mapping, struct writeback_control *wbc) |
| 713 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | struct inode *inode = mapping->host; |
Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 715 | struct nfs_pageio_descriptor pgio; |
Trond Myklebust | ed7bcdb | 2021-02-12 16:49:48 -0500 | [diff] [blame] | 716 | struct nfs_io_completion *ioc = NULL; |
| 717 | unsigned int mntflags = NFS_SERVER(inode)->flags; |
| 718 | int priority = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | int err; |
| 720 | |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 721 | nfs_inc_stats(inode, NFSIOS_VFSWRITEPAGES); |
| 722 | |
Trond Myklebust | ed7bcdb | 2021-02-12 16:49:48 -0500 | [diff] [blame] | 723 | if (!(mntflags & NFS_MOUNT_WRITE_EAGER) || wbc->for_kupdate || |
| 724 | wbc->for_background || wbc->for_sync || wbc->for_reclaim) { |
| 725 | ioc = nfs_io_completion_alloc(GFP_KERNEL); |
| 726 | if (ioc) |
| 727 | nfs_io_completion_init(ioc, nfs_io_completion_commit, |
| 728 | inode); |
| 729 | priority = wb_priority(wbc); |
| 730 | } |
Trond Myklebust | 919e3bd | 2017-06-20 19:35:37 -0400 | [diff] [blame] | 731 | |
Trond Myklebust | ed7bcdb | 2021-02-12 16:49:48 -0500 | [diff] [blame] | 732 | nfs_pageio_init_write(&pgio, inode, priority, false, |
Christoph Hellwig | a20c93e | 2014-04-16 15:07:21 +0200 | [diff] [blame] | 733 | &nfs_async_write_completion_ops); |
Trond Myklebust | 919e3bd | 2017-06-20 19:35:37 -0400 | [diff] [blame] | 734 | pgio.pg_io_completion = ioc; |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 735 | err = write_cache_pages(mapping, wbc, nfs_writepages_callback, &pgio); |
Trond Myklebust | 96c4145 | 2019-08-24 10:39:00 -0400 | [diff] [blame] | 736 | pgio.pg_error = 0; |
Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 737 | nfs_pageio_complete(&pgio); |
Trond Myklebust | 919e3bd | 2017-06-20 19:35:37 -0400 | [diff] [blame] | 738 | nfs_io_completion_put(ioc); |
Trond Myklebust | 72cb77f | 2009-03-11 14:10:30 -0400 | [diff] [blame] | 739 | |
Trond Myklebust | f758c885 | 2007-07-22 19:27:32 -0400 | [diff] [blame] | 740 | if (err < 0) |
Trond Myklebust | 72cb77f | 2009-03-11 14:10:30 -0400 | [diff] [blame] | 741 | goto out_err; |
| 742 | err = pgio.pg_error; |
Trond Myklebust | 96c4145 | 2019-08-24 10:39:00 -0400 | [diff] [blame] | 743 | if (nfs_error_is_fatal(err)) |
Trond Myklebust | 72cb77f | 2009-03-11 14:10:30 -0400 | [diff] [blame] | 744 | goto out_err; |
Trond Myklebust | c63c7b0 | 2007-04-02 19:29:52 -0400 | [diff] [blame] | 745 | return 0; |
Trond Myklebust | 72cb77f | 2009-03-11 14:10:30 -0400 | [diff] [blame] | 746 | out_err: |
| 747 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | } |
| 749 | |
| 750 | /* |
| 751 | * Insert a write request into an inode |
| 752 | */ |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 753 | static void nfs_inode_add_request(struct inode *inode, struct nfs_page *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | { |
Trond Myklebust | 4b9bb25 | 2017-08-01 12:34:44 -0400 | [diff] [blame] | 755 | struct address_space *mapping = page_file_mapping(req->wb_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | struct nfs_inode *nfsi = NFS_I(inode); |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 757 | |
Weston Andros Adamson | 2bfc6e5 | 2014-05-15 11:56:45 -0400 | [diff] [blame] | 758 | WARN_ON_ONCE(req->wb_this_page != req); |
| 759 | |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 760 | /* Lock the request! */ |
Trond Myklebust | 7ad84aa | 2012-05-09 13:19:15 -0400 | [diff] [blame] | 761 | nfs_lock_request(req); |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 762 | |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 763 | /* |
| 764 | * Swap-space should not get truncated. Hence no need to plug the race |
| 765 | * with invalidate/truncate. |
| 766 | */ |
Trond Myklebust | 4b9bb25 | 2017-08-01 12:34:44 -0400 | [diff] [blame] | 767 | spin_lock(&mapping->private_lock); |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 768 | if (likely(!PageSwapCache(req->wb_page))) { |
| 769 | set_bit(PG_MAPPED, &req->wb_flags); |
| 770 | SetPagePrivate(req->wb_page); |
| 771 | set_page_private(req->wb_page, (unsigned long)req); |
| 772 | } |
Trond Myklebust | 4b9bb25 | 2017-08-01 12:34:44 -0400 | [diff] [blame] | 773 | spin_unlock(&mapping->private_lock); |
Trond Myklebust | a6b6d5b | 2017-08-01 15:39:46 -0400 | [diff] [blame] | 774 | atomic_long_inc(&nfsi->nrequests); |
Weston Andros Adamson | 17089a2 | 2014-07-11 10:20:45 -0400 | [diff] [blame] | 775 | /* this a head request for a page group - mark it as having an |
Weston Andros Adamson | cb1410c | 2014-11-12 12:08:00 -0500 | [diff] [blame] | 776 | * extra reference so sub groups can follow suit. |
| 777 | * This flag also informs pgio layer when to bump nrequests when |
| 778 | * adding subrequests. */ |
Weston Andros Adamson | 17089a2 | 2014-07-11 10:20:45 -0400 | [diff] [blame] | 779 | WARN_ON(test_and_set_bit(PG_INODE_REF, &req->wb_flags)); |
Trond Myklebust | c03b402 | 2007-06-17 13:26:38 -0400 | [diff] [blame] | 780 | kref_get(&req->wb_kref); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | } |
| 782 | |
| 783 | /* |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 784 | * Remove a write request from an inode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | */ |
| 786 | static void nfs_inode_remove_request(struct nfs_page *req) |
| 787 | { |
Trond Myklebust | 4b9bb25 | 2017-08-01 12:34:44 -0400 | [diff] [blame] | 788 | struct address_space *mapping = page_file_mapping(req->wb_page); |
| 789 | struct inode *inode = mapping->host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | struct nfs_inode *nfsi = NFS_I(inode); |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 791 | struct nfs_page *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 793 | if (nfs_page_group_sync_on_bit(req, PG_REMOVE)) { |
| 794 | head = req->wb_head; |
| 795 | |
Trond Myklebust | 4b9bb25 | 2017-08-01 12:34:44 -0400 | [diff] [blame] | 796 | spin_lock(&mapping->private_lock); |
Anna Schumaker | 67911c8 | 2016-01-19 14:37:30 -0500 | [diff] [blame] | 797 | if (likely(head->wb_page && !PageSwapCache(head->wb_page))) { |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 798 | set_page_private(head->wb_page, 0); |
| 799 | ClearPagePrivate(head->wb_page); |
| 800 | clear_bit(PG_MAPPED, &head->wb_flags); |
| 801 | } |
Trond Myklebust | 4b9bb25 | 2017-08-01 12:34:44 -0400 | [diff] [blame] | 802 | spin_unlock(&mapping->private_lock); |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 803 | } |
Weston Andros Adamson | 17089a2 | 2014-07-11 10:20:45 -0400 | [diff] [blame] | 804 | |
ZhangXiaoxu | 33ea5aa | 2019-09-26 14:29:38 +0800 | [diff] [blame] | 805 | if (test_and_clear_bit(PG_INODE_REF, &req->wb_flags)) { |
Weston Andros Adamson | 17089a2 | 2014-07-11 10:20:45 -0400 | [diff] [blame] | 806 | nfs_release_request(req); |
ZhangXiaoxu | 33ea5aa | 2019-09-26 14:29:38 +0800 | [diff] [blame] | 807 | atomic_long_dec(&nfsi->nrequests); |
| 808 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | } |
| 810 | |
Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 811 | static void |
Fred | 6d884e8 | 2008-03-19 11:24:38 -0400 | [diff] [blame] | 812 | nfs_mark_request_dirty(struct nfs_page *req) |
Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 813 | { |
Anna Schumaker | 67911c8 | 2016-01-19 14:37:30 -0500 | [diff] [blame] | 814 | if (req->wb_page) |
| 815 | __set_page_dirty_nobuffers(req->wb_page); |
Trond Myklebust | 61822ab | 2006-12-05 00:35:42 -0500 | [diff] [blame] | 816 | } |
| 817 | |
Trond Myklebust | 3a3908c | 2014-09-08 22:21:00 -0700 | [diff] [blame] | 818 | /* |
| 819 | * nfs_page_search_commits_for_head_request_locked |
| 820 | * |
| 821 | * Search through commit lists on @inode for the head request for @page. |
| 822 | * Must be called while holding the inode (which is cinfo) lock. |
| 823 | * |
| 824 | * Returns the head request if found, or NULL if not found. |
| 825 | */ |
| 826 | static struct nfs_page * |
| 827 | nfs_page_search_commits_for_head_request_locked(struct nfs_inode *nfsi, |
| 828 | struct page *page) |
| 829 | { |
| 830 | struct nfs_page *freq, *t; |
| 831 | struct nfs_commit_info cinfo; |
| 832 | struct inode *inode = &nfsi->vfs_inode; |
| 833 | |
| 834 | nfs_init_cinfo_from_inode(&cinfo, inode); |
| 835 | |
| 836 | /* search through pnfs commit lists */ |
| 837 | freq = pnfs_search_commit_reqs(inode, &cinfo, page); |
| 838 | if (freq) |
| 839 | return freq->wb_head; |
| 840 | |
| 841 | /* Linearly search the commit list for the correct request */ |
| 842 | list_for_each_entry_safe(freq, t, &cinfo.mds->list, wb_list) { |
| 843 | if (freq->wb_page == page) |
| 844 | return freq->wb_head; |
| 845 | } |
| 846 | |
| 847 | return NULL; |
| 848 | } |
| 849 | |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 850 | /** |
Trond Myklebust | 86d80f9 | 2015-07-31 16:24:30 -0400 | [diff] [blame] | 851 | * nfs_request_add_commit_list_locked - add request to a commit list |
| 852 | * @req: pointer to a struct nfs_page |
| 853 | * @dst: commit list head |
| 854 | * @cinfo: holds list lock and accounting info |
| 855 | * |
| 856 | * This sets the PG_CLEAN bit, updates the cinfo count of |
| 857 | * number of outstanding requests requiring a commit as well as |
| 858 | * the MM page stats. |
| 859 | * |
Trond Myklebust | e824f99 | 2017-08-01 11:53:49 -0400 | [diff] [blame] | 860 | * The caller must hold NFS_I(cinfo->inode)->commit_mutex, and the |
| 861 | * nfs_page lock. |
Trond Myklebust | 86d80f9 | 2015-07-31 16:24:30 -0400 | [diff] [blame] | 862 | */ |
| 863 | void |
| 864 | nfs_request_add_commit_list_locked(struct nfs_page *req, struct list_head *dst, |
| 865 | struct nfs_commit_info *cinfo) |
| 866 | { |
| 867 | set_bit(PG_CLEAN, &req->wb_flags); |
| 868 | nfs_list_add_request(req, dst); |
Trond Myklebust | 5cb953d | 2017-08-01 17:04:12 -0400 | [diff] [blame] | 869 | atomic_long_inc(&cinfo->mds->ncommit); |
Trond Myklebust | 86d80f9 | 2015-07-31 16:24:30 -0400 | [diff] [blame] | 870 | } |
| 871 | EXPORT_SYMBOL_GPL(nfs_request_add_commit_list_locked); |
| 872 | |
| 873 | /** |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 874 | * nfs_request_add_commit_list - add request to a commit list |
| 875 | * @req: pointer to a struct nfs_page |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 876 | * @cinfo: holds list lock and accounting info |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 877 | * |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 878 | * This sets the PG_CLEAN bit, updates the cinfo count of |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 879 | * number of outstanding requests requiring a commit as well as |
| 880 | * the MM page stats. |
| 881 | * |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 882 | * The caller must _not_ hold the cinfo->lock, but must be |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 883 | * holding the nfs_page lock. |
| 884 | */ |
| 885 | void |
Anna Schumaker | 6272dcc | 2016-01-15 16:54:15 -0500 | [diff] [blame] | 886 | nfs_request_add_commit_list(struct nfs_page *req, struct nfs_commit_info *cinfo) |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 887 | { |
Trond Myklebust | e824f99 | 2017-08-01 11:53:49 -0400 | [diff] [blame] | 888 | mutex_lock(&NFS_I(cinfo->inode)->commit_mutex); |
Anna Schumaker | 6272dcc | 2016-01-15 16:54:15 -0500 | [diff] [blame] | 889 | nfs_request_add_commit_list_locked(req, &cinfo->mds->list, cinfo); |
Trond Myklebust | e824f99 | 2017-08-01 11:53:49 -0400 | [diff] [blame] | 890 | mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex); |
Anna Schumaker | 67911c8 | 2016-01-19 14:37:30 -0500 | [diff] [blame] | 891 | if (req->wb_page) |
| 892 | nfs_mark_page_unstable(req->wb_page, cinfo); |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 893 | } |
| 894 | EXPORT_SYMBOL_GPL(nfs_request_add_commit_list); |
| 895 | |
| 896 | /** |
| 897 | * nfs_request_remove_commit_list - Remove request from a commit list |
| 898 | * @req: pointer to a nfs_page |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 899 | * @cinfo: holds list lock and accounting info |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 900 | * |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 901 | * This clears the PG_CLEAN bit, and updates the cinfo's count of |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 902 | * number of outstanding requests requiring a commit |
| 903 | * It does not update the MM page stats. |
| 904 | * |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 905 | * The caller _must_ hold the cinfo->lock and the nfs_page lock. |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 906 | */ |
| 907 | void |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 908 | nfs_request_remove_commit_list(struct nfs_page *req, |
| 909 | struct nfs_commit_info *cinfo) |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 910 | { |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 911 | if (!test_and_clear_bit(PG_CLEAN, &(req)->wb_flags)) |
| 912 | return; |
| 913 | nfs_list_remove_request(req); |
Trond Myklebust | 5cb953d | 2017-08-01 17:04:12 -0400 | [diff] [blame] | 914 | atomic_long_dec(&cinfo->mds->ncommit); |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 915 | } |
| 916 | EXPORT_SYMBOL_GPL(nfs_request_remove_commit_list); |
| 917 | |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 918 | static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo, |
| 919 | struct inode *inode) |
| 920 | { |
Dave Wysochanski | fe238e6 | 2016-04-01 13:45:09 -0400 | [diff] [blame] | 921 | cinfo->inode = inode; |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 922 | cinfo->mds = &NFS_I(inode)->commit_info; |
| 923 | cinfo->ds = pnfs_get_ds_info(inode); |
Fred Isaman | b359f9d | 2012-04-20 14:47:55 -0400 | [diff] [blame] | 924 | cinfo->dreq = NULL; |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 925 | cinfo->completion_ops = &nfs_commit_completion_ops; |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 926 | } |
| 927 | |
| 928 | void nfs_init_cinfo(struct nfs_commit_info *cinfo, |
| 929 | struct inode *inode, |
| 930 | struct nfs_direct_req *dreq) |
| 931 | { |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 932 | if (dreq) |
| 933 | nfs_init_cinfo_from_dreq(cinfo, dreq); |
| 934 | else |
| 935 | nfs_init_cinfo_from_inode(cinfo, inode); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 936 | } |
| 937 | EXPORT_SYMBOL_GPL(nfs_init_cinfo); |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 938 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | /* |
| 940 | * Add a request to the inode's commit list. |
| 941 | */ |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 942 | void |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 943 | nfs_mark_request_commit(struct nfs_page *req, struct pnfs_layout_segment *lseg, |
Weston Andros Adamson | b57ff13 | 2014-09-05 18:20:21 -0400 | [diff] [blame] | 944 | struct nfs_commit_info *cinfo, u32 ds_commit_idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | { |
Weston Andros Adamson | b57ff13 | 2014-09-05 18:20:21 -0400 | [diff] [blame] | 946 | if (pnfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx)) |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 947 | return; |
Anna Schumaker | 6272dcc | 2016-01-15 16:54:15 -0500 | [diff] [blame] | 948 | nfs_request_add_commit_list(req, cinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | } |
Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 950 | |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 951 | static void |
| 952 | nfs_clear_page_commit(struct page *page) |
| 953 | { |
NeilBrown | 8d92890 | 2020-06-01 21:48:21 -0700 | [diff] [blame] | 954 | dec_node_page_state(page, NR_WRITEBACK); |
Tejun Heo | 93f78d8 | 2015-05-22 17:13:27 -0400 | [diff] [blame] | 955 | dec_wb_stat(&inode_to_bdi(page_file_mapping(page)->host)->wb, |
NeilBrown | 8d92890 | 2020-06-01 21:48:21 -0700 | [diff] [blame] | 956 | WB_WRITEBACK); |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 957 | } |
| 958 | |
Trond Myklebust | b5bab9b | 2017-07-17 10:34:21 -0400 | [diff] [blame] | 959 | /* Called holding the request lock on @req */ |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 960 | static void |
Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 961 | nfs_clear_request_commit(struct nfs_page *req) |
| 962 | { |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 963 | if (test_bit(PG_CLEAN, &req->wb_flags)) { |
Trond Myklebust | 9fcd596 | 2019-04-07 13:59:11 -0400 | [diff] [blame] | 964 | struct nfs_open_context *ctx = nfs_req_openctx(req); |
| 965 | struct inode *inode = d_inode(ctx->dentry); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 966 | struct nfs_commit_info cinfo; |
Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 967 | |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 968 | nfs_init_cinfo_from_inode(&cinfo, inode); |
Trond Myklebust | e824f99 | 2017-08-01 11:53:49 -0400 | [diff] [blame] | 969 | mutex_lock(&NFS_I(inode)->commit_mutex); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 970 | if (!pnfs_clear_request_commit(req, &cinfo)) { |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 971 | nfs_request_remove_commit_list(req, &cinfo); |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 972 | } |
Trond Myklebust | e824f99 | 2017-08-01 11:53:49 -0400 | [diff] [blame] | 973 | mutex_unlock(&NFS_I(inode)->commit_mutex); |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 974 | nfs_clear_page_commit(req->wb_page); |
Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 975 | } |
Trond Myklebust | e468bae | 2008-06-13 13:25:22 -0400 | [diff] [blame] | 976 | } |
| 977 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 978 | int nfs_write_need_commit(struct nfs_pgio_header *hdr) |
Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 979 | { |
Weston Andros Adamson | c65e625 | 2014-06-09 11:48:36 -0400 | [diff] [blame] | 980 | if (hdr->verf.committed == NFS_DATA_SYNC) |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 981 | return hdr->lseg == NULL; |
Weston Andros Adamson | c65e625 | 2014-06-09 11:48:36 -0400 | [diff] [blame] | 982 | return hdr->verf.committed != NFS_FILE_SYNC; |
Trond Myklebust | 8e821ca | 2007-04-20 16:12:34 -0400 | [diff] [blame] | 983 | } |
| 984 | |
Trond Myklebust | 919e3bd | 2017-06-20 19:35:37 -0400 | [diff] [blame] | 985 | static void nfs_async_write_init(struct nfs_pgio_header *hdr) |
| 986 | { |
| 987 | nfs_io_completion_get(hdr->io_completion); |
| 988 | } |
| 989 | |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 990 | static void nfs_write_completion(struct nfs_pgio_header *hdr) |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 991 | { |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 992 | struct nfs_commit_info cinfo; |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 993 | unsigned long bytes = 0; |
| 994 | |
| 995 | if (test_bit(NFS_IOHDR_REDO, &hdr->flags)) |
| 996 | goto out; |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 997 | nfs_init_cinfo_from_inode(&cinfo, hdr->inode); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 998 | while (!list_empty(&hdr->pages)) { |
| 999 | struct nfs_page *req = nfs_list_entry(hdr->pages.next); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1000 | |
| 1001 | bytes += req->wb_bytes; |
| 1002 | nfs_list_remove_request(req); |
| 1003 | if (test_bit(NFS_IOHDR_ERROR, &hdr->flags) && |
| 1004 | (hdr->good_bytes < bytes)) { |
Chuck Lever | 861e167 | 2019-12-23 10:28:33 -0500 | [diff] [blame] | 1005 | trace_nfs_comp_error(req, hdr->error); |
Trond Myklebust | 6fbda89 | 2019-04-07 13:59:05 -0400 | [diff] [blame] | 1006 | nfs_mapping_set_error(req->wb_page, hdr->error); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1007 | goto remove_req; |
| 1008 | } |
Weston Andros Adamson | c65e625 | 2014-06-09 11:48:36 -0400 | [diff] [blame] | 1009 | if (nfs_write_need_commit(hdr)) { |
Trond Myklebust | 33344e0 | 2019-04-07 13:59:08 -0400 | [diff] [blame] | 1010 | /* Reset wb_nio, since the write was successful. */ |
| 1011 | req->wb_nio = 0; |
Anna Schumaker | f79d06f | 2014-05-06 09:12:28 -0400 | [diff] [blame] | 1012 | memcpy(&req->wb_verf, &hdr->verf.verifier, sizeof(req->wb_verf)); |
Weston Andros Adamson | b57ff13 | 2014-09-05 18:20:21 -0400 | [diff] [blame] | 1013 | nfs_mark_request_commit(req, hdr->lseg, &cinfo, |
Weston Andros Adamson | a7d42dd | 2014-09-19 10:55:07 -0400 | [diff] [blame] | 1014 | hdr->pgio_mirror_idx); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1015 | goto next; |
| 1016 | } |
| 1017 | remove_req: |
| 1018 | nfs_inode_remove_request(req); |
| 1019 | next: |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 1020 | nfs_end_page_writeback(req); |
Trond Myklebust | 3aff4eb | 2012-05-09 14:30:35 -0400 | [diff] [blame] | 1021 | nfs_release_request(req); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1022 | } |
| 1023 | out: |
Trond Myklebust | 919e3bd | 2017-06-20 19:35:37 -0400 | [diff] [blame] | 1024 | nfs_io_completion_put(hdr->io_completion); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1025 | hdr->release(hdr); |
| 1026 | } |
| 1027 | |
Anna Schumaker | ce59515 | 2014-05-06 09:12:34 -0400 | [diff] [blame] | 1028 | unsigned long |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1029 | nfs_reqs_to_commit(struct nfs_commit_info *cinfo) |
Trond Myklebust | fb8a1f1 | 2009-03-11 14:10:29 -0400 | [diff] [blame] | 1030 | { |
Trond Myklebust | 5cb953d | 2017-08-01 17:04:12 -0400 | [diff] [blame] | 1031 | return atomic_long_read(&cinfo->mds->ncommit); |
Trond Myklebust | fb8a1f1 | 2009-03-11 14:10:29 -0400 | [diff] [blame] | 1032 | } |
| 1033 | |
Trond Myklebust | e824f99 | 2017-08-01 11:53:49 -0400 | [diff] [blame] | 1034 | /* NFS_I(cinfo->inode)->commit_mutex held by caller */ |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 1035 | int |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1036 | nfs_scan_commit_list(struct list_head *src, struct list_head *dst, |
| 1037 | struct nfs_commit_info *cinfo, int max) |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 1038 | { |
Trond Myklebust | 137da55 | 2017-09-09 12:28:01 -0400 | [diff] [blame] | 1039 | struct nfs_page *req, *tmp; |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 1040 | int ret = 0; |
| 1041 | |
Trond Myklebust | 137da55 | 2017-09-09 12:28:01 -0400 | [diff] [blame] | 1042 | restart: |
| 1043 | list_for_each_entry_safe(req, tmp, src, wb_list) { |
Trond Myklebust | 7ad84aa | 2012-05-09 13:19:15 -0400 | [diff] [blame] | 1044 | kref_get(&req->wb_kref); |
Trond Myklebust | 2ce209c | 2017-08-01 17:29:29 -0400 | [diff] [blame] | 1045 | if (!nfs_lock_request(req)) { |
| 1046 | int status; |
Trond Myklebust | 137da55 | 2017-09-09 12:28:01 -0400 | [diff] [blame] | 1047 | |
| 1048 | /* Prevent deadlock with nfs_lock_and_join_requests */ |
| 1049 | if (!list_empty(dst)) { |
| 1050 | nfs_release_request(req); |
| 1051 | continue; |
| 1052 | } |
| 1053 | /* Ensure we make progress to prevent livelock */ |
Trond Myklebust | 2ce209c | 2017-08-01 17:29:29 -0400 | [diff] [blame] | 1054 | mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex); |
| 1055 | status = nfs_wait_on_request(req); |
| 1056 | nfs_release_request(req); |
| 1057 | mutex_lock(&NFS_I(cinfo->inode)->commit_mutex); |
| 1058 | if (status < 0) |
| 1059 | break; |
Trond Myklebust | 137da55 | 2017-09-09 12:28:01 -0400 | [diff] [blame] | 1060 | goto restart; |
Trond Myklebust | 2ce209c | 2017-08-01 17:29:29 -0400 | [diff] [blame] | 1061 | } |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1062 | nfs_request_remove_commit_list(req, cinfo); |
Trond Myklebust | 5d2a9d9 | 2017-09-09 12:40:38 -0400 | [diff] [blame] | 1063 | clear_bit(PG_COMMIT_TO_DS, &req->wb_flags); |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 1064 | nfs_list_add_request(req, dst); |
| 1065 | ret++; |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 1066 | if ((ret == max) && !cinfo->dreq) |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 1067 | break; |
Trond Myklebust | e824f99 | 2017-08-01 11:53:49 -0400 | [diff] [blame] | 1068 | cond_resched(); |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 1069 | } |
| 1070 | return ret; |
| 1071 | } |
Trond Myklebust | 5d2a9d9 | 2017-09-09 12:40:38 -0400 | [diff] [blame] | 1072 | EXPORT_SYMBOL_GPL(nfs_scan_commit_list); |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 1073 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | /* |
| 1075 | * nfs_scan_commit - Scan an inode for commit requests |
| 1076 | * @inode: NFS inode to scan |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1077 | * @dst: mds destination list |
| 1078 | * @cinfo: mds and ds lists of reqs ready to commit |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | * |
| 1080 | * Moves requests from the inode's 'commit' request list. |
| 1081 | * The requests are *not* checked to ensure that they form a contiguous set. |
| 1082 | */ |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 1083 | int |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1084 | nfs_scan_commit(struct inode *inode, struct list_head *dst, |
| 1085 | struct nfs_commit_info *cinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | { |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 1087 | int ret = 0; |
Trond Myklebust | fb8a1f1 | 2009-03-11 14:10:29 -0400 | [diff] [blame] | 1088 | |
Trond Myklebust | 5cb953d | 2017-08-01 17:04:12 -0400 | [diff] [blame] | 1089 | if (!atomic_long_read(&cinfo->mds->ncommit)) |
| 1090 | return 0; |
Trond Myklebust | e824f99 | 2017-08-01 11:53:49 -0400 | [diff] [blame] | 1091 | mutex_lock(&NFS_I(cinfo->inode)->commit_mutex); |
Trond Myklebust | 5cb953d | 2017-08-01 17:04:12 -0400 | [diff] [blame] | 1092 | if (atomic_long_read(&cinfo->mds->ncommit) > 0) { |
Trond Myklebust | 8dd3775 | 2012-03-15 17:16:40 -0400 | [diff] [blame] | 1093 | const int max = INT_MAX; |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 1094 | |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1095 | ret = nfs_scan_commit_list(&cinfo->mds->list, dst, |
| 1096 | cinfo, max); |
| 1097 | ret += pnfs_scan_commit_lists(inode, cinfo, max - ret); |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 1098 | } |
Trond Myklebust | e824f99 | 2017-08-01 11:53:49 -0400 | [diff] [blame] | 1099 | mutex_unlock(&NFS_I(cinfo->inode)->commit_mutex); |
Trond Myklebust | ff778d0 | 2010-02-19 16:53:39 -0800 | [diff] [blame] | 1100 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | } |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 1102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | /* |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1104 | * Search for an existing write request, and attempt to update |
| 1105 | * it to reflect a new dirty region on a given page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | * |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1107 | * If the attempt fails, then the existing request is flushed out |
| 1108 | * to disk. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | */ |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1110 | static struct nfs_page *nfs_try_to_update_request(struct inode *inode, |
| 1111 | struct page *page, |
| 1112 | unsigned int offset, |
| 1113 | unsigned int bytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | { |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1115 | struct nfs_page *req; |
| 1116 | unsigned int rqend; |
| 1117 | unsigned int end; |
| 1118 | int error; |
| 1119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | end = offset + bytes; |
| 1121 | |
Trond Myklebust | f6032f2 | 2017-07-17 19:50:23 -0400 | [diff] [blame] | 1122 | req = nfs_lock_and_join_requests(page); |
| 1123 | if (IS_ERR_OR_NULL(req)) |
| 1124 | return req; |
Trond Myklebust | 277459d | 2006-12-05 00:35:35 -0500 | [diff] [blame] | 1125 | |
Trond Myklebust | f6032f2 | 2017-07-17 19:50:23 -0400 | [diff] [blame] | 1126 | rqend = req->wb_offset + req->wb_bytes; |
| 1127 | /* |
| 1128 | * Tell the caller to flush out the request if |
| 1129 | * the offsets are non-contiguous. |
| 1130 | * Note: nfs_flush_incompatible() will already |
| 1131 | * have flushed out requests having wrong owners. |
| 1132 | */ |
| 1133 | if (offset > rqend || end < req->wb_offset) |
| 1134 | goto out_flushme; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | |
| 1136 | /* Okay, the request matches. Update the region */ |
| 1137 | if (offset < req->wb_offset) { |
| 1138 | req->wb_offset = offset; |
| 1139 | req->wb_pgbase = offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | if (end > rqend) |
| 1142 | req->wb_bytes = end - req->wb_offset; |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1143 | else |
| 1144 | req->wb_bytes = rqend - req->wb_offset; |
Trond Myklebust | 33344e0 | 2019-04-07 13:59:08 -0400 | [diff] [blame] | 1145 | req->wb_nio = 0; |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1146 | return req; |
| 1147 | out_flushme: |
Trond Myklebust | f6032f2 | 2017-07-17 19:50:23 -0400 | [diff] [blame] | 1148 | /* |
| 1149 | * Note: we mark the request dirty here because |
| 1150 | * nfs_lock_and_join_requests() cannot preserve |
| 1151 | * commit flags, so we have to replay the write. |
| 1152 | */ |
| 1153 | nfs_mark_request_dirty(req); |
| 1154 | nfs_unlock_and_release_request(req); |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1155 | error = nfs_wb_page(inode, page); |
Trond Myklebust | f6032f2 | 2017-07-17 19:50:23 -0400 | [diff] [blame] | 1156 | return (error < 0) ? ERR_PTR(error) : NULL; |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1157 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1159 | /* |
| 1160 | * Try to update an existing write request, or create one if there is none. |
| 1161 | * |
| 1162 | * Note: Should always be called with the Page Lock held to prevent races |
| 1163 | * if we have to add a new request. Also assumes that the caller has |
| 1164 | * already called nfs_flush_incompatible() if necessary. |
| 1165 | */ |
| 1166 | static struct nfs_page * nfs_setup_write_request(struct nfs_open_context* ctx, |
| 1167 | struct page *page, unsigned int offset, unsigned int bytes) |
| 1168 | { |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 1169 | struct inode *inode = page_file_mapping(page)->host; |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1170 | struct nfs_page *req; |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1171 | |
| 1172 | req = nfs_try_to_update_request(inode, page, offset, bytes); |
| 1173 | if (req != NULL) |
| 1174 | goto out; |
Trond Myklebust | 28b1d3f | 2019-04-07 13:59:07 -0400 | [diff] [blame] | 1175 | req = nfs_create_request(ctx, page, offset, bytes); |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1176 | if (IS_ERR(req)) |
| 1177 | goto out; |
Fred Isaman | d6d6dc7 | 2012-03-08 17:29:35 -0500 | [diff] [blame] | 1178 | nfs_inode_add_request(inode, req); |
Trond Myklebust | efc91ed | 2008-06-10 18:31:00 -0400 | [diff] [blame] | 1179 | out: |
Trond Myklebust | 61e930a | 2007-10-18 17:08:05 -0400 | [diff] [blame] | 1180 | return req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | } |
| 1182 | |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1183 | static int nfs_writepage_setup(struct nfs_open_context *ctx, struct page *page, |
| 1184 | unsigned int offset, unsigned int count) |
| 1185 | { |
| 1186 | struct nfs_page *req; |
| 1187 | |
| 1188 | req = nfs_setup_write_request(ctx, page, offset, count); |
| 1189 | if (IS_ERR(req)) |
| 1190 | return PTR_ERR(req); |
| 1191 | /* Update file length */ |
| 1192 | nfs_grow_file(page, offset, count); |
Weston Andros Adamson | d72ddcb | 2014-05-15 11:56:48 -0400 | [diff] [blame] | 1193 | nfs_mark_uptodate(req); |
Trond Myklebust | a6305dd | 2010-04-09 19:07:08 -0400 | [diff] [blame] | 1194 | nfs_mark_request_dirty(req); |
Trond Myklebust | 1d1afcb | 2012-05-09 14:04:55 -0400 | [diff] [blame] | 1195 | nfs_unlock_and_release_request(req); |
Trond Myklebust | e7d3906 | 2008-06-13 12:12:32 -0400 | [diff] [blame] | 1196 | return 0; |
| 1197 | } |
| 1198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | int nfs_flush_incompatible(struct file *file, struct page *page) |
| 1200 | { |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 1201 | struct nfs_open_context *ctx = nfs_file_open_context(file); |
Trond Myklebust | 2a36915 | 2012-08-13 18:54:45 -0400 | [diff] [blame] | 1202 | struct nfs_lock_context *l_ctx; |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1203 | struct file_lock_context *flctx = file_inode(file)->i_flctx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | struct nfs_page *req; |
Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 1205 | int do_flush, status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | /* |
| 1207 | * Look for a request corresponding to this page. If there |
| 1208 | * is one, and it belongs to another file, we flush it out |
| 1209 | * before we try to copy anything into the page. Do this |
| 1210 | * due to the lack of an ACCESS-type call in NFSv2. |
| 1211 | * Also do the same if we find a request from an existing |
| 1212 | * dropped page. |
| 1213 | */ |
Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 1214 | do { |
Weston Andros Adamson | 84d3a9a | 2014-07-11 10:20:47 -0400 | [diff] [blame] | 1215 | req = nfs_page_find_head_request(page); |
Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 1216 | if (req == NULL) |
| 1217 | return 0; |
Trond Myklebust | 2a36915 | 2012-08-13 18:54:45 -0400 | [diff] [blame] | 1218 | l_ctx = req->wb_lock_context; |
Trond Myklebust | 138a293 | 2015-10-01 17:17:06 -0400 | [diff] [blame] | 1219 | do_flush = req->wb_page != page || |
Trond Myklebust | 9fcd596 | 2019-04-07 13:59:11 -0400 | [diff] [blame] | 1220 | !nfs_match_open_context(nfs_req_openctx(req), ctx); |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1221 | if (l_ctx && flctx && |
| 1222 | !(list_empty_careful(&flctx->flc_posix) && |
| 1223 | list_empty_careful(&flctx->flc_flock))) { |
NeilBrown | d51fdb8 | 2016-10-13 15:26:47 +1100 | [diff] [blame] | 1224 | do_flush |= l_ctx->lockowner != current->files; |
Jeff Layton | 5263e31 | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1225 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | nfs_release_request(req); |
Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 1227 | if (!do_flush) |
| 1228 | return 0; |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 1229 | status = nfs_wb_page(page_file_mapping(page)->host, page); |
Trond Myklebust | 1a54533 | 2006-12-05 00:35:40 -0500 | [diff] [blame] | 1230 | } while (status == 0); |
| 1231 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | } |
| 1233 | |
| 1234 | /* |
Andy Adamson | dc24826 | 2013-08-14 11:59:16 -0400 | [diff] [blame] | 1235 | * Avoid buffered writes when a open context credential's key would |
| 1236 | * expire soon. |
| 1237 | * |
| 1238 | * Returns -EACCES if the key will expire within RPC_KEY_EXPIRE_FAIL. |
| 1239 | * |
| 1240 | * Return 0 and set a credential flag which triggers the inode to flush |
| 1241 | * and performs NFS_FILE_SYNC writes if the key will expired within |
| 1242 | * RPC_KEY_EXPIRE_TIMEO. |
| 1243 | */ |
| 1244 | int |
| 1245 | nfs_key_timeout_notify(struct file *filp, struct inode *inode) |
| 1246 | { |
| 1247 | struct nfs_open_context *ctx = nfs_file_open_context(filp); |
Andy Adamson | dc24826 | 2013-08-14 11:59:16 -0400 | [diff] [blame] | 1248 | |
NeilBrown | ddf529e | 2018-12-03 11:30:30 +1100 | [diff] [blame] | 1249 | if (nfs_ctx_key_to_expire(ctx, inode) && |
Trond Myklebust | ca05cba | 2021-07-10 18:07:14 -0400 | [diff] [blame] | 1250 | !rcu_access_pointer(ctx->ll_cred)) |
NeilBrown | ddf529e | 2018-12-03 11:30:30 +1100 | [diff] [blame] | 1251 | /* Already expired! */ |
| 1252 | return -EACCES; |
| 1253 | return 0; |
Andy Adamson | dc24826 | 2013-08-14 11:59:16 -0400 | [diff] [blame] | 1254 | } |
| 1255 | |
| 1256 | /* |
| 1257 | * Test if the open context credential key is marked to expire soon. |
| 1258 | */ |
Scott Mayhew | ce52914e | 2016-06-07 15:14:48 -0400 | [diff] [blame] | 1259 | bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx, struct inode *inode) |
Andy Adamson | dc24826 | 2013-08-14 11:59:16 -0400 | [diff] [blame] | 1260 | { |
Scott Mayhew | ce52914e | 2016-06-07 15:14:48 -0400 | [diff] [blame] | 1261 | struct rpc_auth *auth = NFS_SERVER(inode)->client->cl_auth; |
Trond Myklebust | ca05cba | 2021-07-10 18:07:14 -0400 | [diff] [blame] | 1262 | struct rpc_cred *cred, *new, *old = NULL; |
NeilBrown | ddf529e | 2018-12-03 11:30:30 +1100 | [diff] [blame] | 1263 | struct auth_cred acred = { |
NeilBrown | a52458b | 2018-12-03 11:30:31 +1100 | [diff] [blame] | 1264 | .cred = ctx->cred, |
NeilBrown | ddf529e | 2018-12-03 11:30:30 +1100 | [diff] [blame] | 1265 | }; |
Trond Myklebust | ca05cba | 2021-07-10 18:07:14 -0400 | [diff] [blame] | 1266 | bool ret = false; |
Scott Mayhew | ce52914e | 2016-06-07 15:14:48 -0400 | [diff] [blame] | 1267 | |
Trond Myklebust | ca05cba | 2021-07-10 18:07:14 -0400 | [diff] [blame] | 1268 | rcu_read_lock(); |
| 1269 | cred = rcu_dereference(ctx->ll_cred); |
| 1270 | if (cred && !(cred->cr_ops->crkey_timeout && |
| 1271 | cred->cr_ops->crkey_timeout(cred))) |
| 1272 | goto out; |
| 1273 | rcu_read_unlock(); |
| 1274 | |
| 1275 | new = auth->au_ops->lookup_cred(auth, &acred, 0); |
| 1276 | if (new == cred) { |
| 1277 | put_rpccred(new); |
NeilBrown | ddf529e | 2018-12-03 11:30:30 +1100 | [diff] [blame] | 1278 | return true; |
Trond Myklebust | ca05cba | 2021-07-10 18:07:14 -0400 | [diff] [blame] | 1279 | } |
| 1280 | if (IS_ERR_OR_NULL(new)) { |
| 1281 | new = NULL; |
| 1282 | ret = true; |
| 1283 | } else if (new->cr_ops->crkey_timeout && |
| 1284 | new->cr_ops->crkey_timeout(new)) |
| 1285 | ret = true; |
| 1286 | |
| 1287 | rcu_read_lock(); |
| 1288 | old = rcu_dereference_protected(xchg(&ctx->ll_cred, |
| 1289 | RCU_INITIALIZER(new)), 1); |
| 1290 | out: |
| 1291 | rcu_read_unlock(); |
| 1292 | put_rpccred(old); |
| 1293 | return ret; |
Andy Adamson | dc24826 | 2013-08-14 11:59:16 -0400 | [diff] [blame] | 1294 | } |
| 1295 | |
| 1296 | /* |
Trond Myklebust | 5d47a35 | 2008-02-07 17:24:07 -0500 | [diff] [blame] | 1297 | * If the page cache is marked as unsafe or invalid, then we can't rely on |
| 1298 | * the PageUptodate() flag. In this case, we will need to turn off |
| 1299 | * write optimisations that depend on the page contents being correct. |
| 1300 | */ |
Trond Myklebust | fc9dc40 | 2021-02-08 08:55:46 -0500 | [diff] [blame] | 1301 | static bool nfs_write_pageuptodate(struct page *page, struct inode *inode, |
| 1302 | unsigned int pagelen) |
Trond Myklebust | 5d47a35 | 2008-02-07 17:24:07 -0500 | [diff] [blame] | 1303 | { |
Jeff Layton | d529ef8 | 2014-01-27 13:46:15 -0500 | [diff] [blame] | 1304 | struct nfs_inode *nfsi = NFS_I(inode); |
| 1305 | |
Trond Myklebust | 8d197a5 | 2012-04-29 12:50:01 -0400 | [diff] [blame] | 1306 | if (nfs_have_delegated_attributes(inode)) |
| 1307 | goto out; |
Trond Myklebust | fc9dc40 | 2021-02-08 08:55:46 -0500 | [diff] [blame] | 1308 | if (nfsi->cache_validity & |
Trond Myklebust | 13c0b08 | 2021-03-25 21:07:21 -0400 | [diff] [blame] | 1309 | (NFS_INO_INVALID_CHANGE | NFS_INO_INVALID_SIZE)) |
Jeff Layton | d529ef8 | 2014-01-27 13:46:15 -0500 | [diff] [blame] | 1310 | return false; |
Jeff Layton | 4db72b4 | 2014-01-28 13:47:46 -0500 | [diff] [blame] | 1311 | smp_rmb(); |
Trond Myklebust | fc9dc40 | 2021-02-08 08:55:46 -0500 | [diff] [blame] | 1312 | if (test_bit(NFS_INO_INVALIDATING, &nfsi->flags) && pagelen != 0) |
Trond Myklebust | 8d197a5 | 2012-04-29 12:50:01 -0400 | [diff] [blame] | 1313 | return false; |
| 1314 | out: |
Trond Myklebust | fc9dc40 | 2021-02-08 08:55:46 -0500 | [diff] [blame] | 1315 | if (nfsi->cache_validity & NFS_INO_INVALID_DATA && pagelen != 0) |
Scott Mayhew | 18dd78c | 2014-06-20 08:44:42 -0400 | [diff] [blame] | 1316 | return false; |
Trond Myklebust | 8d197a5 | 2012-04-29 12:50:01 -0400 | [diff] [blame] | 1317 | return PageUptodate(page) != 0; |
Trond Myklebust | 5d47a35 | 2008-02-07 17:24:07 -0500 | [diff] [blame] | 1318 | } |
| 1319 | |
Jeff Layton | 5263e31 | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1320 | static bool |
| 1321 | is_whole_file_wrlock(struct file_lock *fl) |
| 1322 | { |
| 1323 | return fl->fl_start == 0 && fl->fl_end == OFFSET_MAX && |
| 1324 | fl->fl_type == F_WRLCK; |
| 1325 | } |
| 1326 | |
Scott Mayhew | c755966 | 2013-07-05 17:33:19 -0400 | [diff] [blame] | 1327 | /* If we know the page is up to date, and we're not using byte range locks (or |
| 1328 | * if we have the whole file locked for writing), it may be more efficient to |
| 1329 | * extend the write to cover the entire page in order to avoid fragmentation |
| 1330 | * inefficiencies. |
| 1331 | * |
Scott Mayhew | 263b450 | 2014-01-17 15:12:05 -0500 | [diff] [blame] | 1332 | * If the file is opened for synchronous writes then we can just skip the rest |
| 1333 | * of the checks. |
Scott Mayhew | c755966 | 2013-07-05 17:33:19 -0400 | [diff] [blame] | 1334 | */ |
Trond Myklebust | fc9dc40 | 2021-02-08 08:55:46 -0500 | [diff] [blame] | 1335 | static int nfs_can_extend_write(struct file *file, struct page *page, |
| 1336 | struct inode *inode, unsigned int pagelen) |
Scott Mayhew | c755966 | 2013-07-05 17:33:19 -0400 | [diff] [blame] | 1337 | { |
Jeff Layton | 5263e31 | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1338 | int ret; |
| 1339 | struct file_lock_context *flctx = inode->i_flctx; |
| 1340 | struct file_lock *fl; |
| 1341 | |
Scott Mayhew | c755966 | 2013-07-05 17:33:19 -0400 | [diff] [blame] | 1342 | if (file->f_flags & O_DSYNC) |
| 1343 | return 0; |
Trond Myklebust | fc9dc40 | 2021-02-08 08:55:46 -0500 | [diff] [blame] | 1344 | if (!nfs_write_pageuptodate(page, inode, pagelen)) |
Scott Mayhew | 263b450 | 2014-01-17 15:12:05 -0500 | [diff] [blame] | 1345 | return 0; |
Scott Mayhew | c755966 | 2013-07-05 17:33:19 -0400 | [diff] [blame] | 1346 | if (NFS_PROTO(inode)->have_delegation(inode, FMODE_WRITE)) |
| 1347 | return 1; |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1348 | if (!flctx || (list_empty_careful(&flctx->flc_flock) && |
| 1349 | list_empty_careful(&flctx->flc_posix))) |
Trond Myklebust | 8fa4592 | 2015-10-01 18:38:27 -0400 | [diff] [blame] | 1350 | return 1; |
Jeff Layton | 5263e31 | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1351 | |
| 1352 | /* Check to see if there are whole file write locks */ |
Jeff Layton | 5263e31 | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1353 | ret = 0; |
Jeff Layton | 6109c85 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 1354 | spin_lock(&flctx->flc_lock); |
Jeff Layton | bd61e0a | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1355 | if (!list_empty(&flctx->flc_posix)) { |
| 1356 | fl = list_first_entry(&flctx->flc_posix, struct file_lock, |
| 1357 | fl_list); |
| 1358 | if (is_whole_file_wrlock(fl)) |
| 1359 | ret = 1; |
| 1360 | } else if (!list_empty(&flctx->flc_flock)) { |
Jeff Layton | 5263e31 | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1361 | fl = list_first_entry(&flctx->flc_flock, struct file_lock, |
| 1362 | fl_list); |
| 1363 | if (fl->fl_type == F_WRLCK) |
| 1364 | ret = 1; |
| 1365 | } |
Jeff Layton | 6109c85 | 2015-01-16 15:05:57 -0500 | [diff] [blame] | 1366 | spin_unlock(&flctx->flc_lock); |
Jeff Layton | 5263e31 | 2015-01-16 15:05:55 -0500 | [diff] [blame] | 1367 | return ret; |
Scott Mayhew | c755966 | 2013-07-05 17:33:19 -0400 | [diff] [blame] | 1368 | } |
| 1369 | |
Trond Myklebust | 5d47a35 | 2008-02-07 17:24:07 -0500 | [diff] [blame] | 1370 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | * Update and possibly write a cached page of an NFS file. |
| 1372 | * |
| 1373 | * XXX: Keep an eye on generic_file_read to make sure it doesn't do bad |
| 1374 | * things with a page scheduled for an RPC call (e.g. invalidate it). |
| 1375 | */ |
| 1376 | int nfs_updatepage(struct file *file, struct page *page, |
| 1377 | unsigned int offset, unsigned int count) |
| 1378 | { |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 1379 | struct nfs_open_context *ctx = nfs_file_open_context(file); |
Benjamin Coddington | d2ceb7e | 2019-02-06 06:09:43 -0500 | [diff] [blame] | 1380 | struct address_space *mapping = page_file_mapping(page); |
| 1381 | struct inode *inode = mapping->host; |
Trond Myklebust | fc9dc40 | 2021-02-08 08:55:46 -0500 | [diff] [blame] | 1382 | unsigned int pagelen = nfs_page_length(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | int status = 0; |
| 1384 | |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 1385 | nfs_inc_stats(inode, NFSIOS_VFSUPDATEPAGE); |
| 1386 | |
Al Viro | 6de1472 | 2013-09-16 10:53:17 -0400 | [diff] [blame] | 1387 | dprintk("NFS: nfs_updatepage(%pD2 %d@%lld)\n", |
| 1388 | file, count, (long long)(page_file_offset(page) + offset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | |
Benjamin Coddington | 149a4fd | 2016-07-18 10:41:57 -0400 | [diff] [blame] | 1390 | if (!count) |
| 1391 | goto out; |
| 1392 | |
Trond Myklebust | fc9dc40 | 2021-02-08 08:55:46 -0500 | [diff] [blame] | 1393 | if (nfs_can_extend_write(file, page, inode, pagelen)) { |
| 1394 | count = max(count + offset, pagelen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | offset = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | } |
| 1397 | |
Trond Myklebust | e21195a | 2006-12-05 00:35:39 -0500 | [diff] [blame] | 1398 | status = nfs_writepage_setup(ctx, page, offset, count); |
Trond Myklebust | 03fa9e8 | 2008-06-05 16:02:35 -0400 | [diff] [blame] | 1399 | if (status < 0) |
Benjamin Coddington | d2ceb7e | 2019-02-06 06:09:43 -0500 | [diff] [blame] | 1400 | nfs_set_pageerror(mapping); |
Trond Myklebust | 59b7c05 | 2011-10-17 18:22:55 -0700 | [diff] [blame] | 1401 | else |
| 1402 | __set_page_dirty_nobuffers(page); |
Benjamin Coddington | 149a4fd | 2016-07-18 10:41:57 -0400 | [diff] [blame] | 1403 | out: |
Chuck Lever | 48186c7 | 2008-06-11 17:56:05 -0400 | [diff] [blame] | 1404 | dprintk("NFS: nfs_updatepage returns %d (isize %lld)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | status, (long long)i_size_read(inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | return status; |
| 1407 | } |
| 1408 | |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1409 | static int flush_task_priority(int how) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | { |
| 1411 | switch (how & (FLUSH_HIGHPRI|FLUSH_LOWPRI)) { |
| 1412 | case FLUSH_HIGHPRI: |
| 1413 | return RPC_PRIORITY_HIGH; |
| 1414 | case FLUSH_LOWPRI: |
| 1415 | return RPC_PRIORITY_LOW; |
| 1416 | } |
| 1417 | return RPC_PRIORITY_NORMAL; |
| 1418 | } |
| 1419 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1420 | static void nfs_initiate_write(struct nfs_pgio_header *hdr, |
| 1421 | struct rpc_message *msg, |
Tom Haynes | abde71f | 2014-06-09 13:12:20 -0700 | [diff] [blame] | 1422 | const struct nfs_rpc_ops *rpc_ops, |
Anna Schumaker | 1ed26f3 | 2014-05-06 09:12:37 -0400 | [diff] [blame] | 1423 | struct rpc_task_setup *task_setup_data, int how) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | { |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1425 | int priority = flush_task_priority(how); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | |
Anna Schumaker | 1ed26f3 | 2014-05-06 09:12:37 -0400 | [diff] [blame] | 1427 | task_setup_data->priority = priority; |
Anna Schumaker | fb91fb0 | 2018-05-04 16:22:48 -0400 | [diff] [blame] | 1428 | rpc_ops->write_setup(hdr, msg, &task_setup_data->rpc_client); |
Trond Myklebust | 5bb2a7c | 2020-01-06 15:25:09 -0500 | [diff] [blame] | 1429 | trace_nfs_initiate_write(hdr); |
Trond Myklebust | 275acaa | 2011-07-12 13:42:02 -0400 | [diff] [blame] | 1430 | } |
| 1431 | |
Fred | 6d884e8 | 2008-03-19 11:24:38 -0400 | [diff] [blame] | 1432 | /* If a nfs_flush_* function fails, it should remove reqs from @head and |
| 1433 | * call this on each, which will prepare them to be retried on next |
| 1434 | * writeback using standard nfs. |
| 1435 | */ |
| 1436 | static void nfs_redirty_request(struct nfs_page *req) |
| 1437 | { |
Trond Myklebust | 33344e0 | 2019-04-07 13:59:08 -0400 | [diff] [blame] | 1438 | /* Bump the transmission count */ |
| 1439 | req->wb_nio++; |
Fred | 6d884e8 | 2008-03-19 11:24:38 -0400 | [diff] [blame] | 1440 | nfs_mark_request_dirty(req); |
Trond Myklebust | 9fcd596 | 2019-04-07 13:59:11 -0400 | [diff] [blame] | 1441 | set_bit(NFS_CONTEXT_RESEND_WRITES, &nfs_req_openctx(req)->flags); |
Weston Andros Adamson | 20633f0 | 2014-05-15 11:56:47 -0400 | [diff] [blame] | 1442 | nfs_end_page_writeback(req); |
Trond Myklebust | 3aff4eb | 2012-05-09 14:30:35 -0400 | [diff] [blame] | 1443 | nfs_release_request(req); |
Fred | 6d884e8 | 2008-03-19 11:24:38 -0400 | [diff] [blame] | 1444 | } |
| 1445 | |
Trond Myklebust | df3accb | 2019-02-13 10:39:39 -0500 | [diff] [blame] | 1446 | static void nfs_async_write_error(struct list_head *head, int error) |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1447 | { |
| 1448 | struct nfs_page *req; |
| 1449 | |
| 1450 | while (!list_empty(head)) { |
| 1451 | req = nfs_list_entry(head->next); |
| 1452 | nfs_list_remove_request(req); |
Trond Myklebust | 6fbda89 | 2019-04-07 13:59:05 -0400 | [diff] [blame] | 1453 | if (nfs_error_is_fatal(error)) |
| 1454 | nfs_write_error(req, error); |
| 1455 | else |
| 1456 | nfs_redirty_request(req); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1457 | } |
| 1458 | } |
| 1459 | |
Trond Myklebust | dc602dd | 2015-12-31 11:44:06 -0500 | [diff] [blame] | 1460 | static void nfs_async_write_reschedule_io(struct nfs_pgio_header *hdr) |
| 1461 | { |
Trond Myklebust | df3accb | 2019-02-13 10:39:39 -0500 | [diff] [blame] | 1462 | nfs_async_write_error(&hdr->pages, 0); |
Trond Myklebust | 7be7b3c | 2018-07-04 21:01:16 -0400 | [diff] [blame] | 1463 | filemap_fdatawrite_range(hdr->inode->i_mapping, hdr->args.offset, |
| 1464 | hdr->args.offset + hdr->args.count - 1); |
Trond Myklebust | dc602dd | 2015-12-31 11:44:06 -0500 | [diff] [blame] | 1465 | } |
| 1466 | |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 1467 | static const struct nfs_pgio_completion_ops nfs_async_write_completion_ops = { |
Trond Myklebust | 919e3bd | 2017-06-20 19:35:37 -0400 | [diff] [blame] | 1468 | .init_hdr = nfs_async_write_init, |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 1469 | .error_cleanup = nfs_async_write_error, |
| 1470 | .completion = nfs_write_completion, |
Trond Myklebust | dc602dd | 2015-12-31 11:44:06 -0500 | [diff] [blame] | 1471 | .reschedule_io = nfs_async_write_reschedule_io, |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 1472 | }; |
| 1473 | |
Bryan Schumaker | 57208fa | 2012-06-20 15:53:48 -0400 | [diff] [blame] | 1474 | void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio, |
Christoph Hellwig | a20c93e | 2014-04-16 15:07:21 +0200 | [diff] [blame] | 1475 | struct inode *inode, int ioflags, bool force_mds, |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 1476 | const struct nfs_pgio_completion_ops *compl_ops) |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 1477 | { |
Christoph Hellwig | a20c93e | 2014-04-16 15:07:21 +0200 | [diff] [blame] | 1478 | struct nfs_server *server = NFS_SERVER(inode); |
Anna Schumaker | 41d8d5b | 2014-05-06 09:12:40 -0400 | [diff] [blame] | 1479 | const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops; |
Christoph Hellwig | a20c93e | 2014-04-16 15:07:21 +0200 | [diff] [blame] | 1480 | |
| 1481 | #ifdef CONFIG_NFS_V4_1 |
| 1482 | if (server->pnfs_curr_ld && !force_mds) |
| 1483 | pg_ops = server->pnfs_curr_ld->pg_write_ops; |
| 1484 | #endif |
Anna Schumaker | 4a0de55 | 2014-05-06 09:12:30 -0400 | [diff] [blame] | 1485 | nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_write_ops, |
Trond Myklebust | 3bde7af | 2017-08-20 11:33:25 -0400 | [diff] [blame] | 1486 | server->wsize, ioflags); |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 1487 | } |
Bryan Schumaker | ddda8e0 | 2012-07-30 16:05:23 -0400 | [diff] [blame] | 1488 | EXPORT_SYMBOL_GPL(nfs_pageio_init_write); |
Trond Myklebust | 1751c36 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 1489 | |
Trond Myklebust | dce8129 | 2011-07-13 15:59:19 -0400 | [diff] [blame] | 1490 | void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio) |
| 1491 | { |
Weston Andros Adamson | a7d42dd | 2014-09-19 10:55:07 -0400 | [diff] [blame] | 1492 | struct nfs_pgio_mirror *mirror; |
| 1493 | |
Kinglong Mee | 6f29b9b | 2015-09-20 23:03:28 +0800 | [diff] [blame] | 1494 | if (pgio->pg_ops && pgio->pg_ops->pg_cleanup) |
| 1495 | pgio->pg_ops->pg_cleanup(pgio); |
| 1496 | |
Anna Schumaker | 41d8d5b | 2014-05-06 09:12:40 -0400 | [diff] [blame] | 1497 | pgio->pg_ops = &nfs_pgio_rw_ops; |
Weston Andros Adamson | a7d42dd | 2014-09-19 10:55:07 -0400 | [diff] [blame] | 1498 | |
| 1499 | nfs_pageio_stop_mirroring(pgio); |
| 1500 | |
| 1501 | mirror = &pgio->pg_mirrors[0]; |
| 1502 | mirror->pg_bsize = NFS_SERVER(pgio->pg_inode)->wsize; |
Trond Myklebust | dce8129 | 2011-07-13 15:59:19 -0400 | [diff] [blame] | 1503 | } |
Trond Myklebust | 1f94535 | 2011-07-13 15:59:57 -0400 | [diff] [blame] | 1504 | EXPORT_SYMBOL_GPL(nfs_pageio_reset_write_mds); |
Trond Myklebust | dce8129 | 2011-07-13 15:59:19 -0400 | [diff] [blame] | 1505 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1507 | void nfs_commit_prepare(struct rpc_task *task, void *calldata) |
| 1508 | { |
| 1509 | struct nfs_commit_data *data = calldata; |
| 1510 | |
| 1511 | NFS_PROTO(data->inode)->commit_rpc_prepare(task, data); |
| 1512 | } |
| 1513 | |
Trond Myklebust | 1f2edbe | 2014-04-13 11:11:31 -0400 | [diff] [blame] | 1514 | /* |
| 1515 | * Special version of should_remove_suid() that ignores capabilities. |
| 1516 | */ |
| 1517 | static int nfs_should_remove_suid(const struct inode *inode) |
| 1518 | { |
| 1519 | umode_t mode = inode->i_mode; |
| 1520 | int kill = 0; |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1521 | |
Trond Myklebust | 1f2edbe | 2014-04-13 11:11:31 -0400 | [diff] [blame] | 1522 | /* suid always must be killed */ |
| 1523 | if (unlikely(mode & S_ISUID)) |
| 1524 | kill = ATTR_KILL_SUID; |
| 1525 | |
| 1526 | /* |
| 1527 | * sgid without any exec bits is just a mandatory locking mark; leave |
| 1528 | * it alone. If some exec bits are set, it's a real sgid; kill it. |
| 1529 | */ |
| 1530 | if (unlikely((mode & S_ISGID) && (mode & S_IXGRP))) |
| 1531 | kill |= ATTR_KILL_SGID; |
| 1532 | |
| 1533 | if (unlikely(kill && S_ISREG(mode))) |
| 1534 | return kill; |
| 1535 | |
| 1536 | return 0; |
| 1537 | } |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1538 | |
Trond Myklebust | a08a8cd | 2015-02-26 17:36:09 -0500 | [diff] [blame] | 1539 | static void nfs_writeback_check_extend(struct nfs_pgio_header *hdr, |
| 1540 | struct nfs_fattr *fattr) |
| 1541 | { |
| 1542 | struct nfs_pgio_args *argp = &hdr->args; |
| 1543 | struct nfs_pgio_res *resp = &hdr->res; |
Trond Myklebust | 2b83d3d | 2015-07-05 20:06:38 -0400 | [diff] [blame] | 1544 | u64 size = argp->offset + resp->count; |
Trond Myklebust | a08a8cd | 2015-02-26 17:36:09 -0500 | [diff] [blame] | 1545 | |
| 1546 | if (!(fattr->valid & NFS_ATTR_FATTR_SIZE)) |
Trond Myklebust | 2b83d3d | 2015-07-05 20:06:38 -0400 | [diff] [blame] | 1547 | fattr->size = size; |
| 1548 | if (nfs_size_to_loff_t(fattr->size) < i_size_read(hdr->inode)) { |
| 1549 | fattr->valid &= ~NFS_ATTR_FATTR_SIZE; |
Trond Myklebust | a08a8cd | 2015-02-26 17:36:09 -0500 | [diff] [blame] | 1550 | return; |
Trond Myklebust | 2b83d3d | 2015-07-05 20:06:38 -0400 | [diff] [blame] | 1551 | } |
| 1552 | if (size != fattr->size) |
Trond Myklebust | a08a8cd | 2015-02-26 17:36:09 -0500 | [diff] [blame] | 1553 | return; |
| 1554 | /* Set attribute barrier */ |
| 1555 | nfs_fattr_set_barrier(fattr); |
Trond Myklebust | 2b83d3d | 2015-07-05 20:06:38 -0400 | [diff] [blame] | 1556 | /* ...and update size */ |
| 1557 | fattr->valid |= NFS_ATTR_FATTR_SIZE; |
Trond Myklebust | a08a8cd | 2015-02-26 17:36:09 -0500 | [diff] [blame] | 1558 | } |
| 1559 | |
| 1560 | void nfs_writeback_update_inode(struct nfs_pgio_header *hdr) |
| 1561 | { |
Trond Myklebust | 2b83d3d | 2015-07-05 20:06:38 -0400 | [diff] [blame] | 1562 | struct nfs_fattr *fattr = &hdr->fattr; |
Trond Myklebust | a08a8cd | 2015-02-26 17:36:09 -0500 | [diff] [blame] | 1563 | struct inode *inode = hdr->inode; |
| 1564 | |
Trond Myklebust | a08a8cd | 2015-02-26 17:36:09 -0500 | [diff] [blame] | 1565 | spin_lock(&inode->i_lock); |
| 1566 | nfs_writeback_check_extend(hdr, fattr); |
| 1567 | nfs_post_op_update_inode_force_wcc_locked(inode, fattr); |
| 1568 | spin_unlock(&inode->i_lock); |
| 1569 | } |
| 1570 | EXPORT_SYMBOL_GPL(nfs_writeback_update_inode); |
| 1571 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | /* |
| 1573 | * This function is called when the WRITE call is complete. |
| 1574 | */ |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1575 | static int nfs_writeback_done(struct rpc_task *task, |
| 1576 | struct nfs_pgio_header *hdr, |
Anna Schumaker | 0eecb21 | 2014-05-06 09:12:32 -0400 | [diff] [blame] | 1577 | struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | { |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1579 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | |
Chuck Lever | f551e44 | 2006-09-20 14:33:04 -0400 | [diff] [blame] | 1581 | /* |
| 1582 | * ->write_done will attempt to use post-op attributes to detect |
| 1583 | * conflicting writes by other clients. A strict interpretation |
| 1584 | * of close-to-open would allow us to continue caching even if |
| 1585 | * another writer had changed the file, but some applications |
| 1586 | * depend on tighter cache coherency when writing. |
| 1587 | */ |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1588 | status = NFS_PROTO(inode)->write_done(task, hdr); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1589 | if (status != 0) |
Anna Schumaker | 0eecb21 | 2014-05-06 09:12:32 -0400 | [diff] [blame] | 1590 | return status; |
Chuck Lever | 8224b27 | 2017-08-21 15:00:49 -0400 | [diff] [blame] | 1591 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1592 | nfs_add_stats(inode, NFSIOS_SERVERWRITTENBYTES, hdr->res.count); |
Trond Myklebust | 5bb2a7c | 2020-01-06 15:25:09 -0500 | [diff] [blame] | 1593 | trace_nfs_writeback_done(task, hdr); |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 1594 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1595 | if (hdr->res.verf->committed < hdr->args.stable && |
| 1596 | task->tk_status >= 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | /* We tried a write call, but the server did not |
| 1598 | * commit data to stable storage even though we |
| 1599 | * requested it. |
| 1600 | * Note: There is a known bug in Tru64 < 5.0 in which |
| 1601 | * the server reports NFS_DATA_SYNC, but performs |
| 1602 | * NFS_FILE_SYNC. We therefore implement this checking |
| 1603 | * as a dprintk() in order to avoid filling syslog. |
| 1604 | */ |
| 1605 | static unsigned long complain; |
| 1606 | |
Fred Isaman | a69aef1 | 2011-03-03 15:13:47 +0000 | [diff] [blame] | 1607 | /* Note this will print the MDS for a DS write */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | if (time_before(complain, jiffies)) { |
Chuck Lever | 48186c7 | 2008-06-11 17:56:05 -0400 | [diff] [blame] | 1609 | dprintk("NFS: faulty NFS server %s:" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1610 | " (committed = %d) != (stable = %d)\n", |
Fred Isaman | cd84160 | 2012-04-20 14:47:44 -0400 | [diff] [blame] | 1611 | NFS_SERVER(inode)->nfs_client->cl_hostname, |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1612 | hdr->res.verf->committed, hdr->args.stable); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | complain = jiffies + 300 * HZ; |
| 1614 | } |
| 1615 | } |
Trond Myklebust | 1f2edbe | 2014-04-13 11:11:31 -0400 | [diff] [blame] | 1616 | |
| 1617 | /* Deal with the suid/sgid bit corner case */ |
Trond Myklebust | 16e1437 | 2018-03-20 16:53:31 -0400 | [diff] [blame] | 1618 | if (nfs_should_remove_suid(inode)) { |
| 1619 | spin_lock(&inode->i_lock); |
Trond Myklebust | 720869e | 2021-04-13 09:41:16 -0400 | [diff] [blame] | 1620 | nfs_set_cache_invalid(inode, NFS_INO_INVALID_MODE); |
Trond Myklebust | 16e1437 | 2018-03-20 16:53:31 -0400 | [diff] [blame] | 1621 | spin_unlock(&inode->i_lock); |
| 1622 | } |
Anna Schumaker | 0eecb21 | 2014-05-06 09:12:32 -0400 | [diff] [blame] | 1623 | return 0; |
| 1624 | } |
| 1625 | |
| 1626 | /* |
| 1627 | * This function is called when the WRITE call is complete. |
| 1628 | */ |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1629 | static void nfs_writeback_result(struct rpc_task *task, |
| 1630 | struct nfs_pgio_header *hdr) |
Anna Schumaker | 0eecb21 | 2014-05-06 09:12:32 -0400 | [diff] [blame] | 1631 | { |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1632 | struct nfs_pgio_args *argp = &hdr->args; |
| 1633 | struct nfs_pgio_res *resp = &hdr->res; |
Trond Myklebust | 1f2edbe | 2014-04-13 11:11:31 -0400 | [diff] [blame] | 1634 | |
| 1635 | if (resp->count < argp->count) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | static unsigned long complain; |
| 1637 | |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1638 | /* This a short write! */ |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1639 | nfs_inc_stats(hdr->inode, NFSIOS_SHORTWRITE); |
Chuck Lever | 91d5b47 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 1640 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | /* Has the server at least made some progress? */ |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1642 | if (resp->count == 0) { |
| 1643 | if (time_before(complain, jiffies)) { |
| 1644 | printk(KERN_WARNING |
| 1645 | "NFS: Server wrote zero bytes, expected %u.\n", |
| 1646 | argp->count); |
| 1647 | complain = jiffies + 300 * HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | } |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1649 | nfs_set_pgio_error(hdr, -EIO, argp->offset); |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1650 | task->tk_status = -EIO; |
Fred Isaman | 1360289 | 2011-02-11 15:42:38 +0000 | [diff] [blame] | 1651 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | } |
Kinglong Mee | f8417b48 | 2015-10-16 17:23:29 +0800 | [diff] [blame] | 1653 | |
| 1654 | /* For non rpc-based layout drivers, retry-through-MDS */ |
| 1655 | if (!task->tk_ops) { |
| 1656 | hdr->pnfs_error = -EAGAIN; |
| 1657 | return; |
| 1658 | } |
| 1659 | |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1660 | /* Was this an NFSv2 write or an NFSv3 stable write? */ |
| 1661 | if (resp->verf->committed != NFS_UNSTABLE) { |
| 1662 | /* Resend from where the server left off */ |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 1663 | hdr->mds_offset += resp->count; |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1664 | argp->offset += resp->count; |
| 1665 | argp->pgbase += resp->count; |
| 1666 | argp->count -= resp->count; |
| 1667 | } else { |
| 1668 | /* Resend as a stable write in order to avoid |
| 1669 | * headaches in the case of a server crash. |
| 1670 | */ |
| 1671 | argp->stable = NFS_FILE_SYNC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | } |
Trond Myklebust | 8c9cb71 | 2020-01-06 15:25:13 -0500 | [diff] [blame] | 1673 | resp->count = 0; |
| 1674 | resp->verf->committed = 0; |
Fred Isaman | 6c75dc0 | 2012-04-20 14:47:47 -0400 | [diff] [blame] | 1675 | rpc_restart_call_prepare(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1676 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | } |
| 1678 | |
Trond Myklebust | af7cf05 | 2015-09-29 20:34:05 -0400 | [diff] [blame] | 1679 | static int wait_on_commit(struct nfs_mds_commit_info *cinfo) |
Trond Myklebust | 71d0a61 | 2010-04-22 15:35:57 -0400 | [diff] [blame] | 1680 | { |
Peter Zijlstra | 723c921 | 2018-03-15 11:44:34 +0100 | [diff] [blame] | 1681 | return wait_var_event_killable(&cinfo->rpcs_out, |
| 1682 | !atomic_read(&cinfo->rpcs_out)); |
Trond Myklebust | af7cf05 | 2015-09-29 20:34:05 -0400 | [diff] [blame] | 1683 | } |
| 1684 | |
| 1685 | static void nfs_commit_begin(struct nfs_mds_commit_info *cinfo) |
| 1686 | { |
| 1687 | atomic_inc(&cinfo->rpcs_out); |
| 1688 | } |
| 1689 | |
| 1690 | static void nfs_commit_end(struct nfs_mds_commit_info *cinfo) |
| 1691 | { |
| 1692 | if (atomic_dec_and_test(&cinfo->rpcs_out)) |
Peter Zijlstra | 723c921 | 2018-03-15 11:44:34 +0100 | [diff] [blame] | 1693 | wake_up_var(&cinfo->rpcs_out); |
Trond Myklebust | 71d0a61 | 2010-04-22 15:35:57 -0400 | [diff] [blame] | 1694 | } |
| 1695 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1696 | void nfs_commitdata_release(struct nfs_commit_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | { |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1698 | put_nfs_open_context(data->context); |
| 1699 | nfs_commit_free(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | } |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 1701 | EXPORT_SYMBOL_GPL(nfs_commitdata_release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1702 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1703 | int nfs_initiate_commit(struct rpc_clnt *clnt, struct nfs_commit_data *data, |
Peng Tao | c36aae9 | 2014-06-09 07:10:14 +0800 | [diff] [blame] | 1704 | const struct nfs_rpc_ops *nfs_ops, |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1705 | const struct rpc_call_ops *call_ops, |
Andy Adamson | 9f0ec176 | 2012-04-27 17:53:44 -0400 | [diff] [blame] | 1706 | int how, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | { |
Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 1708 | struct rpc_task *task; |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1709 | int priority = flush_task_priority(how); |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1710 | struct rpc_message msg = { |
| 1711 | .rpc_argp = &data->args, |
| 1712 | .rpc_resp = &data->res, |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1713 | .rpc_cred = data->cred, |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1714 | }; |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1715 | struct rpc_task_setup task_setup_data = { |
Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 1716 | .task = &data->task, |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1717 | .rpc_client = clnt, |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1718 | .rpc_message = &msg, |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1719 | .callback_ops = call_ops, |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1720 | .callback_data = data, |
Trond Myklebust | 101070c | 2008-02-19 20:04:23 -0500 | [diff] [blame] | 1721 | .workqueue = nfsiod_workqueue, |
Trond Myklebust | 4fa7ef6 | 2020-05-13 09:55:36 -0400 | [diff] [blame] | 1722 | .flags = RPC_TASK_ASYNC | flags, |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1723 | .priority = priority, |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 1724 | }; |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1725 | /* Set up the initial task struct. */ |
Anna Schumaker | e9ae1ee | 2018-05-04 16:22:49 -0400 | [diff] [blame] | 1726 | nfs_ops->commit_setup(data, &msg, &task_setup_data.rpc_client); |
Chuck Lever | 8224b27 | 2017-08-21 15:00:49 -0400 | [diff] [blame] | 1727 | trace_nfs_initiate_commit(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | |
Kinglong Mee | b4839eb | 2015-07-01 12:00:13 +0800 | [diff] [blame] | 1729 | dprintk("NFS: initiated commit call\n"); |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 1730 | |
Trond Myklebust | 0773769 | 2007-10-25 18:42:54 -0400 | [diff] [blame] | 1731 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 1732 | if (IS_ERR(task)) |
| 1733 | return PTR_ERR(task); |
Jeff Layton | d2224e7 | 2011-03-06 17:14:13 +0000 | [diff] [blame] | 1734 | if (how & FLUSH_SYNC) |
| 1735 | rpc_wait_for_completion_task(task); |
Trond Myklebust | dbae4c7 | 2008-04-14 14:54:53 -0400 | [diff] [blame] | 1736 | rpc_put_task(task); |
| 1737 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | } |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 1739 | EXPORT_SYMBOL_GPL(nfs_initiate_commit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | |
Peng Tao | 378520b | 2014-08-07 10:15:02 +0800 | [diff] [blame] | 1741 | static loff_t nfs_get_lwb(struct list_head *head) |
| 1742 | { |
| 1743 | loff_t lwb = 0; |
| 1744 | struct nfs_page *req; |
| 1745 | |
| 1746 | list_for_each_entry(req, head, wb_list) |
| 1747 | if (lwb < (req_offset(req) + req->wb_bytes)) |
| 1748 | lwb = req_offset(req) + req->wb_bytes; |
| 1749 | |
| 1750 | return lwb; |
| 1751 | } |
| 1752 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | /* |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1754 | * Set up the argument/result storage required for the RPC call. |
| 1755 | */ |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1756 | void nfs_init_commit(struct nfs_commit_data *data, |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1757 | struct list_head *head, |
| 1758 | struct pnfs_layout_segment *lseg, |
| 1759 | struct nfs_commit_info *cinfo) |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1760 | { |
Trond Myklebust | 19573c9 | 2020-03-19 17:29:12 -0400 | [diff] [blame] | 1761 | struct nfs_page *first; |
| 1762 | struct nfs_open_context *ctx; |
| 1763 | struct inode *inode; |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1764 | |
| 1765 | /* Set up the RPC argument and reply structs |
| 1766 | * NB: take care not to mess about with data->commit et al. */ |
| 1767 | |
Trond Myklebust | 19573c9 | 2020-03-19 17:29:12 -0400 | [diff] [blame] | 1768 | if (head) |
| 1769 | list_splice_init(head, &data->pages); |
| 1770 | |
| 1771 | first = nfs_list_entry(data->pages.next); |
| 1772 | ctx = nfs_req_openctx(first); |
| 1773 | inode = d_inode(ctx->dentry); |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1774 | |
| 1775 | data->inode = inode; |
Trond Myklebust | 9fcd596 | 2019-04-07 13:59:11 -0400 | [diff] [blame] | 1776 | data->cred = ctx->cred; |
Fred Isaman | 988b6dc | 2011-03-23 13:27:52 +0000 | [diff] [blame] | 1777 | data->lseg = lseg; /* reference transferred */ |
Peng Tao | 378520b | 2014-08-07 10:15:02 +0800 | [diff] [blame] | 1778 | /* only set lwb for pnfs commit */ |
| 1779 | if (lseg) |
| 1780 | data->lwb = nfs_get_lwb(&data->pages); |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1781 | data->mds_ops = &nfs_commit_ops; |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1782 | data->completion_ops = cinfo->completion_ops; |
Fred Isaman | b359f9d | 2012-04-20 14:47:55 -0400 | [diff] [blame] | 1783 | data->dreq = cinfo->dreq; |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1784 | |
| 1785 | data->args.fh = NFS_FH(data->inode); |
| 1786 | /* Note: we always request a commit of the entire inode */ |
| 1787 | data->args.offset = 0; |
| 1788 | data->args.count = 0; |
Trond Myklebust | 9fcd596 | 2019-04-07 13:59:11 -0400 | [diff] [blame] | 1789 | data->context = get_nfs_open_context(ctx); |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1790 | data->res.fattr = &data->fattr; |
| 1791 | data->res.verf = &data->verf; |
| 1792 | nfs_fattr_init(&data->fattr); |
| 1793 | } |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 1794 | EXPORT_SYMBOL_GPL(nfs_init_commit); |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1795 | |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 1796 | void nfs_retry_commit(struct list_head *page_list, |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1797 | struct pnfs_layout_segment *lseg, |
Weston Andros Adamson | b57ff13 | 2014-09-05 18:20:21 -0400 | [diff] [blame] | 1798 | struct nfs_commit_info *cinfo, |
| 1799 | u32 ds_commit_idx) |
Fred Isaman | 64bfeb4 | 2011-03-23 13:27:47 +0000 | [diff] [blame] | 1800 | { |
| 1801 | struct nfs_page *req; |
| 1802 | |
| 1803 | while (!list_empty(page_list)) { |
| 1804 | req = nfs_list_entry(page_list->next); |
| 1805 | nfs_list_remove_request(req); |
Weston Andros Adamson | b57ff13 | 2014-09-05 18:20:21 -0400 | [diff] [blame] | 1806 | nfs_mark_request_commit(req, lseg, cinfo, ds_commit_idx); |
Tom Haynes | 487b9b8 | 2015-02-13 13:19:54 -0800 | [diff] [blame] | 1807 | if (!cinfo->dreq) |
| 1808 | nfs_clear_page_commit(req->wb_page); |
Trond Myklebust | 1d1afcb | 2012-05-09 14:04:55 -0400 | [diff] [blame] | 1809 | nfs_unlock_and_release_request(req); |
Fred Isaman | 64bfeb4 | 2011-03-23 13:27:47 +0000 | [diff] [blame] | 1810 | } |
| 1811 | } |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 1812 | EXPORT_SYMBOL_GPL(nfs_retry_commit); |
Fred Isaman | 64bfeb4 | 2011-03-23 13:27:47 +0000 | [diff] [blame] | 1813 | |
Trond Myklebust | b20135d | 2015-12-31 09:28:06 -0500 | [diff] [blame] | 1814 | static void |
| 1815 | nfs_commit_resched_write(struct nfs_commit_info *cinfo, |
| 1816 | struct nfs_page *req) |
| 1817 | { |
| 1818 | __set_page_dirty_nobuffers(req->wb_page); |
| 1819 | } |
| 1820 | |
Fred Isaman | 9ace33c | 2011-03-23 13:27:45 +0000 | [diff] [blame] | 1821 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | * Commit dirty pages |
| 1823 | */ |
| 1824 | static int |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1825 | nfs_commit_list(struct inode *inode, struct list_head *head, int how, |
| 1826 | struct nfs_commit_info *cinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | { |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1828 | struct nfs_commit_data *data; |
Olga Kornievskaia | 85e39fe | 2021-06-23 23:28:51 -0400 | [diff] [blame] | 1829 | unsigned short task_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | |
Weston Andros Adamson | ade8feb | 2016-05-25 10:07:23 -0400 | [diff] [blame] | 1831 | /* another commit raced with us */ |
| 1832 | if (list_empty(head)) |
| 1833 | return 0; |
| 1834 | |
NeilBrown | 518662e | 2017-04-10 12:22:09 +1000 | [diff] [blame] | 1835 | data = nfs_commitdata_alloc(true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | |
| 1837 | /* Set up the argument struct */ |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1838 | nfs_init_commit(data, head, NULL, cinfo); |
| 1839 | atomic_inc(&cinfo->mds->rpcs_out); |
Olga Kornievskaia | 85e39fe | 2021-06-23 23:28:51 -0400 | [diff] [blame] | 1840 | if (NFS_SERVER(inode)->nfs_client->cl_minorversion) |
| 1841 | task_flags = RPC_TASK_MOVEABLE; |
Peng Tao | c36aae9 | 2014-06-09 07:10:14 +0800 | [diff] [blame] | 1842 | return nfs_initiate_commit(NFS_CLIENT(inode), data, NFS_PROTO(inode), |
Olga Kornievskaia | 85e39fe | 2021-06-23 23:28:51 -0400 | [diff] [blame] | 1843 | data->mds_ops, how, |
| 1844 | RPC_TASK_CRED_NOREF | task_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | } |
| 1846 | |
| 1847 | /* |
| 1848 | * COMMIT call returned |
| 1849 | */ |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1850 | static void nfs_commit_done(struct rpc_task *task, void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | { |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1852 | struct nfs_commit_data *data = calldata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1853 | |
Chuck Lever | a3f565b | 2007-01-31 12:14:01 -0500 | [diff] [blame] | 1854 | dprintk("NFS: %5u nfs_commit_done (status %d)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | task->tk_pid, task->tk_status); |
| 1856 | |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1857 | /* Call the NFS version-specific code */ |
Trond Myklebust | c0d0e96 | 2011-04-12 12:29:15 -0400 | [diff] [blame] | 1858 | NFS_PROTO(data->inode)->commit_done(task, data); |
Trond Myklebust | 7bdd297 | 2020-01-06 15:25:10 -0500 | [diff] [blame] | 1859 | trace_nfs_commit_done(task, data); |
Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1860 | } |
| 1861 | |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1862 | static void nfs_commit_release_pages(struct nfs_commit_data *data) |
Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1863 | { |
Trond Myklebust | 221203c | 2020-01-06 15:25:04 -0500 | [diff] [blame] | 1864 | const struct nfs_writeverf *verf = data->res.verf; |
Fred Isaman | 5917ce8 | 2011-03-23 13:27:48 +0000 | [diff] [blame] | 1865 | struct nfs_page *req; |
Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1866 | int status = data->task.tk_status; |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1867 | struct nfs_commit_info cinfo; |
NeilBrown | 353db79 | 2014-09-24 11:28:32 +1000 | [diff] [blame] | 1868 | struct nfs_server *nfss; |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1869 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1870 | while (!list_empty(&data->pages)) { |
| 1871 | req = nfs_list_entry(data->pages.next); |
| 1872 | nfs_list_remove_request(req); |
Anna Schumaker | 67911c8 | 2016-01-19 14:37:30 -0500 | [diff] [blame] | 1873 | if (req->wb_page) |
| 1874 | nfs_clear_page_commit(req->wb_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | |
Niels de Vos | 1e8968c | 2013-12-17 18:20:16 +0100 | [diff] [blame] | 1876 | dprintk("NFS: commit (%s/%llu %d@%lld)", |
Trond Myklebust | 9fcd596 | 2019-04-07 13:59:11 -0400 | [diff] [blame] | 1877 | nfs_req_openctx(req)->dentry->d_sb->s_id, |
| 1878 | (unsigned long long)NFS_FILEID(d_inode(nfs_req_openctx(req)->dentry)), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | req->wb_bytes, |
| 1880 | (long long)req_offset(req)); |
Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1881 | if (status < 0) { |
Trond Myklebust | 6fbda89 | 2019-04-07 13:59:05 -0400 | [diff] [blame] | 1882 | if (req->wb_page) { |
Chuck Lever | 861e167 | 2019-12-23 10:28:33 -0500 | [diff] [blame] | 1883 | trace_nfs_commit_error(req, status); |
Trond Myklebust | 6fbda89 | 2019-04-07 13:59:05 -0400 | [diff] [blame] | 1884 | nfs_mapping_set_error(req->wb_page, status); |
Kinglong Mee | 38a3310 | 2017-03-09 11:36:36 +0800 | [diff] [blame] | 1885 | nfs_inode_remove_request(req); |
Trond Myklebust | 6fbda89 | 2019-04-07 13:59:05 -0400 | [diff] [blame] | 1886 | } |
Joe Perches | ddeaa63 | 2016-10-15 13:59:03 -0700 | [diff] [blame] | 1887 | dprintk_cont(", error = %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | goto next; |
| 1889 | } |
| 1890 | |
| 1891 | /* Okay, COMMIT succeeded, apparently. Check the verifier |
| 1892 | * returned by the server against all stored verfs. */ |
Trond Myklebust | 1f28476 | 2020-03-21 09:27:46 -0400 | [diff] [blame] | 1893 | if (nfs_write_match_verf(verf, req)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | /* We have a match */ |
Kinglong Mee | 38a3310 | 2017-03-09 11:36:36 +0800 | [diff] [blame] | 1895 | if (req->wb_page) |
| 1896 | nfs_inode_remove_request(req); |
Joe Perches | ddeaa63 | 2016-10-15 13:59:03 -0700 | [diff] [blame] | 1897 | dprintk_cont(" OK\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | goto next; |
| 1899 | } |
| 1900 | /* We have a mismatch. Write the page again */ |
Joe Perches | ddeaa63 | 2016-10-15 13:59:03 -0700 | [diff] [blame] | 1901 | dprintk_cont(" mismatch\n"); |
Fred | 6d884e8 | 2008-03-19 11:24:38 -0400 | [diff] [blame] | 1902 | nfs_mark_request_dirty(req); |
Trond Myklebust | 9fcd596 | 2019-04-07 13:59:11 -0400 | [diff] [blame] | 1903 | set_bit(NFS_CONTEXT_RESEND_WRITES, &nfs_req_openctx(req)->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | next: |
Trond Myklebust | 1d1afcb | 2012-05-09 14:04:55 -0400 | [diff] [blame] | 1905 | nfs_unlock_and_release_request(req); |
Trond Myklebust | 7f1bda4 | 2017-12-18 14:39:13 -0500 | [diff] [blame] | 1906 | /* Latency breaker */ |
| 1907 | cond_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | } |
NeilBrown | 353db79 | 2014-09-24 11:28:32 +1000 | [diff] [blame] | 1909 | nfss = NFS_SERVER(data->inode); |
| 1910 | if (atomic_long_read(&nfss->writeback) < NFS_CONGESTION_OFF_THRESH) |
Jan Kara | 0db10944 | 2017-04-12 12:24:45 +0200 | [diff] [blame] | 1911 | clear_bdi_congested(inode_to_bdi(data->inode), BLK_RW_ASYNC); |
NeilBrown | 353db79 | 2014-09-24 11:28:32 +1000 | [diff] [blame] | 1912 | |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1913 | nfs_init_cinfo(&cinfo, data->inode, data->dreq); |
Trond Myklebust | af7cf05 | 2015-09-29 20:34:05 -0400 | [diff] [blame] | 1914 | nfs_commit_end(cinfo.mds); |
Fred Isaman | 5917ce8 | 2011-03-23 13:27:48 +0000 | [diff] [blame] | 1915 | } |
| 1916 | |
| 1917 | static void nfs_commit_release(void *calldata) |
| 1918 | { |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1919 | struct nfs_commit_data *data = calldata; |
Fred Isaman | 5917ce8 | 2011-03-23 13:27:48 +0000 | [diff] [blame] | 1920 | |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1921 | data->completion_ops->completion(data); |
Trond Myklebust | c9d8f89 | 2008-04-15 16:56:39 -0400 | [diff] [blame] | 1922 | nfs_commitdata_release(calldata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1923 | } |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1924 | |
| 1925 | static const struct rpc_call_ops nfs_commit_ops = { |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 1926 | .rpc_call_prepare = nfs_commit_prepare, |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 1927 | .rpc_call_done = nfs_commit_done, |
| 1928 | .rpc_release = nfs_commit_release, |
| 1929 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1930 | |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1931 | static const struct nfs_commit_completion_ops nfs_commit_completion_ops = { |
| 1932 | .completion = nfs_commit_release_pages, |
Trond Myklebust | b20135d | 2015-12-31 09:28:06 -0500 | [diff] [blame] | 1933 | .resched_write = nfs_commit_resched_write, |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 1934 | }; |
| 1935 | |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 1936 | int nfs_generic_commit_list(struct inode *inode, struct list_head *head, |
| 1937 | int how, struct nfs_commit_info *cinfo) |
Fred Isaman | 84c53ab | 2012-04-20 14:47:52 -0400 | [diff] [blame] | 1938 | { |
| 1939 | int status; |
| 1940 | |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1941 | status = pnfs_commit_list(inode, head, how, cinfo); |
Fred Isaman | 84c53ab | 2012-04-20 14:47:52 -0400 | [diff] [blame] | 1942 | if (status == PNFS_NOT_ATTEMPTED) |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1943 | status = nfs_commit_list(inode, head, how, cinfo); |
Fred Isaman | 84c53ab | 2012-04-20 14:47:52 -0400 | [diff] [blame] | 1944 | return status; |
| 1945 | } |
| 1946 | |
Trond Myklebust | c4f24df | 2018-03-07 15:22:31 -0500 | [diff] [blame] | 1947 | static int __nfs_commit_inode(struct inode *inode, int how, |
| 1948 | struct writeback_control *wbc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1949 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | LIST_HEAD(head); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1951 | struct nfs_commit_info cinfo; |
Trond Myklebust | 71d0a61 | 2010-04-22 15:35:57 -0400 | [diff] [blame] | 1952 | int may_wait = how & FLUSH_SYNC; |
Trond Myklebust | c4f24df | 2018-03-07 15:22:31 -0500 | [diff] [blame] | 1953 | int ret, nscan; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 1955 | nfs_init_cinfo_from_inode(&cinfo, inode); |
Trond Myklebust | af7cf05 | 2015-09-29 20:34:05 -0400 | [diff] [blame] | 1956 | nfs_commit_begin(cinfo.mds); |
Trond Myklebust | c4f24df | 2018-03-07 15:22:31 -0500 | [diff] [blame] | 1957 | for (;;) { |
| 1958 | ret = nscan = nfs_scan_commit(inode, &head, &cinfo); |
| 1959 | if (ret <= 0) |
| 1960 | break; |
| 1961 | ret = nfs_generic_commit_list(inode, &head, how, &cinfo); |
| 1962 | if (ret < 0) |
| 1963 | break; |
| 1964 | ret = 0; |
| 1965 | if (wbc && wbc->sync_mode == WB_SYNC_NONE) { |
| 1966 | if (nscan < wbc->nr_to_write) |
| 1967 | wbc->nr_to_write -= nscan; |
| 1968 | else |
| 1969 | wbc->nr_to_write = 0; |
| 1970 | } |
| 1971 | if (nscan < INT_MAX) |
| 1972 | break; |
| 1973 | cond_resched(); |
| 1974 | } |
Trond Myklebust | af7cf05 | 2015-09-29 20:34:05 -0400 | [diff] [blame] | 1975 | nfs_commit_end(cinfo.mds); |
Trond Myklebust | c4f24df | 2018-03-07 15:22:31 -0500 | [diff] [blame] | 1976 | if (ret || !may_wait) |
| 1977 | return ret; |
| 1978 | return wait_on_commit(cinfo.mds); |
| 1979 | } |
| 1980 | |
| 1981 | int nfs_commit_inode(struct inode *inode, int how) |
| 1982 | { |
| 1983 | return __nfs_commit_inode(inode, how, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | } |
Trond Myklebust | b20135d | 2015-12-31 09:28:06 -0500 | [diff] [blame] | 1985 | EXPORT_SYMBOL_GPL(nfs_commit_inode); |
Trond Myklebust | 8fc795f | 2010-02-19 16:46:56 -0800 | [diff] [blame] | 1986 | |
Anna Schumaker | ae09c31 | 2015-07-13 14:01:32 -0400 | [diff] [blame] | 1987 | int nfs_write_inode(struct inode *inode, struct writeback_control *wbc) |
Trond Myklebust | 8fc795f | 2010-02-19 16:46:56 -0800 | [diff] [blame] | 1988 | { |
Trond Myklebust | 420e364 | 2010-02-19 17:00:02 -0800 | [diff] [blame] | 1989 | struct nfs_inode *nfsi = NFS_I(inode); |
| 1990 | int flags = FLUSH_SYNC; |
| 1991 | int ret = 0; |
Trond Myklebust | 8fc795f | 2010-02-19 16:46:56 -0800 | [diff] [blame] | 1992 | |
Jeff Layton | a00dd6c | 2010-09-28 09:14:01 -0400 | [diff] [blame] | 1993 | if (wbc->sync_mode == WB_SYNC_NONE) { |
Trond Myklebust | c4f24df | 2018-03-07 15:22:31 -0500 | [diff] [blame] | 1994 | /* no commits means nothing needs to be done */ |
| 1995 | if (!atomic_long_read(&nfsi->commit_info.ncommit)) |
| 1996 | goto check_requests_outstanding; |
| 1997 | |
Jeff Layton | a00dd6c | 2010-09-28 09:14:01 -0400 | [diff] [blame] | 1998 | /* Don't commit yet if this is a non-blocking flush and there |
| 1999 | * are a lot of outstanding writes for this mapping. |
| 2000 | */ |
Trond Myklebust | 1a4edf0 | 2017-06-20 19:35:38 -0400 | [diff] [blame] | 2001 | if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK)) |
Jeff Layton | a00dd6c | 2010-09-28 09:14:01 -0400 | [diff] [blame] | 2002 | goto out_mark_dirty; |
Trond Myklebust | 420e364 | 2010-02-19 17:00:02 -0800 | [diff] [blame] | 2003 | |
Jeff Layton | a00dd6c | 2010-09-28 09:14:01 -0400 | [diff] [blame] | 2004 | /* don't wait for the COMMIT response */ |
Trond Myklebust | 420e364 | 2010-02-19 17:00:02 -0800 | [diff] [blame] | 2005 | flags = 0; |
Jeff Layton | a00dd6c | 2010-09-28 09:14:01 -0400 | [diff] [blame] | 2006 | } |
| 2007 | |
Trond Myklebust | c4f24df | 2018-03-07 15:22:31 -0500 | [diff] [blame] | 2008 | ret = __nfs_commit_inode(inode, flags, wbc); |
| 2009 | if (!ret) { |
| 2010 | if (flags & FLUSH_SYNC) |
| 2011 | return 0; |
| 2012 | } else if (atomic_long_read(&nfsi->commit_info.ncommit)) |
| 2013 | goto out_mark_dirty; |
| 2014 | |
| 2015 | check_requests_outstanding: |
| 2016 | if (!atomic_read(&nfsi->commit_info.rpcs_out)) |
| 2017 | return ret; |
Trond Myklebust | 420e364 | 2010-02-19 17:00:02 -0800 | [diff] [blame] | 2018 | out_mark_dirty: |
Trond Myklebust | 8fc795f | 2010-02-19 16:46:56 -0800 | [diff] [blame] | 2019 | __mark_inode_dirty(inode, I_DIRTY_DATASYNC); |
| 2020 | return ret; |
| 2021 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 2022 | EXPORT_SYMBOL_GPL(nfs_write_inode); |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 2023 | |
Trond Myklebust | acdc53b | 2010-02-19 17:03:26 -0800 | [diff] [blame] | 2024 | /* |
Trond Myklebust | 837bb1d | 2016-06-25 18:12:03 -0400 | [diff] [blame] | 2025 | * Wrapper for filemap_write_and_wait_range() |
| 2026 | * |
| 2027 | * Needed for pNFS in order to ensure data becomes visible to the |
| 2028 | * client. |
| 2029 | */ |
| 2030 | int nfs_filemap_write_and_wait_range(struct address_space *mapping, |
| 2031 | loff_t lstart, loff_t lend) |
| 2032 | { |
| 2033 | int ret; |
| 2034 | |
| 2035 | ret = filemap_write_and_wait_range(mapping, lstart, lend); |
| 2036 | if (ret == 0) |
| 2037 | ret = pnfs_sync_inode(mapping->host, true); |
| 2038 | return ret; |
| 2039 | } |
| 2040 | EXPORT_SYMBOL_GPL(nfs_filemap_write_and_wait_range); |
| 2041 | |
| 2042 | /* |
Trond Myklebust | acdc53b | 2010-02-19 17:03:26 -0800 | [diff] [blame] | 2043 | * flush the inode to disk. |
| 2044 | */ |
| 2045 | int nfs_wb_all(struct inode *inode) |
Trond Myklebust | 34901f7 | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 2046 | { |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 2047 | int ret; |
Trond Myklebust | 34901f7 | 2007-07-25 14:09:54 -0400 | [diff] [blame] | 2048 | |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 2049 | trace_nfs_writeback_inode_enter(inode); |
| 2050 | |
Trond Myklebust | 5bb89b4 | 2015-03-25 14:14:42 -0400 | [diff] [blame] | 2051 | ret = filemap_write_and_wait(inode->i_mapping); |
Chuck Lever | 6b19687 | 2015-05-06 18:26:58 -0400 | [diff] [blame] | 2052 | if (ret) |
| 2053 | goto out; |
| 2054 | ret = nfs_commit_inode(inode, FLUSH_SYNC); |
| 2055 | if (ret < 0) |
| 2056 | goto out; |
| 2057 | pnfs_sync_inode(inode, true); |
| 2058 | ret = 0; |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 2059 | |
Chuck Lever | 6b19687 | 2015-05-06 18:26:58 -0400 | [diff] [blame] | 2060 | out: |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 2061 | trace_nfs_writeback_inode_exit(inode, ret); |
| 2062 | return ret; |
Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 2063 | } |
Bryan Schumaker | ddda8e0 | 2012-07-30 16:05:23 -0400 | [diff] [blame] | 2064 | EXPORT_SYMBOL_GPL(nfs_wb_all); |
Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 2065 | |
Trond Myklebust | 1b3b4a1 | 2007-08-28 10:29:36 -0400 | [diff] [blame] | 2066 | int nfs_wb_page_cancel(struct inode *inode, struct page *page) |
| 2067 | { |
| 2068 | struct nfs_page *req; |
Trond Myklebust | 1b3b4a1 | 2007-08-28 10:29:36 -0400 | [diff] [blame] | 2069 | int ret = 0; |
| 2070 | |
Weston Andros Adamson | 3e21704 | 2014-07-11 10:20:49 -0400 | [diff] [blame] | 2071 | wait_on_page_writeback(page); |
| 2072 | |
| 2073 | /* blocking call to cancel all requests and join to a single (head) |
| 2074 | * request */ |
Trond Myklebust | 6d17d65 | 2017-07-09 13:45:27 -0400 | [diff] [blame] | 2075 | req = nfs_lock_and_join_requests(page); |
Weston Andros Adamson | 3e21704 | 2014-07-11 10:20:49 -0400 | [diff] [blame] | 2076 | |
| 2077 | if (IS_ERR(req)) { |
| 2078 | ret = PTR_ERR(req); |
| 2079 | } else if (req) { |
| 2080 | /* all requests from this page have been cancelled by |
| 2081 | * nfs_lock_and_join_requests, so just remove the head |
| 2082 | * request from the inode / page_private pointer and |
| 2083 | * release it */ |
| 2084 | nfs_inode_remove_request(req); |
Weston Andros Adamson | 3e21704 | 2014-07-11 10:20:49 -0400 | [diff] [blame] | 2085 | nfs_unlock_and_release_request(req); |
Trond Myklebust | 1b3b4a1 | 2007-08-28 10:29:36 -0400 | [diff] [blame] | 2086 | } |
Weston Andros Adamson | 3e21704 | 2014-07-11 10:20:49 -0400 | [diff] [blame] | 2087 | |
Trond Myklebust | 1b3b4a1 | 2007-08-28 10:29:36 -0400 | [diff] [blame] | 2088 | return ret; |
| 2089 | } |
| 2090 | |
Trond Myklebust | 7f2f12d | 2010-02-19 17:03:28 -0800 | [diff] [blame] | 2091 | /* |
| 2092 | * Write back all requests on one page - we do this before reading it. |
| 2093 | */ |
Trond Myklebust | c373fff | 2017-04-26 12:26:22 -0400 | [diff] [blame] | 2094 | int nfs_wb_page(struct inode *inode, struct page *page) |
Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 2095 | { |
Mel Gorman | 29418aa | 2012-07-31 16:45:10 -0700 | [diff] [blame] | 2096 | loff_t range_start = page_file_offset(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2097 | loff_t range_end = range_start + (loff_t)(PAGE_SIZE - 1); |
Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 2098 | struct writeback_control wbc = { |
Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 2099 | .sync_mode = WB_SYNC_ALL, |
Trond Myklebust | 7f2f12d | 2010-02-19 17:03:28 -0800 | [diff] [blame] | 2100 | .nr_to_write = 0, |
Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 2101 | .range_start = range_start, |
| 2102 | .range_end = range_end, |
| 2103 | }; |
| 2104 | int ret; |
Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 2105 | |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 2106 | trace_nfs_writeback_page_enter(inode); |
| 2107 | |
Trond Myklebust | 0522f6a | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 2108 | for (;;) { |
Trond Myklebust | ba8b06e | 2010-04-27 18:33:54 -0400 | [diff] [blame] | 2109 | wait_on_page_writeback(page); |
Trond Myklebust | 73e3302 | 2008-04-11 16:03:54 -0400 | [diff] [blame] | 2110 | if (clear_page_dirty_for_io(page)) { |
Trond Myklebust | c373fff | 2017-04-26 12:26:22 -0400 | [diff] [blame] | 2111 | ret = nfs_writepage_locked(page, &wbc); |
Trond Myklebust | 73e3302 | 2008-04-11 16:03:54 -0400 | [diff] [blame] | 2112 | if (ret < 0) |
| 2113 | goto out_error; |
Trond Myklebust | 0522f6a | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 2114 | continue; |
Trond Myklebust | 7f2f12d | 2010-02-19 17:03:28 -0800 | [diff] [blame] | 2115 | } |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 2116 | ret = 0; |
Trond Myklebust | 0522f6a | 2010-05-26 08:42:24 -0400 | [diff] [blame] | 2117 | if (!PagePrivate(page)) |
| 2118 | break; |
| 2119 | ret = nfs_commit_inode(inode, FLUSH_SYNC); |
Trond Myklebust | ba8b06e | 2010-04-27 18:33:54 -0400 | [diff] [blame] | 2120 | if (ret < 0) |
Trond Myklebust | 73e3302 | 2008-04-11 16:03:54 -0400 | [diff] [blame] | 2121 | goto out_error; |
Trond Myklebust | 7f2f12d | 2010-02-19 17:03:28 -0800 | [diff] [blame] | 2122 | } |
Trond Myklebust | 73e3302 | 2008-04-11 16:03:54 -0400 | [diff] [blame] | 2123 | out_error: |
Trond Myklebust | f4ce129 | 2013-08-19 18:59:33 -0400 | [diff] [blame] | 2124 | trace_nfs_writeback_page_exit(inode, ret); |
Trond Myklebust | 4d770cc | 2006-12-05 00:35:41 -0500 | [diff] [blame] | 2125 | return ret; |
Trond Myklebust | 1c75950 | 2006-10-09 16:18:38 -0400 | [diff] [blame] | 2126 | } |
| 2127 | |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 2128 | #ifdef CONFIG_MIGRATION |
| 2129 | int nfs_migrate_page(struct address_space *mapping, struct page *newpage, |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame] | 2130 | struct page *page, enum migrate_mode mode) |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 2131 | { |
Jeff Layton | 2da9565 | 2011-10-12 10:57:42 -0400 | [diff] [blame] | 2132 | /* |
| 2133 | * If PagePrivate is set, then the page is currently associated with |
| 2134 | * an in-progress read or write request. Don't try to migrate it. |
| 2135 | * |
| 2136 | * FIXME: we could do this in principle, but we'll need a way to ensure |
| 2137 | * that we can safely release the inode reference while holding |
| 2138 | * the page lock. |
| 2139 | */ |
| 2140 | if (PagePrivate(page)) |
| 2141 | return -EBUSY; |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 2142 | |
David Howells | 8c209ce | 2012-12-05 13:34:49 +0000 | [diff] [blame] | 2143 | if (!nfs_fscache_release_page(page, GFP_KERNEL)) |
| 2144 | return -EBUSY; |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 2145 | |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame] | 2146 | return migrate_page(mapping, newpage, page, mode); |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 2147 | } |
| 2148 | #endif |
| 2149 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2150 | int __init nfs_init_writepagecache(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | { |
| 2152 | nfs_wdata_cachep = kmem_cache_create("nfs_write_data", |
Weston Andros Adamson | 1e7f3a4 | 2014-06-09 11:48:33 -0400 | [diff] [blame] | 2153 | sizeof(struct nfs_pgio_header), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2154 | 0, SLAB_HWCACHE_ALIGN, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 2155 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | if (nfs_wdata_cachep == NULL) |
| 2157 | return -ENOMEM; |
| 2158 | |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 2159 | nfs_wdata_mempool = mempool_create_slab_pool(MIN_POOL_WRITE, |
| 2160 | nfs_wdata_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2161 | if (nfs_wdata_mempool == NULL) |
Jeff Layton | 3dd4765 | 2012-08-02 14:30:56 -0400 | [diff] [blame] | 2162 | goto out_destroy_write_cache; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 2164 | nfs_cdata_cachep = kmem_cache_create("nfs_commit_data", |
| 2165 | sizeof(struct nfs_commit_data), |
| 2166 | 0, SLAB_HWCACHE_ALIGN, |
| 2167 | NULL); |
| 2168 | if (nfs_cdata_cachep == NULL) |
Jeff Layton | 3dd4765 | 2012-08-02 14:30:56 -0400 | [diff] [blame] | 2169 | goto out_destroy_write_mempool; |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 2170 | |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 2171 | nfs_commit_mempool = mempool_create_slab_pool(MIN_POOL_COMMIT, |
Yanchuan Nian | 4c10021 | 2012-11-12 09:27:37 +0800 | [diff] [blame] | 2172 | nfs_cdata_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | if (nfs_commit_mempool == NULL) |
Jeff Layton | 3dd4765 | 2012-08-02 14:30:56 -0400 | [diff] [blame] | 2174 | goto out_destroy_commit_cache; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 2176 | /* |
| 2177 | * NFS congestion size, scale with available memory. |
| 2178 | * |
| 2179 | * 64MB: 8192k |
| 2180 | * 128MB: 11585k |
| 2181 | * 256MB: 16384k |
| 2182 | * 512MB: 23170k |
| 2183 | * 1GB: 32768k |
| 2184 | * 2GB: 46340k |
| 2185 | * 4GB: 65536k |
| 2186 | * 8GB: 92681k |
| 2187 | * 16GB: 131072k |
| 2188 | * |
| 2189 | * This allows larger machines to have larger/more transfers. |
| 2190 | * Limit the default to 256M |
| 2191 | */ |
Arun KS | ca79b0c | 2018-12-28 00:34:29 -0800 | [diff] [blame] | 2192 | nfs_congestion_kb = (16*int_sqrt(totalram_pages())) << (PAGE_SHIFT-10); |
Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 2193 | if (nfs_congestion_kb > 256*1024) |
| 2194 | nfs_congestion_kb = 256*1024; |
| 2195 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | return 0; |
Jeff Layton | 3dd4765 | 2012-08-02 14:30:56 -0400 | [diff] [blame] | 2197 | |
| 2198 | out_destroy_commit_cache: |
| 2199 | kmem_cache_destroy(nfs_cdata_cachep); |
| 2200 | out_destroy_write_mempool: |
| 2201 | mempool_destroy(nfs_wdata_mempool); |
| 2202 | out_destroy_write_cache: |
| 2203 | kmem_cache_destroy(nfs_wdata_cachep); |
| 2204 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | } |
| 2206 | |
David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 2207 | void nfs_destroy_writepagecache(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2208 | { |
| 2209 | mempool_destroy(nfs_commit_mempool); |
Jeff Layton | 3dd4765 | 2012-08-02 14:30:56 -0400 | [diff] [blame] | 2210 | kmem_cache_destroy(nfs_cdata_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | mempool_destroy(nfs_wdata_mempool); |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 2212 | kmem_cache_destroy(nfs_wdata_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | } |
| 2214 | |
Anna Schumaker | 4a0de55 | 2014-05-06 09:12:30 -0400 | [diff] [blame] | 2215 | static const struct nfs_rw_ops nfs_rw_write_ops = { |
| 2216 | .rw_alloc_header = nfs_writehdr_alloc, |
| 2217 | .rw_free_header = nfs_writehdr_free, |
Anna Schumaker | 0eecb21 | 2014-05-06 09:12:32 -0400 | [diff] [blame] | 2218 | .rw_done = nfs_writeback_done, |
| 2219 | .rw_result = nfs_writeback_result, |
Anna Schumaker | 1ed26f3 | 2014-05-06 09:12:37 -0400 | [diff] [blame] | 2220 | .rw_initiate = nfs_initiate_write, |
Anna Schumaker | 4a0de55 | 2014-05-06 09:12:30 -0400 | [diff] [blame] | 2221 | }; |