1 | /*
|
---|
2 | * Copyright (c) 2000-2005 Marc Alexander Lehmann <schmorp@schmorp.de>
|
---|
3 | *
|
---|
4 | * Redistribution and use in source and binary forms, with or without modifica-
|
---|
5 | * tion, are permitted provided that the following conditions are met:
|
---|
6 | *
|
---|
7 | * 1. Redistributions of source code must retain the above copyright notice,
|
---|
8 | * this list of conditions and the following disclaimer.
|
---|
9 | *
|
---|
10 | * 2. Redistributions in binary form must reproduce the above copyright
|
---|
11 | * notice, this list of conditions and the following disclaimer in the
|
---|
12 | * documentation and/or other materials provided with the distribution.
|
---|
13 | *
|
---|
14 | * 3. The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
---|
18 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
|
---|
19 | * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
---|
20 | * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPE-
|
---|
21 | * CIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
---|
22 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
---|
23 | * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
---|
24 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTH-
|
---|
25 | * ERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
---|
26 | * OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | *
|
---|
28 | * Alternatively, the contents of this file may be used under the terms of
|
---|
29 | * the GNU General Public License version 2 (the "GPL"), in which case the
|
---|
30 | * provisions of the GPL are applicable instead of the above. If you wish to
|
---|
31 | * allow the use of your version of this file only under the terms of the
|
---|
32 | * GPL and not to allow others to use your version of this file under the
|
---|
33 | * BSD license, indicate your decision by deleting the provisions above and
|
---|
34 | * replace them with the notice and other provisions required by the GPL. If
|
---|
35 | * you do not delete the provisions above, a recipient may use your version
|
---|
36 | * of this file under either the BSD or the GPL.
|
---|
37 | */
|
---|
38 |
|
---|
39 | #include "lzfP.h"
|
---|
40 | #ifdef VBOX
|
---|
41 | #include "lzf.h"
|
---|
42 | #endif
|
---|
43 |
|
---|
44 | #if AVOID_ERRNO
|
---|
45 | # define SET_ERRNO(n)
|
---|
46 | #else
|
---|
47 | # include <errno.h>
|
---|
48 | # define SET_ERRNO(n) errno = (n)
|
---|
49 | #endif
|
---|
50 |
|
---|
51 | unsigned int
|
---|
52 | lzf_decompress (const void *const in_data, unsigned int in_len,
|
---|
53 | void *out_data, unsigned int out_len)
|
---|
54 | {
|
---|
55 | u8 const *ip = (const u8 *)in_data;
|
---|
56 | u8 *op = (u8 *)out_data;
|
---|
57 | u8 const *const in_end = ip + in_len;
|
---|
58 | u8 *const out_end = op + out_len;
|
---|
59 |
|
---|
60 | do
|
---|
61 | {
|
---|
62 | unsigned int ctrl = *ip++;
|
---|
63 |
|
---|
64 | if (ctrl < (1 << 5)) /* literal run */
|
---|
65 | {
|
---|
66 | ctrl++;
|
---|
67 |
|
---|
68 | if (op + ctrl > out_end)
|
---|
69 | {
|
---|
70 | SET_ERRNO (E2BIG);
|
---|
71 | return 0;
|
---|
72 | }
|
---|
73 |
|
---|
74 | #if USE_MEMCPY
|
---|
75 | memcpy (op, ip, ctrl);
|
---|
76 | op += ctrl;
|
---|
77 | ip += ctrl;
|
---|
78 | #else
|
---|
79 | do
|
---|
80 | *op++ = *ip++;
|
---|
81 | while (--ctrl);
|
---|
82 | #endif
|
---|
83 | }
|
---|
84 | else /* back reference */
|
---|
85 | {
|
---|
86 | unsigned int len = ctrl >> 5;
|
---|
87 |
|
---|
88 | u8 *ref = op - ((ctrl & 0x1f) << 8) - 1;
|
---|
89 |
|
---|
90 | if (len == 7)
|
---|
91 | len += *ip++;
|
---|
92 |
|
---|
93 | ref -= *ip++;
|
---|
94 |
|
---|
95 | if (op + len + 2 > out_end)
|
---|
96 | {
|
---|
97 | SET_ERRNO (E2BIG);
|
---|
98 | return 0;
|
---|
99 | }
|
---|
100 |
|
---|
101 | if (ref < (u8 *)out_data)
|
---|
102 | {
|
---|
103 | SET_ERRNO (EINVAL);
|
---|
104 | return 0;
|
---|
105 | }
|
---|
106 |
|
---|
107 | *op++ = *ref++;
|
---|
108 | *op++ = *ref++;
|
---|
109 |
|
---|
110 | do
|
---|
111 | *op++ = *ref++;
|
---|
112 | while (--len);
|
---|
113 | }
|
---|
114 | }
|
---|
115 | while (op < out_end && ip < in_end);
|
---|
116 |
|
---|
117 | return op - (u8 *)out_data;
|
---|
118 | }
|
---|
119 |
|
---|