1
2
3
4
5
6
7
8
9
10
11
12#include "misc.h"
13#include "../string.h"
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99#define STATIC static
100
101#undef memcpy
102
103
104
105
106
107
108#undef memset
109#define memzero(s, n) memset((s), 0, (n))
110
111
112static void error(char *m);
113
114
115
116
117struct boot_params *real_mode;
118
119memptr free_mem_ptr;
120memptr free_mem_end_ptr;
121
122static char *vidmem;
123static int vidport;
124static int lines, cols;
125
126#ifdef CONFIG_KERNEL_GZIP
127#include "../../../../lib/decompress_inflate.c"
128#endif
129
130#ifdef CONFIG_KERNEL_BZIP2
131#include "../../../../lib/decompress_bunzip2.c"
132#endif
133
134#ifdef CONFIG_KERNEL_LZMA
135#include "../../../../lib/decompress_unlzma.c"
136#endif
137
138#ifdef CONFIG_KERNEL_XZ
139#include "../../../../lib/decompress_unxz.c"
140#endif
141
142#ifdef CONFIG_KERNEL_LZO
143#include "../../../../lib/decompress_unlzo.c"
144#endif
145
146#ifdef CONFIG_KERNEL_LZ4
147#include "../../../../lib/decompress_unlz4.c"
148#endif
149
150static void scroll(void)
151{
152 int i;
153
154 memcpy(vidmem, vidmem + cols * 2, (lines - 1) * cols * 2);
155 for (i = (lines - 1) * cols * 2; i < lines * cols * 2; i += 2)
156 vidmem[i] = ' ';
157}
158
159#define XMTRDY 0x20
160
161#define TXR 0
162#define LSR 5
163static void serial_putchar(int ch)
164{
165 unsigned timeout = 0xffff;
166
167 while ((inb(early_serial_base + LSR) & XMTRDY) == 0 && --timeout)
168 cpu_relax();
169
170 outb(ch, early_serial_base + TXR);
171}
172
173void __putstr(const char *s)
174{
175 int x, y, pos;
176 char c;
177
178 if (early_serial_base) {
179 const char *str = s;
180 while (*str) {
181 if (*str == '\n')
182 serial_putchar('\r');
183 serial_putchar(*str++);
184 }
185 }
186
187 if (real_mode->screen_info.orig_video_mode == 0 &&
188 lines == 0 && cols == 0)
189 return;
190
191 x = real_mode->screen_info.orig_x;
192 y = real_mode->screen_info.orig_y;
193
194 while ((c = *s++) != '\0') {
195 if (c == '\n') {
196 x = 0;
197 if (++y >= lines) {
198 scroll();
199 y--;
200 }
201 } else {
202 vidmem[(x + cols * y) * 2] = c;
203 if (++x >= cols) {
204 x = 0;
205 if (++y >= lines) {
206 scroll();
207 y--;
208 }
209 }
210 }
211 }
212
213 real_mode->screen_info.orig_x = x;
214 real_mode->screen_info.orig_y = y;
215
216 pos = (x + cols * y) * 2;
217 outb(14, vidport);
218 outb(0xff & (pos >> 9), vidport+1);
219 outb(15, vidport);
220 outb(0xff & (pos >> 1), vidport+1);
221}
222
223static void error(char *x)
224{
225 error_putstr("\n\n");
226 error_putstr(x);
227 error_putstr("\n\n -- System halted");
228
229 while (1)
230 asm("hlt");
231}
232
233#if CONFIG_X86_NEED_RELOCS
234static void handle_relocations(void *output, unsigned long output_len)
235{
236 int *reloc;
237 unsigned long delta, map, ptr;
238 unsigned long min_addr = (unsigned long)output;
239 unsigned long max_addr = min_addr + output_len;
240
241
242
243
244
245 delta = min_addr - LOAD_PHYSICAL_ADDR;
246 if (!delta) {
247 debug_putstr("No relocation needed... ");
248 return;
249 }
250 debug_putstr("Performing relocations... ");
251
252
253
254
255
256
257
258
259 map = delta - __START_KERNEL_map;
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280 for (reloc = output + output_len - sizeof(*reloc); *reloc; reloc--) {
281 int extended = *reloc;
282 extended += map;
283
284 ptr = (unsigned long)extended;
285 if (ptr < min_addr || ptr > max_addr)
286 error("32-bit relocation outside of kernel!\n");
287
288 *(uint32_t *)ptr += delta;
289 }
290#ifdef CONFIG_X86_64
291 while (*--reloc) {
292 long extended = *reloc;
293 extended += map;
294
295 ptr = (unsigned long)extended;
296 if (ptr < min_addr || ptr > max_addr)
297 error("inverse 32-bit relocation outside of kernel!\n");
298
299 *(int32_t *)ptr -= delta;
300 }
301 for (reloc--; *reloc; reloc--) {
302 long extended = *reloc;
303 extended += map;
304
305 ptr = (unsigned long)extended;
306 if (ptr < min_addr || ptr > max_addr)
307 error("64-bit relocation outside of kernel!\n");
308
309 *(uint64_t *)ptr += delta;
310 }
311#endif
312}
313#else
314static inline void handle_relocations(void *output, unsigned long output_len)
315{ }
316#endif
317
318static void parse_elf(void *output)
319{
320#ifdef CONFIG_X86_64
321 Elf64_Ehdr ehdr;
322 Elf64_Phdr *phdrs, *phdr;
323#else
324 Elf32_Ehdr ehdr;
325 Elf32_Phdr *phdrs, *phdr;
326#endif
327 void *dest;
328 int i;
329
330 memcpy(&ehdr, output, sizeof(ehdr));
331 if (ehdr.e_ident[EI_MAG0] != ELFMAG0 ||
332 ehdr.e_ident[EI_MAG1] != ELFMAG1 ||
333 ehdr.e_ident[EI_MAG2] != ELFMAG2 ||
334 ehdr.e_ident[EI_MAG3] != ELFMAG3) {
335 error("Kernel is not a valid ELF file");
336 return;
337 }
338
339 debug_putstr("Parsing ELF... ");
340
341 phdrs = malloc(sizeof(*phdrs) * ehdr.e_phnum);
342 if (!phdrs)
343 error("Failed to allocate space for phdrs");
344
345 memcpy(phdrs, output + ehdr.e_phoff, sizeof(*phdrs) * ehdr.e_phnum);
346
347 for (i = 0; i < ehdr.e_phnum; i++) {
348 phdr = &phdrs[i];
349
350 switch (phdr->p_type) {
351 case PT_LOAD:
352#ifdef CONFIG_RELOCATABLE
353 dest = output;
354 dest += (phdr->p_paddr - LOAD_PHYSICAL_ADDR);
355#else
356 dest = (void *)(phdr->p_paddr);
357#endif
358 memcpy(dest,
359 output + phdr->p_offset,
360 phdr->p_filesz);
361 break;
362 default: break;
363 }
364 }
365
366 free(phdrs);
367}
368
369asmlinkage __visible void *decompress_kernel(void *rmode, memptr heap,
370 unsigned char *input_data,
371 unsigned long input_len,
372 unsigned char *output,
373 unsigned long output_len,
374 unsigned long run_size)
375{
376 unsigned char *output_orig = output;
377
378 real_mode = rmode;
379
380 sanitize_boot_params(real_mode);
381
382 if (real_mode->screen_info.orig_video_mode == 7) {
383 vidmem = (char *) 0xb0000;
384 vidport = 0x3b4;
385 } else {
386 vidmem = (char *) 0xb8000;
387 vidport = 0x3d4;
388 }
389
390 lines = real_mode->screen_info.orig_video_lines;
391 cols = real_mode->screen_info.orig_video_cols;
392
393 console_init();
394 debug_putstr("early console in decompress_kernel\n");
395
396 free_mem_ptr = heap;
397 free_mem_end_ptr = heap + BOOT_HEAP_SIZE;
398
399
400
401
402
403
404 output = choose_kernel_location(input_data, input_len, output,
405 output_len > run_size ? output_len
406 : run_size);
407
408
409 if ((unsigned long)output & (MIN_KERNEL_ALIGN - 1))
410 error("Destination address inappropriately aligned");
411#ifdef CONFIG_X86_64
412 if (heap > 0x3fffffffffffUL)
413 error("Destination address too large");
414#else
415 if (heap > ((-__PAGE_OFFSET-(128<<20)-1) & 0x7fffffff))
416 error("Destination address too large");
417#endif
418#ifndef CONFIG_RELOCATABLE
419 if ((unsigned long)output != LOAD_PHYSICAL_ADDR)
420 error("Wrong destination address");
421#endif
422
423 debug_putstr("\nDecompressing Linux... ");
424 decompress(input_data, input_len, NULL, NULL, output, NULL, error);
425 parse_elf(output);
426
427
428
429
430 if (!IS_ENABLED(CONFIG_X86_64) || output != output_orig)
431 handle_relocations(output, output_len);
432 debug_putstr("done.\nBooting the kernel.\n");
433 return output;
434}
435