Line data Source code
1 : // SPDX-License-Identifier: GPL-2.0
2 : /*
3 : * linux/fs/ext4/readpage.c
4 : *
5 : * Copyright (C) 2002, Linus Torvalds.
6 : * Copyright (C) 2015, Google, Inc.
7 : *
8 : * This was originally taken from fs/mpage.c
9 : *
10 : * The ext4_mpage_readpages() function here is intended to
11 : * replace mpage_readahead() in the general case, not just for
12 : * encrypted files. It has some limitations (see below), where it
13 : * will fall back to read_block_full_page(), but these limitations
14 : * should only be hit when page_size != block_size.
15 : *
16 : * This will allow us to attach a callback function to support ext4
17 : * encryption.
18 : *
19 : * If anything unusual happens, such as:
20 : *
21 : * - encountering a page which has buffers
22 : * - encountering a page which has a non-hole after a hole
23 : * - encountering a page with non-contiguous blocks
24 : *
25 : * then this code just gives up and calls the buffer_head-based read function.
26 : * It does handle a page which has holes at the end - that is a common case:
27 : * the end-of-file on blocksize < PAGE_SIZE setups.
28 : *
29 : */
30 :
31 : #include <linux/kernel.h>
32 : #include <linux/export.h>
33 : #include <linux/mm.h>
34 : #include <linux/kdev_t.h>
35 : #include <linux/gfp.h>
36 : #include <linux/bio.h>
37 : #include <linux/fs.h>
38 : #include <linux/buffer_head.h>
39 : #include <linux/blkdev.h>
40 : #include <linux/highmem.h>
41 : #include <linux/prefetch.h>
42 : #include <linux/mpage.h>
43 : #include <linux/writeback.h>
44 : #include <linux/backing-dev.h>
45 : #include <linux/pagevec.h>
46 :
47 : #include "ext4.h"
48 :
49 : #define NUM_PREALLOC_POST_READ_CTXS 128
50 :
51 : static struct kmem_cache *bio_post_read_ctx_cache;
52 : static mempool_t *bio_post_read_ctx_pool;
53 :
54 : /* postprocessing steps for read bios */
55 : enum bio_post_read_step {
56 : STEP_INITIAL = 0,
57 : STEP_DECRYPT,
58 : STEP_VERITY,
59 : STEP_MAX,
60 : };
61 :
62 : struct bio_post_read_ctx {
63 : struct bio *bio;
64 : struct work_struct work;
65 : unsigned int cur_step;
66 : unsigned int enabled_steps;
67 : };
68 :
69 672081 : static void __read_end_io(struct bio *bio)
70 : {
71 672081 : struct folio_iter fi;
72 :
73 4986887 : bio_for_each_folio_all(fi, bio) {
74 4314806 : struct folio *folio = fi.folio;
75 :
76 4314806 : if (bio->bi_status)
77 0 : folio_clear_uptodate(folio);
78 : else
79 4314806 : folio_mark_uptodate(folio);
80 4314806 : folio_unlock(folio);
81 : }
82 672081 : if (bio->bi_private)
83 0 : mempool_free(bio->bi_private, bio_post_read_ctx_pool);
84 672081 : bio_put(bio);
85 672081 : }
86 :
87 : static void bio_post_read_processing(struct bio_post_read_ctx *ctx);
88 :
89 0 : static void decrypt_work(struct work_struct *work)
90 : {
91 0 : struct bio_post_read_ctx *ctx =
92 0 : container_of(work, struct bio_post_read_ctx, work);
93 0 : struct bio *bio = ctx->bio;
94 :
95 0 : if (fscrypt_decrypt_bio(bio))
96 0 : bio_post_read_processing(ctx);
97 : else
98 : __read_end_io(bio);
99 0 : }
100 :
101 0 : static void verity_work(struct work_struct *work)
102 : {
103 0 : struct bio_post_read_ctx *ctx =
104 0 : container_of(work, struct bio_post_read_ctx, work);
105 0 : struct bio *bio = ctx->bio;
106 :
107 : /*
108 : * fsverity_verify_bio() may call readahead() again, and although verity
109 : * will be disabled for that, decryption may still be needed, causing
110 : * another bio_post_read_ctx to be allocated. So to guarantee that
111 : * mempool_alloc() never deadlocks we must free the current ctx first.
112 : * This is safe because verity is the last post-read step.
113 : */
114 0 : BUILD_BUG_ON(STEP_VERITY + 1 != STEP_MAX);
115 0 : mempool_free(ctx, bio_post_read_ctx_pool);
116 0 : bio->bi_private = NULL;
117 :
118 0 : fsverity_verify_bio(bio);
119 :
120 0 : __read_end_io(bio);
121 0 : }
122 :
123 0 : static void bio_post_read_processing(struct bio_post_read_ctx *ctx)
124 : {
125 : /*
126 : * We use different work queues for decryption and for verity because
127 : * verity may require reading metadata pages that need decryption, and
128 : * we shouldn't recurse to the same workqueue.
129 : */
130 0 : switch (++ctx->cur_step) {
131 0 : case STEP_DECRYPT:
132 0 : if (ctx->enabled_steps & (1 << STEP_DECRYPT)) {
133 0 : INIT_WORK(&ctx->work, decrypt_work);
134 0 : fscrypt_enqueue_decrypt_work(&ctx->work);
135 0 : return;
136 : }
137 0 : ctx->cur_step++;
138 0 : fallthrough;
139 0 : case STEP_VERITY:
140 0 : if (ctx->enabled_steps & (1 << STEP_VERITY)) {
141 0 : INIT_WORK(&ctx->work, verity_work);
142 0 : fsverity_enqueue_verify_work(&ctx->work);
143 0 : return;
144 : }
145 0 : ctx->cur_step++;
146 0 : fallthrough;
147 0 : default:
148 0 : __read_end_io(ctx->bio);
149 : }
150 : }
151 :
152 : static bool bio_post_read_required(struct bio *bio)
153 : {
154 0 : return bio->bi_private && !bio->bi_status;
155 : }
156 :
157 : /*
158 : * I/O completion handler for multipage BIOs.
159 : *
160 : * The mpage code never puts partial pages into a BIO (except for end-of-file).
161 : * If a page does not map to a contiguous run of blocks then it simply falls
162 : * back to block_read_full_folio().
163 : *
164 : * Why is this? If a page's completion depends on a number of different BIOs
165 : * which can complete in any order (or at the same time) then determining the
166 : * status of that page is hard. See end_buffer_async_read() for the details.
167 : * There is no point in duplicating all that complexity.
168 : */
169 672081 : static void mpage_end_io(struct bio *bio)
170 : {
171 1344162 : if (bio_post_read_required(bio)) {
172 0 : struct bio_post_read_ctx *ctx = bio->bi_private;
173 :
174 0 : ctx->cur_step = STEP_INITIAL;
175 0 : bio_post_read_processing(ctx);
176 0 : return;
177 : }
178 672081 : __read_end_io(bio);
179 : }
180 :
181 : static inline bool ext4_need_verity(const struct inode *inode, pgoff_t idx)
182 : {
183 : return fsverity_active(inode) &&
184 : idx < DIV_ROUND_UP(inode->i_size, PAGE_SIZE);
185 : }
186 :
187 : static void ext4_set_bio_post_read_ctx(struct bio *bio,
188 : const struct inode *inode,
189 : pgoff_t first_idx)
190 : {
191 : unsigned int post_read_steps = 0;
192 :
193 : if (fscrypt_inode_uses_fs_layer_crypto(inode))
194 : post_read_steps |= 1 << STEP_DECRYPT;
195 :
196 : if (ext4_need_verity(inode, first_idx))
197 : post_read_steps |= 1 << STEP_VERITY;
198 :
199 : if (post_read_steps) {
200 : /* Due to the mempool, this never fails. */
201 : struct bio_post_read_ctx *ctx =
202 : mempool_alloc(bio_post_read_ctx_pool, GFP_NOFS);
203 :
204 : ctx->bio = bio;
205 : ctx->enabled_steps = post_read_steps;
206 : bio->bi_private = ctx;
207 : }
208 : }
209 :
210 : static inline loff_t ext4_readpage_limit(struct inode *inode)
211 : {
212 38566891 : if (IS_ENABLED(CONFIG_FS_VERITY) && IS_VERITY(inode))
213 : return inode->i_sb->s_maxbytes;
214 :
215 38566891 : return i_size_read(inode);
216 : }
217 :
218 976945 : int ext4_mpage_readpages(struct inode *inode,
219 : struct readahead_control *rac, struct folio *folio)
220 : {
221 976945 : struct bio *bio = NULL;
222 976945 : sector_t last_block_in_bio = 0;
223 :
224 976945 : const unsigned blkbits = inode->i_blkbits;
225 976945 : const unsigned blocks_per_page = PAGE_SIZE >> blkbits;
226 976945 : const unsigned blocksize = 1 << blkbits;
227 976945 : sector_t next_block;
228 976945 : sector_t block_in_file;
229 976945 : sector_t last_block;
230 976945 : sector_t last_block_in_file;
231 976945 : sector_t blocks[MAX_BUF_PER_PAGE];
232 976945 : unsigned page_block;
233 976945 : struct block_device *bdev = inode->i_sb->s_bdev;
234 976945 : int length;
235 976945 : unsigned relative_block = 0;
236 976945 : struct ext4_map_blocks map;
237 976945 : unsigned int nr_pages = rac ? readahead_count(rac) : 1;
238 :
239 976945 : map.m_pblk = 0;
240 976945 : map.m_lblk = 0;
241 976945 : map.m_len = 0;
242 976945 : map.m_flags = 0;
243 :
244 39619643 : for (; nr_pages; nr_pages--) {
245 38642708 : int fully_mapped = 1;
246 38642708 : unsigned first_hole = blocks_per_page;
247 :
248 38642708 : if (rac)
249 38574834 : folio = readahead_folio(rac);
250 38626087 : prefetchw(&folio->flags);
251 :
252 38625153 : if (folio_buffers(folio))
253 58262 : goto confused;
254 :
255 77133782 : block_in_file = next_block =
256 38566891 : (sector_t)folio->index << (PAGE_SHIFT - blkbits);
257 38566891 : last_block = block_in_file + nr_pages * blocks_per_page;
258 38566891 : last_block_in_file = (ext4_readpage_limit(inode) +
259 38566891 : blocksize - 1) >> blkbits;
260 38566891 : if (last_block > last_block_in_file)
261 : last_block = last_block_in_file;
262 38566891 : page_block = 0;
263 :
264 : /*
265 : * Map blocks using the previous result first.
266 : */
267 38566891 : if ((map.m_flags & EXT4_MAP_MAPPED) &&
268 3626119 : block_in_file > map.m_lblk &&
269 3626122 : block_in_file < (map.m_lblk + map.m_len)) {
270 3626122 : unsigned map_offset = block_in_file - map.m_lblk;
271 3626122 : unsigned last = map.m_len - map_offset;
272 :
273 3626122 : for (relative_block = 0; ; relative_block++) {
274 7252255 : if (relative_block == last) {
275 : /* needed? */
276 438812 : map.m_flags &= ~EXT4_MAP_MAPPED;
277 438812 : break;
278 : }
279 6813443 : if (page_block == blocks_per_page)
280 : break;
281 3626125 : blocks[page_block] = map.m_pblk + map_offset +
282 : relative_block;
283 3626133 : page_block++;
284 3626133 : block_in_file++;
285 : }
286 : }
287 :
288 : /*
289 : * Then do more ext4_map_blocks() calls until we are
290 : * done with this folio.
291 : */
292 73525287 : while (page_block < blocks_per_page) {
293 34941902 : if (block_in_file < last_block) {
294 34940770 : map.m_lblk = block_in_file;
295 34940770 : map.m_len = last_block - block_in_file;
296 :
297 34940770 : if (ext4_map_blocks(NULL, inode, &map, 0) < 0) {
298 0 : set_error_page:
299 0 : folio_set_error(folio);
300 0 : folio_zero_segment(folio, 0,
301 : folio_size(folio));
302 0 : folio_unlock(folio);
303 0 : goto next_page;
304 : }
305 : }
306 34959319 : if ((map.m_flags & EXT4_MAP_MAPPED) == 0) {
307 34269741 : fully_mapped = 0;
308 34269741 : if (first_hole == blocks_per_page)
309 34269584 : first_hole = page_block;
310 34269741 : page_block++;
311 34269741 : block_in_file++;
312 34269741 : continue;
313 : }
314 689578 : if (first_hole != blocks_per_page)
315 0 : goto confused; /* hole -> non-hole */
316 :
317 : /* Contiguous blocks? */
318 689578 : if (page_block && blocks[page_block-1] != map.m_pblk-1)
319 0 : goto confused;
320 687724 : for (relative_block = 0; ; relative_block++) {
321 1377302 : if (relative_block == map.m_len) {
322 : /* needed? */
323 249847 : map.m_flags &= ~EXT4_MAP_MAPPED;
324 249847 : break;
325 1127455 : } else if (page_block == blocks_per_page)
326 : break;
327 688655 : blocks[page_block] = map.m_pblk+relative_block;
328 687724 : page_block++;
329 687724 : block_in_file++;
330 : }
331 : }
332 38583385 : if (first_hole != blocks_per_page) {
333 34268624 : folio_zero_segment(folio, first_hole << blkbits,
334 : folio_size(folio));
335 34265637 : if (first_hole == 0) {
336 34265638 : if (ext4_need_verity(inode, folio->index) &&
337 : !fsverity_verify_folio(folio))
338 : goto set_error_page;
339 34265638 : folio_mark_uptodate(folio);
340 34273437 : folio_unlock(folio);
341 34269669 : continue;
342 : }
343 4314761 : } else if (fully_mapped) {
344 4314763 : folio_set_mappedtodisk(folio);
345 : }
346 :
347 : /*
348 : * This folio will go to BIO. Do we need to send this
349 : * BIO off first?
350 : */
351 4314793 : if (bio && (last_block_in_bio != blocks[0] - 1 ||
352 : !fscrypt_mergeable_bio(bio, inode, next_block))) {
353 424455 : submit_and_realloc:
354 424544 : submit_bio(bio);
355 424544 : bio = NULL;
356 : }
357 4314882 : if (bio == NULL) {
358 : /*
359 : * bio_alloc will _always_ be able to allocate a bio if
360 : * __GFP_DIRECT_RECLAIM is set, see bio_alloc_bioset().
361 : */
362 672068 : bio = bio_alloc(bdev, bio_max_segs(nr_pages),
363 : REQ_OP_READ, GFP_KERNEL);
364 672073 : fscrypt_set_bio_crypt_ctx(bio, inode, next_block,
365 : GFP_KERNEL);
366 672073 : ext4_set_bio_post_read_ctx(bio, inode, folio->index);
367 672073 : bio->bi_iter.bi_sector = blocks[0] << (blkbits - 9);
368 672073 : bio->bi_end_io = mpage_end_io;
369 672073 : if (rac)
370 670430 : bio->bi_opf |= REQ_RAHEAD;
371 : }
372 :
373 4314887 : length = first_hole << blkbits;
374 4314887 : if (!bio_add_folio(bio, folio, length, 0))
375 89 : goto submit_and_realloc;
376 :
377 4314770 : if (((map.m_flags & EXT4_MAP_BOUNDARY) &&
378 4314770 : (relative_block == map.m_len)) ||
379 : (first_hole != blocks_per_page)) {
380 8 : submit_bio(bio);
381 8 : bio = NULL;
382 : } else
383 4314762 : last_block_in_bio = blocks[blocks_per_page - 1];
384 4314767 : continue;
385 58262 : confused:
386 58262 : if (bio) {
387 0 : submit_bio(bio);
388 0 : bio = NULL;
389 : }
390 58262 : if (!folio_test_uptodate(folio))
391 58262 : block_read_full_folio(folio, ext4_get_block);
392 : else
393 0 : folio_unlock(folio);
394 38642698 : next_page:
395 38642698 : ; /* A label shall be followed by a statement until C23 */
396 : }
397 976935 : if (bio)
398 247521 : submit_bio(bio);
399 976924 : return 0;
400 : }
401 :
402 12 : int __init ext4_init_post_read_processing(void)
403 : {
404 12 : bio_post_read_ctx_cache = KMEM_CACHE(bio_post_read_ctx, SLAB_RECLAIM_ACCOUNT);
405 :
406 12 : if (!bio_post_read_ctx_cache)
407 0 : goto fail;
408 12 : bio_post_read_ctx_pool =
409 : mempool_create_slab_pool(NUM_PREALLOC_POST_READ_CTXS,
410 : bio_post_read_ctx_cache);
411 12 : if (!bio_post_read_ctx_pool)
412 0 : goto fail_free_cache;
413 : return 0;
414 :
415 : fail_free_cache:
416 0 : kmem_cache_destroy(bio_post_read_ctx_cache);
417 : fail:
418 : return -ENOMEM;
419 : }
420 :
421 0 : void ext4_exit_post_read_processing(void)
422 : {
423 0 : mempool_destroy(bio_post_read_ctx_pool);
424 0 : kmem_cache_destroy(bio_post_read_ctx_cache);
425 0 : }
|