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_dstream_workspace_bound(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_in_buffer in_buf = { NULL, 0, 0 };
70 zstd_out_buffer 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_init_dstream(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);
83 if (IS_ERR(out_buf.dst)) {
84 error = PTR_ERR(out_buf.dst);
91 if (in_buf.pos == in_buf.size) {
95 if (!bio_next_segment(bio, &iter_all)) {
100 avail = min(length, ((int)bvec->bv_len) - offset);
101 data = bvec_virt(bvec);
103 in_buf.src = data + offset;
109 if (out_buf.pos == out_buf.size) {
110 out_buf.dst = squashfs_next_page(output);
111 if (IS_ERR(out_buf.dst)) {
112 error = PTR_ERR(out_buf.dst);
114 } else if (out_buf.dst == NULL) {
115 /* Shouldn't run out of pages
116 * before stream is done.
122 out_buf.size = PAGE_SIZE;
125 total_out -= out_buf.pos;
126 zstd_err = zstd_decompress_stream(stream, &out_buf, &in_buf);
127 total_out += out_buf.pos; /* add the additional data produced */
131 if (zstd_is_error(zstd_err)) {
132 ERROR("zstd decompression error: %d\n",
133 (int)zstd_get_error_code(zstd_err));
141 squashfs_finish_page(output);
143 return error ? error : total_out;
146 const struct squashfs_decompressor squashfs_zstd_comp_ops = {
149 .decompress = zstd_uncompress,
150 .id = ZSTD_COMPRESSION,