1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Squashfs - a compressed read only filesystem for Linux
5 * Copyright (c) 2010 LG Electronics
11 #include <linux/mutex.h>
12 #include <linux/buffer_head.h>
13 #include <linux/slab.h>
14 #include <linux/vmalloc.h>
15 #include <linux/lzo.h>
17 #include "squashfs_fs.h"
18 #include "squashfs_fs_sb.h"
20 #include "decompressor.h"
21 #include "page_actor.h"
28 static void *lzo_init(struct squashfs_sb_info *msblk, void *buff)
30 int block_size = max_t(int, msblk->block_size, SQUASHFS_METADATA_SIZE);
32 struct squashfs_lzo *stream = kzalloc(sizeof(*stream), GFP_KERNEL);
35 stream->input = vmalloc(block_size);
36 if (stream->input == NULL)
38 stream->output = vmalloc(block_size);
39 if (stream->output == NULL)
47 ERROR("Failed to allocate lzo workspace\n");
49 return ERR_PTR(-ENOMEM);
53 static void lzo_free(void *strm)
55 struct squashfs_lzo *stream = strm;
59 vfree(stream->output);
65 static int lzo_uncompress(struct squashfs_sb_info *msblk, void *strm,
66 struct buffer_head **bh, int b, int offset, int length,
67 struct squashfs_page_actor *output)
69 struct squashfs_lzo *stream = strm;
70 void *buff = stream->input, *data;
71 int avail, i, bytes = length, res;
72 size_t out_len = output->length;
74 for (i = 0; i < b; i++) {
75 avail = min(bytes, msblk->devblksize - offset);
76 memcpy(buff, bh[i]->b_data + offset, avail);
83 res = lzo1x_decompress_safe(stream->input, (size_t)length,
84 stream->output, &out_len);
88 res = bytes = (int)out_len;
89 data = squashfs_first_page(output);
90 buff = stream->output;
92 if (bytes <= PAGE_SIZE) {
93 memcpy(data, buff, bytes);
96 memcpy(data, buff, PAGE_SIZE);
99 data = squashfs_next_page(output);
102 squashfs_finish_page(output);
110 const struct squashfs_decompressor squashfs_lzo_comp_ops = {
113 .decompress = lzo_uncompress,
114 .id = LZO_COMPRESSION,