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
)
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
);
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) {
253 if (maybe_link() >= 0) {
254 wfd
= sys_open(collected
, O_WRONLY
|O_CREAT
, mode
);
256 sys_fchown(wfd
, uid
, gid
);
257 sys_fchmod(wfd
, mode
);
261 } else if (S_ISDIR(mode
)) {
262 sys_mkdir(collected
, mode
);
263 sys_chown(collected
, uid
, gid
);
264 sys_chmod(collected
, mode
);
265 } else if (S_ISBLK(mode
) || S_ISCHR(mode
) ||
266 S_ISFIFO(mode
) || S_ISSOCK(mode
)) {
267 if (maybe_link() == 0) {
268 sys_mknod(collected
, mode
, rdev
);
269 sys_chown(collected
, uid
, gid
);
270 sys_chmod(collected
, mode
);
276 static int __init
do_copy(void)
278 if (count
>= body_len
) {
279 sys_write(wfd
, victim
, body_len
);
285 sys_write(wfd
, victim
, count
);
292 static int __init
do_symlink(void)
294 collected
[N_ALIGN(name_len
) + body_len
] = '\0';
295 sys_symlink(collected
+ N_ALIGN(name_len
), collected
);
296 sys_lchown(collected
, uid
, gid
);
302 static __initdata
int (*actions
[])(void) = {
304 [Collect
] = do_collect
,
305 [GotHeader
] = do_header
,
308 [CopyFile
] = do_copy
,
309 [GotSymlink
] = do_symlink
,
313 static int __init
write_buffer(char *buf
, unsigned len
)
318 while (!actions
[state
]())
323 static void __init
flush_buffer(char *buf
, unsigned len
)
328 while ((written
= write_buffer(buf
, len
)) < len
&& !message
) {
329 char c
= buf
[written
];
335 error("junk in compressed archive");
343 #define OF(args) args
346 #define memzero(s, n) memset ((s), 0, (n))
349 typedef unsigned char uch
;
350 typedef unsigned short ush
;
351 typedef unsigned long ulg
;
353 #define WSIZE 0x8000 /* window size--must be a power of two, and */
354 /* at least 32K for zip's deflate method */
359 static unsigned insize
; /* valid bytes in inbuf */
360 static unsigned inptr
; /* index of next byte to be processed in inbuf */
361 static unsigned outcnt
; /* bytes in output buffer */
362 static long bytes_out
;
364 #define get_byte() (inptr < insize ? inbuf[inptr++] : -1)
366 /* Diagnostic functions (stubbed out) */
367 #define Assert(cond,msg)
374 #define STATIC static
376 static void flush_window(void);
377 static void error(char *m
);
378 static void gzip_mark(void **);
379 static void gzip_release(void **);
381 #include "../lib/inflate.c"
383 static void __init
gzip_mark(void **ptr
)
387 static void __init
gzip_release(void **ptr
)
391 /* ===========================================================================
392 * Write the output window window[0..outcnt-1] and update crc and bytes_out.
393 * (Used for the decompressed data only.)
395 static void __init
flush_window(void)
397 ulg c
= crc
; /* temporary variable */
401 flush_buffer(window
, outcnt
);
403 for (n
= 0; n
< outcnt
; n
++) {
405 c
= crc_32_tab
[((int)c
^ ch
) & 0xff] ^ (c
>> 8);
408 bytes_out
+= (ulg
)outcnt
;
412 char * __init
unpack_to_rootfs(char *buf
, unsigned len
, int check_only
)
415 dry_run
= check_only
;
416 header_buf
= malloc(110);
417 symlink_buf
= malloc(PATH_MAX
+ N_ALIGN(PATH_MAX
) + 1);
418 name_buf
= malloc(N_ALIGN(PATH_MAX
));
419 window
= malloc(WSIZE
);
420 if (!window
|| !header_buf
|| !symlink_buf
|| !name_buf
)
421 panic("can't allocate buffers");
425 while (!message
&& len
) {
426 loff_t saved_offset
= this_header
;
427 if (*buf
== '0' && !(this_header
& 3)) {
429 written
= write_buffer(buf
, len
);
444 outcnt
= 0; /* bytes in output buffer */
446 crc
= (ulg
)0xffffffffL
; /* shift register contents */
449 message
= "ungzip failed";
451 error("junk in gzipped archive");
452 this_header
= saved_offset
+ inptr
;
463 extern char __initramfs_start
, __initramfs_end
;
464 #ifdef CONFIG_BLK_DEV_INITRD
465 #include <linux/initrd.h>
468 void __init
populate_rootfs(void)
470 char *err
= unpack_to_rootfs(&__initramfs_start
,
471 &__initramfs_end
- &__initramfs_start
, 0);
474 #ifdef CONFIG_BLK_DEV_INITRD
477 printk(KERN_INFO
"checking if image is initramfs...");
478 err
= unpack_to_rootfs((char *)initrd_start
,
479 initrd_end
- initrd_start
, 1);
482 unpack_to_rootfs((char *)initrd_start
,
483 initrd_end
- initrd_start
, 0);
484 free_initrd_mem(initrd_start
, initrd_end
);
487 printk("it isn't (%s); looks like an initrd\n", err
);
488 fd
= sys_open("/initrd.image", O_WRONLY
|O_CREAT
, 700);
490 sys_write(fd
, (char *)initrd_start
,
491 initrd_end
- initrd_start
);
493 free_initrd_mem(initrd_start
, initrd_end
);