sunrpc: simplify one-level sysctl registration for debug_table
[linux-block.git] / fs / nfs / read.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/*
3 * linux/fs/nfs/read.c
4 *
5 * Block I/O for NFS
6 *
7 * Partial copy of Linus' read cache modifications to fs/nfs/file.c
8 * modified for async RPC by okir@monad.swb.de
1da177e4
LT
9 */
10
1da177e4
LT
11#include <linux/time.h>
12#include <linux/kernel.h>
13#include <linux/errno.h>
14#include <linux/fcntl.h>
15#include <linux/stat.h>
16#include <linux/mm.h>
17#include <linux/slab.h>
9c88ea00 18#include <linux/task_io_accounting_ops.h>
1da177e4
LT
19#include <linux/pagemap.h>
20#include <linux/sunrpc/clnt.h>
21#include <linux/nfs_fs.h>
22#include <linux/nfs_page.h>
64419a9b 23#include <linux/module.h>
1da177e4 24
f11c88af 25#include "nfs4_fs.h"
49a70f27 26#include "internal.h"
91d5b470 27#include "iostat.h"
9a9fc1c0 28#include "fscache.h"
fab5fc25 29#include "pnfs.h"
8224b273 30#include "nfstrace.h"
91d5b470 31
1da177e4
LT
32#define NFSDBG_FACILITY NFSDBG_PAGECACHE
33
061ae2ed 34static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops;
4a0de55c 35static const struct nfs_rw_ops nfs_rw_read_ops;
1da177e4 36
e18b890b 37static struct kmem_cache *nfs_rdata_cachep;
1da177e4 38
1e7f3a48 39static struct nfs_pgio_header *nfs_readhdr_alloc(void)
3feb2d49 40{
fbe77c30
BC
41 struct nfs_pgio_header *p = kmem_cache_zalloc(nfs_rdata_cachep, GFP_KERNEL);
42
43 if (p)
44 p->rw_mode = FMODE_READ;
45 return p;
4db6e0b7
FI
46}
47
1e7f3a48 48static void nfs_readhdr_free(struct nfs_pgio_header *rhdr)
3feb2d49 49{
cd841605 50 kmem_cache_free(nfs_rdata_cachep, rhdr);
3feb2d49
TM
51}
52
ab75bff1 53static int nfs_return_empty_folio(struct folio *folio)
1da177e4 54{
ab75bff1
TM
55 folio_zero_segment(folio, 0, folio_size(folio));
56 folio_mark_uptodate(folio);
57 folio_unlock(folio);
1da177e4
LT
58 return 0;
59}
60
1abb5088 61void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio,
fab5fc25 62 struct inode *inode, bool force_mds,
061ae2ed 63 const struct nfs_pgio_completion_ops *compl_ops)
1751c363 64{
fab5fc25 65 struct nfs_server *server = NFS_SERVER(inode);
41d8d5b7 66 const struct nfs_pageio_ops *pg_ops = &nfs_pgio_rw_ops;
fab5fc25
CH
67
68#ifdef CONFIG_NFS_V4_1
69 if (server->pnfs_curr_ld && !force_mds)
70 pg_ops = server->pnfs_curr_ld->pg_read_ops;
71#endif
4a0de55c 72 nfs_pageio_init(pgio, inode, pg_ops, compl_ops, &nfs_rw_read_ops,
3bde7afd 73 server->rsize, 0);
1751c363 74}
ddda8e0a 75EXPORT_SYMBOL_GPL(nfs_pageio_init_read);
1751c363 76
b42ad64f 77static void nfs_pageio_complete_read(struct nfs_pageio_descriptor *pgio)
1e83b173
DW
78{
79 struct nfs_pgio_mirror *pgm;
80 unsigned long npages;
81
82 nfs_pageio_complete(pgio);
83
84 /* It doesn't make sense to do mirrored reads! */
85 WARN_ON_ONCE(pgio->pg_mirror_count != 1);
86
87 pgm = &pgio->pg_mirrors[0];
b42ad64f 88 NFS_I(pgio->pg_inode)->read_io += pgm->pg_bytes_written;
1e83b173 89 npages = (pgm->pg_bytes_written + PAGE_SIZE - 1) >> PAGE_SHIFT;
b42ad64f 90 nfs_add_stats(pgio->pg_inode, NFSIOS_READPAGES, npages);
1e83b173
DW
91}
92
93
493292dd
TM
94void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio)
95{
a7d42ddb
WAA
96 struct nfs_pgio_mirror *mirror;
97
6f29b9bb
KM
98 if (pgio->pg_ops && pgio->pg_ops->pg_cleanup)
99 pgio->pg_ops->pg_cleanup(pgio);
100
41d8d5b7 101 pgio->pg_ops = &nfs_pgio_rw_ops;
a7d42ddb
WAA
102
103 /* read path should never have more than one mirror */
104 WARN_ON_ONCE(pgio->pg_mirror_count != 1);
105
106 mirror = &pgio->pg_mirrors[0];
107 mirror->pg_bsize = NFS_SERVER(pgio->pg_inode)->rsize;
493292dd 108}
1f945357 109EXPORT_SYMBOL_GPL(nfs_pageio_reset_read_mds);
493292dd 110
8f54c7a4 111static void nfs_readpage_release(struct nfs_page *req, int error)
0bcbf039 112{
9fcd5960 113 struct inode *inode = d_inode(nfs_req_openctx(req)->dentry);
ab75bff1 114 struct folio *folio = nfs_page_to_folio(req);
0bcbf039
PT
115
116 dprintk("NFS: read done (%s/%llu %d@%lld)\n", inode->i_sb->s_id,
117 (unsigned long long)NFS_FILEID(inode), req->wb_bytes,
118 (long long)req_offset(req));
119
8f54c7a4 120 if (nfs_error_is_fatal_on_server(error) && error != -ETIMEDOUT)
ab75bff1 121 folio_set_error(folio);
0bcbf039 122 if (nfs_page_group_sync_on_bit(req, PG_UNLOCKPAGE)) {
ab75bff1
TM
123 if (folio_test_uptodate(folio))
124 nfs_fscache_write_page(inode, &folio->page);
125 folio_unlock(folio);
0bcbf039
PT
126 }
127 nfs_release_request(req);
128}
129
1af7e7f8
DW
130struct nfs_readdesc {
131 struct nfs_pageio_descriptor pgio;
132 struct nfs_open_context *ctx;
133};
134
67d0338e
WAA
135static void nfs_page_group_set_uptodate(struct nfs_page *req)
136{
137 if (nfs_page_group_sync_on_bit(req, PG_UPTODATE))
ab75bff1 138 folio_mark_uptodate(nfs_page_to_folio(req));
67d0338e
WAA
139}
140
061ae2ed 141static void nfs_read_completion(struct nfs_pgio_header *hdr)
4db6e0b7
FI
142{
143 unsigned long bytes = 0;
8f54c7a4 144 int error;
4db6e0b7
FI
145
146 if (test_bit(NFS_IOHDR_REDO, &hdr->flags))
147 goto out;
4bd8b010
TM
148 while (!list_empty(&hdr->pages)) {
149 struct nfs_page *req = nfs_list_entry(hdr->pages.next);
ab75bff1 150 struct folio *folio = nfs_page_to_folio(req);
68072992
WAA
151 unsigned long start = req->wb_pgbase;
152 unsigned long end = req->wb_pgbase + req->wb_bytes;
4bd8b010
TM
153
154 if (test_bit(NFS_IOHDR_EOF, &hdr->flags)) {
68072992 155 /* note: regions of the page not covered by a
1e83b173 156 * request are zeroed in readpage_async_filler */
68072992
WAA
157 if (bytes > hdr->good_bytes) {
158 /* nothing in this request was good, so zero
159 * the full extent of the request */
ab75bff1 160 folio_zero_segment(folio, start, end);
68072992
WAA
161
162 } else if (hdr->good_bytes - bytes < req->wb_bytes) {
163 /* part of this request has good bytes, but
164 * not all. zero the bad bytes */
165 start += hdr->good_bytes - bytes;
166 WARN_ON(start < req->wb_pgbase);
ab75bff1 167 folio_zero_segment(folio, start, end);
68072992 168 }
4db6e0b7 169 }
8f54c7a4 170 error = 0;
4bd8b010
TM
171 bytes += req->wb_bytes;
172 if (test_bit(NFS_IOHDR_ERROR, &hdr->flags)) {
4db6e0b7 173 if (bytes <= hdr->good_bytes)
67d0338e 174 nfs_page_group_set_uptodate(req);
8f54c7a4
TM
175 else {
176 error = hdr->error;
177 xchg(&nfs_req_openctx(req)->error, error);
178 }
4bd8b010 179 } else
67d0338e 180 nfs_page_group_set_uptodate(req);
4bd8b010 181 nfs_list_remove_request(req);
8f54c7a4 182 nfs_readpage_release(req, error);
4db6e0b7
FI
183 }
184out:
185 hdr->release(hdr);
186}
187
d45f60c6
WAA
188static void nfs_initiate_read(struct nfs_pgio_header *hdr,
189 struct rpc_message *msg,
abde71f4 190 const struct nfs_rpc_ops *rpc_ops,
1ed26f33 191 struct rpc_task_setup *task_setup_data, int how)
1da177e4 192{
abde71f4 193 rpc_ops->read_setup(hdr, msg);
2343172d 194 trace_nfs_initiate_read(hdr);
64419a9b
AA
195}
196
061ae2ed 197static void
df3accb8 198nfs_async_read_error(struct list_head *head, int error)
1da177e4
LT
199{
200 struct nfs_page *req;
201
202 while (!list_empty(head)) {
203 req = nfs_list_entry(head->next);
204 nfs_list_remove_request(req);
8f54c7a4 205 nfs_readpage_release(req, error);
1da177e4
LT
206 }
207}
208
061ae2ed
FI
209static const struct nfs_pgio_completion_ops nfs_async_read_completion_ops = {
210 .error_cleanup = nfs_async_read_error,
211 .completion = nfs_read_completion,
212};
213
0b671301
TM
214/*
215 * This is the callback from RPC telling us whether a reply was
216 * received or some error occurred (timeout or socket shutdown).
217 */
d45f60c6
WAA
218static int nfs_readpage_done(struct rpc_task *task,
219 struct nfs_pgio_header *hdr,
0eecb214 220 struct inode *inode)
0b671301 221{
d45f60c6 222 int status = NFS_PROTO(inode)->read_done(task, hdr);
0b671301
TM
223 if (status != 0)
224 return status;
225
d45f60c6 226 nfs_add_stats(inode, NFSIOS_SERVERREADBYTES, hdr->res.count);
2343172d 227 trace_nfs_readpage_done(task, hdr);
0b671301
TM
228
229 if (task->tk_status == -ESTALE) {
93ce4af7 230 nfs_set_inode_stale(inode);
cd841605 231 nfs_mark_for_revalidate(inode);
0b671301 232 }
0b671301
TM
233 return 0;
234}
235
d45f60c6
WAA
236static void nfs_readpage_retry(struct rpc_task *task,
237 struct nfs_pgio_header *hdr)
0b671301 238{
d45f60c6
WAA
239 struct nfs_pgio_args *argp = &hdr->args;
240 struct nfs_pgio_res *resp = &hdr->res;
0b671301 241
0b671301 242 /* This is a short read! */
d45f60c6 243 nfs_inc_stats(hdr->inode, NFSIOS_SHORTREAD);
fd2b6121
CL
244 trace_nfs_readpage_short(task, hdr);
245
0b671301 246 /* Has the server at least made some progress? */
4db6e0b7 247 if (resp->count == 0) {
d45f60c6 248 nfs_set_pgio_error(hdr, -EIO, argp->offset);
d61e612a 249 return;
4db6e0b7 250 }
f8417b48
KM
251
252 /* For non rpc-based layout drivers, retry-through-MDS */
253 if (!task->tk_ops) {
254 hdr->pnfs_error = -EAGAIN;
255 return;
256 }
257
d45f60c6
WAA
258 /* Yes, so retry the read at the end of the hdr */
259 hdr->mds_offset += resp->count;
0b671301
TM
260 argp->offset += resp->count;
261 argp->pgbase += resp->count;
262 argp->count -= resp->count;
8c9cb714
TM
263 resp->count = 0;
264 resp->eof = 0;
d00c5d43 265 rpc_restart_call_prepare(task);
0b671301
TM
266}
267
d45f60c6
WAA
268static void nfs_readpage_result(struct rpc_task *task,
269 struct nfs_pgio_header *hdr)
1da177e4 270{
d45f60c6 271 if (hdr->res.eof) {
1c6c4b74
TM
272 loff_t pos = hdr->args.offset + hdr->res.count;
273 unsigned int new = pos - hdr->io_start;
4db6e0b7 274
1c6c4b74
TM
275 if (hdr->good_bytes > new) {
276 hdr->good_bytes = new;
4db6e0b7
FI
277 set_bit(NFS_IOHDR_EOF, &hdr->flags);
278 clear_bit(NFS_IOHDR_ERROR, &hdr->flags);
4db6e0b7 279 }
f8417b48 280 } else if (hdr->res.count < hdr->args.count)
d45f60c6 281 nfs_readpage_retry(task, hdr);
fdd1e74c
TM
282}
283
ab75bff1 284static int readpage_async_filler(struct nfs_readdesc *desc, struct folio *folio)
1e83b173 285{
ab75bff1
TM
286 struct inode *inode = folio_file_mapping(folio)->host;
287 struct nfs_server *server = NFS_SERVER(inode);
288 size_t fsize = folio_size(folio);
289 unsigned int rsize = server->rsize;
1e83b173 290 struct nfs_page *new;
8cfb9015 291 unsigned int len, aligned_len;
1e83b173
DW
292 int error;
293
ab75bff1 294 len = nfs_folio_length(folio);
1e83b173 295 if (len == 0)
ab75bff1 296 return nfs_return_empty_folio(folio);
1e83b173 297
ab75bff1 298 aligned_len = min_t(unsigned int, ALIGN(len, rsize), fsize);
8cfb9015 299
ab75bff1
TM
300 if (!IS_SYNC(inode)) {
301 error = nfs_fscache_read_page(inode, &folio->page);
16f2f4e6
DH
302 if (error == 0)
303 goto out_unlock;
304 }
305
ab75bff1 306 new = nfs_page_create_from_folio(desc->ctx, folio, 0, aligned_len);
1e83b173
DW
307 if (IS_ERR(new))
308 goto out_error;
309
ab75bff1
TM
310 if (len < fsize)
311 folio_zero_segment(folio, len, fsize);
1e83b173
DW
312 if (!nfs_pageio_add_request(&desc->pgio, new)) {
313 nfs_list_remove_request(new);
314 error = desc->pgio.pg_error;
315 nfs_readpage_release(new, error);
316 goto out;
317 }
318 return 0;
319out_error:
320 error = PTR_ERR(new);
16f2f4e6 321out_unlock:
ab75bff1 322 folio_unlock(folio);
1e83b173
DW
323out:
324 return error;
325}
326
1da177e4
LT
327/*
328 * Read a page over NFS.
329 * We read the page synchronously in the following case:
330 * - The error flag is set for this page. This happens only when a
331 * previous async read operation failed.
332 */
65d023af 333int nfs_read_folio(struct file *file, struct folio *folio)
1da177e4 334{
1af7e7f8 335 struct nfs_readdesc desc;
ab75bff1 336 struct inode *inode = file_inode(file);
49dee700 337 int ret;
1da177e4 338
ab75bff1 339 trace_nfs_aop_readpage(inode, folio);
91d5b470 340 nfs_inc_stats(inode, NFSIOS_VFSREADPAGE);
9c88ea00 341 task_io_account_read(folio_size(folio));
91d5b470 342
1da177e4
LT
343 /*
344 * Try to flush any pending writes to the file..
345 *
ab75bff1 346 * NOTE! Because we own the folio lock, there cannot
1da177e4 347 * be any new pending writes generated at this point
ab75bff1 348 * for this folio (other folios can be written to).
1da177e4 349 */
ab75bff1 350 ret = nfs_wb_folio(inode, folio);
49dee700 351 if (ret)
de05a0cc 352 goto out_unlock;
ab75bff1 353 if (folio_test_uptodate(folio))
de05a0cc 354 goto out_unlock;
1da177e4 355
49dee700 356 ret = -ESTALE;
5f004cf2 357 if (NFS_STALE(inode))
de05a0cc 358 goto out_unlock;
5f004cf2 359
2de3d04b 360 desc.ctx = get_nfs_open_context(nfs_file_open_context(file));
1da177e4 361
ba512c1b 362 xchg(&desc.ctx->error, 0);
1e83b173
DW
363 nfs_pageio_init_read(&desc.pgio, inode, false,
364 &nfs_async_read_completion_ops);
365
ab75bff1 366 ret = readpage_async_filler(&desc, folio);
e0340f16
DW
367 if (ret)
368 goto out;
1e83b173 369
e0340f16 370 nfs_pageio_complete_read(&desc.pgio);
1e83b173 371 ret = desc.pgio.pg_error < 0 ? desc.pgio.pg_error : 0;
49dee700 372 if (!ret) {
ab75bff1
TM
373 ret = folio_wait_locked_killable(folio);
374 if (!folio_test_uptodate(folio) && !ret)
1af7e7f8 375 ret = xchg(&desc.ctx->error, 0);
8f54c7a4 376 }
9a9fc1c0 377out:
1af7e7f8 378 put_nfs_open_context(desc.ctx);
ab75bff1 379 trace_nfs_aop_readpage_done(inode, folio, ret);
49dee700 380 return ret;
de05a0cc 381out_unlock:
ab75bff1
TM
382 folio_unlock(folio);
383 trace_nfs_aop_readpage_done(inode, folio, ret);
49dee700 384 return ret;
1da177e4
LT
385}
386
8786fde8 387void nfs_readahead(struct readahead_control *ractl)
1da177e4 388{
8786fde8
MWO
389 unsigned int nr_pages = readahead_count(ractl);
390 struct file *file = ractl->file;
49dee700 391 struct nfs_readdesc desc;
8786fde8 392 struct inode *inode = ractl->mapping->host;
ab75bff1 393 struct folio *folio;
49dee700 394 int ret;
1da177e4 395
8786fde8 396 trace_nfs_aop_readahead(inode, readahead_pos(ractl), nr_pages);
91d5b470 397 nfs_inc_stats(inode, NFSIOS_VFSREADPAGES);
9c88ea00 398 task_io_account_read(readahead_length(ractl));
1da177e4 399
49dee700 400 ret = -ESTALE;
5f004cf2
TM
401 if (NFS_STALE(inode))
402 goto out;
403
49dee700
DW
404 if (file == NULL) {
405 ret = -EBADF;
d530838b 406 desc.ctx = nfs_find_open_context(inode, NULL, FMODE_READ);
1da177e4 407 if (desc.ctx == NULL)
49dee700 408 goto out;
1da177e4 409 } else
49dee700 410 desc.ctx = get_nfs_open_context(nfs_file_open_context(file));
9a9fc1c0 411
1af7e7f8 412 nfs_pageio_init_read(&desc.pgio, inode, false,
fab5fc25 413 &nfs_async_read_completion_ops);
8b09bee3 414
ab75bff1
TM
415 while ((folio = readahead_folio(ractl)) != NULL) {
416 ret = readpage_async_filler(&desc, folio);
8786fde8
MWO
417 if (ret)
418 break;
419 }
a7d42ddb 420
b42ad64f 421 nfs_pageio_complete_read(&desc.pgio);
a7d42ddb 422
1da177e4 423 put_nfs_open_context(desc.ctx);
5f004cf2 424out:
d9f87743 425 trace_nfs_aop_readahead_done(inode, nr_pages, ret);
1da177e4
LT
426}
427
f7b422b1 428int __init nfs_init_readpagecache(void)
1da177e4
LT
429{
430 nfs_rdata_cachep = kmem_cache_create("nfs_read_data",
1e7f3a48 431 sizeof(struct nfs_pgio_header),
1da177e4 432 0, SLAB_HWCACHE_ALIGN,
20c2df83 433 NULL);
1da177e4
LT
434 if (nfs_rdata_cachep == NULL)
435 return -ENOMEM;
436
1da177e4
LT
437 return 0;
438}
439
266bee88 440void nfs_destroy_readpagecache(void)
1da177e4 441{
1a1d92c1 442 kmem_cache_destroy(nfs_rdata_cachep);
1da177e4 443}
4a0de55c
AS
444
445static const struct nfs_rw_ops nfs_rw_read_ops = {
446 .rw_alloc_header = nfs_readhdr_alloc,
447 .rw_free_header = nfs_readhdr_free,
0eecb214
AS
448 .rw_done = nfs_readpage_done,
449 .rw_result = nfs_readpage_result,
1ed26f33 450 .rw_initiate = nfs_initiate_read,
4a0de55c 451};