1 #include <linux/init.h>
3 #include <linux/slab.h>
4 #include <linux/types.h>
5 #include <linux/fcntl.h>
6 #include <linux/delay.h>
7 #include <linux/string.h>
8 #include <linux/syscalls.h>
10 static __initdata char *message;
11 static void __init error(char *x)
17 static void __init *malloc(size_t size)
19 return kmalloc(size, GFP_KERNEL);
22 static void __init free(void *where)
29 static __initdata struct hash {
30 int ino, minor, major;
35 static inline int hash(int major, int minor, int ino)
37 unsigned long tmp = ino + minor + (major << 3);
42 static char __init *find_link(int major, int minor, int ino, char *name)
45 for (p = head + hash(major, minor, ino); *p; p = &(*p)->next) {
48 if ((*p)->minor != minor)
50 if ((*p)->major != major)
54 q = (struct hash *)malloc(sizeof(struct hash));
56 panic("can't allocate link hash entry");
66 static void __init free_hash(void)
69 for (p = head; p < head + 32; p++) {
78 /* cpio header parsing */
80 static __initdata unsigned long ino, major, minor, nlink;
81 static __initdata mode_t mode;
82 static __initdata unsigned long body_len, name_len;
83 static __initdata uid_t uid;
84 static __initdata gid_t gid;
85 static __initdata unsigned rdev;
87 static void __init parse_header(char *s)
89 unsigned long parsed[12];
94 for (i = 0, s += 6; i < 12; i++, s += 8) {
96 parsed[i] = simple_strtoul(buf, NULL, 16);
103 body_len = parsed[6];
106 rdev = new_encode_dev(MKDEV(parsed[9], parsed[10]));
107 name_len = parsed[11];
112 static __initdata enum state {
123 static __initdata char *victim;
124 static __initdata unsigned count;
125 static __initdata loff_t this_header, next_header;
127 static __initdata int dry_run;
129 static inline void eat(unsigned n)
136 #define N_ALIGN(len) ((((len) + 1) & ~3) + 2)
138 static __initdata char *collected;
139 static __initdata int remains;
140 static __initdata char *collect;
142 static void __init read_into(char *buf, unsigned size, enum state next)
149 collect = collected = buf;
156 static __initdata char *header_buf, *symlink_buf, *name_buf;
158 static int __init do_start(void)
160 read_into(header_buf, 110, GotHeader);
164 static int __init do_collect(void)
166 unsigned n = remains;
169 memcpy(collect, victim, n);
172 if ((remains -= n) != 0)
178 static int __init do_header(void)
180 if (memcmp(collected, "070701", 6)) {
181 error("no cpio magic");
184 parse_header(collected);
185 next_header = this_header + N_ALIGN(name_len) + body_len;
186 next_header = (next_header + 3) & ~3;
188 read_into(name_buf, N_ALIGN(name_len), GotName);
192 if (name_len <= 0 || name_len > PATH_MAX)
195 if (body_len > PATH_MAX)
197 collect = collected = symlink_buf;
198 remains = N_ALIGN(name_len) + body_len;
199 next_state = GotSymlink;
203 if (S_ISREG(mode) || !body_len)
204 read_into(name_buf, N_ALIGN(name_len), GotName);
208 static int __init do_skip(void)
210 if (this_header + count < next_header) {
214 eat(next_header - this_header);
220 static int __init do_reset(void)
222 while(count && *victim == '\0')
224 if (count && (this_header & 3))
225 error("broken padding");
229 static int __init maybe_link(void)
232 char *old = find_link(major, minor, ino, collected);
234 return (sys_link(old, collected) < 0) ? -1 : 1;
239 static __initdata int wfd;
241 static int __init do_name(void)
245 if (strcmp(collected, "TRAILER!!!") == 0) {
252 if (maybe_link() >= 0) {
253 wfd = sys_open(collected, O_WRONLY|O_CREAT, mode);
255 sys_fchown(wfd, uid, gid);
256 sys_fchmod(wfd, mode);
260 } else if (S_ISDIR(mode)) {
261 sys_mkdir(collected, mode);
262 sys_chown(collected, uid, gid);
263 sys_chmod(collected, mode);
264 } else if (S_ISBLK(mode) || S_ISCHR(mode) ||
265 S_ISFIFO(mode) || S_ISSOCK(mode)) {
266 if (maybe_link() == 0) {
267 sys_mknod(collected, mode, rdev);
268 sys_chown(collected, uid, gid);
269 sys_chmod(collected, mode);
275 static int __init do_copy(void)
277 if (count >= body_len) {
278 sys_write(wfd, victim, body_len);
284 sys_write(wfd, victim, count);
291 static int __init do_symlink(void)
293 collected[N_ALIGN(name_len) + body_len] = '\0';
294 sys_symlink(collected + N_ALIGN(name_len), collected);
295 sys_lchown(collected, uid, gid);
301 static __initdata int (*actions[])(void) = {
303 [Collect] = do_collect,
304 [GotHeader] = do_header,
307 [CopyFile] = do_copy,
308 [GotSymlink] = do_symlink,
312 static int __init write_buffer(char *buf, unsigned len)
317 while (!actions[state]())
322 static void __init flush_buffer(char *buf, unsigned len)
327 while ((written = write_buffer(buf, len)) < len && !message) {
328 char c = buf[written];
338 error("junk in compressed archive");
346 #define OF(args) args
349 #define memzero(s, n) memset ((s), 0, (n))
352 typedef unsigned char uch;
353 typedef unsigned short ush;
354 typedef unsigned long ulg;
356 #define WSIZE 0x8000 /* window size--must be a power of two, and */
357 /* at least 32K for zip's deflate method */
362 static unsigned insize; /* valid bytes in inbuf */
363 static unsigned inptr; /* index of next byte to be processed in inbuf */
364 static unsigned outcnt; /* bytes in output buffer */
365 static long bytes_out;
367 #define get_byte() (inptr < insize ? inbuf[inptr++] : -1)
369 /* Diagnostic functions (stubbed out) */
370 #define Assert(cond,msg)
377 #define STATIC static
380 static void __init flush_window(void);
381 static void __init error(char *m);
382 static void __init gzip_mark(void **);
383 static void __init gzip_release(void **);
385 #include "../lib/inflate.c"
387 static void __init gzip_mark(void **ptr)
391 static void __init gzip_release(void **ptr)
395 /* ===========================================================================
396 * Write the output window window[0..outcnt-1] and update crc and bytes_out.
397 * (Used for the decompressed data only.)
399 static void __init flush_window(void)
401 ulg c = crc; /* temporary variable */
405 flush_buffer(window, outcnt);
407 for (n = 0; n < outcnt; n++) {
409 c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8);
412 bytes_out += (ulg)outcnt;
416 static char * __init unpack_to_rootfs(char *buf, unsigned len, int check_only)
419 dry_run = check_only;
420 header_buf = malloc(110);
421 symlink_buf = malloc(PATH_MAX + N_ALIGN(PATH_MAX) + 1);
422 name_buf = malloc(N_ALIGN(PATH_MAX));
423 window = malloc(WSIZE);
424 if (!window || !header_buf || !symlink_buf || !name_buf)
425 panic("can't allocate buffers");
429 while (!message && len) {
430 loff_t saved_offset = this_header;
431 if (*buf == '0' && !(this_header & 3)) {
433 written = write_buffer(buf, len);
448 outcnt = 0; /* bytes in output buffer */
450 crc = (ulg)0xffffffffL; /* shift register contents */
454 error("junk in gzipped archive");
455 this_header = saved_offset + inptr;
466 extern char __initramfs_start[], __initramfs_end[];
467 #ifdef CONFIG_BLK_DEV_INITRD
468 #include <linux/initrd.h>
469 #include <linux/kexec.h>
471 static void __init free_initrd(void)
474 unsigned long crashk_start = (unsigned long)__va(crashk_res.start);
475 unsigned long crashk_end = (unsigned long)__va(crashk_res.end);
478 * If the initrd region is overlapped with crashkernel reserved region,
479 * free only memory that is not part of crashkernel region.
481 if (initrd_start < crashk_end && initrd_end > crashk_start) {
483 * Initialize initrd memory region since the kexec boot does
486 memset((void *)initrd_start, 0, initrd_end - initrd_start);
487 if (initrd_start < crashk_start)
488 free_initrd_mem(initrd_start, crashk_start);
489 if (initrd_end > crashk_end)
490 free_initrd_mem(crashk_end, initrd_end);
493 free_initrd_mem(initrd_start, initrd_end);
501 void __init populate_rootfs(void)
503 char *err = unpack_to_rootfs(__initramfs_start,
504 __initramfs_end - __initramfs_start, 0);
507 #ifdef CONFIG_BLK_DEV_INITRD
509 #ifdef CONFIG_BLK_DEV_RAM
511 printk(KERN_INFO "checking if image is initramfs...");
512 err = unpack_to_rootfs((char *)initrd_start,
513 initrd_end - initrd_start, 1);
516 unpack_to_rootfs((char *)initrd_start,
517 initrd_end - initrd_start, 0);
521 printk("it isn't (%s); looks like an initrd\n", err);
522 fd = sys_open("/initrd.image", O_WRONLY|O_CREAT, 700);
524 sys_write(fd, (char *)initrd_start,
525 initrd_end - initrd_start);
530 printk(KERN_INFO "Unpacking initramfs...");
531 err = unpack_to_rootfs((char *)initrd_start,
532 initrd_end - initrd_start, 0);