misc.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  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. #define STANDALONE
  12. #include <linux/linkage.h>
  13. #include <linux/vmalloc.h>
  14. #include <linux/tty.h>
  15. #include <asm/io.h>
  16. /*
  17.  * gzip declarations
  18.  */
  19. #define OF(args)  args
  20. #define STATIC static
  21. #undef memset
  22. #undef memcpy
  23. /*
  24.  * Why do we do this? Don't ask me..
  25.  *
  26.  * Incomprehensible are the ways of bootloaders.
  27.  */
  28. static void* memset(void *, int, size_t);
  29. static void* memcpy(void *, __const void *, size_t);
  30. #define memzero(s, n)     memset ((s), 0, (n))
  31. typedef unsigned char  uch;
  32. typedef unsigned short ush;
  33. typedef unsigned long  ulg;
  34. #define WSIZE 0x8000 /* Window size must be at least 32k, */
  35. /* and a power of two */
  36. static uch *inbuf;      /* input buffer */
  37. static uch window[WSIZE];    /* Sliding window buffer */
  38. static unsigned insize = 0;  /* valid bytes in inbuf */
  39. static unsigned inptr = 0;   /* index of next byte to be processed in inbuf */
  40. static unsigned outcnt = 0;  /* bytes in output buffer */
  41. /* gzip flag byte */
  42. #define ASCII_FLAG   0x01 /* bit 0 set: file probably ASCII text */
  43. #define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
  44. #define EXTRA_FIELD  0x04 /* bit 2 set: extra field present */
  45. #define ORIG_NAME    0x08 /* bit 3 set: original file name present */
  46. #define COMMENT      0x10 /* bit 4 set: file comment present */
  47. #define ENCRYPTED    0x20 /* bit 5 set: file is encrypted */
  48. #define RESERVED     0xC0 /* bit 6,7:   reserved */
  49. #define get_byte()  (inptr < insize ? inbuf[inptr++] : fill_inbuf())
  50. /* Diagnostic functions */
  51. #ifdef DEBUG
  52. #  define Assert(cond,msg) {if(!(cond)) error(msg);}
  53. #  define Trace(x) fprintf x
  54. #  define Tracev(x) {if (verbose) fprintf x ;}
  55. #  define Tracevv(x) {if (verbose>1) fprintf x ;}
  56. #  define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
  57. #  define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
  58. #else
  59. #  define Assert(cond,msg)
  60. #  define Trace(x)
  61. #  define Tracev(x)
  62. #  define Tracevv(x)
  63. #  define Tracec(c,x)
  64. #  define Tracecv(c,x)
  65. #endif
  66. static int  fill_inbuf(void);
  67. static void flush_window(void);
  68. static void error(char *m);
  69. static void gzip_mark(void **);
  70. static void gzip_release(void **);
  71.   
  72. /*
  73.  * This is set up by the setup-routine at boot-time
  74.  */
  75. static unsigned char *real_mode; /* Pointer to real-mode data */
  76. #define EXT_MEM_K   (*(unsigned short *)(real_mode + 0x2))
  77. #ifndef STANDARD_MEMORY_BIOS_CALL
  78. #define ALT_MEM_K   (*(unsigned long *)(real_mode + 0x1e0))
  79. #endif
  80. #define SCREEN_INFO (*(struct screen_info *)(real_mode+0))
  81. extern char input_data[];
  82. extern int input_len;
  83. static long bytes_out = 0;
  84. static uch *output_data;
  85. static unsigned long output_ptr = 0;
  86.  
  87. static void *malloc(int size);
  88. static void free(void *where);
  89. static void error(char *m);
  90. static void gzip_mark(void **);
  91. static void gzip_release(void **);
  92.  
  93. static void puts(const char *);
  94.   
  95. extern int end;
  96. static long free_mem_ptr = (long)&end;
  97. static long free_mem_end_ptr;
  98. #define INPLACE_MOVE_ROUTINE  0x1000
  99. #define LOW_BUFFER_START      0x2000
  100. #define LOW_BUFFER_MAX       0x90000
  101. #define HEAP_SIZE             0x3000
  102. static unsigned int low_buffer_end, low_buffer_size;
  103. static int high_loaded =0;
  104. static uch *high_buffer_start /* = (uch *)(((ulg)&end) + HEAP_SIZE)*/;
  105. static char *vidmem = (char *)0xb8000;
  106. static int vidport;
  107. static int lines, cols;
  108. #include "../../../../lib/inflate.c"
  109. static void *malloc(int size)
  110. {
  111. void *p;
  112. if (size <0) error("Malloc errorn");
  113. if (free_mem_ptr <= 0) error("Memory errorn");
  114. free_mem_ptr = (free_mem_ptr + 3) & ~3; /* Align */
  115. p = (void *)free_mem_ptr;
  116. free_mem_ptr += size;
  117. if (free_mem_ptr >= free_mem_end_ptr)
  118. error("nOut of memoryn");
  119. return p;
  120. }
  121. static void free(void *where)
  122. { /* Don't care */
  123. }
  124. static void gzip_mark(void **ptr)
  125. {
  126. *ptr = (void *) free_mem_ptr;
  127. }
  128. static void gzip_release(void **ptr)
  129. {
  130. free_mem_ptr = (long) *ptr;
  131. }
  132.  
  133. static void scroll(void)
  134. {
  135. int i;
  136. memcpy ( vidmem, vidmem + cols * 2, ( lines - 1 ) * cols * 2 );
  137. for ( i = ( lines - 1 ) * cols * 2; i < lines * cols * 2; i += 2 )
  138. vidmem[i] = ' ';
  139. }
  140. static void puts(const char *s)
  141. {
  142. int x,y,pos;
  143. char c;
  144. x = SCREEN_INFO.orig_x;
  145. y = SCREEN_INFO.orig_y;
  146. while ( ( c = *s++ ) != '' ) {
  147. if ( c == 'n' ) {
  148. x = 0;
  149. if ( ++y >= lines ) {
  150. scroll();
  151. y--;
  152. }
  153. } else {
  154. vidmem [ ( x + cols * y ) * 2 ] = c; 
  155. if ( ++x >= cols ) {
  156. x = 0;
  157. if ( ++y >= lines ) {
  158. scroll();
  159. y--;
  160. }
  161. }
  162. }
  163. }
  164. SCREEN_INFO.orig_x = x;
  165. SCREEN_INFO.orig_y = y;
  166. pos = (x + cols * y) * 2; /* Update cursor position */
  167. outb_p(14, vidport);
  168. outb_p(0xff & (pos >> 9), vidport+1);
  169. outb_p(15, vidport);
  170. outb_p(0xff & (pos >> 1), vidport+1);
  171. }
  172. static void* memset(void* s, int c, size_t n)
  173. {
  174. int i;
  175. char *ss = (char*)s;
  176. for (i=0;i<n;i++) ss[i] = c;
  177. return s;
  178. }
  179. static void* memcpy(void* __dest, __const void* __src,
  180.     size_t __n)
  181. {
  182. int i;
  183. char *d = (char *)__dest, *s = (char *)__src;
  184. for (i=0;i<__n;i++) d[i] = s[i];
  185. return __dest;
  186. }
  187. /* ===========================================================================
  188.  * Fill the input buffer. This is called only when the buffer is empty
  189.  * and at least one byte is really needed.
  190.  */
  191. static int fill_inbuf(void)
  192. {
  193. if (insize != 0) {
  194. error("ran out of input datan");
  195. }
  196. inbuf = input_data;
  197. insize = input_len;
  198. inptr = 1;
  199. return inbuf[0];
  200. }
  201. /* ===========================================================================
  202.  * Write the output window window[0..outcnt-1] and update crc and bytes_out.
  203.  * (Used for the decompressed data only.)
  204.  */
  205. static void flush_window_low(void)
  206. {
  207.     ulg c = crc;         /* temporary variable */
  208.     unsigned n;
  209.     uch *in, *out, ch;
  210.     
  211.     in = window;
  212.     out = &output_data[output_ptr]; 
  213.     for (n = 0; n < outcnt; n++) {
  214.     ch = *out++ = *in++;
  215.     c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8);
  216.     }
  217.     crc = c;
  218.     bytes_out += (ulg)outcnt;
  219.     output_ptr += (ulg)outcnt;
  220.     outcnt = 0;
  221. }
  222. static void flush_window_high(void)
  223. {
  224.     ulg c = crc;         /* temporary variable */
  225.     unsigned n;
  226.     uch *in,  ch;
  227.     in = window;
  228.     for (n = 0; n < outcnt; n++) {
  229. ch = *output_data++ = *in++;
  230. if ((ulg)output_data == low_buffer_end) output_data=high_buffer_start;
  231. c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8);
  232.     }
  233.     crc = c;
  234.     bytes_out += (ulg)outcnt;
  235.     outcnt = 0;
  236. }
  237. static void flush_window(void)
  238. {
  239. if (high_loaded) flush_window_high();
  240. else flush_window_low();
  241. }
  242. static void error(char *x)
  243. {
  244. puts("nn");
  245. puts(x);
  246. puts("nn -- System halted");
  247. while(1); /* Halt */
  248. }
  249. #define STACK_SIZE (4096)
  250. long user_stack [STACK_SIZE];
  251. struct {
  252. long * a;
  253. short b;
  254. } stack_start = { & user_stack [STACK_SIZE] , __KERNEL_DS };
  255. static void setup_normal_output_buffer(void)
  256. {
  257. #ifdef STANDARD_MEMORY_BIOS_CALL
  258. if (EXT_MEM_K < 1024) error("Less than 2MB of memory.n");
  259. #else
  260. if ((ALT_MEM_K > EXT_MEM_K ? ALT_MEM_K : EXT_MEM_K) < 1024) error("Less than 2MB of memory.n");
  261. #endif
  262. output_data = (char *)0x100000; /* Points to 1M */
  263. free_mem_end_ptr = (long)real_mode;
  264. }
  265. struct moveparams {
  266. uch *low_buffer_start;  int lcount;
  267. uch *high_buffer_start; int hcount;
  268. };
  269. static void setup_output_buffer_if_we_run_high(struct moveparams *mv)
  270. {
  271. high_buffer_start = (uch *)(((ulg)&end) + HEAP_SIZE);
  272. #ifdef STANDARD_MEMORY_BIOS_CALL
  273. if (EXT_MEM_K < (3*1024)) error("Less than 4MB of memory.n");
  274. #else
  275. if ((ALT_MEM_K > EXT_MEM_K ? ALT_MEM_K : EXT_MEM_K) < (3*1024)) error("Less than 4MB of memory.n");
  276. #endif
  277. mv->low_buffer_start = output_data = (char *)LOW_BUFFER_START;
  278. low_buffer_end = ((unsigned int)real_mode > LOW_BUFFER_MAX
  279.   ? LOW_BUFFER_MAX : (unsigned int)real_mode) & ~0xfff;
  280. low_buffer_size = low_buffer_end - LOW_BUFFER_START;
  281. high_loaded = 1;
  282. free_mem_end_ptr = (long)high_buffer_start;
  283. if ( (0x100000 + low_buffer_size) > ((ulg)high_buffer_start)) {
  284. high_buffer_start = (uch *)(0x100000 + low_buffer_size);
  285. mv->hcount = 0; /* say: we need not to move high_buffer */
  286. }
  287. else mv->hcount = -1;
  288. mv->high_buffer_start = high_buffer_start;
  289. }
  290. static void close_output_buffer_if_we_run_high(struct moveparams *mv)
  291. {
  292. if (bytes_out > low_buffer_size) {
  293. mv->lcount = low_buffer_size;
  294. if (mv->hcount)
  295. mv->hcount = bytes_out - low_buffer_size;
  296. } else {
  297. mv->lcount = bytes_out;
  298. mv->hcount = 0;
  299. }
  300. }
  301. asmlinkage int decompress_kernel(struct moveparams *mv, void *rmode)
  302. {
  303. real_mode = rmode;
  304. if (SCREEN_INFO.orig_video_mode == 7) {
  305. vidmem = (char *) 0xb0000;
  306. vidport = 0x3b4;
  307. } else {
  308. vidmem = (char *) 0xb8000;
  309. vidport = 0x3d4;
  310. }
  311. lines = SCREEN_INFO.orig_video_lines;
  312. cols = SCREEN_INFO.orig_video_cols;
  313. if (free_mem_ptr < 0x100000) setup_normal_output_buffer();
  314. else setup_output_buffer_if_we_run_high(mv);
  315. makecrc();
  316. puts("Uncompressing Linux... ");
  317. gunzip();
  318. puts("Ok, booting the kernel.n");
  319. if (high_loaded) close_output_buffer_if_we_run_high(mv);
  320. return high_loaded;
  321. }