1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2018 HUAWEI, Inc.
4 * http://www.huawei.com/
9 #include <linux/prefetch.h>
11 #include <trace/events/erofs.h>
14 * a compressed_pages[] placeholder in order to avoid
15 * being filled with file pages for in-place decompression.
17 #define PAGE_UNALLOCATED ((void *)0x5F0E4B1D)
19 /* how to allocate cached pages for a pcluster */
20 enum z_erofs_cache_alloctype {
21 DONTALLOC, /* don't allocate any cached pages */
22 DELAYEDALLOC, /* delayed allocation (at the time of submitting io) */
26 * tagged pointer with 1-bit tag for all compressed pages
27 * tag 0 - the page is just found with an extra page reference
29 typedef tagptr1_t compressed_page_t;
31 #define tag_compressed_page_justfound(page) \
32 tagptr_fold(compressed_page_t, page, 1)
34 static struct workqueue_struct *z_erofs_workqueue __read_mostly;
35 static struct kmem_cache *pcluster_cachep __read_mostly;
37 void z_erofs_exit_zip_subsystem(void)
39 destroy_workqueue(z_erofs_workqueue);
40 kmem_cache_destroy(pcluster_cachep);
43 static inline int z_erofs_init_workqueue(void)
45 const unsigned int onlinecpus = num_possible_cpus();
46 const unsigned int flags = WQ_UNBOUND | WQ_HIGHPRI | WQ_CPU_INTENSIVE;
49 * no need to spawn too many threads, limiting threads could minimum
50 * scheduling overhead, perhaps per-CPU threads should be better?
52 z_erofs_workqueue = alloc_workqueue("erofs_unzipd", flags,
53 onlinecpus + onlinecpus / 4);
54 return z_erofs_workqueue ? 0 : -ENOMEM;
57 static void z_erofs_pcluster_init_once(void *ptr)
59 struct z_erofs_pcluster *pcl = ptr;
60 struct z_erofs_collection *cl = z_erofs_primarycollection(pcl);
63 mutex_init(&cl->lock);
66 for (i = 0; i < Z_EROFS_CLUSTER_MAX_PAGES; ++i)
67 pcl->compressed_pages[i] = NULL;
70 static void z_erofs_pcluster_init_always(struct z_erofs_pcluster *pcl)
72 struct z_erofs_collection *cl = z_erofs_primarycollection(pcl);
74 atomic_set(&pcl->obj.refcount, 1);
76 DBG_BUGON(cl->nr_pages);
80 int __init z_erofs_init_zip_subsystem(void)
82 pcluster_cachep = kmem_cache_create("erofs_compress",
83 Z_EROFS_WORKGROUP_SIZE, 0,
85 z_erofs_pcluster_init_once);
86 if (pcluster_cachep) {
87 if (!z_erofs_init_workqueue())
90 kmem_cache_destroy(pcluster_cachep);
95 enum z_erofs_collectmode {
99 * The current collection was the tail of an exist chain, in addition
100 * that the previous processed chained collections are all decided to
101 * be hooked up to it.
102 * A new chain will be created for the remaining collections which are
103 * not processed yet, therefore different from COLLECT_PRIMARY_FOLLOWED,
104 * the next collection cannot reuse the whole page safely in
105 * the following scenario:
106 * ________________________________________________________________
107 * | tail (partial) page | head (partial) page |
108 * | (belongs to the next cl) | (belongs to the current cl) |
109 * |_______PRIMARY_FOLLOWED_______|________PRIMARY_HOOKED___________|
111 COLLECT_PRIMARY_HOOKED,
112 COLLECT_PRIMARY_FOLLOWED_NOINPLACE,
114 * The current collection has been linked with the owned chain, and
115 * could also be linked with the remaining collections, which means
116 * if the processing page is the tail page of the collection, thus
117 * the current collection can safely use the whole page (since
118 * the previous collection is under control) for in-place I/O, as
120 * ________________________________________________________________
121 * | tail (partial) page | head (partial) page |
122 * | (of the current cl) | (of the previous collection) |
123 * | PRIMARY_FOLLOWED or | |
124 * |_____PRIMARY_HOOKED___|____________PRIMARY_FOLLOWED____________|
126 * [ (*) the above page can be used as inplace I/O. ]
128 COLLECT_PRIMARY_FOLLOWED,
131 struct z_erofs_collector {
132 struct z_erofs_pagevec_ctor vector;
134 struct z_erofs_pcluster *pcl, *tailpcl;
135 struct z_erofs_collection *cl;
136 struct page **compressedpages;
137 z_erofs_next_pcluster_t owned_head;
139 enum z_erofs_collectmode mode;
142 struct z_erofs_decompress_frontend {
143 struct inode *const inode;
145 struct z_erofs_collector clt;
146 struct erofs_map_blocks map;
148 /* used for applying cache strategy on the fly */
150 erofs_off_t headoffset;
153 #define COLLECTOR_INIT() { \
154 .owned_head = Z_EROFS_PCLUSTER_TAIL, \
155 .mode = COLLECT_PRIMARY_FOLLOWED }
157 #define DECOMPRESS_FRONTEND_INIT(__i) { \
158 .inode = __i, .clt = COLLECTOR_INIT(), \
161 static struct page *z_pagemap_global[Z_EROFS_VMAP_GLOBAL_PAGES];
162 static DEFINE_MUTEX(z_pagemap_global_lock);
164 static void preload_compressed_pages(struct z_erofs_collector *clt,
165 struct address_space *mc,
166 enum z_erofs_cache_alloctype type,
167 struct list_head *pagepool)
169 const struct z_erofs_pcluster *pcl = clt->pcl;
170 const unsigned int clusterpages = BIT(pcl->clusterbits);
171 struct page **pages = clt->compressedpages;
172 pgoff_t index = pcl->obj.index + (pages - pcl->compressed_pages);
173 bool standalone = true;
175 if (clt->mode < COLLECT_PRIMARY_FOLLOWED)
178 for (; pages < pcl->compressed_pages + clusterpages; ++pages) {
182 /* the compressed page was loaded before */
183 if (READ_ONCE(*pages))
186 page = find_get_page(mc, index);
189 t = tag_compressed_page_justfound(page);
190 } else if (type == DELAYEDALLOC) {
191 t = tagptr_init(compressed_page_t, PAGE_UNALLOCATED);
192 } else { /* DONTALLOC */
194 clt->compressedpages = pages;
199 if (!cmpxchg_relaxed(pages, NULL, tagptr_cast_ptr(t)))
206 if (standalone) /* downgrade to PRIMARY_FOLLOWED_NOINPLACE */
207 clt->mode = COLLECT_PRIMARY_FOLLOWED_NOINPLACE;
210 /* called by erofs_shrinker to get rid of all compressed_pages */
211 int erofs_try_to_free_all_cached_pages(struct erofs_sb_info *sbi,
212 struct erofs_workgroup *grp)
214 struct z_erofs_pcluster *const pcl =
215 container_of(grp, struct z_erofs_pcluster, obj);
216 struct address_space *const mapping = MNGD_MAPPING(sbi);
217 const unsigned int clusterpages = BIT(pcl->clusterbits);
221 * refcount of workgroup is now freezed as 1,
222 * therefore no need to worry about available decompression users.
224 for (i = 0; i < clusterpages; ++i) {
225 struct page *page = pcl->compressed_pages[i];
230 /* block other users from reclaiming or migrating the page */
231 if (!trylock_page(page))
234 if (page->mapping != mapping)
237 /* barrier is implied in the following 'unlock_page' */
238 WRITE_ONCE(pcl->compressed_pages[i], NULL);
239 set_page_private(page, 0);
240 ClearPagePrivate(page);
248 int erofs_try_to_free_cached_page(struct address_space *mapping,
251 struct z_erofs_pcluster *const pcl = (void *)page_private(page);
252 const unsigned int clusterpages = BIT(pcl->clusterbits);
253 int ret = 0; /* 0 - busy */
255 if (erofs_workgroup_try_to_freeze(&pcl->obj, 1)) {
258 for (i = 0; i < clusterpages; ++i) {
259 if (pcl->compressed_pages[i] == page) {
260 WRITE_ONCE(pcl->compressed_pages[i], NULL);
265 erofs_workgroup_unfreeze(&pcl->obj, 1);
268 ClearPagePrivate(page);
275 /* page_type must be Z_EROFS_PAGE_TYPE_EXCLUSIVE */
276 static inline bool z_erofs_try_inplace_io(struct z_erofs_collector *clt,
279 struct z_erofs_pcluster *const pcl = clt->pcl;
280 const unsigned int clusterpages = BIT(pcl->clusterbits);
282 while (clt->compressedpages < pcl->compressed_pages + clusterpages) {
283 if (!cmpxchg(clt->compressedpages++, NULL, page))
289 /* callers must be with collection lock held */
290 static int z_erofs_attach_page(struct z_erofs_collector *clt,
292 enum z_erofs_page_type type)
297 /* give priority for inplaceio */
298 if (clt->mode >= COLLECT_PRIMARY &&
299 type == Z_EROFS_PAGE_TYPE_EXCLUSIVE &&
300 z_erofs_try_inplace_io(clt, page))
303 ret = z_erofs_pagevec_enqueue(&clt->vector,
304 page, type, &occupied);
305 clt->cl->vcnt += (unsigned int)ret;
307 return ret ? 0 : -EAGAIN;
310 static enum z_erofs_collectmode
311 try_to_claim_pcluster(struct z_erofs_pcluster *pcl,
312 z_erofs_next_pcluster_t *owned_head)
314 /* let's claim these following types of pclusters */
316 if (pcl->next == Z_EROFS_PCLUSTER_NIL) {
317 /* type 1, nil pcluster */
318 if (cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_NIL,
319 *owned_head) != Z_EROFS_PCLUSTER_NIL)
322 *owned_head = &pcl->next;
323 /* lucky, I am the followee :) */
324 return COLLECT_PRIMARY_FOLLOWED;
325 } else if (pcl->next == Z_EROFS_PCLUSTER_TAIL) {
327 * type 2, link to the end of a existing open chain,
328 * be careful that its submission itself is governed
329 * by the original owned chain.
331 if (cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_TAIL,
332 *owned_head) != Z_EROFS_PCLUSTER_TAIL)
334 *owned_head = Z_EROFS_PCLUSTER_TAIL;
335 return COLLECT_PRIMARY_HOOKED;
337 return COLLECT_PRIMARY; /* :( better luck next time */
340 static int z_erofs_lookup_collection(struct z_erofs_collector *clt,
342 struct erofs_map_blocks *map)
344 struct erofs_workgroup *grp;
345 struct z_erofs_pcluster *pcl;
346 struct z_erofs_collection *cl;
350 grp = erofs_find_workgroup(inode->i_sb, map->m_pa >> PAGE_SHIFT, &tag);
354 pcl = container_of(grp, struct z_erofs_pcluster, obj);
355 if (clt->owned_head == &pcl->next || pcl == clt->tailpcl) {
357 erofs_workgroup_put(grp);
358 return -EFSCORRUPTED;
361 cl = z_erofs_primarycollection(pcl);
362 if (cl->pageofs != (map->m_la & ~PAGE_MASK)) {
364 erofs_workgroup_put(grp);
365 return -EFSCORRUPTED;
368 length = READ_ONCE(pcl->length);
369 if (length & Z_EROFS_PCLUSTER_FULL_LENGTH) {
370 if ((map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT) > length) {
372 erofs_workgroup_put(grp);
373 return -EFSCORRUPTED;
376 unsigned int llen = map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT;
378 if (map->m_flags & EROFS_MAP_FULL_MAPPED)
379 llen |= Z_EROFS_PCLUSTER_FULL_LENGTH;
381 while (llen > length &&
382 length != cmpxchg_relaxed(&pcl->length, length, llen)) {
384 length = READ_ONCE(pcl->length);
387 mutex_lock(&cl->lock);
388 /* used to check tail merging loop due to corrupted images */
389 if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
391 clt->mode = try_to_claim_pcluster(pcl, &clt->owned_head);
392 /* clean tailpcl if the current owned_head is Z_EROFS_PCLUSTER_TAIL */
393 if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
400 static int z_erofs_register_collection(struct z_erofs_collector *clt,
402 struct erofs_map_blocks *map)
404 struct z_erofs_pcluster *pcl;
405 struct z_erofs_collection *cl;
408 /* no available workgroup, let's allocate one */
409 pcl = kmem_cache_alloc(pcluster_cachep, GFP_NOFS);
413 z_erofs_pcluster_init_always(pcl);
414 pcl->obj.index = map->m_pa >> PAGE_SHIFT;
416 pcl->length = (map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT) |
417 (map->m_flags & EROFS_MAP_FULL_MAPPED ?
418 Z_EROFS_PCLUSTER_FULL_LENGTH : 0);
420 if (map->m_flags & EROFS_MAP_ZIPPED)
421 pcl->algorithmformat = Z_EROFS_COMPRESSION_LZ4;
423 pcl->algorithmformat = Z_EROFS_COMPRESSION_SHIFTED;
425 pcl->clusterbits = EROFS_I(inode)->z_physical_clusterbits[0];
426 pcl->clusterbits -= PAGE_SHIFT;
428 /* new pclusters should be claimed as type 1, primary and followed */
429 pcl->next = clt->owned_head;
430 clt->mode = COLLECT_PRIMARY_FOLLOWED;
432 cl = z_erofs_primarycollection(pcl);
433 cl->pageofs = map->m_la & ~PAGE_MASK;
436 * lock all primary followed works before visible to others
437 * and mutex_trylock *never* fails for a new pcluster.
439 mutex_trylock(&cl->lock);
441 err = erofs_register_workgroup(inode->i_sb, &pcl->obj, 0);
443 mutex_unlock(&cl->lock);
444 kmem_cache_free(pcluster_cachep, pcl);
447 /* used to check tail merging loop due to corrupted images */
448 if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
450 clt->owned_head = &pcl->next;
456 static int z_erofs_collector_begin(struct z_erofs_collector *clt,
458 struct erofs_map_blocks *map)
464 /* must be Z_EROFS_PCLUSTER_TAIL or pointed to previous collection */
465 DBG_BUGON(clt->owned_head == Z_EROFS_PCLUSTER_NIL);
466 DBG_BUGON(clt->owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
468 if (!PAGE_ALIGNED(map->m_pa)) {
474 ret = z_erofs_lookup_collection(clt, inode, map);
475 if (ret == -ENOENT) {
476 ret = z_erofs_register_collection(clt, inode, map);
478 /* someone registered at the same time, give another try */
479 if (ret == -EAGAIN) {
488 z_erofs_pagevec_ctor_init(&clt->vector, Z_EROFS_NR_INLINE_PAGEVECS,
489 clt->cl->pagevec, clt->cl->vcnt);
491 clt->compressedpages = clt->pcl->compressed_pages;
492 if (clt->mode <= COLLECT_PRIMARY) /* cannot do in-place I/O */
493 clt->compressedpages += Z_EROFS_CLUSTER_MAX_PAGES;
498 * keep in mind that no referenced pclusters will be freed
499 * only after a RCU grace period.
501 static void z_erofs_rcu_callback(struct rcu_head *head)
503 struct z_erofs_collection *const cl =
504 container_of(head, struct z_erofs_collection, rcu);
506 kmem_cache_free(pcluster_cachep,
507 container_of(cl, struct z_erofs_pcluster,
508 primary_collection));
511 void erofs_workgroup_free_rcu(struct erofs_workgroup *grp)
513 struct z_erofs_pcluster *const pcl =
514 container_of(grp, struct z_erofs_pcluster, obj);
515 struct z_erofs_collection *const cl = z_erofs_primarycollection(pcl);
517 call_rcu(&cl->rcu, z_erofs_rcu_callback);
520 static void z_erofs_collection_put(struct z_erofs_collection *cl)
522 struct z_erofs_pcluster *const pcl =
523 container_of(cl, struct z_erofs_pcluster, primary_collection);
525 erofs_workgroup_put(&pcl->obj);
528 static bool z_erofs_collector_end(struct z_erofs_collector *clt)
530 struct z_erofs_collection *cl = clt->cl;
535 z_erofs_pagevec_ctor_exit(&clt->vector, false);
536 mutex_unlock(&cl->lock);
539 * if all pending pages are added, don't hold its reference
540 * any longer if the pcluster isn't hosted by ourselves.
542 if (clt->mode < COLLECT_PRIMARY_FOLLOWED_NOINPLACE)
543 z_erofs_collection_put(cl);
549 static bool should_alloc_managed_pages(struct z_erofs_decompress_frontend *fe,
550 unsigned int cachestrategy,
553 if (cachestrategy <= EROFS_ZIP_CACHE_DISABLED)
559 return cachestrategy >= EROFS_ZIP_CACHE_READAROUND &&
563 static int z_erofs_do_read_page(struct z_erofs_decompress_frontend *fe,
565 struct list_head *pagepool)
567 struct inode *const inode = fe->inode;
568 struct erofs_sb_info *const sbi = EROFS_I_SB(inode);
569 struct erofs_map_blocks *const map = &fe->map;
570 struct z_erofs_collector *const clt = &fe->clt;
571 const loff_t offset = page_offset(page);
574 enum z_erofs_cache_alloctype cache_strategy;
575 enum z_erofs_page_type page_type;
576 unsigned int cur, end, spiltted, index;
579 /* register locked file pages as online pages in pack */
580 z_erofs_onlinepage_init(page);
587 /* lucky, within the range of the current map_blocks */
588 if (offset + cur >= map->m_la &&
589 offset + cur < map->m_la + map->m_llen) {
590 /* didn't get a valid collection previously (very rare) */
596 /* go ahead the next map_blocks */
597 erofs_dbg("%s: [out-of-range] pos %llu", __func__, offset + cur);
599 if (z_erofs_collector_end(clt))
600 fe->backmost = false;
602 map->m_la = offset + cur;
604 err = z_erofs_map_blocks_iter(inode, map, 0);
609 if (!(map->m_flags & EROFS_MAP_MAPPED))
612 err = z_erofs_collector_begin(clt, inode, map);
616 /* preload all compressed pages (maybe downgrade role if necessary) */
617 if (should_alloc_managed_pages(fe, sbi->cache_strategy, map->m_la))
618 cache_strategy = DELAYEDALLOC;
620 cache_strategy = DONTALLOC;
622 preload_compressed_pages(clt, MNGD_MAPPING(sbi),
623 cache_strategy, pagepool);
627 * Ensure the current partial page belongs to this submit chain rather
628 * than other concurrent submit chains or the noio(bypass) chain since
629 * those chains are handled asynchronously thus the page cannot be used
630 * for inplace I/O or pagevec (should be processed in strict order.)
632 tight &= (clt->mode >= COLLECT_PRIMARY_HOOKED &&
633 clt->mode != COLLECT_PRIMARY_FOLLOWED_NOINPLACE);
635 cur = end - min_t(unsigned int, offset + end - map->m_la, end);
636 if (!(map->m_flags & EROFS_MAP_MAPPED)) {
637 zero_user_segment(page, cur, end);
641 /* let's derive page type */
642 page_type = cur ? Z_EROFS_VLE_PAGE_TYPE_HEAD :
643 (!spiltted ? Z_EROFS_PAGE_TYPE_EXCLUSIVE :
644 (tight ? Z_EROFS_PAGE_TYPE_EXCLUSIVE :
645 Z_EROFS_VLE_PAGE_TYPE_TAIL_SHARED));
648 tight &= (clt->mode >= COLLECT_PRIMARY_FOLLOWED);
651 err = z_erofs_attach_page(clt, page, page_type);
652 /* should allocate an additional staging page for pagevec */
653 if (err == -EAGAIN) {
654 struct page *const newpage =
655 erofs_allocpage(pagepool, GFP_NOFS | __GFP_NOFAIL);
657 newpage->mapping = Z_EROFS_MAPPING_STAGING;
658 err = z_erofs_attach_page(clt, newpage,
659 Z_EROFS_PAGE_TYPE_EXCLUSIVE);
667 index = page->index - (map->m_la >> PAGE_SHIFT);
669 z_erofs_onlinepage_fixup(page, index, true);
671 /* bump up the number of spiltted parts of a page */
673 /* also update nr_pages */
674 clt->cl->nr_pages = max_t(pgoff_t, clt->cl->nr_pages, index + 1);
676 /* can be used for verification */
677 map->m_llen = offset + cur - map->m_la;
684 z_erofs_onlinepage_endio(page);
686 erofs_dbg("%s, finish page: %pK spiltted: %u map->m_llen %llu",
687 __func__, page, spiltted, map->m_llen);
690 /* if some error occurred while processing this page */
696 static void z_erofs_decompress_kickoff(struct z_erofs_decompressqueue *io,
699 /* wake up the caller thread for sync decompression */
703 spin_lock_irqsave(&io->u.wait.lock, flags);
704 if (!atomic_add_return(bios, &io->pending_bios))
705 wake_up_locked(&io->u.wait);
706 spin_unlock_irqrestore(&io->u.wait.lock, flags);
710 if (!atomic_add_return(bios, &io->pending_bios))
711 queue_work(z_erofs_workqueue, &io->u.work);
714 static void z_erofs_decompressqueue_endio(struct bio *bio)
716 tagptr1_t t = tagptr_init(tagptr1_t, bio->bi_private);
717 struct z_erofs_decompressqueue *q = tagptr_unfold_ptr(t);
718 blk_status_t err = bio->bi_status;
719 struct bio_vec *bvec;
720 struct bvec_iter_all iter_all;
722 bio_for_each_segment_all(bvec, bio, iter_all) {
723 struct page *page = bvec->bv_page;
725 DBG_BUGON(PageUptodate(page));
726 DBG_BUGON(!page->mapping);
731 if (erofs_page_is_managed(EROFS_SB(q->sb), page)) {
733 SetPageUptodate(page);
737 z_erofs_decompress_kickoff(q, tagptr_unfold_tags(t), -1);
741 static int z_erofs_decompress_pcluster(struct super_block *sb,
742 struct z_erofs_pcluster *pcl,
743 struct list_head *pagepool)
745 struct erofs_sb_info *const sbi = EROFS_SB(sb);
746 const unsigned int clusterpages = BIT(pcl->clusterbits);
747 struct z_erofs_pagevec_ctor ctor;
748 unsigned int i, outputsize, llen, nr_pages;
749 struct page *pages_onstack[Z_EROFS_VMAP_ONSTACK_PAGES];
750 struct page **pages, **compressed_pages, *page;
752 enum z_erofs_page_type page_type;
753 bool overlapped, partial;
754 struct z_erofs_collection *cl;
758 cl = z_erofs_primarycollection(pcl);
759 DBG_BUGON(!READ_ONCE(cl->nr_pages));
761 mutex_lock(&cl->lock);
762 nr_pages = cl->nr_pages;
764 if (nr_pages <= Z_EROFS_VMAP_ONSTACK_PAGES) {
765 pages = pages_onstack;
766 } else if (nr_pages <= Z_EROFS_VMAP_GLOBAL_PAGES &&
767 mutex_trylock(&z_pagemap_global_lock)) {
768 pages = z_pagemap_global;
770 gfp_t gfp_flags = GFP_KERNEL;
772 if (nr_pages > Z_EROFS_VMAP_GLOBAL_PAGES)
773 gfp_flags |= __GFP_NOFAIL;
775 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
778 /* fallback to global pagemap for the lowmem scenario */
780 mutex_lock(&z_pagemap_global_lock);
781 pages = z_pagemap_global;
785 for (i = 0; i < nr_pages; ++i)
789 z_erofs_pagevec_ctor_init(&ctor, Z_EROFS_NR_INLINE_PAGEVECS,
792 for (i = 0; i < cl->vcnt; ++i) {
795 page = z_erofs_pagevec_dequeue(&ctor, &page_type);
797 /* all pages in pagevec ought to be valid */
799 DBG_BUGON(!page->mapping);
801 if (z_erofs_put_stagingpage(pagepool, page))
804 if (page_type == Z_EROFS_VLE_PAGE_TYPE_HEAD)
807 pagenr = z_erofs_onlinepage_index(page);
809 DBG_BUGON(pagenr >= nr_pages);
812 * currently EROFS doesn't support multiref(dedup),
813 * so here erroring out one multiref page.
817 SetPageError(pages[pagenr]);
818 z_erofs_onlinepage_endio(pages[pagenr]);
821 pages[pagenr] = page;
823 z_erofs_pagevec_ctor_exit(&ctor, true);
826 compressed_pages = pcl->compressed_pages;
828 for (i = 0; i < clusterpages; ++i) {
831 page = compressed_pages[i];
833 /* all compressed pages ought to be valid */
835 DBG_BUGON(!page->mapping);
837 if (!z_erofs_page_is_staging(page)) {
838 if (erofs_page_is_managed(sbi, page)) {
839 if (!PageUptodate(page))
845 * only if non-head page can be selected
846 * for inplace decompression
848 pagenr = z_erofs_onlinepage_index(page);
850 DBG_BUGON(pagenr >= nr_pages);
853 SetPageError(pages[pagenr]);
854 z_erofs_onlinepage_endio(pages[pagenr]);
857 pages[pagenr] = page;
862 /* PG_error needs checking for inplaced and staging pages */
863 if (PageError(page)) {
864 DBG_BUGON(PageUptodate(page));
872 llen = pcl->length >> Z_EROFS_PCLUSTER_LENGTH_BIT;
873 if (nr_pages << PAGE_SHIFT >= cl->pageofs + llen) {
875 partial = !(pcl->length & Z_EROFS_PCLUSTER_FULL_LENGTH);
877 outputsize = (nr_pages << PAGE_SHIFT) - cl->pageofs;
881 err = z_erofs_decompress(&(struct z_erofs_decompress_req) {
883 .in = compressed_pages,
885 .pageofs_out = cl->pageofs,
886 .inputsize = PAGE_SIZE,
887 .outputsize = outputsize,
888 .alg = pcl->algorithmformat,
889 .inplace_io = overlapped,
890 .partial_decoding = partial
894 /* must handle all compressed pages before endding pages */
895 for (i = 0; i < clusterpages; ++i) {
896 page = compressed_pages[i];
898 if (erofs_page_is_managed(sbi, page))
901 /* recycle all individual staging pages */
902 (void)z_erofs_put_stagingpage(pagepool, page);
904 WRITE_ONCE(compressed_pages[i], NULL);
907 for (i = 0; i < nr_pages; ++i) {
912 DBG_BUGON(!page->mapping);
914 /* recycle all individual staging pages */
915 if (z_erofs_put_stagingpage(pagepool, page))
921 z_erofs_onlinepage_endio(page);
924 if (pages == z_pagemap_global)
925 mutex_unlock(&z_pagemap_global_lock);
926 else if (pages != pages_onstack)
932 /* all cl locks MUST be taken before the following line */
933 WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_NIL);
935 /* all cl locks SHOULD be released right now */
936 mutex_unlock(&cl->lock);
938 z_erofs_collection_put(cl);
942 static void z_erofs_decompress_queue(const struct z_erofs_decompressqueue *io,
943 struct list_head *pagepool)
945 z_erofs_next_pcluster_t owned = io->head;
947 while (owned != Z_EROFS_PCLUSTER_TAIL_CLOSED) {
948 struct z_erofs_pcluster *pcl;
950 /* no possible that 'owned' equals Z_EROFS_WORK_TPTR_TAIL */
951 DBG_BUGON(owned == Z_EROFS_PCLUSTER_TAIL);
953 /* no possible that 'owned' equals NULL */
954 DBG_BUGON(owned == Z_EROFS_PCLUSTER_NIL);
956 pcl = container_of(owned, struct z_erofs_pcluster, next);
957 owned = READ_ONCE(pcl->next);
959 z_erofs_decompress_pcluster(io->sb, pcl, pagepool);
963 static void z_erofs_decompressqueue_work(struct work_struct *work)
965 struct z_erofs_decompressqueue *bgq =
966 container_of(work, struct z_erofs_decompressqueue, u.work);
969 DBG_BUGON(bgq->head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
970 z_erofs_decompress_queue(bgq, &pagepool);
972 put_pages_list(&pagepool);
976 static struct page *pickup_page_for_submission(struct z_erofs_pcluster *pcl,
978 struct list_head *pagepool,
979 struct address_space *mc,
982 const pgoff_t index = pcl->obj.index;
983 bool tocache = false;
985 struct address_space *mapping;
986 struct page *oldpage, *page;
992 page = READ_ONCE(pcl->compressed_pages[nr]);
999 * the cached page has not been allocated and
1000 * an placeholder is out there, prepare it now.
1002 if (page == PAGE_UNALLOCATED) {
1007 /* process the target tagged pointer */
1008 t = tagptr_init(compressed_page_t, page);
1009 justfound = tagptr_unfold_tags(t);
1010 page = tagptr_unfold_ptr(t);
1012 mapping = READ_ONCE(page->mapping);
1015 * unmanaged (file) pages are all locked solidly,
1016 * therefore it is impossible for `mapping' to be NULL.
1018 if (mapping && mapping != mc)
1019 /* ought to be unmanaged pages */
1024 /* only true if page reclaim goes wrong, should never happen */
1025 DBG_BUGON(justfound && PagePrivate(page));
1027 /* the page is still in manage cache */
1028 if (page->mapping == mc) {
1029 WRITE_ONCE(pcl->compressed_pages[nr], page);
1031 ClearPageError(page);
1032 if (!PagePrivate(page)) {
1034 * impossible to be !PagePrivate(page) for
1035 * the current restriction as well if
1036 * the page is already in compressed_pages[].
1038 DBG_BUGON(!justfound);
1041 set_page_private(page, (unsigned long)pcl);
1042 SetPagePrivate(page);
1045 /* no need to submit io if it is already up-to-date */
1046 if (PageUptodate(page)) {
1054 * the managed page has been truncated, it's unsafe to
1055 * reuse this one, let's allocate a new cache-managed page.
1057 DBG_BUGON(page->mapping);
1058 DBG_BUGON(!justfound);
1064 page = erofs_allocpage(pagepool, gfp | __GFP_NOFAIL);
1065 if (!tocache || add_to_page_cache_lru(page, mc, index + nr, gfp)) {
1066 /* non-LRU / non-movable temporary page is needed */
1067 page->mapping = Z_EROFS_MAPPING_STAGING;
1071 if (oldpage != cmpxchg(&pcl->compressed_pages[nr], oldpage, page)) {
1073 /* since it added to managed cache successfully */
1077 list_add(&page->lru, pagepool);
1082 set_page_private(page, (unsigned long)pcl);
1083 SetPagePrivate(page);
1084 out: /* the only exit (for tracing and debugging) */
1088 static struct z_erofs_decompressqueue *
1089 jobqueue_init(struct super_block *sb,
1090 struct z_erofs_decompressqueue *fgq, bool *fg)
1092 struct z_erofs_decompressqueue *q;
1095 q = kvzalloc(sizeof(*q), GFP_KERNEL | __GFP_NOWARN);
1100 INIT_WORK(&q->u.work, z_erofs_decompressqueue_work);
1104 init_waitqueue_head(&fgq->u.wait);
1105 atomic_set(&fgq->pending_bios, 0);
1108 q->head = Z_EROFS_PCLUSTER_TAIL_CLOSED;
1112 /* define decompression jobqueue types */
1119 static void *jobqueueset_init(struct super_block *sb,
1120 struct z_erofs_decompressqueue *q[],
1121 struct z_erofs_decompressqueue *fgq, bool *fg)
1124 * if managed cache is enabled, bypass jobqueue is needed,
1125 * no need to read from device for all pclusters in this queue.
1127 q[JQ_BYPASS] = jobqueue_init(sb, fgq + JQ_BYPASS, NULL);
1128 q[JQ_SUBMIT] = jobqueue_init(sb, fgq + JQ_SUBMIT, fg);
1130 return tagptr_cast_ptr(tagptr_fold(tagptr1_t, q[JQ_SUBMIT], *fg));
1133 static void move_to_bypass_jobqueue(struct z_erofs_pcluster *pcl,
1134 z_erofs_next_pcluster_t qtail[],
1135 z_erofs_next_pcluster_t owned_head)
1137 z_erofs_next_pcluster_t *const submit_qtail = qtail[JQ_SUBMIT];
1138 z_erofs_next_pcluster_t *const bypass_qtail = qtail[JQ_BYPASS];
1140 DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
1141 if (owned_head == Z_EROFS_PCLUSTER_TAIL)
1142 owned_head = Z_EROFS_PCLUSTER_TAIL_CLOSED;
1144 WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_TAIL_CLOSED);
1146 WRITE_ONCE(*submit_qtail, owned_head);
1147 WRITE_ONCE(*bypass_qtail, &pcl->next);
1149 qtail[JQ_BYPASS] = &pcl->next;
1152 static bool postsubmit_is_all_bypassed(struct z_erofs_decompressqueue *q[],
1153 unsigned int nr_bios, bool force_fg)
1156 * although background is preferred, no one is pending for submission.
1157 * don't issue workqueue for decompression but drop it directly instead.
1159 if (force_fg || nr_bios)
1162 kvfree(q[JQ_SUBMIT]);
1166 static bool z_erofs_submit_queue(struct super_block *sb,
1167 z_erofs_next_pcluster_t owned_head,
1168 struct list_head *pagepool,
1169 struct z_erofs_decompressqueue *fgq,
1172 struct erofs_sb_info *const sbi = EROFS_SB(sb);
1173 z_erofs_next_pcluster_t qtail[NR_JOBQUEUES];
1174 struct z_erofs_decompressqueue *q[NR_JOBQUEUES];
1177 /* since bio will be NULL, no need to initialize last_index */
1178 pgoff_t uninitialized_var(last_index);
1179 bool force_submit = false;
1180 unsigned int nr_bios;
1182 if (owned_head == Z_EROFS_PCLUSTER_TAIL)
1185 force_submit = false;
1188 bi_private = jobqueueset_init(sb, q, fgq, force_fg);
1189 qtail[JQ_BYPASS] = &q[JQ_BYPASS]->head;
1190 qtail[JQ_SUBMIT] = &q[JQ_SUBMIT]->head;
1192 /* by default, all need io submission */
1193 q[JQ_SUBMIT]->head = owned_head;
1196 struct z_erofs_pcluster *pcl;
1197 unsigned int clusterpages;
1198 pgoff_t first_index;
1200 unsigned int i = 0, bypass = 0;
1203 /* no possible 'owned_head' equals the following */
1204 DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
1205 DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_NIL);
1207 pcl = container_of(owned_head, struct z_erofs_pcluster, next);
1209 clusterpages = BIT(pcl->clusterbits);
1211 /* close the main owned chain at first */
1212 owned_head = cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_TAIL,
1213 Z_EROFS_PCLUSTER_TAIL_CLOSED);
1215 first_index = pcl->obj.index;
1216 force_submit |= (first_index != last_index + 1);
1219 page = pickup_page_for_submission(pcl, i, pagepool,
1223 force_submit = true;
1228 if (bio && force_submit) {
1235 bio = bio_alloc(GFP_NOIO, BIO_MAX_PAGES);
1237 bio->bi_end_io = z_erofs_decompressqueue_endio;
1238 bio_set_dev(bio, sb->s_bdev);
1239 bio->bi_iter.bi_sector = (sector_t)(first_index + i) <<
1240 LOG_SECTORS_PER_BLOCK;
1241 bio->bi_private = bi_private;
1242 bio->bi_opf = REQ_OP_READ;
1247 err = bio_add_page(bio, page, PAGE_SIZE, 0);
1248 if (err < PAGE_SIZE)
1249 goto submit_bio_retry;
1251 force_submit = false;
1252 last_index = first_index + i;
1254 if (++i < clusterpages)
1257 if (bypass < clusterpages)
1258 qtail[JQ_SUBMIT] = &pcl->next;
1260 move_to_bypass_jobqueue(pcl, qtail, owned_head);
1261 } while (owned_head != Z_EROFS_PCLUSTER_TAIL);
1266 if (postsubmit_is_all_bypassed(q, nr_bios, *force_fg))
1269 z_erofs_decompress_kickoff(q[JQ_SUBMIT], *force_fg, nr_bios);
1273 static void z_erofs_runqueue(struct super_block *sb,
1274 struct z_erofs_collector *clt,
1275 struct list_head *pagepool, bool force_fg)
1277 struct z_erofs_decompressqueue io[NR_JOBQUEUES];
1279 if (!z_erofs_submit_queue(sb, clt->owned_head,
1280 pagepool, io, &force_fg))
1283 /* handle bypass queue (no i/o pclusters) immediately */
1284 z_erofs_decompress_queue(&io[JQ_BYPASS], pagepool);
1289 /* wait until all bios are completed */
1290 io_wait_event(io[JQ_SUBMIT].u.wait,
1291 !atomic_read(&io[JQ_SUBMIT].pending_bios));
1293 /* handle synchronous decompress queue in the caller context */
1294 z_erofs_decompress_queue(&io[JQ_SUBMIT], pagepool);
1297 static int z_erofs_readpage(struct file *file, struct page *page)
1299 struct inode *const inode = page->mapping->host;
1300 struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode);
1302 LIST_HEAD(pagepool);
1304 trace_erofs_readpage(page, false);
1306 f.headoffset = (erofs_off_t)page->index << PAGE_SHIFT;
1308 err = z_erofs_do_read_page(&f, page, &pagepool);
1309 (void)z_erofs_collector_end(&f.clt);
1311 /* if some compressed cluster ready, need submit them anyway */
1312 z_erofs_runqueue(inode->i_sb, &f.clt, &pagepool, true);
1315 erofs_err(inode->i_sb, "failed to read, err [%d]", err);
1318 put_page(f.map.mpage);
1320 /* clean up the remaining free pages */
1321 put_pages_list(&pagepool);
1325 static bool should_decompress_synchronously(struct erofs_sb_info *sbi,
1328 return nr <= sbi->max_sync_decompress_pages;
1331 static int z_erofs_readpages(struct file *filp, struct address_space *mapping,
1332 struct list_head *pages, unsigned int nr_pages)
1334 struct inode *const inode = mapping->host;
1335 struct erofs_sb_info *const sbi = EROFS_I_SB(inode);
1337 bool sync = should_decompress_synchronously(sbi, nr_pages);
1338 struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode);
1339 gfp_t gfp = mapping_gfp_constraint(mapping, GFP_KERNEL);
1340 struct page *head = NULL;
1341 LIST_HEAD(pagepool);
1343 trace_erofs_readpages(mapping->host, lru_to_page(pages),
1346 f.headoffset = (erofs_off_t)lru_to_page(pages)->index << PAGE_SHIFT;
1348 for (; nr_pages; --nr_pages) {
1349 struct page *page = lru_to_page(pages);
1351 prefetchw(&page->flags);
1352 list_del(&page->lru);
1355 * A pure asynchronous readahead is indicated if
1356 * a PG_readahead marked page is hitted at first.
1357 * Let's also do asynchronous decompression for this case.
1359 sync &= !(PageReadahead(page) && !head);
1361 if (add_to_page_cache_lru(page, mapping, page->index, gfp)) {
1362 list_add(&page->lru, &pagepool);
1366 set_page_private(page, (unsigned long)head);
1371 struct page *page = head;
1374 /* traversal in reverse order */
1375 head = (void *)page_private(page);
1377 err = z_erofs_do_read_page(&f, page, &pagepool);
1379 erofs_err(inode->i_sb,
1380 "readahead error at page %lu @ nid %llu",
1381 page->index, EROFS_I(inode)->nid);
1385 (void)z_erofs_collector_end(&f.clt);
1387 z_erofs_runqueue(inode->i_sb, &f.clt, &pagepool, sync);
1390 put_page(f.map.mpage);
1392 /* clean up the remaining free pages */
1393 put_pages_list(&pagepool);
1397 const struct address_space_operations z_erofs_aops = {
1398 .readpage = z_erofs_readpage,
1399 .readpages = z_erofs_readpages,