mm: add new readahead_control API
[linux-2.6-block.git] / mm / readahead.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/*
3 * mm/readahead.c - address_space-level file readahead.
4 *
5 * Copyright (C) 2002, Linus Torvalds
6 *
e1f8e874 7 * 09Apr2002 Andrew Morton
1da177e4
LT
8 * Initial version.
9 */
10
11#include <linux/kernel.h>
11bd969f 12#include <linux/dax.h>
5a0e3ad6 13#include <linux/gfp.h>
b95f1b31 14#include <linux/export.h>
1da177e4
LT
15#include <linux/blkdev.h>
16#include <linux/backing-dev.h>
8bde37f0 17#include <linux/task_io_accounting_ops.h>
1da177e4 18#include <linux/pagevec.h>
f5ff8422 19#include <linux/pagemap.h>
782182e5
CW
20#include <linux/syscalls.h>
21#include <linux/file.h>
d72ee911 22#include <linux/mm_inline.h>
ca47e8c7 23#include <linux/blk-cgroup.h>
3d8f7615 24#include <linux/fadvise.h>
1da177e4 25
29f175d1
FF
26#include "internal.h"
27
1da177e4
LT
28/*
29 * Initialise a struct file's readahead state. Assumes that the caller has
30 * memset *ra to zero.
31 */
32void
33file_ra_state_init(struct file_ra_state *ra, struct address_space *mapping)
34{
de1414a6 35 ra->ra_pages = inode_to_bdi(mapping->host)->ra_pages;
f4e6b498 36 ra->prev_pos = -1;
1da177e4 37}
d41cc702 38EXPORT_SYMBOL_GPL(file_ra_state_init);
1da177e4 39
03fb3d2a
DH
40/*
41 * see if a page needs releasing upon read_cache_pages() failure
266cf658
DH
42 * - the caller of read_cache_pages() may have set PG_private or PG_fscache
43 * before calling, such as the NFS fs marking pages that are cached locally
44 * on disk, thus we need to give the fs a chance to clean up in the event of
45 * an error
03fb3d2a
DH
46 */
47static void read_cache_pages_invalidate_page(struct address_space *mapping,
48 struct page *page)
49{
266cf658 50 if (page_has_private(page)) {
03fb3d2a
DH
51 if (!trylock_page(page))
52 BUG();
53 page->mapping = mapping;
09cbfeaf 54 do_invalidatepage(page, 0, PAGE_SIZE);
03fb3d2a
DH
55 page->mapping = NULL;
56 unlock_page(page);
57 }
09cbfeaf 58 put_page(page);
03fb3d2a
DH
59}
60
61/*
62 * release a list of pages, invalidating them first if need be
63 */
64static void read_cache_pages_invalidate_pages(struct address_space *mapping,
65 struct list_head *pages)
66{
67 struct page *victim;
68
69 while (!list_empty(pages)) {
c8ad6302 70 victim = lru_to_page(pages);
03fb3d2a
DH
71 list_del(&victim->lru);
72 read_cache_pages_invalidate_page(mapping, victim);
73 }
74}
75
1da177e4 76/**
bd40cdda 77 * read_cache_pages - populate an address space with some pages & start reads against them
1da177e4
LT
78 * @mapping: the address_space
79 * @pages: The address of a list_head which contains the target pages. These
80 * pages have their ->index populated and are otherwise uninitialised.
81 * @filler: callback routine for filling a single page.
82 * @data: private data for the callback routine.
83 *
84 * Hides the details of the LRU cache etc from the filesystems.
a862f68a
MR
85 *
86 * Returns: %0 on success, error return by @filler otherwise
1da177e4
LT
87 */
88int read_cache_pages(struct address_space *mapping, struct list_head *pages,
89 int (*filler)(void *, struct page *), void *data)
90{
91 struct page *page;
1da177e4
LT
92 int ret = 0;
93
1da177e4 94 while (!list_empty(pages)) {
c8ad6302 95 page = lru_to_page(pages);
1da177e4 96 list_del(&page->lru);
063d99b4 97 if (add_to_page_cache_lru(page, mapping, page->index,
8a5c743e 98 readahead_gfp_mask(mapping))) {
03fb3d2a 99 read_cache_pages_invalidate_page(mapping, page);
1da177e4
LT
100 continue;
101 }
09cbfeaf 102 put_page(page);
eb2be189 103
1da177e4 104 ret = filler(data, page);
eb2be189 105 if (unlikely(ret)) {
03fb3d2a 106 read_cache_pages_invalidate_pages(mapping, pages);
1da177e4
LT
107 break;
108 }
09cbfeaf 109 task_io_account_read(PAGE_SIZE);
1da177e4 110 }
1da177e4
LT
111 return ret;
112}
113
114EXPORT_SYMBOL(read_cache_pages);
115
a1ef8566 116static void read_pages(struct address_space *mapping, struct file *filp,
8a5c743e 117 struct list_head *pages, unsigned int nr_pages, gfp_t gfp)
1da177e4 118{
5b417b18 119 struct blk_plug plug;
1da177e4 120 unsigned page_idx;
1da177e4 121
ad4ae1c7
MWO
122 if (!nr_pages)
123 return;
124
5b417b18
JA
125 blk_start_plug(&plug);
126
1da177e4 127 if (mapping->a_ops->readpages) {
a1ef8566 128 mapping->a_ops->readpages(filp, mapping, pages, nr_pages);
029e332e
OH
129 /* Clean up the remaining pages */
130 put_pages_list(pages);
1da177e4
LT
131 goto out;
132 }
133
1da177e4 134 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
c8ad6302 135 struct page *page = lru_to_page(pages);
1da177e4 136 list_del(&page->lru);
8a5c743e 137 if (!add_to_page_cache_lru(page, mapping, page->index, gfp))
9f1a3cfc 138 mapping->a_ops->readpage(filp, page);
09cbfeaf 139 put_page(page);
1da177e4 140 }
5b417b18 141
1da177e4 142out:
5b417b18 143 blk_finish_plug(&plug);
ad4ae1c7
MWO
144
145 BUG_ON(!list_empty(pages));
1da177e4
LT
146}
147
1da177e4 148/*
b3751e6a
CH
149 * __do_page_cache_readahead() actually reads a chunk of disk. It allocates
150 * the pages first, then submits them for I/O. This avoids the very bad
1da177e4
LT
151 * behaviour which would occur if page allocations are causing VM writeback.
152 * We really don't want to intermingle reads and writes like that.
1da177e4 153 */
9a42823a 154void __do_page_cache_readahead(struct address_space *mapping,
c534aa3f
CH
155 struct file *filp, pgoff_t offset, unsigned long nr_to_read,
156 unsigned long lookahead_size)
1da177e4
LT
157{
158 struct inode *inode = mapping->host;
159 struct page *page;
160 unsigned long end_index; /* The last page we want to read */
161 LIST_HEAD(page_pool);
162 int page_idx;
c534aa3f 163 unsigned int nr_pages = 0;
1da177e4 164 loff_t isize = i_size_read(inode);
8a5c743e 165 gfp_t gfp_mask = readahead_gfp_mask(mapping);
1da177e4
LT
166
167 if (isize == 0)
9a42823a 168 return;
1da177e4 169
09cbfeaf 170 end_index = ((isize - 1) >> PAGE_SHIFT);
1da177e4
LT
171
172 /*
173 * Preallocate as many pages as we will need.
174 */
1da177e4 175 for (page_idx = 0; page_idx < nr_to_read; page_idx++) {
7361f4d8 176 pgoff_t page_offset = offset + page_idx;
c743d96b 177
1da177e4
LT
178 if (page_offset > end_index)
179 break;
180
560d454b 181 page = xa_load(&mapping->i_pages, page_offset);
3159f943 182 if (page && !xa_is_value(page)) {
b3751e6a
CH
183 /*
184 * Page already present? Kick off the current batch of
185 * contiguous pages before continuing with the next
186 * batch.
187 */
ad4ae1c7 188 read_pages(mapping, filp, &page_pool, nr_pages,
b3751e6a
CH
189 gfp_mask);
190 nr_pages = 0;
1da177e4 191 continue;
b3751e6a 192 }
1da177e4 193
8a5c743e 194 page = __page_cache_alloc(gfp_mask);
1da177e4
LT
195 if (!page)
196 break;
197 page->index = page_offset;
198 list_add(&page->lru, &page_pool);
46fc3e7b
FW
199 if (page_idx == nr_to_read - lookahead_size)
200 SetPageReadahead(page);
836978b3 201 nr_pages++;
1da177e4 202 }
1da177e4
LT
203
204 /*
205 * Now start the IO. We ignore I/O errors - if the page is not
206 * uptodate then the caller will launch readpage again, and
207 * will then handle the error.
208 */
ad4ae1c7 209 read_pages(mapping, filp, &page_pool, nr_pages, gfp_mask);
1da177e4
LT
210}
211
212/*
213 * Chunk the readahead into 2 megabyte units, so that we don't pin too much
214 * memory at once.
215 */
9a42823a
MWO
216void force_page_cache_readahead(struct address_space *mapping,
217 struct file *filp, pgoff_t offset, unsigned long nr_to_read)
1da177e4 218{
9491ae4a
JA
219 struct backing_dev_info *bdi = inode_to_bdi(mapping->host);
220 struct file_ra_state *ra = &filp->f_ra;
221 unsigned long max_pages;
222
1da177e4 223 if (unlikely(!mapping->a_ops->readpage && !mapping->a_ops->readpages))
9a42823a 224 return;
1da177e4 225
9491ae4a
JA
226 /*
227 * If the request exceeds the readahead window, allow the read to
228 * be up to the optimal hardware IO size
229 */
230 max_pages = max_t(unsigned long, bdi->io_pages, ra->ra_pages);
231 nr_to_read = min(nr_to_read, max_pages);
1da177e4 232 while (nr_to_read) {
09cbfeaf 233 unsigned long this_chunk = (2 * 1024 * 1024) / PAGE_SIZE;
1da177e4
LT
234
235 if (this_chunk > nr_to_read)
236 this_chunk = nr_to_read;
c534aa3f 237 __do_page_cache_readahead(mapping, filp, offset, this_chunk, 0);
58d5640e 238
1da177e4
LT
239 offset += this_chunk;
240 nr_to_read -= this_chunk;
241 }
1da177e4
LT
242}
243
c743d96b
FW
244/*
245 * Set the initial window size, round to next power of 2 and square
246 * for small size, x 4 for medium, and x 2 for large
247 * for 128k (32 page) max ra
248 * 1-8 page = 32k initial, > 8 page = 128k initial
249 */
250static unsigned long get_init_ra_size(unsigned long size, unsigned long max)
251{
252 unsigned long newsize = roundup_pow_of_two(size);
253
254 if (newsize <= max / 32)
255 newsize = newsize * 4;
256 else if (newsize <= max / 4)
257 newsize = newsize * 2;
258 else
259 newsize = max;
260
261 return newsize;
262}
263
122a21d1
FW
264/*
265 * Get the previous window size, ramp it up, and
266 * return it as the new window size.
267 */
c743d96b 268static unsigned long get_next_ra_size(struct file_ra_state *ra,
20ff1c95 269 unsigned long max)
122a21d1 270{
f9acc8c7 271 unsigned long cur = ra->size;
122a21d1
FW
272
273 if (cur < max / 16)
20ff1c95
GX
274 return 4 * cur;
275 if (cur <= max / 2)
276 return 2 * cur;
277 return max;
122a21d1
FW
278}
279
280/*
281 * On-demand readahead design.
282 *
283 * The fields in struct file_ra_state represent the most-recently-executed
284 * readahead attempt:
285 *
f9acc8c7
FW
286 * |<----- async_size ---------|
287 * |------------------- size -------------------->|
288 * |==================#===========================|
289 * ^start ^page marked with PG_readahead
122a21d1
FW
290 *
291 * To overlap application thinking time and disk I/O time, we do
292 * `readahead pipelining': Do not wait until the application consumed all
293 * readahead pages and stalled on the missing page at readahead_index;
f9acc8c7
FW
294 * Instead, submit an asynchronous readahead I/O as soon as there are
295 * only async_size pages left in the readahead window. Normally async_size
296 * will be equal to size, for maximum pipelining.
122a21d1
FW
297 *
298 * In interleaved sequential reads, concurrent streams on the same fd can
299 * be invalidating each other's readahead state. So we flag the new readahead
f9acc8c7 300 * page at (start+size-async_size) with PG_readahead, and use it as readahead
122a21d1
FW
301 * indicator. The flag won't be set on already cached pages, to avoid the
302 * readahead-for-nothing fuss, saving pointless page cache lookups.
303 *
f4e6b498 304 * prev_pos tracks the last visited byte in the _previous_ read request.
122a21d1
FW
305 * It should be maintained by the caller, and will be used for detecting
306 * small random reads. Note that the readahead algorithm checks loosely
307 * for sequential patterns. Hence interleaved reads might be served as
308 * sequential ones.
309 *
310 * There is a special-case: if the first page which the application tries to
311 * read happens to be the first page of the file, it is assumed that a linear
312 * read is about to happen and the window is immediately set to the initial size
313 * based on I/O request size and the max_readahead.
314 *
315 * The code ramps up the readahead size aggressively at first, but slow down as
316 * it approaches max_readhead.
317 */
318
10be0b37
WF
319/*
320 * Count contiguously cached pages from @offset-1 to @offset-@max,
321 * this count is a conservative estimation of
322 * - length of the sequential read sequence, or
323 * - thrashing threshold in memory tight systems
324 */
325static pgoff_t count_history_pages(struct address_space *mapping,
10be0b37
WF
326 pgoff_t offset, unsigned long max)
327{
328 pgoff_t head;
329
330 rcu_read_lock();
0d3f9296 331 head = page_cache_prev_miss(mapping, offset - 1, max);
10be0b37
WF
332 rcu_read_unlock();
333
334 return offset - 1 - head;
335}
336
337/*
338 * page cache context based read-ahead
339 */
340static int try_context_readahead(struct address_space *mapping,
341 struct file_ra_state *ra,
342 pgoff_t offset,
343 unsigned long req_size,
344 unsigned long max)
345{
346 pgoff_t size;
347
3e2faa08 348 size = count_history_pages(mapping, offset, max);
10be0b37
WF
349
350 /*
2cad4018 351 * not enough history pages:
10be0b37
WF
352 * it could be a random read
353 */
2cad4018 354 if (size <= req_size)
10be0b37
WF
355 return 0;
356
357 /*
358 * starts from beginning of file:
359 * it is a strong indication of long-run stream (or whole-file-read)
360 */
361 if (size >= offset)
362 size *= 2;
363
364 ra->start = offset;
2cad4018
FW
365 ra->size = min(size + req_size, max);
366 ra->async_size = 1;
10be0b37
WF
367
368 return 1;
369}
370
122a21d1
FW
371/*
372 * A minimal readahead algorithm for trivial sequential/random reads.
373 */
9a42823a
MWO
374static void ondemand_readahead(struct address_space *mapping,
375 struct file_ra_state *ra, struct file *filp,
376 bool hit_readahead_marker, pgoff_t offset,
377 unsigned long req_size)
122a21d1 378{
9491ae4a
JA
379 struct backing_dev_info *bdi = inode_to_bdi(mapping->host);
380 unsigned long max_pages = ra->ra_pages;
dc30b96a 381 unsigned long add_pages;
af248a0c 382 pgoff_t prev_offset;
045a2529 383
9491ae4a
JA
384 /*
385 * If the request exceeds the readahead window, allow the read to
386 * be up to the optimal hardware IO size
387 */
388 if (req_size > max_pages && bdi->io_pages > max_pages)
389 max_pages = min(req_size, bdi->io_pages);
390
045a2529
WF
391 /*
392 * start of file
393 */
394 if (!offset)
395 goto initial_readahead;
122a21d1
FW
396
397 /*
f9acc8c7 398 * It's the expected callback offset, assume sequential access.
122a21d1
FW
399 * Ramp up sizes, and push forward the readahead window.
400 */
045a2529
WF
401 if ((offset == (ra->start + ra->size - ra->async_size) ||
402 offset == (ra->start + ra->size))) {
f9acc8c7 403 ra->start += ra->size;
9491ae4a 404 ra->size = get_next_ra_size(ra, max_pages);
f9acc8c7
FW
405 ra->async_size = ra->size;
406 goto readit;
122a21d1
FW
407 }
408
6b10c6c9
FW
409 /*
410 * Hit a marked page without valid readahead state.
411 * E.g. interleaved reads.
412 * Query the pagecache for async_size, which normally equals to
413 * readahead size. Ramp it up and use it as the new readahead size.
414 */
415 if (hit_readahead_marker) {
416 pgoff_t start;
417
30002ed2 418 rcu_read_lock();
0d3f9296 419 start = page_cache_next_miss(mapping, offset + 1, max_pages);
30002ed2 420 rcu_read_unlock();
6b10c6c9 421
9491ae4a 422 if (!start || start - offset > max_pages)
9a42823a 423 return;
6b10c6c9
FW
424
425 ra->start = start;
426 ra->size = start - offset; /* old async_size */
160334a0 427 ra->size += req_size;
9491ae4a 428 ra->size = get_next_ra_size(ra, max_pages);
6b10c6c9
FW
429 ra->async_size = ra->size;
430 goto readit;
431 }
432
122a21d1 433 /*
045a2529 434 * oversize read
122a21d1 435 */
9491ae4a 436 if (req_size > max_pages)
045a2529
WF
437 goto initial_readahead;
438
439 /*
440 * sequential cache miss
af248a0c
DR
441 * trivial case: (offset - prev_offset) == 1
442 * unaligned reads: (offset - prev_offset) == 0
045a2529 443 */
09cbfeaf 444 prev_offset = (unsigned long long)ra->prev_pos >> PAGE_SHIFT;
af248a0c 445 if (offset - prev_offset <= 1UL)
045a2529
WF
446 goto initial_readahead;
447
10be0b37
WF
448 /*
449 * Query the page cache and look for the traces(cached history pages)
450 * that a sequential stream would leave behind.
451 */
9491ae4a 452 if (try_context_readahead(mapping, ra, offset, req_size, max_pages))
10be0b37
WF
453 goto readit;
454
045a2529
WF
455 /*
456 * standalone, small random read
457 * Read as is, and do not pollute the readahead state.
458 */
9a42823a
MWO
459 __do_page_cache_readahead(mapping, filp, offset, req_size, 0);
460 return;
045a2529
WF
461
462initial_readahead:
f9acc8c7 463 ra->start = offset;
9491ae4a 464 ra->size = get_init_ra_size(req_size, max_pages);
f9acc8c7 465 ra->async_size = ra->size > req_size ? ra->size - req_size : ra->size;
122a21d1 466
f9acc8c7 467readit:
51daa88e
WF
468 /*
469 * Will this read hit the readahead marker made by itself?
470 * If so, trigger the readahead marker hit now, and merge
471 * the resulted next readahead window into the current one.
dc30b96a 472 * Take care of maximum IO pages as above.
51daa88e
WF
473 */
474 if (offset == ra->start && ra->size == ra->async_size) {
dc30b96a
MS
475 add_pages = get_next_ra_size(ra, max_pages);
476 if (ra->size + add_pages <= max_pages) {
477 ra->async_size = add_pages;
478 ra->size += add_pages;
479 } else {
480 ra->size = max_pages;
481 ra->async_size = max_pages >> 1;
482 }
51daa88e
WF
483 }
484
9a42823a 485 ra_submit(ra, mapping, filp);
122a21d1
FW
486}
487
488/**
cf914a7d 489 * page_cache_sync_readahead - generic file readahead
122a21d1
FW
490 * @mapping: address_space which holds the pagecache and I/O vectors
491 * @ra: file_ra_state which holds the readahead state
492 * @filp: passed on to ->readpage() and ->readpages()
cf914a7d 493 * @offset: start offset into @mapping, in pagecache page-sized units
122a21d1 494 * @req_size: hint: total size of the read which the caller is performing in
cf914a7d 495 * pagecache pages
122a21d1 496 *
cf914a7d
RR
497 * page_cache_sync_readahead() should be called when a cache miss happened:
498 * it will submit the read. The readahead logic may decide to piggyback more
499 * pages onto the read request if access patterns suggest it will improve
500 * performance.
122a21d1 501 */
cf914a7d
RR
502void page_cache_sync_readahead(struct address_space *mapping,
503 struct file_ra_state *ra, struct file *filp,
504 pgoff_t offset, unsigned long req_size)
122a21d1
FW
505{
506 /* no read-ahead */
507 if (!ra->ra_pages)
cf914a7d
RR
508 return;
509
ca47e8c7
JB
510 if (blk_cgroup_congested())
511 return;
512
0141450f 513 /* be dumb */
70655c06 514 if (filp && (filp->f_mode & FMODE_RANDOM)) {
0141450f
WF
515 force_page_cache_readahead(mapping, filp, offset, req_size);
516 return;
517 }
518
cf914a7d
RR
519 /* do read-ahead */
520 ondemand_readahead(mapping, ra, filp, false, offset, req_size);
521}
522EXPORT_SYMBOL_GPL(page_cache_sync_readahead);
523
524/**
525 * page_cache_async_readahead - file readahead for marked pages
526 * @mapping: address_space which holds the pagecache and I/O vectors
527 * @ra: file_ra_state which holds the readahead state
528 * @filp: passed on to ->readpage() and ->readpages()
529 * @page: the page at @offset which has the PG_readahead flag set
530 * @offset: start offset into @mapping, in pagecache page-sized units
531 * @req_size: hint: total size of the read which the caller is performing in
532 * pagecache pages
533 *
bf8abe8b 534 * page_cache_async_readahead() should be called when a page is used which
f7850d93 535 * has the PG_readahead flag; this is a marker to suggest that the application
cf914a7d 536 * has used up enough of the readahead window that we should start pulling in
f7850d93
RD
537 * more pages.
538 */
cf914a7d
RR
539void
540page_cache_async_readahead(struct address_space *mapping,
541 struct file_ra_state *ra, struct file *filp,
542 struct page *page, pgoff_t offset,
543 unsigned long req_size)
544{
545 /* no read-ahead */
546 if (!ra->ra_pages)
547 return;
548
549 /*
550 * Same bit is used for PG_readahead and PG_reclaim.
551 */
552 if (PageWriteback(page))
553 return;
554
555 ClearPageReadahead(page);
556
557 /*
558 * Defer asynchronous read-ahead on IO congestion.
559 */
703c2708 560 if (inode_read_congested(mapping->host))
cf914a7d 561 return;
122a21d1 562
ca47e8c7
JB
563 if (blk_cgroup_congested())
564 return;
565
122a21d1 566 /* do read-ahead */
cf914a7d 567 ondemand_readahead(mapping, ra, filp, true, offset, req_size);
122a21d1 568}
cf914a7d 569EXPORT_SYMBOL_GPL(page_cache_async_readahead);
782182e5 570
c7b95d51 571ssize_t ksys_readahead(int fd, loff_t offset, size_t count)
782182e5
CW
572{
573 ssize_t ret;
2903ff01 574 struct fd f;
782182e5
CW
575
576 ret = -EBADF;
2903ff01 577 f = fdget(fd);
3d8f7615
AG
578 if (!f.file || !(f.file->f_mode & FMODE_READ))
579 goto out;
580
581 /*
582 * The readahead() syscall is intended to run only on files
583 * that can execute readahead. If readahead is not possible
584 * on this file, then we must return -EINVAL.
585 */
586 ret = -EINVAL;
587 if (!f.file->f_mapping || !f.file->f_mapping->a_ops ||
588 !S_ISREG(file_inode(f.file)->i_mode))
589 goto out;
590
591 ret = vfs_fadvise(f.file, offset, count, POSIX_FADV_WILLNEED);
592out:
593 fdput(f);
782182e5
CW
594 return ret;
595}
c7b95d51
DB
596
597SYSCALL_DEFINE3(readahead, int, fd, loff_t, offset, size_t, count)
598{
599 return ksys_readahead(fd, offset, count);
600}