Gao Xiang | 29b24f6 | 2019-07-31 23:57:31 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Gao Xiang | 02827e1 | 2018-07-26 20:21:58 +0800 | [diff] [blame] | 2 | /* |
Gao Xiang | 02827e1 | 2018-07-26 20:21:58 +0800 | [diff] [blame] | 3 | * Copyright (C) 2018 HUAWEI, Inc. |
| 4 | * http://www.huawei.com/ |
| 5 | * Created by Gao Xiang <gaoxiang25@huawei.com> |
Gao Xiang | 02827e1 | 2018-07-26 20:21:58 +0800 | [diff] [blame] | 6 | */ |
Gao Xiang | 57b78c9 | 2019-07-31 23:57:32 +0800 | [diff] [blame] | 7 | #include "zdata.h" |
Gao Xiang | 2748123 | 2019-06-24 15:22:54 +0800 | [diff] [blame] | 8 | #include "compress.h" |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 9 | #include <linux/prefetch.h> |
| 10 | |
Chen Gong | 284db12 | 2018-09-18 22:27:27 +0800 | [diff] [blame] | 11 | #include <trace/events/erofs.h> |
| 12 | |
Gao Xiang | 672e547 | 2018-12-08 00:19:14 +0800 | [diff] [blame] | 13 | /* |
| 14 | * a compressed_pages[] placeholder in order to avoid |
| 15 | * being filled with file pages for in-place decompression. |
| 16 | */ |
| 17 | #define PAGE_UNALLOCATED ((void *)0x5F0E4B1D) |
| 18 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 19 | /* how to allocate cached pages for a pcluster */ |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 20 | enum z_erofs_cache_alloctype { |
| 21 | DONTALLOC, /* don't allocate any cached pages */ |
| 22 | DELAYEDALLOC, /* delayed allocation (at the time of submitting io) */ |
| 23 | }; |
| 24 | |
| 25 | /* |
| 26 | * tagged pointer with 1-bit tag for all compressed pages |
| 27 | * tag 0 - the page is just found with an extra page reference |
| 28 | */ |
| 29 | typedef tagptr1_t compressed_page_t; |
| 30 | |
| 31 | #define tag_compressed_page_justfound(page) \ |
| 32 | tagptr_fold(compressed_page_t, page, 1) |
| 33 | |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 34 | static struct workqueue_struct *z_erofs_workqueue __read_mostly; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 35 | static struct kmem_cache *pcluster_cachep __read_mostly; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 36 | |
| 37 | void z_erofs_exit_zip_subsystem(void) |
| 38 | { |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 39 | destroy_workqueue(z_erofs_workqueue); |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 40 | kmem_cache_destroy(pcluster_cachep); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 41 | } |
| 42 | |
Gao Xiang | 99634bf | 2019-09-04 10:09:05 +0800 | [diff] [blame] | 43 | static inline int z_erofs_init_workqueue(void) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 44 | { |
Thomas Weißschuh | 7dd68b1 | 2018-09-10 21:41:14 +0200 | [diff] [blame] | 45 | const unsigned int onlinecpus = num_possible_cpus(); |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 46 | const unsigned int flags = WQ_UNBOUND | WQ_HIGHPRI | WQ_CPU_INTENSIVE; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 47 | |
| 48 | /* |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 49 | * no need to spawn too many threads, limiting threads could minimum |
| 50 | * scheduling overhead, perhaps per-CPU threads should be better? |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 51 | */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 52 | z_erofs_workqueue = alloc_workqueue("erofs_unzipd", flags, |
| 53 | onlinecpus + onlinecpus / 4); |
Cristian Sicilia | 42d40b4 | 2018-11-12 21:43:57 +0100 | [diff] [blame] | 54 | return z_erofs_workqueue ? 0 : -ENOMEM; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 55 | } |
| 56 | |
Gao Xiang | 99634bf | 2019-09-04 10:09:05 +0800 | [diff] [blame] | 57 | static void z_erofs_pcluster_init_once(void *ptr) |
Gao Xiang | 48d4bf3 | 2018-11-23 01:21:46 +0800 | [diff] [blame] | 58 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 59 | struct z_erofs_pcluster *pcl = ptr; |
| 60 | struct z_erofs_collection *cl = z_erofs_primarycollection(pcl); |
Gao Xiang | 48d4bf3 | 2018-11-23 01:21:46 +0800 | [diff] [blame] | 61 | unsigned int i; |
| 62 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 63 | mutex_init(&cl->lock); |
| 64 | cl->nr_pages = 0; |
| 65 | cl->vcnt = 0; |
Gao Xiang | 48d4bf3 | 2018-11-23 01:21:46 +0800 | [diff] [blame] | 66 | for (i = 0; i < Z_EROFS_CLUSTER_MAX_PAGES; ++i) |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 67 | pcl->compressed_pages[i] = NULL; |
Gao Xiang | 48d4bf3 | 2018-11-23 01:21:46 +0800 | [diff] [blame] | 68 | } |
| 69 | |
Gao Xiang | 0a0b7e6 | 2018-10-09 21:43:53 +0800 | [diff] [blame] | 70 | int __init z_erofs_init_zip_subsystem(void) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 71 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 72 | pcluster_cachep = kmem_cache_create("erofs_compress", |
| 73 | Z_EROFS_WORKGROUP_SIZE, 0, |
Gao Xiang | 99634bf | 2019-09-04 10:09:05 +0800 | [diff] [blame] | 74 | SLAB_RECLAIM_ACCOUNT, |
| 75 | z_erofs_pcluster_init_once); |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 76 | if (pcluster_cachep) { |
Gao Xiang | 99634bf | 2019-09-04 10:09:05 +0800 | [diff] [blame] | 77 | if (!z_erofs_init_workqueue()) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 78 | return 0; |
| 79 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 80 | kmem_cache_destroy(pcluster_cachep); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 81 | } |
| 82 | return -ENOMEM; |
| 83 | } |
| 84 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 85 | enum z_erofs_collectmode { |
| 86 | COLLECT_SECONDARY, |
| 87 | COLLECT_PRIMARY, |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 88 | /* |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 89 | * The current collection was the tail of an exist chain, in addition |
| 90 | * that the previous processed chained collections are all decided to |
| 91 | * be hooked up to it. |
| 92 | * A new chain will be created for the remaining collections which are |
| 93 | * not processed yet, therefore different from COLLECT_PRIMARY_FOLLOWED, |
| 94 | * the next collection cannot reuse the whole page safely in |
| 95 | * the following scenario: |
Gao Xiang | a112152 | 2019-02-27 13:33:32 +0800 | [diff] [blame] | 96 | * ________________________________________________________________ |
| 97 | * | tail (partial) page | head (partial) page | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 98 | * | (belongs to the next cl) | (belongs to the current cl) | |
Gao Xiang | a112152 | 2019-02-27 13:33:32 +0800 | [diff] [blame] | 99 | * |_______PRIMARY_FOLLOWED_______|________PRIMARY_HOOKED___________| |
| 100 | */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 101 | COLLECT_PRIMARY_HOOKED, |
| 102 | COLLECT_PRIMARY_FOLLOWED_NOINPLACE, |
Gao Xiang | a112152 | 2019-02-27 13:33:32 +0800 | [diff] [blame] | 103 | /* |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 104 | * The current collection has been linked with the owned chain, and |
| 105 | * could also be linked with the remaining collections, which means |
| 106 | * if the processing page is the tail page of the collection, thus |
| 107 | * the current collection can safely use the whole page (since |
| 108 | * the previous collection is under control) for in-place I/O, as |
| 109 | * illustrated below: |
Gao Xiang | a112152 | 2019-02-27 13:33:32 +0800 | [diff] [blame] | 110 | * ________________________________________________________________ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 111 | * | tail (partial) page | head (partial) page | |
| 112 | * | (of the current cl) | (of the previous collection) | |
| 113 | * | PRIMARY_FOLLOWED or | | |
| 114 | * |_____PRIMARY_HOOKED___|____________PRIMARY_FOLLOWED____________| |
Gao Xiang | a112152 | 2019-02-27 13:33:32 +0800 | [diff] [blame] | 115 | * |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 116 | * [ (*) the above page can be used as inplace I/O. ] |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 117 | */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 118 | COLLECT_PRIMARY_FOLLOWED, |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 119 | }; |
| 120 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 121 | struct z_erofs_collector { |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 122 | struct z_erofs_pagevec_ctor vector; |
| 123 | |
Gao Xiang | bfc4ccb | 2019-08-21 11:09:08 +0800 | [diff] [blame] | 124 | struct z_erofs_pcluster *pcl, *tailpcl; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 125 | struct z_erofs_collection *cl; |
| 126 | struct page **compressedpages; |
| 127 | z_erofs_next_pcluster_t owned_head; |
| 128 | |
| 129 | enum z_erofs_collectmode mode; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 130 | }; |
| 131 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 132 | struct z_erofs_decompress_frontend { |
| 133 | struct inode *const inode; |
| 134 | |
| 135 | struct z_erofs_collector clt; |
| 136 | struct erofs_map_blocks map; |
| 137 | |
| 138 | /* used for applying cache strategy on the fly */ |
| 139 | bool backmost; |
| 140 | erofs_off_t headoffset; |
| 141 | }; |
| 142 | |
| 143 | #define COLLECTOR_INIT() { \ |
| 144 | .owned_head = Z_EROFS_PCLUSTER_TAIL, \ |
| 145 | .mode = COLLECT_PRIMARY_FOLLOWED } |
| 146 | |
| 147 | #define DECOMPRESS_FRONTEND_INIT(__i) { \ |
| 148 | .inode = __i, .clt = COLLECTOR_INIT(), \ |
| 149 | .backmost = true, } |
| 150 | |
| 151 | static struct page *z_pagemap_global[Z_EROFS_VMAP_GLOBAL_PAGES]; |
| 152 | static DEFINE_MUTEX(z_pagemap_global_lock); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 153 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 154 | static void preload_compressed_pages(struct z_erofs_collector *clt, |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 155 | struct address_space *mc, |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 156 | enum z_erofs_cache_alloctype type, |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 157 | struct list_head *pagepool) |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 158 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 159 | const struct z_erofs_pcluster *pcl = clt->pcl; |
| 160 | const unsigned int clusterpages = BIT(pcl->clusterbits); |
| 161 | struct page **pages = clt->compressedpages; |
| 162 | pgoff_t index = pcl->obj.index + (pages - pcl->compressed_pages); |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 163 | bool standalone = true; |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 164 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 165 | if (clt->mode < COLLECT_PRIMARY_FOLLOWED) |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 166 | return; |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 167 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 168 | for (; pages < pcl->compressed_pages + clusterpages; ++pages) { |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 169 | struct page *page; |
| 170 | compressed_page_t t; |
| 171 | |
| 172 | /* the compressed page was loaded before */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 173 | if (READ_ONCE(*pages)) |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 174 | continue; |
| 175 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 176 | page = find_get_page(mc, index); |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 177 | |
| 178 | if (page) { |
| 179 | t = tag_compressed_page_justfound(page); |
| 180 | } else if (type == DELAYEDALLOC) { |
| 181 | t = tagptr_init(compressed_page_t, PAGE_UNALLOCATED); |
| 182 | } else { /* DONTALLOC */ |
| 183 | if (standalone) |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 184 | clt->compressedpages = pages; |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 185 | standalone = false; |
| 186 | continue; |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 187 | } |
| 188 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 189 | if (!cmpxchg_relaxed(pages, NULL, tagptr_cast_ptr(t))) |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 190 | continue; |
| 191 | |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 192 | if (page) |
| 193 | put_page(page); |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 194 | } |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 195 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 196 | if (standalone) /* downgrade to PRIMARY_FOLLOWED_NOINPLACE */ |
| 197 | clt->mode = COLLECT_PRIMARY_FOLLOWED_NOINPLACE; |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | /* called by erofs_shrinker to get rid of all compressed_pages */ |
Gao Xiang | 47e541a | 2018-07-29 13:34:58 +0800 | [diff] [blame] | 201 | int erofs_try_to_free_all_cached_pages(struct erofs_sb_info *sbi, |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 202 | struct erofs_workgroup *grp) |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 203 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 204 | struct z_erofs_pcluster *const pcl = |
| 205 | container_of(grp, struct z_erofs_pcluster, obj); |
Gao Xiang | c1448fa | 2018-12-08 00:19:13 +0800 | [diff] [blame] | 206 | struct address_space *const mapping = MNGD_MAPPING(sbi); |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 207 | const unsigned int clusterpages = BIT(pcl->clusterbits); |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 208 | int i; |
| 209 | |
| 210 | /* |
| 211 | * refcount of workgroup is now freezed as 1, |
| 212 | * therefore no need to worry about available decompression users. |
| 213 | */ |
| 214 | for (i = 0; i < clusterpages; ++i) { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 215 | struct page *page = pcl->compressed_pages[i]; |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 216 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 217 | if (!page) |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 218 | continue; |
| 219 | |
| 220 | /* block other users from reclaiming or migrating the page */ |
| 221 | if (!trylock_page(page)) |
| 222 | return -EBUSY; |
| 223 | |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 224 | if (page->mapping != mapping) |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 225 | continue; |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 226 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 227 | /* barrier is implied in the following 'unlock_page' */ |
| 228 | WRITE_ONCE(pcl->compressed_pages[i], NULL); |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 229 | set_page_private(page, 0); |
| 230 | ClearPagePrivate(page); |
| 231 | |
| 232 | unlock_page(page); |
| 233 | put_page(page); |
| 234 | } |
| 235 | return 0; |
| 236 | } |
| 237 | |
Gao Xiang | 47e541a | 2018-07-29 13:34:58 +0800 | [diff] [blame] | 238 | int erofs_try_to_free_cached_page(struct address_space *mapping, |
| 239 | struct page *page) |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 240 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 241 | struct z_erofs_pcluster *const pcl = (void *)page_private(page); |
| 242 | const unsigned int clusterpages = BIT(pcl->clusterbits); |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 243 | int ret = 0; /* 0 - busy */ |
| 244 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 245 | if (erofs_workgroup_try_to_freeze(&pcl->obj, 1)) { |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 246 | unsigned int i; |
| 247 | |
| 248 | for (i = 0; i < clusterpages; ++i) { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 249 | if (pcl->compressed_pages[i] == page) { |
| 250 | WRITE_ONCE(pcl->compressed_pages[i], NULL); |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 251 | ret = 1; |
| 252 | break; |
| 253 | } |
| 254 | } |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 255 | erofs_workgroup_unfreeze(&pcl->obj, 1); |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 256 | |
Gao Xiang | 047d4ab | 2019-02-16 16:46:50 +0800 | [diff] [blame] | 257 | if (ret) { |
| 258 | ClearPagePrivate(page); |
| 259 | put_page(page); |
| 260 | } |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 261 | } |
| 262 | return ret; |
| 263 | } |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 264 | |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 265 | /* page_type must be Z_EROFS_PAGE_TYPE_EXCLUSIVE */ |
Gao Xiang | 99634bf | 2019-09-04 10:09:05 +0800 | [diff] [blame] | 266 | static inline bool z_erofs_try_inplace_io(struct z_erofs_collector *clt, |
| 267 | struct page *page) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 268 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 269 | struct z_erofs_pcluster *const pcl = clt->pcl; |
| 270 | const unsigned int clusterpages = BIT(pcl->clusterbits); |
| 271 | |
| 272 | while (clt->compressedpages < pcl->compressed_pages + clusterpages) { |
| 273 | if (!cmpxchg(clt->compressedpages++, NULL, page)) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 274 | return true; |
| 275 | } |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 276 | return false; |
| 277 | } |
| 278 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 279 | /* callers must be with collection lock held */ |
| 280 | static int z_erofs_attach_page(struct z_erofs_collector *clt, |
| 281 | struct page *page, |
| 282 | enum z_erofs_page_type type) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 283 | { |
| 284 | int ret; |
| 285 | bool occupied; |
| 286 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 287 | /* give priority for inplaceio */ |
| 288 | if (clt->mode >= COLLECT_PRIMARY && |
Julian Merida | 447a362 | 2019-03-18 20:58:41 -0300 | [diff] [blame] | 289 | type == Z_EROFS_PAGE_TYPE_EXCLUSIVE && |
Gao Xiang | 99634bf | 2019-09-04 10:09:05 +0800 | [diff] [blame] | 290 | z_erofs_try_inplace_io(clt, page)) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 291 | return 0; |
| 292 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 293 | ret = z_erofs_pagevec_enqueue(&clt->vector, |
Gao Xiang | 046d64e | 2019-07-31 23:57:45 +0800 | [diff] [blame] | 294 | page, type, &occupied); |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 295 | clt->cl->vcnt += (unsigned int)ret; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 296 | |
| 297 | return ret ? 0 : -EAGAIN; |
| 298 | } |
| 299 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 300 | static enum z_erofs_collectmode |
| 301 | try_to_claim_pcluster(struct z_erofs_pcluster *pcl, |
| 302 | z_erofs_next_pcluster_t *owned_head) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 303 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 304 | /* let's claim these following types of pclusters */ |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 305 | retry: |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 306 | if (pcl->next == Z_EROFS_PCLUSTER_NIL) { |
| 307 | /* type 1, nil pcluster */ |
| 308 | if (cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_NIL, |
| 309 | *owned_head) != Z_EROFS_PCLUSTER_NIL) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 310 | goto retry; |
| 311 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 312 | *owned_head = &pcl->next; |
Gao Xiang | a112152 | 2019-02-27 13:33:32 +0800 | [diff] [blame] | 313 | /* lucky, I am the followee :) */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 314 | return COLLECT_PRIMARY_FOLLOWED; |
| 315 | } else if (pcl->next == Z_EROFS_PCLUSTER_TAIL) { |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 316 | /* |
| 317 | * type 2, link to the end of a existing open chain, |
| 318 | * be careful that its submission itself is governed |
| 319 | * by the original owned chain. |
| 320 | */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 321 | if (cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_TAIL, |
| 322 | *owned_head) != Z_EROFS_PCLUSTER_TAIL) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 323 | goto retry; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 324 | *owned_head = Z_EROFS_PCLUSTER_TAIL; |
| 325 | return COLLECT_PRIMARY_HOOKED; |
Gao Xiang | a112152 | 2019-02-27 13:33:32 +0800 | [diff] [blame] | 326 | } |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 327 | return COLLECT_PRIMARY; /* :( better luck next time */ |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 328 | } |
| 329 | |
Gao Xiang | 9e579fc | 2019-10-08 20:56:12 +0800 | [diff] [blame] | 330 | static int z_erofs_lookup_collection(struct z_erofs_collector *clt, |
| 331 | struct inode *inode, |
| 332 | struct erofs_map_blocks *map) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 333 | { |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 334 | struct z_erofs_pcluster *pcl = clt->pcl; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 335 | struct z_erofs_collection *cl; |
| 336 | unsigned int length; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 337 | |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 338 | /* to avoid unexpected loop formed by corrupted images */ |
Gao Xiang | bfc4ccb | 2019-08-21 11:09:08 +0800 | [diff] [blame] | 339 | if (clt->owned_head == &pcl->next || pcl == clt->tailpcl) { |
| 340 | DBG_BUGON(1); |
Gao Xiang | 9e579fc | 2019-10-08 20:56:12 +0800 | [diff] [blame] | 341 | return -EFSCORRUPTED; |
Gao Xiang | bfc4ccb | 2019-08-21 11:09:08 +0800 | [diff] [blame] | 342 | } |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 343 | |
| 344 | cl = z_erofs_primarycollection(pcl); |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 345 | if (cl->pageofs != (map->m_la & ~PAGE_MASK)) { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 346 | DBG_BUGON(1); |
Gao Xiang | 9e579fc | 2019-10-08 20:56:12 +0800 | [diff] [blame] | 347 | return -EFSCORRUPTED; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 348 | } |
| 349 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 350 | length = READ_ONCE(pcl->length); |
| 351 | if (length & Z_EROFS_PCLUSTER_FULL_LENGTH) { |
| 352 | if ((map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT) > length) { |
| 353 | DBG_BUGON(1); |
Gao Xiang | 9e579fc | 2019-10-08 20:56:12 +0800 | [diff] [blame] | 354 | return -EFSCORRUPTED; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 355 | } |
| 356 | } else { |
| 357 | unsigned int llen = map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 358 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 359 | if (map->m_flags & EROFS_MAP_FULL_MAPPED) |
| 360 | llen |= Z_EROFS_PCLUSTER_FULL_LENGTH; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 361 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 362 | while (llen > length && |
| 363 | length != cmpxchg_relaxed(&pcl->length, length, llen)) { |
| 364 | cpu_relax(); |
| 365 | length = READ_ONCE(pcl->length); |
| 366 | } |
| 367 | } |
| 368 | mutex_lock(&cl->lock); |
Gao Xiang | bfc4ccb | 2019-08-21 11:09:08 +0800 | [diff] [blame] | 369 | /* used to check tail merging loop due to corrupted images */ |
| 370 | if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL) |
| 371 | clt->tailpcl = pcl; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 372 | clt->mode = try_to_claim_pcluster(pcl, &clt->owned_head); |
Gao Xiang | bfc4ccb | 2019-08-21 11:09:08 +0800 | [diff] [blame] | 373 | /* clean tailpcl if the current owned_head is Z_EROFS_PCLUSTER_TAIL */ |
| 374 | if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL) |
| 375 | clt->tailpcl = NULL; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 376 | clt->cl = cl; |
Gao Xiang | 9e579fc | 2019-10-08 20:56:12 +0800 | [diff] [blame] | 377 | return 0; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 378 | } |
| 379 | |
Gao Xiang | 9e579fc | 2019-10-08 20:56:12 +0800 | [diff] [blame] | 380 | static int z_erofs_register_collection(struct z_erofs_collector *clt, |
| 381 | struct inode *inode, |
| 382 | struct erofs_map_blocks *map) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 383 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 384 | struct z_erofs_pcluster *pcl; |
| 385 | struct z_erofs_collection *cl; |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 386 | struct erofs_workgroup *grp; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 387 | int err; |
Gao Xiang | e5e3abb | 2018-09-19 13:49:07 +0800 | [diff] [blame] | 388 | |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 389 | /* no available workgroup, let's allocate one */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 390 | pcl = kmem_cache_alloc(pcluster_cachep, GFP_NOFS); |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 391 | if (!pcl) |
Gao Xiang | 9e579fc | 2019-10-08 20:56:12 +0800 | [diff] [blame] | 392 | return -ENOMEM; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 393 | |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 394 | atomic_set(&pcl->obj.refcount, 1); |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 395 | pcl->obj.index = map->m_pa >> PAGE_SHIFT; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 396 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 397 | pcl->length = (map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT) | |
| 398 | (map->m_flags & EROFS_MAP_FULL_MAPPED ? |
| 399 | Z_EROFS_PCLUSTER_FULL_LENGTH : 0); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 400 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 401 | if (map->m_flags & EROFS_MAP_ZIPPED) |
| 402 | pcl->algorithmformat = Z_EROFS_COMPRESSION_LZ4; |
| 403 | else |
| 404 | pcl->algorithmformat = Z_EROFS_COMPRESSION_SHIFTED; |
Gao Xiang | b6a7618 | 2019-06-24 15:22:58 +0800 | [diff] [blame] | 405 | |
Gao Xiang | a5876e2 | 2019-09-04 10:08:56 +0800 | [diff] [blame] | 406 | pcl->clusterbits = EROFS_I(inode)->z_physical_clusterbits[0]; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 407 | pcl->clusterbits -= PAGE_SHIFT; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 408 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 409 | /* new pclusters should be claimed as type 1, primary and followed */ |
| 410 | pcl->next = clt->owned_head; |
| 411 | clt->mode = COLLECT_PRIMARY_FOLLOWED; |
| 412 | |
| 413 | cl = z_erofs_primarycollection(pcl); |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 414 | |
| 415 | /* must be cleaned before freeing to slab */ |
| 416 | DBG_BUGON(cl->nr_pages); |
| 417 | DBG_BUGON(cl->vcnt); |
| 418 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 419 | cl->pageofs = map->m_la & ~PAGE_MASK; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 420 | |
Gao Xiang | 23edf3a | 2018-11-23 01:21:47 +0800 | [diff] [blame] | 421 | /* |
| 422 | * lock all primary followed works before visible to others |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 423 | * and mutex_trylock *never* fails for a new pcluster. |
Gao Xiang | 23edf3a | 2018-11-23 01:21:47 +0800 | [diff] [blame] | 424 | */ |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 425 | DBG_BUGON(!mutex_trylock(&cl->lock)); |
Gao Xiang | 23edf3a | 2018-11-23 01:21:47 +0800 | [diff] [blame] | 426 | |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 427 | grp = erofs_insert_workgroup(inode->i_sb, &pcl->obj); |
| 428 | if (IS_ERR(grp)) { |
| 429 | err = PTR_ERR(grp); |
| 430 | goto err_out; |
| 431 | } |
| 432 | |
| 433 | if (grp != &pcl->obj) { |
| 434 | clt->pcl = container_of(grp, struct z_erofs_pcluster, obj); |
| 435 | err = -EEXIST; |
| 436 | goto err_out; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 437 | } |
Gao Xiang | bfc4ccb | 2019-08-21 11:09:08 +0800 | [diff] [blame] | 438 | /* used to check tail merging loop due to corrupted images */ |
| 439 | if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL) |
| 440 | clt->tailpcl = pcl; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 441 | clt->owned_head = &pcl->next; |
| 442 | clt->pcl = pcl; |
| 443 | clt->cl = cl; |
Gao Xiang | 9e579fc | 2019-10-08 20:56:12 +0800 | [diff] [blame] | 444 | return 0; |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 445 | |
| 446 | err_out: |
| 447 | mutex_unlock(&cl->lock); |
| 448 | kmem_cache_free(pcluster_cachep, pcl); |
| 449 | return err; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 450 | } |
| 451 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 452 | static int z_erofs_collector_begin(struct z_erofs_collector *clt, |
| 453 | struct inode *inode, |
| 454 | struct erofs_map_blocks *map) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 455 | { |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 456 | struct erofs_workgroup *grp; |
Gao Xiang | 9e579fc | 2019-10-08 20:56:12 +0800 | [diff] [blame] | 457 | int ret; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 458 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 459 | DBG_BUGON(clt->cl); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 460 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 461 | /* must be Z_EROFS_PCLUSTER_TAIL or pointed to previous collection */ |
| 462 | DBG_BUGON(clt->owned_head == Z_EROFS_PCLUSTER_NIL); |
| 463 | DBG_BUGON(clt->owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 464 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 465 | if (!PAGE_ALIGNED(map->m_pa)) { |
| 466 | DBG_BUGON(1); |
| 467 | return -EINVAL; |
| 468 | } |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 469 | |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 470 | grp = erofs_find_workgroup(inode->i_sb, map->m_pa >> PAGE_SHIFT); |
| 471 | if (grp) { |
| 472 | clt->pcl = container_of(grp, struct z_erofs_pcluster, obj); |
| 473 | } else { |
Gao Xiang | 9e579fc | 2019-10-08 20:56:12 +0800 | [diff] [blame] | 474 | ret = z_erofs_register_collection(clt, inode, map); |
Gao Xiang | b27661c | 2018-09-19 13:49:06 +0800 | [diff] [blame] | 475 | |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 476 | if (!ret) |
| 477 | goto out; |
| 478 | if (ret != -EEXIST) |
| 479 | return ret; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 480 | } |
| 481 | |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 482 | ret = z_erofs_lookup_collection(clt, inode, map); |
| 483 | if (ret) { |
| 484 | erofs_workgroup_put(&clt->pcl->obj); |
Gao Xiang | 9e579fc | 2019-10-08 20:56:12 +0800 | [diff] [blame] | 485 | return ret; |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 486 | } |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 487 | |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 488 | out: |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 489 | z_erofs_pagevec_ctor_init(&clt->vector, Z_EROFS_NR_INLINE_PAGEVECS, |
Gao Xiang | 9e579fc | 2019-10-08 20:56:12 +0800 | [diff] [blame] | 490 | clt->cl->pagevec, clt->cl->vcnt); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 491 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 492 | clt->compressedpages = clt->pcl->compressed_pages; |
| 493 | if (clt->mode <= COLLECT_PRIMARY) /* cannot do in-place I/O */ |
| 494 | clt->compressedpages += Z_EROFS_CLUSTER_MAX_PAGES; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 495 | return 0; |
| 496 | } |
| 497 | |
| 498 | /* |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 499 | * keep in mind that no referenced pclusters will be freed |
| 500 | * only after a RCU grace period. |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 501 | */ |
| 502 | static void z_erofs_rcu_callback(struct rcu_head *head) |
| 503 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 504 | struct z_erofs_collection *const cl = |
| 505 | container_of(head, struct z_erofs_collection, rcu); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 506 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 507 | kmem_cache_free(pcluster_cachep, |
| 508 | container_of(cl, struct z_erofs_pcluster, |
| 509 | primary_collection)); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 510 | } |
| 511 | |
| 512 | void erofs_workgroup_free_rcu(struct erofs_workgroup *grp) |
| 513 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 514 | struct z_erofs_pcluster *const pcl = |
| 515 | container_of(grp, struct z_erofs_pcluster, obj); |
| 516 | struct z_erofs_collection *const cl = z_erofs_primarycollection(pcl); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 517 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 518 | call_rcu(&cl->rcu, z_erofs_rcu_callback); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 519 | } |
| 520 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 521 | static void z_erofs_collection_put(struct z_erofs_collection *cl) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 522 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 523 | struct z_erofs_pcluster *const pcl = |
| 524 | container_of(cl, struct z_erofs_pcluster, primary_collection); |
| 525 | |
| 526 | erofs_workgroup_put(&pcl->obj); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 527 | } |
| 528 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 529 | static bool z_erofs_collector_end(struct z_erofs_collector *clt) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 530 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 531 | struct z_erofs_collection *cl = clt->cl; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 532 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 533 | if (!cl) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 534 | return false; |
| 535 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 536 | z_erofs_pagevec_ctor_exit(&clt->vector, false); |
| 537 | mutex_unlock(&cl->lock); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 538 | |
| 539 | /* |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 540 | * if all pending pages are added, don't hold its reference |
| 541 | * any longer if the pcluster isn't hosted by ourselves. |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 542 | */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 543 | if (clt->mode < COLLECT_PRIMARY_FOLLOWED_NOINPLACE) |
| 544 | z_erofs_collection_put(cl); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 545 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 546 | clt->cl = NULL; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 547 | return true; |
| 548 | } |
| 549 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 550 | static bool should_alloc_managed_pages(struct z_erofs_decompress_frontend *fe, |
Gao Xiang | 4279f3f | 2019-07-31 23:57:49 +0800 | [diff] [blame] | 551 | unsigned int cachestrategy, |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 552 | erofs_off_t la) |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 553 | { |
Gao Xiang | 4279f3f | 2019-07-31 23:57:49 +0800 | [diff] [blame] | 554 | if (cachestrategy <= EROFS_ZIP_CACHE_DISABLED) |
| 555 | return false; |
| 556 | |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 557 | if (fe->backmost) |
| 558 | return true; |
| 559 | |
Gao Xiang | 4279f3f | 2019-07-31 23:57:49 +0800 | [diff] [blame] | 560 | return cachestrategy >= EROFS_ZIP_CACHE_READAROUND && |
| 561 | la < fe->headoffset; |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 562 | } |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 563 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 564 | static int z_erofs_do_read_page(struct z_erofs_decompress_frontend *fe, |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 565 | struct page *page, |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 566 | struct list_head *pagepool) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 567 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 568 | struct inode *const inode = fe->inode; |
Gao Xiang | bda17a4 | 2019-10-08 20:56:13 +0800 | [diff] [blame] | 569 | struct erofs_sb_info *const sbi = EROFS_I_SB(inode); |
Chao Yu | 3b42341 | 2019-01-15 09:42:21 +0800 | [diff] [blame] | 570 | struct erofs_map_blocks *const map = &fe->map; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 571 | struct z_erofs_collector *const clt = &fe->clt; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 572 | const loff_t offset = page_offset(page); |
Gao Xiang | dc76ea8 | 2019-09-22 18:04:34 +0800 | [diff] [blame] | 573 | bool tight = true; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 574 | |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 575 | enum z_erofs_cache_alloctype cache_strategy; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 576 | enum z_erofs_page_type page_type; |
Thomas Weißschuh | 7dd68b1 | 2018-09-10 21:41:14 +0200 | [diff] [blame] | 577 | unsigned int cur, end, spiltted, index; |
Gao Xiang | 1e05ff3 | 2018-09-18 22:27:25 +0800 | [diff] [blame] | 578 | int err = 0; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 579 | |
| 580 | /* register locked file pages as online pages in pack */ |
| 581 | z_erofs_onlinepage_init(page); |
| 582 | |
| 583 | spiltted = 0; |
| 584 | end = PAGE_SIZE; |
| 585 | repeat: |
| 586 | cur = end - 1; |
| 587 | |
| 588 | /* lucky, within the range of the current map_blocks */ |
| 589 | if (offset + cur >= map->m_la && |
Julian Merida | 447a362 | 2019-03-18 20:58:41 -0300 | [diff] [blame] | 590 | offset + cur < map->m_la + map->m_llen) { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 591 | /* didn't get a valid collection previously (very rare) */ |
| 592 | if (!clt->cl) |
Gao Xiang | 1e5ceea | 2019-02-27 13:33:31 +0800 | [diff] [blame] | 593 | goto restart_now; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 594 | goto hitted; |
Gao Xiang | 1e5ceea | 2019-02-27 13:33:31 +0800 | [diff] [blame] | 595 | } |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 596 | |
| 597 | /* go ahead the next map_blocks */ |
Gao Xiang | 4f761fa | 2019-09-04 10:09:09 +0800 | [diff] [blame] | 598 | erofs_dbg("%s: [out-of-range] pos %llu", __func__, offset + cur); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 599 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 600 | if (z_erofs_collector_end(clt)) |
Gao Xiang | f0c519f | 2018-11-23 01:21:49 +0800 | [diff] [blame] | 601 | fe->backmost = false; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 602 | |
| 603 | map->m_la = offset + cur; |
| 604 | map->m_llen = 0; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 605 | err = z_erofs_map_blocks_iter(inode, map, 0); |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 606 | if (err) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 607 | goto err_out; |
| 608 | |
Gao Xiang | 1e5ceea | 2019-02-27 13:33:31 +0800 | [diff] [blame] | 609 | restart_now: |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 610 | if (!(map->m_flags & EROFS_MAP_MAPPED)) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 611 | goto hitted; |
| 612 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 613 | err = z_erofs_collector_begin(clt, inode, map); |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 614 | if (err) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 615 | goto err_out; |
| 616 | |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 617 | /* preload all compressed pages (maybe downgrade role if necessary) */ |
Gao Xiang | 4279f3f | 2019-07-31 23:57:49 +0800 | [diff] [blame] | 618 | if (should_alloc_managed_pages(fe, sbi->cache_strategy, map->m_la)) |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 619 | cache_strategy = DELAYEDALLOC; |
| 620 | else |
| 621 | cache_strategy = DONTALLOC; |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 622 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 623 | preload_compressed_pages(clt, MNGD_MAPPING(sbi), |
| 624 | cache_strategy, pagepool); |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 625 | |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 626 | hitted: |
Gao Xiang | dc76ea8 | 2019-09-22 18:04:34 +0800 | [diff] [blame] | 627 | /* |
| 628 | * Ensure the current partial page belongs to this submit chain rather |
| 629 | * than other concurrent submit chains or the noio(bypass) chain since |
| 630 | * those chains are handled asynchronously thus the page cannot be used |
| 631 | * for inplace I/O or pagevec (should be processed in strict order.) |
| 632 | */ |
| 633 | tight &= (clt->mode >= COLLECT_PRIMARY_HOOKED && |
| 634 | clt->mode != COLLECT_PRIMARY_FOLLOWED_NOINPLACE); |
| 635 | |
Thomas Weißschuh | 7dd68b1 | 2018-09-10 21:41:14 +0200 | [diff] [blame] | 636 | cur = end - min_t(unsigned int, offset + end - map->m_la, end); |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 637 | if (!(map->m_flags & EROFS_MAP_MAPPED)) { |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 638 | zero_user_segment(page, cur, end); |
| 639 | goto next_part; |
| 640 | } |
| 641 | |
| 642 | /* let's derive page type */ |
| 643 | page_type = cur ? Z_EROFS_VLE_PAGE_TYPE_HEAD : |
| 644 | (!spiltted ? Z_EROFS_PAGE_TYPE_EXCLUSIVE : |
| 645 | (tight ? Z_EROFS_PAGE_TYPE_EXCLUSIVE : |
| 646 | Z_EROFS_VLE_PAGE_TYPE_TAIL_SHARED)); |
| 647 | |
Gao Xiang | a112152 | 2019-02-27 13:33:32 +0800 | [diff] [blame] | 648 | if (cur) |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 649 | tight &= (clt->mode >= COLLECT_PRIMARY_FOLLOWED); |
Gao Xiang | a112152 | 2019-02-27 13:33:32 +0800 | [diff] [blame] | 650 | |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 651 | retry: |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 652 | err = z_erofs_attach_page(clt, page, page_type); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 653 | /* should allocate an additional staging page for pagevec */ |
| 654 | if (err == -EAGAIN) { |
| 655 | struct page *const newpage = |
Gao Xiang | 5ddcee1 | 2019-11-21 21:59:54 +0800 | [diff] [blame] | 656 | erofs_allocpage(pagepool, GFP_NOFS | __GFP_NOFAIL); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 657 | |
Gao Xiang | 5ddcee1 | 2019-11-21 21:59:54 +0800 | [diff] [blame] | 658 | newpage->mapping = Z_EROFS_MAPPING_STAGING; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 659 | err = z_erofs_attach_page(clt, newpage, |
| 660 | Z_EROFS_PAGE_TYPE_EXCLUSIVE); |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 661 | if (!err) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 662 | goto retry; |
| 663 | } |
| 664 | |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 665 | if (err) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 666 | goto err_out; |
| 667 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 668 | index = page->index - (map->m_la >> PAGE_SHIFT); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 669 | |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 670 | z_erofs_onlinepage_fixup(page, index, true); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 671 | |
Gao Xiang | 1e05ff3 | 2018-09-18 22:27:25 +0800 | [diff] [blame] | 672 | /* bump up the number of spiltted parts of a page */ |
| 673 | ++spiltted; |
| 674 | /* also update nr_pages */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 675 | clt->cl->nr_pages = max_t(pgoff_t, clt->cl->nr_pages, index + 1); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 676 | next_part: |
| 677 | /* can be used for verification */ |
| 678 | map->m_llen = offset + cur - map->m_la; |
| 679 | |
Kristaps Čivkulis | 2bc7596 | 2018-08-05 18:21:01 +0300 | [diff] [blame] | 680 | end = cur; |
| 681 | if (end > 0) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 682 | goto repeat; |
| 683 | |
Gao Xiang | 1e05ff3 | 2018-09-18 22:27:25 +0800 | [diff] [blame] | 684 | out: |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 685 | z_erofs_onlinepage_endio(page); |
| 686 | |
Gao Xiang | 4f761fa | 2019-09-04 10:09:09 +0800 | [diff] [blame] | 687 | erofs_dbg("%s, finish page: %pK spiltted: %u map->m_llen %llu", |
| 688 | __func__, page, spiltted, map->m_llen); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 689 | return err; |
Gao Xiang | 1e05ff3 | 2018-09-18 22:27:25 +0800 | [diff] [blame] | 690 | |
| 691 | /* if some error occurred while processing this page */ |
| 692 | err_out: |
| 693 | SetPageError(page); |
| 694 | goto out; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 695 | } |
| 696 | |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 697 | static void z_erofs_decompress_kickoff(struct z_erofs_decompressqueue *io, |
| 698 | bool sync, int bios) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 699 | { |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 700 | /* wake up the caller thread for sync decompression */ |
| 701 | if (sync) { |
Gao Xiang | 848bd9a | 2018-12-08 00:19:12 +0800 | [diff] [blame] | 702 | unsigned long flags; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 703 | |
Gao Xiang | 848bd9a | 2018-12-08 00:19:12 +0800 | [diff] [blame] | 704 | spin_lock_irqsave(&io->u.wait.lock, flags); |
| 705 | if (!atomic_add_return(bios, &io->pending_bios)) |
| 706 | wake_up_locked(&io->u.wait); |
| 707 | spin_unlock_irqrestore(&io->u.wait.lock, flags); |
| 708 | return; |
| 709 | } |
| 710 | |
| 711 | if (!atomic_add_return(bios, &io->pending_bios)) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 712 | queue_work(z_erofs_workqueue, &io->u.work); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 713 | } |
| 714 | |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 715 | static void z_erofs_decompressqueue_endio(struct bio *bio) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 716 | { |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 717 | tagptr1_t t = tagptr_init(tagptr1_t, bio->bi_private); |
| 718 | struct z_erofs_decompressqueue *q = tagptr_unfold_ptr(t); |
Gao Xiang | 14a56ec | 2019-03-25 11:40:09 +0800 | [diff] [blame] | 719 | blk_status_t err = bio->bi_status; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 720 | struct bio_vec *bvec; |
Ming Lei | 6dc4f10 | 2019-02-15 19:13:19 +0800 | [diff] [blame] | 721 | struct bvec_iter_all iter_all; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 722 | |
Christoph Hellwig | 2b070cf | 2019-04-25 09:03:00 +0200 | [diff] [blame] | 723 | bio_for_each_segment_all(bvec, bio, iter_all) { |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 724 | struct page *page = bvec->bv_page; |
| 725 | |
| 726 | DBG_BUGON(PageUptodate(page)); |
Gao Xiang | 70b1799 | 2018-12-11 15:17:49 +0800 | [diff] [blame] | 727 | DBG_BUGON(!page->mapping); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 728 | |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 729 | if (err) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 730 | SetPageError(page); |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 731 | |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 732 | if (erofs_page_is_managed(EROFS_SB(q->sb), page)) { |
| 733 | if (!err) |
| 734 | SetPageUptodate(page); |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 735 | unlock_page(page); |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 736 | } |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 737 | } |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 738 | z_erofs_decompress_kickoff(q, tagptr_unfold_tags(t), -1); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 739 | bio_put(bio); |
| 740 | } |
| 741 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 742 | static int z_erofs_decompress_pcluster(struct super_block *sb, |
| 743 | struct z_erofs_pcluster *pcl, |
| 744 | struct list_head *pagepool) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 745 | { |
| 746 | struct erofs_sb_info *const sbi = EROFS_SB(sb); |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 747 | const unsigned int clusterpages = BIT(pcl->clusterbits); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 748 | struct z_erofs_pagevec_ctor ctor; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 749 | unsigned int i, outputsize, llen, nr_pages; |
| 750 | struct page *pages_onstack[Z_EROFS_VMAP_ONSTACK_PAGES]; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 751 | struct page **pages, **compressed_pages, *page; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 752 | |
| 753 | enum z_erofs_page_type page_type; |
Gao Xiang | b6a7618 | 2019-06-24 15:22:58 +0800 | [diff] [blame] | 754 | bool overlapped, partial; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 755 | struct z_erofs_collection *cl; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 756 | int err; |
| 757 | |
| 758 | might_sleep(); |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 759 | cl = z_erofs_primarycollection(pcl); |
| 760 | DBG_BUGON(!READ_ONCE(cl->nr_pages)); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 761 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 762 | mutex_lock(&cl->lock); |
| 763 | nr_pages = cl->nr_pages; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 764 | |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 765 | if (nr_pages <= Z_EROFS_VMAP_ONSTACK_PAGES) { |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 766 | pages = pages_onstack; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 767 | } else if (nr_pages <= Z_EROFS_VMAP_GLOBAL_PAGES && |
| 768 | mutex_trylock(&z_pagemap_global_lock)) { |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 769 | pages = z_pagemap_global; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 770 | } else { |
Chao Yu | 441dfcc | 2019-07-16 17:44:22 +0800 | [diff] [blame] | 771 | gfp_t gfp_flags = GFP_KERNEL; |
| 772 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 773 | if (nr_pages > Z_EROFS_VMAP_GLOBAL_PAGES) |
Chao Yu | 441dfcc | 2019-07-16 17:44:22 +0800 | [diff] [blame] | 774 | gfp_flags |= __GFP_NOFAIL; |
| 775 | |
Julian Merida | 447a362 | 2019-03-18 20:58:41 -0300 | [diff] [blame] | 776 | pages = kvmalloc_array(nr_pages, sizeof(struct page *), |
Chao Yu | 441dfcc | 2019-07-16 17:44:22 +0800 | [diff] [blame] | 777 | gfp_flags); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 778 | |
| 779 | /* fallback to global pagemap for the lowmem scenario */ |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 780 | if (!pages) { |
Chao Yu | 441dfcc | 2019-07-16 17:44:22 +0800 | [diff] [blame] | 781 | mutex_lock(&z_pagemap_global_lock); |
| 782 | pages = z_pagemap_global; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 783 | } |
| 784 | } |
| 785 | |
| 786 | for (i = 0; i < nr_pages; ++i) |
| 787 | pages[i] = NULL; |
| 788 | |
Gao Xiang | e12a0ce | 2019-08-21 22:01:52 +0800 | [diff] [blame] | 789 | err = 0; |
Gao Xiang | fa61a33 | 2019-06-24 15:22:53 +0800 | [diff] [blame] | 790 | z_erofs_pagevec_ctor_init(&ctor, Z_EROFS_NR_INLINE_PAGEVECS, |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 791 | cl->pagevec, 0); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 792 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 793 | for (i = 0; i < cl->vcnt; ++i) { |
Thomas Weißschuh | 7dd68b1 | 2018-09-10 21:41:14 +0200 | [diff] [blame] | 794 | unsigned int pagenr; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 795 | |
Gao Xiang | 046d64e | 2019-07-31 23:57:45 +0800 | [diff] [blame] | 796 | page = z_erofs_pagevec_dequeue(&ctor, &page_type); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 797 | |
| 798 | /* all pages in pagevec ought to be valid */ |
Cristian Sicilia | 42d40b4 | 2018-11-12 21:43:57 +0100 | [diff] [blame] | 799 | DBG_BUGON(!page); |
| 800 | DBG_BUGON(!page->mapping); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 801 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 802 | if (z_erofs_put_stagingpage(pagepool, page)) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 803 | continue; |
| 804 | |
| 805 | if (page_type == Z_EROFS_VLE_PAGE_TYPE_HEAD) |
| 806 | pagenr = 0; |
| 807 | else |
| 808 | pagenr = z_erofs_onlinepage_index(page); |
| 809 | |
Gao Xiang | 70b1799 | 2018-12-11 15:17:49 +0800 | [diff] [blame] | 810 | DBG_BUGON(pagenr >= nr_pages); |
Gao Xiang | e5e3abb | 2018-09-19 13:49:07 +0800 | [diff] [blame] | 811 | |
Gao Xiang | e12a0ce | 2019-08-21 22:01:52 +0800 | [diff] [blame] | 812 | /* |
| 813 | * currently EROFS doesn't support multiref(dedup), |
| 814 | * so here erroring out one multiref page. |
| 815 | */ |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 816 | if (pages[pagenr]) { |
Gao Xiang | e12a0ce | 2019-08-21 22:01:52 +0800 | [diff] [blame] | 817 | DBG_BUGON(1); |
| 818 | SetPageError(pages[pagenr]); |
| 819 | z_erofs_onlinepage_endio(pages[pagenr]); |
| 820 | err = -EFSCORRUPTED; |
| 821 | } |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 822 | pages[pagenr] = page; |
| 823 | } |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 824 | z_erofs_pagevec_ctor_exit(&ctor, true); |
| 825 | |
| 826 | overlapped = false; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 827 | compressed_pages = pcl->compressed_pages; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 828 | |
| 829 | for (i = 0; i < clusterpages; ++i) { |
Thomas Weißschuh | 7dd68b1 | 2018-09-10 21:41:14 +0200 | [diff] [blame] | 830 | unsigned int pagenr; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 831 | |
| 832 | page = compressed_pages[i]; |
| 833 | |
| 834 | /* all compressed pages ought to be valid */ |
Cristian Sicilia | 42d40b4 | 2018-11-12 21:43:57 +0100 | [diff] [blame] | 835 | DBG_BUGON(!page); |
| 836 | DBG_BUGON(!page->mapping); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 837 | |
Gao Xiang | 2748123 | 2019-06-24 15:22:54 +0800 | [diff] [blame] | 838 | if (!z_erofs_page_is_staging(page)) { |
Gao Xiang | d61fbb6 | 2019-03-25 11:40:08 +0800 | [diff] [blame] | 839 | if (erofs_page_is_managed(sbi, page)) { |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 840 | if (!PageUptodate(page)) |
Gao Xiang | 1115249 | 2019-03-25 11:40:07 +0800 | [diff] [blame] | 841 | err = -EIO; |
| 842 | continue; |
| 843 | } |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 844 | |
Gao Xiang | 1115249 | 2019-03-25 11:40:07 +0800 | [diff] [blame] | 845 | /* |
| 846 | * only if non-head page can be selected |
| 847 | * for inplace decompression |
| 848 | */ |
| 849 | pagenr = z_erofs_onlinepage_index(page); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 850 | |
Gao Xiang | 1115249 | 2019-03-25 11:40:07 +0800 | [diff] [blame] | 851 | DBG_BUGON(pagenr >= nr_pages); |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 852 | if (pages[pagenr]) { |
Gao Xiang | e12a0ce | 2019-08-21 22:01:52 +0800 | [diff] [blame] | 853 | DBG_BUGON(1); |
| 854 | SetPageError(pages[pagenr]); |
| 855 | z_erofs_onlinepage_endio(pages[pagenr]); |
| 856 | err = -EFSCORRUPTED; |
| 857 | } |
Gao Xiang | 1115249 | 2019-03-25 11:40:07 +0800 | [diff] [blame] | 858 | pages[pagenr] = page; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 859 | |
Gao Xiang | 1115249 | 2019-03-25 11:40:07 +0800 | [diff] [blame] | 860 | overlapped = true; |
| 861 | } |
| 862 | |
| 863 | /* PG_error needs checking for inplaced and staging pages */ |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 864 | if (PageError(page)) { |
Gao Xiang | 1115249 | 2019-03-25 11:40:07 +0800 | [diff] [blame] | 865 | DBG_BUGON(PageUptodate(page)); |
| 866 | err = -EIO; |
| 867 | } |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 868 | } |
| 869 | |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 870 | if (err) |
Gao Xiang | 1115249 | 2019-03-25 11:40:07 +0800 | [diff] [blame] | 871 | goto out; |
| 872 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 873 | llen = pcl->length >> Z_EROFS_PCLUSTER_LENGTH_BIT; |
| 874 | if (nr_pages << PAGE_SHIFT >= cl->pageofs + llen) { |
| 875 | outputsize = llen; |
| 876 | partial = !(pcl->length & Z_EROFS_PCLUSTER_FULL_LENGTH); |
Gao Xiang | b6a7618 | 2019-06-24 15:22:58 +0800 | [diff] [blame] | 877 | } else { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 878 | outputsize = (nr_pages << PAGE_SHIFT) - cl->pageofs; |
Gao Xiang | b6a7618 | 2019-06-24 15:22:58 +0800 | [diff] [blame] | 879 | partial = true; |
| 880 | } |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 881 | |
Gao Xiang | 88aaf5a | 2019-06-24 15:22:57 +0800 | [diff] [blame] | 882 | err = z_erofs_decompress(&(struct z_erofs_decompress_req) { |
| 883 | .sb = sb, |
| 884 | .in = compressed_pages, |
| 885 | .out = pages, |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 886 | .pageofs_out = cl->pageofs, |
Gao Xiang | 88aaf5a | 2019-06-24 15:22:57 +0800 | [diff] [blame] | 887 | .inputsize = PAGE_SIZE, |
| 888 | .outputsize = outputsize, |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 889 | .alg = pcl->algorithmformat, |
Gao Xiang | 88aaf5a | 2019-06-24 15:22:57 +0800 | [diff] [blame] | 890 | .inplace_io = overlapped, |
Gao Xiang | b6a7618 | 2019-06-24 15:22:58 +0800 | [diff] [blame] | 891 | .partial_decoding = partial |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 892 | }, pagepool); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 893 | |
| 894 | out: |
Gao Xiang | af692e1 | 2019-02-27 13:33:30 +0800 | [diff] [blame] | 895 | /* must handle all compressed pages before endding pages */ |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 896 | for (i = 0; i < clusterpages; ++i) { |
| 897 | page = compressed_pages[i]; |
| 898 | |
Gao Xiang | d61fbb6 | 2019-03-25 11:40:08 +0800 | [diff] [blame] | 899 | if (erofs_page_is_managed(sbi, page)) |
Gao Xiang | 105d4ad | 2018-07-26 20:22:07 +0800 | [diff] [blame] | 900 | continue; |
Gao Xiang | d61fbb6 | 2019-03-25 11:40:08 +0800 | [diff] [blame] | 901 | |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 902 | /* recycle all individual staging pages */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 903 | (void)z_erofs_put_stagingpage(pagepool, page); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 904 | |
| 905 | WRITE_ONCE(compressed_pages[i], NULL); |
| 906 | } |
| 907 | |
Gao Xiang | af692e1 | 2019-02-27 13:33:30 +0800 | [diff] [blame] | 908 | for (i = 0; i < nr_pages; ++i) { |
| 909 | page = pages[i]; |
| 910 | if (!page) |
| 911 | continue; |
| 912 | |
| 913 | DBG_BUGON(!page->mapping); |
| 914 | |
| 915 | /* recycle all individual staging pages */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 916 | if (z_erofs_put_stagingpage(pagepool, page)) |
Gao Xiang | af692e1 | 2019-02-27 13:33:30 +0800 | [diff] [blame] | 917 | continue; |
| 918 | |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 919 | if (err < 0) |
Gao Xiang | af692e1 | 2019-02-27 13:33:30 +0800 | [diff] [blame] | 920 | SetPageError(page); |
| 921 | |
| 922 | z_erofs_onlinepage_endio(page); |
| 923 | } |
| 924 | |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 925 | if (pages == z_pagemap_global) |
| 926 | mutex_unlock(&z_pagemap_global_lock); |
Gao Xiang | 8d8a09b | 2019-08-30 00:38:27 +0800 | [diff] [blame] | 927 | else if (pages != pages_onstack) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 928 | kvfree(pages); |
| 929 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 930 | cl->nr_pages = 0; |
| 931 | cl->vcnt = 0; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 932 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 933 | /* all cl locks MUST be taken before the following line */ |
| 934 | WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_NIL); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 935 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 936 | /* all cl locks SHOULD be released right now */ |
| 937 | mutex_unlock(&cl->lock); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 938 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 939 | z_erofs_collection_put(cl); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 940 | return err; |
| 941 | } |
| 942 | |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 943 | static void z_erofs_decompress_queue(const struct z_erofs_decompressqueue *io, |
| 944 | struct list_head *pagepool) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 945 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 946 | z_erofs_next_pcluster_t owned = io->head; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 947 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 948 | while (owned != Z_EROFS_PCLUSTER_TAIL_CLOSED) { |
| 949 | struct z_erofs_pcluster *pcl; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 950 | |
| 951 | /* no possible that 'owned' equals Z_EROFS_WORK_TPTR_TAIL */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 952 | DBG_BUGON(owned == Z_EROFS_PCLUSTER_TAIL); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 953 | |
| 954 | /* no possible that 'owned' equals NULL */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 955 | DBG_BUGON(owned == Z_EROFS_PCLUSTER_NIL); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 956 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 957 | pcl = container_of(owned, struct z_erofs_pcluster, next); |
| 958 | owned = READ_ONCE(pcl->next); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 959 | |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 960 | z_erofs_decompress_pcluster(io->sb, pcl, pagepool); |
Gao Xiang | 3978c8e | 2018-08-06 11:27:53 +0800 | [diff] [blame] | 961 | } |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 962 | } |
| 963 | |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 964 | static void z_erofs_decompressqueue_work(struct work_struct *work) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 965 | { |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 966 | struct z_erofs_decompressqueue *bgq = |
| 967 | container_of(work, struct z_erofs_decompressqueue, u.work); |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 968 | LIST_HEAD(pagepool); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 969 | |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 970 | DBG_BUGON(bgq->head == Z_EROFS_PCLUSTER_TAIL_CLOSED); |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 971 | z_erofs_decompress_queue(bgq, &pagepool); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 972 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 973 | put_pages_list(&pagepool); |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 974 | kvfree(bgq); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 975 | } |
| 976 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 977 | static struct page *pickup_page_for_submission(struct z_erofs_pcluster *pcl, |
| 978 | unsigned int nr, |
| 979 | struct list_head *pagepool, |
| 980 | struct address_space *mc, |
| 981 | gfp_t gfp) |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 982 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 983 | const pgoff_t index = pcl->obj.index; |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 984 | bool tocache = false; |
| 985 | |
| 986 | struct address_space *mapping; |
| 987 | struct page *oldpage, *page; |
| 988 | |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 989 | compressed_page_t t; |
| 990 | int justfound; |
| 991 | |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 992 | repeat: |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 993 | page = READ_ONCE(pcl->compressed_pages[nr]); |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 994 | oldpage = page; |
| 995 | |
| 996 | if (!page) |
| 997 | goto out_allocpage; |
| 998 | |
| 999 | /* |
| 1000 | * the cached page has not been allocated and |
| 1001 | * an placeholder is out there, prepare it now. |
| 1002 | */ |
Gao Xiang | bda17a4 | 2019-10-08 20:56:13 +0800 | [diff] [blame] | 1003 | if (page == PAGE_UNALLOCATED) { |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 1004 | tocache = true; |
| 1005 | goto out_allocpage; |
| 1006 | } |
| 1007 | |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 1008 | /* process the target tagged pointer */ |
| 1009 | t = tagptr_init(compressed_page_t, page); |
| 1010 | justfound = tagptr_unfold_tags(t); |
| 1011 | page = tagptr_unfold_ptr(t); |
| 1012 | |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 1013 | mapping = READ_ONCE(page->mapping); |
| 1014 | |
| 1015 | /* |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 1016 | * unmanaged (file) pages are all locked solidly, |
| 1017 | * therefore it is impossible for `mapping' to be NULL. |
| 1018 | */ |
| 1019 | if (mapping && mapping != mc) |
| 1020 | /* ought to be unmanaged pages */ |
| 1021 | goto out; |
| 1022 | |
| 1023 | lock_page(page); |
| 1024 | |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 1025 | /* only true if page reclaim goes wrong, should never happen */ |
| 1026 | DBG_BUGON(justfound && PagePrivate(page)); |
| 1027 | |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 1028 | /* the page is still in manage cache */ |
| 1029 | if (page->mapping == mc) { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1030 | WRITE_ONCE(pcl->compressed_pages[nr], page); |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 1031 | |
Gao Xiang | 1115249 | 2019-03-25 11:40:07 +0800 | [diff] [blame] | 1032 | ClearPageError(page); |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 1033 | if (!PagePrivate(page)) { |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 1034 | /* |
| 1035 | * impossible to be !PagePrivate(page) for |
| 1036 | * the current restriction as well if |
| 1037 | * the page is already in compressed_pages[]. |
| 1038 | */ |
| 1039 | DBG_BUGON(!justfound); |
| 1040 | |
| 1041 | justfound = 0; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1042 | set_page_private(page, (unsigned long)pcl); |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 1043 | SetPagePrivate(page); |
| 1044 | } |
| 1045 | |
| 1046 | /* no need to submit io if it is already up-to-date */ |
| 1047 | if (PageUptodate(page)) { |
| 1048 | unlock_page(page); |
| 1049 | page = NULL; |
| 1050 | } |
| 1051 | goto out; |
| 1052 | } |
| 1053 | |
| 1054 | /* |
| 1055 | * the managed page has been truncated, it's unsafe to |
| 1056 | * reuse this one, let's allocate a new cache-managed page. |
| 1057 | */ |
| 1058 | DBG_BUGON(page->mapping); |
Gao Xiang | 92e6efd | 2018-12-08 00:19:16 +0800 | [diff] [blame] | 1059 | DBG_BUGON(!justfound); |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 1060 | |
| 1061 | tocache = true; |
| 1062 | unlock_page(page); |
| 1063 | put_page(page); |
| 1064 | out_allocpage: |
Gao Xiang | 5ddcee1 | 2019-11-21 21:59:54 +0800 | [diff] [blame] | 1065 | page = erofs_allocpage(pagepool, gfp | __GFP_NOFAIL); |
| 1066 | if (!tocache || add_to_page_cache_lru(page, mc, index + nr, gfp)) { |
| 1067 | /* non-LRU / non-movable temporary page is needed */ |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 1068 | page->mapping = Z_EROFS_MAPPING_STAGING; |
Gao Xiang | 5ddcee1 | 2019-11-21 21:59:54 +0800 | [diff] [blame] | 1069 | tocache = false; |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 1070 | } |
| 1071 | |
Gao Xiang | 5ddcee1 | 2019-11-21 21:59:54 +0800 | [diff] [blame] | 1072 | if (oldpage != cmpxchg(&pcl->compressed_pages[nr], oldpage, page)) { |
| 1073 | if (tocache) { |
| 1074 | /* since it added to managed cache successfully */ |
| 1075 | unlock_page(page); |
| 1076 | put_page(page); |
| 1077 | } else { |
| 1078 | list_add(&page->lru, pagepool); |
| 1079 | } |
| 1080 | cond_resched(); |
| 1081 | goto repeat; |
| 1082 | } |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1083 | set_page_private(page, (unsigned long)pcl); |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 1084 | SetPagePrivate(page); |
| 1085 | out: /* the only exit (for tracing and debugging) */ |
| 1086 | return page; |
| 1087 | } |
| 1088 | |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 1089 | static struct z_erofs_decompressqueue * |
| 1090 | jobqueue_init(struct super_block *sb, |
| 1091 | struct z_erofs_decompressqueue *fgq, bool *fg) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1092 | { |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 1093 | struct z_erofs_decompressqueue *q; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1094 | |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 1095 | if (fg && !*fg) { |
| 1096 | q = kvzalloc(sizeof(*q), GFP_KERNEL | __GFP_NOWARN); |
| 1097 | if (!q) { |
| 1098 | *fg = true; |
| 1099 | goto fg_out; |
| 1100 | } |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 1101 | INIT_WORK(&q->u.work, z_erofs_decompressqueue_work); |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 1102 | } else { |
| 1103 | fg_out: |
| 1104 | q = fgq; |
| 1105 | init_waitqueue_head(&fgq->u.wait); |
| 1106 | atomic_set(&fgq->pending_bios, 0); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1107 | } |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 1108 | q->sb = sb; |
| 1109 | q->head = Z_EROFS_PCLUSTER_TAIL_CLOSED; |
| 1110 | return q; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1111 | } |
| 1112 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1113 | /* define decompression jobqueue types */ |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1114 | enum { |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1115 | JQ_BYPASS, |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1116 | JQ_SUBMIT, |
| 1117 | NR_JOBQUEUES, |
| 1118 | }; |
| 1119 | |
| 1120 | static void *jobqueueset_init(struct super_block *sb, |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 1121 | struct z_erofs_decompressqueue *q[], |
| 1122 | struct z_erofs_decompressqueue *fgq, bool *fg) |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1123 | { |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1124 | /* |
| 1125 | * if managed cache is enabled, bypass jobqueue is needed, |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1126 | * no need to read from device for all pclusters in this queue. |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1127 | */ |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 1128 | q[JQ_BYPASS] = jobqueue_init(sb, fgq + JQ_BYPASS, NULL); |
| 1129 | q[JQ_SUBMIT] = jobqueue_init(sb, fgq + JQ_SUBMIT, fg); |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1130 | |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 1131 | return tagptr_cast_ptr(tagptr_fold(tagptr1_t, q[JQ_SUBMIT], *fg)); |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1132 | } |
| 1133 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1134 | static void move_to_bypass_jobqueue(struct z_erofs_pcluster *pcl, |
| 1135 | z_erofs_next_pcluster_t qtail[], |
| 1136 | z_erofs_next_pcluster_t owned_head) |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1137 | { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1138 | z_erofs_next_pcluster_t *const submit_qtail = qtail[JQ_SUBMIT]; |
| 1139 | z_erofs_next_pcluster_t *const bypass_qtail = qtail[JQ_BYPASS]; |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1140 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1141 | DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED); |
| 1142 | if (owned_head == Z_EROFS_PCLUSTER_TAIL) |
| 1143 | owned_head = Z_EROFS_PCLUSTER_TAIL_CLOSED; |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1144 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1145 | WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_TAIL_CLOSED); |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1146 | |
| 1147 | WRITE_ONCE(*submit_qtail, owned_head); |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1148 | WRITE_ONCE(*bypass_qtail, &pcl->next); |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1149 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1150 | qtail[JQ_BYPASS] = &pcl->next; |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1151 | } |
| 1152 | |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1153 | static void z_erofs_submit_queue(struct super_block *sb, |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 1154 | z_erofs_next_pcluster_t owned_head, |
| 1155 | struct list_head *pagepool, |
| 1156 | struct z_erofs_decompressqueue *fgq, |
| 1157 | bool *force_fg) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1158 | { |
Gao Xiang | bda17a4 | 2019-10-08 20:56:13 +0800 | [diff] [blame] | 1159 | struct erofs_sb_info *const sbi = EROFS_SB(sb); |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1160 | z_erofs_next_pcluster_t qtail[NR_JOBQUEUES]; |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 1161 | struct z_erofs_decompressqueue *q[NR_JOBQUEUES]; |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1162 | void *bi_private; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1163 | /* since bio will be NULL, no need to initialize last_index */ |
| 1164 | pgoff_t uninitialized_var(last_index); |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1165 | unsigned int nr_bios = 0; |
| 1166 | struct bio *bio = NULL; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1167 | |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 1168 | bi_private = jobqueueset_init(sb, q, fgq, force_fg); |
| 1169 | qtail[JQ_BYPASS] = &q[JQ_BYPASS]->head; |
| 1170 | qtail[JQ_SUBMIT] = &q[JQ_SUBMIT]->head; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1171 | |
| 1172 | /* by default, all need io submission */ |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1173 | q[JQ_SUBMIT]->head = owned_head; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1174 | |
| 1175 | do { |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1176 | struct z_erofs_pcluster *pcl; |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1177 | pgoff_t cur, end; |
| 1178 | unsigned int i = 0; |
| 1179 | bool bypass = true; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1180 | |
| 1181 | /* no possible 'owned_head' equals the following */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1182 | DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED); |
| 1183 | DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_NIL); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1184 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1185 | pcl = container_of(owned_head, struct z_erofs_pcluster, next); |
| 1186 | |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1187 | cur = pcl->obj.index; |
| 1188 | end = cur + BIT(pcl->clusterbits); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1189 | |
| 1190 | /* close the main owned chain at first */ |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1191 | owned_head = cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_TAIL, |
| 1192 | Z_EROFS_PCLUSTER_TAIL_CLOSED); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1193 | |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1194 | do { |
| 1195 | struct page *page; |
| 1196 | int err; |
Gao Xiang | 9248fce | 2018-12-08 00:19:15 +0800 | [diff] [blame] | 1197 | |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1198 | page = pickup_page_for_submission(pcl, i++, pagepool, |
| 1199 | MNGD_MAPPING(sbi), |
| 1200 | GFP_NOFS); |
| 1201 | if (!page) |
| 1202 | continue; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1203 | |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1204 | if (bio && cur != last_index + 1) { |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1205 | submit_bio_retry: |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1206 | submit_bio(bio); |
| 1207 | bio = NULL; |
| 1208 | } |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1209 | |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1210 | if (!bio) { |
| 1211 | bio = bio_alloc(GFP_NOIO, BIO_MAX_PAGES); |
Gao Xiang | a5c0b78 | 2019-09-04 10:09:02 +0800 | [diff] [blame] | 1212 | |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1213 | bio->bi_end_io = z_erofs_decompressqueue_endio; |
| 1214 | bio_set_dev(bio, sb->s_bdev); |
| 1215 | bio->bi_iter.bi_sector = (sector_t)cur << |
| 1216 | LOG_SECTORS_PER_BLOCK; |
| 1217 | bio->bi_private = bi_private; |
| 1218 | bio->bi_opf = REQ_OP_READ; |
| 1219 | ++nr_bios; |
| 1220 | } |
Gao Xiang | 94e4e15 | 2019-09-04 10:09:04 +0800 | [diff] [blame] | 1221 | |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1222 | err = bio_add_page(bio, page, PAGE_SIZE, 0); |
| 1223 | if (err < PAGE_SIZE) |
| 1224 | goto submit_bio_retry; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1225 | |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1226 | last_index = cur; |
| 1227 | bypass = false; |
| 1228 | } while (++cur < end); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1229 | |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1230 | if (!bypass) |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1231 | qtail[JQ_SUBMIT] = &pcl->next; |
Gao Xiang | 7146a4f | 2018-12-08 00:19:18 +0800 | [diff] [blame] | 1232 | else |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1233 | move_to_bypass_jobqueue(pcl, qtail, owned_head); |
| 1234 | } while (owned_head != Z_EROFS_PCLUSTER_TAIL); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1235 | |
Cristian Sicilia | 42d40b4 | 2018-11-12 21:43:57 +0100 | [diff] [blame] | 1236 | if (bio) |
Gao Xiang | 94e4e15 | 2019-09-04 10:09:04 +0800 | [diff] [blame] | 1237 | submit_bio(bio); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1238 | |
Gao Xiang | 587a67b | 2020-01-21 14:47:47 +0800 | [diff] [blame] | 1239 | /* |
| 1240 | * although background is preferred, no one is pending for submission. |
| 1241 | * don't issue workqueue for decompression but drop it directly instead. |
| 1242 | */ |
| 1243 | if (!*force_fg && !nr_bios) { |
| 1244 | kvfree(q[JQ_SUBMIT]); |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1245 | return; |
Gao Xiang | 587a67b | 2020-01-21 14:47:47 +0800 | [diff] [blame] | 1246 | } |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 1247 | z_erofs_decompress_kickoff(q[JQ_SUBMIT], *force_fg, nr_bios); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1248 | } |
| 1249 | |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 1250 | static void z_erofs_runqueue(struct super_block *sb, |
| 1251 | struct z_erofs_collector *clt, |
| 1252 | struct list_head *pagepool, bool force_fg) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1253 | { |
Gao Xiang | a4b1fab | 2019-10-08 20:56:15 +0800 | [diff] [blame] | 1254 | struct z_erofs_decompressqueue io[NR_JOBQUEUES]; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1255 | |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1256 | if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1257 | return; |
Gao Xiang | 1e4a295 | 2020-01-21 14:48:19 +0800 | [diff] [blame] | 1258 | z_erofs_submit_queue(sb, clt->owned_head, pagepool, io, &force_fg); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1259 | |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 1260 | /* handle bypass queue (no i/o pclusters) immediately */ |
| 1261 | z_erofs_decompress_queue(&io[JQ_BYPASS], pagepool); |
Gao Xiang | 4279f3f | 2019-07-31 23:57:49 +0800 | [diff] [blame] | 1262 | |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1263 | if (!force_fg) |
| 1264 | return; |
| 1265 | |
| 1266 | /* wait until all bios are completed */ |
Gao Xiang | a93f8c3 | 2019-10-08 20:56:16 +0800 | [diff] [blame] | 1267 | io_wait_event(io[JQ_SUBMIT].u.wait, |
| 1268 | !atomic_read(&io[JQ_SUBMIT].pending_bios)); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1269 | |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 1270 | /* handle synchronous decompress queue in the caller context */ |
| 1271 | z_erofs_decompress_queue(&io[JQ_SUBMIT], pagepool); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1272 | } |
| 1273 | |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 1274 | static int z_erofs_readpage(struct file *file, struct page *page) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1275 | { |
| 1276 | struct inode *const inode = page->mapping->host; |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1277 | struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1278 | int err; |
| 1279 | LIST_HEAD(pagepool); |
| 1280 | |
Gao Xiang | ba9ce77 | 2018-11-23 01:15:58 +0800 | [diff] [blame] | 1281 | trace_erofs_readpage(page, false); |
| 1282 | |
Gao Xiang | f0c519f | 2018-11-23 01:21:49 +0800 | [diff] [blame] | 1283 | f.headoffset = (erofs_off_t)page->index << PAGE_SHIFT; |
| 1284 | |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1285 | err = z_erofs_do_read_page(&f, page, &pagepool); |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1286 | (void)z_erofs_collector_end(&f.clt); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1287 | |
Gao Xiang | ee45197 | 2019-08-19 18:34:21 +0800 | [diff] [blame] | 1288 | /* if some compressed cluster ready, need submit them anyway */ |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 1289 | z_erofs_runqueue(inode->i_sb, &f.clt, &pagepool, true); |
Gao Xiang | ee45197 | 2019-08-19 18:34:21 +0800 | [diff] [blame] | 1290 | |
| 1291 | if (err) |
Gao Xiang | 4f761fa | 2019-09-04 10:09:09 +0800 | [diff] [blame] | 1292 | erofs_err(inode->i_sb, "failed to read, err [%d]", err); |
Gao Xiang | ee45197 | 2019-08-19 18:34:21 +0800 | [diff] [blame] | 1293 | |
Chao Yu | 3b42341 | 2019-01-15 09:42:21 +0800 | [diff] [blame] | 1294 | if (f.map.mpage) |
| 1295 | put_page(f.map.mpage); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1296 | |
| 1297 | /* clean up the remaining free pages */ |
| 1298 | put_pages_list(&pagepool); |
Gao Xiang | ee45197 | 2019-08-19 18:34:21 +0800 | [diff] [blame] | 1299 | return err; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1300 | } |
| 1301 | |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 1302 | static bool should_decompress_synchronously(struct erofs_sb_info *sbi, |
| 1303 | unsigned int nr) |
| 1304 | { |
| 1305 | return nr <= sbi->max_sync_decompress_pages; |
| 1306 | } |
| 1307 | |
Matthew Wilcox (Oracle) | 0615090 | 2020-06-01 21:47:13 -0700 | [diff] [blame^] | 1308 | static void z_erofs_readahead(struct readahead_control *rac) |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1309 | { |
Matthew Wilcox (Oracle) | 0615090 | 2020-06-01 21:47:13 -0700 | [diff] [blame^] | 1310 | struct inode *const inode = rac->mapping->host; |
Gao Xiang | 5fb76bb | 2018-09-20 00:06:56 +0800 | [diff] [blame] | 1311 | struct erofs_sb_info *const sbi = EROFS_I_SB(inode); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1312 | |
Matthew Wilcox (Oracle) | 0615090 | 2020-06-01 21:47:13 -0700 | [diff] [blame^] | 1313 | bool sync = should_decompress_synchronously(sbi, readahead_count(rac)); |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1314 | struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode); |
Matthew Wilcox (Oracle) | 0615090 | 2020-06-01 21:47:13 -0700 | [diff] [blame^] | 1315 | struct page *page, *head = NULL; |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1316 | LIST_HEAD(pagepool); |
| 1317 | |
Matthew Wilcox (Oracle) | 0615090 | 2020-06-01 21:47:13 -0700 | [diff] [blame^] | 1318 | trace_erofs_readpages(inode, readahead_index(rac), |
| 1319 | readahead_count(rac), false); |
Chen Gong | 284db12 | 2018-09-18 22:27:27 +0800 | [diff] [blame] | 1320 | |
Matthew Wilcox (Oracle) | 0615090 | 2020-06-01 21:47:13 -0700 | [diff] [blame^] | 1321 | f.headoffset = readahead_pos(rac); |
Gao Xiang | f0c519f | 2018-11-23 01:21:49 +0800 | [diff] [blame] | 1322 | |
Matthew Wilcox (Oracle) | 0615090 | 2020-06-01 21:47:13 -0700 | [diff] [blame^] | 1323 | while ((page = readahead_page(rac))) { |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1324 | prefetchw(&page->flags); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1325 | |
Gao Xiang | 2d9b5dc | 2018-11-23 01:21:48 +0800 | [diff] [blame] | 1326 | /* |
| 1327 | * A pure asynchronous readahead is indicated if |
| 1328 | * a PG_readahead marked page is hitted at first. |
| 1329 | * Let's also do asynchronous decompression for this case. |
| 1330 | */ |
| 1331 | sync &= !(PageReadahead(page) && !head); |
| 1332 | |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1333 | set_page_private(page, (unsigned long)head); |
| 1334 | head = page; |
| 1335 | } |
| 1336 | |
Cristian Sicilia | 42d40b4 | 2018-11-12 21:43:57 +0100 | [diff] [blame] | 1337 | while (head) { |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1338 | struct page *page = head; |
| 1339 | int err; |
| 1340 | |
| 1341 | /* traversal in reverse order */ |
| 1342 | head = (void *)page_private(page); |
| 1343 | |
| 1344 | err = z_erofs_do_read_page(&f, page, &pagepool); |
Gao Xiang | a5876e2 | 2019-09-04 10:08:56 +0800 | [diff] [blame] | 1345 | if (err) |
Gao Xiang | 4f761fa | 2019-09-04 10:09:09 +0800 | [diff] [blame] | 1346 | erofs_err(inode->i_sb, |
| 1347 | "readahead error at page %lu @ nid %llu", |
| 1348 | page->index, EROFS_I(inode)->nid); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1349 | put_page(page); |
| 1350 | } |
| 1351 | |
Gao Xiang | 97e86a8 | 2019-07-31 23:57:47 +0800 | [diff] [blame] | 1352 | (void)z_erofs_collector_end(&f.clt); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1353 | |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 1354 | z_erofs_runqueue(inode->i_sb, &f.clt, &pagepool, sync); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1355 | |
Chao Yu | 3b42341 | 2019-01-15 09:42:21 +0800 | [diff] [blame] | 1356 | if (f.map.mpage) |
| 1357 | put_page(f.map.mpage); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1358 | |
| 1359 | /* clean up the remaining free pages */ |
| 1360 | put_pages_list(&pagepool); |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1361 | } |
| 1362 | |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 1363 | const struct address_space_operations z_erofs_aops = { |
| 1364 | .readpage = z_erofs_readpage, |
Matthew Wilcox (Oracle) | 0615090 | 2020-06-01 21:47:13 -0700 | [diff] [blame^] | 1365 | .readahead = z_erofs_readahead, |
Gao Xiang | 3883a79 | 2018-07-26 20:22:06 +0800 | [diff] [blame] | 1366 | }; |
Gao Xiang | 02827e1 | 2018-07-26 20:21:58 +0800 | [diff] [blame] | 1367 | |