xref: /openbmc/linux/fs/erofs/zdata.c (revision 9e579fc1)
147e4937aSGao Xiang // SPDX-License-Identifier: GPL-2.0-only
247e4937aSGao Xiang /*
347e4937aSGao Xiang  * Copyright (C) 2018 HUAWEI, Inc.
447e4937aSGao Xiang  *             http://www.huawei.com/
547e4937aSGao Xiang  * Created by Gao Xiang <gaoxiang25@huawei.com>
647e4937aSGao Xiang  */
747e4937aSGao Xiang #include "zdata.h"
847e4937aSGao Xiang #include "compress.h"
947e4937aSGao Xiang #include <linux/prefetch.h>
1047e4937aSGao Xiang 
1147e4937aSGao Xiang #include <trace/events/erofs.h>
1247e4937aSGao Xiang 
1347e4937aSGao Xiang /*
1447e4937aSGao Xiang  * a compressed_pages[] placeholder in order to avoid
1547e4937aSGao Xiang  * being filled with file pages for in-place decompression.
1647e4937aSGao Xiang  */
1747e4937aSGao Xiang #define PAGE_UNALLOCATED     ((void *)0x5F0E4B1D)
1847e4937aSGao Xiang 
1947e4937aSGao Xiang /* how to allocate cached pages for a pcluster */
2047e4937aSGao Xiang enum z_erofs_cache_alloctype {
2147e4937aSGao Xiang 	DONTALLOC,	/* don't allocate any cached pages */
2247e4937aSGao Xiang 	DELAYEDALLOC,	/* delayed allocation (at the time of submitting io) */
2347e4937aSGao Xiang };
2447e4937aSGao Xiang 
2547e4937aSGao Xiang /*
2647e4937aSGao Xiang  * tagged pointer with 1-bit tag for all compressed pages
2747e4937aSGao Xiang  * tag 0 - the page is just found with an extra page reference
2847e4937aSGao Xiang  */
2947e4937aSGao Xiang typedef tagptr1_t compressed_page_t;
3047e4937aSGao Xiang 
3147e4937aSGao Xiang #define tag_compressed_page_justfound(page) \
3247e4937aSGao Xiang 	tagptr_fold(compressed_page_t, page, 1)
3347e4937aSGao Xiang 
3447e4937aSGao Xiang static struct workqueue_struct *z_erofs_workqueue __read_mostly;
3547e4937aSGao Xiang static struct kmem_cache *pcluster_cachep __read_mostly;
3647e4937aSGao Xiang 
3747e4937aSGao Xiang void z_erofs_exit_zip_subsystem(void)
3847e4937aSGao Xiang {
3947e4937aSGao Xiang 	destroy_workqueue(z_erofs_workqueue);
4047e4937aSGao Xiang 	kmem_cache_destroy(pcluster_cachep);
4147e4937aSGao Xiang }
4247e4937aSGao Xiang 
4399634bf3SGao Xiang static inline int z_erofs_init_workqueue(void)
4447e4937aSGao Xiang {
4547e4937aSGao Xiang 	const unsigned int onlinecpus = num_possible_cpus();
4647e4937aSGao Xiang 	const unsigned int flags = WQ_UNBOUND | WQ_HIGHPRI | WQ_CPU_INTENSIVE;
4747e4937aSGao Xiang 
4847e4937aSGao Xiang 	/*
4947e4937aSGao Xiang 	 * no need to spawn too many threads, limiting threads could minimum
5047e4937aSGao Xiang 	 * scheduling overhead, perhaps per-CPU threads should be better?
5147e4937aSGao Xiang 	 */
5247e4937aSGao Xiang 	z_erofs_workqueue = alloc_workqueue("erofs_unzipd", flags,
5347e4937aSGao Xiang 					    onlinecpus + onlinecpus / 4);
5447e4937aSGao Xiang 	return z_erofs_workqueue ? 0 : -ENOMEM;
5547e4937aSGao Xiang }
5647e4937aSGao Xiang 
5799634bf3SGao Xiang static void z_erofs_pcluster_init_once(void *ptr)
5847e4937aSGao Xiang {
5947e4937aSGao Xiang 	struct z_erofs_pcluster *pcl = ptr;
6047e4937aSGao Xiang 	struct z_erofs_collection *cl = z_erofs_primarycollection(pcl);
6147e4937aSGao Xiang 	unsigned int i;
6247e4937aSGao Xiang 
6347e4937aSGao Xiang 	mutex_init(&cl->lock);
6447e4937aSGao Xiang 	cl->nr_pages = 0;
6547e4937aSGao Xiang 	cl->vcnt = 0;
6647e4937aSGao Xiang 	for (i = 0; i < Z_EROFS_CLUSTER_MAX_PAGES; ++i)
6747e4937aSGao Xiang 		pcl->compressed_pages[i] = NULL;
6847e4937aSGao Xiang }
6947e4937aSGao Xiang 
7099634bf3SGao Xiang static void z_erofs_pcluster_init_always(struct z_erofs_pcluster *pcl)
7147e4937aSGao Xiang {
7247e4937aSGao Xiang 	struct z_erofs_collection *cl = z_erofs_primarycollection(pcl);
7347e4937aSGao Xiang 
7447e4937aSGao Xiang 	atomic_set(&pcl->obj.refcount, 1);
7547e4937aSGao Xiang 
7647e4937aSGao Xiang 	DBG_BUGON(cl->nr_pages);
7747e4937aSGao Xiang 	DBG_BUGON(cl->vcnt);
7847e4937aSGao Xiang }
7947e4937aSGao Xiang 
8047e4937aSGao Xiang int __init z_erofs_init_zip_subsystem(void)
8147e4937aSGao Xiang {
8247e4937aSGao Xiang 	pcluster_cachep = kmem_cache_create("erofs_compress",
8347e4937aSGao Xiang 					    Z_EROFS_WORKGROUP_SIZE, 0,
8499634bf3SGao Xiang 					    SLAB_RECLAIM_ACCOUNT,
8599634bf3SGao Xiang 					    z_erofs_pcluster_init_once);
8647e4937aSGao Xiang 	if (pcluster_cachep) {
8799634bf3SGao Xiang 		if (!z_erofs_init_workqueue())
8847e4937aSGao Xiang 			return 0;
8947e4937aSGao Xiang 
9047e4937aSGao Xiang 		kmem_cache_destroy(pcluster_cachep);
9147e4937aSGao Xiang 	}
9247e4937aSGao Xiang 	return -ENOMEM;
9347e4937aSGao Xiang }
9447e4937aSGao Xiang 
9547e4937aSGao Xiang enum z_erofs_collectmode {
9647e4937aSGao Xiang 	COLLECT_SECONDARY,
9747e4937aSGao Xiang 	COLLECT_PRIMARY,
9847e4937aSGao Xiang 	/*
9947e4937aSGao Xiang 	 * The current collection was the tail of an exist chain, in addition
10047e4937aSGao Xiang 	 * that the previous processed chained collections are all decided to
10147e4937aSGao Xiang 	 * be hooked up to it.
10247e4937aSGao Xiang 	 * A new chain will be created for the remaining collections which are
10347e4937aSGao Xiang 	 * not processed yet, therefore different from COLLECT_PRIMARY_FOLLOWED,
10447e4937aSGao Xiang 	 * the next collection cannot reuse the whole page safely in
10547e4937aSGao Xiang 	 * the following scenario:
10647e4937aSGao Xiang 	 *  ________________________________________________________________
10747e4937aSGao Xiang 	 * |      tail (partial) page     |       head (partial) page       |
10847e4937aSGao Xiang 	 * |   (belongs to the next cl)   |   (belongs to the current cl)   |
10947e4937aSGao Xiang 	 * |_______PRIMARY_FOLLOWED_______|________PRIMARY_HOOKED___________|
11047e4937aSGao Xiang 	 */
11147e4937aSGao Xiang 	COLLECT_PRIMARY_HOOKED,
11247e4937aSGao Xiang 	COLLECT_PRIMARY_FOLLOWED_NOINPLACE,
11347e4937aSGao Xiang 	/*
11447e4937aSGao Xiang 	 * The current collection has been linked with the owned chain, and
11547e4937aSGao Xiang 	 * could also be linked with the remaining collections, which means
11647e4937aSGao Xiang 	 * if the processing page is the tail page of the collection, thus
11747e4937aSGao Xiang 	 * the current collection can safely use the whole page (since
11847e4937aSGao Xiang 	 * the previous collection is under control) for in-place I/O, as
11947e4937aSGao Xiang 	 * illustrated below:
12047e4937aSGao Xiang 	 *  ________________________________________________________________
12147e4937aSGao Xiang 	 * |  tail (partial) page |          head (partial) page           |
12247e4937aSGao Xiang 	 * |  (of the current cl) |      (of the previous collection)      |
12347e4937aSGao Xiang 	 * |  PRIMARY_FOLLOWED or |                                        |
12447e4937aSGao Xiang 	 * |_____PRIMARY_HOOKED___|____________PRIMARY_FOLLOWED____________|
12547e4937aSGao Xiang 	 *
12647e4937aSGao Xiang 	 * [  (*) the above page can be used as inplace I/O.               ]
12747e4937aSGao Xiang 	 */
12847e4937aSGao Xiang 	COLLECT_PRIMARY_FOLLOWED,
12947e4937aSGao Xiang };
13047e4937aSGao Xiang 
13147e4937aSGao Xiang struct z_erofs_collector {
13247e4937aSGao Xiang 	struct z_erofs_pagevec_ctor vector;
13347e4937aSGao Xiang 
13447e4937aSGao Xiang 	struct z_erofs_pcluster *pcl, *tailpcl;
13547e4937aSGao Xiang 	struct z_erofs_collection *cl;
13647e4937aSGao Xiang 	struct page **compressedpages;
13747e4937aSGao Xiang 	z_erofs_next_pcluster_t owned_head;
13847e4937aSGao Xiang 
13947e4937aSGao Xiang 	enum z_erofs_collectmode mode;
14047e4937aSGao Xiang };
14147e4937aSGao Xiang 
14247e4937aSGao Xiang struct z_erofs_decompress_frontend {
14347e4937aSGao Xiang 	struct inode *const inode;
14447e4937aSGao Xiang 
14547e4937aSGao Xiang 	struct z_erofs_collector clt;
14647e4937aSGao Xiang 	struct erofs_map_blocks map;
14747e4937aSGao Xiang 
14847e4937aSGao Xiang 	/* used for applying cache strategy on the fly */
14947e4937aSGao Xiang 	bool backmost;
15047e4937aSGao Xiang 	erofs_off_t headoffset;
15147e4937aSGao Xiang };
15247e4937aSGao Xiang 
15347e4937aSGao Xiang #define COLLECTOR_INIT() { \
15447e4937aSGao Xiang 	.owned_head = Z_EROFS_PCLUSTER_TAIL, \
15547e4937aSGao Xiang 	.mode = COLLECT_PRIMARY_FOLLOWED }
15647e4937aSGao Xiang 
15747e4937aSGao Xiang #define DECOMPRESS_FRONTEND_INIT(__i) { \
15847e4937aSGao Xiang 	.inode = __i, .clt = COLLECTOR_INIT(), \
15947e4937aSGao Xiang 	.backmost = true, }
16047e4937aSGao Xiang 
16147e4937aSGao Xiang static struct page *z_pagemap_global[Z_EROFS_VMAP_GLOBAL_PAGES];
16247e4937aSGao Xiang static DEFINE_MUTEX(z_pagemap_global_lock);
16347e4937aSGao Xiang 
16447e4937aSGao Xiang static void preload_compressed_pages(struct z_erofs_collector *clt,
16547e4937aSGao Xiang 				     struct address_space *mc,
16647e4937aSGao Xiang 				     enum z_erofs_cache_alloctype type,
16747e4937aSGao Xiang 				     struct list_head *pagepool)
16847e4937aSGao Xiang {
16947e4937aSGao Xiang 	const struct z_erofs_pcluster *pcl = clt->pcl;
17047e4937aSGao Xiang 	const unsigned int clusterpages = BIT(pcl->clusterbits);
17147e4937aSGao Xiang 	struct page **pages = clt->compressedpages;
17247e4937aSGao Xiang 	pgoff_t index = pcl->obj.index + (pages - pcl->compressed_pages);
17347e4937aSGao Xiang 	bool standalone = true;
17447e4937aSGao Xiang 
17547e4937aSGao Xiang 	if (clt->mode < COLLECT_PRIMARY_FOLLOWED)
17647e4937aSGao Xiang 		return;
17747e4937aSGao Xiang 
17847e4937aSGao Xiang 	for (; pages < pcl->compressed_pages + clusterpages; ++pages) {
17947e4937aSGao Xiang 		struct page *page;
18047e4937aSGao Xiang 		compressed_page_t t;
18147e4937aSGao Xiang 
18247e4937aSGao Xiang 		/* the compressed page was loaded before */
18347e4937aSGao Xiang 		if (READ_ONCE(*pages))
18447e4937aSGao Xiang 			continue;
18547e4937aSGao Xiang 
18647e4937aSGao Xiang 		page = find_get_page(mc, index);
18747e4937aSGao Xiang 
18847e4937aSGao Xiang 		if (page) {
18947e4937aSGao Xiang 			t = tag_compressed_page_justfound(page);
19047e4937aSGao Xiang 		} else if (type == DELAYEDALLOC) {
19147e4937aSGao Xiang 			t = tagptr_init(compressed_page_t, PAGE_UNALLOCATED);
19247e4937aSGao Xiang 		} else {	/* DONTALLOC */
19347e4937aSGao Xiang 			if (standalone)
19447e4937aSGao Xiang 				clt->compressedpages = pages;
19547e4937aSGao Xiang 			standalone = false;
19647e4937aSGao Xiang 			continue;
19747e4937aSGao Xiang 		}
19847e4937aSGao Xiang 
19947e4937aSGao Xiang 		if (!cmpxchg_relaxed(pages, NULL, tagptr_cast_ptr(t)))
20047e4937aSGao Xiang 			continue;
20147e4937aSGao Xiang 
20247e4937aSGao Xiang 		if (page)
20347e4937aSGao Xiang 			put_page(page);
20447e4937aSGao Xiang 	}
20547e4937aSGao Xiang 
20647e4937aSGao Xiang 	if (standalone)		/* downgrade to PRIMARY_FOLLOWED_NOINPLACE */
20747e4937aSGao Xiang 		clt->mode = COLLECT_PRIMARY_FOLLOWED_NOINPLACE;
20847e4937aSGao Xiang }
20947e4937aSGao Xiang 
21047e4937aSGao Xiang /* called by erofs_shrinker to get rid of all compressed_pages */
21147e4937aSGao Xiang int erofs_try_to_free_all_cached_pages(struct erofs_sb_info *sbi,
21247e4937aSGao Xiang 				       struct erofs_workgroup *grp)
21347e4937aSGao Xiang {
21447e4937aSGao Xiang 	struct z_erofs_pcluster *const pcl =
21547e4937aSGao Xiang 		container_of(grp, struct z_erofs_pcluster, obj);
21647e4937aSGao Xiang 	struct address_space *const mapping = MNGD_MAPPING(sbi);
21747e4937aSGao Xiang 	const unsigned int clusterpages = BIT(pcl->clusterbits);
21847e4937aSGao Xiang 	int i;
21947e4937aSGao Xiang 
22047e4937aSGao Xiang 	/*
22147e4937aSGao Xiang 	 * refcount of workgroup is now freezed as 1,
22247e4937aSGao Xiang 	 * therefore no need to worry about available decompression users.
22347e4937aSGao Xiang 	 */
22447e4937aSGao Xiang 	for (i = 0; i < clusterpages; ++i) {
22547e4937aSGao Xiang 		struct page *page = pcl->compressed_pages[i];
22647e4937aSGao Xiang 
22747e4937aSGao Xiang 		if (!page)
22847e4937aSGao Xiang 			continue;
22947e4937aSGao Xiang 
23047e4937aSGao Xiang 		/* block other users from reclaiming or migrating the page */
23147e4937aSGao Xiang 		if (!trylock_page(page))
23247e4937aSGao Xiang 			return -EBUSY;
23347e4937aSGao Xiang 
2348d8a09b0SGao Xiang 		if (page->mapping != mapping)
23547e4937aSGao Xiang 			continue;
23647e4937aSGao Xiang 
23747e4937aSGao Xiang 		/* barrier is implied in the following 'unlock_page' */
23847e4937aSGao Xiang 		WRITE_ONCE(pcl->compressed_pages[i], NULL);
23947e4937aSGao Xiang 		set_page_private(page, 0);
24047e4937aSGao Xiang 		ClearPagePrivate(page);
24147e4937aSGao Xiang 
24247e4937aSGao Xiang 		unlock_page(page);
24347e4937aSGao Xiang 		put_page(page);
24447e4937aSGao Xiang 	}
24547e4937aSGao Xiang 	return 0;
24647e4937aSGao Xiang }
24747e4937aSGao Xiang 
24847e4937aSGao Xiang int erofs_try_to_free_cached_page(struct address_space *mapping,
24947e4937aSGao Xiang 				  struct page *page)
25047e4937aSGao Xiang {
25147e4937aSGao Xiang 	struct z_erofs_pcluster *const pcl = (void *)page_private(page);
25247e4937aSGao Xiang 	const unsigned int clusterpages = BIT(pcl->clusterbits);
25347e4937aSGao Xiang 	int ret = 0;	/* 0 - busy */
25447e4937aSGao Xiang 
25547e4937aSGao Xiang 	if (erofs_workgroup_try_to_freeze(&pcl->obj, 1)) {
25647e4937aSGao Xiang 		unsigned int i;
25747e4937aSGao Xiang 
25847e4937aSGao Xiang 		for (i = 0; i < clusterpages; ++i) {
25947e4937aSGao Xiang 			if (pcl->compressed_pages[i] == page) {
26047e4937aSGao Xiang 				WRITE_ONCE(pcl->compressed_pages[i], NULL);
26147e4937aSGao Xiang 				ret = 1;
26247e4937aSGao Xiang 				break;
26347e4937aSGao Xiang 			}
26447e4937aSGao Xiang 		}
26547e4937aSGao Xiang 		erofs_workgroup_unfreeze(&pcl->obj, 1);
26647e4937aSGao Xiang 
26747e4937aSGao Xiang 		if (ret) {
26847e4937aSGao Xiang 			ClearPagePrivate(page);
26947e4937aSGao Xiang 			put_page(page);
27047e4937aSGao Xiang 		}
27147e4937aSGao Xiang 	}
27247e4937aSGao Xiang 	return ret;
27347e4937aSGao Xiang }
27447e4937aSGao Xiang 
27547e4937aSGao Xiang /* page_type must be Z_EROFS_PAGE_TYPE_EXCLUSIVE */
27699634bf3SGao Xiang static inline bool z_erofs_try_inplace_io(struct z_erofs_collector *clt,
27747e4937aSGao Xiang 					  struct page *page)
27847e4937aSGao Xiang {
27947e4937aSGao Xiang 	struct z_erofs_pcluster *const pcl = clt->pcl;
28047e4937aSGao Xiang 	const unsigned int clusterpages = BIT(pcl->clusterbits);
28147e4937aSGao Xiang 
28247e4937aSGao Xiang 	while (clt->compressedpages < pcl->compressed_pages + clusterpages) {
28347e4937aSGao Xiang 		if (!cmpxchg(clt->compressedpages++, NULL, page))
28447e4937aSGao Xiang 			return true;
28547e4937aSGao Xiang 	}
28647e4937aSGao Xiang 	return false;
28747e4937aSGao Xiang }
28847e4937aSGao Xiang 
28947e4937aSGao Xiang /* callers must be with collection lock held */
29047e4937aSGao Xiang static int z_erofs_attach_page(struct z_erofs_collector *clt,
29147e4937aSGao Xiang 			       struct page *page,
29247e4937aSGao Xiang 			       enum z_erofs_page_type type)
29347e4937aSGao Xiang {
29447e4937aSGao Xiang 	int ret;
29547e4937aSGao Xiang 	bool occupied;
29647e4937aSGao Xiang 
29747e4937aSGao Xiang 	/* give priority for inplaceio */
29847e4937aSGao Xiang 	if (clt->mode >= COLLECT_PRIMARY &&
29947e4937aSGao Xiang 	    type == Z_EROFS_PAGE_TYPE_EXCLUSIVE &&
30099634bf3SGao Xiang 	    z_erofs_try_inplace_io(clt, page))
30147e4937aSGao Xiang 		return 0;
30247e4937aSGao Xiang 
30347e4937aSGao Xiang 	ret = z_erofs_pagevec_enqueue(&clt->vector,
30447e4937aSGao Xiang 				      page, type, &occupied);
30547e4937aSGao Xiang 	clt->cl->vcnt += (unsigned int)ret;
30647e4937aSGao Xiang 
30747e4937aSGao Xiang 	return ret ? 0 : -EAGAIN;
30847e4937aSGao Xiang }
30947e4937aSGao Xiang 
31047e4937aSGao Xiang static enum z_erofs_collectmode
31147e4937aSGao Xiang try_to_claim_pcluster(struct z_erofs_pcluster *pcl,
31247e4937aSGao Xiang 		      z_erofs_next_pcluster_t *owned_head)
31347e4937aSGao Xiang {
31447e4937aSGao Xiang 	/* let's claim these following types of pclusters */
31547e4937aSGao Xiang retry:
31647e4937aSGao Xiang 	if (pcl->next == Z_EROFS_PCLUSTER_NIL) {
31747e4937aSGao Xiang 		/* type 1, nil pcluster */
31847e4937aSGao Xiang 		if (cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_NIL,
31947e4937aSGao Xiang 			    *owned_head) != Z_EROFS_PCLUSTER_NIL)
32047e4937aSGao Xiang 			goto retry;
32147e4937aSGao Xiang 
32247e4937aSGao Xiang 		*owned_head = &pcl->next;
32347e4937aSGao Xiang 		/* lucky, I am the followee :) */
32447e4937aSGao Xiang 		return COLLECT_PRIMARY_FOLLOWED;
32547e4937aSGao Xiang 	} else if (pcl->next == Z_EROFS_PCLUSTER_TAIL) {
32647e4937aSGao Xiang 		/*
32747e4937aSGao Xiang 		 * type 2, link to the end of a existing open chain,
32847e4937aSGao Xiang 		 * be careful that its submission itself is governed
32947e4937aSGao Xiang 		 * by the original owned chain.
33047e4937aSGao Xiang 		 */
33147e4937aSGao Xiang 		if (cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_TAIL,
33247e4937aSGao Xiang 			    *owned_head) != Z_EROFS_PCLUSTER_TAIL)
33347e4937aSGao Xiang 			goto retry;
33447e4937aSGao Xiang 		*owned_head = Z_EROFS_PCLUSTER_TAIL;
33547e4937aSGao Xiang 		return COLLECT_PRIMARY_HOOKED;
33647e4937aSGao Xiang 	}
33747e4937aSGao Xiang 	return COLLECT_PRIMARY;	/* :( better luck next time */
33847e4937aSGao Xiang }
33947e4937aSGao Xiang 
3409e579fc1SGao Xiang static int z_erofs_lookup_collection(struct z_erofs_collector *clt,
34147e4937aSGao Xiang 				     struct inode *inode,
34247e4937aSGao Xiang 				     struct erofs_map_blocks *map)
34347e4937aSGao Xiang {
34447e4937aSGao Xiang 	struct erofs_workgroup *grp;
34547e4937aSGao Xiang 	struct z_erofs_pcluster *pcl;
34647e4937aSGao Xiang 	struct z_erofs_collection *cl;
34747e4937aSGao Xiang 	unsigned int length;
34847e4937aSGao Xiang 	bool tag;
34947e4937aSGao Xiang 
35047e4937aSGao Xiang 	grp = erofs_find_workgroup(inode->i_sb, map->m_pa >> PAGE_SHIFT, &tag);
35147e4937aSGao Xiang 	if (!grp)
3529e579fc1SGao Xiang 		return -ENOENT;
35347e4937aSGao Xiang 
35447e4937aSGao Xiang 	pcl = container_of(grp, struct z_erofs_pcluster, obj);
35547e4937aSGao Xiang 	if (clt->owned_head == &pcl->next || pcl == clt->tailpcl) {
35647e4937aSGao Xiang 		DBG_BUGON(1);
35747e4937aSGao Xiang 		erofs_workgroup_put(grp);
3589e579fc1SGao Xiang 		return -EFSCORRUPTED;
35947e4937aSGao Xiang 	}
36047e4937aSGao Xiang 
36147e4937aSGao Xiang 	cl = z_erofs_primarycollection(pcl);
3628d8a09b0SGao Xiang 	if (cl->pageofs != (map->m_la & ~PAGE_MASK)) {
36347e4937aSGao Xiang 		DBG_BUGON(1);
36447e4937aSGao Xiang 		erofs_workgroup_put(grp);
3659e579fc1SGao Xiang 		return -EFSCORRUPTED;
36647e4937aSGao Xiang 	}
36747e4937aSGao Xiang 
36847e4937aSGao Xiang 	length = READ_ONCE(pcl->length);
36947e4937aSGao Xiang 	if (length & Z_EROFS_PCLUSTER_FULL_LENGTH) {
37047e4937aSGao Xiang 		if ((map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT) > length) {
37147e4937aSGao Xiang 			DBG_BUGON(1);
37247e4937aSGao Xiang 			erofs_workgroup_put(grp);
3739e579fc1SGao Xiang 			return -EFSCORRUPTED;
37447e4937aSGao Xiang 		}
37547e4937aSGao Xiang 	} else {
37647e4937aSGao Xiang 		unsigned int llen = map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT;
37747e4937aSGao Xiang 
37847e4937aSGao Xiang 		if (map->m_flags & EROFS_MAP_FULL_MAPPED)
37947e4937aSGao Xiang 			llen |= Z_EROFS_PCLUSTER_FULL_LENGTH;
38047e4937aSGao Xiang 
38147e4937aSGao Xiang 		while (llen > length &&
38247e4937aSGao Xiang 		       length != cmpxchg_relaxed(&pcl->length, length, llen)) {
38347e4937aSGao Xiang 			cpu_relax();
38447e4937aSGao Xiang 			length = READ_ONCE(pcl->length);
38547e4937aSGao Xiang 		}
38647e4937aSGao Xiang 	}
38747e4937aSGao Xiang 	mutex_lock(&cl->lock);
38847e4937aSGao Xiang 	/* used to check tail merging loop due to corrupted images */
38947e4937aSGao Xiang 	if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
39047e4937aSGao Xiang 		clt->tailpcl = pcl;
39147e4937aSGao Xiang 	clt->mode = try_to_claim_pcluster(pcl, &clt->owned_head);
39247e4937aSGao Xiang 	/* clean tailpcl if the current owned_head is Z_EROFS_PCLUSTER_TAIL */
39347e4937aSGao Xiang 	if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
39447e4937aSGao Xiang 		clt->tailpcl = NULL;
39547e4937aSGao Xiang 	clt->pcl = pcl;
39647e4937aSGao Xiang 	clt->cl = cl;
3979e579fc1SGao Xiang 	return 0;
39847e4937aSGao Xiang }
39947e4937aSGao Xiang 
4009e579fc1SGao Xiang static int z_erofs_register_collection(struct z_erofs_collector *clt,
40147e4937aSGao Xiang 				       struct inode *inode,
40247e4937aSGao Xiang 				       struct erofs_map_blocks *map)
40347e4937aSGao Xiang {
40447e4937aSGao Xiang 	struct z_erofs_pcluster *pcl;
40547e4937aSGao Xiang 	struct z_erofs_collection *cl;
40647e4937aSGao Xiang 	int err;
40747e4937aSGao Xiang 
40847e4937aSGao Xiang 	/* no available workgroup, let's allocate one */
40947e4937aSGao Xiang 	pcl = kmem_cache_alloc(pcluster_cachep, GFP_NOFS);
4108d8a09b0SGao Xiang 	if (!pcl)
4119e579fc1SGao Xiang 		return -ENOMEM;
41247e4937aSGao Xiang 
41399634bf3SGao Xiang 	z_erofs_pcluster_init_always(pcl);
41447e4937aSGao Xiang 	pcl->obj.index = map->m_pa >> PAGE_SHIFT;
41547e4937aSGao Xiang 
41647e4937aSGao Xiang 	pcl->length = (map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT) |
41747e4937aSGao Xiang 		(map->m_flags & EROFS_MAP_FULL_MAPPED ?
41847e4937aSGao Xiang 			Z_EROFS_PCLUSTER_FULL_LENGTH : 0);
41947e4937aSGao Xiang 
42047e4937aSGao Xiang 	if (map->m_flags & EROFS_MAP_ZIPPED)
42147e4937aSGao Xiang 		pcl->algorithmformat = Z_EROFS_COMPRESSION_LZ4;
42247e4937aSGao Xiang 	else
42347e4937aSGao Xiang 		pcl->algorithmformat = Z_EROFS_COMPRESSION_SHIFTED;
42447e4937aSGao Xiang 
425a5876e24SGao Xiang 	pcl->clusterbits = EROFS_I(inode)->z_physical_clusterbits[0];
42647e4937aSGao Xiang 	pcl->clusterbits -= PAGE_SHIFT;
42747e4937aSGao Xiang 
42847e4937aSGao Xiang 	/* new pclusters should be claimed as type 1, primary and followed */
42947e4937aSGao Xiang 	pcl->next = clt->owned_head;
43047e4937aSGao Xiang 	clt->mode = COLLECT_PRIMARY_FOLLOWED;
43147e4937aSGao Xiang 
43247e4937aSGao Xiang 	cl = z_erofs_primarycollection(pcl);
43347e4937aSGao Xiang 	cl->pageofs = map->m_la & ~PAGE_MASK;
43447e4937aSGao Xiang 
43547e4937aSGao Xiang 	/*
43647e4937aSGao Xiang 	 * lock all primary followed works before visible to others
43747e4937aSGao Xiang 	 * and mutex_trylock *never* fails for a new pcluster.
43847e4937aSGao Xiang 	 */
43947e4937aSGao Xiang 	mutex_trylock(&cl->lock);
44047e4937aSGao Xiang 
44147e4937aSGao Xiang 	err = erofs_register_workgroup(inode->i_sb, &pcl->obj, 0);
44247e4937aSGao Xiang 	if (err) {
44347e4937aSGao Xiang 		mutex_unlock(&cl->lock);
44447e4937aSGao Xiang 		kmem_cache_free(pcluster_cachep, pcl);
4459e579fc1SGao Xiang 		return -EAGAIN;
44647e4937aSGao Xiang 	}
44747e4937aSGao Xiang 	/* used to check tail merging loop due to corrupted images */
44847e4937aSGao Xiang 	if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
44947e4937aSGao Xiang 		clt->tailpcl = pcl;
45047e4937aSGao Xiang 	clt->owned_head = &pcl->next;
45147e4937aSGao Xiang 	clt->pcl = pcl;
45247e4937aSGao Xiang 	clt->cl = cl;
4539e579fc1SGao Xiang 	return 0;
45447e4937aSGao Xiang }
45547e4937aSGao Xiang 
45647e4937aSGao Xiang static int z_erofs_collector_begin(struct z_erofs_collector *clt,
45747e4937aSGao Xiang 				   struct inode *inode,
45847e4937aSGao Xiang 				   struct erofs_map_blocks *map)
45947e4937aSGao Xiang {
4609e579fc1SGao Xiang 	int ret;
46147e4937aSGao Xiang 
46247e4937aSGao Xiang 	DBG_BUGON(clt->cl);
46347e4937aSGao Xiang 
46447e4937aSGao Xiang 	/* must be Z_EROFS_PCLUSTER_TAIL or pointed to previous collection */
46547e4937aSGao Xiang 	DBG_BUGON(clt->owned_head == Z_EROFS_PCLUSTER_NIL);
46647e4937aSGao Xiang 	DBG_BUGON(clt->owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
46747e4937aSGao Xiang 
46847e4937aSGao Xiang 	if (!PAGE_ALIGNED(map->m_pa)) {
46947e4937aSGao Xiang 		DBG_BUGON(1);
47047e4937aSGao Xiang 		return -EINVAL;
47147e4937aSGao Xiang 	}
47247e4937aSGao Xiang 
47347e4937aSGao Xiang repeat:
4749e579fc1SGao Xiang 	ret = z_erofs_lookup_collection(clt, inode, map);
4759e579fc1SGao Xiang 	if (ret == -ENOENT) {
4769e579fc1SGao Xiang 		ret = z_erofs_register_collection(clt, inode, map);
47747e4937aSGao Xiang 
4789e579fc1SGao Xiang 		/* someone registered at the same time, give another try */
4799e579fc1SGao Xiang 		if (ret == -EAGAIN) {
4809e579fc1SGao Xiang 			cond_resched();
48147e4937aSGao Xiang 			goto repeat;
48247e4937aSGao Xiang 		}
4839e579fc1SGao Xiang 	}
48447e4937aSGao Xiang 
4859e579fc1SGao Xiang 	if (ret)
4869e579fc1SGao Xiang 		return ret;
48747e4937aSGao Xiang 
48847e4937aSGao Xiang 	z_erofs_pagevec_ctor_init(&clt->vector, Z_EROFS_NR_INLINE_PAGEVECS,
4899e579fc1SGao Xiang 				  clt->cl->pagevec, clt->cl->vcnt);
49047e4937aSGao Xiang 
49147e4937aSGao Xiang 	clt->compressedpages = clt->pcl->compressed_pages;
49247e4937aSGao Xiang 	if (clt->mode <= COLLECT_PRIMARY) /* cannot do in-place I/O */
49347e4937aSGao Xiang 		clt->compressedpages += Z_EROFS_CLUSTER_MAX_PAGES;
49447e4937aSGao Xiang 	return 0;
49547e4937aSGao Xiang }
49647e4937aSGao Xiang 
49747e4937aSGao Xiang /*
49847e4937aSGao Xiang  * keep in mind that no referenced pclusters will be freed
49947e4937aSGao Xiang  * only after a RCU grace period.
50047e4937aSGao Xiang  */
50147e4937aSGao Xiang static void z_erofs_rcu_callback(struct rcu_head *head)
50247e4937aSGao Xiang {
50347e4937aSGao Xiang 	struct z_erofs_collection *const cl =
50447e4937aSGao Xiang 		container_of(head, struct z_erofs_collection, rcu);
50547e4937aSGao Xiang 
50647e4937aSGao Xiang 	kmem_cache_free(pcluster_cachep,
50747e4937aSGao Xiang 			container_of(cl, struct z_erofs_pcluster,
50847e4937aSGao Xiang 				     primary_collection));
50947e4937aSGao Xiang }
51047e4937aSGao Xiang 
51147e4937aSGao Xiang void erofs_workgroup_free_rcu(struct erofs_workgroup *grp)
51247e4937aSGao Xiang {
51347e4937aSGao Xiang 	struct z_erofs_pcluster *const pcl =
51447e4937aSGao Xiang 		container_of(grp, struct z_erofs_pcluster, obj);
51547e4937aSGao Xiang 	struct z_erofs_collection *const cl = z_erofs_primarycollection(pcl);
51647e4937aSGao Xiang 
51747e4937aSGao Xiang 	call_rcu(&cl->rcu, z_erofs_rcu_callback);
51847e4937aSGao Xiang }
51947e4937aSGao Xiang 
52047e4937aSGao Xiang static void z_erofs_collection_put(struct z_erofs_collection *cl)
52147e4937aSGao Xiang {
52247e4937aSGao Xiang 	struct z_erofs_pcluster *const pcl =
52347e4937aSGao Xiang 		container_of(cl, struct z_erofs_pcluster, primary_collection);
52447e4937aSGao Xiang 
52547e4937aSGao Xiang 	erofs_workgroup_put(&pcl->obj);
52647e4937aSGao Xiang }
52747e4937aSGao Xiang 
52847e4937aSGao Xiang static bool z_erofs_collector_end(struct z_erofs_collector *clt)
52947e4937aSGao Xiang {
53047e4937aSGao Xiang 	struct z_erofs_collection *cl = clt->cl;
53147e4937aSGao Xiang 
53247e4937aSGao Xiang 	if (!cl)
53347e4937aSGao Xiang 		return false;
53447e4937aSGao Xiang 
53547e4937aSGao Xiang 	z_erofs_pagevec_ctor_exit(&clt->vector, false);
53647e4937aSGao Xiang 	mutex_unlock(&cl->lock);
53747e4937aSGao Xiang 
53847e4937aSGao Xiang 	/*
53947e4937aSGao Xiang 	 * if all pending pages are added, don't hold its reference
54047e4937aSGao Xiang 	 * any longer if the pcluster isn't hosted by ourselves.
54147e4937aSGao Xiang 	 */
54247e4937aSGao Xiang 	if (clt->mode < COLLECT_PRIMARY_FOLLOWED_NOINPLACE)
54347e4937aSGao Xiang 		z_erofs_collection_put(cl);
54447e4937aSGao Xiang 
54547e4937aSGao Xiang 	clt->cl = NULL;
54647e4937aSGao Xiang 	return true;
54747e4937aSGao Xiang }
54847e4937aSGao Xiang 
54947e4937aSGao Xiang static inline struct page *__stagingpage_alloc(struct list_head *pagepool,
55047e4937aSGao Xiang 					       gfp_t gfp)
55147e4937aSGao Xiang {
55247e4937aSGao Xiang 	struct page *page = erofs_allocpage(pagepool, gfp, true);
55347e4937aSGao Xiang 
55447e4937aSGao Xiang 	page->mapping = Z_EROFS_MAPPING_STAGING;
55547e4937aSGao Xiang 	return page;
55647e4937aSGao Xiang }
55747e4937aSGao Xiang 
55847e4937aSGao Xiang static bool should_alloc_managed_pages(struct z_erofs_decompress_frontend *fe,
55947e4937aSGao Xiang 				       unsigned int cachestrategy,
56047e4937aSGao Xiang 				       erofs_off_t la)
56147e4937aSGao Xiang {
56247e4937aSGao Xiang 	if (cachestrategy <= EROFS_ZIP_CACHE_DISABLED)
56347e4937aSGao Xiang 		return false;
56447e4937aSGao Xiang 
56547e4937aSGao Xiang 	if (fe->backmost)
56647e4937aSGao Xiang 		return true;
56747e4937aSGao Xiang 
56847e4937aSGao Xiang 	return cachestrategy >= EROFS_ZIP_CACHE_READAROUND &&
56947e4937aSGao Xiang 		la < fe->headoffset;
57047e4937aSGao Xiang }
57147e4937aSGao Xiang 
57247e4937aSGao Xiang static int z_erofs_do_read_page(struct z_erofs_decompress_frontend *fe,
57347e4937aSGao Xiang 				struct page *page,
57447e4937aSGao Xiang 				struct list_head *pagepool)
57547e4937aSGao Xiang {
57647e4937aSGao Xiang 	struct inode *const inode = fe->inode;
57747e4937aSGao Xiang 	struct erofs_sb_info *const sbi __maybe_unused = EROFS_I_SB(inode);
57847e4937aSGao Xiang 	struct erofs_map_blocks *const map = &fe->map;
57947e4937aSGao Xiang 	struct z_erofs_collector *const clt = &fe->clt;
58047e4937aSGao Xiang 	const loff_t offset = page_offset(page);
581dc76ea8cSGao Xiang 	bool tight = true;
58247e4937aSGao Xiang 
58347e4937aSGao Xiang 	enum z_erofs_cache_alloctype cache_strategy;
58447e4937aSGao Xiang 	enum z_erofs_page_type page_type;
58547e4937aSGao Xiang 	unsigned int cur, end, spiltted, index;
58647e4937aSGao Xiang 	int err = 0;
58747e4937aSGao Xiang 
58847e4937aSGao Xiang 	/* register locked file pages as online pages in pack */
58947e4937aSGao Xiang 	z_erofs_onlinepage_init(page);
59047e4937aSGao Xiang 
59147e4937aSGao Xiang 	spiltted = 0;
59247e4937aSGao Xiang 	end = PAGE_SIZE;
59347e4937aSGao Xiang repeat:
59447e4937aSGao Xiang 	cur = end - 1;
59547e4937aSGao Xiang 
59647e4937aSGao Xiang 	/* lucky, within the range of the current map_blocks */
59747e4937aSGao Xiang 	if (offset + cur >= map->m_la &&
59847e4937aSGao Xiang 	    offset + cur < map->m_la + map->m_llen) {
59947e4937aSGao Xiang 		/* didn't get a valid collection previously (very rare) */
60047e4937aSGao Xiang 		if (!clt->cl)
60147e4937aSGao Xiang 			goto restart_now;
60247e4937aSGao Xiang 		goto hitted;
60347e4937aSGao Xiang 	}
60447e4937aSGao Xiang 
60547e4937aSGao Xiang 	/* go ahead the next map_blocks */
6064f761fa2SGao Xiang 	erofs_dbg("%s: [out-of-range] pos %llu", __func__, offset + cur);
60747e4937aSGao Xiang 
60847e4937aSGao Xiang 	if (z_erofs_collector_end(clt))
60947e4937aSGao Xiang 		fe->backmost = false;
61047e4937aSGao Xiang 
61147e4937aSGao Xiang 	map->m_la = offset + cur;
61247e4937aSGao Xiang 	map->m_llen = 0;
61347e4937aSGao Xiang 	err = z_erofs_map_blocks_iter(inode, map, 0);
6148d8a09b0SGao Xiang 	if (err)
61547e4937aSGao Xiang 		goto err_out;
61647e4937aSGao Xiang 
61747e4937aSGao Xiang restart_now:
6188d8a09b0SGao Xiang 	if (!(map->m_flags & EROFS_MAP_MAPPED))
61947e4937aSGao Xiang 		goto hitted;
62047e4937aSGao Xiang 
62147e4937aSGao Xiang 	err = z_erofs_collector_begin(clt, inode, map);
6228d8a09b0SGao Xiang 	if (err)
62347e4937aSGao Xiang 		goto err_out;
62447e4937aSGao Xiang 
62547e4937aSGao Xiang 	/* preload all compressed pages (maybe downgrade role if necessary) */
62647e4937aSGao Xiang 	if (should_alloc_managed_pages(fe, sbi->cache_strategy, map->m_la))
62747e4937aSGao Xiang 		cache_strategy = DELAYEDALLOC;
62847e4937aSGao Xiang 	else
62947e4937aSGao Xiang 		cache_strategy = DONTALLOC;
63047e4937aSGao Xiang 
63147e4937aSGao Xiang 	preload_compressed_pages(clt, MNGD_MAPPING(sbi),
63247e4937aSGao Xiang 				 cache_strategy, pagepool);
63347e4937aSGao Xiang 
63447e4937aSGao Xiang hitted:
635dc76ea8cSGao Xiang 	/*
636dc76ea8cSGao Xiang 	 * Ensure the current partial page belongs to this submit chain rather
637dc76ea8cSGao Xiang 	 * than other concurrent submit chains or the noio(bypass) chain since
638dc76ea8cSGao Xiang 	 * those chains are handled asynchronously thus the page cannot be used
639dc76ea8cSGao Xiang 	 * for inplace I/O or pagevec (should be processed in strict order.)
640dc76ea8cSGao Xiang 	 */
641dc76ea8cSGao Xiang 	tight &= (clt->mode >= COLLECT_PRIMARY_HOOKED &&
642dc76ea8cSGao Xiang 		  clt->mode != COLLECT_PRIMARY_FOLLOWED_NOINPLACE);
643dc76ea8cSGao Xiang 
64447e4937aSGao Xiang 	cur = end - min_t(unsigned int, offset + end - map->m_la, end);
6458d8a09b0SGao Xiang 	if (!(map->m_flags & EROFS_MAP_MAPPED)) {
64647e4937aSGao Xiang 		zero_user_segment(page, cur, end);
64747e4937aSGao Xiang 		goto next_part;
64847e4937aSGao Xiang 	}
64947e4937aSGao Xiang 
65047e4937aSGao Xiang 	/* let's derive page type */
65147e4937aSGao Xiang 	page_type = cur ? Z_EROFS_VLE_PAGE_TYPE_HEAD :
65247e4937aSGao Xiang 		(!spiltted ? Z_EROFS_PAGE_TYPE_EXCLUSIVE :
65347e4937aSGao Xiang 			(tight ? Z_EROFS_PAGE_TYPE_EXCLUSIVE :
65447e4937aSGao Xiang 				Z_EROFS_VLE_PAGE_TYPE_TAIL_SHARED));
65547e4937aSGao Xiang 
65647e4937aSGao Xiang 	if (cur)
65747e4937aSGao Xiang 		tight &= (clt->mode >= COLLECT_PRIMARY_FOLLOWED);
65847e4937aSGao Xiang 
65947e4937aSGao Xiang retry:
66047e4937aSGao Xiang 	err = z_erofs_attach_page(clt, page, page_type);
66147e4937aSGao Xiang 	/* should allocate an additional staging page for pagevec */
66247e4937aSGao Xiang 	if (err == -EAGAIN) {
66347e4937aSGao Xiang 		struct page *const newpage =
66447e4937aSGao Xiang 			__stagingpage_alloc(pagepool, GFP_NOFS);
66547e4937aSGao Xiang 
66647e4937aSGao Xiang 		err = z_erofs_attach_page(clt, newpage,
66747e4937aSGao Xiang 					  Z_EROFS_PAGE_TYPE_EXCLUSIVE);
6688d8a09b0SGao Xiang 		if (!err)
66947e4937aSGao Xiang 			goto retry;
67047e4937aSGao Xiang 	}
67147e4937aSGao Xiang 
6728d8a09b0SGao Xiang 	if (err)
67347e4937aSGao Xiang 		goto err_out;
67447e4937aSGao Xiang 
67547e4937aSGao Xiang 	index = page->index - (map->m_la >> PAGE_SHIFT);
67647e4937aSGao Xiang 
67747e4937aSGao Xiang 	z_erofs_onlinepage_fixup(page, index, true);
67847e4937aSGao Xiang 
67947e4937aSGao Xiang 	/* bump up the number of spiltted parts of a page */
68047e4937aSGao Xiang 	++spiltted;
68147e4937aSGao Xiang 	/* also update nr_pages */
68247e4937aSGao Xiang 	clt->cl->nr_pages = max_t(pgoff_t, clt->cl->nr_pages, index + 1);
68347e4937aSGao Xiang next_part:
68447e4937aSGao Xiang 	/* can be used for verification */
68547e4937aSGao Xiang 	map->m_llen = offset + cur - map->m_la;
68647e4937aSGao Xiang 
68747e4937aSGao Xiang 	end = cur;
68847e4937aSGao Xiang 	if (end > 0)
68947e4937aSGao Xiang 		goto repeat;
69047e4937aSGao Xiang 
69147e4937aSGao Xiang out:
69247e4937aSGao Xiang 	z_erofs_onlinepage_endio(page);
69347e4937aSGao Xiang 
6944f761fa2SGao Xiang 	erofs_dbg("%s, finish page: %pK spiltted: %u map->m_llen %llu",
69547e4937aSGao Xiang 		  __func__, page, spiltted, map->m_llen);
69647e4937aSGao Xiang 	return err;
69747e4937aSGao Xiang 
69847e4937aSGao Xiang 	/* if some error occurred while processing this page */
69947e4937aSGao Xiang err_out:
70047e4937aSGao Xiang 	SetPageError(page);
70147e4937aSGao Xiang 	goto out;
70247e4937aSGao Xiang }
70347e4937aSGao Xiang 
70447e4937aSGao Xiang static void z_erofs_vle_unzip_kickoff(void *ptr, int bios)
70547e4937aSGao Xiang {
70647e4937aSGao Xiang 	tagptr1_t t = tagptr_init(tagptr1_t, ptr);
70747e4937aSGao Xiang 	struct z_erofs_unzip_io *io = tagptr_unfold_ptr(t);
70847e4937aSGao Xiang 	bool background = tagptr_unfold_tags(t);
70947e4937aSGao Xiang 
71047e4937aSGao Xiang 	if (!background) {
71147e4937aSGao Xiang 		unsigned long flags;
71247e4937aSGao Xiang 
71347e4937aSGao Xiang 		spin_lock_irqsave(&io->u.wait.lock, flags);
71447e4937aSGao Xiang 		if (!atomic_add_return(bios, &io->pending_bios))
71547e4937aSGao Xiang 			wake_up_locked(&io->u.wait);
71647e4937aSGao Xiang 		spin_unlock_irqrestore(&io->u.wait.lock, flags);
71747e4937aSGao Xiang 		return;
71847e4937aSGao Xiang 	}
71947e4937aSGao Xiang 
72047e4937aSGao Xiang 	if (!atomic_add_return(bios, &io->pending_bios))
72147e4937aSGao Xiang 		queue_work(z_erofs_workqueue, &io->u.work);
72247e4937aSGao Xiang }
72347e4937aSGao Xiang 
72447e4937aSGao Xiang static inline void z_erofs_vle_read_endio(struct bio *bio)
72547e4937aSGao Xiang {
72647e4937aSGao Xiang 	struct erofs_sb_info *sbi = NULL;
72747e4937aSGao Xiang 	blk_status_t err = bio->bi_status;
72847e4937aSGao Xiang 	struct bio_vec *bvec;
72947e4937aSGao Xiang 	struct bvec_iter_all iter_all;
73047e4937aSGao Xiang 
73147e4937aSGao Xiang 	bio_for_each_segment_all(bvec, bio, iter_all) {
73247e4937aSGao Xiang 		struct page *page = bvec->bv_page;
73347e4937aSGao Xiang 		bool cachemngd = false;
73447e4937aSGao Xiang 
73547e4937aSGao Xiang 		DBG_BUGON(PageUptodate(page));
73647e4937aSGao Xiang 		DBG_BUGON(!page->mapping);
73747e4937aSGao Xiang 
738e2c71e74SGao Xiang 		if (!sbi && !z_erofs_page_is_staging(page))
73947e4937aSGao Xiang 			sbi = EROFS_SB(page->mapping->host->i_sb);
74047e4937aSGao Xiang 
74147e4937aSGao Xiang 		/* sbi should already be gotten if the page is managed */
74247e4937aSGao Xiang 		if (sbi)
74347e4937aSGao Xiang 			cachemngd = erofs_page_is_managed(sbi, page);
74447e4937aSGao Xiang 
7458d8a09b0SGao Xiang 		if (err)
74647e4937aSGao Xiang 			SetPageError(page);
74747e4937aSGao Xiang 		else if (cachemngd)
74847e4937aSGao Xiang 			SetPageUptodate(page);
74947e4937aSGao Xiang 
75047e4937aSGao Xiang 		if (cachemngd)
75147e4937aSGao Xiang 			unlock_page(page);
75247e4937aSGao Xiang 	}
75347e4937aSGao Xiang 
75447e4937aSGao Xiang 	z_erofs_vle_unzip_kickoff(bio->bi_private, -1);
75547e4937aSGao Xiang 	bio_put(bio);
75647e4937aSGao Xiang }
75747e4937aSGao Xiang 
75847e4937aSGao Xiang static int z_erofs_decompress_pcluster(struct super_block *sb,
75947e4937aSGao Xiang 				       struct z_erofs_pcluster *pcl,
76047e4937aSGao Xiang 				       struct list_head *pagepool)
76147e4937aSGao Xiang {
76247e4937aSGao Xiang 	struct erofs_sb_info *const sbi = EROFS_SB(sb);
76347e4937aSGao Xiang 	const unsigned int clusterpages = BIT(pcl->clusterbits);
76447e4937aSGao Xiang 	struct z_erofs_pagevec_ctor ctor;
76547e4937aSGao Xiang 	unsigned int i, outputsize, llen, nr_pages;
76647e4937aSGao Xiang 	struct page *pages_onstack[Z_EROFS_VMAP_ONSTACK_PAGES];
76747e4937aSGao Xiang 	struct page **pages, **compressed_pages, *page;
76847e4937aSGao Xiang 
76947e4937aSGao Xiang 	enum z_erofs_page_type page_type;
77047e4937aSGao Xiang 	bool overlapped, partial;
77147e4937aSGao Xiang 	struct z_erofs_collection *cl;
77247e4937aSGao Xiang 	int err;
77347e4937aSGao Xiang 
77447e4937aSGao Xiang 	might_sleep();
77547e4937aSGao Xiang 	cl = z_erofs_primarycollection(pcl);
77647e4937aSGao Xiang 	DBG_BUGON(!READ_ONCE(cl->nr_pages));
77747e4937aSGao Xiang 
77847e4937aSGao Xiang 	mutex_lock(&cl->lock);
77947e4937aSGao Xiang 	nr_pages = cl->nr_pages;
78047e4937aSGao Xiang 
7818d8a09b0SGao Xiang 	if (nr_pages <= Z_EROFS_VMAP_ONSTACK_PAGES) {
78247e4937aSGao Xiang 		pages = pages_onstack;
78347e4937aSGao Xiang 	} else if (nr_pages <= Z_EROFS_VMAP_GLOBAL_PAGES &&
78447e4937aSGao Xiang 		   mutex_trylock(&z_pagemap_global_lock)) {
78547e4937aSGao Xiang 		pages = z_pagemap_global;
78647e4937aSGao Xiang 	} else {
78747e4937aSGao Xiang 		gfp_t gfp_flags = GFP_KERNEL;
78847e4937aSGao Xiang 
78947e4937aSGao Xiang 		if (nr_pages > Z_EROFS_VMAP_GLOBAL_PAGES)
79047e4937aSGao Xiang 			gfp_flags |= __GFP_NOFAIL;
79147e4937aSGao Xiang 
79247e4937aSGao Xiang 		pages = kvmalloc_array(nr_pages, sizeof(struct page *),
79347e4937aSGao Xiang 				       gfp_flags);
79447e4937aSGao Xiang 
79547e4937aSGao Xiang 		/* fallback to global pagemap for the lowmem scenario */
7968d8a09b0SGao Xiang 		if (!pages) {
79747e4937aSGao Xiang 			mutex_lock(&z_pagemap_global_lock);
79847e4937aSGao Xiang 			pages = z_pagemap_global;
79947e4937aSGao Xiang 		}
80047e4937aSGao Xiang 	}
80147e4937aSGao Xiang 
80247e4937aSGao Xiang 	for (i = 0; i < nr_pages; ++i)
80347e4937aSGao Xiang 		pages[i] = NULL;
80447e4937aSGao Xiang 
80547e4937aSGao Xiang 	err = 0;
80647e4937aSGao Xiang 	z_erofs_pagevec_ctor_init(&ctor, Z_EROFS_NR_INLINE_PAGEVECS,
80747e4937aSGao Xiang 				  cl->pagevec, 0);
80847e4937aSGao Xiang 
80947e4937aSGao Xiang 	for (i = 0; i < cl->vcnt; ++i) {
81047e4937aSGao Xiang 		unsigned int pagenr;
81147e4937aSGao Xiang 
81247e4937aSGao Xiang 		page = z_erofs_pagevec_dequeue(&ctor, &page_type);
81347e4937aSGao Xiang 
81447e4937aSGao Xiang 		/* all pages in pagevec ought to be valid */
81547e4937aSGao Xiang 		DBG_BUGON(!page);
81647e4937aSGao Xiang 		DBG_BUGON(!page->mapping);
81747e4937aSGao Xiang 
81847e4937aSGao Xiang 		if (z_erofs_put_stagingpage(pagepool, page))
81947e4937aSGao Xiang 			continue;
82047e4937aSGao Xiang 
82147e4937aSGao Xiang 		if (page_type == Z_EROFS_VLE_PAGE_TYPE_HEAD)
82247e4937aSGao Xiang 			pagenr = 0;
82347e4937aSGao Xiang 		else
82447e4937aSGao Xiang 			pagenr = z_erofs_onlinepage_index(page);
82547e4937aSGao Xiang 
82647e4937aSGao Xiang 		DBG_BUGON(pagenr >= nr_pages);
82747e4937aSGao Xiang 
82847e4937aSGao Xiang 		/*
82947e4937aSGao Xiang 		 * currently EROFS doesn't support multiref(dedup),
83047e4937aSGao Xiang 		 * so here erroring out one multiref page.
83147e4937aSGao Xiang 		 */
8328d8a09b0SGao Xiang 		if (pages[pagenr]) {
83347e4937aSGao Xiang 			DBG_BUGON(1);
83447e4937aSGao Xiang 			SetPageError(pages[pagenr]);
83547e4937aSGao Xiang 			z_erofs_onlinepage_endio(pages[pagenr]);
83647e4937aSGao Xiang 			err = -EFSCORRUPTED;
83747e4937aSGao Xiang 		}
83847e4937aSGao Xiang 		pages[pagenr] = page;
83947e4937aSGao Xiang 	}
84047e4937aSGao Xiang 	z_erofs_pagevec_ctor_exit(&ctor, true);
84147e4937aSGao Xiang 
84247e4937aSGao Xiang 	overlapped = false;
84347e4937aSGao Xiang 	compressed_pages = pcl->compressed_pages;
84447e4937aSGao Xiang 
84547e4937aSGao Xiang 	for (i = 0; i < clusterpages; ++i) {
84647e4937aSGao Xiang 		unsigned int pagenr;
84747e4937aSGao Xiang 
84847e4937aSGao Xiang 		page = compressed_pages[i];
84947e4937aSGao Xiang 
85047e4937aSGao Xiang 		/* all compressed pages ought to be valid */
85147e4937aSGao Xiang 		DBG_BUGON(!page);
85247e4937aSGao Xiang 		DBG_BUGON(!page->mapping);
85347e4937aSGao Xiang 
85447e4937aSGao Xiang 		if (!z_erofs_page_is_staging(page)) {
85547e4937aSGao Xiang 			if (erofs_page_is_managed(sbi, page)) {
8568d8a09b0SGao Xiang 				if (!PageUptodate(page))
85747e4937aSGao Xiang 					err = -EIO;
85847e4937aSGao Xiang 				continue;
85947e4937aSGao Xiang 			}
86047e4937aSGao Xiang 
86147e4937aSGao Xiang 			/*
86247e4937aSGao Xiang 			 * only if non-head page can be selected
86347e4937aSGao Xiang 			 * for inplace decompression
86447e4937aSGao Xiang 			 */
86547e4937aSGao Xiang 			pagenr = z_erofs_onlinepage_index(page);
86647e4937aSGao Xiang 
86747e4937aSGao Xiang 			DBG_BUGON(pagenr >= nr_pages);
8688d8a09b0SGao Xiang 			if (pages[pagenr]) {
86947e4937aSGao Xiang 				DBG_BUGON(1);
87047e4937aSGao Xiang 				SetPageError(pages[pagenr]);
87147e4937aSGao Xiang 				z_erofs_onlinepage_endio(pages[pagenr]);
87247e4937aSGao Xiang 				err = -EFSCORRUPTED;
87347e4937aSGao Xiang 			}
87447e4937aSGao Xiang 			pages[pagenr] = page;
87547e4937aSGao Xiang 
87647e4937aSGao Xiang 			overlapped = true;
87747e4937aSGao Xiang 		}
87847e4937aSGao Xiang 
87947e4937aSGao Xiang 		/* PG_error needs checking for inplaced and staging pages */
8808d8a09b0SGao Xiang 		if (PageError(page)) {
88147e4937aSGao Xiang 			DBG_BUGON(PageUptodate(page));
88247e4937aSGao Xiang 			err = -EIO;
88347e4937aSGao Xiang 		}
88447e4937aSGao Xiang 	}
88547e4937aSGao Xiang 
8868d8a09b0SGao Xiang 	if (err)
88747e4937aSGao Xiang 		goto out;
88847e4937aSGao Xiang 
88947e4937aSGao Xiang 	llen = pcl->length >> Z_EROFS_PCLUSTER_LENGTH_BIT;
89047e4937aSGao Xiang 	if (nr_pages << PAGE_SHIFT >= cl->pageofs + llen) {
89147e4937aSGao Xiang 		outputsize = llen;
89247e4937aSGao Xiang 		partial = !(pcl->length & Z_EROFS_PCLUSTER_FULL_LENGTH);
89347e4937aSGao Xiang 	} else {
89447e4937aSGao Xiang 		outputsize = (nr_pages << PAGE_SHIFT) - cl->pageofs;
89547e4937aSGao Xiang 		partial = true;
89647e4937aSGao Xiang 	}
89747e4937aSGao Xiang 
89847e4937aSGao Xiang 	err = z_erofs_decompress(&(struct z_erofs_decompress_req) {
89947e4937aSGao Xiang 					.sb = sb,
90047e4937aSGao Xiang 					.in = compressed_pages,
90147e4937aSGao Xiang 					.out = pages,
90247e4937aSGao Xiang 					.pageofs_out = cl->pageofs,
90347e4937aSGao Xiang 					.inputsize = PAGE_SIZE,
90447e4937aSGao Xiang 					.outputsize = outputsize,
90547e4937aSGao Xiang 					.alg = pcl->algorithmformat,
90647e4937aSGao Xiang 					.inplace_io = overlapped,
90747e4937aSGao Xiang 					.partial_decoding = partial
90847e4937aSGao Xiang 				 }, pagepool);
90947e4937aSGao Xiang 
91047e4937aSGao Xiang out:
91147e4937aSGao Xiang 	/* must handle all compressed pages before endding pages */
91247e4937aSGao Xiang 	for (i = 0; i < clusterpages; ++i) {
91347e4937aSGao Xiang 		page = compressed_pages[i];
91447e4937aSGao Xiang 
91547e4937aSGao Xiang 		if (erofs_page_is_managed(sbi, page))
91647e4937aSGao Xiang 			continue;
91747e4937aSGao Xiang 
91847e4937aSGao Xiang 		/* recycle all individual staging pages */
91947e4937aSGao Xiang 		(void)z_erofs_put_stagingpage(pagepool, page);
92047e4937aSGao Xiang 
92147e4937aSGao Xiang 		WRITE_ONCE(compressed_pages[i], NULL);
92247e4937aSGao Xiang 	}
92347e4937aSGao Xiang 
92447e4937aSGao Xiang 	for (i = 0; i < nr_pages; ++i) {
92547e4937aSGao Xiang 		page = pages[i];
92647e4937aSGao Xiang 		if (!page)
92747e4937aSGao Xiang 			continue;
92847e4937aSGao Xiang 
92947e4937aSGao Xiang 		DBG_BUGON(!page->mapping);
93047e4937aSGao Xiang 
93147e4937aSGao Xiang 		/* recycle all individual staging pages */
93247e4937aSGao Xiang 		if (z_erofs_put_stagingpage(pagepool, page))
93347e4937aSGao Xiang 			continue;
93447e4937aSGao Xiang 
9358d8a09b0SGao Xiang 		if (err < 0)
93647e4937aSGao Xiang 			SetPageError(page);
93747e4937aSGao Xiang 
93847e4937aSGao Xiang 		z_erofs_onlinepage_endio(page);
93947e4937aSGao Xiang 	}
94047e4937aSGao Xiang 
94147e4937aSGao Xiang 	if (pages == z_pagemap_global)
94247e4937aSGao Xiang 		mutex_unlock(&z_pagemap_global_lock);
9438d8a09b0SGao Xiang 	else if (pages != pages_onstack)
94447e4937aSGao Xiang 		kvfree(pages);
94547e4937aSGao Xiang 
94647e4937aSGao Xiang 	cl->nr_pages = 0;
94747e4937aSGao Xiang 	cl->vcnt = 0;
94847e4937aSGao Xiang 
94947e4937aSGao Xiang 	/* all cl locks MUST be taken before the following line */
95047e4937aSGao Xiang 	WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_NIL);
95147e4937aSGao Xiang 
95247e4937aSGao Xiang 	/* all cl locks SHOULD be released right now */
95347e4937aSGao Xiang 	mutex_unlock(&cl->lock);
95447e4937aSGao Xiang 
95547e4937aSGao Xiang 	z_erofs_collection_put(cl);
95647e4937aSGao Xiang 	return err;
95747e4937aSGao Xiang }
95847e4937aSGao Xiang 
95947e4937aSGao Xiang static void z_erofs_vle_unzip_all(struct super_block *sb,
96047e4937aSGao Xiang 				  struct z_erofs_unzip_io *io,
96147e4937aSGao Xiang 				  struct list_head *pagepool)
96247e4937aSGao Xiang {
96347e4937aSGao Xiang 	z_erofs_next_pcluster_t owned = io->head;
96447e4937aSGao Xiang 
96547e4937aSGao Xiang 	while (owned != Z_EROFS_PCLUSTER_TAIL_CLOSED) {
96647e4937aSGao Xiang 		struct z_erofs_pcluster *pcl;
96747e4937aSGao Xiang 
96847e4937aSGao Xiang 		/* no possible that 'owned' equals Z_EROFS_WORK_TPTR_TAIL */
96947e4937aSGao Xiang 		DBG_BUGON(owned == Z_EROFS_PCLUSTER_TAIL);
97047e4937aSGao Xiang 
97147e4937aSGao Xiang 		/* no possible that 'owned' equals NULL */
97247e4937aSGao Xiang 		DBG_BUGON(owned == Z_EROFS_PCLUSTER_NIL);
97347e4937aSGao Xiang 
97447e4937aSGao Xiang 		pcl = container_of(owned, struct z_erofs_pcluster, next);
97547e4937aSGao Xiang 		owned = READ_ONCE(pcl->next);
97647e4937aSGao Xiang 
97747e4937aSGao Xiang 		z_erofs_decompress_pcluster(sb, pcl, pagepool);
97847e4937aSGao Xiang 	}
97947e4937aSGao Xiang }
98047e4937aSGao Xiang 
98147e4937aSGao Xiang static void z_erofs_vle_unzip_wq(struct work_struct *work)
98247e4937aSGao Xiang {
98347e4937aSGao Xiang 	struct z_erofs_unzip_io_sb *iosb =
98447e4937aSGao Xiang 		container_of(work, struct z_erofs_unzip_io_sb, io.u.work);
98547e4937aSGao Xiang 	LIST_HEAD(pagepool);
98647e4937aSGao Xiang 
98747e4937aSGao Xiang 	DBG_BUGON(iosb->io.head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
98847e4937aSGao Xiang 	z_erofs_vle_unzip_all(iosb->sb, &iosb->io, &pagepool);
98947e4937aSGao Xiang 
99047e4937aSGao Xiang 	put_pages_list(&pagepool);
99147e4937aSGao Xiang 	kvfree(iosb);
99247e4937aSGao Xiang }
99347e4937aSGao Xiang 
99447e4937aSGao Xiang static struct page *pickup_page_for_submission(struct z_erofs_pcluster *pcl,
99547e4937aSGao Xiang 					       unsigned int nr,
99647e4937aSGao Xiang 					       struct list_head *pagepool,
99747e4937aSGao Xiang 					       struct address_space *mc,
99847e4937aSGao Xiang 					       gfp_t gfp)
99947e4937aSGao Xiang {
100047e4937aSGao Xiang 	/* determined at compile time to avoid too many #ifdefs */
100147e4937aSGao Xiang 	const bool nocache = __builtin_constant_p(mc) ? !mc : false;
100247e4937aSGao Xiang 	const pgoff_t index = pcl->obj.index;
100347e4937aSGao Xiang 	bool tocache = false;
100447e4937aSGao Xiang 
100547e4937aSGao Xiang 	struct address_space *mapping;
100647e4937aSGao Xiang 	struct page *oldpage, *page;
100747e4937aSGao Xiang 
100847e4937aSGao Xiang 	compressed_page_t t;
100947e4937aSGao Xiang 	int justfound;
101047e4937aSGao Xiang 
101147e4937aSGao Xiang repeat:
101247e4937aSGao Xiang 	page = READ_ONCE(pcl->compressed_pages[nr]);
101347e4937aSGao Xiang 	oldpage = page;
101447e4937aSGao Xiang 
101547e4937aSGao Xiang 	if (!page)
101647e4937aSGao Xiang 		goto out_allocpage;
101747e4937aSGao Xiang 
101847e4937aSGao Xiang 	/*
101947e4937aSGao Xiang 	 * the cached page has not been allocated and
102047e4937aSGao Xiang 	 * an placeholder is out there, prepare it now.
102147e4937aSGao Xiang 	 */
102247e4937aSGao Xiang 	if (!nocache && page == PAGE_UNALLOCATED) {
102347e4937aSGao Xiang 		tocache = true;
102447e4937aSGao Xiang 		goto out_allocpage;
102547e4937aSGao Xiang 	}
102647e4937aSGao Xiang 
102747e4937aSGao Xiang 	/* process the target tagged pointer */
102847e4937aSGao Xiang 	t = tagptr_init(compressed_page_t, page);
102947e4937aSGao Xiang 	justfound = tagptr_unfold_tags(t);
103047e4937aSGao Xiang 	page = tagptr_unfold_ptr(t);
103147e4937aSGao Xiang 
103247e4937aSGao Xiang 	mapping = READ_ONCE(page->mapping);
103347e4937aSGao Xiang 
103447e4937aSGao Xiang 	/*
103547e4937aSGao Xiang 	 * if managed cache is disabled, it's no way to
103647e4937aSGao Xiang 	 * get such a cached-like page.
103747e4937aSGao Xiang 	 */
103847e4937aSGao Xiang 	if (nocache) {
103947e4937aSGao Xiang 		/* if managed cache is disabled, it is impossible `justfound' */
104047e4937aSGao Xiang 		DBG_BUGON(justfound);
104147e4937aSGao Xiang 
104247e4937aSGao Xiang 		/* and it should be locked, not uptodate, and not truncated */
104347e4937aSGao Xiang 		DBG_BUGON(!PageLocked(page));
104447e4937aSGao Xiang 		DBG_BUGON(PageUptodate(page));
104547e4937aSGao Xiang 		DBG_BUGON(!mapping);
104647e4937aSGao Xiang 		goto out;
104747e4937aSGao Xiang 	}
104847e4937aSGao Xiang 
104947e4937aSGao Xiang 	/*
105047e4937aSGao Xiang 	 * unmanaged (file) pages are all locked solidly,
105147e4937aSGao Xiang 	 * therefore it is impossible for `mapping' to be NULL.
105247e4937aSGao Xiang 	 */
105347e4937aSGao Xiang 	if (mapping && mapping != mc)
105447e4937aSGao Xiang 		/* ought to be unmanaged pages */
105547e4937aSGao Xiang 		goto out;
105647e4937aSGao Xiang 
105747e4937aSGao Xiang 	lock_page(page);
105847e4937aSGao Xiang 
105947e4937aSGao Xiang 	/* only true if page reclaim goes wrong, should never happen */
106047e4937aSGao Xiang 	DBG_BUGON(justfound && PagePrivate(page));
106147e4937aSGao Xiang 
106247e4937aSGao Xiang 	/* the page is still in manage cache */
106347e4937aSGao Xiang 	if (page->mapping == mc) {
106447e4937aSGao Xiang 		WRITE_ONCE(pcl->compressed_pages[nr], page);
106547e4937aSGao Xiang 
106647e4937aSGao Xiang 		ClearPageError(page);
106747e4937aSGao Xiang 		if (!PagePrivate(page)) {
106847e4937aSGao Xiang 			/*
106947e4937aSGao Xiang 			 * impossible to be !PagePrivate(page) for
107047e4937aSGao Xiang 			 * the current restriction as well if
107147e4937aSGao Xiang 			 * the page is already in compressed_pages[].
107247e4937aSGao Xiang 			 */
107347e4937aSGao Xiang 			DBG_BUGON(!justfound);
107447e4937aSGao Xiang 
107547e4937aSGao Xiang 			justfound = 0;
107647e4937aSGao Xiang 			set_page_private(page, (unsigned long)pcl);
107747e4937aSGao Xiang 			SetPagePrivate(page);
107847e4937aSGao Xiang 		}
107947e4937aSGao Xiang 
108047e4937aSGao Xiang 		/* no need to submit io if it is already up-to-date */
108147e4937aSGao Xiang 		if (PageUptodate(page)) {
108247e4937aSGao Xiang 			unlock_page(page);
108347e4937aSGao Xiang 			page = NULL;
108447e4937aSGao Xiang 		}
108547e4937aSGao Xiang 		goto out;
108647e4937aSGao Xiang 	}
108747e4937aSGao Xiang 
108847e4937aSGao Xiang 	/*
108947e4937aSGao Xiang 	 * the managed page has been truncated, it's unsafe to
109047e4937aSGao Xiang 	 * reuse this one, let's allocate a new cache-managed page.
109147e4937aSGao Xiang 	 */
109247e4937aSGao Xiang 	DBG_BUGON(page->mapping);
109347e4937aSGao Xiang 	DBG_BUGON(!justfound);
109447e4937aSGao Xiang 
109547e4937aSGao Xiang 	tocache = true;
109647e4937aSGao Xiang 	unlock_page(page);
109747e4937aSGao Xiang 	put_page(page);
109847e4937aSGao Xiang out_allocpage:
109947e4937aSGao Xiang 	page = __stagingpage_alloc(pagepool, gfp);
110047e4937aSGao Xiang 	if (oldpage != cmpxchg(&pcl->compressed_pages[nr], oldpage, page)) {
110147e4937aSGao Xiang 		list_add(&page->lru, pagepool);
110247e4937aSGao Xiang 		cpu_relax();
110347e4937aSGao Xiang 		goto repeat;
110447e4937aSGao Xiang 	}
110547e4937aSGao Xiang 	if (nocache || !tocache)
110647e4937aSGao Xiang 		goto out;
110747e4937aSGao Xiang 	if (add_to_page_cache_lru(page, mc, index + nr, gfp)) {
110847e4937aSGao Xiang 		page->mapping = Z_EROFS_MAPPING_STAGING;
110947e4937aSGao Xiang 		goto out;
111047e4937aSGao Xiang 	}
111147e4937aSGao Xiang 
111247e4937aSGao Xiang 	set_page_private(page, (unsigned long)pcl);
111347e4937aSGao Xiang 	SetPagePrivate(page);
111447e4937aSGao Xiang out:	/* the only exit (for tracing and debugging) */
111547e4937aSGao Xiang 	return page;
111647e4937aSGao Xiang }
111747e4937aSGao Xiang 
111847e4937aSGao Xiang static struct z_erofs_unzip_io *jobqueue_init(struct super_block *sb,
111947e4937aSGao Xiang 					      struct z_erofs_unzip_io *io,
112047e4937aSGao Xiang 					      bool foreground)
112147e4937aSGao Xiang {
112247e4937aSGao Xiang 	struct z_erofs_unzip_io_sb *iosb;
112347e4937aSGao Xiang 
112447e4937aSGao Xiang 	if (foreground) {
112547e4937aSGao Xiang 		/* waitqueue available for foreground io */
112647e4937aSGao Xiang 		DBG_BUGON(!io);
112747e4937aSGao Xiang 
112847e4937aSGao Xiang 		init_waitqueue_head(&io->u.wait);
112947e4937aSGao Xiang 		atomic_set(&io->pending_bios, 0);
113047e4937aSGao Xiang 		goto out;
113147e4937aSGao Xiang 	}
113247e4937aSGao Xiang 
113347e4937aSGao Xiang 	iosb = kvzalloc(sizeof(*iosb), GFP_KERNEL | __GFP_NOFAIL);
113447e4937aSGao Xiang 	DBG_BUGON(!iosb);
113547e4937aSGao Xiang 
113647e4937aSGao Xiang 	/* initialize fields in the allocated descriptor */
113747e4937aSGao Xiang 	io = &iosb->io;
113847e4937aSGao Xiang 	iosb->sb = sb;
113947e4937aSGao Xiang 	INIT_WORK(&io->u.work, z_erofs_vle_unzip_wq);
114047e4937aSGao Xiang out:
114147e4937aSGao Xiang 	io->head = Z_EROFS_PCLUSTER_TAIL_CLOSED;
114247e4937aSGao Xiang 	return io;
114347e4937aSGao Xiang }
114447e4937aSGao Xiang 
114547e4937aSGao Xiang /* define decompression jobqueue types */
114647e4937aSGao Xiang enum {
114747e4937aSGao Xiang 	JQ_BYPASS,
114847e4937aSGao Xiang 	JQ_SUBMIT,
114947e4937aSGao Xiang 	NR_JOBQUEUES,
115047e4937aSGao Xiang };
115147e4937aSGao Xiang 
115247e4937aSGao Xiang static void *jobqueueset_init(struct super_block *sb,
115347e4937aSGao Xiang 			      z_erofs_next_pcluster_t qtail[],
115447e4937aSGao Xiang 			      struct z_erofs_unzip_io *q[],
115547e4937aSGao Xiang 			      struct z_erofs_unzip_io *fgq,
115647e4937aSGao Xiang 			      bool forcefg)
115747e4937aSGao Xiang {
115847e4937aSGao Xiang 	/*
115947e4937aSGao Xiang 	 * if managed cache is enabled, bypass jobqueue is needed,
116047e4937aSGao Xiang 	 * no need to read from device for all pclusters in this queue.
116147e4937aSGao Xiang 	 */
116247e4937aSGao Xiang 	q[JQ_BYPASS] = jobqueue_init(sb, fgq + JQ_BYPASS, true);
116347e4937aSGao Xiang 	qtail[JQ_BYPASS] = &q[JQ_BYPASS]->head;
116447e4937aSGao Xiang 
116547e4937aSGao Xiang 	q[JQ_SUBMIT] = jobqueue_init(sb, fgq + JQ_SUBMIT, forcefg);
116647e4937aSGao Xiang 	qtail[JQ_SUBMIT] = &q[JQ_SUBMIT]->head;
116747e4937aSGao Xiang 
116847e4937aSGao Xiang 	return tagptr_cast_ptr(tagptr_fold(tagptr1_t, q[JQ_SUBMIT], !forcefg));
116947e4937aSGao Xiang }
117047e4937aSGao Xiang 
117147e4937aSGao Xiang static void move_to_bypass_jobqueue(struct z_erofs_pcluster *pcl,
117247e4937aSGao Xiang 				    z_erofs_next_pcluster_t qtail[],
117347e4937aSGao Xiang 				    z_erofs_next_pcluster_t owned_head)
117447e4937aSGao Xiang {
117547e4937aSGao Xiang 	z_erofs_next_pcluster_t *const submit_qtail = qtail[JQ_SUBMIT];
117647e4937aSGao Xiang 	z_erofs_next_pcluster_t *const bypass_qtail = qtail[JQ_BYPASS];
117747e4937aSGao Xiang 
117847e4937aSGao Xiang 	DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
117947e4937aSGao Xiang 	if (owned_head == Z_EROFS_PCLUSTER_TAIL)
118047e4937aSGao Xiang 		owned_head = Z_EROFS_PCLUSTER_TAIL_CLOSED;
118147e4937aSGao Xiang 
118247e4937aSGao Xiang 	WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_TAIL_CLOSED);
118347e4937aSGao Xiang 
118447e4937aSGao Xiang 	WRITE_ONCE(*submit_qtail, owned_head);
118547e4937aSGao Xiang 	WRITE_ONCE(*bypass_qtail, &pcl->next);
118647e4937aSGao Xiang 
118747e4937aSGao Xiang 	qtail[JQ_BYPASS] = &pcl->next;
118847e4937aSGao Xiang }
118947e4937aSGao Xiang 
119047e4937aSGao Xiang static bool postsubmit_is_all_bypassed(struct z_erofs_unzip_io *q[],
119147e4937aSGao Xiang 				       unsigned int nr_bios,
119247e4937aSGao Xiang 				       bool force_fg)
119347e4937aSGao Xiang {
119447e4937aSGao Xiang 	/*
119547e4937aSGao Xiang 	 * although background is preferred, no one is pending for submission.
119647e4937aSGao Xiang 	 * don't issue workqueue for decompression but drop it directly instead.
119747e4937aSGao Xiang 	 */
119847e4937aSGao Xiang 	if (force_fg || nr_bios)
119947e4937aSGao Xiang 		return false;
120047e4937aSGao Xiang 
120147e4937aSGao Xiang 	kvfree(container_of(q[JQ_SUBMIT], struct z_erofs_unzip_io_sb, io));
120247e4937aSGao Xiang 	return true;
120347e4937aSGao Xiang }
120447e4937aSGao Xiang 
120547e4937aSGao Xiang static bool z_erofs_vle_submit_all(struct super_block *sb,
120647e4937aSGao Xiang 				   z_erofs_next_pcluster_t owned_head,
120747e4937aSGao Xiang 				   struct list_head *pagepool,
120847e4937aSGao Xiang 				   struct z_erofs_unzip_io *fgq,
120947e4937aSGao Xiang 				   bool force_fg)
121047e4937aSGao Xiang {
121147e4937aSGao Xiang 	struct erofs_sb_info *const sbi __maybe_unused = EROFS_SB(sb);
121247e4937aSGao Xiang 	z_erofs_next_pcluster_t qtail[NR_JOBQUEUES];
121347e4937aSGao Xiang 	struct z_erofs_unzip_io *q[NR_JOBQUEUES];
121447e4937aSGao Xiang 	struct bio *bio;
121547e4937aSGao Xiang 	void *bi_private;
121647e4937aSGao Xiang 	/* since bio will be NULL, no need to initialize last_index */
121747e4937aSGao Xiang 	pgoff_t uninitialized_var(last_index);
121847e4937aSGao Xiang 	bool force_submit = false;
121947e4937aSGao Xiang 	unsigned int nr_bios;
122047e4937aSGao Xiang 
12218d8a09b0SGao Xiang 	if (owned_head == Z_EROFS_PCLUSTER_TAIL)
122247e4937aSGao Xiang 		return false;
122347e4937aSGao Xiang 
122447e4937aSGao Xiang 	force_submit = false;
122547e4937aSGao Xiang 	bio = NULL;
122647e4937aSGao Xiang 	nr_bios = 0;
122747e4937aSGao Xiang 	bi_private = jobqueueset_init(sb, qtail, q, fgq, force_fg);
122847e4937aSGao Xiang 
122947e4937aSGao Xiang 	/* by default, all need io submission */
123047e4937aSGao Xiang 	q[JQ_SUBMIT]->head = owned_head;
123147e4937aSGao Xiang 
123247e4937aSGao Xiang 	do {
123347e4937aSGao Xiang 		struct z_erofs_pcluster *pcl;
123447e4937aSGao Xiang 		unsigned int clusterpages;
123547e4937aSGao Xiang 		pgoff_t first_index;
123647e4937aSGao Xiang 		struct page *page;
123747e4937aSGao Xiang 		unsigned int i = 0, bypass = 0;
123847e4937aSGao Xiang 		int err;
123947e4937aSGao Xiang 
124047e4937aSGao Xiang 		/* no possible 'owned_head' equals the following */
124147e4937aSGao Xiang 		DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
124247e4937aSGao Xiang 		DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_NIL);
124347e4937aSGao Xiang 
124447e4937aSGao Xiang 		pcl = container_of(owned_head, struct z_erofs_pcluster, next);
124547e4937aSGao Xiang 
124647e4937aSGao Xiang 		clusterpages = BIT(pcl->clusterbits);
124747e4937aSGao Xiang 
124847e4937aSGao Xiang 		/* close the main owned chain at first */
124947e4937aSGao Xiang 		owned_head = cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_TAIL,
125047e4937aSGao Xiang 				     Z_EROFS_PCLUSTER_TAIL_CLOSED);
125147e4937aSGao Xiang 
125247e4937aSGao Xiang 		first_index = pcl->obj.index;
125347e4937aSGao Xiang 		force_submit |= (first_index != last_index + 1);
125447e4937aSGao Xiang 
125547e4937aSGao Xiang repeat:
125647e4937aSGao Xiang 		page = pickup_page_for_submission(pcl, i, pagepool,
125747e4937aSGao Xiang 						  MNGD_MAPPING(sbi),
125847e4937aSGao Xiang 						  GFP_NOFS);
125947e4937aSGao Xiang 		if (!page) {
126047e4937aSGao Xiang 			force_submit = true;
126147e4937aSGao Xiang 			++bypass;
126247e4937aSGao Xiang 			goto skippage;
126347e4937aSGao Xiang 		}
126447e4937aSGao Xiang 
126547e4937aSGao Xiang 		if (bio && force_submit) {
126647e4937aSGao Xiang submit_bio_retry:
126794e4e153SGao Xiang 			submit_bio(bio);
126847e4937aSGao Xiang 			bio = NULL;
126947e4937aSGao Xiang 		}
127047e4937aSGao Xiang 
127147e4937aSGao Xiang 		if (!bio) {
1272a5c0b780SGao Xiang 			bio = bio_alloc(GFP_NOIO, BIO_MAX_PAGES);
1273a5c0b780SGao Xiang 
1274a5c0b780SGao Xiang 			bio->bi_end_io = z_erofs_vle_read_endio;
1275a5c0b780SGao Xiang 			bio_set_dev(bio, sb->s_bdev);
1276a5c0b780SGao Xiang 			bio->bi_iter.bi_sector = (sector_t)(first_index + i) <<
1277a5c0b780SGao Xiang 				LOG_SECTORS_PER_BLOCK;
1278a5c0b780SGao Xiang 			bio->bi_private = bi_private;
127994e4e153SGao Xiang 			bio->bi_opf = REQ_OP_READ;
128094e4e153SGao Xiang 
128147e4937aSGao Xiang 			++nr_bios;
128247e4937aSGao Xiang 		}
128347e4937aSGao Xiang 
128447e4937aSGao Xiang 		err = bio_add_page(bio, page, PAGE_SIZE, 0);
128547e4937aSGao Xiang 		if (err < PAGE_SIZE)
128647e4937aSGao Xiang 			goto submit_bio_retry;
128747e4937aSGao Xiang 
128847e4937aSGao Xiang 		force_submit = false;
128947e4937aSGao Xiang 		last_index = first_index + i;
129047e4937aSGao Xiang skippage:
129147e4937aSGao Xiang 		if (++i < clusterpages)
129247e4937aSGao Xiang 			goto repeat;
129347e4937aSGao Xiang 
129447e4937aSGao Xiang 		if (bypass < clusterpages)
129547e4937aSGao Xiang 			qtail[JQ_SUBMIT] = &pcl->next;
129647e4937aSGao Xiang 		else
129747e4937aSGao Xiang 			move_to_bypass_jobqueue(pcl, qtail, owned_head);
129847e4937aSGao Xiang 	} while (owned_head != Z_EROFS_PCLUSTER_TAIL);
129947e4937aSGao Xiang 
130047e4937aSGao Xiang 	if (bio)
130194e4e153SGao Xiang 		submit_bio(bio);
130247e4937aSGao Xiang 
130347e4937aSGao Xiang 	if (postsubmit_is_all_bypassed(q, nr_bios, force_fg))
130447e4937aSGao Xiang 		return true;
130547e4937aSGao Xiang 
130647e4937aSGao Xiang 	z_erofs_vle_unzip_kickoff(bi_private, nr_bios);
130747e4937aSGao Xiang 	return true;
130847e4937aSGao Xiang }
130947e4937aSGao Xiang 
131047e4937aSGao Xiang static void z_erofs_submit_and_unzip(struct super_block *sb,
131147e4937aSGao Xiang 				     struct z_erofs_collector *clt,
131247e4937aSGao Xiang 				     struct list_head *pagepool,
131347e4937aSGao Xiang 				     bool force_fg)
131447e4937aSGao Xiang {
131547e4937aSGao Xiang 	struct z_erofs_unzip_io io[NR_JOBQUEUES];
131647e4937aSGao Xiang 
131747e4937aSGao Xiang 	if (!z_erofs_vle_submit_all(sb, clt->owned_head,
131847e4937aSGao Xiang 				    pagepool, io, force_fg))
131947e4937aSGao Xiang 		return;
132047e4937aSGao Xiang 
132147e4937aSGao Xiang 	/* decompress no I/O pclusters immediately */
132247e4937aSGao Xiang 	z_erofs_vle_unzip_all(sb, &io[JQ_BYPASS], pagepool);
132347e4937aSGao Xiang 
132447e4937aSGao Xiang 	if (!force_fg)
132547e4937aSGao Xiang 		return;
132647e4937aSGao Xiang 
132747e4937aSGao Xiang 	/* wait until all bios are completed */
132847e4937aSGao Xiang 	wait_event(io[JQ_SUBMIT].u.wait,
132947e4937aSGao Xiang 		   !atomic_read(&io[JQ_SUBMIT].pending_bios));
133047e4937aSGao Xiang 
133147e4937aSGao Xiang 	/* let's synchronous decompression */
133247e4937aSGao Xiang 	z_erofs_vle_unzip_all(sb, &io[JQ_SUBMIT], pagepool);
133347e4937aSGao Xiang }
133447e4937aSGao Xiang 
133547e4937aSGao Xiang static int z_erofs_vle_normalaccess_readpage(struct file *file,
133647e4937aSGao Xiang 					     struct page *page)
133747e4937aSGao Xiang {
133847e4937aSGao Xiang 	struct inode *const inode = page->mapping->host;
133947e4937aSGao Xiang 	struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode);
134047e4937aSGao Xiang 	int err;
134147e4937aSGao Xiang 	LIST_HEAD(pagepool);
134247e4937aSGao Xiang 
134347e4937aSGao Xiang 	trace_erofs_readpage(page, false);
134447e4937aSGao Xiang 
134547e4937aSGao Xiang 	f.headoffset = (erofs_off_t)page->index << PAGE_SHIFT;
134647e4937aSGao Xiang 
134747e4937aSGao Xiang 	err = z_erofs_do_read_page(&f, page, &pagepool);
134847e4937aSGao Xiang 	(void)z_erofs_collector_end(&f.clt);
134947e4937aSGao Xiang 
135047e4937aSGao Xiang 	/* if some compressed cluster ready, need submit them anyway */
135147e4937aSGao Xiang 	z_erofs_submit_and_unzip(inode->i_sb, &f.clt, &pagepool, true);
135247e4937aSGao Xiang 
135347e4937aSGao Xiang 	if (err)
13544f761fa2SGao Xiang 		erofs_err(inode->i_sb, "failed to read, err [%d]", err);
135547e4937aSGao Xiang 
135647e4937aSGao Xiang 	if (f.map.mpage)
135747e4937aSGao Xiang 		put_page(f.map.mpage);
135847e4937aSGao Xiang 
135947e4937aSGao Xiang 	/* clean up the remaining free pages */
136047e4937aSGao Xiang 	put_pages_list(&pagepool);
136147e4937aSGao Xiang 	return err;
136247e4937aSGao Xiang }
136347e4937aSGao Xiang 
136447e4937aSGao Xiang static bool should_decompress_synchronously(struct erofs_sb_info *sbi,
136547e4937aSGao Xiang 					    unsigned int nr)
136647e4937aSGao Xiang {
136747e4937aSGao Xiang 	return nr <= sbi->max_sync_decompress_pages;
136847e4937aSGao Xiang }
136947e4937aSGao Xiang 
137047e4937aSGao Xiang static int z_erofs_vle_normalaccess_readpages(struct file *filp,
137147e4937aSGao Xiang 					      struct address_space *mapping,
137247e4937aSGao Xiang 					      struct list_head *pages,
137347e4937aSGao Xiang 					      unsigned int nr_pages)
137447e4937aSGao Xiang {
137547e4937aSGao Xiang 	struct inode *const inode = mapping->host;
137647e4937aSGao Xiang 	struct erofs_sb_info *const sbi = EROFS_I_SB(inode);
137747e4937aSGao Xiang 
137847e4937aSGao Xiang 	bool sync = should_decompress_synchronously(sbi, nr_pages);
137947e4937aSGao Xiang 	struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode);
138047e4937aSGao Xiang 	gfp_t gfp = mapping_gfp_constraint(mapping, GFP_KERNEL);
138147e4937aSGao Xiang 	struct page *head = NULL;
138247e4937aSGao Xiang 	LIST_HEAD(pagepool);
138347e4937aSGao Xiang 
138447e4937aSGao Xiang 	trace_erofs_readpages(mapping->host, lru_to_page(pages),
138547e4937aSGao Xiang 			      nr_pages, false);
138647e4937aSGao Xiang 
138747e4937aSGao Xiang 	f.headoffset = (erofs_off_t)lru_to_page(pages)->index << PAGE_SHIFT;
138847e4937aSGao Xiang 
138947e4937aSGao Xiang 	for (; nr_pages; --nr_pages) {
139047e4937aSGao Xiang 		struct page *page = lru_to_page(pages);
139147e4937aSGao Xiang 
139247e4937aSGao Xiang 		prefetchw(&page->flags);
139347e4937aSGao Xiang 		list_del(&page->lru);
139447e4937aSGao Xiang 
139547e4937aSGao Xiang 		/*
139647e4937aSGao Xiang 		 * A pure asynchronous readahead is indicated if
139747e4937aSGao Xiang 		 * a PG_readahead marked page is hitted at first.
139847e4937aSGao Xiang 		 * Let's also do asynchronous decompression for this case.
139947e4937aSGao Xiang 		 */
140047e4937aSGao Xiang 		sync &= !(PageReadahead(page) && !head);
140147e4937aSGao Xiang 
140247e4937aSGao Xiang 		if (add_to_page_cache_lru(page, mapping, page->index, gfp)) {
140347e4937aSGao Xiang 			list_add(&page->lru, &pagepool);
140447e4937aSGao Xiang 			continue;
140547e4937aSGao Xiang 		}
140647e4937aSGao Xiang 
140747e4937aSGao Xiang 		set_page_private(page, (unsigned long)head);
140847e4937aSGao Xiang 		head = page;
140947e4937aSGao Xiang 	}
141047e4937aSGao Xiang 
141147e4937aSGao Xiang 	while (head) {
141247e4937aSGao Xiang 		struct page *page = head;
141347e4937aSGao Xiang 		int err;
141447e4937aSGao Xiang 
141547e4937aSGao Xiang 		/* traversal in reverse order */
141647e4937aSGao Xiang 		head = (void *)page_private(page);
141747e4937aSGao Xiang 
141847e4937aSGao Xiang 		err = z_erofs_do_read_page(&f, page, &pagepool);
1419a5876e24SGao Xiang 		if (err)
14204f761fa2SGao Xiang 			erofs_err(inode->i_sb,
14214f761fa2SGao Xiang 				  "readahead error at page %lu @ nid %llu",
14224f761fa2SGao Xiang 				  page->index, EROFS_I(inode)->nid);
142347e4937aSGao Xiang 		put_page(page);
142447e4937aSGao Xiang 	}
142547e4937aSGao Xiang 
142647e4937aSGao Xiang 	(void)z_erofs_collector_end(&f.clt);
142747e4937aSGao Xiang 
142847e4937aSGao Xiang 	z_erofs_submit_and_unzip(inode->i_sb, &f.clt, &pagepool, sync);
142947e4937aSGao Xiang 
143047e4937aSGao Xiang 	if (f.map.mpage)
143147e4937aSGao Xiang 		put_page(f.map.mpage);
143247e4937aSGao Xiang 
143347e4937aSGao Xiang 	/* clean up the remaining free pages */
143447e4937aSGao Xiang 	put_pages_list(&pagepool);
143547e4937aSGao Xiang 	return 0;
143647e4937aSGao Xiang }
143747e4937aSGao Xiang 
143847e4937aSGao Xiang const struct address_space_operations z_erofs_vle_normalaccess_aops = {
143947e4937aSGao Xiang 	.readpage = z_erofs_vle_normalaccess_readpage,
144047e4937aSGao Xiang 	.readpages = z_erofs_vle_normalaccess_readpages,
144147e4937aSGao Xiang };
144247e4937aSGao Xiang 
1443