1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2018 HUAWEI, Inc.
4 * https://www.huawei.com/
8 #include <linux/prefetch.h>
10 #include <trace/events/erofs.h>
13 * since pclustersize is variable for big pcluster feature, introduce slab
14 * pools implementation for different pcluster sizes.
16 struct z_erofs_pcluster_slab {
17 struct kmem_cache *slab;
18 unsigned int maxpages;
22 #define _PCLP(n) { .maxpages = n }
24 static struct z_erofs_pcluster_slab pcluster_pool[] __read_mostly = {
25 _PCLP(1), _PCLP(4), _PCLP(16), _PCLP(64), _PCLP(128),
26 _PCLP(Z_EROFS_PCLUSTER_MAX_PAGES)
29 static void z_erofs_destroy_pcluster_pool(void)
33 for (i = 0; i < ARRAY_SIZE(pcluster_pool); ++i) {
34 if (!pcluster_pool[i].slab)
36 kmem_cache_destroy(pcluster_pool[i].slab);
37 pcluster_pool[i].slab = NULL;
41 static int z_erofs_create_pcluster_pool(void)
43 struct z_erofs_pcluster_slab *pcs;
44 struct z_erofs_pcluster *a;
47 for (pcs = pcluster_pool;
48 pcs < pcluster_pool + ARRAY_SIZE(pcluster_pool); ++pcs) {
49 size = struct_size(a, compressed_pages, pcs->maxpages);
51 sprintf(pcs->name, "erofs_pcluster-%u", pcs->maxpages);
52 pcs->slab = kmem_cache_create(pcs->name, size, 0,
53 SLAB_RECLAIM_ACCOUNT, NULL);
57 z_erofs_destroy_pcluster_pool();
63 static struct z_erofs_pcluster *z_erofs_alloc_pcluster(unsigned int nrpages)
67 for (i = 0; i < ARRAY_SIZE(pcluster_pool); ++i) {
68 struct z_erofs_pcluster_slab *pcs = pcluster_pool + i;
69 struct z_erofs_pcluster *pcl;
71 if (nrpages > pcs->maxpages)
74 pcl = kmem_cache_zalloc(pcs->slab, GFP_NOFS);
76 return ERR_PTR(-ENOMEM);
77 pcl->pclusterpages = nrpages;
80 return ERR_PTR(-EINVAL);
83 static void z_erofs_free_pcluster(struct z_erofs_pcluster *pcl)
87 for (i = 0; i < ARRAY_SIZE(pcluster_pool); ++i) {
88 struct z_erofs_pcluster_slab *pcs = pcluster_pool + i;
90 if (pcl->pclusterpages > pcs->maxpages)
93 kmem_cache_free(pcs->slab, pcl);
100 * a compressed_pages[] placeholder in order to avoid
101 * being filled with file pages for in-place decompression.
103 #define PAGE_UNALLOCATED ((void *)0x5F0E4B1D)
105 /* how to allocate cached pages for a pcluster */
106 enum z_erofs_cache_alloctype {
107 DONTALLOC, /* don't allocate any cached pages */
108 DELAYEDALLOC, /* delayed allocation (at the time of submitting io) */
110 * try to use cached I/O if page allocation succeeds or fallback
111 * to in-place I/O instead to avoid any direct reclaim.
117 * tagged pointer with 1-bit tag for all compressed pages
118 * tag 0 - the page is just found with an extra page reference
120 typedef tagptr1_t compressed_page_t;
122 #define tag_compressed_page_justfound(page) \
123 tagptr_fold(compressed_page_t, page, 1)
125 static struct workqueue_struct *z_erofs_workqueue __read_mostly;
127 void z_erofs_exit_zip_subsystem(void)
129 destroy_workqueue(z_erofs_workqueue);
130 z_erofs_destroy_pcluster_pool();
133 static inline int z_erofs_init_workqueue(void)
135 const unsigned int onlinecpus = num_possible_cpus();
138 * no need to spawn too many threads, limiting threads could minimum
139 * scheduling overhead, perhaps per-CPU threads should be better?
141 z_erofs_workqueue = alloc_workqueue("erofs_unzipd",
142 WQ_UNBOUND | WQ_HIGHPRI,
143 onlinecpus + onlinecpus / 4);
144 return z_erofs_workqueue ? 0 : -ENOMEM;
147 int __init z_erofs_init_zip_subsystem(void)
149 int err = z_erofs_create_pcluster_pool();
153 err = z_erofs_init_workqueue();
155 z_erofs_destroy_pcluster_pool();
159 enum z_erofs_collectmode {
163 * The current collection was the tail of an exist chain, in addition
164 * that the previous processed chained collections are all decided to
165 * be hooked up to it.
166 * A new chain will be created for the remaining collections which are
167 * not processed yet, therefore different from COLLECT_PRIMARY_FOLLOWED,
168 * the next collection cannot reuse the whole page safely in
169 * the following scenario:
170 * ________________________________________________________________
171 * | tail (partial) page | head (partial) page |
172 * | (belongs to the next cl) | (belongs to the current cl) |
173 * |_______PRIMARY_FOLLOWED_______|________PRIMARY_HOOKED___________|
175 COLLECT_PRIMARY_HOOKED,
177 * a weak form of COLLECT_PRIMARY_FOLLOWED, the difference is that it
178 * could be dispatched into bypass queue later due to uptodated managed
179 * pages. All related online pages cannot be reused for inplace I/O (or
180 * pagevec) since it can be directly decoded without I/O submission.
182 COLLECT_PRIMARY_FOLLOWED_NOINPLACE,
184 * The current collection has been linked with the owned chain, and
185 * could also be linked with the remaining collections, which means
186 * if the processing page is the tail page of the collection, thus
187 * the current collection can safely use the whole page (since
188 * the previous collection is under control) for in-place I/O, as
190 * ________________________________________________________________
191 * | tail (partial) page | head (partial) page |
192 * | (of the current cl) | (of the previous collection) |
193 * | PRIMARY_FOLLOWED or | |
194 * |_____PRIMARY_HOOKED___|____________PRIMARY_FOLLOWED____________|
196 * [ (*) the above page can be used as inplace I/O. ]
198 COLLECT_PRIMARY_FOLLOWED,
201 struct z_erofs_collector {
202 struct z_erofs_pagevec_ctor vector;
204 struct z_erofs_pcluster *pcl, *tailpcl;
205 struct z_erofs_collection *cl;
206 /* a pointer used to pick up inplace I/O pages */
207 struct page **icpage_ptr;
208 z_erofs_next_pcluster_t owned_head;
210 enum z_erofs_collectmode mode;
213 struct z_erofs_decompress_frontend {
214 struct inode *const inode;
216 struct z_erofs_collector clt;
217 struct erofs_map_blocks map;
220 /* used for applying cache strategy on the fly */
222 erofs_off_t headoffset;
225 #define COLLECTOR_INIT() { \
226 .owned_head = Z_EROFS_PCLUSTER_TAIL, \
227 .mode = COLLECT_PRIMARY_FOLLOWED }
229 #define DECOMPRESS_FRONTEND_INIT(__i) { \
230 .inode = __i, .clt = COLLECTOR_INIT(), \
233 static struct page *z_pagemap_global[Z_EROFS_VMAP_GLOBAL_PAGES];
234 static DEFINE_MUTEX(z_pagemap_global_lock);
236 static void preload_compressed_pages(struct z_erofs_collector *clt,
237 struct address_space *mc,
238 enum z_erofs_cache_alloctype type,
239 struct list_head *pagepool)
241 struct z_erofs_pcluster *pcl = clt->pcl;
242 bool standalone = true;
243 gfp_t gfp = (mapping_gfp_mask(mc) & ~__GFP_DIRECT_RECLAIM) |
244 __GFP_NOMEMALLOC | __GFP_NORETRY | __GFP_NOWARN;
248 if (clt->mode < COLLECT_PRIMARY_FOLLOWED)
251 pages = pcl->compressed_pages;
252 index = pcl->obj.index;
253 for (; index < pcl->obj.index + pcl->pclusterpages; ++index, ++pages) {
256 struct page *newpage = NULL;
258 /* the compressed page was loaded before */
259 if (READ_ONCE(*pages))
262 page = find_get_page(mc, index);
265 t = tag_compressed_page_justfound(page);
267 /* I/O is needed, no possible to decompress directly */
271 t = tagptr_init(compressed_page_t,
275 newpage = erofs_allocpage(pagepool, gfp);
278 set_page_private(newpage,
279 Z_EROFS_PREALLOCATED_PAGE);
280 t = tag_compressed_page_justfound(newpage);
282 default: /* DONTALLOC */
287 if (!cmpxchg_relaxed(pages, NULL, tagptr_cast_ptr(t)))
292 } else if (newpage) {
293 set_page_private(newpage, 0);
294 list_add(&newpage->lru, pagepool);
299 * don't do inplace I/O if all compressed pages are available in
300 * managed cache since it can be moved to the bypass queue instead.
303 clt->mode = COLLECT_PRIMARY_FOLLOWED_NOINPLACE;
306 /* called by erofs_shrinker to get rid of all compressed_pages */
307 int erofs_try_to_free_all_cached_pages(struct erofs_sb_info *sbi,
308 struct erofs_workgroup *grp)
310 struct z_erofs_pcluster *const pcl =
311 container_of(grp, struct z_erofs_pcluster, obj);
315 * refcount of workgroup is now freezed as 1,
316 * therefore no need to worry about available decompression users.
318 for (i = 0; i < pcl->pclusterpages; ++i) {
319 struct page *page = pcl->compressed_pages[i];
324 /* block other users from reclaiming or migrating the page */
325 if (!trylock_page(page))
328 if (!erofs_page_is_managed(sbi, page))
331 /* barrier is implied in the following 'unlock_page' */
332 WRITE_ONCE(pcl->compressed_pages[i], NULL);
333 detach_page_private(page);
339 int erofs_try_to_free_cached_page(struct page *page)
341 struct z_erofs_pcluster *const pcl = (void *)page_private(page);
342 int ret = 0; /* 0 - busy */
344 if (erofs_workgroup_try_to_freeze(&pcl->obj, 1)) {
347 for (i = 0; i < pcl->pclusterpages; ++i) {
348 if (pcl->compressed_pages[i] == page) {
349 WRITE_ONCE(pcl->compressed_pages[i], NULL);
354 erofs_workgroup_unfreeze(&pcl->obj, 1);
357 detach_page_private(page);
362 /* page_type must be Z_EROFS_PAGE_TYPE_EXCLUSIVE */
363 static bool z_erofs_try_inplace_io(struct z_erofs_collector *clt,
366 struct z_erofs_pcluster *const pcl = clt->pcl;
368 while (clt->icpage_ptr > pcl->compressed_pages)
369 if (!cmpxchg(--clt->icpage_ptr, NULL, page))
374 /* callers must be with collection lock held */
375 static int z_erofs_attach_page(struct z_erofs_collector *clt,
377 enum z_erofs_page_type type)
381 /* give priority for inplaceio */
382 if (clt->mode >= COLLECT_PRIMARY &&
383 type == Z_EROFS_PAGE_TYPE_EXCLUSIVE &&
384 z_erofs_try_inplace_io(clt, page))
387 ret = z_erofs_pagevec_enqueue(&clt->vector, page, type);
388 clt->cl->vcnt += (unsigned int)ret;
390 return ret ? 0 : -EAGAIN;
393 static void z_erofs_try_to_claim_pcluster(struct z_erofs_collector *clt)
395 struct z_erofs_pcluster *pcl = clt->pcl;
396 z_erofs_next_pcluster_t *owned_head = &clt->owned_head;
398 /* type 1, nil pcluster (this pcluster doesn't belong to any chain.) */
399 if (cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_NIL,
400 *owned_head) == Z_EROFS_PCLUSTER_NIL) {
401 *owned_head = &pcl->next;
402 /* so we can attach this pcluster to our submission chain. */
403 clt->mode = COLLECT_PRIMARY_FOLLOWED;
408 * type 2, link to the end of an existing open chain, be careful
409 * that its submission is controlled by the original attached chain.
411 if (cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_TAIL,
412 *owned_head) == Z_EROFS_PCLUSTER_TAIL) {
413 *owned_head = Z_EROFS_PCLUSTER_TAIL;
414 clt->mode = COLLECT_PRIMARY_HOOKED;
418 /* type 3, it belongs to a chain, but it isn't the end of the chain */
419 clt->mode = COLLECT_PRIMARY;
422 static int z_erofs_lookup_collection(struct z_erofs_collector *clt,
424 struct erofs_map_blocks *map)
426 struct z_erofs_pcluster *pcl = clt->pcl;
427 struct z_erofs_collection *cl;
430 /* to avoid unexpected loop formed by corrupted images */
431 if (clt->owned_head == &pcl->next || pcl == clt->tailpcl) {
433 return -EFSCORRUPTED;
436 cl = z_erofs_primarycollection(pcl);
437 if (cl->pageofs != (map->m_la & ~PAGE_MASK)) {
439 return -EFSCORRUPTED;
442 length = READ_ONCE(pcl->length);
443 if (length & Z_EROFS_PCLUSTER_FULL_LENGTH) {
444 if ((map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT) > length) {
446 return -EFSCORRUPTED;
449 unsigned int llen = map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT;
451 if (map->m_flags & EROFS_MAP_FULL_MAPPED)
452 llen |= Z_EROFS_PCLUSTER_FULL_LENGTH;
454 while (llen > length &&
455 length != cmpxchg_relaxed(&pcl->length, length, llen)) {
457 length = READ_ONCE(pcl->length);
460 mutex_lock(&cl->lock);
461 /* used to check tail merging loop due to corrupted images */
462 if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
465 z_erofs_try_to_claim_pcluster(clt);
470 static int z_erofs_register_collection(struct z_erofs_collector *clt,
472 struct erofs_map_blocks *map)
474 struct z_erofs_pcluster *pcl;
475 struct z_erofs_collection *cl;
476 struct erofs_workgroup *grp;
479 /* no available pcluster, let's allocate one */
480 pcl = z_erofs_alloc_pcluster(map->m_plen >> PAGE_SHIFT);
484 atomic_set(&pcl->obj.refcount, 1);
485 pcl->obj.index = map->m_pa >> PAGE_SHIFT;
487 pcl->length = (map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT) |
488 (map->m_flags & EROFS_MAP_FULL_MAPPED ?
489 Z_EROFS_PCLUSTER_FULL_LENGTH : 0);
491 if (map->m_flags & EROFS_MAP_ZIPPED)
492 pcl->algorithmformat = Z_EROFS_COMPRESSION_LZ4;
494 pcl->algorithmformat = Z_EROFS_COMPRESSION_SHIFTED;
496 /* new pclusters should be claimed as type 1, primary and followed */
497 pcl->next = clt->owned_head;
498 clt->mode = COLLECT_PRIMARY_FOLLOWED;
500 cl = z_erofs_primarycollection(pcl);
501 cl->pageofs = map->m_la & ~PAGE_MASK;
504 * lock all primary followed works before visible to others
505 * and mutex_trylock *never* fails for a new pcluster.
507 mutex_init(&cl->lock);
508 DBG_BUGON(!mutex_trylock(&cl->lock));
510 grp = erofs_insert_workgroup(inode->i_sb, &pcl->obj);
516 if (grp != &pcl->obj) {
517 clt->pcl = container_of(grp, struct z_erofs_pcluster, obj);
521 /* used to check tail merging loop due to corrupted images */
522 if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
524 clt->owned_head = &pcl->next;
530 mutex_unlock(&cl->lock);
531 z_erofs_free_pcluster(pcl);
535 static int z_erofs_collector_begin(struct z_erofs_collector *clt,
537 struct erofs_map_blocks *map)
539 struct erofs_workgroup *grp;
544 /* must be Z_EROFS_PCLUSTER_TAIL or pointed to previous collection */
545 DBG_BUGON(clt->owned_head == Z_EROFS_PCLUSTER_NIL);
546 DBG_BUGON(clt->owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
548 if (!PAGE_ALIGNED(map->m_pa)) {
553 grp = erofs_find_workgroup(inode->i_sb, map->m_pa >> PAGE_SHIFT);
555 clt->pcl = container_of(grp, struct z_erofs_pcluster, obj);
557 ret = z_erofs_register_collection(clt, inode, map);
565 ret = z_erofs_lookup_collection(clt, inode, map);
567 erofs_workgroup_put(&clt->pcl->obj);
572 z_erofs_pagevec_ctor_init(&clt->vector, Z_EROFS_NR_INLINE_PAGEVECS,
573 clt->cl->pagevec, clt->cl->vcnt);
575 /* since file-backed online pages are traversed in reverse order */
576 clt->icpage_ptr = clt->pcl->compressed_pages + clt->pcl->pclusterpages;
581 * keep in mind that no referenced pclusters will be freed
582 * only after a RCU grace period.
584 static void z_erofs_rcu_callback(struct rcu_head *head)
586 struct z_erofs_collection *const cl =
587 container_of(head, struct z_erofs_collection, rcu);
589 z_erofs_free_pcluster(container_of(cl, struct z_erofs_pcluster,
590 primary_collection));
593 void erofs_workgroup_free_rcu(struct erofs_workgroup *grp)
595 struct z_erofs_pcluster *const pcl =
596 container_of(grp, struct z_erofs_pcluster, obj);
597 struct z_erofs_collection *const cl = z_erofs_primarycollection(pcl);
599 call_rcu(&cl->rcu, z_erofs_rcu_callback);
602 static void z_erofs_collection_put(struct z_erofs_collection *cl)
604 struct z_erofs_pcluster *const pcl =
605 container_of(cl, struct z_erofs_pcluster, primary_collection);
607 erofs_workgroup_put(&pcl->obj);
610 static bool z_erofs_collector_end(struct z_erofs_collector *clt)
612 struct z_erofs_collection *cl = clt->cl;
617 z_erofs_pagevec_ctor_exit(&clt->vector, false);
618 mutex_unlock(&cl->lock);
621 * if all pending pages are added, don't hold its reference
622 * any longer if the pcluster isn't hosted by ourselves.
624 if (clt->mode < COLLECT_PRIMARY_FOLLOWED_NOINPLACE)
625 z_erofs_collection_put(cl);
631 static bool should_alloc_managed_pages(struct z_erofs_decompress_frontend *fe,
632 unsigned int cachestrategy,
635 if (cachestrategy <= EROFS_ZIP_CACHE_DISABLED)
641 return cachestrategy >= EROFS_ZIP_CACHE_READAROUND &&
645 static int z_erofs_do_read_page(struct z_erofs_decompress_frontend *fe,
646 struct page *page, struct list_head *pagepool)
648 struct inode *const inode = fe->inode;
649 struct erofs_sb_info *const sbi = EROFS_I_SB(inode);
650 struct erofs_map_blocks *const map = &fe->map;
651 struct z_erofs_collector *const clt = &fe->clt;
652 const loff_t offset = page_offset(page);
655 enum z_erofs_cache_alloctype cache_strategy;
656 enum z_erofs_page_type page_type;
657 unsigned int cur, end, spiltted, index;
660 /* register locked file pages as online pages in pack */
661 z_erofs_onlinepage_init(page);
668 /* lucky, within the range of the current map_blocks */
669 if (offset + cur >= map->m_la &&
670 offset + cur < map->m_la + map->m_llen) {
671 /* didn't get a valid collection previously (very rare) */
677 /* go ahead the next map_blocks */
678 erofs_dbg("%s: [out-of-range] pos %llu", __func__, offset + cur);
680 if (z_erofs_collector_end(clt))
681 fe->backmost = false;
683 map->m_la = offset + cur;
685 err = z_erofs_map_blocks_iter(inode, map, 0);
690 if (!(map->m_flags & EROFS_MAP_MAPPED))
693 err = z_erofs_collector_begin(clt, inode, map);
697 /* preload all compressed pages (maybe downgrade role if necessary) */
698 if (should_alloc_managed_pages(fe, sbi->ctx.cache_strategy, map->m_la))
699 cache_strategy = TRYALLOC;
701 cache_strategy = DONTALLOC;
703 preload_compressed_pages(clt, MNGD_MAPPING(sbi),
704 cache_strategy, pagepool);
708 * Ensure the current partial page belongs to this submit chain rather
709 * than other concurrent submit chains or the noio(bypass) chain since
710 * those chains are handled asynchronously thus the page cannot be used
711 * for inplace I/O or pagevec (should be processed in strict order.)
713 tight &= (clt->mode >= COLLECT_PRIMARY_HOOKED &&
714 clt->mode != COLLECT_PRIMARY_FOLLOWED_NOINPLACE);
716 cur = end - min_t(unsigned int, offset + end - map->m_la, end);
717 if (!(map->m_flags & EROFS_MAP_MAPPED)) {
718 zero_user_segment(page, cur, end);
722 /* let's derive page type */
723 page_type = cur ? Z_EROFS_VLE_PAGE_TYPE_HEAD :
724 (!spiltted ? Z_EROFS_PAGE_TYPE_EXCLUSIVE :
725 (tight ? Z_EROFS_PAGE_TYPE_EXCLUSIVE :
726 Z_EROFS_VLE_PAGE_TYPE_TAIL_SHARED));
729 tight &= (clt->mode >= COLLECT_PRIMARY_FOLLOWED);
732 err = z_erofs_attach_page(clt, page, page_type);
733 /* should allocate an additional short-lived page for pagevec */
734 if (err == -EAGAIN) {
735 struct page *const newpage =
736 alloc_page(GFP_NOFS | __GFP_NOFAIL);
738 set_page_private(newpage, Z_EROFS_SHORTLIVED_PAGE);
739 err = z_erofs_attach_page(clt, newpage,
740 Z_EROFS_PAGE_TYPE_EXCLUSIVE);
748 index = page->index - (map->m_la >> PAGE_SHIFT);
750 z_erofs_onlinepage_fixup(page, index, true);
752 /* bump up the number of spiltted parts of a page */
754 /* also update nr_pages */
755 clt->cl->nr_pages = max_t(pgoff_t, clt->cl->nr_pages, index + 1);
757 /* can be used for verification */
758 map->m_llen = offset + cur - map->m_la;
765 z_erofs_onlinepage_endio(page);
767 erofs_dbg("%s, finish page: %pK spiltted: %u map->m_llen %llu",
768 __func__, page, spiltted, map->m_llen);
771 /* if some error occurred while processing this page */
777 static void z_erofs_decompressqueue_work(struct work_struct *work);
778 static void z_erofs_decompress_kickoff(struct z_erofs_decompressqueue *io,
781 struct erofs_sb_info *const sbi = EROFS_SB(io->sb);
783 /* wake up the caller thread for sync decompression */
787 spin_lock_irqsave(&io->u.wait.lock, flags);
788 if (!atomic_add_return(bios, &io->pending_bios))
789 wake_up_locked(&io->u.wait);
790 spin_unlock_irqrestore(&io->u.wait.lock, flags);
794 if (atomic_add_return(bios, &io->pending_bios))
796 /* Use workqueue and sync decompression for atomic contexts only */
797 if (in_atomic() || irqs_disabled()) {
798 queue_work(z_erofs_workqueue, &io->u.work);
799 sbi->ctx.readahead_sync_decompress = true;
802 z_erofs_decompressqueue_work(&io->u.work);
805 static bool z_erofs_page_is_invalidated(struct page *page)
807 return !page->mapping && !z_erofs_is_shortlived_page(page);
810 static void z_erofs_decompressqueue_endio(struct bio *bio)
812 tagptr1_t t = tagptr_init(tagptr1_t, bio->bi_private);
813 struct z_erofs_decompressqueue *q = tagptr_unfold_ptr(t);
814 blk_status_t err = bio->bi_status;
815 struct bio_vec *bvec;
816 struct bvec_iter_all iter_all;
818 bio_for_each_segment_all(bvec, bio, iter_all) {
819 struct page *page = bvec->bv_page;
821 DBG_BUGON(PageUptodate(page));
822 DBG_BUGON(z_erofs_page_is_invalidated(page));
827 if (erofs_page_is_managed(EROFS_SB(q->sb), page)) {
829 SetPageUptodate(page);
833 z_erofs_decompress_kickoff(q, tagptr_unfold_tags(t), -1);
837 static int z_erofs_decompress_pcluster(struct super_block *sb,
838 struct z_erofs_pcluster *pcl,
839 struct list_head *pagepool)
841 struct erofs_sb_info *const sbi = EROFS_SB(sb);
842 struct z_erofs_pagevec_ctor ctor;
843 unsigned int i, inputsize, outputsize, llen, nr_pages;
844 struct page *pages_onstack[Z_EROFS_VMAP_ONSTACK_PAGES];
845 struct page **pages, **compressed_pages, *page;
847 enum z_erofs_page_type page_type;
848 bool overlapped, partial;
849 struct z_erofs_collection *cl;
853 cl = z_erofs_primarycollection(pcl);
854 DBG_BUGON(!READ_ONCE(cl->nr_pages));
856 mutex_lock(&cl->lock);
857 nr_pages = cl->nr_pages;
859 if (nr_pages <= Z_EROFS_VMAP_ONSTACK_PAGES) {
860 pages = pages_onstack;
861 } else if (nr_pages <= Z_EROFS_VMAP_GLOBAL_PAGES &&
862 mutex_trylock(&z_pagemap_global_lock)) {
863 pages = z_pagemap_global;
865 gfp_t gfp_flags = GFP_KERNEL;
867 if (nr_pages > Z_EROFS_VMAP_GLOBAL_PAGES)
868 gfp_flags |= __GFP_NOFAIL;
870 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
873 /* fallback to global pagemap for the lowmem scenario */
875 mutex_lock(&z_pagemap_global_lock);
876 pages = z_pagemap_global;
880 for (i = 0; i < nr_pages; ++i)
884 z_erofs_pagevec_ctor_init(&ctor, Z_EROFS_NR_INLINE_PAGEVECS,
887 for (i = 0; i < cl->vcnt; ++i) {
890 page = z_erofs_pagevec_dequeue(&ctor, &page_type);
892 /* all pages in pagevec ought to be valid */
894 DBG_BUGON(z_erofs_page_is_invalidated(page));
896 if (z_erofs_put_shortlivedpage(pagepool, page))
899 if (page_type == Z_EROFS_VLE_PAGE_TYPE_HEAD)
902 pagenr = z_erofs_onlinepage_index(page);
904 DBG_BUGON(pagenr >= nr_pages);
907 * currently EROFS doesn't support multiref(dedup),
908 * so here erroring out one multiref page.
912 SetPageError(pages[pagenr]);
913 z_erofs_onlinepage_endio(pages[pagenr]);
916 pages[pagenr] = page;
918 z_erofs_pagevec_ctor_exit(&ctor, true);
921 compressed_pages = pcl->compressed_pages;
923 for (i = 0; i < pcl->pclusterpages; ++i) {
926 page = compressed_pages[i];
928 /* all compressed pages ought to be valid */
930 DBG_BUGON(z_erofs_page_is_invalidated(page));
932 if (!z_erofs_is_shortlived_page(page)) {
933 if (erofs_page_is_managed(sbi, page)) {
934 if (!PageUptodate(page))
940 * only if non-head page can be selected
941 * for inplace decompression
943 pagenr = z_erofs_onlinepage_index(page);
945 DBG_BUGON(pagenr >= nr_pages);
948 SetPageError(pages[pagenr]);
949 z_erofs_onlinepage_endio(pages[pagenr]);
952 pages[pagenr] = page;
957 /* PG_error needs checking for all non-managed pages */
958 if (PageError(page)) {
959 DBG_BUGON(PageUptodate(page));
967 llen = pcl->length >> Z_EROFS_PCLUSTER_LENGTH_BIT;
968 if (nr_pages << PAGE_SHIFT >= cl->pageofs + llen) {
970 partial = !(pcl->length & Z_EROFS_PCLUSTER_FULL_LENGTH);
972 outputsize = (nr_pages << PAGE_SHIFT) - cl->pageofs;
976 inputsize = pcl->pclusterpages * PAGE_SIZE;
977 err = z_erofs_decompress(&(struct z_erofs_decompress_req) {
979 .in = compressed_pages,
981 .pageofs_out = cl->pageofs,
982 .inputsize = inputsize,
983 .outputsize = outputsize,
984 .alg = pcl->algorithmformat,
985 .inplace_io = overlapped,
986 .partial_decoding = partial
990 /* must handle all compressed pages before ending pages */
991 for (i = 0; i < pcl->pclusterpages; ++i) {
992 page = compressed_pages[i];
994 if (erofs_page_is_managed(sbi, page))
997 /* recycle all individual short-lived pages */
998 (void)z_erofs_put_shortlivedpage(pagepool, page);
1000 WRITE_ONCE(compressed_pages[i], NULL);
1003 for (i = 0; i < nr_pages; ++i) {
1008 DBG_BUGON(z_erofs_page_is_invalidated(page));
1010 /* recycle all individual short-lived pages */
1011 if (z_erofs_put_shortlivedpage(pagepool, page))
1017 z_erofs_onlinepage_endio(page);
1020 if (pages == z_pagemap_global)
1021 mutex_unlock(&z_pagemap_global_lock);
1022 else if (pages != pages_onstack)
1028 /* all cl locks MUST be taken before the following line */
1029 WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_NIL);
1031 /* all cl locks SHOULD be released right now */
1032 mutex_unlock(&cl->lock);
1034 z_erofs_collection_put(cl);
1038 static void z_erofs_decompress_queue(const struct z_erofs_decompressqueue *io,
1039 struct list_head *pagepool)
1041 z_erofs_next_pcluster_t owned = io->head;
1043 while (owned != Z_EROFS_PCLUSTER_TAIL_CLOSED) {
1044 struct z_erofs_pcluster *pcl;
1046 /* no possible that 'owned' equals Z_EROFS_WORK_TPTR_TAIL */
1047 DBG_BUGON(owned == Z_EROFS_PCLUSTER_TAIL);
1049 /* no possible that 'owned' equals NULL */
1050 DBG_BUGON(owned == Z_EROFS_PCLUSTER_NIL);
1052 pcl = container_of(owned, struct z_erofs_pcluster, next);
1053 owned = READ_ONCE(pcl->next);
1055 z_erofs_decompress_pcluster(io->sb, pcl, pagepool);
1059 static void z_erofs_decompressqueue_work(struct work_struct *work)
1061 struct z_erofs_decompressqueue *bgq =
1062 container_of(work, struct z_erofs_decompressqueue, u.work);
1063 LIST_HEAD(pagepool);
1065 DBG_BUGON(bgq->head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
1066 z_erofs_decompress_queue(bgq, &pagepool);
1068 put_pages_list(&pagepool);
1072 static struct page *pickup_page_for_submission(struct z_erofs_pcluster *pcl,
1074 struct list_head *pagepool,
1075 struct address_space *mc,
1078 const pgoff_t index = pcl->obj.index;
1079 bool tocache = false;
1081 struct address_space *mapping;
1082 struct page *oldpage, *page;
1084 compressed_page_t t;
1088 page = READ_ONCE(pcl->compressed_pages[nr]);
1095 * the cached page has not been allocated and
1096 * an placeholder is out there, prepare it now.
1098 if (page == PAGE_UNALLOCATED) {
1103 /* process the target tagged pointer */
1104 t = tagptr_init(compressed_page_t, page);
1105 justfound = tagptr_unfold_tags(t);
1106 page = tagptr_unfold_ptr(t);
1109 * preallocated cached pages, which is used to avoid direct reclaim
1110 * otherwise, it will go inplace I/O path instead.
1112 if (page->private == Z_EROFS_PREALLOCATED_PAGE) {
1113 WRITE_ONCE(pcl->compressed_pages[nr], page);
1114 set_page_private(page, 0);
1118 mapping = READ_ONCE(page->mapping);
1121 * file-backed online pages in plcuster are all locked steady,
1122 * therefore it is impossible for `mapping' to be NULL.
1124 if (mapping && mapping != mc)
1125 /* ought to be unmanaged pages */
1128 /* directly return for shortlived page as well */
1129 if (z_erofs_is_shortlived_page(page))
1134 /* only true if page reclaim goes wrong, should never happen */
1135 DBG_BUGON(justfound && PagePrivate(page));
1137 /* the page is still in manage cache */
1138 if (page->mapping == mc) {
1139 WRITE_ONCE(pcl->compressed_pages[nr], page);
1141 ClearPageError(page);
1142 if (!PagePrivate(page)) {
1144 * impossible to be !PagePrivate(page) for
1145 * the current restriction as well if
1146 * the page is already in compressed_pages[].
1148 DBG_BUGON(!justfound);
1151 set_page_private(page, (unsigned long)pcl);
1152 SetPagePrivate(page);
1155 /* no need to submit io if it is already up-to-date */
1156 if (PageUptodate(page)) {
1164 * the managed page has been truncated, it's unsafe to
1165 * reuse this one, let's allocate a new cache-managed page.
1167 DBG_BUGON(page->mapping);
1168 DBG_BUGON(!justfound);
1174 page = erofs_allocpage(pagepool, gfp | __GFP_NOFAIL);
1175 if (oldpage != cmpxchg(&pcl->compressed_pages[nr], oldpage, page)) {
1176 list_add(&page->lru, pagepool);
1181 if (!tocache || add_to_page_cache_lru(page, mc, index + nr, gfp)) {
1182 /* turn into temporary page if fails (1 ref) */
1183 set_page_private(page, Z_EROFS_SHORTLIVED_PAGE);
1186 attach_page_private(page, pcl);
1187 /* drop a refcount added by allocpage (then we have 2 refs here) */
1190 out: /* the only exit (for tracing and debugging) */
1194 static struct z_erofs_decompressqueue *
1195 jobqueue_init(struct super_block *sb,
1196 struct z_erofs_decompressqueue *fgq, bool *fg)
1198 struct z_erofs_decompressqueue *q;
1201 q = kvzalloc(sizeof(*q), GFP_KERNEL | __GFP_NOWARN);
1206 INIT_WORK(&q->u.work, z_erofs_decompressqueue_work);
1210 init_waitqueue_head(&fgq->u.wait);
1211 atomic_set(&fgq->pending_bios, 0);
1214 q->head = Z_EROFS_PCLUSTER_TAIL_CLOSED;
1218 /* define decompression jobqueue types */
1225 static void *jobqueueset_init(struct super_block *sb,
1226 struct z_erofs_decompressqueue *q[],
1227 struct z_erofs_decompressqueue *fgq, bool *fg)
1230 * if managed cache is enabled, bypass jobqueue is needed,
1231 * no need to read from device for all pclusters in this queue.
1233 q[JQ_BYPASS] = jobqueue_init(sb, fgq + JQ_BYPASS, NULL);
1234 q[JQ_SUBMIT] = jobqueue_init(sb, fgq + JQ_SUBMIT, fg);
1236 return tagptr_cast_ptr(tagptr_fold(tagptr1_t, q[JQ_SUBMIT], *fg));
1239 static void move_to_bypass_jobqueue(struct z_erofs_pcluster *pcl,
1240 z_erofs_next_pcluster_t qtail[],
1241 z_erofs_next_pcluster_t owned_head)
1243 z_erofs_next_pcluster_t *const submit_qtail = qtail[JQ_SUBMIT];
1244 z_erofs_next_pcluster_t *const bypass_qtail = qtail[JQ_BYPASS];
1246 DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
1247 if (owned_head == Z_EROFS_PCLUSTER_TAIL)
1248 owned_head = Z_EROFS_PCLUSTER_TAIL_CLOSED;
1250 WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_TAIL_CLOSED);
1252 WRITE_ONCE(*submit_qtail, owned_head);
1253 WRITE_ONCE(*bypass_qtail, &pcl->next);
1255 qtail[JQ_BYPASS] = &pcl->next;
1258 static void z_erofs_submit_queue(struct super_block *sb,
1259 struct z_erofs_decompress_frontend *f,
1260 struct list_head *pagepool,
1261 struct z_erofs_decompressqueue *fgq,
1264 struct erofs_sb_info *const sbi = EROFS_SB(sb);
1265 z_erofs_next_pcluster_t qtail[NR_JOBQUEUES];
1266 struct z_erofs_decompressqueue *q[NR_JOBQUEUES];
1268 z_erofs_next_pcluster_t owned_head = f->clt.owned_head;
1269 /* since bio will be NULL, no need to initialize last_index */
1271 unsigned int nr_bios = 0;
1272 struct bio *bio = NULL;
1274 bi_private = jobqueueset_init(sb, q, fgq, force_fg);
1275 qtail[JQ_BYPASS] = &q[JQ_BYPASS]->head;
1276 qtail[JQ_SUBMIT] = &q[JQ_SUBMIT]->head;
1278 /* by default, all need io submission */
1279 q[JQ_SUBMIT]->head = owned_head;
1282 struct z_erofs_pcluster *pcl;
1287 /* no possible 'owned_head' equals the following */
1288 DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
1289 DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_NIL);
1291 pcl = container_of(owned_head, struct z_erofs_pcluster, next);
1293 cur = pcl->obj.index;
1294 end = cur + pcl->pclusterpages;
1296 /* close the main owned chain at first */
1297 owned_head = cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_TAIL,
1298 Z_EROFS_PCLUSTER_TAIL_CLOSED);
1303 page = pickup_page_for_submission(pcl, i++, pagepool,
1309 if (bio && cur != last_index + 1) {
1316 bio = bio_alloc(GFP_NOIO, BIO_MAX_VECS);
1318 bio->bi_end_io = z_erofs_decompressqueue_endio;
1319 bio_set_dev(bio, sb->s_bdev);
1320 bio->bi_iter.bi_sector = (sector_t)cur <<
1321 LOG_SECTORS_PER_BLOCK;
1322 bio->bi_private = bi_private;
1323 bio->bi_opf = REQ_OP_READ;
1325 bio->bi_opf |= REQ_RAHEAD;
1329 if (bio_add_page(bio, page, PAGE_SIZE, 0) < PAGE_SIZE)
1330 goto submit_bio_retry;
1334 } while (++cur < end);
1337 qtail[JQ_SUBMIT] = &pcl->next;
1339 move_to_bypass_jobqueue(pcl, qtail, owned_head);
1340 } while (owned_head != Z_EROFS_PCLUSTER_TAIL);
1346 * although background is preferred, no one is pending for submission.
1347 * don't issue workqueue for decompression but drop it directly instead.
1349 if (!*force_fg && !nr_bios) {
1350 kvfree(q[JQ_SUBMIT]);
1353 z_erofs_decompress_kickoff(q[JQ_SUBMIT], *force_fg, nr_bios);
1356 static void z_erofs_runqueue(struct super_block *sb,
1357 struct z_erofs_decompress_frontend *f,
1358 struct list_head *pagepool, bool force_fg)
1360 struct z_erofs_decompressqueue io[NR_JOBQUEUES];
1362 if (f->clt.owned_head == Z_EROFS_PCLUSTER_TAIL)
1364 z_erofs_submit_queue(sb, f, pagepool, io, &force_fg);
1366 /* handle bypass queue (no i/o pclusters) immediately */
1367 z_erofs_decompress_queue(&io[JQ_BYPASS], pagepool);
1372 /* wait until all bios are completed */
1373 io_wait_event(io[JQ_SUBMIT].u.wait,
1374 !atomic_read(&io[JQ_SUBMIT].pending_bios));
1376 /* handle synchronous decompress queue in the caller context */
1377 z_erofs_decompress_queue(&io[JQ_SUBMIT], pagepool);
1380 static int z_erofs_readpage(struct file *file, struct page *page)
1382 struct inode *const inode = page->mapping->host;
1383 struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode);
1385 LIST_HEAD(pagepool);
1387 trace_erofs_readpage(page, false);
1389 f.headoffset = (erofs_off_t)page->index << PAGE_SHIFT;
1391 err = z_erofs_do_read_page(&f, page, &pagepool);
1392 (void)z_erofs_collector_end(&f.clt);
1394 /* if some compressed cluster ready, need submit them anyway */
1395 z_erofs_runqueue(inode->i_sb, &f, &pagepool, true);
1398 erofs_err(inode->i_sb, "failed to read, err [%d]", err);
1401 put_page(f.map.mpage);
1403 /* clean up the remaining free pages */
1404 put_pages_list(&pagepool);
1408 static void z_erofs_readahead(struct readahead_control *rac)
1410 struct inode *const inode = rac->mapping->host;
1411 struct erofs_sb_info *const sbi = EROFS_I_SB(inode);
1413 unsigned int nr_pages = readahead_count(rac);
1414 bool sync = (sbi->ctx.readahead_sync_decompress &&
1415 nr_pages <= sbi->ctx.max_sync_decompress_pages);
1416 struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode);
1417 struct page *page, *head = NULL;
1418 LIST_HEAD(pagepool);
1420 trace_erofs_readpages(inode, readahead_index(rac), nr_pages, false);
1423 f.headoffset = readahead_pos(rac);
1425 while ((page = readahead_page(rac))) {
1426 prefetchw(&page->flags);
1429 * A pure asynchronous readahead is indicated if
1430 * a PG_readahead marked page is hitted at first.
1431 * Let's also do asynchronous decompression for this case.
1433 sync &= !(PageReadahead(page) && !head);
1435 set_page_private(page, (unsigned long)head);
1440 struct page *page = head;
1443 /* traversal in reverse order */
1444 head = (void *)page_private(page);
1446 err = z_erofs_do_read_page(&f, page, &pagepool);
1448 erofs_err(inode->i_sb,
1449 "readahead error at page %lu @ nid %llu",
1450 page->index, EROFS_I(inode)->nid);
1454 (void)z_erofs_collector_end(&f.clt);
1456 z_erofs_runqueue(inode->i_sb, &f, &pagepool, sync);
1459 put_page(f.map.mpage);
1461 /* clean up the remaining free pages */
1462 put_pages_list(&pagepool);
1465 const struct address_space_operations z_erofs_aops = {
1466 .readpage = z_erofs_readpage,
1467 .readahead = z_erofs_readahead,