blob: 8494f0dcff21c08e01cec62945ec0744634ec179 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * misc.c
3 *
4 * This is a collection of several routines from gzip-1.0.3
5 * adapted for Linux.
6 *
7 * malloc by Hannu Savolainen 1993 and Matthias Urlichs 1994
8 * puts by Nick Holloway 1993, better puts by Martin Mares 1995
9 * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
10 */
11
Glauber de Oliveira Costaba082422008-01-30 13:31:10 +010012/*
13 * we have to be careful, because no indirections are allowed here, and
14 * paravirt_ops is a kind of one. As it will only run in baremetal anyway,
15 * we just keep it from happening
16 */
17#undef CONFIG_PARAVIRT
Vivek Goyal1ab60e02007-05-02 19:27:07 +020018#define _LINUX_STRING_H_ 1
19#define __LINUX_BITMAP_H 1
20
21#include <linux/linkage.h>
Brian Gerst7e7f3582006-01-08 01:04:54 -080022#include <linux/screen_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/io.h>
Eric W. Biedermand0537502005-06-25 14:57:52 -070024#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Vivek Goyal1ab60e02007-05-02 19:27:07 +020026/* WARNING!!
27 * This code is compiled with -fPIC and it is relocated dynamically
28 * at run time, but no relocation processing is performed.
29 * This means that it is not safe to place pointers in static structures.
30 */
31
32/*
33 * Getting to provable safe in place decompression is hard.
Simon Arlott676b1852007-10-20 01:25:36 +020034 * Worst case behaviours need to be analyzed.
Vivek Goyal1ab60e02007-05-02 19:27:07 +020035 * Background information:
36 *
37 * The file layout is:
38 * magic[2]
39 * method[1]
40 * flags[1]
41 * timestamp[4]
42 * extraflags[1]
43 * os[1]
44 * compressed data blocks[N]
45 * crc[4] orig_len[4]
46 *
47 * resulting in 18 bytes of non compressed data overhead.
48 *
49 * Files divided into blocks
50 * 1 bit (last block flag)
51 * 2 bits (block type)
52 *
53 * 1 block occurs every 32K -1 bytes or when there 50% compression has been achieved.
54 * The smallest block type encoding is always used.
55 *
56 * stored:
57 * 32 bits length in bytes.
58 *
59 * fixed:
60 * magic fixed tree.
61 * symbols.
62 *
63 * dynamic:
64 * dynamic tree encoding.
65 * symbols.
66 *
67 *
68 * The buffer for decompression in place is the length of the
69 * uncompressed data, plus a small amount extra to keep the algorithm safe.
70 * The compressed data is placed at the end of the buffer. The output
71 * pointer is placed at the start of the buffer and the input pointer
72 * is placed where the compressed data starts. Problems will occur
73 * when the output pointer overruns the input pointer.
74 *
75 * The output pointer can only overrun the input pointer if the input
76 * pointer is moving faster than the output pointer. A condition only
77 * triggered by data whose compressed form is larger than the uncompressed
78 * form.
79 *
80 * The worst case at the block level is a growth of the compressed data
81 * of 5 bytes per 32767 bytes.
82 *
83 * The worst case internal to a compressed block is very hard to figure.
84 * The worst case can at least be boundined by having one bit that represents
85 * 32764 bytes and then all of the rest of the bytes representing the very
86 * very last byte.
87 *
88 * All of which is enough to compute an amount of extra data that is required
89 * to be safe. To avoid problems at the block level allocating 5 extra bytes
90 * per 32767 bytes of data is sufficient. To avoind problems internal to a block
91 * adding an extra 32767 bytes (the worst case uncompressed block size) is
92 * sufficient, to ensure that in the worst case the decompressed data for
93 * block will stop the byte before the compressed data for a block begins.
94 * To avoid problems with the compressed data's meta information an extra 18
95 * bytes are needed. Leading to the formula:
96 *
97 * extra_bytes = (uncompressed_size >> 12) + 32768 + 18 + decompressor_size.
98 *
99 * Adding 8 bytes per 32K is a bit excessive but much easier to calculate.
100 * Adding 32768 instead of 32767 just makes for round numbers.
101 * Adding the decompressor_size is necessary as it musht live after all
102 * of the data as well. Last I measured the decompressor is about 14K.
Simon Arlott676b1852007-10-20 01:25:36 +0200103 * 10K of actual data and 4K of bss.
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200104 *
105 */
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/*
108 * gzip declarations
109 */
110
111#define OF(args) args
112#define STATIC static
113
114#undef memset
115#undef memcpy
116#define memzero(s, n) memset ((s), 0, (n))
117
118typedef unsigned char uch;
119typedef unsigned short ush;
120typedef unsigned long ulg;
121
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200122#define WSIZE 0x80000000 /* Window size must be at least 32k,
123 * and a power of two
124 * We don't actually have a window just
125 * a huge output buffer so I report
126 * a 2G windows size, as that should
127 * always be larger than our output buffer.
128 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200130static uch *inbuf; /* input buffer */
131static uch *window; /* Sliding window buffer, (and final output buffer) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200133static unsigned insize; /* valid bytes in inbuf */
134static unsigned inptr; /* index of next byte to be processed in inbuf */
135static unsigned outcnt; /* bytes in output buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137/* gzip flag byte */
138#define ASCII_FLAG 0x01 /* bit 0 set: file probably ASCII text */
139#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
140#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
141#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
142#define COMMENT 0x10 /* bit 4 set: file comment present */
143#define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */
144#define RESERVED 0xC0 /* bit 6,7: reserved */
145
146#define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf())
147
148/* Diagnostic functions */
149#ifdef DEBUG
150# define Assert(cond,msg) {if(!(cond)) error(msg);}
151# define Trace(x) fprintf x
152# define Tracev(x) {if (verbose) fprintf x ;}
153# define Tracevv(x) {if (verbose>1) fprintf x ;}
154# define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
155# define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
156#else
157# define Assert(cond,msg)
158# define Trace(x)
159# define Tracev(x)
160# define Tracevv(x)
161# define Tracec(c,x)
162# define Tracecv(c,x)
163#endif
164
165static int fill_inbuf(void);
166static void flush_window(void);
167static void error(char *m);
168static void gzip_mark(void **);
169static void gzip_release(void **);
170
171/*
172 * This is set up by the setup-routine at boot-time
173 */
174static unsigned char *real_mode; /* Pointer to real-mode data */
175
Carl-Daniel Hailfingerb79c4df72006-06-26 13:57:53 +0200176#define RM_EXT_MEM_K (*(unsigned short *)(real_mode + 0x2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#ifndef STANDARD_MEMORY_BIOS_CALL
Carl-Daniel Hailfingerb79c4df72006-06-26 13:57:53 +0200178#define RM_ALT_MEM_K (*(unsigned long *)(real_mode + 0x1e0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179#endif
Carl-Daniel Hailfingerb79c4df72006-06-26 13:57:53 +0200180#define RM_SCREEN_INFO (*(struct screen_info *)(real_mode+0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Andi Kleenb3ab8382005-09-12 18:49:24 +0200182extern unsigned char input_data[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183extern int input_len;
184
185static long bytes_out = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187static void *malloc(int size);
188static void free(void *where);
Carl-Daniel Hailfingerb79c4df72006-06-26 13:57:53 +0200189
190static void *memset(void *s, int c, unsigned n);
191static void *memcpy(void *dest, const void *src, unsigned n);
randy_dunlap09dbb472005-06-25 14:58:39 -0700192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193static void putstr(const char *);
Domen Puncerf4549442005-06-25 14:58:59 -0700194
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200195static long free_mem_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196static long free_mem_end_ptr;
197
Jeremy Fitzhardinge35c74222007-05-02 19:27:15 +0200198#define HEAP_SIZE 0x7000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200static char *vidmem = (char *)0xb8000;
201static int vidport;
202static int lines, cols;
203
204#include "../../../../lib/inflate.c"
205
206static void *malloc(int size)
207{
208 void *p;
209
210 if (size <0) error("Malloc error");
211 if (free_mem_ptr <= 0) error("Memory error");
212
213 free_mem_ptr = (free_mem_ptr + 3) & ~3; /* Align */
214
215 p = (void *)free_mem_ptr;
216 free_mem_ptr += size;
217
218 if (free_mem_ptr >= free_mem_end_ptr)
219 error("Out of memory");
220
221 return p;
222}
223
224static void free(void *where)
225{ /* Don't care */
226}
227
228static void gzip_mark(void **ptr)
229{
230 *ptr = (void *) free_mem_ptr;
231}
232
233static void gzip_release(void **ptr)
234{
235 free_mem_ptr = (long) *ptr;
236}
237
238static void scroll(void)
239{
240 int i;
241
242 memcpy ( vidmem, vidmem + cols * 2, ( lines - 1 ) * cols * 2 );
243 for ( i = ( lines - 1 ) * cols * 2; i < lines * cols * 2; i += 2 )
244 vidmem[i] = ' ';
245}
246
247static void putstr(const char *s)
248{
249 int x,y,pos;
250 char c;
251
Carl-Daniel Hailfingerb79c4df72006-06-26 13:57:53 +0200252 x = RM_SCREEN_INFO.orig_x;
253 y = RM_SCREEN_INFO.orig_y;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 while ( ( c = *s++ ) != '\0' ) {
256 if ( c == '\n' ) {
257 x = 0;
258 if ( ++y >= lines ) {
259 scroll();
260 y--;
261 }
262 } else {
263 vidmem [ ( x + cols * y ) * 2 ] = c;
264 if ( ++x >= cols ) {
265 x = 0;
266 if ( ++y >= lines ) {
267 scroll();
268 y--;
269 }
270 }
271 }
272 }
273
Carl-Daniel Hailfingerb79c4df72006-06-26 13:57:53 +0200274 RM_SCREEN_INFO.orig_x = x;
275 RM_SCREEN_INFO.orig_y = y;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 pos = (x + cols * y) * 2; /* Update cursor position */
Rene Hermanb02aae92008-01-30 13:30:05 +0100278 outb(14, vidport);
279 outb(0xff & (pos >> 9), vidport+1);
280 outb(15, vidport);
281 outb(0xff & (pos >> 1), vidport+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Carl-Daniel Hailfingerb79c4df72006-06-26 13:57:53 +0200284static void* memset(void* s, int c, unsigned n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 int i;
287 char *ss = (char*)s;
288
289 for (i=0;i<n;i++) ss[i] = c;
290 return s;
291}
292
Carl-Daniel Hailfingerb79c4df72006-06-26 13:57:53 +0200293static void* memcpy(void* dest, const void* src, unsigned n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
295 int i;
296 char *d = (char *)dest, *s = (char *)src;
297
298 for (i=0;i<n;i++) d[i] = s[i];
299 return dest;
300}
301
302/* ===========================================================================
303 * Fill the input buffer. This is called only when the buffer is empty
304 * and at least one byte is really needed.
305 */
306static int fill_inbuf(void)
307{
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200308 error("ran out of input data");
309 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
312/* ===========================================================================
313 * Write the output window window[0..outcnt-1] and update crc and bytes_out.
314 * (Used for the decompressed data only.)
315 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316static void flush_window(void)
317{
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200318 /* With my window equal to my output buffer
319 * I only need to compute the crc here.
320 */
321 ulg c = crc; /* temporary variable */
322 unsigned n;
323 uch *in, ch;
324
325 in = window;
326 for (n = 0; n < outcnt; n++) {
327 ch = *in++;
328 c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8);
329 }
330 crc = c;
331 bytes_out += (ulg)outcnt;
332 outcnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
335static void error(char *x)
336{
337 putstr("\n\n");
338 putstr(x);
339 putstr("\n\n -- System halted");
340
Ingo Molnarff3cf852008-01-30 13:32:31 +0100341 while (1)
342 asm("hlt");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200345asmlinkage void decompress_kernel(void *rmode, unsigned long heap,
346 uch *input_data, unsigned long input_len, uch *output)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 real_mode = rmode;
349
Carl-Daniel Hailfingerb79c4df72006-06-26 13:57:53 +0200350 if (RM_SCREEN_INFO.orig_video_mode == 7) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 vidmem = (char *) 0xb0000;
352 vidport = 0x3b4;
353 } else {
354 vidmem = (char *) 0xb8000;
355 vidport = 0x3d4;
356 }
357
Carl-Daniel Hailfingerb79c4df72006-06-26 13:57:53 +0200358 lines = RM_SCREEN_INFO.orig_video_lines;
359 cols = RM_SCREEN_INFO.orig_video_cols;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200361 window = output; /* Output buffer (Normally at 1M) */
362 free_mem_ptr = heap; /* Heap */
363 free_mem_end_ptr = heap + HEAP_SIZE;
364 inbuf = input_data; /* Input buffer */
365 insize = input_len;
366 inptr = 0;
367
Vivek Goyal6a50a662007-05-02 19:27:08 +0200368 if ((ulg)output & (__KERNEL_ALIGN - 1))
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200369 error("Destination address not 2M aligned");
370 if ((ulg)output >= 0xffffffffffUL)
371 error("Destination address too large");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 makecrc();
374 putstr(".\nDecompressing Linux...");
375 gunzip();
376 putstr("done.\nBooting the kernel.\n");
Vivek Goyal1ab60e02007-05-02 19:27:07 +0200377 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}