blob: 35abfb38e176ff64b621fbe9d91b3542ce8150cd [file] [log] [blame]
Marian Balakowicz321359f2008-01-08 18:11:43 +01001/*
2 * (C) Copyright 2000-2006
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Marian Balakowicz321359f2008-01-08 18:11:43 +01006 */
7
8#include <common.h>
9#include <watchdog.h>
10#include <command.h>
11#include <image.h>
12#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARDa31e0912009-04-04 12:49:11 +020013#include <u-boot/zlib.h>
Marian Balakowicz321359f2008-01-08 18:11:43 +010014
15#define ZALLOC_ALIGNMENT 16
16#define HEAD_CRC 2
17#define EXTRA_FIELD 4
18#define ORIG_NAME 8
19#define COMMENT 0x10
20#define RESERVED 0xe0
21#define DEFLATED 8
22
Mike Frysingere3ed0572012-04-09 13:39:53 +000023void *gzalloc(void *x, unsigned items, unsigned size)
Marian Balakowicz321359f2008-01-08 18:11:43 +010024{
25 void *p;
26
27 size *= items;
28 size = (size + ZALLOC_ALIGNMENT - 1) & ~(ZALLOC_ALIGNMENT - 1);
29
30 p = malloc (size);
31
32 return (p);
33}
34
Mike Frysingere3ed0572012-04-09 13:39:53 +000035void gzfree(void *x, void *addr, unsigned nb)
Marian Balakowicz321359f2008-01-08 18:11:43 +010036{
37 free (addr);
38}
39
40int gunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp)
41{
Ricardo Ribalda Delgado35f6a942009-04-27 18:33:32 +020042 int i, flags;
Marian Balakowicz321359f2008-01-08 18:11:43 +010043
44 /* skip header */
45 i = 10;
46 flags = src[3];
47 if (src[2] != DEFLATED || (flags & RESERVED) != 0) {
48 puts ("Error: Bad gzipped data\n");
49 return (-1);
50 }
51 if ((flags & EXTRA_FIELD) != 0)
52 i = 12 + src[10] + (src[11] << 8);
53 if ((flags & ORIG_NAME) != 0)
54 while (src[i++] != 0)
55 ;
56 if ((flags & COMMENT) != 0)
57 while (src[i++] != 0)
58 ;
59 if ((flags & HEAD_CRC) != 0)
60 i += 2;
61 if (i >= *lenp) {
62 puts ("Error: gunzip out of data in header\n");
63 return (-1);
64 }
65
Ricardo Ribalda Delgado35f6a942009-04-27 18:33:32 +020066 return zunzip(dst, dstlen, src, lenp, 1, i);
67}
68
69/*
70 * Uncompress blocks compressed with zlib without headers
71 */
72int zunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp,
73 int stoponerr, int offset)
74{
75 z_stream s;
76 int r;
77
Mike Frysingere3ed0572012-04-09 13:39:53 +000078 s.zalloc = gzalloc;
79 s.zfree = gzfree;
Marian Balakowicz321359f2008-01-08 18:11:43 +010080
81 r = inflateInit2(&s, -MAX_WBITS);
82 if (r != Z_OK) {
83 printf ("Error: inflateInit2() returned %d\n", r);
Ricardo Ribalda Delgado35f6a942009-04-27 18:33:32 +020084 return -1;
Marian Balakowicz321359f2008-01-08 18:11:43 +010085 }
Ricardo Ribalda Delgado35f6a942009-04-27 18:33:32 +020086 s.next_in = src + offset;
87 s.avail_in = *lenp - offset;
Marian Balakowicz321359f2008-01-08 18:11:43 +010088 s.next_out = dst;
89 s.avail_out = dstlen;
Catalin Raduf039ada2011-02-04 14:35:47 +020090 do {
91 r = inflate(&s, Z_FINISH);
Kees Cookb75650d2013-08-16 07:59:13 -070092 if (stoponerr == 1 && r != Z_STREAM_END &&
93 (s.avail_out == 0 || r != Z_BUF_ERROR)) {
Catalin Raduf039ada2011-02-04 14:35:47 +020094 printf("Error: inflate() returned %d\n", r);
95 inflateEnd(&s);
96 return -1;
97 }
98 s.avail_in = *lenp - offset - (int)(s.next_out - (unsigned char*)dst);
Catalin Raduf039ada2011-02-04 14:35:47 +020099 } while (r == Z_BUF_ERROR);
Marian Balakowicz321359f2008-01-08 18:11:43 +0100100 *lenp = s.next_out - (unsigned char *) dst;
101 inflateEnd(&s);
102
Ricardo Ribalda Delgado35f6a942009-04-27 18:33:32 +0200103 return 0;
Marian Balakowicz321359f2008-01-08 18:11:43 +0100104}