blob: cdbcd05bd4373e04f8ada97578a1eee4bb4b1638 [file] [log] [blame]
Tom Rini4549e782018-05-06 18:27:01 -04001// SPDX-License-Identifier: GPL 2.0+ OR BSD-3-Clause
Julius Werner027b7282015-10-06 20:03:53 -07002/*
3 * Copyright 2015 Google Inc.
Julius Werner027b7282015-10-06 20:03:53 -07004 */
5
6#include <common.h>
7#include <compiler.h>
Eugeniu Rosca829ceb22019-04-08 17:35:27 +02008#include <image.h>
Simon Glass6c03f9e2019-11-14 12:57:25 -07009#include <lz4.h>
Julius Werner027b7282015-10-06 20:03:53 -070010#include <linux/kernel.h>
11#include <linux/types.h>
Rasmus Villemoese7885a42020-06-07 14:29:18 +020012#include <asm/unaligned.h>
Julius Werner027b7282015-10-06 20:03:53 -070013
Karl Beldan227c53d2021-03-17 22:31:58 +000014static u16 LZ4_readLE16(const void *src)
15{
16 return get_unaligned_le16(src);
17}
18static void LZ4_copy4(void *dst, const void *src)
19{
20 put_unaligned(get_unaligned((const u32 *)src), (u32 *)dst);
21}
22static void LZ4_copy8(void *dst, const void *src)
23{
24 put_unaligned(get_unaligned((const u64 *)src), (u64 *)dst);
25}
Julius Werner027b7282015-10-06 20:03:53 -070026
27typedef uint8_t BYTE;
28typedef uint16_t U16;
29typedef uint32_t U32;
30typedef int32_t S32;
31typedef uint64_t U64;
32
33#define FORCE_INLINE static inline __attribute__((always_inline))
34
Rasmus Villemoese7885a42020-06-07 14:29:18 +020035/* lz4.c is unaltered (except removing unrelated code) from github.com/Cyan4973/lz4. */
Julius Werner027b7282015-10-06 20:03:53 -070036#include "lz4.c" /* #include for inlining, do not link! */
37
Rasmus Villemoese7885a42020-06-07 14:29:18 +020038#define LZ4F_BLOCKUNCOMPRESSED_FLAG 0x80000000U
Julius Werner027b7282015-10-06 20:03:53 -070039
40int ulz4fn(const void *src, size_t srcn, void *dst, size_t *dstn)
41{
42 const void *end = dst + *dstn;
43 const void *in = src;
44 void *out = dst;
45 int has_block_checksum;
46 int ret;
47 *dstn = 0;
48
49 { /* With in-place decompression the header may become invalid later. */
Rasmus Villemoese7885a42020-06-07 14:29:18 +020050 u32 magic;
51 u8 flags, version, independent_blocks, has_content_size;
52 u8 block_desc;
Julius Werner027b7282015-10-06 20:03:53 -070053
Rasmus Villemoese7885a42020-06-07 14:29:18 +020054 if (srcn < sizeof(u32) + 3*sizeof(u8))
Julius Werner027b7282015-10-06 20:03:53 -070055 return -EINVAL; /* input overrun */
56
Rasmus Villemoese7885a42020-06-07 14:29:18 +020057 magic = get_unaligned_le32(in);
58 in += sizeof(u32);
59 flags = *(u8 *)in;
60 in += sizeof(u8);
61 block_desc = *(u8 *)in;
62 in += sizeof(u8);
Julius Werner027b7282015-10-06 20:03:53 -070063
Rasmus Villemoese7885a42020-06-07 14:29:18 +020064 version = (flags >> 6) & 0x3;
65 independent_blocks = (flags >> 5) & 0x1;
66 has_block_checksum = (flags >> 4) & 0x1;
67 has_content_size = (flags >> 3) & 0x1;
68
69 /* We assume there's always only a single, standard frame. */
70 if (magic != LZ4F_MAGIC || version != 1)
71 return -EPROTONOSUPPORT; /* unknown format */
72 if ((flags & 0x03) || (block_desc & 0x8f))
73 return -EINVAL; /* reserved bits must be zero */
74 if (!independent_blocks)
75 return -EPROTONOSUPPORT; /* we can't support this yet */
76
77 if (has_content_size) {
78 if (srcn < sizeof(u32) + 3*sizeof(u8) + sizeof(u64))
79 return -EINVAL; /* input overrun */
Julius Werner027b7282015-10-06 20:03:53 -070080 in += sizeof(u64);
Rasmus Villemoese7885a42020-06-07 14:29:18 +020081 }
82 /* Header checksum byte */
Julius Werner027b7282015-10-06 20:03:53 -070083 in += sizeof(u8);
84 }
85
86 while (1) {
Rasmus Villemoese7885a42020-06-07 14:29:18 +020087 u32 block_header, block_size;
Stephen Warren60f989a2015-11-14 23:53:49 -070088
Rasmus Villemoese7885a42020-06-07 14:29:18 +020089 block_header = get_unaligned_le32(in);
90 in += sizeof(u32);
91 block_size = block_header & ~LZ4F_BLOCKUNCOMPRESSED_FLAG;
Julius Werner027b7282015-10-06 20:03:53 -070092
Rasmus Villemoese7885a42020-06-07 14:29:18 +020093 if (in - src + block_size > srcn) {
Julius Werner027b7282015-10-06 20:03:53 -070094 ret = -EINVAL; /* input overrun */
95 break;
96 }
97
Rasmus Villemoese7885a42020-06-07 14:29:18 +020098 if (!block_size) {
Julius Werner027b7282015-10-06 20:03:53 -070099 ret = 0; /* decompression successful */
100 break;
101 }
102
Rasmus Villemoese7885a42020-06-07 14:29:18 +0200103 if (block_header & LZ4F_BLOCKUNCOMPRESSED_FLAG) {
104 size_t size = min((ptrdiff_t)block_size, end - out);
Julius Werner027b7282015-10-06 20:03:53 -0700105 memcpy(out, in, size);
106 out += size;
Rasmus Villemoese7885a42020-06-07 14:29:18 +0200107 if (size < block_size) {
Julius Werner027b7282015-10-06 20:03:53 -0700108 ret = -ENOBUFS; /* output overrun */
109 break;
110 }
111 } else {
112 /* constant folding essential, do not touch params! */
Rasmus Villemoese7885a42020-06-07 14:29:18 +0200113 ret = LZ4_decompress_generic(in, out, block_size,
Julius Werner027b7282015-10-06 20:03:53 -0700114 end - out, endOnInputSize,
115 full, 0, noDict, out, NULL, 0);
116 if (ret < 0) {
117 ret = -EPROTO; /* decompression error */
118 break;
119 }
120 out += ret;
121 }
122
Rasmus Villemoese7885a42020-06-07 14:29:18 +0200123 in += block_size;
Julius Werner027b7282015-10-06 20:03:53 -0700124 if (has_block_checksum)
125 in += sizeof(u32);
126 }
127
128 *dstn = out - dst;
129 return ret;
130}