blob: 8587d6751c4870f0e3402d2f86735d93db7d952f [file] [log] [blame]
Gao Xiang29b24f62019-07-31 23:57:31 +08001// SPDX-License-Identifier: GPL-2.0-only
Gao Xiang02827e12018-07-26 20:21:58 +08002/*
Gao Xiang02827e12018-07-26 20:21:58 +08003 * Copyright (C) 2018 HUAWEI, Inc.
4 * http://www.huawei.com/
5 * Created by Gao Xiang <gaoxiang25@huawei.com>
Gao Xiang02827e12018-07-26 20:21:58 +08006 */
Gao Xiang57b78c92019-07-31 23:57:32 +08007#include "zdata.h"
Gao Xiang27481232019-06-24 15:22:54 +08008#include "compress.h"
Gao Xiang3883a792018-07-26 20:22:06 +08009#include <linux/prefetch.h>
10
Chen Gong284db122018-09-18 22:27:27 +080011#include <trace/events/erofs.h>
12
Gao Xiang672e5472018-12-08 00:19:14 +080013/*
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 Xiang97e86a82019-07-31 23:57:47 +080019/* how to allocate cached pages for a pcluster */
Gao Xiang92e6efd2018-12-08 00:19:16 +080020enum 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 */
29typedef tagptr1_t compressed_page_t;
30
31#define tag_compressed_page_justfound(page) \
32 tagptr_fold(compressed_page_t, page, 1)
33
Gao Xiang3883a792018-07-26 20:22:06 +080034static struct workqueue_struct *z_erofs_workqueue __read_mostly;
Gao Xiang97e86a82019-07-31 23:57:47 +080035static struct kmem_cache *pcluster_cachep __read_mostly;
Gao Xiang3883a792018-07-26 20:22:06 +080036
37void z_erofs_exit_zip_subsystem(void)
38{
Gao Xiang3883a792018-07-26 20:22:06 +080039 destroy_workqueue(z_erofs_workqueue);
Gao Xiang97e86a82019-07-31 23:57:47 +080040 kmem_cache_destroy(pcluster_cachep);
Gao Xiang3883a792018-07-26 20:22:06 +080041}
42
Gao Xiang99634bf2019-09-04 10:09:05 +080043static inline int z_erofs_init_workqueue(void)
Gao Xiang3883a792018-07-26 20:22:06 +080044{
Thomas Weißschuh7dd68b12018-09-10 21:41:14 +020045 const unsigned int onlinecpus = num_possible_cpus();
Gao Xiang97e86a82019-07-31 23:57:47 +080046 const unsigned int flags = WQ_UNBOUND | WQ_HIGHPRI | WQ_CPU_INTENSIVE;
Gao Xiang3883a792018-07-26 20:22:06 +080047
48 /*
Gao Xiang97e86a82019-07-31 23:57:47 +080049 * no need to spawn too many threads, limiting threads could minimum
50 * scheduling overhead, perhaps per-CPU threads should be better?
Gao Xiang3883a792018-07-26 20:22:06 +080051 */
Gao Xiang97e86a82019-07-31 23:57:47 +080052 z_erofs_workqueue = alloc_workqueue("erofs_unzipd", flags,
53 onlinecpus + onlinecpus / 4);
Cristian Sicilia42d40b42018-11-12 21:43:57 +010054 return z_erofs_workqueue ? 0 : -ENOMEM;
Gao Xiang3883a792018-07-26 20:22:06 +080055}
56
Gao Xiang99634bf2019-09-04 10:09:05 +080057static void z_erofs_pcluster_init_once(void *ptr)
Gao Xiang48d4bf32018-11-23 01:21:46 +080058{
Gao Xiang97e86a82019-07-31 23:57:47 +080059 struct z_erofs_pcluster *pcl = ptr;
60 struct z_erofs_collection *cl = z_erofs_primarycollection(pcl);
Gao Xiang48d4bf32018-11-23 01:21:46 +080061 unsigned int i;
62
Gao Xiang97e86a82019-07-31 23:57:47 +080063 mutex_init(&cl->lock);
64 cl->nr_pages = 0;
65 cl->vcnt = 0;
Gao Xiang48d4bf32018-11-23 01:21:46 +080066 for (i = 0; i < Z_EROFS_CLUSTER_MAX_PAGES; ++i)
Gao Xiang97e86a82019-07-31 23:57:47 +080067 pcl->compressed_pages[i] = NULL;
Gao Xiang48d4bf32018-11-23 01:21:46 +080068}
69
Gao Xiang99634bf2019-09-04 10:09:05 +080070static void z_erofs_pcluster_init_always(struct z_erofs_pcluster *pcl)
Gao Xiang48d4bf32018-11-23 01:21:46 +080071{
Gao Xiang97e86a82019-07-31 23:57:47 +080072 struct z_erofs_collection *cl = z_erofs_primarycollection(pcl);
Gao Xiang48d4bf32018-11-23 01:21:46 +080073
Gao Xiang97e86a82019-07-31 23:57:47 +080074 atomic_set(&pcl->obj.refcount, 1);
Gao Xiang48d4bf32018-11-23 01:21:46 +080075
Gao Xiang97e86a82019-07-31 23:57:47 +080076 DBG_BUGON(cl->nr_pages);
77 DBG_BUGON(cl->vcnt);
Gao Xiang48d4bf32018-11-23 01:21:46 +080078}
79
Gao Xiang0a0b7e62018-10-09 21:43:53 +080080int __init z_erofs_init_zip_subsystem(void)
Gao Xiang3883a792018-07-26 20:22:06 +080081{
Gao Xiang97e86a82019-07-31 23:57:47 +080082 pcluster_cachep = kmem_cache_create("erofs_compress",
83 Z_EROFS_WORKGROUP_SIZE, 0,
Gao Xiang99634bf2019-09-04 10:09:05 +080084 SLAB_RECLAIM_ACCOUNT,
85 z_erofs_pcluster_init_once);
Gao Xiang97e86a82019-07-31 23:57:47 +080086 if (pcluster_cachep) {
Gao Xiang99634bf2019-09-04 10:09:05 +080087 if (!z_erofs_init_workqueue())
Gao Xiang3883a792018-07-26 20:22:06 +080088 return 0;
89
Gao Xiang97e86a82019-07-31 23:57:47 +080090 kmem_cache_destroy(pcluster_cachep);
Gao Xiang3883a792018-07-26 20:22:06 +080091 }
92 return -ENOMEM;
93}
94
Gao Xiang97e86a82019-07-31 23:57:47 +080095enum z_erofs_collectmode {
96 COLLECT_SECONDARY,
97 COLLECT_PRIMARY,
Gao Xiang3883a792018-07-26 20:22:06 +080098 /*
Gao Xiang97e86a82019-07-31 23:57:47 +080099 * The current collection was the tail of an exist chain, in addition
100 * that the previous processed chained collections are all decided to
101 * be hooked up to it.
102 * A new chain will be created for the remaining collections which are
103 * not processed yet, therefore different from COLLECT_PRIMARY_FOLLOWED,
104 * the next collection cannot reuse the whole page safely in
105 * the following scenario:
Gao Xianga1121522019-02-27 13:33:32 +0800106 * ________________________________________________________________
107 * | tail (partial) page | head (partial) page |
Gao Xiang97e86a82019-07-31 23:57:47 +0800108 * | (belongs to the next cl) | (belongs to the current cl) |
Gao Xianga1121522019-02-27 13:33:32 +0800109 * |_______PRIMARY_FOLLOWED_______|________PRIMARY_HOOKED___________|
110 */
Gao Xiang97e86a82019-07-31 23:57:47 +0800111 COLLECT_PRIMARY_HOOKED,
112 COLLECT_PRIMARY_FOLLOWED_NOINPLACE,
Gao Xianga1121522019-02-27 13:33:32 +0800113 /*
Gao Xiang97e86a82019-07-31 23:57:47 +0800114 * The current collection has been linked with the owned chain, and
115 * could also be linked with the remaining collections, which means
116 * if the processing page is the tail page of the collection, thus
117 * the current collection can safely use the whole page (since
118 * the previous collection is under control) for in-place I/O, as
119 * illustrated below:
Gao Xianga1121522019-02-27 13:33:32 +0800120 * ________________________________________________________________
Gao Xiang97e86a82019-07-31 23:57:47 +0800121 * | tail (partial) page | head (partial) page |
122 * | (of the current cl) | (of the previous collection) |
123 * | PRIMARY_FOLLOWED or | |
124 * |_____PRIMARY_HOOKED___|____________PRIMARY_FOLLOWED____________|
Gao Xianga1121522019-02-27 13:33:32 +0800125 *
Gao Xiang97e86a82019-07-31 23:57:47 +0800126 * [ (*) the above page can be used as inplace I/O. ]
Gao Xiang3883a792018-07-26 20:22:06 +0800127 */
Gao Xiang97e86a82019-07-31 23:57:47 +0800128 COLLECT_PRIMARY_FOLLOWED,
Gao Xiang3883a792018-07-26 20:22:06 +0800129};
130
Gao Xiang97e86a82019-07-31 23:57:47 +0800131struct z_erofs_collector {
Gao Xiang3883a792018-07-26 20:22:06 +0800132 struct z_erofs_pagevec_ctor vector;
133
Gao Xiangbfc4ccb2019-08-21 11:09:08 +0800134 struct z_erofs_pcluster *pcl, *tailpcl;
Gao Xiang97e86a82019-07-31 23:57:47 +0800135 struct z_erofs_collection *cl;
136 struct page **compressedpages;
137 z_erofs_next_pcluster_t owned_head;
138
139 enum z_erofs_collectmode mode;
Gao Xiang3883a792018-07-26 20:22:06 +0800140};
141
Gao Xiang97e86a82019-07-31 23:57:47 +0800142struct z_erofs_decompress_frontend {
143 struct inode *const inode;
144
145 struct z_erofs_collector clt;
146 struct erofs_map_blocks map;
147
148 /* used for applying cache strategy on the fly */
149 bool backmost;
150 erofs_off_t headoffset;
151};
152
153#define COLLECTOR_INIT() { \
154 .owned_head = Z_EROFS_PCLUSTER_TAIL, \
155 .mode = COLLECT_PRIMARY_FOLLOWED }
156
157#define DECOMPRESS_FRONTEND_INIT(__i) { \
158 .inode = __i, .clt = COLLECTOR_INIT(), \
159 .backmost = true, }
160
161static struct page *z_pagemap_global[Z_EROFS_VMAP_GLOBAL_PAGES];
162static DEFINE_MUTEX(z_pagemap_global_lock);
Gao Xiang3883a792018-07-26 20:22:06 +0800163
Gao Xiang97e86a82019-07-31 23:57:47 +0800164static void preload_compressed_pages(struct z_erofs_collector *clt,
Gao Xiang92e6efd2018-12-08 00:19:16 +0800165 struct address_space *mc,
Gao Xiang92e6efd2018-12-08 00:19:16 +0800166 enum z_erofs_cache_alloctype type,
Gao Xiang97e86a82019-07-31 23:57:47 +0800167 struct list_head *pagepool)
Gao Xiang105d4ad2018-07-26 20:22:07 +0800168{
Gao Xiang97e86a82019-07-31 23:57:47 +0800169 const struct z_erofs_pcluster *pcl = clt->pcl;
170 const unsigned int clusterpages = BIT(pcl->clusterbits);
171 struct page **pages = clt->compressedpages;
172 pgoff_t index = pcl->obj.index + (pages - pcl->compressed_pages);
Gao Xiang92e6efd2018-12-08 00:19:16 +0800173 bool standalone = true;
Gao Xiang105d4ad2018-07-26 20:22:07 +0800174
Gao Xiang97e86a82019-07-31 23:57:47 +0800175 if (clt->mode < COLLECT_PRIMARY_FOLLOWED)
Gao Xiang92e6efd2018-12-08 00:19:16 +0800176 return;
Gao Xiang105d4ad2018-07-26 20:22:07 +0800177
Gao Xiang97e86a82019-07-31 23:57:47 +0800178 for (; pages < pcl->compressed_pages + clusterpages; ++pages) {
Gao Xiang92e6efd2018-12-08 00:19:16 +0800179 struct page *page;
180 compressed_page_t t;
181
182 /* the compressed page was loaded before */
Gao Xiang97e86a82019-07-31 23:57:47 +0800183 if (READ_ONCE(*pages))
Gao Xiang105d4ad2018-07-26 20:22:07 +0800184 continue;
185
Gao Xiang97e86a82019-07-31 23:57:47 +0800186 page = find_get_page(mc, index);
Gao Xiang92e6efd2018-12-08 00:19:16 +0800187
188 if (page) {
189 t = tag_compressed_page_justfound(page);
190 } else if (type == DELAYEDALLOC) {
191 t = tagptr_init(compressed_page_t, PAGE_UNALLOCATED);
192 } else { /* DONTALLOC */
193 if (standalone)
Gao Xiang97e86a82019-07-31 23:57:47 +0800194 clt->compressedpages = pages;
Gao Xiang92e6efd2018-12-08 00:19:16 +0800195 standalone = false;
196 continue;
Gao Xiang105d4ad2018-07-26 20:22:07 +0800197 }
198
Gao Xiang97e86a82019-07-31 23:57:47 +0800199 if (!cmpxchg_relaxed(pages, NULL, tagptr_cast_ptr(t)))
Gao Xiang105d4ad2018-07-26 20:22:07 +0800200 continue;
201
Gao Xiang92e6efd2018-12-08 00:19:16 +0800202 if (page)
203 put_page(page);
Gao Xiang105d4ad2018-07-26 20:22:07 +0800204 }
Gao Xiang92e6efd2018-12-08 00:19:16 +0800205
Gao Xiang97e86a82019-07-31 23:57:47 +0800206 if (standalone) /* downgrade to PRIMARY_FOLLOWED_NOINPLACE */
207 clt->mode = COLLECT_PRIMARY_FOLLOWED_NOINPLACE;
Gao Xiang105d4ad2018-07-26 20:22:07 +0800208}
209
210/* called by erofs_shrinker to get rid of all compressed_pages */
Gao Xiang47e541a2018-07-29 13:34:58 +0800211int erofs_try_to_free_all_cached_pages(struct erofs_sb_info *sbi,
Gao Xiang97e86a82019-07-31 23:57:47 +0800212 struct erofs_workgroup *grp)
Gao Xiang105d4ad2018-07-26 20:22:07 +0800213{
Gao Xiang97e86a82019-07-31 23:57:47 +0800214 struct z_erofs_pcluster *const pcl =
215 container_of(grp, struct z_erofs_pcluster, obj);
Gao Xiangc1448fa2018-12-08 00:19:13 +0800216 struct address_space *const mapping = MNGD_MAPPING(sbi);
Gao Xiang97e86a82019-07-31 23:57:47 +0800217 const unsigned int clusterpages = BIT(pcl->clusterbits);
Gao Xiang105d4ad2018-07-26 20:22:07 +0800218 int i;
219
220 /*
221 * refcount of workgroup is now freezed as 1,
222 * therefore no need to worry about available decompression users.
223 */
224 for (i = 0; i < clusterpages; ++i) {
Gao Xiang97e86a82019-07-31 23:57:47 +0800225 struct page *page = pcl->compressed_pages[i];
Gao Xiang105d4ad2018-07-26 20:22:07 +0800226
Gao Xiang97e86a82019-07-31 23:57:47 +0800227 if (!page)
Gao Xiang105d4ad2018-07-26 20:22:07 +0800228 continue;
229
230 /* block other users from reclaiming or migrating the page */
231 if (!trylock_page(page))
232 return -EBUSY;
233
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800234 if (page->mapping != mapping)
Gao Xiang97e86a82019-07-31 23:57:47 +0800235 continue;
Gao Xiang105d4ad2018-07-26 20:22:07 +0800236
Gao Xiang97e86a82019-07-31 23:57:47 +0800237 /* barrier is implied in the following 'unlock_page' */
238 WRITE_ONCE(pcl->compressed_pages[i], NULL);
Gao Xiang105d4ad2018-07-26 20:22:07 +0800239 set_page_private(page, 0);
240 ClearPagePrivate(page);
241
242 unlock_page(page);
243 put_page(page);
244 }
245 return 0;
246}
247
Gao Xiang47e541a2018-07-29 13:34:58 +0800248int erofs_try_to_free_cached_page(struct address_space *mapping,
249 struct page *page)
Gao Xiang105d4ad2018-07-26 20:22:07 +0800250{
Gao Xiang97e86a82019-07-31 23:57:47 +0800251 struct z_erofs_pcluster *const pcl = (void *)page_private(page);
252 const unsigned int clusterpages = BIT(pcl->clusterbits);
Gao Xiang105d4ad2018-07-26 20:22:07 +0800253 int ret = 0; /* 0 - busy */
254
Gao Xiang97e86a82019-07-31 23:57:47 +0800255 if (erofs_workgroup_try_to_freeze(&pcl->obj, 1)) {
Gao Xiang105d4ad2018-07-26 20:22:07 +0800256 unsigned int i;
257
258 for (i = 0; i < clusterpages; ++i) {
Gao Xiang97e86a82019-07-31 23:57:47 +0800259 if (pcl->compressed_pages[i] == page) {
260 WRITE_ONCE(pcl->compressed_pages[i], NULL);
Gao Xiang105d4ad2018-07-26 20:22:07 +0800261 ret = 1;
262 break;
263 }
264 }
Gao Xiang97e86a82019-07-31 23:57:47 +0800265 erofs_workgroup_unfreeze(&pcl->obj, 1);
Gao Xiang105d4ad2018-07-26 20:22:07 +0800266
Gao Xiang047d4ab2019-02-16 16:46:50 +0800267 if (ret) {
268 ClearPagePrivate(page);
269 put_page(page);
270 }
Gao Xiang105d4ad2018-07-26 20:22:07 +0800271 }
272 return ret;
273}
Gao Xiang105d4ad2018-07-26 20:22:07 +0800274
Gao Xiang3883a792018-07-26 20:22:06 +0800275/* page_type must be Z_EROFS_PAGE_TYPE_EXCLUSIVE */
Gao Xiang99634bf2019-09-04 10:09:05 +0800276static inline bool z_erofs_try_inplace_io(struct z_erofs_collector *clt,
277 struct page *page)
Gao Xiang3883a792018-07-26 20:22:06 +0800278{
Gao Xiang97e86a82019-07-31 23:57:47 +0800279 struct z_erofs_pcluster *const pcl = clt->pcl;
280 const unsigned int clusterpages = BIT(pcl->clusterbits);
281
282 while (clt->compressedpages < pcl->compressed_pages + clusterpages) {
283 if (!cmpxchg(clt->compressedpages++, NULL, page))
Gao Xiang3883a792018-07-26 20:22:06 +0800284 return true;
285 }
Gao Xiang3883a792018-07-26 20:22:06 +0800286 return false;
287}
288
Gao Xiang97e86a82019-07-31 23:57:47 +0800289/* callers must be with collection lock held */
290static int z_erofs_attach_page(struct z_erofs_collector *clt,
291 struct page *page,
292 enum z_erofs_page_type type)
Gao Xiang3883a792018-07-26 20:22:06 +0800293{
294 int ret;
295 bool occupied;
296
Gao Xiang97e86a82019-07-31 23:57:47 +0800297 /* give priority for inplaceio */
298 if (clt->mode >= COLLECT_PRIMARY &&
Julian Merida447a3622019-03-18 20:58:41 -0300299 type == Z_EROFS_PAGE_TYPE_EXCLUSIVE &&
Gao Xiang99634bf2019-09-04 10:09:05 +0800300 z_erofs_try_inplace_io(clt, page))
Gao Xiang3883a792018-07-26 20:22:06 +0800301 return 0;
302
Gao Xiang97e86a82019-07-31 23:57:47 +0800303 ret = z_erofs_pagevec_enqueue(&clt->vector,
Gao Xiang046d64e2019-07-31 23:57:45 +0800304 page, type, &occupied);
Gao Xiang97e86a82019-07-31 23:57:47 +0800305 clt->cl->vcnt += (unsigned int)ret;
Gao Xiang3883a792018-07-26 20:22:06 +0800306
307 return ret ? 0 : -EAGAIN;
308}
309
Gao Xiang97e86a82019-07-31 23:57:47 +0800310static enum z_erofs_collectmode
311try_to_claim_pcluster(struct z_erofs_pcluster *pcl,
312 z_erofs_next_pcluster_t *owned_head)
Gao Xiang3883a792018-07-26 20:22:06 +0800313{
Gao Xiang97e86a82019-07-31 23:57:47 +0800314 /* let's claim these following types of pclusters */
Gao Xiang3883a792018-07-26 20:22:06 +0800315retry:
Gao Xiang97e86a82019-07-31 23:57:47 +0800316 if (pcl->next == Z_EROFS_PCLUSTER_NIL) {
317 /* type 1, nil pcluster */
318 if (cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_NIL,
319 *owned_head) != Z_EROFS_PCLUSTER_NIL)
Gao Xiang3883a792018-07-26 20:22:06 +0800320 goto retry;
321
Gao Xiang97e86a82019-07-31 23:57:47 +0800322 *owned_head = &pcl->next;
Gao Xianga1121522019-02-27 13:33:32 +0800323 /* lucky, I am the followee :) */
Gao Xiang97e86a82019-07-31 23:57:47 +0800324 return COLLECT_PRIMARY_FOLLOWED;
325 } else if (pcl->next == Z_EROFS_PCLUSTER_TAIL) {
Gao Xiang3883a792018-07-26 20:22:06 +0800326 /*
327 * type 2, link to the end of a existing open chain,
328 * be careful that its submission itself is governed
329 * by the original owned chain.
330 */
Gao Xiang97e86a82019-07-31 23:57:47 +0800331 if (cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_TAIL,
332 *owned_head) != Z_EROFS_PCLUSTER_TAIL)
Gao Xiang3883a792018-07-26 20:22:06 +0800333 goto retry;
Gao Xiang97e86a82019-07-31 23:57:47 +0800334 *owned_head = Z_EROFS_PCLUSTER_TAIL;
335 return COLLECT_PRIMARY_HOOKED;
Gao Xianga1121522019-02-27 13:33:32 +0800336 }
Gao Xiang97e86a82019-07-31 23:57:47 +0800337 return COLLECT_PRIMARY; /* :( better luck next time */
Gao Xiang3883a792018-07-26 20:22:06 +0800338}
339
Gao Xiang97e86a82019-07-31 23:57:47 +0800340static struct z_erofs_collection *cllookup(struct z_erofs_collector *clt,
341 struct inode *inode,
342 struct erofs_map_blocks *map)
Gao Xiang3883a792018-07-26 20:22:06 +0800343{
Gao Xiang97e86a82019-07-31 23:57:47 +0800344 struct erofs_workgroup *grp;
345 struct z_erofs_pcluster *pcl;
346 struct z_erofs_collection *cl;
347 unsigned int length;
348 bool tag;
Gao Xiang3883a792018-07-26 20:22:06 +0800349
Gao Xiang97e86a82019-07-31 23:57:47 +0800350 grp = erofs_find_workgroup(inode->i_sb, map->m_pa >> PAGE_SHIFT, &tag);
351 if (!grp)
Gao Xiang3883a792018-07-26 20:22:06 +0800352 return NULL;
Gao Xiang97e86a82019-07-31 23:57:47 +0800353
354 pcl = container_of(grp, struct z_erofs_pcluster, obj);
Gao Xiangbfc4ccb2019-08-21 11:09:08 +0800355 if (clt->owned_head == &pcl->next || pcl == clt->tailpcl) {
356 DBG_BUGON(1);
357 erofs_workgroup_put(grp);
358 return ERR_PTR(-EFSCORRUPTED);
359 }
Gao Xiang97e86a82019-07-31 23:57:47 +0800360
361 cl = z_erofs_primarycollection(pcl);
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800362 if (cl->pageofs != (map->m_la & ~PAGE_MASK)) {
Gao Xiang97e86a82019-07-31 23:57:47 +0800363 DBG_BUGON(1);
Gao Xiang138e1a02019-08-19 18:34:23 +0800364 erofs_workgroup_put(grp);
365 return ERR_PTR(-EFSCORRUPTED);
Gao Xiang3883a792018-07-26 20:22:06 +0800366 }
367
Gao Xiang97e86a82019-07-31 23:57:47 +0800368 length = READ_ONCE(pcl->length);
369 if (length & Z_EROFS_PCLUSTER_FULL_LENGTH) {
370 if ((map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT) > length) {
371 DBG_BUGON(1);
Gao Xiang138e1a02019-08-19 18:34:23 +0800372 erofs_workgroup_put(grp);
373 return ERR_PTR(-EFSCORRUPTED);
Gao Xiang97e86a82019-07-31 23:57:47 +0800374 }
375 } else {
376 unsigned int llen = map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT;
Gao Xiang3883a792018-07-26 20:22:06 +0800377
Gao Xiang97e86a82019-07-31 23:57:47 +0800378 if (map->m_flags & EROFS_MAP_FULL_MAPPED)
379 llen |= Z_EROFS_PCLUSTER_FULL_LENGTH;
Gao Xiang3883a792018-07-26 20:22:06 +0800380
Gao Xiang97e86a82019-07-31 23:57:47 +0800381 while (llen > length &&
382 length != cmpxchg_relaxed(&pcl->length, length, llen)) {
383 cpu_relax();
384 length = READ_ONCE(pcl->length);
385 }
386 }
387 mutex_lock(&cl->lock);
Gao Xiangbfc4ccb2019-08-21 11:09:08 +0800388 /* used to check tail merging loop due to corrupted images */
389 if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
390 clt->tailpcl = pcl;
Gao Xiang97e86a82019-07-31 23:57:47 +0800391 clt->mode = try_to_claim_pcluster(pcl, &clt->owned_head);
Gao Xiangbfc4ccb2019-08-21 11:09:08 +0800392 /* clean tailpcl if the current owned_head is Z_EROFS_PCLUSTER_TAIL */
393 if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
394 clt->tailpcl = NULL;
Gao Xiang97e86a82019-07-31 23:57:47 +0800395 clt->pcl = pcl;
396 clt->cl = cl;
397 return cl;
Gao Xiang3883a792018-07-26 20:22:06 +0800398}
399
Gao Xiang97e86a82019-07-31 23:57:47 +0800400static struct z_erofs_collection *clregister(struct z_erofs_collector *clt,
401 struct inode *inode,
402 struct erofs_map_blocks *map)
Gao Xiang3883a792018-07-26 20:22:06 +0800403{
Gao Xiang97e86a82019-07-31 23:57:47 +0800404 struct z_erofs_pcluster *pcl;
405 struct z_erofs_collection *cl;
406 int err;
Gao Xiange5e3abb2018-09-19 13:49:07 +0800407
Gao Xiang3883a792018-07-26 20:22:06 +0800408 /* no available workgroup, let's allocate one */
Gao Xiang97e86a82019-07-31 23:57:47 +0800409 pcl = kmem_cache_alloc(pcluster_cachep, GFP_NOFS);
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800410 if (!pcl)
Gao Xiang3883a792018-07-26 20:22:06 +0800411 return ERR_PTR(-ENOMEM);
412
Gao Xiang99634bf2019-09-04 10:09:05 +0800413 z_erofs_pcluster_init_always(pcl);
Gao Xiang97e86a82019-07-31 23:57:47 +0800414 pcl->obj.index = map->m_pa >> PAGE_SHIFT;
Gao Xiang3883a792018-07-26 20:22:06 +0800415
Gao Xiang97e86a82019-07-31 23:57:47 +0800416 pcl->length = (map->m_llen << Z_EROFS_PCLUSTER_LENGTH_BIT) |
417 (map->m_flags & EROFS_MAP_FULL_MAPPED ?
418 Z_EROFS_PCLUSTER_FULL_LENGTH : 0);
Gao Xiang3883a792018-07-26 20:22:06 +0800419
Gao Xiang97e86a82019-07-31 23:57:47 +0800420 if (map->m_flags & EROFS_MAP_ZIPPED)
421 pcl->algorithmformat = Z_EROFS_COMPRESSION_LZ4;
422 else
423 pcl->algorithmformat = Z_EROFS_COMPRESSION_SHIFTED;
Gao Xiangb6a76182019-06-24 15:22:58 +0800424
Gao Xianga5876e22019-09-04 10:08:56 +0800425 pcl->clusterbits = EROFS_I(inode)->z_physical_clusterbits[0];
Gao Xiang97e86a82019-07-31 23:57:47 +0800426 pcl->clusterbits -= PAGE_SHIFT;
Gao Xiang3883a792018-07-26 20:22:06 +0800427
Gao Xiang97e86a82019-07-31 23:57:47 +0800428 /* new pclusters should be claimed as type 1, primary and followed */
429 pcl->next = clt->owned_head;
430 clt->mode = COLLECT_PRIMARY_FOLLOWED;
431
432 cl = z_erofs_primarycollection(pcl);
433 cl->pageofs = map->m_la & ~PAGE_MASK;
Gao Xiang3883a792018-07-26 20:22:06 +0800434
Gao Xiang23edf3a2018-11-23 01:21:47 +0800435 /*
436 * lock all primary followed works before visible to others
Gao Xiang97e86a82019-07-31 23:57:47 +0800437 * and mutex_trylock *never* fails for a new pcluster.
Gao Xiang23edf3a2018-11-23 01:21:47 +0800438 */
Gao Xiang97e86a82019-07-31 23:57:47 +0800439 mutex_trylock(&cl->lock);
Gao Xiang23edf3a2018-11-23 01:21:47 +0800440
Gao Xiang97e86a82019-07-31 23:57:47 +0800441 err = erofs_register_workgroup(inode->i_sb, &pcl->obj, 0);
442 if (err) {
443 mutex_unlock(&cl->lock);
444 kmem_cache_free(pcluster_cachep, pcl);
445 return ERR_PTR(-EAGAIN);
Gao Xiang3883a792018-07-26 20:22:06 +0800446 }
Gao Xiangbfc4ccb2019-08-21 11:09:08 +0800447 /* used to check tail merging loop due to corrupted images */
448 if (clt->owned_head == Z_EROFS_PCLUSTER_TAIL)
449 clt->tailpcl = pcl;
Gao Xiang97e86a82019-07-31 23:57:47 +0800450 clt->owned_head = &pcl->next;
451 clt->pcl = pcl;
452 clt->cl = cl;
453 return cl;
Gao Xiang3883a792018-07-26 20:22:06 +0800454}
455
Gao Xiang97e86a82019-07-31 23:57:47 +0800456static int z_erofs_collector_begin(struct z_erofs_collector *clt,
457 struct inode *inode,
458 struct erofs_map_blocks *map)
Gao Xiang3883a792018-07-26 20:22:06 +0800459{
Gao Xiang97e86a82019-07-31 23:57:47 +0800460 struct z_erofs_collection *cl;
Gao Xiang3883a792018-07-26 20:22:06 +0800461
Gao Xiang97e86a82019-07-31 23:57:47 +0800462 DBG_BUGON(clt->cl);
Gao Xiang3883a792018-07-26 20:22:06 +0800463
Gao Xiang97e86a82019-07-31 23:57:47 +0800464 /* must be Z_EROFS_PCLUSTER_TAIL or pointed to previous collection */
465 DBG_BUGON(clt->owned_head == Z_EROFS_PCLUSTER_NIL);
466 DBG_BUGON(clt->owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
Gao Xiang3883a792018-07-26 20:22:06 +0800467
Gao Xiang97e86a82019-07-31 23:57:47 +0800468 if (!PAGE_ALIGNED(map->m_pa)) {
469 DBG_BUGON(1);
470 return -EINVAL;
471 }
Gao Xiang3883a792018-07-26 20:22:06 +0800472
473repeat:
Gao Xiang97e86a82019-07-31 23:57:47 +0800474 cl = cllookup(clt, inode, map);
475 if (!cl) {
476 cl = clregister(clt, inode, map);
Gao Xiangb27661c2018-09-19 13:49:06 +0800477
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800478 if (cl == ERR_PTR(-EAGAIN))
Gao Xiang97e86a82019-07-31 23:57:47 +0800479 goto repeat;
Gao Xiang3883a792018-07-26 20:22:06 +0800480 }
481
Gao Xiang97e86a82019-07-31 23:57:47 +0800482 if (IS_ERR(cl))
483 return PTR_ERR(cl);
Gao Xiang3883a792018-07-26 20:22:06 +0800484
Gao Xiang97e86a82019-07-31 23:57:47 +0800485 z_erofs_pagevec_ctor_init(&clt->vector, Z_EROFS_NR_INLINE_PAGEVECS,
486 cl->pagevec, cl->vcnt);
Gao Xiang3883a792018-07-26 20:22:06 +0800487
Gao Xiang97e86a82019-07-31 23:57:47 +0800488 clt->compressedpages = clt->pcl->compressed_pages;
489 if (clt->mode <= COLLECT_PRIMARY) /* cannot do in-place I/O */
490 clt->compressedpages += Z_EROFS_CLUSTER_MAX_PAGES;
Gao Xiang3883a792018-07-26 20:22:06 +0800491 return 0;
492}
493
494/*
Gao Xiang97e86a82019-07-31 23:57:47 +0800495 * keep in mind that no referenced pclusters will be freed
496 * only after a RCU grace period.
Gao Xiang3883a792018-07-26 20:22:06 +0800497 */
498static void z_erofs_rcu_callback(struct rcu_head *head)
499{
Gao Xiang97e86a82019-07-31 23:57:47 +0800500 struct z_erofs_collection *const cl =
501 container_of(head, struct z_erofs_collection, rcu);
Gao Xiang3883a792018-07-26 20:22:06 +0800502
Gao Xiang97e86a82019-07-31 23:57:47 +0800503 kmem_cache_free(pcluster_cachep,
504 container_of(cl, struct z_erofs_pcluster,
505 primary_collection));
Gao Xiang3883a792018-07-26 20:22:06 +0800506}
507
508void erofs_workgroup_free_rcu(struct erofs_workgroup *grp)
509{
Gao Xiang97e86a82019-07-31 23:57:47 +0800510 struct z_erofs_pcluster *const pcl =
511 container_of(grp, struct z_erofs_pcluster, obj);
512 struct z_erofs_collection *const cl = z_erofs_primarycollection(pcl);
Gao Xiang3883a792018-07-26 20:22:06 +0800513
Gao Xiang97e86a82019-07-31 23:57:47 +0800514 call_rcu(&cl->rcu, z_erofs_rcu_callback);
Gao Xiang3883a792018-07-26 20:22:06 +0800515}
516
Gao Xiang97e86a82019-07-31 23:57:47 +0800517static void z_erofs_collection_put(struct z_erofs_collection *cl)
Gao Xiang3883a792018-07-26 20:22:06 +0800518{
Gao Xiang97e86a82019-07-31 23:57:47 +0800519 struct z_erofs_pcluster *const pcl =
520 container_of(cl, struct z_erofs_pcluster, primary_collection);
521
522 erofs_workgroup_put(&pcl->obj);
Gao Xiang3883a792018-07-26 20:22:06 +0800523}
524
Gao Xiang97e86a82019-07-31 23:57:47 +0800525static bool z_erofs_collector_end(struct z_erofs_collector *clt)
Gao Xiang3883a792018-07-26 20:22:06 +0800526{
Gao Xiang97e86a82019-07-31 23:57:47 +0800527 struct z_erofs_collection *cl = clt->cl;
Gao Xiang3883a792018-07-26 20:22:06 +0800528
Gao Xiang97e86a82019-07-31 23:57:47 +0800529 if (!cl)
Gao Xiang3883a792018-07-26 20:22:06 +0800530 return false;
531
Gao Xiang97e86a82019-07-31 23:57:47 +0800532 z_erofs_pagevec_ctor_exit(&clt->vector, false);
533 mutex_unlock(&cl->lock);
Gao Xiang3883a792018-07-26 20:22:06 +0800534
535 /*
Gao Xiang97e86a82019-07-31 23:57:47 +0800536 * if all pending pages are added, don't hold its reference
537 * any longer if the pcluster isn't hosted by ourselves.
Gao Xiang3883a792018-07-26 20:22:06 +0800538 */
Gao Xiang97e86a82019-07-31 23:57:47 +0800539 if (clt->mode < COLLECT_PRIMARY_FOLLOWED_NOINPLACE)
540 z_erofs_collection_put(cl);
Gao Xiang3883a792018-07-26 20:22:06 +0800541
Gao Xiang97e86a82019-07-31 23:57:47 +0800542 clt->cl = NULL;
Gao Xiang3883a792018-07-26 20:22:06 +0800543 return true;
544}
545
546static inline struct page *__stagingpage_alloc(struct list_head *pagepool,
547 gfp_t gfp)
548{
Gao Xiangb25a1512019-07-31 23:57:43 +0800549 struct page *page = erofs_allocpage(pagepool, gfp, true);
Gao Xiang3883a792018-07-26 20:22:06 +0800550
551 page->mapping = Z_EROFS_MAPPING_STAGING;
552 return page;
553}
554
Gao Xiang97e86a82019-07-31 23:57:47 +0800555static bool should_alloc_managed_pages(struct z_erofs_decompress_frontend *fe,
Gao Xiang4279f3f2019-07-31 23:57:49 +0800556 unsigned int cachestrategy,
Gao Xiang97e86a82019-07-31 23:57:47 +0800557 erofs_off_t la)
Gao Xiang92e6efd2018-12-08 00:19:16 +0800558{
Gao Xiang4279f3f2019-07-31 23:57:49 +0800559 if (cachestrategy <= EROFS_ZIP_CACHE_DISABLED)
560 return false;
561
Gao Xiang92e6efd2018-12-08 00:19:16 +0800562 if (fe->backmost)
563 return true;
564
Gao Xiang4279f3f2019-07-31 23:57:49 +0800565 return cachestrategy >= EROFS_ZIP_CACHE_READAROUND &&
566 la < fe->headoffset;
Gao Xiang92e6efd2018-12-08 00:19:16 +0800567}
Gao Xiang92e6efd2018-12-08 00:19:16 +0800568
Gao Xiang97e86a82019-07-31 23:57:47 +0800569static int z_erofs_do_read_page(struct z_erofs_decompress_frontend *fe,
Gao Xiang3883a792018-07-26 20:22:06 +0800570 struct page *page,
Gao Xiang97e86a82019-07-31 23:57:47 +0800571 struct list_head *pagepool)
Gao Xiang3883a792018-07-26 20:22:06 +0800572{
Gao Xiang97e86a82019-07-31 23:57:47 +0800573 struct inode *const inode = fe->inode;
574 struct erofs_sb_info *const sbi __maybe_unused = EROFS_I_SB(inode);
Chao Yu3b423412019-01-15 09:42:21 +0800575 struct erofs_map_blocks *const map = &fe->map;
Gao Xiang97e86a82019-07-31 23:57:47 +0800576 struct z_erofs_collector *const clt = &fe->clt;
Gao Xiang3883a792018-07-26 20:22:06 +0800577 const loff_t offset = page_offset(page);
Gao Xiang97e86a82019-07-31 23:57:47 +0800578 bool tight = (clt->mode >= COLLECT_PRIMARY_HOOKED);
Gao Xiang3883a792018-07-26 20:22:06 +0800579
Gao Xiang92e6efd2018-12-08 00:19:16 +0800580 enum z_erofs_cache_alloctype cache_strategy;
Gao Xiang3883a792018-07-26 20:22:06 +0800581 enum z_erofs_page_type page_type;
Thomas Weißschuh7dd68b12018-09-10 21:41:14 +0200582 unsigned int cur, end, spiltted, index;
Gao Xiang1e05ff32018-09-18 22:27:25 +0800583 int err = 0;
Gao Xiang3883a792018-07-26 20:22:06 +0800584
585 /* register locked file pages as online pages in pack */
586 z_erofs_onlinepage_init(page);
587
588 spiltted = 0;
589 end = PAGE_SIZE;
590repeat:
591 cur = end - 1;
592
593 /* lucky, within the range of the current map_blocks */
594 if (offset + cur >= map->m_la &&
Julian Merida447a3622019-03-18 20:58:41 -0300595 offset + cur < map->m_la + map->m_llen) {
Gao Xiang97e86a82019-07-31 23:57:47 +0800596 /* didn't get a valid collection previously (very rare) */
597 if (!clt->cl)
Gao Xiang1e5ceea2019-02-27 13:33:31 +0800598 goto restart_now;
Gao Xiang3883a792018-07-26 20:22:06 +0800599 goto hitted;
Gao Xiang1e5ceea2019-02-27 13:33:31 +0800600 }
Gao Xiang3883a792018-07-26 20:22:06 +0800601
602 /* go ahead the next map_blocks */
603 debugln("%s: [out-of-range] pos %llu", __func__, offset + cur);
604
Gao Xiang97e86a82019-07-31 23:57:47 +0800605 if (z_erofs_collector_end(clt))
Gao Xiangf0c519f2018-11-23 01:21:49 +0800606 fe->backmost = false;
Gao Xiang3883a792018-07-26 20:22:06 +0800607
608 map->m_la = offset + cur;
609 map->m_llen = 0;
Gao Xiang97e86a82019-07-31 23:57:47 +0800610 err = z_erofs_map_blocks_iter(inode, map, 0);
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800611 if (err)
Gao Xiang3883a792018-07-26 20:22:06 +0800612 goto err_out;
613
Gao Xiang1e5ceea2019-02-27 13:33:31 +0800614restart_now:
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800615 if (!(map->m_flags & EROFS_MAP_MAPPED))
Gao Xiang3883a792018-07-26 20:22:06 +0800616 goto hitted;
617
Gao Xiang97e86a82019-07-31 23:57:47 +0800618 err = z_erofs_collector_begin(clt, inode, map);
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800619 if (err)
Gao Xiang3883a792018-07-26 20:22:06 +0800620 goto err_out;
621
Gao Xiang92e6efd2018-12-08 00:19:16 +0800622 /* preload all compressed pages (maybe downgrade role if necessary) */
Gao Xiang4279f3f2019-07-31 23:57:49 +0800623 if (should_alloc_managed_pages(fe, sbi->cache_strategy, map->m_la))
Gao Xiang92e6efd2018-12-08 00:19:16 +0800624 cache_strategy = DELAYEDALLOC;
625 else
626 cache_strategy = DONTALLOC;
Gao Xiang105d4ad2018-07-26 20:22:07 +0800627
Gao Xiang97e86a82019-07-31 23:57:47 +0800628 preload_compressed_pages(clt, MNGD_MAPPING(sbi),
629 cache_strategy, pagepool);
Gao Xiang105d4ad2018-07-26 20:22:07 +0800630
Gao Xiang97e86a82019-07-31 23:57:47 +0800631 tight &= (clt->mode >= COLLECT_PRIMARY_HOOKED);
Gao Xiang3883a792018-07-26 20:22:06 +0800632hitted:
Thomas Weißschuh7dd68b12018-09-10 21:41:14 +0200633 cur = end - min_t(unsigned int, offset + end - map->m_la, end);
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800634 if (!(map->m_flags & EROFS_MAP_MAPPED)) {
Gao Xiang3883a792018-07-26 20:22:06 +0800635 zero_user_segment(page, cur, end);
636 goto next_part;
637 }
638
639 /* let's derive page type */
640 page_type = cur ? Z_EROFS_VLE_PAGE_TYPE_HEAD :
641 (!spiltted ? Z_EROFS_PAGE_TYPE_EXCLUSIVE :
642 (tight ? Z_EROFS_PAGE_TYPE_EXCLUSIVE :
643 Z_EROFS_VLE_PAGE_TYPE_TAIL_SHARED));
644
Gao Xianga1121522019-02-27 13:33:32 +0800645 if (cur)
Gao Xiang97e86a82019-07-31 23:57:47 +0800646 tight &= (clt->mode >= COLLECT_PRIMARY_FOLLOWED);
Gao Xianga1121522019-02-27 13:33:32 +0800647
Gao Xiang3883a792018-07-26 20:22:06 +0800648retry:
Gao Xiang97e86a82019-07-31 23:57:47 +0800649 err = z_erofs_attach_page(clt, page, page_type);
Gao Xiang3883a792018-07-26 20:22:06 +0800650 /* should allocate an additional staging page for pagevec */
651 if (err == -EAGAIN) {
652 struct page *const newpage =
Gao Xiang97e86a82019-07-31 23:57:47 +0800653 __stagingpage_alloc(pagepool, GFP_NOFS);
Gao Xiang3883a792018-07-26 20:22:06 +0800654
Gao Xiang97e86a82019-07-31 23:57:47 +0800655 err = z_erofs_attach_page(clt, newpage,
656 Z_EROFS_PAGE_TYPE_EXCLUSIVE);
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800657 if (!err)
Gao Xiang3883a792018-07-26 20:22:06 +0800658 goto retry;
659 }
660
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800661 if (err)
Gao Xiang3883a792018-07-26 20:22:06 +0800662 goto err_out;
663
Gao Xiang97e86a82019-07-31 23:57:47 +0800664 index = page->index - (map->m_la >> PAGE_SHIFT);
Gao Xiang3883a792018-07-26 20:22:06 +0800665
Gao Xiang3883a792018-07-26 20:22:06 +0800666 z_erofs_onlinepage_fixup(page, index, true);
Gao Xiang3883a792018-07-26 20:22:06 +0800667
Gao Xiang1e05ff32018-09-18 22:27:25 +0800668 /* bump up the number of spiltted parts of a page */
669 ++spiltted;
670 /* also update nr_pages */
Gao Xiang97e86a82019-07-31 23:57:47 +0800671 clt->cl->nr_pages = max_t(pgoff_t, clt->cl->nr_pages, index + 1);
Gao Xiang3883a792018-07-26 20:22:06 +0800672next_part:
673 /* can be used for verification */
674 map->m_llen = offset + cur - map->m_la;
675
Kristaps Čivkulis2bc75962018-08-05 18:21:01 +0300676 end = cur;
677 if (end > 0)
Gao Xiang3883a792018-07-26 20:22:06 +0800678 goto repeat;
679
Gao Xiang1e05ff32018-09-18 22:27:25 +0800680out:
Gao Xiang3883a792018-07-26 20:22:06 +0800681 z_erofs_onlinepage_endio(page);
682
683 debugln("%s, finish page: %pK spiltted: %u map->m_llen %llu",
684 __func__, page, spiltted, map->m_llen);
Gao Xiang3883a792018-07-26 20:22:06 +0800685 return err;
Gao Xiang1e05ff32018-09-18 22:27:25 +0800686
687 /* if some error occurred while processing this page */
688err_out:
689 SetPageError(page);
690 goto out;
Gao Xiang3883a792018-07-26 20:22:06 +0800691}
692
693static void z_erofs_vle_unzip_kickoff(void *ptr, int bios)
694{
695 tagptr1_t t = tagptr_init(tagptr1_t, ptr);
Gao Xiang97e86a82019-07-31 23:57:47 +0800696 struct z_erofs_unzip_io *io = tagptr_unfold_ptr(t);
Gao Xiang3883a792018-07-26 20:22:06 +0800697 bool background = tagptr_unfold_tags(t);
698
Gao Xiang848bd9a2018-12-08 00:19:12 +0800699 if (!background) {
700 unsigned long flags;
Gao Xiang3883a792018-07-26 20:22:06 +0800701
Gao Xiang848bd9a2018-12-08 00:19:12 +0800702 spin_lock_irqsave(&io->u.wait.lock, flags);
703 if (!atomic_add_return(bios, &io->pending_bios))
704 wake_up_locked(&io->u.wait);
705 spin_unlock_irqrestore(&io->u.wait.lock, flags);
706 return;
707 }
708
709 if (!atomic_add_return(bios, &io->pending_bios))
Gao Xiang3883a792018-07-26 20:22:06 +0800710 queue_work(z_erofs_workqueue, &io->u.work);
Gao Xiang3883a792018-07-26 20:22:06 +0800711}
712
713static inline void z_erofs_vle_read_endio(struct bio *bio)
714{
Gao Xiangd61fbb62019-03-25 11:40:08 +0800715 struct erofs_sb_info *sbi = NULL;
Gao Xiang14a56ec2019-03-25 11:40:09 +0800716 blk_status_t err = bio->bi_status;
Gao Xiang3883a792018-07-26 20:22:06 +0800717 struct bio_vec *bvec;
Ming Lei6dc4f102019-02-15 19:13:19 +0800718 struct bvec_iter_all iter_all;
Gao Xiang3883a792018-07-26 20:22:06 +0800719
Christoph Hellwig2b070cf2019-04-25 09:03:00 +0200720 bio_for_each_segment_all(bvec, bio, iter_all) {
Gao Xiang3883a792018-07-26 20:22:06 +0800721 struct page *page = bvec->bv_page;
Gao Xiang105d4ad2018-07-26 20:22:07 +0800722 bool cachemngd = false;
Gao Xiang3883a792018-07-26 20:22:06 +0800723
724 DBG_BUGON(PageUptodate(page));
Gao Xiang70b17992018-12-11 15:17:49 +0800725 DBG_BUGON(!page->mapping);
Gao Xiang3883a792018-07-26 20:22:06 +0800726
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800727 if (!sbi && !z_erofs_page_is_staging(page)) {
Gao Xiangd61fbb62019-03-25 11:40:08 +0800728 sbi = EROFS_SB(page->mapping->host->i_sb);
Gao Xiang105d4ad2018-07-26 20:22:07 +0800729
Gao Xiang14a56ec2019-03-25 11:40:09 +0800730 if (time_to_inject(sbi, FAULT_READ_IO)) {
731 erofs_show_injection_info(FAULT_READ_IO);
732 err = BLK_STS_IOERR;
733 }
734 }
735
Gao Xiangd61fbb62019-03-25 11:40:08 +0800736 /* sbi should already be gotten if the page is managed */
737 if (sbi)
738 cachemngd = erofs_page_is_managed(sbi, page);
Gao Xiang105d4ad2018-07-26 20:22:07 +0800739
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800740 if (err)
Gao Xiang3883a792018-07-26 20:22:06 +0800741 SetPageError(page);
Gao Xiang105d4ad2018-07-26 20:22:07 +0800742 else if (cachemngd)
743 SetPageUptodate(page);
744
745 if (cachemngd)
746 unlock_page(page);
Gao Xiang3883a792018-07-26 20:22:06 +0800747 }
748
749 z_erofs_vle_unzip_kickoff(bio->bi_private, -1);
750 bio_put(bio);
751}
752
Gao Xiang97e86a82019-07-31 23:57:47 +0800753static int z_erofs_decompress_pcluster(struct super_block *sb,
754 struct z_erofs_pcluster *pcl,
755 struct list_head *pagepool)
Gao Xiang3883a792018-07-26 20:22:06 +0800756{
757 struct erofs_sb_info *const sbi = EROFS_SB(sb);
Gao Xiang97e86a82019-07-31 23:57:47 +0800758 const unsigned int clusterpages = BIT(pcl->clusterbits);
Gao Xiang3883a792018-07-26 20:22:06 +0800759 struct z_erofs_pagevec_ctor ctor;
Gao Xiang97e86a82019-07-31 23:57:47 +0800760 unsigned int i, outputsize, llen, nr_pages;
761 struct page *pages_onstack[Z_EROFS_VMAP_ONSTACK_PAGES];
Gao Xiang3883a792018-07-26 20:22:06 +0800762 struct page **pages, **compressed_pages, *page;
Gao Xiang3883a792018-07-26 20:22:06 +0800763
764 enum z_erofs_page_type page_type;
Gao Xiangb6a76182019-06-24 15:22:58 +0800765 bool overlapped, partial;
Gao Xiang97e86a82019-07-31 23:57:47 +0800766 struct z_erofs_collection *cl;
Gao Xiang3883a792018-07-26 20:22:06 +0800767 int err;
768
769 might_sleep();
Gao Xiang97e86a82019-07-31 23:57:47 +0800770 cl = z_erofs_primarycollection(pcl);
771 DBG_BUGON(!READ_ONCE(cl->nr_pages));
Gao Xiang3883a792018-07-26 20:22:06 +0800772
Gao Xiang97e86a82019-07-31 23:57:47 +0800773 mutex_lock(&cl->lock);
774 nr_pages = cl->nr_pages;
Gao Xiang3883a792018-07-26 20:22:06 +0800775
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800776 if (nr_pages <= Z_EROFS_VMAP_ONSTACK_PAGES) {
Gao Xiang3883a792018-07-26 20:22:06 +0800777 pages = pages_onstack;
Gao Xiang97e86a82019-07-31 23:57:47 +0800778 } else if (nr_pages <= Z_EROFS_VMAP_GLOBAL_PAGES &&
779 mutex_trylock(&z_pagemap_global_lock)) {
Gao Xiang3883a792018-07-26 20:22:06 +0800780 pages = z_pagemap_global;
Gao Xiang97e86a82019-07-31 23:57:47 +0800781 } else {
Chao Yu441dfcc2019-07-16 17:44:22 +0800782 gfp_t gfp_flags = GFP_KERNEL;
783
Gao Xiang97e86a82019-07-31 23:57:47 +0800784 if (nr_pages > Z_EROFS_VMAP_GLOBAL_PAGES)
Chao Yu441dfcc2019-07-16 17:44:22 +0800785 gfp_flags |= __GFP_NOFAIL;
786
Julian Merida447a3622019-03-18 20:58:41 -0300787 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Chao Yu441dfcc2019-07-16 17:44:22 +0800788 gfp_flags);
Gao Xiang3883a792018-07-26 20:22:06 +0800789
790 /* fallback to global pagemap for the lowmem scenario */
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800791 if (!pages) {
Chao Yu441dfcc2019-07-16 17:44:22 +0800792 mutex_lock(&z_pagemap_global_lock);
793 pages = z_pagemap_global;
Gao Xiang3883a792018-07-26 20:22:06 +0800794 }
795 }
796
797 for (i = 0; i < nr_pages; ++i)
798 pages[i] = NULL;
799
Gao Xiange12a0ce2019-08-21 22:01:52 +0800800 err = 0;
Gao Xiangfa61a332019-06-24 15:22:53 +0800801 z_erofs_pagevec_ctor_init(&ctor, Z_EROFS_NR_INLINE_PAGEVECS,
Gao Xiang97e86a82019-07-31 23:57:47 +0800802 cl->pagevec, 0);
Gao Xiang3883a792018-07-26 20:22:06 +0800803
Gao Xiang97e86a82019-07-31 23:57:47 +0800804 for (i = 0; i < cl->vcnt; ++i) {
Thomas Weißschuh7dd68b12018-09-10 21:41:14 +0200805 unsigned int pagenr;
Gao Xiang3883a792018-07-26 20:22:06 +0800806
Gao Xiang046d64e2019-07-31 23:57:45 +0800807 page = z_erofs_pagevec_dequeue(&ctor, &page_type);
Gao Xiang3883a792018-07-26 20:22:06 +0800808
809 /* all pages in pagevec ought to be valid */
Cristian Sicilia42d40b42018-11-12 21:43:57 +0100810 DBG_BUGON(!page);
811 DBG_BUGON(!page->mapping);
Gao Xiang3883a792018-07-26 20:22:06 +0800812
Gao Xiang97e86a82019-07-31 23:57:47 +0800813 if (z_erofs_put_stagingpage(pagepool, page))
Gao Xiang3883a792018-07-26 20:22:06 +0800814 continue;
815
816 if (page_type == Z_EROFS_VLE_PAGE_TYPE_HEAD)
817 pagenr = 0;
818 else
819 pagenr = z_erofs_onlinepage_index(page);
820
Gao Xiang70b17992018-12-11 15:17:49 +0800821 DBG_BUGON(pagenr >= nr_pages);
Gao Xiange5e3abb2018-09-19 13:49:07 +0800822
Gao Xiange12a0ce2019-08-21 22:01:52 +0800823 /*
824 * currently EROFS doesn't support multiref(dedup),
825 * so here erroring out one multiref page.
826 */
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800827 if (pages[pagenr]) {
Gao Xiange12a0ce2019-08-21 22:01:52 +0800828 DBG_BUGON(1);
829 SetPageError(pages[pagenr]);
830 z_erofs_onlinepage_endio(pages[pagenr]);
831 err = -EFSCORRUPTED;
832 }
Gao Xiang3883a792018-07-26 20:22:06 +0800833 pages[pagenr] = page;
834 }
Gao Xiang3883a792018-07-26 20:22:06 +0800835 z_erofs_pagevec_ctor_exit(&ctor, true);
836
837 overlapped = false;
Gao Xiang97e86a82019-07-31 23:57:47 +0800838 compressed_pages = pcl->compressed_pages;
Gao Xiang3883a792018-07-26 20:22:06 +0800839
840 for (i = 0; i < clusterpages; ++i) {
Thomas Weißschuh7dd68b12018-09-10 21:41:14 +0200841 unsigned int pagenr;
Gao Xiang3883a792018-07-26 20:22:06 +0800842
843 page = compressed_pages[i];
844
845 /* all compressed pages ought to be valid */
Cristian Sicilia42d40b42018-11-12 21:43:57 +0100846 DBG_BUGON(!page);
847 DBG_BUGON(!page->mapping);
Gao Xiang3883a792018-07-26 20:22:06 +0800848
Gao Xiang27481232019-06-24 15:22:54 +0800849 if (!z_erofs_page_is_staging(page)) {
Gao Xiangd61fbb62019-03-25 11:40:08 +0800850 if (erofs_page_is_managed(sbi, page)) {
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800851 if (!PageUptodate(page))
Gao Xiang11152492019-03-25 11:40:07 +0800852 err = -EIO;
853 continue;
854 }
Gao Xiang3883a792018-07-26 20:22:06 +0800855
Gao Xiang11152492019-03-25 11:40:07 +0800856 /*
857 * only if non-head page can be selected
858 * for inplace decompression
859 */
860 pagenr = z_erofs_onlinepage_index(page);
Gao Xiang3883a792018-07-26 20:22:06 +0800861
Gao Xiang11152492019-03-25 11:40:07 +0800862 DBG_BUGON(pagenr >= nr_pages);
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800863 if (pages[pagenr]) {
Gao Xiange12a0ce2019-08-21 22:01:52 +0800864 DBG_BUGON(1);
865 SetPageError(pages[pagenr]);
866 z_erofs_onlinepage_endio(pages[pagenr]);
867 err = -EFSCORRUPTED;
868 }
Gao Xiang11152492019-03-25 11:40:07 +0800869 pages[pagenr] = page;
Gao Xiang3883a792018-07-26 20:22:06 +0800870
Gao Xiang11152492019-03-25 11:40:07 +0800871 overlapped = true;
872 }
873
874 /* PG_error needs checking for inplaced and staging pages */
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800875 if (PageError(page)) {
Gao Xiang11152492019-03-25 11:40:07 +0800876 DBG_BUGON(PageUptodate(page));
877 err = -EIO;
878 }
Gao Xiang3883a792018-07-26 20:22:06 +0800879 }
880
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800881 if (err)
Gao Xiang11152492019-03-25 11:40:07 +0800882 goto out;
883
Gao Xiang97e86a82019-07-31 23:57:47 +0800884 llen = pcl->length >> Z_EROFS_PCLUSTER_LENGTH_BIT;
885 if (nr_pages << PAGE_SHIFT >= cl->pageofs + llen) {
886 outputsize = llen;
887 partial = !(pcl->length & Z_EROFS_PCLUSTER_FULL_LENGTH);
Gao Xiangb6a76182019-06-24 15:22:58 +0800888 } else {
Gao Xiang97e86a82019-07-31 23:57:47 +0800889 outputsize = (nr_pages << PAGE_SHIFT) - cl->pageofs;
Gao Xiangb6a76182019-06-24 15:22:58 +0800890 partial = true;
891 }
Gao Xiang3883a792018-07-26 20:22:06 +0800892
Gao Xiang88aaf5a2019-06-24 15:22:57 +0800893 err = z_erofs_decompress(&(struct z_erofs_decompress_req) {
894 .sb = sb,
895 .in = compressed_pages,
896 .out = pages,
Gao Xiang97e86a82019-07-31 23:57:47 +0800897 .pageofs_out = cl->pageofs,
Gao Xiang88aaf5a2019-06-24 15:22:57 +0800898 .inputsize = PAGE_SIZE,
899 .outputsize = outputsize,
Gao Xiang97e86a82019-07-31 23:57:47 +0800900 .alg = pcl->algorithmformat,
Gao Xiang88aaf5a2019-06-24 15:22:57 +0800901 .inplace_io = overlapped,
Gao Xiangb6a76182019-06-24 15:22:58 +0800902 .partial_decoding = partial
Gao Xiang97e86a82019-07-31 23:57:47 +0800903 }, pagepool);
Gao Xiang3883a792018-07-26 20:22:06 +0800904
905out:
Gao Xiangaf692e12019-02-27 13:33:30 +0800906 /* must handle all compressed pages before endding pages */
Gao Xiang3883a792018-07-26 20:22:06 +0800907 for (i = 0; i < clusterpages; ++i) {
908 page = compressed_pages[i];
909
Gao Xiangd61fbb62019-03-25 11:40:08 +0800910 if (erofs_page_is_managed(sbi, page))
Gao Xiang105d4ad2018-07-26 20:22:07 +0800911 continue;
Gao Xiangd61fbb62019-03-25 11:40:08 +0800912
Gao Xiang3883a792018-07-26 20:22:06 +0800913 /* recycle all individual staging pages */
Gao Xiang97e86a82019-07-31 23:57:47 +0800914 (void)z_erofs_put_stagingpage(pagepool, page);
Gao Xiang3883a792018-07-26 20:22:06 +0800915
916 WRITE_ONCE(compressed_pages[i], NULL);
917 }
918
Gao Xiangaf692e12019-02-27 13:33:30 +0800919 for (i = 0; i < nr_pages; ++i) {
920 page = pages[i];
921 if (!page)
922 continue;
923
924 DBG_BUGON(!page->mapping);
925
926 /* recycle all individual staging pages */
Gao Xiang97e86a82019-07-31 23:57:47 +0800927 if (z_erofs_put_stagingpage(pagepool, page))
Gao Xiangaf692e12019-02-27 13:33:30 +0800928 continue;
929
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800930 if (err < 0)
Gao Xiangaf692e12019-02-27 13:33:30 +0800931 SetPageError(page);
932
933 z_erofs_onlinepage_endio(page);
934 }
935
Gao Xiang3883a792018-07-26 20:22:06 +0800936 if (pages == z_pagemap_global)
937 mutex_unlock(&z_pagemap_global_lock);
Gao Xiang8d8a09b2019-08-30 00:38:27 +0800938 else if (pages != pages_onstack)
Gao Xiang3883a792018-07-26 20:22:06 +0800939 kvfree(pages);
940
Gao Xiang97e86a82019-07-31 23:57:47 +0800941 cl->nr_pages = 0;
942 cl->vcnt = 0;
Gao Xiang3883a792018-07-26 20:22:06 +0800943
Gao Xiang97e86a82019-07-31 23:57:47 +0800944 /* all cl locks MUST be taken before the following line */
945 WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_NIL);
Gao Xiang3883a792018-07-26 20:22:06 +0800946
Gao Xiang97e86a82019-07-31 23:57:47 +0800947 /* all cl locks SHOULD be released right now */
948 mutex_unlock(&cl->lock);
Gao Xiang3883a792018-07-26 20:22:06 +0800949
Gao Xiang97e86a82019-07-31 23:57:47 +0800950 z_erofs_collection_put(cl);
Gao Xiang3883a792018-07-26 20:22:06 +0800951 return err;
952}
953
954static void z_erofs_vle_unzip_all(struct super_block *sb,
Gao Xiang97e86a82019-07-31 23:57:47 +0800955 struct z_erofs_unzip_io *io,
956 struct list_head *pagepool)
Gao Xiang3883a792018-07-26 20:22:06 +0800957{
Gao Xiang97e86a82019-07-31 23:57:47 +0800958 z_erofs_next_pcluster_t owned = io->head;
Gao Xiang3883a792018-07-26 20:22:06 +0800959
Gao Xiang97e86a82019-07-31 23:57:47 +0800960 while (owned != Z_EROFS_PCLUSTER_TAIL_CLOSED) {
961 struct z_erofs_pcluster *pcl;
Gao Xiang3883a792018-07-26 20:22:06 +0800962
963 /* no possible that 'owned' equals Z_EROFS_WORK_TPTR_TAIL */
Gao Xiang97e86a82019-07-31 23:57:47 +0800964 DBG_BUGON(owned == Z_EROFS_PCLUSTER_TAIL);
Gao Xiang3883a792018-07-26 20:22:06 +0800965
966 /* no possible that 'owned' equals NULL */
Gao Xiang97e86a82019-07-31 23:57:47 +0800967 DBG_BUGON(owned == Z_EROFS_PCLUSTER_NIL);
Gao Xiang3883a792018-07-26 20:22:06 +0800968
Gao Xiang97e86a82019-07-31 23:57:47 +0800969 pcl = container_of(owned, struct z_erofs_pcluster, next);
970 owned = READ_ONCE(pcl->next);
Gao Xiang3883a792018-07-26 20:22:06 +0800971
Gao Xiang97e86a82019-07-31 23:57:47 +0800972 z_erofs_decompress_pcluster(sb, pcl, pagepool);
Gao Xiang3978c8e2018-08-06 11:27:53 +0800973 }
Gao Xiang3883a792018-07-26 20:22:06 +0800974}
975
976static void z_erofs_vle_unzip_wq(struct work_struct *work)
977{
Gao Xiang97e86a82019-07-31 23:57:47 +0800978 struct z_erofs_unzip_io_sb *iosb =
979 container_of(work, struct z_erofs_unzip_io_sb, io.u.work);
980 LIST_HEAD(pagepool);
Gao Xiang3883a792018-07-26 20:22:06 +0800981
Gao Xiang97e86a82019-07-31 23:57:47 +0800982 DBG_BUGON(iosb->io.head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
983 z_erofs_vle_unzip_all(iosb->sb, &iosb->io, &pagepool);
Gao Xiang3883a792018-07-26 20:22:06 +0800984
Gao Xiang97e86a82019-07-31 23:57:47 +0800985 put_pages_list(&pagepool);
Gao Xiang3883a792018-07-26 20:22:06 +0800986 kvfree(iosb);
987}
988
Gao Xiang97e86a82019-07-31 23:57:47 +0800989static struct page *pickup_page_for_submission(struct z_erofs_pcluster *pcl,
990 unsigned int nr,
991 struct list_head *pagepool,
992 struct address_space *mc,
993 gfp_t gfp)
Gao Xiang9248fce2018-12-08 00:19:15 +0800994{
995 /* determined at compile time to avoid too many #ifdefs */
996 const bool nocache = __builtin_constant_p(mc) ? !mc : false;
Gao Xiang97e86a82019-07-31 23:57:47 +0800997 const pgoff_t index = pcl->obj.index;
Gao Xiang9248fce2018-12-08 00:19:15 +0800998 bool tocache = false;
999
1000 struct address_space *mapping;
1001 struct page *oldpage, *page;
1002
Gao Xiang92e6efd2018-12-08 00:19:16 +08001003 compressed_page_t t;
1004 int justfound;
1005
Gao Xiang9248fce2018-12-08 00:19:15 +08001006repeat:
Gao Xiang97e86a82019-07-31 23:57:47 +08001007 page = READ_ONCE(pcl->compressed_pages[nr]);
Gao Xiang9248fce2018-12-08 00:19:15 +08001008 oldpage = page;
1009
1010 if (!page)
1011 goto out_allocpage;
1012
1013 /*
1014 * the cached page has not been allocated and
1015 * an placeholder is out there, prepare it now.
1016 */
1017 if (!nocache && page == PAGE_UNALLOCATED) {
1018 tocache = true;
1019 goto out_allocpage;
1020 }
1021
Gao Xiang92e6efd2018-12-08 00:19:16 +08001022 /* process the target tagged pointer */
1023 t = tagptr_init(compressed_page_t, page);
1024 justfound = tagptr_unfold_tags(t);
1025 page = tagptr_unfold_ptr(t);
1026
Gao Xiang9248fce2018-12-08 00:19:15 +08001027 mapping = READ_ONCE(page->mapping);
1028
1029 /*
1030 * if managed cache is disabled, it's no way to
1031 * get such a cached-like page.
1032 */
1033 if (nocache) {
Gao Xiang92e6efd2018-12-08 00:19:16 +08001034 /* if managed cache is disabled, it is impossible `justfound' */
1035 DBG_BUGON(justfound);
1036
1037 /* and it should be locked, not uptodate, and not truncated */
Gao Xiang9248fce2018-12-08 00:19:15 +08001038 DBG_BUGON(!PageLocked(page));
1039 DBG_BUGON(PageUptodate(page));
1040 DBG_BUGON(!mapping);
1041 goto out;
1042 }
1043
1044 /*
1045 * unmanaged (file) pages are all locked solidly,
1046 * therefore it is impossible for `mapping' to be NULL.
1047 */
1048 if (mapping && mapping != mc)
1049 /* ought to be unmanaged pages */
1050 goto out;
1051
1052 lock_page(page);
1053
Gao Xiang92e6efd2018-12-08 00:19:16 +08001054 /* only true if page reclaim goes wrong, should never happen */
1055 DBG_BUGON(justfound && PagePrivate(page));
1056
Gao Xiang9248fce2018-12-08 00:19:15 +08001057 /* the page is still in manage cache */
1058 if (page->mapping == mc) {
Gao Xiang97e86a82019-07-31 23:57:47 +08001059 WRITE_ONCE(pcl->compressed_pages[nr], page);
Gao Xiang9248fce2018-12-08 00:19:15 +08001060
Gao Xiang11152492019-03-25 11:40:07 +08001061 ClearPageError(page);
Gao Xiang9248fce2018-12-08 00:19:15 +08001062 if (!PagePrivate(page)) {
Gao Xiang92e6efd2018-12-08 00:19:16 +08001063 /*
1064 * impossible to be !PagePrivate(page) for
1065 * the current restriction as well if
1066 * the page is already in compressed_pages[].
1067 */
1068 DBG_BUGON(!justfound);
1069
1070 justfound = 0;
Gao Xiang97e86a82019-07-31 23:57:47 +08001071 set_page_private(page, (unsigned long)pcl);
Gao Xiang9248fce2018-12-08 00:19:15 +08001072 SetPagePrivate(page);
1073 }
1074
1075 /* no need to submit io if it is already up-to-date */
1076 if (PageUptodate(page)) {
1077 unlock_page(page);
1078 page = NULL;
1079 }
1080 goto out;
1081 }
1082
1083 /*
1084 * the managed page has been truncated, it's unsafe to
1085 * reuse this one, let's allocate a new cache-managed page.
1086 */
1087 DBG_BUGON(page->mapping);
Gao Xiang92e6efd2018-12-08 00:19:16 +08001088 DBG_BUGON(!justfound);
Gao Xiang9248fce2018-12-08 00:19:15 +08001089
1090 tocache = true;
1091 unlock_page(page);
1092 put_page(page);
1093out_allocpage:
1094 page = __stagingpage_alloc(pagepool, gfp);
Gao Xiang97e86a82019-07-31 23:57:47 +08001095 if (oldpage != cmpxchg(&pcl->compressed_pages[nr], oldpage, page)) {
Gao Xiang9248fce2018-12-08 00:19:15 +08001096 list_add(&page->lru, pagepool);
1097 cpu_relax();
1098 goto repeat;
1099 }
1100 if (nocache || !tocache)
1101 goto out;
1102 if (add_to_page_cache_lru(page, mc, index + nr, gfp)) {
1103 page->mapping = Z_EROFS_MAPPING_STAGING;
1104 goto out;
1105 }
1106
Gao Xiang97e86a82019-07-31 23:57:47 +08001107 set_page_private(page, (unsigned long)pcl);
Gao Xiang9248fce2018-12-08 00:19:15 +08001108 SetPagePrivate(page);
1109out: /* the only exit (for tracing and debugging) */
1110 return page;
1111}
1112
Gao Xiang97e86a82019-07-31 23:57:47 +08001113static struct z_erofs_unzip_io *jobqueue_init(struct super_block *sb,
1114 struct z_erofs_unzip_io *io,
1115 bool foreground)
Gao Xiang3883a792018-07-26 20:22:06 +08001116{
Gao Xiang97e86a82019-07-31 23:57:47 +08001117 struct z_erofs_unzip_io_sb *iosb;
Gao Xiang3883a792018-07-26 20:22:06 +08001118
Gao Xiang7146a4f2018-12-08 00:19:18 +08001119 if (foreground) {
Gao Xiang3883a792018-07-26 20:22:06 +08001120 /* waitqueue available for foreground io */
Gao Xiang7146a4f2018-12-08 00:19:18 +08001121 DBG_BUGON(!io);
Gao Xiang3883a792018-07-26 20:22:06 +08001122
1123 init_waitqueue_head(&io->u.wait);
1124 atomic_set(&io->pending_bios, 0);
1125 goto out;
1126 }
1127
Shobhit Kukretia9f69bd2019-06-26 22:31:18 -07001128 iosb = kvzalloc(sizeof(*iosb), GFP_KERNEL | __GFP_NOFAIL);
Gao Xiang7146a4f2018-12-08 00:19:18 +08001129 DBG_BUGON(!iosb);
Gao Xiang3883a792018-07-26 20:22:06 +08001130
Gao Xiang7146a4f2018-12-08 00:19:18 +08001131 /* initialize fields in the allocated descriptor */
1132 io = &iosb->io;
Gao Xiang3883a792018-07-26 20:22:06 +08001133 iosb->sb = sb;
1134 INIT_WORK(&io->u.work, z_erofs_vle_unzip_wq);
1135out:
Gao Xiang97e86a82019-07-31 23:57:47 +08001136 io->head = Z_EROFS_PCLUSTER_TAIL_CLOSED;
Gao Xiang3883a792018-07-26 20:22:06 +08001137 return io;
1138}
1139
Gao Xiang97e86a82019-07-31 23:57:47 +08001140/* define decompression jobqueue types */
Gao Xiang7146a4f2018-12-08 00:19:18 +08001141enum {
Gao Xiang7146a4f2018-12-08 00:19:18 +08001142 JQ_BYPASS,
Gao Xiang7146a4f2018-12-08 00:19:18 +08001143 JQ_SUBMIT,
1144 NR_JOBQUEUES,
1145};
1146
1147static void *jobqueueset_init(struct super_block *sb,
Gao Xiang97e86a82019-07-31 23:57:47 +08001148 z_erofs_next_pcluster_t qtail[],
1149 struct z_erofs_unzip_io *q[],
1150 struct z_erofs_unzip_io *fgq,
Gao Xiang7146a4f2018-12-08 00:19:18 +08001151 bool forcefg)
1152{
Gao Xiang7146a4f2018-12-08 00:19:18 +08001153 /*
1154 * if managed cache is enabled, bypass jobqueue is needed,
Gao Xiang97e86a82019-07-31 23:57:47 +08001155 * no need to read from device for all pclusters in this queue.
Gao Xiang7146a4f2018-12-08 00:19:18 +08001156 */
1157 q[JQ_BYPASS] = jobqueue_init(sb, fgq + JQ_BYPASS, true);
1158 qtail[JQ_BYPASS] = &q[JQ_BYPASS]->head;
Gao Xiang7146a4f2018-12-08 00:19:18 +08001159
1160 q[JQ_SUBMIT] = jobqueue_init(sb, fgq + JQ_SUBMIT, forcefg);
1161 qtail[JQ_SUBMIT] = &q[JQ_SUBMIT]->head;
1162
1163 return tagptr_cast_ptr(tagptr_fold(tagptr1_t, q[JQ_SUBMIT], !forcefg));
1164}
1165
Gao Xiang97e86a82019-07-31 23:57:47 +08001166static void move_to_bypass_jobqueue(struct z_erofs_pcluster *pcl,
1167 z_erofs_next_pcluster_t qtail[],
1168 z_erofs_next_pcluster_t owned_head)
Gao Xiang7146a4f2018-12-08 00:19:18 +08001169{
Gao Xiang97e86a82019-07-31 23:57:47 +08001170 z_erofs_next_pcluster_t *const submit_qtail = qtail[JQ_SUBMIT];
1171 z_erofs_next_pcluster_t *const bypass_qtail = qtail[JQ_BYPASS];
Gao Xiang7146a4f2018-12-08 00:19:18 +08001172
Gao Xiang97e86a82019-07-31 23:57:47 +08001173 DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
1174 if (owned_head == Z_EROFS_PCLUSTER_TAIL)
1175 owned_head = Z_EROFS_PCLUSTER_TAIL_CLOSED;
Gao Xiang7146a4f2018-12-08 00:19:18 +08001176
Gao Xiang97e86a82019-07-31 23:57:47 +08001177 WRITE_ONCE(pcl->next, Z_EROFS_PCLUSTER_TAIL_CLOSED);
Gao Xiang7146a4f2018-12-08 00:19:18 +08001178
1179 WRITE_ONCE(*submit_qtail, owned_head);
Gao Xiang97e86a82019-07-31 23:57:47 +08001180 WRITE_ONCE(*bypass_qtail, &pcl->next);
Gao Xiang7146a4f2018-12-08 00:19:18 +08001181
Gao Xiang97e86a82019-07-31 23:57:47 +08001182 qtail[JQ_BYPASS] = &pcl->next;
Gao Xiang7146a4f2018-12-08 00:19:18 +08001183}
1184
Gao Xiang97e86a82019-07-31 23:57:47 +08001185static bool postsubmit_is_all_bypassed(struct z_erofs_unzip_io *q[],
Gao Xiang7146a4f2018-12-08 00:19:18 +08001186 unsigned int nr_bios,
1187 bool force_fg)
1188{
1189 /*
1190 * although background is preferred, no one is pending for submission.
1191 * don't issue workqueue for decompression but drop it directly instead.
1192 */
1193 if (force_fg || nr_bios)
1194 return false;
1195
Gao Xiang97e86a82019-07-31 23:57:47 +08001196 kvfree(container_of(q[JQ_SUBMIT], struct z_erofs_unzip_io_sb, io));
Gao Xiang7146a4f2018-12-08 00:19:18 +08001197 return true;
1198}
Gao Xiang3883a792018-07-26 20:22:06 +08001199
1200static bool z_erofs_vle_submit_all(struct super_block *sb,
Gao Xiang97e86a82019-07-31 23:57:47 +08001201 z_erofs_next_pcluster_t owned_head,
Gao Xiang3883a792018-07-26 20:22:06 +08001202 struct list_head *pagepool,
Gao Xiang97e86a82019-07-31 23:57:47 +08001203 struct z_erofs_unzip_io *fgq,
Gao Xiang3883a792018-07-26 20:22:06 +08001204 bool force_fg)
1205{
Gao Xiang97e86a82019-07-31 23:57:47 +08001206 struct erofs_sb_info *const sbi __maybe_unused = EROFS_SB(sb);
1207 z_erofs_next_pcluster_t qtail[NR_JOBQUEUES];
1208 struct z_erofs_unzip_io *q[NR_JOBQUEUES];
Gao Xiang3883a792018-07-26 20:22:06 +08001209 struct bio *bio;
Gao Xiang7146a4f2018-12-08 00:19:18 +08001210 void *bi_private;
Gao Xiang3883a792018-07-26 20:22:06 +08001211 /* since bio will be NULL, no need to initialize last_index */
1212 pgoff_t uninitialized_var(last_index);
1213 bool force_submit = false;
Thomas Weißschuh7dd68b12018-09-10 21:41:14 +02001214 unsigned int nr_bios;
Gao Xiang3883a792018-07-26 20:22:06 +08001215
Gao Xiang8d8a09b2019-08-30 00:38:27 +08001216 if (owned_head == Z_EROFS_PCLUSTER_TAIL)
Gao Xiang3883a792018-07-26 20:22:06 +08001217 return false;
1218
Gao Xiang3883a792018-07-26 20:22:06 +08001219 force_submit = false;
1220 bio = NULL;
Gao Xiang7146a4f2018-12-08 00:19:18 +08001221 nr_bios = 0;
1222 bi_private = jobqueueset_init(sb, qtail, q, fgq, force_fg);
Gao Xiang3883a792018-07-26 20:22:06 +08001223
1224 /* by default, all need io submission */
Gao Xiang7146a4f2018-12-08 00:19:18 +08001225 q[JQ_SUBMIT]->head = owned_head;
Gao Xiang3883a792018-07-26 20:22:06 +08001226
1227 do {
Gao Xiang97e86a82019-07-31 23:57:47 +08001228 struct z_erofs_pcluster *pcl;
1229 unsigned int clusterpages;
Gao Xiang3883a792018-07-26 20:22:06 +08001230 pgoff_t first_index;
Gao Xiang9248fce2018-12-08 00:19:15 +08001231 struct page *page;
1232 unsigned int i = 0, bypass = 0;
Gao Xiang3883a792018-07-26 20:22:06 +08001233 int err;
1234
1235 /* no possible 'owned_head' equals the following */
Gao Xiang97e86a82019-07-31 23:57:47 +08001236 DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_TAIL_CLOSED);
1237 DBG_BUGON(owned_head == Z_EROFS_PCLUSTER_NIL);
Gao Xiang3883a792018-07-26 20:22:06 +08001238
Gao Xiang97e86a82019-07-31 23:57:47 +08001239 pcl = container_of(owned_head, struct z_erofs_pcluster, next);
1240
1241 clusterpages = BIT(pcl->clusterbits);
Gao Xiang3883a792018-07-26 20:22:06 +08001242
1243 /* close the main owned chain at first */
Gao Xiang97e86a82019-07-31 23:57:47 +08001244 owned_head = cmpxchg(&pcl->next, Z_EROFS_PCLUSTER_TAIL,
1245 Z_EROFS_PCLUSTER_TAIL_CLOSED);
Gao Xiang3883a792018-07-26 20:22:06 +08001246
Gao Xiang97e86a82019-07-31 23:57:47 +08001247 first_index = pcl->obj.index;
Gao Xiang3883a792018-07-26 20:22:06 +08001248 force_submit |= (first_index != last_index + 1);
Gao Xiang9248fce2018-12-08 00:19:15 +08001249
Gao Xiang3883a792018-07-26 20:22:06 +08001250repeat:
Gao Xiang97e86a82019-07-31 23:57:47 +08001251 page = pickup_page_for_submission(pcl, i, pagepool,
1252 MNGD_MAPPING(sbi),
1253 GFP_NOFS);
Gao Xiang9248fce2018-12-08 00:19:15 +08001254 if (!page) {
1255 force_submit = true;
1256 ++bypass;
1257 goto skippage;
Gao Xiang3883a792018-07-26 20:22:06 +08001258 }
1259
Cristian Sicilia42d40b42018-11-12 21:43:57 +01001260 if (bio && force_submit) {
Gao Xiang3883a792018-07-26 20:22:06 +08001261submit_bio_retry:
Gao Xiang94e4e152019-09-04 10:09:04 +08001262 submit_bio(bio);
Gao Xiang3883a792018-07-26 20:22:06 +08001263 bio = NULL;
1264 }
1265
Cristian Sicilia42d40b42018-11-12 21:43:57 +01001266 if (!bio) {
Gao Xianga5c0b782019-09-04 10:09:02 +08001267 bio = bio_alloc(GFP_NOIO, BIO_MAX_PAGES);
1268
1269 bio->bi_end_io = z_erofs_vle_read_endio;
1270 bio_set_dev(bio, sb->s_bdev);
1271 bio->bi_iter.bi_sector = (sector_t)(first_index + i) <<
1272 LOG_SECTORS_PER_BLOCK;
1273 bio->bi_private = bi_private;
Gao Xiang94e4e152019-09-04 10:09:04 +08001274 bio->bi_opf = REQ_OP_READ;
1275
Gao Xiang3883a792018-07-26 20:22:06 +08001276 ++nr_bios;
1277 }
1278
1279 err = bio_add_page(bio, page, PAGE_SIZE, 0);
1280 if (err < PAGE_SIZE)
1281 goto submit_bio_retry;
1282
1283 force_submit = false;
1284 last_index = first_index + i;
Gao Xiang105d4ad2018-07-26 20:22:07 +08001285skippage:
Gao Xiang3883a792018-07-26 20:22:06 +08001286 if (++i < clusterpages)
1287 goto repeat;
Gao Xiang105d4ad2018-07-26 20:22:07 +08001288
Gao Xiang7146a4f2018-12-08 00:19:18 +08001289 if (bypass < clusterpages)
Gao Xiang97e86a82019-07-31 23:57:47 +08001290 qtail[JQ_SUBMIT] = &pcl->next;
Gao Xiang7146a4f2018-12-08 00:19:18 +08001291 else
Gao Xiang97e86a82019-07-31 23:57:47 +08001292 move_to_bypass_jobqueue(pcl, qtail, owned_head);
1293 } while (owned_head != Z_EROFS_PCLUSTER_TAIL);
Gao Xiang3883a792018-07-26 20:22:06 +08001294
Cristian Sicilia42d40b42018-11-12 21:43:57 +01001295 if (bio)
Gao Xiang94e4e152019-09-04 10:09:04 +08001296 submit_bio(bio);
Gao Xiang3883a792018-07-26 20:22:06 +08001297
Gao Xiang7146a4f2018-12-08 00:19:18 +08001298 if (postsubmit_is_all_bypassed(q, nr_bios, force_fg))
Gao Xiang105d4ad2018-07-26 20:22:07 +08001299 return true;
Gao Xiang3883a792018-07-26 20:22:06 +08001300
Gao Xiang7146a4f2018-12-08 00:19:18 +08001301 z_erofs_vle_unzip_kickoff(bi_private, nr_bios);
Gao Xiang3883a792018-07-26 20:22:06 +08001302 return true;
1303}
1304
Gao Xiang97e86a82019-07-31 23:57:47 +08001305static void z_erofs_submit_and_unzip(struct super_block *sb,
1306 struct z_erofs_collector *clt,
Gao Xiang3883a792018-07-26 20:22:06 +08001307 struct list_head *pagepool,
1308 bool force_fg)
1309{
Gao Xiang97e86a82019-07-31 23:57:47 +08001310 struct z_erofs_unzip_io io[NR_JOBQUEUES];
Gao Xiang3883a792018-07-26 20:22:06 +08001311
Gao Xiang97e86a82019-07-31 23:57:47 +08001312 if (!z_erofs_vle_submit_all(sb, clt->owned_head,
1313 pagepool, io, force_fg))
Gao Xiang3883a792018-07-26 20:22:06 +08001314 return;
1315
Gao Xiang97e86a82019-07-31 23:57:47 +08001316 /* decompress no I/O pclusters immediately */
Gao Xiang7146a4f2018-12-08 00:19:18 +08001317 z_erofs_vle_unzip_all(sb, &io[JQ_BYPASS], pagepool);
Gao Xiang4279f3f2019-07-31 23:57:49 +08001318
Gao Xiang3883a792018-07-26 20:22:06 +08001319 if (!force_fg)
1320 return;
1321
1322 /* wait until all bios are completed */
Gao Xiang7146a4f2018-12-08 00:19:18 +08001323 wait_event(io[JQ_SUBMIT].u.wait,
1324 !atomic_read(&io[JQ_SUBMIT].pending_bios));
Gao Xiang3883a792018-07-26 20:22:06 +08001325
1326 /* let's synchronous decompression */
Gao Xiang7146a4f2018-12-08 00:19:18 +08001327 z_erofs_vle_unzip_all(sb, &io[JQ_SUBMIT], pagepool);
Gao Xiang3883a792018-07-26 20:22:06 +08001328}
1329
1330static int z_erofs_vle_normalaccess_readpage(struct file *file,
1331 struct page *page)
1332{
1333 struct inode *const inode = page->mapping->host;
Gao Xiang97e86a82019-07-31 23:57:47 +08001334 struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode);
Gao Xiang3883a792018-07-26 20:22:06 +08001335 int err;
1336 LIST_HEAD(pagepool);
1337
Gao Xiangba9ce772018-11-23 01:15:58 +08001338 trace_erofs_readpage(page, false);
1339
Gao Xiangf0c519f2018-11-23 01:21:49 +08001340 f.headoffset = (erofs_off_t)page->index << PAGE_SHIFT;
1341
Gao Xiang3883a792018-07-26 20:22:06 +08001342 err = z_erofs_do_read_page(&f, page, &pagepool);
Gao Xiang97e86a82019-07-31 23:57:47 +08001343 (void)z_erofs_collector_end(&f.clt);
Gao Xiang3883a792018-07-26 20:22:06 +08001344
Gao Xiangee451972019-08-19 18:34:21 +08001345 /* if some compressed cluster ready, need submit them anyway */
Gao Xiang97e86a82019-07-31 23:57:47 +08001346 z_erofs_submit_and_unzip(inode->i_sb, &f.clt, &pagepool, true);
Gao Xiangee451972019-08-19 18:34:21 +08001347
1348 if (err)
1349 errln("%s, failed to read, err [%d]", __func__, err);
1350
Chao Yu3b423412019-01-15 09:42:21 +08001351 if (f.map.mpage)
1352 put_page(f.map.mpage);
Gao Xiang3883a792018-07-26 20:22:06 +08001353
1354 /* clean up the remaining free pages */
1355 put_pages_list(&pagepool);
Gao Xiangee451972019-08-19 18:34:21 +08001356 return err;
Gao Xiang3883a792018-07-26 20:22:06 +08001357}
1358
Gao Xiang14f362b2019-07-31 23:57:36 +08001359static bool should_decompress_synchronously(struct erofs_sb_info *sbi,
1360 unsigned int nr)
1361{
1362 return nr <= sbi->max_sync_decompress_pages;
1363}
1364
Gao Xiang5fb76bb2018-09-20 00:06:56 +08001365static int z_erofs_vle_normalaccess_readpages(struct file *filp,
1366 struct address_space *mapping,
1367 struct list_head *pages,
1368 unsigned int nr_pages)
Gao Xiang3883a792018-07-26 20:22:06 +08001369{
1370 struct inode *const inode = mapping->host;
Gao Xiang5fb76bb2018-09-20 00:06:56 +08001371 struct erofs_sb_info *const sbi = EROFS_I_SB(inode);
Gao Xiang3883a792018-07-26 20:22:06 +08001372
Gao Xiang14f362b2019-07-31 23:57:36 +08001373 bool sync = should_decompress_synchronously(sbi, nr_pages);
Gao Xiang97e86a82019-07-31 23:57:47 +08001374 struct z_erofs_decompress_frontend f = DECOMPRESS_FRONTEND_INIT(inode);
Gao Xiang3883a792018-07-26 20:22:06 +08001375 gfp_t gfp = mapping_gfp_constraint(mapping, GFP_KERNEL);
1376 struct page *head = NULL;
1377 LIST_HEAD(pagepool);
1378
Chen Gong284db122018-09-18 22:27:27 +08001379 trace_erofs_readpages(mapping->host, lru_to_page(pages),
1380 nr_pages, false);
1381
Gao Xiangf0c519f2018-11-23 01:21:49 +08001382 f.headoffset = (erofs_off_t)lru_to_page(pages)->index << PAGE_SHIFT;
1383
Gao Xiang3883a792018-07-26 20:22:06 +08001384 for (; nr_pages; --nr_pages) {
1385 struct page *page = lru_to_page(pages);
1386
1387 prefetchw(&page->flags);
1388 list_del(&page->lru);
1389
Gao Xiang2d9b5dc2018-11-23 01:21:48 +08001390 /*
1391 * A pure asynchronous readahead is indicated if
1392 * a PG_readahead marked page is hitted at first.
1393 * Let's also do asynchronous decompression for this case.
1394 */
1395 sync &= !(PageReadahead(page) && !head);
1396
Gao Xiang3883a792018-07-26 20:22:06 +08001397 if (add_to_page_cache_lru(page, mapping, page->index, gfp)) {
1398 list_add(&page->lru, &pagepool);
1399 continue;
1400 }
1401
Gao Xiang3883a792018-07-26 20:22:06 +08001402 set_page_private(page, (unsigned long)head);
1403 head = page;
1404 }
1405
Cristian Sicilia42d40b42018-11-12 21:43:57 +01001406 while (head) {
Gao Xiang3883a792018-07-26 20:22:06 +08001407 struct page *page = head;
1408 int err;
1409
1410 /* traversal in reverse order */
1411 head = (void *)page_private(page);
1412
1413 err = z_erofs_do_read_page(&f, page, &pagepool);
Gao Xianga5876e22019-09-04 10:08:56 +08001414 if (err)
Gao Xiang3883a792018-07-26 20:22:06 +08001415 errln("%s, readahead error at page %lu of nid %llu",
Gao Xianga5876e22019-09-04 10:08:56 +08001416 __func__, page->index, EROFS_I(inode)->nid);
Gao Xiang3883a792018-07-26 20:22:06 +08001417 put_page(page);
1418 }
1419
Gao Xiang97e86a82019-07-31 23:57:47 +08001420 (void)z_erofs_collector_end(&f.clt);
Gao Xiang3883a792018-07-26 20:22:06 +08001421
Gao Xiang97e86a82019-07-31 23:57:47 +08001422 z_erofs_submit_and_unzip(inode->i_sb, &f.clt, &pagepool, sync);
Gao Xiang3883a792018-07-26 20:22:06 +08001423
Chao Yu3b423412019-01-15 09:42:21 +08001424 if (f.map.mpage)
1425 put_page(f.map.mpage);
Gao Xiang3883a792018-07-26 20:22:06 +08001426
1427 /* clean up the remaining free pages */
1428 put_pages_list(&pagepool);
1429 return 0;
1430}
1431
Gao Xiang3883a792018-07-26 20:22:06 +08001432const struct address_space_operations z_erofs_vle_normalaccess_aops = {
1433 .readpage = z_erofs_vle_normalaccess_readpage,
1434 .readpages = z_erofs_vle_normalaccess_readpages,
1435};
Gao Xiang02827e12018-07-26 20:21:58 +08001436