1 // SPDX-License-Identifier: GPL-2.0-only
4 * Phillip Lougher <phillip@squashfs.org.uk>
7 #include <linux/types.h>
8 #include <linux/mutex.h>
9 #include <linux/slab.h>
10 #include <linux/bio.h>
12 #include "squashfs_fs.h"
13 #include "squashfs_fs_sb.h"
14 #include "decompressor.h"
18 * This file implements single-threaded decompression in the
19 * decompressor framework
22 struct squashfs_stream
{
27 void *squashfs_decompressor_create(struct squashfs_sb_info
*msblk
,
30 struct squashfs_stream
*stream
;
33 stream
= kmalloc(sizeof(*stream
), GFP_KERNEL
);
37 stream
->stream
= msblk
->decompressor
->init(msblk
, comp_opts
);
38 if (IS_ERR(stream
->stream
)) {
39 err
= PTR_ERR(stream
->stream
);
44 mutex_init(&stream
->mutex
);
52 void squashfs_decompressor_destroy(struct squashfs_sb_info
*msblk
)
54 struct squashfs_stream
*stream
= msblk
->stream
;
57 msblk
->decompressor
->free(stream
->stream
);
62 int squashfs_decompress(struct squashfs_sb_info
*msblk
, struct bio
*bio
,
63 int offset
, int length
,
64 struct squashfs_page_actor
*output
)
67 struct squashfs_stream
*stream
= msblk
->stream
;
69 mutex_lock(&stream
->mutex
);
70 res
= msblk
->decompressor
->decompress(msblk
, stream
->stream
, bio
,
71 offset
, length
, output
);
72 mutex_unlock(&stream
->mutex
);
75 ERROR("%s decompression failed, data probably corrupt\n",
76 msblk
->decompressor
->name
);
81 int squashfs_max_decompressors(void)