lzo1x_decompress_safe.c 4.9 KB
Newer Older
1
/*
2
 *  LZO1X Decompressor from LZO
3
 *
4
 *  Copyright (C) 1996-2012 Markus F.X.J. Oberhumer <markus@oberhumer.com>
5 6 7 8
 *
 *  The full LZO package can be found at:
 *  http://www.oberhumer.com/opensource/lzo/
 *
9
 *  Changed for Linux kernel use by:
10 11 12 13
 *  Nitin Gupta <nitingupta910@gmail.com>
 *  Richard Purdie <rpurdie@openedhand.com>
 */

14
#ifndef STATIC
15 16
#include <linux/module.h>
#include <linux/kernel.h>
17
#endif
18
#include <asm/unaligned.h>
19
#include <linux/lzo.h>
20 21
#include "lzodefs.h"

22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
#define HAVE_IP(t, x)					\
	(((size_t)(ip_end - ip) >= (size_t)(t + x)) &&	\
	 (((t + x) >= t) && ((t + x) >= x)))

#define HAVE_OP(t, x)					\
	(((size_t)(op_end - op) >= (size_t)(t + x)) &&	\
	 (((t + x) >= t) && ((t + x) >= x)))

#define NEED_IP(t, x)					\
	do {						\
		if (!HAVE_IP(t, x))			\
			goto input_overrun;		\
	} while (0)

#define NEED_OP(t, x)					\
	do {						\
		if (!HAVE_OP(t, x))			\
			goto output_overrun;		\
	} while (0)

#define TEST_LB(m_pos)					\
	do {						\
		if ((m_pos) < out)			\
			goto lookbehind_overrun;	\
	} while (0)
47 48

int lzo1x_decompress_safe(const unsigned char *in, size_t in_len,
49
			  unsigned char *out, size_t *out_len)
50
{
51 52 53 54 55
	unsigned char *op;
	const unsigned char *ip;
	size_t t, next;
	size_t state = 0;
	const unsigned char *m_pos;
56 57 58
	const unsigned char * const ip_end = in + in_len;
	unsigned char * const op_end = out + *out_len;

59 60
	op = out;
	ip = in;
61

62 63
	if (unlikely(in_len < 3))
		goto input_overrun;
64 65
	if (*ip > 17) {
		t = *ip++ - 17;
66 67
		if (t < 4) {
			next = t;
68 69
			goto match_next;
		}
70 71
		goto copy_literal_run;
	}
72

73
	for (;;) {
74
		t = *ip++;
75 76 77 78
		if (t < 16) {
			if (likely(state == 0)) {
				if (unlikely(t == 0)) {
					while (unlikely(*ip == 0)) {
79 80
						t += 255;
						ip++;
81
						NEED_IP(1, 0);
82
					}
83
					t += 15 + *ip++;
84
				}
85 86 87
				t += 3;
copy_literal_run:
#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
88
				if (likely(HAVE_IP(t, 15) && HAVE_OP(t, 15))) {
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
					const unsigned char *ie = ip + t;
					unsigned char *oe = op + t;
					do {
						COPY8(op, ip);
						op += 8;
						ip += 8;
						COPY8(op, ip);
						op += 8;
						ip += 8;
					} while (ip < ie);
					ip = ie;
					op = oe;
				} else
#endif
				{
104 105
					NEED_OP(t, 0);
					NEED_IP(t, 3);
106 107 108
					do {
						*op++ = *ip++;
					} while (--t > 0);
109
				}
110 111 112 113
				state = 4;
				continue;
			} else if (state != 4) {
				next = t & 3;
114 115 116
				m_pos = op - 1;
				m_pos -= t >> 2;
				m_pos -= *ip++ << 2;
117
				TEST_LB(m_pos);
118
				NEED_OP(2, 0);
119 120 121 122 123 124 125 126 127 128
				op[0] = m_pos[0];
				op[1] = m_pos[1];
				op += 2;
				goto match_next;
			} else {
				next = t & 3;
				m_pos = op - (1 + M2_MAX_OFFSET);
				m_pos -= t >> 2;
				m_pos -= *ip++ << 2;
				t = 3;
129
			}
130 131 132 133 134 135 136 137 138 139 140 141
		} else if (t >= 64) {
			next = t & 3;
			m_pos = op - 1;
			m_pos -= (t >> 2) & 7;
			m_pos -= *ip++ << 3;
			t = (t >> 5) - 1 + (3 - 1);
		} else if (t >= 32) {
			t = (t & 31) + (3 - 1);
			if (unlikely(t == 2)) {
				while (unlikely(*ip == 0)) {
					t += 255;
					ip++;
142
					NEED_IP(1, 0);
143 144
				}
				t += 31 + *ip++;
145
				NEED_IP(2, 0);
146 147 148 149 150 151 152 153 154 155 156 157 158 159
			}
			m_pos = op - 1;
			next = get_unaligned_le16(ip);
			ip += 2;
			m_pos -= next >> 2;
			next &= 3;
		} else {
			m_pos = op;
			m_pos -= (t & 8) << 11;
			t = (t & 7) + (3 - 1);
			if (unlikely(t == 2)) {
				while (unlikely(*ip == 0)) {
					t += 255;
					ip++;
160
					NEED_IP(1, 0);
161 162
				}
				t += 7 + *ip++;
163
				NEED_IP(2, 0);
164 165 166 167 168 169 170 171 172 173 174 175 176
			}
			next = get_unaligned_le16(ip);
			ip += 2;
			m_pos -= next >> 2;
			next &= 3;
			if (m_pos == op)
				goto eof_found;
			m_pos -= 0x4000;
		}
		TEST_LB(m_pos);
#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
		if (op - m_pos >= 8) {
			unsigned char *oe = op + t;
177
			if (likely(HAVE_OP(t, 15))) {
178
				do {
179 180 181 182 183 184 185 186
					COPY8(op, m_pos);
					op += 8;
					m_pos += 8;
					COPY8(op, m_pos);
					op += 8;
					m_pos += 8;
				} while (op < oe);
				op = oe;
187
				if (HAVE_IP(6, 0)) {
188 189 190 191 192 193
					state = next;
					COPY4(op, ip);
					op += next;
					ip += next;
					continue;
				}
194
			} else {
195
				NEED_OP(t, 0);
196 197
				do {
					*op++ = *m_pos++;
198
				} while (op < oe);
199
			}
200 201 202 203
		} else
#endif
		{
			unsigned char *oe = op + t;
204
			NEED_OP(t, 0);
205 206 207 208 209 210 211 212
			op[0] = m_pos[0];
			op[1] = m_pos[1];
			op += 2;
			m_pos += 2;
			do {
				*op++ = *m_pos++;
			} while (op < oe);
		}
213
match_next:
214 215 216
		state = next;
		t = next;
#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
217
		if (likely(HAVE_IP(6, 0) && HAVE_OP(4, 0))) {
218 219 220 221 222 223
			COPY4(op, ip);
			op += t;
			ip += t;
		} else
#endif
		{
224 225
			NEED_IP(t, 3);
			NEED_OP(t, 0);
226
			while (t > 0) {
227
				*op++ = *ip++;
228
				t--;
229
			}
230
		}
231 232 233 234
	}

eof_found:
	*out_len = op - out;
235 236 237 238
	return (t != 3       ? LZO_E_ERROR :
		ip == ip_end ? LZO_E_OK :
		ip <  ip_end ? LZO_E_INPUT_NOT_CONSUMED : LZO_E_INPUT_OVERRUN);

239 240 241 242 243 244 245 246 247 248 249 250
input_overrun:
	*out_len = op - out;
	return LZO_E_INPUT_OVERRUN;

output_overrun:
	*out_len = op - out;
	return LZO_E_OUTPUT_OVERRUN;

lookbehind_overrun:
	*out_len = op - out;
	return LZO_E_LOOKBEHIND_OVERRUN;
}
251
#ifndef STATIC
252 253 254 255 256
EXPORT_SYMBOL_GPL(lzo1x_decompress_safe);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("LZO1X Decompressor");

257
#endif