1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) 2018 HUAWEI, Inc.
4  *             https://www.huawei.com/
5  * Copyright (C) 2022 Alibaba Cloud
6  */
7 #include "compress.h"
8 #include <linux/psi.h>
9 #include <linux/cpuhotplug.h>
10 #include <trace/events/erofs.h>
11 
12 #define Z_EROFS_PCLUSTER_MAX_PAGES	(Z_EROFS_PCLUSTER_MAX_SIZE / PAGE_SIZE)
13 #define Z_EROFS_INLINE_BVECS		2
14 
15 struct z_erofs_bvec {
16 	struct page *page;
17 	int offset;
18 	unsigned int end;
19 };
20 
21 #define __Z_EROFS_BVSET(name, total) \
22 struct name { \
23 	/* point to the next page which contains the following bvecs */ \
24 	struct page *nextpage; \
25 	struct z_erofs_bvec bvec[total]; \
26 }
27 __Z_EROFS_BVSET(z_erofs_bvset,);
28 __Z_EROFS_BVSET(z_erofs_bvset_inline, Z_EROFS_INLINE_BVECS);
29 
30 /*
31  * Structure fields follow one of the following exclusion rules.
32  *
33  * I: Modifiable by initialization/destruction paths and read-only
34  *    for everyone else;
35  *
36  * L: Field should be protected by the pcluster lock;
37  *
38  * A: Field should be accessed / updated in atomic for parallelized code.
39  */
40 struct z_erofs_pcluster {
41 	struct mutex lock;
42 	struct lockref lockref;
43 
44 	/* A: point to next chained pcluster or TAILs */
45 	struct z_erofs_pcluster *next;
46 
47 	/* I: start physical position of this pcluster */
48 	erofs_off_t pos;
49 
50 	/* L: the maximum decompression size of this round */
51 	unsigned int length;
52 
53 	/* L: total number of bvecs */
54 	unsigned int vcnt;
55 
56 	/* I: pcluster size (compressed size) in bytes */
57 	unsigned int pclustersize;
58 
59 	/* I: page offset of start position of decompression */
60 	unsigned short pageofs_out;
61 
62 	/* I: page offset of inline compressed data */
63 	unsigned short pageofs_in;
64 
65 	union {
66 		/* L: inline a certain number of bvec for bootstrap */
67 		struct z_erofs_bvset_inline bvset;
68 
69 		/* I: can be used to free the pcluster by RCU. */
70 		struct rcu_head rcu;
71 	};
72 
73 	/* I: compression algorithm format */
74 	unsigned char algorithmformat;
75 
76 	/* I: whether compressed data is in-lined or not */
77 	bool from_meta;
78 
79 	/* L: whether partial decompression or not */
80 	bool partial;
81 
82 	/* L: whether extra buffer allocations are best-effort */
83 	bool besteffort;
84 
85 	/* A: compressed bvecs (can be cached or inplaced pages) */
86 	struct z_erofs_bvec compressed_bvecs[];
87 };
88 
89 /* the end of a chain of pclusters */
90 #define Z_EROFS_PCLUSTER_TAIL           ((void *) 0x700 + POISON_POINTER_DELTA)
91 
92 struct z_erofs_decompressqueue {
93 	struct super_block *sb;
94 	struct z_erofs_pcluster *head;
95 	atomic_t pending_bios;
96 
97 	union {
98 		struct completion done;
99 		struct work_struct work;
100 		struct kthread_work kthread_work;
101 	} u;
102 	bool eio, sync;
103 };
104 
105 static inline unsigned int z_erofs_pclusterpages(struct z_erofs_pcluster *pcl)
106 {
107 	return PAGE_ALIGN(pcl->pageofs_in + pcl->pclustersize) >> PAGE_SHIFT;
108 }
109 
110 static bool erofs_folio_is_managed(struct erofs_sb_info *sbi, struct folio *fo)
111 {
112 	return fo->mapping == MNGD_MAPPING(sbi);
113 }
114 
115 #define Z_EROFS_ONSTACK_PAGES		32
116 
117 /*
118  * since pclustersize is variable for big pcluster feature, introduce slab
119  * pools implementation for different pcluster sizes.
120  */
121 struct z_erofs_pcluster_slab {
122 	struct kmem_cache *slab;
123 	unsigned int maxpages;
124 	char name[48];
125 };
126 
127 #define _PCLP(n) { .maxpages = n }
128 
129 static struct z_erofs_pcluster_slab pcluster_pool[] __read_mostly = {
130 	_PCLP(1), _PCLP(4), _PCLP(16), _PCLP(64), _PCLP(128),
131 	_PCLP(Z_EROFS_PCLUSTER_MAX_PAGES + 1)
132 };
133 
134 struct z_erofs_bvec_iter {
135 	struct page *bvpage;
136 	struct z_erofs_bvset *bvset;
137 	unsigned int nr, cur;
138 };
139 
140 static struct page *z_erofs_bvec_iter_end(struct z_erofs_bvec_iter *iter)
141 {
142 	if (iter->bvpage)
143 		kunmap_local(iter->bvset);
144 	return iter->bvpage;
145 }
146 
147 static struct page *z_erofs_bvset_flip(struct z_erofs_bvec_iter *iter)
148 {
149 	unsigned long base = (unsigned long)((struct z_erofs_bvset *)0)->bvec;
150 	/* have to access nextpage in advance, otherwise it will be unmapped */
151 	struct page *nextpage = iter->bvset->nextpage;
152 	struct page *oldpage;
153 
154 	DBG_BUGON(!nextpage);
155 	oldpage = z_erofs_bvec_iter_end(iter);
156 	iter->bvpage = nextpage;
157 	iter->bvset = kmap_local_page(nextpage);
158 	iter->nr = (PAGE_SIZE - base) / sizeof(struct z_erofs_bvec);
159 	iter->cur = 0;
160 	return oldpage;
161 }
162 
163 static void z_erofs_bvec_iter_begin(struct z_erofs_bvec_iter *iter,
164 				    struct z_erofs_bvset_inline *bvset,
165 				    unsigned int bootstrap_nr,
166 				    unsigned int cur)
167 {
168 	*iter = (struct z_erofs_bvec_iter) {
169 		.nr = bootstrap_nr,
170 		.bvset = (struct z_erofs_bvset *)bvset,
171 	};
172 
173 	while (cur > iter->nr) {
174 		cur -= iter->nr;
175 		z_erofs_bvset_flip(iter);
176 	}
177 	iter->cur = cur;
178 }
179 
180 static int z_erofs_bvec_enqueue(struct z_erofs_bvec_iter *iter,
181 				struct z_erofs_bvec *bvec,
182 				struct page **candidate_bvpage,
183 				struct page **pagepool)
184 {
185 	if (iter->cur >= iter->nr) {
186 		struct page *nextpage = *candidate_bvpage;
187 
188 		if (!nextpage) {
189 			nextpage = __erofs_allocpage(pagepool, GFP_KERNEL,
190 					true);
191 			if (!nextpage)
192 				return -ENOMEM;
193 			set_page_private(nextpage, Z_EROFS_SHORTLIVED_PAGE);
194 		}
195 		DBG_BUGON(iter->bvset->nextpage);
196 		iter->bvset->nextpage = nextpage;
197 		z_erofs_bvset_flip(iter);
198 
199 		iter->bvset->nextpage = NULL;
200 		*candidate_bvpage = NULL;
201 	}
202 	iter->bvset->bvec[iter->cur++] = *bvec;
203 	return 0;
204 }
205 
206 static void z_erofs_bvec_dequeue(struct z_erofs_bvec_iter *iter,
207 				 struct z_erofs_bvec *bvec,
208 				 struct page **old_bvpage)
209 {
210 	if (iter->cur == iter->nr)
211 		*old_bvpage = z_erofs_bvset_flip(iter);
212 	else
213 		*old_bvpage = NULL;
214 	*bvec = iter->bvset->bvec[iter->cur++];
215 }
216 
217 static void z_erofs_destroy_pcluster_pool(void)
218 {
219 	int i;
220 
221 	for (i = 0; i < ARRAY_SIZE(pcluster_pool); ++i) {
222 		if (!pcluster_pool[i].slab)
223 			continue;
224 		kmem_cache_destroy(pcluster_pool[i].slab);
225 		pcluster_pool[i].slab = NULL;
226 	}
227 }
228 
229 static int z_erofs_create_pcluster_pool(void)
230 {
231 	struct z_erofs_pcluster_slab *pcs;
232 	struct z_erofs_pcluster *a;
233 	unsigned int size;
234 
235 	for (pcs = pcluster_pool;
236 	     pcs < pcluster_pool + ARRAY_SIZE(pcluster_pool); ++pcs) {
237 		size = struct_size(a, compressed_bvecs, pcs->maxpages);
238 
239 		sprintf(pcs->name, "erofs_pcluster-%u", pcs->maxpages);
240 		pcs->slab = kmem_cache_create(pcs->name, size, 0,
241 					      SLAB_RECLAIM_ACCOUNT, NULL);
242 		if (pcs->slab)
243 			continue;
244 
245 		z_erofs_destroy_pcluster_pool();
246 		return -ENOMEM;
247 	}
248 	return 0;
249 }
250 
251 static struct z_erofs_pcluster *z_erofs_alloc_pcluster(unsigned int size)
252 {
253 	unsigned int nrpages = PAGE_ALIGN(size) >> PAGE_SHIFT;
254 	struct z_erofs_pcluster_slab *pcs = pcluster_pool;
255 
256 	for (; pcs < pcluster_pool + ARRAY_SIZE(pcluster_pool); ++pcs) {
257 		struct z_erofs_pcluster *pcl;
258 
259 		if (nrpages > pcs->maxpages)
260 			continue;
261 
262 		pcl = kmem_cache_zalloc(pcs->slab, GFP_KERNEL);
263 		if (!pcl)
264 			return ERR_PTR(-ENOMEM);
265 		return pcl;
266 	}
267 	return ERR_PTR(-EINVAL);
268 }
269 
270 static void z_erofs_free_pcluster(struct z_erofs_pcluster *pcl)
271 {
272 	unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
273 	int i;
274 
275 	for (i = 0; i < ARRAY_SIZE(pcluster_pool); ++i) {
276 		struct z_erofs_pcluster_slab *pcs = pcluster_pool + i;
277 
278 		if (pclusterpages > pcs->maxpages)
279 			continue;
280 
281 		kmem_cache_free(pcs->slab, pcl);
282 		return;
283 	}
284 	DBG_BUGON(1);
285 }
286 
287 static struct workqueue_struct *z_erofs_workqueue __read_mostly;
288 
289 #ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
290 static struct kthread_worker __rcu **z_erofs_pcpu_workers;
291 static atomic_t erofs_percpu_workers_initialized = ATOMIC_INIT(0);
292 
293 static void erofs_destroy_percpu_workers(void)
294 {
295 	struct kthread_worker *worker;
296 	unsigned int cpu;
297 
298 	for_each_possible_cpu(cpu) {
299 		worker = rcu_dereference_protected(
300 					z_erofs_pcpu_workers[cpu], 1);
301 		rcu_assign_pointer(z_erofs_pcpu_workers[cpu], NULL);
302 		if (worker)
303 			kthread_destroy_worker(worker);
304 	}
305 	kfree(z_erofs_pcpu_workers);
306 }
307 
308 static struct kthread_worker *erofs_init_percpu_worker(int cpu)
309 {
310 	struct kthread_worker *worker =
311 		kthread_run_worker_on_cpu(cpu, 0, "erofs_worker/%u");
312 
313 	if (IS_ERR(worker))
314 		return worker;
315 	if (IS_ENABLED(CONFIG_EROFS_FS_PCPU_KTHREAD_HIPRI))
316 		sched_set_fifo_low(worker->task);
317 	return worker;
318 }
319 
320 static int erofs_init_percpu_workers(void)
321 {
322 	struct kthread_worker *worker;
323 	unsigned int cpu;
324 
325 	z_erofs_pcpu_workers = kcalloc(num_possible_cpus(),
326 			sizeof(struct kthread_worker *), GFP_ATOMIC);
327 	if (!z_erofs_pcpu_workers)
328 		return -ENOMEM;
329 
330 	for_each_online_cpu(cpu) {	/* could miss cpu{off,on}line? */
331 		worker = erofs_init_percpu_worker(cpu);
332 		if (!IS_ERR(worker))
333 			rcu_assign_pointer(z_erofs_pcpu_workers[cpu], worker);
334 	}
335 	return 0;
336 }
337 
338 #ifdef CONFIG_HOTPLUG_CPU
339 static DEFINE_SPINLOCK(z_erofs_pcpu_worker_lock);
340 static enum cpuhp_state erofs_cpuhp_state;
341 
342 static int erofs_cpu_online(unsigned int cpu)
343 {
344 	struct kthread_worker *worker, *old;
345 
346 	worker = erofs_init_percpu_worker(cpu);
347 	if (IS_ERR(worker))
348 		return PTR_ERR(worker);
349 
350 	spin_lock(&z_erofs_pcpu_worker_lock);
351 	old = rcu_dereference_protected(z_erofs_pcpu_workers[cpu],
352 			lockdep_is_held(&z_erofs_pcpu_worker_lock));
353 	if (!old)
354 		rcu_assign_pointer(z_erofs_pcpu_workers[cpu], worker);
355 	spin_unlock(&z_erofs_pcpu_worker_lock);
356 	if (old)
357 		kthread_destroy_worker(worker);
358 	return 0;
359 }
360 
361 static int erofs_cpu_offline(unsigned int cpu)
362 {
363 	struct kthread_worker *worker;
364 
365 	spin_lock(&z_erofs_pcpu_worker_lock);
366 	worker = rcu_dereference_protected(z_erofs_pcpu_workers[cpu],
367 			lockdep_is_held(&z_erofs_pcpu_worker_lock));
368 	rcu_assign_pointer(z_erofs_pcpu_workers[cpu], NULL);
369 	spin_unlock(&z_erofs_pcpu_worker_lock);
370 
371 	synchronize_rcu();
372 	if (worker)
373 		kthread_destroy_worker(worker);
374 	return 0;
375 }
376 
377 static int erofs_cpu_hotplug_init(void)
378 {
379 	int state;
380 
381 	state = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
382 			"fs/erofs:online", erofs_cpu_online, erofs_cpu_offline);
383 	if (state < 0)
384 		return state;
385 
386 	erofs_cpuhp_state = state;
387 	return 0;
388 }
389 
390 static void erofs_cpu_hotplug_destroy(void)
391 {
392 	if (erofs_cpuhp_state)
393 		cpuhp_remove_state_nocalls(erofs_cpuhp_state);
394 }
395 #else /* !CONFIG_HOTPLUG_CPU  */
396 static inline int erofs_cpu_hotplug_init(void) { return 0; }
397 static inline void erofs_cpu_hotplug_destroy(void) {}
398 #endif/* CONFIG_HOTPLUG_CPU */
399 static int z_erofs_init_pcpu_workers(struct super_block *sb)
400 {
401 	int err;
402 
403 	if (atomic_xchg(&erofs_percpu_workers_initialized, 1))
404 		return 0;
405 
406 	err = erofs_init_percpu_workers();
407 	if (err) {
408 		erofs_err(sb, "per-cpu workers: failed to allocate.");
409 		goto err_init_percpu_workers;
410 	}
411 
412 	err = erofs_cpu_hotplug_init();
413 	if (err < 0) {
414 		erofs_err(sb, "per-cpu workers: failed CPU hotplug init.");
415 		goto err_cpuhp_init;
416 	}
417 	erofs_info(sb, "initialized per-cpu workers successfully.");
418 	return err;
419 
420 err_cpuhp_init:
421 	erofs_destroy_percpu_workers();
422 err_init_percpu_workers:
423 	atomic_set(&erofs_percpu_workers_initialized, 0);
424 	return err;
425 }
426 
427 static void z_erofs_destroy_pcpu_workers(void)
428 {
429 	if (!atomic_xchg(&erofs_percpu_workers_initialized, 0))
430 		return;
431 	erofs_cpu_hotplug_destroy();
432 	erofs_destroy_percpu_workers();
433 }
434 #else /* !CONFIG_EROFS_FS_PCPU_KTHREAD */
435 static inline int z_erofs_init_pcpu_workers(struct super_block *sb) { return 0; }
436 static inline void z_erofs_destroy_pcpu_workers(void) {}
437 #endif/* CONFIG_EROFS_FS_PCPU_KTHREAD */
438 
439 void z_erofs_exit_subsystem(void)
440 {
441 	z_erofs_destroy_pcpu_workers();
442 	destroy_workqueue(z_erofs_workqueue);
443 	z_erofs_destroy_pcluster_pool();
444 	z_erofs_crypto_disable_all_engines();
445 	z_erofs_exit_decompressor();
446 }
447 
448 int __init z_erofs_init_subsystem(void)
449 {
450 	int err = z_erofs_init_decompressor();
451 
452 	if (err)
453 		goto err_decompressor;
454 
455 	err = z_erofs_create_pcluster_pool();
456 	if (err)
457 		goto err_pcluster_pool;
458 
459 	z_erofs_workqueue = alloc_workqueue("erofs_worker",
460 			WQ_UNBOUND | WQ_HIGHPRI, num_possible_cpus());
461 	if (!z_erofs_workqueue) {
462 		err = -ENOMEM;
463 		goto err_workqueue_init;
464 	}
465 
466 	return err;
467 
468 err_workqueue_init:
469 	z_erofs_destroy_pcluster_pool();
470 err_pcluster_pool:
471 	z_erofs_exit_decompressor();
472 err_decompressor:
473 	return err;
474 }
475 
476 enum z_erofs_pclustermode {
477 	/* It has previously been linked into another processing chain */
478 	Z_EROFS_PCLUSTER_INFLIGHT,
479 	/*
480 	 * A weaker form of Z_EROFS_PCLUSTER_FOLLOWED; the difference is that it
481 	 * may be dispatched to the bypass queue later due to uptodated managed
482 	 * folios.  All file-backed folios related to this pcluster cannot be
483 	 * reused for in-place I/O (or bvpage) since the pcluster may be decoded
484 	 * in a separate queue (and thus out of order).
485 	 */
486 	Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE,
487 	/*
488 	 * The pcluster has just been linked to our processing chain.
489 	 * File-backed folios (except for the head page) related to it can be
490 	 * used for in-place I/O (or bvpage).
491 	 */
492 	Z_EROFS_PCLUSTER_FOLLOWED,
493 };
494 
495 struct z_erofs_frontend {
496 	struct inode *const inode;
497 	struct erofs_map_blocks map;
498 	struct z_erofs_bvec_iter biter;
499 
500 	struct page *pagepool;
501 	struct page *candidate_bvpage;
502 	struct z_erofs_pcluster *pcl, *head;
503 	enum z_erofs_pclustermode mode;
504 
505 	erofs_off_t headoffset;
506 
507 	/* a pointer used to pick up inplace I/O pages */
508 	unsigned int icur;
509 };
510 
511 #define Z_EROFS_DEFINE_FRONTEND(fe, i, ho) struct z_erofs_frontend fe = { \
512 	.inode = i, .head = Z_EROFS_PCLUSTER_TAIL, \
513 	.mode = Z_EROFS_PCLUSTER_FOLLOWED, .headoffset = ho }
514 
515 static bool z_erofs_should_alloc_cache(struct z_erofs_frontend *fe)
516 {
517 	unsigned int cachestrategy = EROFS_I_SB(fe->inode)->opt.cache_strategy;
518 
519 	if (cachestrategy <= EROFS_ZIP_CACHE_DISABLED)
520 		return false;
521 
522 	if (!(fe->map.m_flags & EROFS_MAP_FULL_MAPPED))
523 		return true;
524 
525 	if (cachestrategy >= EROFS_ZIP_CACHE_READAROUND &&
526 	    fe->map.m_la < fe->headoffset)
527 		return true;
528 
529 	return false;
530 }
531 
532 static void z_erofs_bind_cache(struct z_erofs_frontend *fe)
533 {
534 	struct address_space *mc = MNGD_MAPPING(EROFS_I_SB(fe->inode));
535 	struct z_erofs_pcluster *pcl = fe->pcl;
536 	unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
537 	bool shouldalloc = z_erofs_should_alloc_cache(fe);
538 	pgoff_t poff = pcl->pos >> PAGE_SHIFT;
539 	bool may_bypass = true;
540 	/* Optimistic allocation, as in-place I/O can be used as a fallback */
541 	gfp_t gfp = (mapping_gfp_mask(mc) & ~__GFP_DIRECT_RECLAIM) |
542 			__GFP_NOMEMALLOC | __GFP_NORETRY | __GFP_NOWARN;
543 	struct folio *folio, *newfolio;
544 	unsigned int i;
545 
546 	if (i_blocksize(fe->inode) != PAGE_SIZE ||
547 	    fe->mode < Z_EROFS_PCLUSTER_FOLLOWED)
548 		return;
549 
550 	for (i = 0; i < pclusterpages; ++i) {
551 		/* Inaccurate check w/o locking to avoid unneeded lookups */
552 		if (READ_ONCE(pcl->compressed_bvecs[i].page))
553 			continue;
554 
555 		folio = filemap_get_folio(mc, poff + i);
556 		if (IS_ERR(folio)) {
557 			may_bypass = false;
558 			if (!shouldalloc)
559 				continue;
560 
561 			/*
562 			 * Allocate a managed folio for cached I/O, or it may be
563 			 * then filled with a file-backed folio for in-place I/O
564 			 */
565 			newfolio = filemap_alloc_folio(gfp, 0);
566 			if (!newfolio)
567 				continue;
568 			newfolio->private = Z_EROFS_PREALLOCATED_FOLIO;
569 			folio = NULL;
570 		}
571 		spin_lock(&pcl->lockref.lock);
572 		if (!pcl->compressed_bvecs[i].page) {
573 			pcl->compressed_bvecs[i].page =
574 				folio_page(folio ?: newfolio, 0);
575 			spin_unlock(&pcl->lockref.lock);
576 			continue;
577 		}
578 		spin_unlock(&pcl->lockref.lock);
579 		folio_put(folio ?: newfolio);
580 	}
581 
582 	/*
583 	 * Don't perform in-place I/O if all compressed pages are available in
584 	 * the managed cache, as the pcluster can be moved to the bypass queue.
585 	 */
586 	if (may_bypass)
587 		fe->mode = Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE;
588 }
589 
590 /* (erofs_shrinker) disconnect cached encoded data with pclusters */
591 static int erofs_try_to_free_all_cached_folios(struct erofs_sb_info *sbi,
592 					       struct z_erofs_pcluster *pcl)
593 {
594 	unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
595 	struct folio *folio;
596 	int i;
597 
598 	DBG_BUGON(pcl->from_meta);
599 	/* Each cached folio contains one page unless bs > ps is supported */
600 	for (i = 0; i < pclusterpages; ++i) {
601 		if (pcl->compressed_bvecs[i].page) {
602 			folio = page_folio(pcl->compressed_bvecs[i].page);
603 			/* Avoid reclaiming or migrating this folio */
604 			if (!folio_trylock(folio))
605 				return -EBUSY;
606 
607 			if (!erofs_folio_is_managed(sbi, folio))
608 				continue;
609 			pcl->compressed_bvecs[i].page = NULL;
610 			folio_detach_private(folio);
611 			folio_unlock(folio);
612 		}
613 	}
614 	return 0;
615 }
616 
617 static bool z_erofs_cache_release_folio(struct folio *folio, gfp_t gfp)
618 {
619 	struct z_erofs_pcluster *pcl = folio_get_private(folio);
620 	struct z_erofs_bvec *bvec = pcl->compressed_bvecs;
621 	struct z_erofs_bvec *end = bvec + z_erofs_pclusterpages(pcl);
622 	bool ret;
623 
624 	if (!folio_test_private(folio))
625 		return true;
626 
627 	ret = false;
628 	spin_lock(&pcl->lockref.lock);
629 	if (pcl->lockref.count <= 0) {
630 		DBG_BUGON(pcl->from_meta);
631 		for (; bvec < end; ++bvec) {
632 			if (bvec->page && page_folio(bvec->page) == folio) {
633 				bvec->page = NULL;
634 				folio_detach_private(folio);
635 				ret = true;
636 				break;
637 			}
638 		}
639 	}
640 	spin_unlock(&pcl->lockref.lock);
641 	return ret;
642 }
643 
644 /*
645  * It will be called only on inode eviction. In case that there are still some
646  * decompression requests in progress, wait with rescheduling for a bit here.
647  * An extra lock could be introduced instead but it seems unnecessary.
648  */
649 static void z_erofs_cache_invalidate_folio(struct folio *folio,
650 					   size_t offset, size_t length)
651 {
652 	const size_t stop = length + offset;
653 
654 	/* Check for potential overflow in debug mode */
655 	DBG_BUGON(stop > folio_size(folio) || stop < length);
656 
657 	if (offset == 0 && stop == folio_size(folio))
658 		while (!z_erofs_cache_release_folio(folio, 0))
659 			cond_resched();
660 }
661 
662 static const struct address_space_operations z_erofs_cache_aops = {
663 	.release_folio = z_erofs_cache_release_folio,
664 	.invalidate_folio = z_erofs_cache_invalidate_folio,
665 };
666 
667 int z_erofs_init_super(struct super_block *sb)
668 {
669 	struct inode *inode;
670 	int err;
671 
672 	err = z_erofs_init_pcpu_workers(sb);
673 	if (err)
674 		return err;
675 
676 	inode = new_inode(sb);
677 	if (!inode)
678 		return -ENOMEM;
679 	set_nlink(inode, 1);
680 	inode->i_size = OFFSET_MAX;
681 	inode->i_mapping->a_ops = &z_erofs_cache_aops;
682 	mapping_set_gfp_mask(inode->i_mapping, GFP_KERNEL);
683 	EROFS_SB(sb)->managed_cache = inode;
684 	xa_init(&EROFS_SB(sb)->managed_pslots);
685 	return 0;
686 }
687 
688 /* callers must be with pcluster lock held */
689 static int z_erofs_attach_page(struct z_erofs_frontend *fe,
690 			       struct z_erofs_bvec *bvec, bool exclusive)
691 {
692 	struct z_erofs_pcluster *pcl = fe->pcl;
693 	int ret;
694 
695 	if (exclusive) {
696 		/* Inplace I/O is limited to one page for uncompressed data */
697 		if (pcl->algorithmformat < Z_EROFS_COMPRESSION_MAX ||
698 		    fe->icur <= 1) {
699 			/* Try to prioritize inplace I/O here */
700 			spin_lock(&pcl->lockref.lock);
701 			while (fe->icur > 0) {
702 				if (pcl->compressed_bvecs[--fe->icur].page)
703 					continue;
704 				pcl->compressed_bvecs[fe->icur] = *bvec;
705 				spin_unlock(&pcl->lockref.lock);
706 				return 0;
707 			}
708 			spin_unlock(&pcl->lockref.lock);
709 		}
710 
711 		/* otherwise, check if it can be used as a bvpage */
712 		if (fe->mode >= Z_EROFS_PCLUSTER_FOLLOWED &&
713 		    !fe->candidate_bvpage)
714 			fe->candidate_bvpage = bvec->page;
715 	}
716 	ret = z_erofs_bvec_enqueue(&fe->biter, bvec, &fe->candidate_bvpage,
717 				   &fe->pagepool);
718 	fe->pcl->vcnt += (ret >= 0);
719 	return ret;
720 }
721 
722 static bool z_erofs_get_pcluster(struct z_erofs_pcluster *pcl)
723 {
724 	if (lockref_get_not_zero(&pcl->lockref))
725 		return true;
726 
727 	spin_lock(&pcl->lockref.lock);
728 	if (__lockref_is_dead(&pcl->lockref)) {
729 		spin_unlock(&pcl->lockref.lock);
730 		return false;
731 	}
732 
733 	if (!pcl->lockref.count++)
734 		atomic_long_dec(&erofs_global_shrink_cnt);
735 	spin_unlock(&pcl->lockref.lock);
736 	return true;
737 }
738 
739 static int z_erofs_register_pcluster(struct z_erofs_frontend *fe)
740 {
741 	struct erofs_map_blocks *map = &fe->map;
742 	struct super_block *sb = fe->inode->i_sb;
743 	struct erofs_sb_info *sbi = EROFS_SB(sb);
744 	struct z_erofs_pcluster *pcl, *pre;
745 	unsigned int pageofs_in;
746 	int err;
747 
748 	pageofs_in = erofs_blkoff(sb, map->m_pa);
749 	pcl = z_erofs_alloc_pcluster(pageofs_in + map->m_plen);
750 	if (IS_ERR(pcl))
751 		return PTR_ERR(pcl);
752 
753 	lockref_init(&pcl->lockref); /* one ref for this request */
754 	pcl->algorithmformat = map->m_algorithmformat;
755 	pcl->pclustersize = map->m_plen;
756 	pcl->length = 0;
757 	pcl->partial = true;
758 	pcl->next = fe->head;
759 	pcl->pos = map->m_pa;
760 	pcl->pageofs_in = pageofs_in;
761 	pcl->pageofs_out = map->m_la & ~PAGE_MASK;
762 	pcl->from_meta = map->m_flags & EROFS_MAP_META;
763 	fe->mode = Z_EROFS_PCLUSTER_FOLLOWED;
764 
765 	/*
766 	 * lock all primary followed works before visible to others
767 	 * and mutex_trylock *never* fails for a new pcluster.
768 	 */
769 	mutex_init(&pcl->lock);
770 	DBG_BUGON(!mutex_trylock(&pcl->lock));
771 
772 	if (!pcl->from_meta) {
773 		while (1) {
774 			xa_lock(&sbi->managed_pslots);
775 			pre = __xa_cmpxchg(&sbi->managed_pslots, pcl->pos,
776 					   NULL, pcl, GFP_KERNEL);
777 			if (!pre || xa_is_err(pre) || z_erofs_get_pcluster(pre)) {
778 				xa_unlock(&sbi->managed_pslots);
779 				break;
780 			}
781 			/* try to legitimize the current in-tree one */
782 			xa_unlock(&sbi->managed_pslots);
783 			cond_resched();
784 		}
785 		if (xa_is_err(pre)) {
786 			err = xa_err(pre);
787 			goto err_out;
788 		} else if (pre) {
789 			fe->pcl = pre;
790 			err = -EEXIST;
791 			goto err_out;
792 		}
793 	}
794 	fe->head = fe->pcl = pcl;
795 	return 0;
796 
797 err_out:
798 	mutex_unlock(&pcl->lock);
799 	z_erofs_free_pcluster(pcl);
800 	return err;
801 }
802 
803 static int z_erofs_pcluster_begin(struct z_erofs_frontend *fe)
804 {
805 	struct erofs_map_blocks *map = &fe->map;
806 	struct super_block *sb = fe->inode->i_sb;
807 	struct z_erofs_pcluster *pcl = NULL;
808 	int ret;
809 
810 	DBG_BUGON(fe->pcl);
811 	/* must be Z_EROFS_PCLUSTER_TAIL or pointed to previous pcluster */
812 	DBG_BUGON(!fe->head);
813 
814 	if (!(map->m_flags & EROFS_MAP_META)) {
815 		while (1) {
816 			rcu_read_lock();
817 			pcl = xa_load(&EROFS_SB(sb)->managed_pslots, map->m_pa);
818 			if (!pcl || z_erofs_get_pcluster(pcl)) {
819 				DBG_BUGON(pcl && map->m_pa != pcl->pos);
820 				rcu_read_unlock();
821 				break;
822 			}
823 			rcu_read_unlock();
824 		}
825 	} else if ((map->m_pa & ~PAGE_MASK) + map->m_plen > PAGE_SIZE) {
826 		DBG_BUGON(1);
827 		return -EFSCORRUPTED;
828 	}
829 
830 	if (pcl) {
831 		fe->pcl = pcl;
832 		ret = -EEXIST;
833 	} else {
834 		ret = z_erofs_register_pcluster(fe);
835 	}
836 
837 	if (ret == -EEXIST) {
838 		mutex_lock(&fe->pcl->lock);
839 		/* check if this pcluster hasn't been linked into any chain. */
840 		if (!cmpxchg(&fe->pcl->next, NULL, fe->head)) {
841 			/* .. so it can be attached to our submission chain */
842 			fe->head = fe->pcl;
843 			fe->mode = Z_EROFS_PCLUSTER_FOLLOWED;
844 		} else {	/* otherwise, it belongs to an inflight chain */
845 			fe->mode = Z_EROFS_PCLUSTER_INFLIGHT;
846 		}
847 	} else if (ret) {
848 		return ret;
849 	}
850 
851 	z_erofs_bvec_iter_begin(&fe->biter, &fe->pcl->bvset,
852 				Z_EROFS_INLINE_BVECS, fe->pcl->vcnt);
853 	if (!fe->pcl->from_meta) {
854 		/* bind cache first when cached decompression is preferred */
855 		z_erofs_bind_cache(fe);
856 	} else {
857 		void *mptr;
858 
859 		mptr = erofs_read_metabuf(&map->buf, sb, map->m_pa, false);
860 		if (IS_ERR(mptr)) {
861 			ret = PTR_ERR(mptr);
862 			erofs_err(sb, "failed to get inline data %d", ret);
863 			return ret;
864 		}
865 		get_page(map->buf.page);
866 		WRITE_ONCE(fe->pcl->compressed_bvecs[0].page, map->buf.page);
867 		fe->pcl->pageofs_in = map->m_pa & ~PAGE_MASK;
868 		fe->mode = Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE;
869 	}
870 	/* file-backed inplace I/O pages are traversed in reverse order */
871 	fe->icur = z_erofs_pclusterpages(fe->pcl);
872 	return 0;
873 }
874 
875 static void z_erofs_rcu_callback(struct rcu_head *head)
876 {
877 	z_erofs_free_pcluster(container_of(head, struct z_erofs_pcluster, rcu));
878 }
879 
880 static bool __erofs_try_to_release_pcluster(struct erofs_sb_info *sbi,
881 					  struct z_erofs_pcluster *pcl)
882 {
883 	if (pcl->lockref.count)
884 		return false;
885 
886 	/*
887 	 * Note that all cached folios should be detached before deleted from
888 	 * the XArray.  Otherwise some folios could be still attached to the
889 	 * orphan old pcluster when the new one is available in the tree.
890 	 */
891 	if (erofs_try_to_free_all_cached_folios(sbi, pcl))
892 		return false;
893 
894 	/*
895 	 * It's impossible to fail after the pcluster is freezed, but in order
896 	 * to avoid some race conditions, add a DBG_BUGON to observe this.
897 	 */
898 	DBG_BUGON(__xa_erase(&sbi->managed_pslots, pcl->pos) != pcl);
899 
900 	lockref_mark_dead(&pcl->lockref);
901 	return true;
902 }
903 
904 static bool erofs_try_to_release_pcluster(struct erofs_sb_info *sbi,
905 					  struct z_erofs_pcluster *pcl)
906 {
907 	bool free;
908 
909 	spin_lock(&pcl->lockref.lock);
910 	free = __erofs_try_to_release_pcluster(sbi, pcl);
911 	spin_unlock(&pcl->lockref.lock);
912 	if (free) {
913 		atomic_long_dec(&erofs_global_shrink_cnt);
914 		call_rcu(&pcl->rcu, z_erofs_rcu_callback);
915 	}
916 	return free;
917 }
918 
919 unsigned long z_erofs_shrink_scan(struct erofs_sb_info *sbi, unsigned long nr)
920 {
921 	struct z_erofs_pcluster *pcl;
922 	unsigned long index, freed = 0;
923 
924 	xa_lock(&sbi->managed_pslots);
925 	xa_for_each(&sbi->managed_pslots, index, pcl) {
926 		/* try to shrink each valid pcluster */
927 		if (!erofs_try_to_release_pcluster(sbi, pcl))
928 			continue;
929 		xa_unlock(&sbi->managed_pslots);
930 
931 		++freed;
932 		if (!--nr)
933 			return freed;
934 		xa_lock(&sbi->managed_pslots);
935 	}
936 	xa_unlock(&sbi->managed_pslots);
937 	return freed;
938 }
939 
940 static void z_erofs_put_pcluster(struct erofs_sb_info *sbi,
941 		struct z_erofs_pcluster *pcl, bool try_free)
942 {
943 	bool free = false;
944 
945 	if (lockref_put_or_lock(&pcl->lockref))
946 		return;
947 
948 	DBG_BUGON(__lockref_is_dead(&pcl->lockref));
949 	if (!--pcl->lockref.count) {
950 		if (try_free && xa_trylock(&sbi->managed_pslots)) {
951 			free = __erofs_try_to_release_pcluster(sbi, pcl);
952 			xa_unlock(&sbi->managed_pslots);
953 		}
954 		atomic_long_add(!free, &erofs_global_shrink_cnt);
955 	}
956 	spin_unlock(&pcl->lockref.lock);
957 	if (free)
958 		call_rcu(&pcl->rcu, z_erofs_rcu_callback);
959 }
960 
961 static void z_erofs_pcluster_end(struct z_erofs_frontend *fe)
962 {
963 	struct z_erofs_pcluster *pcl = fe->pcl;
964 
965 	if (!pcl)
966 		return;
967 
968 	z_erofs_bvec_iter_end(&fe->biter);
969 	mutex_unlock(&pcl->lock);
970 
971 	if (fe->candidate_bvpage)
972 		fe->candidate_bvpage = NULL;
973 
974 	/* Drop refcount if it doesn't belong to our processing chain */
975 	if (fe->mode < Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE)
976 		z_erofs_put_pcluster(EROFS_I_SB(fe->inode), pcl, false);
977 	fe->pcl = NULL;
978 }
979 
980 static int z_erofs_read_fragment(struct super_block *sb, struct folio *folio,
981 			unsigned int cur, unsigned int end, erofs_off_t pos)
982 {
983 	struct inode *packed_inode = EROFS_SB(sb)->packed_inode;
984 	struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
985 	unsigned int cnt;
986 	u8 *src;
987 
988 	if (!packed_inode)
989 		return -EFSCORRUPTED;
990 
991 	buf.mapping = packed_inode->i_mapping;
992 	for (; cur < end; cur += cnt, pos += cnt) {
993 		cnt = min(end - cur, sb->s_blocksize - erofs_blkoff(sb, pos));
994 		src = erofs_bread(&buf, pos, true);
995 		if (IS_ERR(src)) {
996 			erofs_put_metabuf(&buf);
997 			return PTR_ERR(src);
998 		}
999 		memcpy_to_folio(folio, cur, src, cnt);
1000 	}
1001 	erofs_put_metabuf(&buf);
1002 	return 0;
1003 }
1004 
1005 static int z_erofs_scan_folio(struct z_erofs_frontend *f,
1006 			      struct folio *folio, bool ra)
1007 {
1008 	struct inode *const inode = f->inode;
1009 	struct erofs_map_blocks *const map = &f->map;
1010 	const loff_t offset = folio_pos(folio);
1011 	const unsigned int bs = i_blocksize(inode);
1012 	unsigned int end = folio_size(folio), split = 0, cur, pgs;
1013 	bool tight, excl;
1014 	int err = 0;
1015 
1016 	tight = (bs == PAGE_SIZE);
1017 	erofs_onlinefolio_init(folio);
1018 	do {
1019 		if (offset + end - 1 < map->m_la ||
1020 		    offset + end - 1 >= map->m_la + map->m_llen) {
1021 			z_erofs_pcluster_end(f);
1022 			map->m_la = offset + end - 1;
1023 			map->m_llen = 0;
1024 			err = z_erofs_map_blocks_iter(inode, map, 0);
1025 			if (err)
1026 				break;
1027 		}
1028 
1029 		cur = offset > map->m_la ? 0 : map->m_la - offset;
1030 		pgs = round_down(cur, PAGE_SIZE);
1031 		/* bump split parts first to avoid several separate cases */
1032 		++split;
1033 
1034 		if (!(map->m_flags & EROFS_MAP_MAPPED)) {
1035 			folio_zero_segment(folio, cur, end);
1036 			tight = false;
1037 		} else if (map->m_flags & EROFS_MAP_FRAGMENT) {
1038 			erofs_off_t fpos = offset + cur - map->m_la;
1039 
1040 			err = z_erofs_read_fragment(inode->i_sb, folio, cur,
1041 					cur + min(map->m_llen - fpos, end - cur),
1042 					EROFS_I(inode)->z_fragmentoff + fpos);
1043 			if (err)
1044 				break;
1045 			tight = false;
1046 		} else {
1047 			if (!f->pcl) {
1048 				err = z_erofs_pcluster_begin(f);
1049 				if (err)
1050 					break;
1051 				f->pcl->besteffort |= !ra;
1052 			}
1053 
1054 			pgs = round_down(end - 1, PAGE_SIZE);
1055 			/*
1056 			 * Ensure this partial page belongs to this submit chain
1057 			 * rather than other concurrent submit chains or
1058 			 * noio(bypass) chains since those chains are handled
1059 			 * asynchronously thus it cannot be used for inplace I/O
1060 			 * or bvpage (should be processed in the strict order.)
1061 			 */
1062 			tight &= (f->mode >= Z_EROFS_PCLUSTER_FOLLOWED);
1063 			excl = false;
1064 			if (cur <= pgs) {
1065 				excl = (split <= 1) || tight;
1066 				cur = pgs;
1067 			}
1068 
1069 			err = z_erofs_attach_page(f, &((struct z_erofs_bvec) {
1070 				.page = folio_page(folio, pgs >> PAGE_SHIFT),
1071 				.offset = offset + pgs - map->m_la,
1072 				.end = end - pgs, }), excl);
1073 			if (err)
1074 				break;
1075 
1076 			erofs_onlinefolio_split(folio);
1077 			if (f->pcl->length < offset + end - map->m_la) {
1078 				f->pcl->length = offset + end - map->m_la;
1079 				f->pcl->pageofs_out = map->m_la & ~PAGE_MASK;
1080 			}
1081 			if ((map->m_flags & EROFS_MAP_FULL_MAPPED) &&
1082 			    !(map->m_flags & EROFS_MAP_PARTIAL_REF) &&
1083 			    f->pcl->length == map->m_llen)
1084 				f->pcl->partial = false;
1085 		}
1086 		/* shorten the remaining extent to update progress */
1087 		map->m_llen = offset + cur - map->m_la;
1088 		map->m_flags &= ~EROFS_MAP_FULL_MAPPED;
1089 		if (cur <= pgs) {
1090 			split = cur < pgs;
1091 			tight = (bs == PAGE_SIZE);
1092 		}
1093 	} while ((end = cur) > 0);
1094 	erofs_onlinefolio_end(folio, err);
1095 	return err;
1096 }
1097 
1098 static bool z_erofs_is_sync_decompress(struct erofs_sb_info *sbi,
1099 				       unsigned int readahead_pages)
1100 {
1101 	/* auto: enable for read_folio, disable for readahead */
1102 	if ((sbi->opt.sync_decompress == EROFS_SYNC_DECOMPRESS_AUTO) &&
1103 	    !readahead_pages)
1104 		return true;
1105 
1106 	if ((sbi->opt.sync_decompress == EROFS_SYNC_DECOMPRESS_FORCE_ON) &&
1107 	    (readahead_pages <= sbi->opt.max_sync_decompress_pages))
1108 		return true;
1109 
1110 	return false;
1111 }
1112 
1113 static bool z_erofs_page_is_invalidated(struct page *page)
1114 {
1115 	return !page_folio(page)->mapping && !z_erofs_is_shortlived_page(page);
1116 }
1117 
1118 struct z_erofs_backend {
1119 	struct page *onstack_pages[Z_EROFS_ONSTACK_PAGES];
1120 	struct super_block *sb;
1121 	struct z_erofs_pcluster *pcl;
1122 	/* pages with the longest decompressed length for deduplication */
1123 	struct page **decompressed_pages;
1124 	/* pages to keep the compressed data */
1125 	struct page **compressed_pages;
1126 
1127 	struct list_head decompressed_secondary_bvecs;
1128 	struct page **pagepool;
1129 	unsigned int onstack_used, nr_pages;
1130 	/* indicate if temporary copies should be preserved for later use */
1131 	bool keepxcpy;
1132 };
1133 
1134 struct z_erofs_bvec_item {
1135 	struct z_erofs_bvec bvec;
1136 	struct list_head list;
1137 };
1138 
1139 static void z_erofs_do_decompressed_bvec(struct z_erofs_backend *be,
1140 					 struct z_erofs_bvec *bvec)
1141 {
1142 	int poff = bvec->offset + be->pcl->pageofs_out;
1143 	struct z_erofs_bvec_item *item;
1144 	struct page **page;
1145 
1146 	if (!(poff & ~PAGE_MASK) && (bvec->end == PAGE_SIZE ||
1147 			bvec->offset + bvec->end == be->pcl->length)) {
1148 		DBG_BUGON((poff >> PAGE_SHIFT) >= be->nr_pages);
1149 		page = be->decompressed_pages + (poff >> PAGE_SHIFT);
1150 		if (!*page) {
1151 			*page = bvec->page;
1152 			return;
1153 		}
1154 	} else {
1155 		be->keepxcpy = true;
1156 	}
1157 
1158 	/* (cold path) one pcluster is requested multiple times */
1159 	item = kmalloc(sizeof(*item), GFP_KERNEL | __GFP_NOFAIL);
1160 	item->bvec = *bvec;
1161 	list_add(&item->list, &be->decompressed_secondary_bvecs);
1162 }
1163 
1164 static void z_erofs_fill_other_copies(struct z_erofs_backend *be, int err)
1165 {
1166 	unsigned int off0 = be->pcl->pageofs_out;
1167 	struct list_head *p, *n;
1168 
1169 	list_for_each_safe(p, n, &be->decompressed_secondary_bvecs) {
1170 		struct z_erofs_bvec_item *bvi;
1171 		unsigned int end, cur;
1172 		void *dst, *src;
1173 
1174 		bvi = container_of(p, struct z_erofs_bvec_item, list);
1175 		cur = bvi->bvec.offset < 0 ? -bvi->bvec.offset : 0;
1176 		end = min_t(unsigned int, be->pcl->length - bvi->bvec.offset,
1177 			    bvi->bvec.end);
1178 		dst = kmap_local_page(bvi->bvec.page);
1179 		while (cur < end) {
1180 			unsigned int pgnr, scur, len;
1181 
1182 			pgnr = (bvi->bvec.offset + cur + off0) >> PAGE_SHIFT;
1183 			DBG_BUGON(pgnr >= be->nr_pages);
1184 
1185 			scur = bvi->bvec.offset + cur -
1186 					((pgnr << PAGE_SHIFT) - off0);
1187 			len = min_t(unsigned int, end - cur, PAGE_SIZE - scur);
1188 			if (!be->decompressed_pages[pgnr]) {
1189 				err = -EFSCORRUPTED;
1190 				cur += len;
1191 				continue;
1192 			}
1193 			src = kmap_local_page(be->decompressed_pages[pgnr]);
1194 			memcpy(dst + cur, src + scur, len);
1195 			kunmap_local(src);
1196 			cur += len;
1197 		}
1198 		kunmap_local(dst);
1199 		erofs_onlinefolio_end(page_folio(bvi->bvec.page), err);
1200 		list_del(p);
1201 		kfree(bvi);
1202 	}
1203 }
1204 
1205 static void z_erofs_parse_out_bvecs(struct z_erofs_backend *be)
1206 {
1207 	struct z_erofs_pcluster *pcl = be->pcl;
1208 	struct z_erofs_bvec_iter biter;
1209 	struct page *old_bvpage;
1210 	int i;
1211 
1212 	z_erofs_bvec_iter_begin(&biter, &pcl->bvset, Z_EROFS_INLINE_BVECS, 0);
1213 	for (i = 0; i < pcl->vcnt; ++i) {
1214 		struct z_erofs_bvec bvec;
1215 
1216 		z_erofs_bvec_dequeue(&biter, &bvec, &old_bvpage);
1217 
1218 		if (old_bvpage)
1219 			z_erofs_put_shortlivedpage(be->pagepool, old_bvpage);
1220 
1221 		DBG_BUGON(z_erofs_page_is_invalidated(bvec.page));
1222 		z_erofs_do_decompressed_bvec(be, &bvec);
1223 	}
1224 
1225 	old_bvpage = z_erofs_bvec_iter_end(&biter);
1226 	if (old_bvpage)
1227 		z_erofs_put_shortlivedpage(be->pagepool, old_bvpage);
1228 }
1229 
1230 static int z_erofs_parse_in_bvecs(struct z_erofs_backend *be, bool *overlapped)
1231 {
1232 	struct z_erofs_pcluster *pcl = be->pcl;
1233 	unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
1234 	int i, err = 0;
1235 
1236 	*overlapped = false;
1237 	for (i = 0; i < pclusterpages; ++i) {
1238 		struct z_erofs_bvec *bvec = &pcl->compressed_bvecs[i];
1239 		struct page *page = bvec->page;
1240 
1241 		/* compressed data ought to be valid when decompressing */
1242 		if (IS_ERR(page) || !page) {
1243 			bvec->page = NULL;	/* clear the failure reason */
1244 			err = page ? PTR_ERR(page) : -EIO;
1245 			continue;
1246 		}
1247 		be->compressed_pages[i] = page;
1248 
1249 		if (pcl->from_meta ||
1250 		    erofs_folio_is_managed(EROFS_SB(be->sb), page_folio(page))) {
1251 			if (!PageUptodate(page))
1252 				err = -EIO;
1253 			continue;
1254 		}
1255 
1256 		DBG_BUGON(z_erofs_page_is_invalidated(page));
1257 		if (z_erofs_is_shortlived_page(page))
1258 			continue;
1259 		z_erofs_do_decompressed_bvec(be, bvec);
1260 		*overlapped = true;
1261 	}
1262 	return err;
1263 }
1264 
1265 static int z_erofs_decompress_pcluster(struct z_erofs_backend *be, int err)
1266 {
1267 	struct erofs_sb_info *const sbi = EROFS_SB(be->sb);
1268 	struct z_erofs_pcluster *pcl = be->pcl;
1269 	unsigned int pclusterpages = z_erofs_pclusterpages(pcl);
1270 	const struct z_erofs_decompressor *decomp =
1271 				z_erofs_decomp[pcl->algorithmformat];
1272 	int i, j, jtop, err2;
1273 	struct page *page;
1274 	bool overlapped;
1275 	bool try_free = true;
1276 
1277 	mutex_lock(&pcl->lock);
1278 	be->nr_pages = PAGE_ALIGN(pcl->length + pcl->pageofs_out) >> PAGE_SHIFT;
1279 
1280 	/* allocate (de)compressed page arrays if cannot be kept on stack */
1281 	be->decompressed_pages = NULL;
1282 	be->compressed_pages = NULL;
1283 	be->onstack_used = 0;
1284 	if (be->nr_pages <= Z_EROFS_ONSTACK_PAGES) {
1285 		be->decompressed_pages = be->onstack_pages;
1286 		be->onstack_used = be->nr_pages;
1287 		memset(be->decompressed_pages, 0,
1288 		       sizeof(struct page *) * be->nr_pages);
1289 	}
1290 
1291 	if (pclusterpages + be->onstack_used <= Z_EROFS_ONSTACK_PAGES)
1292 		be->compressed_pages = be->onstack_pages + be->onstack_used;
1293 
1294 	if (!be->decompressed_pages)
1295 		be->decompressed_pages =
1296 			kvcalloc(be->nr_pages, sizeof(struct page *),
1297 				 GFP_KERNEL | __GFP_NOFAIL);
1298 	if (!be->compressed_pages)
1299 		be->compressed_pages =
1300 			kvcalloc(pclusterpages, sizeof(struct page *),
1301 				 GFP_KERNEL | __GFP_NOFAIL);
1302 
1303 	z_erofs_parse_out_bvecs(be);
1304 	err2 = z_erofs_parse_in_bvecs(be, &overlapped);
1305 	if (err2)
1306 		err = err2;
1307 	if (!err)
1308 		err = decomp->decompress(&(struct z_erofs_decompress_req) {
1309 					.sb = be->sb,
1310 					.in = be->compressed_pages,
1311 					.out = be->decompressed_pages,
1312 					.inpages = pclusterpages,
1313 					.outpages = be->nr_pages,
1314 					.pageofs_in = pcl->pageofs_in,
1315 					.pageofs_out = pcl->pageofs_out,
1316 					.inputsize = pcl->pclustersize,
1317 					.outputsize = pcl->length,
1318 					.alg = pcl->algorithmformat,
1319 					.inplace_io = overlapped,
1320 					.partial_decoding = pcl->partial,
1321 					.fillgaps = be->keepxcpy,
1322 					.gfp = pcl->besteffort ? GFP_KERNEL :
1323 						GFP_NOWAIT | __GFP_NORETRY
1324 				 }, be->pagepool);
1325 
1326 	/* must handle all compressed pages before actual file pages */
1327 	if (pcl->from_meta) {
1328 		page = pcl->compressed_bvecs[0].page;
1329 		WRITE_ONCE(pcl->compressed_bvecs[0].page, NULL);
1330 		put_page(page);
1331 	} else {
1332 		/* managed folios are still left in compressed_bvecs[] */
1333 		for (i = 0; i < pclusterpages; ++i) {
1334 			page = be->compressed_pages[i];
1335 			if (!page)
1336 				continue;
1337 			if (erofs_folio_is_managed(sbi, page_folio(page))) {
1338 				try_free = false;
1339 				continue;
1340 			}
1341 			(void)z_erofs_put_shortlivedpage(be->pagepool, page);
1342 			WRITE_ONCE(pcl->compressed_bvecs[i].page, NULL);
1343 		}
1344 	}
1345 	if (be->compressed_pages < be->onstack_pages ||
1346 	    be->compressed_pages >= be->onstack_pages + Z_EROFS_ONSTACK_PAGES)
1347 		kvfree(be->compressed_pages);
1348 
1349 	jtop = 0;
1350 	z_erofs_fill_other_copies(be, err);
1351 	for (i = 0; i < be->nr_pages; ++i) {
1352 		page = be->decompressed_pages[i];
1353 		if (!page)
1354 			continue;
1355 
1356 		DBG_BUGON(z_erofs_page_is_invalidated(page));
1357 		if (!z_erofs_is_shortlived_page(page)) {
1358 			erofs_onlinefolio_end(page_folio(page), err);
1359 			continue;
1360 		}
1361 		if (pcl->algorithmformat != Z_EROFS_COMPRESSION_LZ4) {
1362 			erofs_pagepool_add(be->pagepool, page);
1363 			continue;
1364 		}
1365 		for (j = 0; j < jtop && be->decompressed_pages[j] != page; ++j)
1366 			;
1367 		if (j >= jtop)	/* this bounce page is newly detected */
1368 			be->decompressed_pages[jtop++] = page;
1369 	}
1370 	while (jtop)
1371 		erofs_pagepool_add(be->pagepool,
1372 				   be->decompressed_pages[--jtop]);
1373 	if (be->decompressed_pages != be->onstack_pages)
1374 		kvfree(be->decompressed_pages);
1375 
1376 	pcl->length = 0;
1377 	pcl->partial = true;
1378 	pcl->besteffort = false;
1379 	pcl->bvset.nextpage = NULL;
1380 	pcl->vcnt = 0;
1381 
1382 	/* pcluster lock MUST be taken before the following line */
1383 	WRITE_ONCE(pcl->next, NULL);
1384 	mutex_unlock(&pcl->lock);
1385 
1386 	if (pcl->from_meta)
1387 		z_erofs_free_pcluster(pcl);
1388 	else
1389 		z_erofs_put_pcluster(sbi, pcl, try_free);
1390 	return err;
1391 }
1392 
1393 static int z_erofs_decompress_queue(const struct z_erofs_decompressqueue *io,
1394 				    struct page **pagepool)
1395 {
1396 	struct z_erofs_backend be = {
1397 		.sb = io->sb,
1398 		.pagepool = pagepool,
1399 		.decompressed_secondary_bvecs =
1400 			LIST_HEAD_INIT(be.decompressed_secondary_bvecs),
1401 		.pcl = io->head,
1402 	};
1403 	struct z_erofs_pcluster *next;
1404 	int err = io->eio ? -EIO : 0;
1405 
1406 	for (; be.pcl != Z_EROFS_PCLUSTER_TAIL; be.pcl = next) {
1407 		DBG_BUGON(!be.pcl);
1408 		next = READ_ONCE(be.pcl->next);
1409 		err = z_erofs_decompress_pcluster(&be, err) ?: err;
1410 	}
1411 	return err;
1412 }
1413 
1414 static void z_erofs_decompressqueue_work(struct work_struct *work)
1415 {
1416 	struct z_erofs_decompressqueue *bgq =
1417 		container_of(work, struct z_erofs_decompressqueue, u.work);
1418 	struct page *pagepool = NULL;
1419 
1420 	DBG_BUGON(bgq->head == Z_EROFS_PCLUSTER_TAIL);
1421 	z_erofs_decompress_queue(bgq, &pagepool);
1422 	erofs_release_pages(&pagepool);
1423 	kvfree(bgq);
1424 }
1425 
1426 #ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
1427 static void z_erofs_decompressqueue_kthread_work(struct kthread_work *work)
1428 {
1429 	z_erofs_decompressqueue_work((struct work_struct *)work);
1430 }
1431 #endif
1432 
1433 static void z_erofs_decompress_kickoff(struct z_erofs_decompressqueue *io,
1434 				       int bios)
1435 {
1436 	struct erofs_sb_info *const sbi = EROFS_SB(io->sb);
1437 
1438 	/* wake up the caller thread for sync decompression */
1439 	if (io->sync) {
1440 		if (!atomic_add_return(bios, &io->pending_bios))
1441 			complete(&io->u.done);
1442 		return;
1443 	}
1444 
1445 	if (atomic_add_return(bios, &io->pending_bios))
1446 		return;
1447 	/* Use (kthread_)work and sync decompression for atomic contexts only */
1448 	if (!in_task() || irqs_disabled() || rcu_read_lock_any_held()) {
1449 #ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
1450 		struct kthread_worker *worker;
1451 
1452 		rcu_read_lock();
1453 		worker = rcu_dereference(
1454 				z_erofs_pcpu_workers[raw_smp_processor_id()]);
1455 		if (!worker) {
1456 			INIT_WORK(&io->u.work, z_erofs_decompressqueue_work);
1457 			queue_work(z_erofs_workqueue, &io->u.work);
1458 		} else {
1459 			kthread_queue_work(worker, &io->u.kthread_work);
1460 		}
1461 		rcu_read_unlock();
1462 #else
1463 		queue_work(z_erofs_workqueue, &io->u.work);
1464 #endif
1465 		/* enable sync decompression for readahead */
1466 		if (sbi->opt.sync_decompress == EROFS_SYNC_DECOMPRESS_AUTO)
1467 			sbi->opt.sync_decompress = EROFS_SYNC_DECOMPRESS_FORCE_ON;
1468 		return;
1469 	}
1470 	z_erofs_decompressqueue_work(&io->u.work);
1471 }
1472 
1473 static void z_erofs_fill_bio_vec(struct bio_vec *bvec,
1474 				 struct z_erofs_frontend *f,
1475 				 struct z_erofs_pcluster *pcl,
1476 				 unsigned int nr,
1477 				 struct address_space *mc)
1478 {
1479 	gfp_t gfp = mapping_gfp_mask(mc);
1480 	bool tocache = false;
1481 	struct z_erofs_bvec zbv;
1482 	struct address_space *mapping;
1483 	struct folio *folio;
1484 	struct page *page;
1485 	int bs = i_blocksize(f->inode);
1486 
1487 	/* Except for inplace folios, the entire folio can be used for I/Os */
1488 	bvec->bv_offset = 0;
1489 	bvec->bv_len = PAGE_SIZE;
1490 repeat:
1491 	spin_lock(&pcl->lockref.lock);
1492 	zbv = pcl->compressed_bvecs[nr];
1493 	spin_unlock(&pcl->lockref.lock);
1494 	if (!zbv.page)
1495 		goto out_allocfolio;
1496 
1497 	bvec->bv_page = zbv.page;
1498 	DBG_BUGON(z_erofs_is_shortlived_page(bvec->bv_page));
1499 
1500 	folio = page_folio(zbv.page);
1501 	/* For preallocated managed folios, add them to page cache here */
1502 	if (folio->private == Z_EROFS_PREALLOCATED_FOLIO) {
1503 		tocache = true;
1504 		goto out_tocache;
1505 	}
1506 
1507 	mapping = READ_ONCE(folio->mapping);
1508 	/*
1509 	 * File-backed folios for inplace I/Os are all locked steady,
1510 	 * therefore it is impossible for `mapping` to be NULL.
1511 	 */
1512 	if (mapping && mapping != mc) {
1513 		if (zbv.offset < 0)
1514 			bvec->bv_offset = round_up(-zbv.offset, bs);
1515 		bvec->bv_len = round_up(zbv.end, bs) - bvec->bv_offset;
1516 		return;
1517 	}
1518 
1519 	folio_lock(folio);
1520 	if (likely(folio->mapping == mc)) {
1521 		/*
1522 		 * The cached folio is still in managed cache but without
1523 		 * a valid `->private` pcluster hint.  Let's reconnect them.
1524 		 */
1525 		if (!folio_test_private(folio)) {
1526 			folio_attach_private(folio, pcl);
1527 			/* compressed_bvecs[] already takes a ref before */
1528 			folio_put(folio);
1529 		}
1530 		if (likely(folio->private == pcl))  {
1531 			/* don't submit cache I/Os again if already uptodate */
1532 			if (folio_test_uptodate(folio)) {
1533 				folio_unlock(folio);
1534 				bvec->bv_page = NULL;
1535 			}
1536 			return;
1537 		}
1538 		/*
1539 		 * Already linked with another pcluster, which only appears in
1540 		 * crafted images by fuzzers for now.  But handle this anyway.
1541 		 */
1542 		tocache = false;	/* use temporary short-lived pages */
1543 	} else {
1544 		DBG_BUGON(1); /* referenced managed folios can't be truncated */
1545 		tocache = true;
1546 	}
1547 	folio_unlock(folio);
1548 	folio_put(folio);
1549 out_allocfolio:
1550 	page = __erofs_allocpage(&f->pagepool, gfp, true);
1551 	spin_lock(&pcl->lockref.lock);
1552 	if (unlikely(pcl->compressed_bvecs[nr].page != zbv.page)) {
1553 		if (page)
1554 			erofs_pagepool_add(&f->pagepool, page);
1555 		spin_unlock(&pcl->lockref.lock);
1556 		cond_resched();
1557 		goto repeat;
1558 	}
1559 	pcl->compressed_bvecs[nr].page = page ? page : ERR_PTR(-ENOMEM);
1560 	spin_unlock(&pcl->lockref.lock);
1561 	bvec->bv_page = page;
1562 	if (!page)
1563 		return;
1564 	folio = page_folio(page);
1565 out_tocache:
1566 	if (!tocache || bs != PAGE_SIZE ||
1567 	    filemap_add_folio(mc, folio, (pcl->pos >> PAGE_SHIFT) + nr, gfp)) {
1568 		/* turn into a temporary shortlived folio (1 ref) */
1569 		folio->private = (void *)Z_EROFS_SHORTLIVED_PAGE;
1570 		return;
1571 	}
1572 	folio_attach_private(folio, pcl);
1573 	/* drop a refcount added by allocpage (then 2 refs in total here) */
1574 	folio_put(folio);
1575 }
1576 
1577 static struct z_erofs_decompressqueue *jobqueue_init(struct super_block *sb,
1578 			      struct z_erofs_decompressqueue *fgq, bool *fg)
1579 {
1580 	struct z_erofs_decompressqueue *q;
1581 
1582 	if (fg && !*fg) {
1583 		q = kvzalloc(sizeof(*q), GFP_KERNEL | __GFP_NOWARN);
1584 		if (!q) {
1585 			*fg = true;
1586 			goto fg_out;
1587 		}
1588 #ifdef CONFIG_EROFS_FS_PCPU_KTHREAD
1589 		kthread_init_work(&q->u.kthread_work,
1590 				  z_erofs_decompressqueue_kthread_work);
1591 #else
1592 		INIT_WORK(&q->u.work, z_erofs_decompressqueue_work);
1593 #endif
1594 	} else {
1595 fg_out:
1596 		q = fgq;
1597 		init_completion(&fgq->u.done);
1598 		atomic_set(&fgq->pending_bios, 0);
1599 		q->eio = false;
1600 		q->sync = true;
1601 	}
1602 	q->sb = sb;
1603 	q->head = Z_EROFS_PCLUSTER_TAIL;
1604 	return q;
1605 }
1606 
1607 /* define decompression jobqueue types */
1608 enum {
1609 	JQ_BYPASS,
1610 	JQ_SUBMIT,
1611 	NR_JOBQUEUES,
1612 };
1613 
1614 static void z_erofs_move_to_bypass_queue(struct z_erofs_pcluster *pcl,
1615 					 struct z_erofs_pcluster *next,
1616 					 struct z_erofs_pcluster **qtail[])
1617 {
1618 	WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_TAIL);
1619 	WRITE_ONCE(*qtail[JQ_SUBMIT], next);
1620 	WRITE_ONCE(*qtail[JQ_BYPASS], pcl);
1621 	qtail[JQ_BYPASS] = &pcl->next;
1622 }
1623 
1624 static void z_erofs_endio(struct bio *bio)
1625 {
1626 	struct z_erofs_decompressqueue *q = bio->bi_private;
1627 	blk_status_t err = bio->bi_status;
1628 	struct folio_iter fi;
1629 
1630 	bio_for_each_folio_all(fi, bio) {
1631 		struct folio *folio = fi.folio;
1632 
1633 		DBG_BUGON(folio_test_uptodate(folio));
1634 		DBG_BUGON(z_erofs_page_is_invalidated(&folio->page));
1635 		if (!erofs_folio_is_managed(EROFS_SB(q->sb), folio))
1636 			continue;
1637 
1638 		if (!err)
1639 			folio_mark_uptodate(folio);
1640 		folio_unlock(folio);
1641 	}
1642 	if (err)
1643 		q->eio = true;
1644 	z_erofs_decompress_kickoff(q, -1);
1645 	if (bio->bi_bdev)
1646 		bio_put(bio);
1647 }
1648 
1649 static void z_erofs_submit_queue(struct z_erofs_frontend *f,
1650 				 struct z_erofs_decompressqueue *fgq,
1651 				 bool *force_fg, bool readahead)
1652 {
1653 	struct super_block *sb = f->inode->i_sb;
1654 	struct address_space *mc = MNGD_MAPPING(EROFS_SB(sb));
1655 	struct z_erofs_pcluster **qtail[NR_JOBQUEUES];
1656 	struct z_erofs_decompressqueue *q[NR_JOBQUEUES];
1657 	struct z_erofs_pcluster *pcl, *next;
1658 	/* bio is NULL initially, so no need to initialize last_{index,bdev} */
1659 	erofs_off_t last_pa;
1660 	unsigned int nr_bios = 0;
1661 	struct bio *bio = NULL;
1662 	unsigned long pflags;
1663 	int memstall = 0;
1664 
1665 	/* No need to read from device for pclusters in the bypass queue. */
1666 	q[JQ_BYPASS] = jobqueue_init(sb, fgq + JQ_BYPASS, NULL);
1667 	q[JQ_SUBMIT] = jobqueue_init(sb, fgq + JQ_SUBMIT, force_fg);
1668 
1669 	qtail[JQ_BYPASS] = &q[JQ_BYPASS]->head;
1670 	qtail[JQ_SUBMIT] = &q[JQ_SUBMIT]->head;
1671 
1672 	/* by default, all need io submission */
1673 	q[JQ_SUBMIT]->head = next = f->head;
1674 
1675 	do {
1676 		struct erofs_map_dev mdev;
1677 		erofs_off_t cur, end;
1678 		struct bio_vec bvec;
1679 		unsigned int i = 0;
1680 		bool bypass = true;
1681 
1682 		pcl = next;
1683 		next = READ_ONCE(pcl->next);
1684 		if (pcl->from_meta) {
1685 			z_erofs_move_to_bypass_queue(pcl, next, qtail);
1686 			continue;
1687 		}
1688 
1689 		/* no device id here, thus it will always succeed */
1690 		mdev = (struct erofs_map_dev) {
1691 			.m_pa = round_down(pcl->pos, sb->s_blocksize),
1692 		};
1693 		(void)erofs_map_dev(sb, &mdev);
1694 
1695 		cur = mdev.m_pa;
1696 		end = round_up(cur + pcl->pageofs_in + pcl->pclustersize,
1697 			       sb->s_blocksize);
1698 		do {
1699 			bvec.bv_page = NULL;
1700 			if (bio && (cur != last_pa ||
1701 				    bio->bi_bdev != mdev.m_bdev)) {
1702 drain_io:
1703 				if (erofs_is_fileio_mode(EROFS_SB(sb)))
1704 					erofs_fileio_submit_bio(bio);
1705 				else if (erofs_is_fscache_mode(sb))
1706 					erofs_fscache_submit_bio(bio);
1707 				else
1708 					submit_bio(bio);
1709 
1710 				if (memstall) {
1711 					psi_memstall_leave(&pflags);
1712 					memstall = 0;
1713 				}
1714 				bio = NULL;
1715 			}
1716 
1717 			if (!bvec.bv_page) {
1718 				z_erofs_fill_bio_vec(&bvec, f, pcl, i++, mc);
1719 				if (!bvec.bv_page)
1720 					continue;
1721 				if (cur + bvec.bv_len > end)
1722 					bvec.bv_len = end - cur;
1723 				DBG_BUGON(bvec.bv_len < sb->s_blocksize);
1724 			}
1725 
1726 			if (unlikely(PageWorkingset(bvec.bv_page)) &&
1727 			    !memstall) {
1728 				psi_memstall_enter(&pflags);
1729 				memstall = 1;
1730 			}
1731 
1732 			if (!bio) {
1733 				if (erofs_is_fileio_mode(EROFS_SB(sb)))
1734 					bio = erofs_fileio_bio_alloc(&mdev);
1735 				else if (erofs_is_fscache_mode(sb))
1736 					bio = erofs_fscache_bio_alloc(&mdev);
1737 				else
1738 					bio = bio_alloc(mdev.m_bdev, BIO_MAX_VECS,
1739 							REQ_OP_READ, GFP_NOIO);
1740 				bio->bi_end_io = z_erofs_endio;
1741 				bio->bi_iter.bi_sector =
1742 						(mdev.m_dif->fsoff + cur) >> 9;
1743 				bio->bi_private = q[JQ_SUBMIT];
1744 				if (readahead)
1745 					bio->bi_opf |= REQ_RAHEAD;
1746 				++nr_bios;
1747 			}
1748 
1749 			if (!bio_add_page(bio, bvec.bv_page, bvec.bv_len,
1750 					  bvec.bv_offset))
1751 				goto drain_io;
1752 			last_pa = cur + bvec.bv_len;
1753 			bypass = false;
1754 		} while ((cur += bvec.bv_len) < end);
1755 
1756 		if (!bypass)
1757 			qtail[JQ_SUBMIT] = &pcl->next;
1758 		else
1759 			z_erofs_move_to_bypass_queue(pcl, next, qtail);
1760 	} while (next != Z_EROFS_PCLUSTER_TAIL);
1761 
1762 	if (bio) {
1763 		if (erofs_is_fileio_mode(EROFS_SB(sb)))
1764 			erofs_fileio_submit_bio(bio);
1765 		else if (erofs_is_fscache_mode(sb))
1766 			erofs_fscache_submit_bio(bio);
1767 		else
1768 			submit_bio(bio);
1769 	}
1770 	if (memstall)
1771 		psi_memstall_leave(&pflags);
1772 
1773 	/*
1774 	 * although background is preferred, no one is pending for submission.
1775 	 * don't issue decompression but drop it directly instead.
1776 	 */
1777 	if (!*force_fg && !nr_bios) {
1778 		kvfree(q[JQ_SUBMIT]);
1779 		return;
1780 	}
1781 	z_erofs_decompress_kickoff(q[JQ_SUBMIT], nr_bios);
1782 }
1783 
1784 static int z_erofs_runqueue(struct z_erofs_frontend *f, unsigned int rapages)
1785 {
1786 	struct z_erofs_decompressqueue io[NR_JOBQUEUES];
1787 	struct erofs_sb_info *sbi = EROFS_I_SB(f->inode);
1788 	bool force_fg = z_erofs_is_sync_decompress(sbi, rapages);
1789 	int err;
1790 
1791 	if (f->head == Z_EROFS_PCLUSTER_TAIL)
1792 		return 0;
1793 	z_erofs_submit_queue(f, io, &force_fg, !!rapages);
1794 
1795 	/* handle bypass queue (no i/o pclusters) immediately */
1796 	err = z_erofs_decompress_queue(&io[JQ_BYPASS], &f->pagepool);
1797 	if (!force_fg)
1798 		return err;
1799 
1800 	/* wait until all bios are completed */
1801 	wait_for_completion_io(&io[JQ_SUBMIT].u.done);
1802 
1803 	/* handle synchronous decompress queue in the caller context */
1804 	return z_erofs_decompress_queue(&io[JQ_SUBMIT], &f->pagepool) ?: err;
1805 }
1806 
1807 /*
1808  * Since partial uptodate is still unimplemented for now, we have to use
1809  * approximate readmore strategies as a start.
1810  */
1811 static void z_erofs_pcluster_readmore(struct z_erofs_frontend *f,
1812 		struct readahead_control *rac, bool backmost)
1813 {
1814 	struct inode *inode = f->inode;
1815 	struct erofs_map_blocks *map = &f->map;
1816 	erofs_off_t cur, end, headoffset = f->headoffset;
1817 	int err;
1818 
1819 	if (backmost) {
1820 		if (rac)
1821 			end = headoffset + readahead_length(rac) - 1;
1822 		else
1823 			end = headoffset + PAGE_SIZE - 1;
1824 		map->m_la = end;
1825 		err = z_erofs_map_blocks_iter(inode, map,
1826 					      EROFS_GET_BLOCKS_READMORE);
1827 		if (err)
1828 			return;
1829 
1830 		/* expand ra for the trailing edge if readahead */
1831 		if (rac) {
1832 			cur = round_up(map->m_la + map->m_llen, PAGE_SIZE);
1833 			readahead_expand(rac, headoffset, cur - headoffset);
1834 			return;
1835 		}
1836 		end = round_up(end, PAGE_SIZE);
1837 	} else {
1838 		end = round_up(map->m_la, PAGE_SIZE);
1839 		if (!map->m_llen)
1840 			return;
1841 	}
1842 
1843 	cur = map->m_la + map->m_llen - 1;
1844 	while ((cur >= end) && (cur < i_size_read(inode))) {
1845 		pgoff_t index = cur >> PAGE_SHIFT;
1846 		struct folio *folio;
1847 
1848 		folio = erofs_grab_folio_nowait(inode->i_mapping, index);
1849 		if (!IS_ERR_OR_NULL(folio)) {
1850 			if (folio_test_uptodate(folio))
1851 				folio_unlock(folio);
1852 			else
1853 				z_erofs_scan_folio(f, folio, !!rac);
1854 			folio_put(folio);
1855 		}
1856 
1857 		if (cur < PAGE_SIZE)
1858 			break;
1859 		cur = (index << PAGE_SHIFT) - 1;
1860 	}
1861 }
1862 
1863 static int z_erofs_read_folio(struct file *file, struct folio *folio)
1864 {
1865 	struct inode *const inode = folio->mapping->host;
1866 	Z_EROFS_DEFINE_FRONTEND(f, inode, folio_pos(folio));
1867 	int err;
1868 
1869 	trace_erofs_read_folio(folio, false);
1870 	z_erofs_pcluster_readmore(&f, NULL, true);
1871 	err = z_erofs_scan_folio(&f, folio, false);
1872 	z_erofs_pcluster_readmore(&f, NULL, false);
1873 	z_erofs_pcluster_end(&f);
1874 
1875 	/* if some pclusters are ready, need submit them anyway */
1876 	err = z_erofs_runqueue(&f, 0) ?: err;
1877 	if (err && err != -EINTR)
1878 		erofs_err(inode->i_sb, "read error %d @ %lu of nid %llu",
1879 			  err, folio->index, EROFS_I(inode)->nid);
1880 
1881 	erofs_put_metabuf(&f.map.buf);
1882 	erofs_release_pages(&f.pagepool);
1883 	return err;
1884 }
1885 
1886 static void z_erofs_readahead(struct readahead_control *rac)
1887 {
1888 	struct inode *const inode = rac->mapping->host;
1889 	Z_EROFS_DEFINE_FRONTEND(f, inode, readahead_pos(rac));
1890 	unsigned int nrpages = readahead_count(rac);
1891 	struct folio *head = NULL, *folio;
1892 	int err;
1893 
1894 	trace_erofs_readahead(inode, readahead_index(rac), nrpages, false);
1895 	z_erofs_pcluster_readmore(&f, rac, true);
1896 	while ((folio = readahead_folio(rac))) {
1897 		folio->private = head;
1898 		head = folio;
1899 	}
1900 
1901 	/* traverse in reverse order for best metadata I/O performance */
1902 	while (head) {
1903 		folio = head;
1904 		head = folio_get_private(folio);
1905 
1906 		err = z_erofs_scan_folio(&f, folio, true);
1907 		if (err && err != -EINTR)
1908 			erofs_err(inode->i_sb, "readahead error at folio %lu @ nid %llu",
1909 				  folio->index, EROFS_I(inode)->nid);
1910 	}
1911 	z_erofs_pcluster_readmore(&f, rac, false);
1912 	z_erofs_pcluster_end(&f);
1913 
1914 	(void)z_erofs_runqueue(&f, nrpages);
1915 	erofs_put_metabuf(&f.map.buf);
1916 	erofs_release_pages(&f.pagepool);
1917 }
1918 
1919 const struct address_space_operations z_erofs_aops = {
1920 	.read_folio = z_erofs_read_folio,
1921 	.readahead = z_erofs_readahead,
1922 };
1923