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 #define N_ALIGN(len) ((((len) + 1) & ~3) + 2)
31 static __initdata
struct hash
{
32 int ino
, minor
, major
;
35 char name
[N_ALIGN(PATH_MAX
)];
38 static inline int hash(int major
, int minor
, int ino
)
40 unsigned long tmp
= ino
+ minor
+ (major
<< 3);
45 static char __init
*find_link(int major
, int minor
, int ino
,
46 mode_t mode
, char *name
)
49 for (p
= head
+ hash(major
, minor
, ino
); *p
; p
= &(*p
)->next
) {
52 if ((*p
)->minor
!= minor
)
54 if ((*p
)->major
!= major
)
56 if (((*p
)->mode
^ mode
) & S_IFMT
)
60 q
= (struct hash
*)malloc(sizeof(struct hash
));
62 panic("can't allocate link hash entry");
67 strcpy(q
->name
, name
);
73 static void __init
free_hash(void)
76 for (p
= head
; p
< head
+ 32; p
++) {
85 /* cpio header parsing */
87 static __initdata
unsigned long ino
, major
, minor
, nlink
;
88 static __initdata mode_t mode
;
89 static __initdata
unsigned long body_len
, name_len
;
90 static __initdata uid_t uid
;
91 static __initdata gid_t gid
;
92 static __initdata
unsigned rdev
;
94 static void __init
parse_header(char *s
)
96 unsigned long parsed
[12];
101 for (i
= 0, s
+= 6; i
< 12; i
++, s
+= 8) {
103 parsed
[i
] = simple_strtoul(buf
, NULL
, 16);
110 body_len
= parsed
[6];
113 rdev
= new_encode_dev(MKDEV(parsed
[9], parsed
[10]));
114 name_len
= parsed
[11];
119 static __initdata
enum state
{
130 static __initdata
char *victim
;
131 static __initdata
unsigned count
;
132 static __initdata loff_t this_header
, next_header
;
134 static __initdata
int dry_run
;
136 static inline void eat(unsigned n
)
143 static __initdata
char *collected
;
144 static __initdata
int remains
;
145 static __initdata
char *collect
;
147 static void __init
read_into(char *buf
, unsigned size
, enum state next
)
154 collect
= collected
= buf
;
161 static __initdata
char *header_buf
, *symlink_buf
, *name_buf
;
163 static int __init
do_start(void)
165 read_into(header_buf
, 110, GotHeader
);
169 static int __init
do_collect(void)
171 unsigned n
= remains
;
174 memcpy(collect
, victim
, n
);
177 if ((remains
-= n
) != 0)
183 static int __init
do_header(void)
185 if (memcmp(collected
, "070701", 6)) {
186 error("no cpio magic");
189 parse_header(collected
);
190 next_header
= this_header
+ N_ALIGN(name_len
) + body_len
;
191 next_header
= (next_header
+ 3) & ~3;
193 read_into(name_buf
, N_ALIGN(name_len
), GotName
);
197 if (name_len
<= 0 || name_len
> PATH_MAX
)
200 if (body_len
> PATH_MAX
)
202 collect
= collected
= symlink_buf
;
203 remains
= N_ALIGN(name_len
) + body_len
;
204 next_state
= GotSymlink
;
208 if (S_ISREG(mode
) || !body_len
)
209 read_into(name_buf
, N_ALIGN(name_len
), GotName
);
213 static int __init
do_skip(void)
215 if (this_header
+ count
< next_header
) {
219 eat(next_header
- this_header
);
225 static int __init
do_reset(void)
227 while(count
&& *victim
== '\0')
229 if (count
&& (this_header
& 3))
230 error("broken padding");
234 static int __init
maybe_link(void)
237 char *old
= find_link(major
, minor
, ino
, mode
, collected
);
239 return (sys_link(old
, collected
) < 0) ? -1 : 1;
244 static void __init
clean_path(char *path
, mode_t mode
)
248 if (!sys_newlstat(path
, &st
) && (st
.st_mode
^mode
) & S_IFMT
) {
249 if (S_ISDIR(st
.st_mode
))
256 static __initdata
int wfd
;
258 static int __init
do_name(void)
262 if (strcmp(collected
, "TRAILER!!!") == 0) {
268 clean_path(collected
, mode
);
270 int ml
= maybe_link();
272 int openflags
= O_WRONLY
|O_CREAT
;
274 openflags
|= O_TRUNC
;
275 wfd
= sys_open(collected
, openflags
, mode
);
278 sys_fchown(wfd
, uid
, gid
);
279 sys_fchmod(wfd
, mode
);
283 } else if (S_ISDIR(mode
)) {
284 sys_mkdir(collected
, mode
);
285 sys_chown(collected
, uid
, gid
);
286 sys_chmod(collected
, mode
);
287 } else if (S_ISBLK(mode
) || S_ISCHR(mode
) ||
288 S_ISFIFO(mode
) || S_ISSOCK(mode
)) {
289 if (maybe_link() == 0) {
290 sys_mknod(collected
, mode
, rdev
);
291 sys_chown(collected
, uid
, gid
);
292 sys_chmod(collected
, mode
);
298 static int __init
do_copy(void)
300 if (count
>= body_len
) {
301 sys_write(wfd
, victim
, body_len
);
307 sys_write(wfd
, victim
, count
);
314 static int __init
do_symlink(void)
316 collected
[N_ALIGN(name_len
) + body_len
] = '\0';
317 clean_path(collected
, 0);
318 sys_symlink(collected
+ N_ALIGN(name_len
), collected
);
319 sys_lchown(collected
, uid
, gid
);
325 static __initdata
int (*actions
[])(void) = {
327 [Collect
] = do_collect
,
328 [GotHeader
] = do_header
,
331 [CopyFile
] = do_copy
,
332 [GotSymlink
] = do_symlink
,
336 static int __init
write_buffer(char *buf
, unsigned len
)
341 while (!actions
[state
]())
346 static void __init
flush_buffer(char *buf
, unsigned len
)
351 while ((written
= write_buffer(buf
, len
)) < len
&& !message
) {
352 char c
= buf
[written
];
362 error("junk in compressed archive");
370 #define OF(args) args
373 #define memzero(s, n) memset ((s), 0, (n))
376 typedef unsigned char uch
;
377 typedef unsigned short ush
;
378 typedef unsigned long ulg
;
380 #define WSIZE 0x8000 /* window size--must be a power of two, and */
381 /* at least 32K for zip's deflate method */
386 static unsigned insize
; /* valid bytes in inbuf */
387 static unsigned inptr
; /* index of next byte to be processed in inbuf */
388 static unsigned outcnt
; /* bytes in output buffer */
389 static long bytes_out
;
391 #define get_byte() (inptr < insize ? inbuf[inptr++] : -1)
393 /* Diagnostic functions (stubbed out) */
394 #define Assert(cond,msg)
401 #define STATIC static
404 static void __init
flush_window(void);
405 static void __init
error(char *m
);
406 static void __init
gzip_mark(void **);
407 static void __init
gzip_release(void **);
409 #include "../lib/inflate.c"
411 static void __init
gzip_mark(void **ptr
)
415 static void __init
gzip_release(void **ptr
)
419 /* ===========================================================================
420 * Write the output window window[0..outcnt-1] and update crc and bytes_out.
421 * (Used for the decompressed data only.)
423 static void __init
flush_window(void)
425 ulg c
= crc
; /* temporary variable */
429 flush_buffer(window
, outcnt
);
431 for (n
= 0; n
< outcnt
; n
++) {
433 c
= crc_32_tab
[((int)c
^ ch
) & 0xff] ^ (c
>> 8);
436 bytes_out
+= (ulg
)outcnt
;
440 static char * __init
unpack_to_rootfs(char *buf
, unsigned len
, int check_only
)
443 dry_run
= check_only
;
444 header_buf
= malloc(110);
445 symlink_buf
= malloc(PATH_MAX
+ N_ALIGN(PATH_MAX
) + 1);
446 name_buf
= malloc(N_ALIGN(PATH_MAX
));
447 window
= malloc(WSIZE
);
448 if (!window
|| !header_buf
|| !symlink_buf
|| !name_buf
)
449 panic("can't allocate buffers");
453 while (!message
&& len
) {
454 loff_t saved_offset
= this_header
;
455 if (*buf
== '0' && !(this_header
& 3)) {
457 written
= write_buffer(buf
, len
);
472 outcnt
= 0; /* bytes in output buffer */
474 crc
= (ulg
)0xffffffffL
; /* shift register contents */
478 error("junk in gzipped archive");
479 this_header
= saved_offset
+ inptr
;
490 extern char __initramfs_start
[], __initramfs_end
[];
491 #ifdef CONFIG_BLK_DEV_INITRD
492 #include <linux/initrd.h>
493 #include <linux/kexec.h>
495 static void __init
free_initrd(void)
498 unsigned long crashk_start
= (unsigned long)__va(crashk_res
.start
);
499 unsigned long crashk_end
= (unsigned long)__va(crashk_res
.end
);
502 * If the initrd region is overlapped with crashkernel reserved region,
503 * free only memory that is not part of crashkernel region.
505 if (initrd_start
< crashk_end
&& initrd_end
> crashk_start
) {
507 * Initialize initrd memory region since the kexec boot does
510 memset((void *)initrd_start
, 0, initrd_end
- initrd_start
);
511 if (initrd_start
< crashk_start
)
512 free_initrd_mem(initrd_start
, crashk_start
);
513 if (initrd_end
> crashk_end
)
514 free_initrd_mem(crashk_end
, initrd_end
);
517 free_initrd_mem(initrd_start
, initrd_end
);
525 void __init
populate_rootfs(void)
527 char *err
= unpack_to_rootfs(__initramfs_start
,
528 __initramfs_end
- __initramfs_start
, 0);
531 #ifdef CONFIG_BLK_DEV_INITRD
533 #ifdef CONFIG_BLK_DEV_RAM
535 printk(KERN_INFO
"checking if image is initramfs...");
536 err
= unpack_to_rootfs((char *)initrd_start
,
537 initrd_end
- initrd_start
, 1);
540 unpack_to_rootfs((char *)initrd_start
,
541 initrd_end
- initrd_start
, 0);
545 printk("it isn't (%s); looks like an initrd\n", err
);
546 fd
= sys_open("/initrd.image", O_WRONLY
|O_CREAT
, 0700);
548 sys_write(fd
, (char *)initrd_start
,
549 initrd_end
- initrd_start
);
554 printk(KERN_INFO
"Unpacking initramfs...");
555 err
= unpack_to_rootfs((char *)initrd_start
,
556 initrd_end
- initrd_start
, 0);