1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Squashfs - a compressed read only filesystem for Linux
5 * Copyright (c) 2016-present, Facebook, Inc.
11 #include <linux/mutex.h>
12 #include <linux/bio.h>
13 #include <linux/slab.h>
14 #include <linux/zstd.h>
15 #include <linux/vmalloc.h>
17 #include "squashfs_fs.h"
18 #include "squashfs_fs_sb.h"
20 #include "decompressor.h"
21 #include "page_actor.h"
29 static void *zstd_init(struct squashfs_sb_info *msblk, void *buff)
31 struct workspace *wksp = kmalloc(sizeof(*wksp), GFP_KERNEL);
35 wksp->window_size = max_t(size_t,
36 msblk->block_size, SQUASHFS_METADATA_SIZE);
37 wksp->mem_size = ZSTD_DStreamWorkspaceBound(wksp->window_size);
38 wksp->mem = vmalloc(wksp->mem_size);
39 if (wksp->mem == NULL)
45 ERROR("Failed to allocate zstd workspace\n");
47 return ERR_PTR(-ENOMEM);
51 static void zstd_free(void *strm)
53 struct workspace *wksp = strm;
61 static int zstd_uncompress(struct squashfs_sb_info *msblk, void *strm,
62 struct bio *bio, int offset, int length,
63 struct squashfs_page_actor *output)
65 struct workspace *wksp = strm;
69 ZSTD_inBuffer in_buf = { NULL, 0, 0 };
70 ZSTD_outBuffer out_buf = { NULL, 0, 0 };
71 struct bvec_iter_all iter_all = {};
72 struct bio_vec *bvec = bvec_init_iter_all(&iter_all);
74 stream = ZSTD_initDStream(wksp->window_size, wksp->mem, wksp->mem_size);
77 ERROR("Failed to initialize zstd decompressor\n");
81 out_buf.size = PAGE_SIZE;
82 out_buf.dst = squashfs_first_page(output);
87 if (in_buf.pos == in_buf.size) {
91 if (!bio_next_segment(bio, &iter_all)) {
96 avail = min(length, ((int)bvec->bv_len) - offset);
97 data = bvec_virt(bvec);
99 in_buf.src = data + offset;
105 if (out_buf.pos == out_buf.size) {
106 out_buf.dst = squashfs_next_page(output);
107 if (out_buf.dst == NULL) {
108 /* Shouldn't run out of pages
109 * before stream is done.
115 out_buf.size = PAGE_SIZE;
118 total_out -= out_buf.pos;
119 zstd_err = ZSTD_decompressStream(stream, &out_buf, &in_buf);
120 total_out += out_buf.pos; /* add the additional data produced */
124 if (ZSTD_isError(zstd_err)) {
125 ERROR("zstd decompression error: %d\n",
126 (int)ZSTD_getErrorCode(zstd_err));
132 squashfs_finish_page(output);
134 return error ? error : total_out;
137 const struct squashfs_decompressor squashfs_zstd_comp_ops = {
140 .decompress = zstd_uncompress,
141 .id = ZSTD_COMPRESSION,