blob: 2c844d53a59e07e57a3731aca9167f363c18f76f [file] [log] [blame]
Chan Jeong79cb8ce2010-08-05 02:29:59 +01001/*
2 * Squashfs - a compressed read only filesystem for Linux
3 *
4 * Copyright (c) 2010 LG Electronics
5 * Chan Jeong <chan.jeong@lge.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2,
10 * or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 *
21 * lzo_wrapper.c
22 */
23
24#include <linux/mutex.h>
25#include <linux/buffer_head.h>
26#include <linux/slab.h>
27#include <linux/vmalloc.h>
28#include <linux/lzo.h>
29
30#include "squashfs_fs.h"
31#include "squashfs_fs_sb.h"
Chan Jeong79cb8ce2010-08-05 02:29:59 +010032#include "squashfs.h"
33#include "decompressor.h"
Phillip Lougher846b7302013-11-18 02:59:12 +000034#include "page_actor.h"
Chan Jeong79cb8ce2010-08-05 02:29:59 +010035
36struct squashfs_lzo {
37 void *input;
38 void *output;
39};
40
Phillip Lougher9508c6b2013-11-13 02:56:26 +000041static void *lzo_init(struct squashfs_sb_info *msblk, void *buff)
Chan Jeong79cb8ce2010-08-05 02:29:59 +010042{
Phillip Lougherf3065f62010-08-05 04:51:50 +010043 int block_size = max_t(int, msblk->block_size, SQUASHFS_METADATA_SIZE);
44
Chan Jeong79cb8ce2010-08-05 02:29:59 +010045 struct squashfs_lzo *stream = kzalloc(sizeof(*stream), GFP_KERNEL);
46 if (stream == NULL)
47 goto failed;
Phillip Lougherf3065f62010-08-05 04:51:50 +010048 stream->input = vmalloc(block_size);
Chan Jeong79cb8ce2010-08-05 02:29:59 +010049 if (stream->input == NULL)
50 goto failed;
Phillip Lougherf3065f62010-08-05 04:51:50 +010051 stream->output = vmalloc(block_size);
Chan Jeong79cb8ce2010-08-05 02:29:59 +010052 if (stream->output == NULL)
53 goto failed2;
54
55 return stream;
56
57failed2:
58 vfree(stream->input);
59failed:
60 ERROR("Failed to allocate lzo workspace\n");
61 kfree(stream);
Phillip Lougherb7fc0ff2011-02-28 01:45:42 +000062 return ERR_PTR(-ENOMEM);
Chan Jeong79cb8ce2010-08-05 02:29:59 +010063}
64
65
66static void lzo_free(void *strm)
67{
68 struct squashfs_lzo *stream = strm;
69
70 if (stream) {
71 vfree(stream->input);
72 vfree(stream->output);
73 }
74 kfree(stream);
75}
76
77
Phillip Lougher9508c6b2013-11-13 02:56:26 +000078static int lzo_uncompress(struct squashfs_sb_info *msblk, void *strm,
Phillip Lougher846b7302013-11-18 02:59:12 +000079 struct buffer_head **bh, int b, int offset, int length,
80 struct squashfs_page_actor *output)
Chan Jeong79cb8ce2010-08-05 02:29:59 +010081{
Adrien Schildknecht38840af2016-09-28 13:59:18 -070082 int res;
Phillip Lougher846b7302013-11-18 02:59:12 +000083 size_t out_len = output->length;
Adrien Schildknecht38840af2016-09-28 13:59:18 -070084 struct squashfs_lzo *stream = strm;
Chan Jeong79cb8ce2010-08-05 02:29:59 +010085
Adrien Schildknecht38840af2016-09-28 13:59:18 -070086 squashfs_bh_to_buf(bh, b, stream->input, offset, length,
87 msblk->devblksize);
Chan Jeong79cb8ce2010-08-05 02:29:59 +010088 res = lzo1x_decompress_safe(stream->input, (size_t)length,
89 stream->output, &out_len);
90 if (res != LZO_E_OK)
Adrien Schildknecht38840af2016-09-28 13:59:18 -070091 return -EIO;
92 squashfs_buf_to_actor(stream->output, output, out_len);
Chan Jeong79cb8ce2010-08-05 02:29:59 +010093
Adrien Schildknecht38840af2016-09-28 13:59:18 -070094 return out_len;
Chan Jeong79cb8ce2010-08-05 02:29:59 +010095}
96
97const struct squashfs_decompressor squashfs_lzo_comp_ops = {
98 .init = lzo_init,
99 .free = lzo_free,
100 .decompress = lzo_uncompress,
101 .id = LZO_COMPRESSION,
102 .name = "lzo",
103 .supported = 1
104};