1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2019 HUAWEI, Inc.
4 * https://www.huawei.com/
9 #ifndef LZ4_DISTANCE_MAX /* history window size */
10 #define LZ4_DISTANCE_MAX 65535 /* set to maximum value by default */
13 #define LZ4_MAX_DISTANCE_PAGES (DIV_ROUND_UP(LZ4_DISTANCE_MAX, PAGE_SIZE) + 1)
14 #ifndef LZ4_DECOMPRESS_INPLACE_MARGIN
15 #define LZ4_DECOMPRESS_INPLACE_MARGIN(srcsize) (((srcsize) >> 8) + 32)
18 struct z_erofs_lz4_decompress_ctx {
19 struct z_erofs_decompress_req *rq;
20 /* # of encoded, decoded pages */
21 unsigned int inpages, outpages;
22 /* decoded block total length (used for in-place decompression) */
26 static int z_erofs_load_lz4_config(struct super_block *sb,
27 struct erofs_super_block *dsb, void *data, int size)
29 struct erofs_sb_info *sbi = EROFS_SB(sb);
30 struct z_erofs_lz4_cfgs *lz4 = data;
34 if (size < sizeof(struct z_erofs_lz4_cfgs)) {
35 erofs_err(sb, "invalid lz4 cfgs, size=%u", size);
38 distance = le16_to_cpu(lz4->max_distance);
40 sbi->lz4.max_pclusterblks = le16_to_cpu(lz4->max_pclusterblks);
41 if (!sbi->lz4.max_pclusterblks) {
42 sbi->lz4.max_pclusterblks = 1; /* reserved case */
43 } else if (sbi->lz4.max_pclusterblks >
44 erofs_blknr(sb, Z_EROFS_PCLUSTER_MAX_SIZE)) {
45 erofs_err(sb, "too large lz4 pclusterblks %u",
46 sbi->lz4.max_pclusterblks);
50 distance = le16_to_cpu(dsb->u1.lz4_max_distance);
51 sbi->lz4.max_pclusterblks = 1;
54 sbi->lz4.max_distance_pages = distance ?
55 DIV_ROUND_UP(distance, PAGE_SIZE) + 1 :
56 LZ4_MAX_DISTANCE_PAGES;
57 return erofs_pcpubuf_growsize(sbi->lz4.max_pclusterblks);
61 * Fill all gaps with bounce pages if it's a sparse page list. Also check if
62 * all physical pages are consecutive, which can be seen for moderate CR.
64 static int z_erofs_lz4_prepare_dstpages(struct z_erofs_lz4_decompress_ctx *ctx,
65 struct page **pagepool)
67 struct z_erofs_decompress_req *rq = ctx->rq;
68 struct page *availables[LZ4_MAX_DISTANCE_PAGES] = { NULL };
69 unsigned long bounced[DIV_ROUND_UP(LZ4_MAX_DISTANCE_PAGES,
70 BITS_PER_LONG)] = { 0 };
71 unsigned int lz4_max_distance_pages =
72 EROFS_SB(rq->sb)->lz4.max_distance_pages;
74 unsigned int i, j, top;
77 for (i = j = 0; i < ctx->outpages; ++i, ++j) {
78 struct page *const page = rq->out[i];
81 if (j >= lz4_max_distance_pages)
84 /* 'valid' bounced can only be tested after a complete round */
85 if (!rq->fillgaps && test_bit(j, bounced)) {
86 DBG_BUGON(i < lz4_max_distance_pages);
87 DBG_BUGON(top >= lz4_max_distance_pages);
88 availables[top++] = rq->out[i - lz4_max_distance_pages];
92 __clear_bit(j, bounced);
93 if (!PageHighMem(page)) {
95 kaddr = page_address(page);
99 kaddr + PAGE_SIZE == page_address(page)) {
108 __set_bit(j, bounced);
111 victim = availables[--top];
114 victim = erofs_allocpage(pagepool,
115 GFP_KERNEL | __GFP_NOFAIL);
116 set_page_private(victim, Z_EROFS_SHORTLIVED_PAGE);
120 return kaddr ? 1 : 0;
123 static void *z_erofs_lz4_handle_overlap(struct z_erofs_lz4_decompress_ctx *ctx,
124 void *inpage, unsigned int *inputmargin, int *maptype,
127 struct z_erofs_decompress_req *rq = ctx->rq;
128 unsigned int omargin, total, i, j;
132 if (rq->inplace_io) {
133 omargin = PAGE_ALIGN(ctx->oend) - ctx->oend;
134 if (rq->partial_decoding || !may_inplace ||
135 omargin < LZ4_DECOMPRESS_INPLACE_MARGIN(rq->inputsize))
138 for (i = 0; i < ctx->inpages; ++i) {
139 DBG_BUGON(rq->in[i] == NULL);
140 for (j = 0; j < ctx->outpages - ctx->inpages + i; ++j)
141 if (rq->out[j] == rq->in[i])
146 if (ctx->inpages <= 1) {
150 kunmap_local(inpage);
152 src = erofs_vm_map_ram(rq->in, ctx->inpages);
154 return ERR_PTR(-ENOMEM);
159 /* Or copy compressed data which can be overlapped to per-CPU buffer */
161 src = erofs_get_pcpubuf(ctx->inpages);
164 kunmap_local(inpage);
165 return ERR_PTR(-EFAULT);
169 total = rq->inputsize;
171 unsigned int page_copycnt =
172 min_t(unsigned int, total, PAGE_SIZE - *inputmargin);
175 inpage = kmap_local_page(*in);
176 memcpy(tmp, inpage + *inputmargin, page_copycnt);
177 kunmap_local(inpage);
180 total -= page_copycnt;
189 * Get the exact inputsize with zero_padding feature.
190 * - For LZ4, it should work if zero_padding feature is on (5.3+);
191 * - For MicroLZMA, it'd be enabled all the time.
193 int z_erofs_fixup_insize(struct z_erofs_decompress_req *rq, const char *padbuf,
194 unsigned int padbufsize)
198 padend = memchr_inv(padbuf, 0, padbufsize);
200 return -EFSCORRUPTED;
201 rq->inputsize -= padend - padbuf;
202 rq->pageofs_in += padend - padbuf;
206 static int z_erofs_lz4_decompress_mem(struct z_erofs_lz4_decompress_ctx *ctx,
209 struct z_erofs_decompress_req *rq = ctx->rq;
210 bool support_0padding = false, may_inplace = false;
211 unsigned int inputmargin;
215 DBG_BUGON(*rq->in == NULL);
216 headpage = kmap_local_page(*rq->in);
218 /* LZ4 decompression inplace is only safe if zero_padding is enabled */
219 if (erofs_sb_has_zero_padding(EROFS_SB(rq->sb))) {
220 support_0padding = true;
221 ret = z_erofs_fixup_insize(rq, headpage + rq->pageofs_in,
222 min_t(unsigned int, rq->inputsize,
223 rq->sb->s_blocksize - rq->pageofs_in));
225 kunmap_local(headpage);
228 may_inplace = !((rq->pageofs_in + rq->inputsize) &
229 (rq->sb->s_blocksize - 1));
232 inputmargin = rq->pageofs_in;
233 src = z_erofs_lz4_handle_overlap(ctx, headpage, &inputmargin,
234 &maptype, may_inplace);
238 /* legacy format could compress extra data in a pcluster. */
239 if (rq->partial_decoding || !support_0padding)
240 ret = LZ4_decompress_safe_partial(src + inputmargin, out,
241 rq->inputsize, rq->outputsize, rq->outputsize);
243 ret = LZ4_decompress_safe(src + inputmargin, out,
244 rq->inputsize, rq->outputsize);
246 if (ret != rq->outputsize) {
247 erofs_err(rq->sb, "failed to decompress %d in[%u, %u] out[%u]",
248 ret, rq->inputsize, inputmargin, rq->outputsize);
250 print_hex_dump(KERN_DEBUG, "[ in]: ", DUMP_PREFIX_OFFSET,
251 16, 1, src + inputmargin, rq->inputsize, true);
252 print_hex_dump(KERN_DEBUG, "[out]: ", DUMP_PREFIX_OFFSET,
253 16, 1, out, rq->outputsize, true);
256 memset(out + ret, 0, rq->outputsize - ret);
263 kunmap_local(headpage);
264 } else if (maptype == 1) {
265 vm_unmap_ram(src, ctx->inpages);
266 } else if (maptype == 2) {
267 erofs_put_pcpubuf(src);
275 static int z_erofs_lz4_decompress(struct z_erofs_decompress_req *rq,
276 struct page **pagepool)
278 struct z_erofs_lz4_decompress_ctx ctx;
279 unsigned int dst_maptype;
284 ctx.oend = rq->pageofs_out + rq->outputsize;
285 ctx.outpages = PAGE_ALIGN(ctx.oend) >> PAGE_SHIFT;
286 ctx.inpages = PAGE_ALIGN(rq->inputsize) >> PAGE_SHIFT;
288 /* one optimized fast path only for non bigpcluster cases yet */
289 if (ctx.inpages == 1 && ctx.outpages == 1 && !rq->inplace_io) {
290 DBG_BUGON(!*rq->out);
291 dst = kmap_local_page(*rq->out);
296 /* general decoding path which can be used for all cases */
297 ret = z_erofs_lz4_prepare_dstpages(&ctx, pagepool);
300 } else if (ret > 0) {
301 dst = page_address(*rq->out);
304 dst = erofs_vm_map_ram(rq->out, ctx.outpages);
311 ret = z_erofs_lz4_decompress_mem(&ctx, dst + rq->pageofs_out);
314 else if (dst_maptype == 2)
315 vm_unmap_ram(dst, ctx.outpages);
319 static int z_erofs_transform_plain(struct z_erofs_decompress_req *rq,
320 struct page **pagepool)
322 const unsigned int inpages = PAGE_ALIGN(rq->inputsize) >> PAGE_SHIFT;
323 const unsigned int outpages =
324 PAGE_ALIGN(rq->pageofs_out + rq->outputsize) >> PAGE_SHIFT;
325 const unsigned int righthalf = min_t(unsigned int, rq->outputsize,
326 PAGE_SIZE - rq->pageofs_out);
327 const unsigned int lefthalf = rq->outputsize - righthalf;
328 const unsigned int interlaced_offset =
329 rq->alg == Z_EROFS_COMPRESSION_SHIFTED ? 0 : rq->pageofs_out;
332 if (outpages > 2 && rq->alg == Z_EROFS_COMPRESSION_SHIFTED) {
334 return -EFSCORRUPTED;
337 if (rq->out[0] == *rq->in) {
338 DBG_BUGON(rq->pageofs_out);
342 src = kmap_local_page(rq->in[inpages - 1]) + rq->pageofs_in;
344 memcpy_to_page(rq->out[0], rq->pageofs_out,
345 src + interlaced_offset, righthalf);
347 if (outpages > inpages) {
348 DBG_BUGON(!rq->out[outpages - 1]);
349 if (rq->out[outpages - 1] != rq->in[inpages - 1]) {
350 memcpy_to_page(rq->out[outpages - 1], 0, src +
351 (interlaced_offset ? 0 : righthalf),
353 } else if (!interlaced_offset) {
354 memmove(src, src + righthalf, lefthalf);
355 flush_dcache_page(rq->in[inpages - 1]);
362 const struct z_erofs_decompressor erofs_decompressors[] = {
363 [Z_EROFS_COMPRESSION_SHIFTED] = {
364 .decompress = z_erofs_transform_plain,
367 [Z_EROFS_COMPRESSION_INTERLACED] = {
368 .decompress = z_erofs_transform_plain,
371 [Z_EROFS_COMPRESSION_LZ4] = {
372 .config = z_erofs_load_lz4_config,
373 .decompress = z_erofs_lz4_decompress,
376 #ifdef CONFIG_EROFS_FS_ZIP_LZMA
377 [Z_EROFS_COMPRESSION_LZMA] = {
378 .config = z_erofs_load_lzma_config,
379 .decompress = z_erofs_lzma_decompress,
383 #ifdef CONFIG_EROFS_FS_ZIP_DEFLATE
384 [Z_EROFS_COMPRESSION_DEFLATE] = {
385 .config = z_erofs_load_deflate_config,
386 .decompress = z_erofs_deflate_decompress,
392 int z_erofs_parse_cfgs(struct super_block *sb, struct erofs_super_block *dsb)
394 struct erofs_sb_info *sbi = EROFS_SB(sb);
395 struct erofs_buf buf = __EROFS_BUF_INITIALIZER;
396 unsigned int algs, alg;
400 if (!erofs_sb_has_compr_cfgs(sbi)) {
401 sbi->available_compr_algs = Z_EROFS_COMPRESSION_LZ4;
402 return z_erofs_load_lz4_config(sb, dsb, NULL, 0);
405 sbi->available_compr_algs = le16_to_cpu(dsb->u1.available_compr_algs);
406 if (sbi->available_compr_algs & ~Z_EROFS_ALL_COMPR_ALGS) {
407 erofs_err(sb, "unidentified algorithms %x, please upgrade kernel",
408 sbi->available_compr_algs & ~Z_EROFS_ALL_COMPR_ALGS);
412 erofs_init_metabuf(&buf, sb);
413 offset = EROFS_SUPER_OFFSET + sbi->sb_size;
415 for (algs = sbi->available_compr_algs; algs; algs >>= 1, ++alg) {
421 data = erofs_read_metadata(sb, &buf, &offset, &size);
427 if (alg >= ARRAY_SIZE(erofs_decompressors) ||
428 !erofs_decompressors[alg].config) {
429 erofs_err(sb, "algorithm %d isn't enabled on this kernel",
433 ret = erofs_decompressors[alg].config(sb,
441 erofs_put_metabuf(&buf);