replace some function names
[linux-2.6/zen-sources.git] / init / initramfs.c
blob6b5c1dc7d6a81dc01cfc719b2295599736f1be54
1 #include <linux/init.h>
2 #include <linux/fs.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/dirent.h>
9 #include <linux/syscalls.h>
10 #include <linux/utime.h>
12 static __initdata char *message;
13 static void __init error(char *x)
15 if (!message)
16 message = x;
19 /* link hash */
21 #define N_ALIGN(len) ((((len) + 1) & ~3) + 2)
23 static __initdata struct hash {
24 int ino, minor, major;
25 mode_t mode;
26 struct hash *next;
27 char name[N_ALIGN(PATH_MAX)];
28 } *head[32];
30 static inline int hash(int major, int minor, int ino)
32 unsigned long tmp = ino + minor + (major << 3);
33 tmp += tmp >> 5;
34 return tmp & 31;
37 static char __init *find_link(int major, int minor, int ino,
38 mode_t mode, char *name)
40 struct hash **p, *q;
41 for (p = head + hash(major, minor, ino); *p; p = &(*p)->next) {
42 if ((*p)->ino != ino)
43 continue;
44 if ((*p)->minor != minor)
45 continue;
46 if ((*p)->major != major)
47 continue;
48 if (((*p)->mode ^ mode) & S_IFMT)
49 continue;
50 return (*p)->name;
52 q = kmalloc(sizeof(struct hash), GFP_KERNEL);
53 if (!q)
54 panic("can't allocate link hash entry");
55 q->major = major;
56 q->minor = minor;
57 q->ino = ino;
58 q->mode = mode;
59 strcpy(q->name, name);
60 q->next = NULL;
61 *p = q;
62 return NULL;
65 static void __init free_hash(void)
67 struct hash **p, *q;
68 for (p = head; p < head + 32; p++) {
69 while (*p) {
70 q = *p;
71 *p = q->next;
72 kfree(q);
77 static long __init do_utime(char __user *filename, time_t mtime)
79 struct timespec t[2];
81 t[0].tv_sec = mtime;
82 t[0].tv_nsec = 0;
83 t[1].tv_sec = mtime;
84 t[1].tv_nsec = 0;
86 return do_utimes(AT_FDCWD, filename, t, AT_SYMLINK_NOFOLLOW);
89 static __initdata LIST_HEAD(dir_list);
90 struct dir_entry {
91 struct list_head list;
92 char *name;
93 time_t mtime;
96 static void __init dir_add(const char *name, time_t mtime)
98 struct dir_entry *de = kmalloc(sizeof(struct dir_entry), GFP_KERNEL);
99 if (!de)
100 panic("can't allocate dir_entry buffer");
101 INIT_LIST_HEAD(&de->list);
102 de->name = kstrdup(name, GFP_KERNEL);
103 de->mtime = mtime;
104 list_add(&de->list, &dir_list);
107 static void __init dir_utime(void)
109 struct dir_entry *de, *tmp;
110 list_for_each_entry_safe(de, tmp, &dir_list, list) {
111 list_del(&de->list);
112 do_utime(de->name, de->mtime);
113 kfree(de->name);
114 kfree(de);
118 static __initdata time_t mtime;
120 /* cpio header parsing */
122 static __initdata unsigned long ino, major, minor, nlink;
123 static __initdata mode_t mode;
124 static __initdata unsigned long body_len, name_len;
125 static __initdata uid_t uid;
126 static __initdata gid_t gid;
127 static __initdata unsigned rdev;
129 static void __init parse_header(char *s)
131 unsigned long parsed[12];
132 char buf[9];
133 int i;
135 buf[8] = '\0';
136 for (i = 0, s += 6; i < 12; i++, s += 8) {
137 memcpy(buf, s, 8);
138 parsed[i] = simple_strtoul(buf, NULL, 16);
140 ino = parsed[0];
141 mode = parsed[1];
142 uid = parsed[2];
143 gid = parsed[3];
144 nlink = parsed[4];
145 mtime = parsed[5];
146 body_len = parsed[6];
147 major = parsed[7];
148 minor = parsed[8];
149 rdev = new_encode_dev(MKDEV(parsed[9], parsed[10]));
150 name_len = parsed[11];
153 /* FSM */
155 static __initdata enum state {
156 Start,
157 Collect,
158 GotHeader,
159 SkipIt,
160 GotName,
161 CopyFile,
162 GotSymlink,
163 Reset
164 } state, next_state;
166 static __initdata char *victim;
167 static __initdata unsigned count;
168 static __initdata loff_t this_header, next_header;
170 static inline void __init eat(unsigned n)
172 victim += n;
173 this_header += n;
174 count -= n;
177 static __initdata char *vcollected;
178 static __initdata char *collected;
179 static __initdata int remains;
180 static __initdata char *collect;
182 static void __init read_into(char *buf, unsigned size, enum state next)
184 if (count >= size) {
185 collected = victim;
186 eat(size);
187 state = next;
188 } else {
189 collect = collected = buf;
190 remains = size;
191 next_state = next;
192 state = Collect;
196 static __initdata char *header_buf, *symlink_buf, *name_buf;
198 static int __init do_start(void)
200 read_into(header_buf, 110, GotHeader);
201 return 0;
204 static int __init do_collect(void)
206 unsigned n = remains;
207 if (count < n)
208 n = count;
209 memcpy(collect, victim, n);
210 eat(n);
211 collect += n;
212 if ((remains -= n) != 0)
213 return 1;
214 state = next_state;
215 return 0;
218 static int __init do_header(void)
220 if (memcmp(collected, "070707", 6)==0) {
221 error("incorrect cpio method used: use -H newc option");
222 return 1;
224 if (memcmp(collected, "070701", 6)) {
225 error("no cpio magic");
226 return 1;
228 parse_header(collected);
229 next_header = this_header + N_ALIGN(name_len) + body_len;
230 next_header = (next_header + 3) & ~3;
231 state = SkipIt;
232 if (name_len <= 0 || name_len > PATH_MAX)
233 return 0;
234 if (S_ISLNK(mode)) {
235 if (body_len > PATH_MAX)
236 return 0;
237 collect = collected = symlink_buf;
238 remains = N_ALIGN(name_len) + body_len;
239 next_state = GotSymlink;
240 state = Collect;
241 return 0;
243 if (S_ISREG(mode) || !body_len)
244 read_into(name_buf, N_ALIGN(name_len), GotName);
245 return 0;
248 static int __init do_skip(void)
250 if (this_header + count < next_header) {
251 eat(count);
252 return 1;
253 } else {
254 eat(next_header - this_header);
255 state = next_state;
256 return 0;
260 static int __init do_reset(void)
262 while(count && *victim == '\0')
263 eat(1);
264 if (count && (this_header & 3))
265 error("broken padding");
266 return 1;
269 static int __init maybe_link(void)
271 if (nlink >= 2) {
272 char *old = find_link(major, minor, ino, mode, collected);
273 if (old)
274 return (sys_link(old, collected) < 0) ? -1 : 1;
276 return 0;
279 static void __init clean_path(char *path, mode_t mode)
281 struct stat st;
283 if (!sys_newlstat(path, &st) && (st.st_mode^mode) & S_IFMT) {
284 if (S_ISDIR(st.st_mode))
285 sys_rmdir(path);
286 else
287 sys_unlink(path);
291 static __initdata int wfd;
293 static int __init do_name(void)
295 state = SkipIt;
296 next_state = Reset;
297 if (strcmp(collected, "TRAILER!!!") == 0) {
298 free_hash();
299 return 0;
301 clean_path(collected, mode);
302 if (S_ISREG(mode)) {
303 int ml = maybe_link();
304 if (ml >= 0) {
305 int openflags = O_WRONLY|O_CREAT;
306 if (ml != 1)
307 openflags |= O_TRUNC;
308 wfd = sys_open(collected, openflags, mode);
310 if (wfd >= 0) {
311 sys_fchown(wfd, uid, gid);
312 sys_fchmod(wfd, mode);
313 vcollected = kstrdup(collected, GFP_KERNEL);
314 state = CopyFile;
317 } else if (S_ISDIR(mode)) {
318 sys_mkdir(collected, mode);
319 sys_chown(collected, uid, gid);
320 sys_chmod(collected, mode);
321 dir_add(collected, mtime);
322 } else if (S_ISBLK(mode) || S_ISCHR(mode) ||
323 S_ISFIFO(mode) || S_ISSOCK(mode)) {
324 if (maybe_link() == 0) {
325 sys_mknod(collected, mode, rdev);
326 sys_chown(collected, uid, gid);
327 sys_chmod(collected, mode);
328 do_utime(collected, mtime);
331 return 0;
334 static int __init do_copy(void)
336 if (count >= body_len) {
337 sys_write(wfd, victim, body_len);
338 sys_close(wfd);
339 do_utime(vcollected, mtime);
340 kfree(vcollected);
341 eat(body_len);
342 state = SkipIt;
343 return 0;
344 } else {
345 sys_write(wfd, victim, count);
346 body_len -= count;
347 eat(count);
348 return 1;
352 static int __init do_symlink(void)
354 collected[N_ALIGN(name_len) + body_len] = '\0';
355 clean_path(collected, 0);
356 sys_symlink(collected + N_ALIGN(name_len), collected);
357 sys_lchown(collected, uid, gid);
358 do_utime(collected, mtime);
359 state = SkipIt;
360 next_state = Reset;
361 return 0;
364 static __initdata int (*actions[])(void) = {
365 [Start] = do_start,
366 [Collect] = do_collect,
367 [GotHeader] = do_header,
368 [SkipIt] = do_skip,
369 [GotName] = do_name,
370 [CopyFile] = do_copy,
371 [GotSymlink] = do_symlink,
372 [Reset] = do_reset,
375 static int __init write_buffer(char *buf, unsigned len)
377 count = len;
378 victim = buf;
380 while (!actions[state]())
382 return len - count;
385 static void __init flush_buffer(char *buf, unsigned len)
387 int written;
388 if (message)
389 return;
390 while ((written = write_buffer(buf, len)) < len && !message) {
391 char c = buf[written];
392 if (c == '0') {
393 buf += written;
394 len -= written;
395 state = Start;
396 } else if (c == 0) {
397 buf += written;
398 len -= written;
399 state = Reset;
400 } else
401 error("junk in compressed archive");
406 * gzip declarations
409 #define OF(args) args
411 #ifndef memzero
412 #define memzero(s, n) memset ((s), 0, (n))
413 #endif
415 typedef unsigned char uch;
416 typedef unsigned short ush;
417 typedef unsigned long ulg;
419 #define WSIZE 0x8000 /* window size--must be a power of two, and */
420 /* at least 32K for zip's deflate method */
422 static uch *inbuf;
423 static uch *window;
425 static unsigned insize; /* valid bytes in inbuf */
426 static unsigned inptr; /* index of next byte to be processed in inbuf */
427 static unsigned outcnt; /* bytes in output buffer */
428 static long bytes_out;
430 #define get_byte() (inptr < insize ? inbuf[inptr++] : -1)
432 /* Diagnostic functions (stubbed out) */
433 #define Assert(cond,msg)
434 #define Trace(x)
435 #define Tracev(x)
436 #define Tracevv(x)
437 #define Tracec(c,x)
438 #define Tracecv(c,x)
440 #define STATIC static
441 #define INIT __init
443 static void __init flush_window(void);
444 static void __init error(char *m);
446 #define NO_INFLATE_MALLOC
448 #include "../lib/inflate.c"
450 /* ===========================================================================
451 * Write the output window window[0..outcnt-1] and update crc and bytes_out.
452 * (Used for the decompressed data only.)
454 static void __init flush_window(void)
456 ulg c = crc; /* temporary variable */
457 unsigned n;
458 uch *in, ch;
460 flush_buffer(window, outcnt);
461 in = window;
462 for (n = 0; n < outcnt; n++) {
463 ch = *in++;
464 c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8);
466 crc = c;
467 bytes_out += (ulg)outcnt;
468 outcnt = 0;
471 static char * __init unpack_to_rootfs(char *buf, unsigned len)
473 int written;
474 header_buf = kmalloc(110, GFP_KERNEL);
475 symlink_buf = kmalloc(PATH_MAX + N_ALIGN(PATH_MAX) + 1, GFP_KERNEL);
476 name_buf = kmalloc(N_ALIGN(PATH_MAX), GFP_KERNEL);
477 window = kmalloc(WSIZE, GFP_KERNEL);
478 if (!window || !header_buf || !symlink_buf || !name_buf)
479 panic("can't allocate buffers");
480 state = Start;
481 this_header = 0;
482 message = NULL;
483 while (!message && len) {
484 loff_t saved_offset = this_header;
485 if (*buf == '0' && !(this_header & 3)) {
486 state = Start;
487 written = write_buffer(buf, len);
488 buf += written;
489 len -= written;
490 continue;
492 if (!*buf) {
493 buf++;
494 len--;
495 this_header++;
496 continue;
498 this_header = 0;
499 insize = len;
500 inbuf = buf;
501 inptr = 0;
502 outcnt = 0; /* bytes in output buffer */
503 bytes_out = 0;
504 crc = (ulg)0xffffffffL; /* shift register contents */
505 makecrc();
506 gunzip();
507 if (state != Reset)
508 error("junk in gzipped archive");
509 this_header = saved_offset + inptr;
510 buf += inptr;
511 len -= inptr;
513 dir_utime();
514 kfree(window);
515 kfree(name_buf);
516 kfree(symlink_buf);
517 kfree(header_buf);
518 return message;
521 static int __initdata do_retain_initrd;
523 static int __init retain_initrd_param(char *str)
525 if (*str)
526 return 0;
527 do_retain_initrd = 1;
528 return 1;
530 __setup("retain_initrd", retain_initrd_param);
532 extern char __initramfs_start[], __initramfs_end[];
533 #include <linux/initrd.h>
534 #include <linux/kexec.h>
536 static void __init free_initrd(void)
538 #ifdef CONFIG_KEXEC
539 unsigned long crashk_start = (unsigned long)__va(crashk_res.start);
540 unsigned long crashk_end = (unsigned long)__va(crashk_res.end);
541 #endif
542 if (do_retain_initrd)
543 goto skip;
545 #ifdef CONFIG_KEXEC
547 * If the initrd region is overlapped with crashkernel reserved region,
548 * free only memory that is not part of crashkernel region.
550 if (initrd_start < crashk_end && initrd_end > crashk_start) {
552 * Initialize initrd memory region since the kexec boot does
553 * not do.
555 memset((void *)initrd_start, 0, initrd_end - initrd_start);
556 if (initrd_start < crashk_start)
557 free_initrd_mem(initrd_start, crashk_start);
558 if (initrd_end > crashk_end)
559 free_initrd_mem(crashk_end, initrd_end);
560 } else
561 #endif
562 free_initrd_mem(initrd_start, initrd_end);
563 skip:
564 initrd_start = 0;
565 initrd_end = 0;
568 #define BUF_SIZE 1024
569 static void __init clean_rootfs(void)
571 int fd;
572 void *buf;
573 struct linux_dirent64 *dirp;
574 int count;
576 fd = sys_open("/", O_RDONLY, 0);
577 WARN_ON(fd < 0);
578 if (fd < 0)
579 return;
580 buf = kzalloc(BUF_SIZE, GFP_KERNEL);
581 WARN_ON(!buf);
582 if (!buf) {
583 sys_close(fd);
584 return;
587 dirp = buf;
588 count = sys_getdents64(fd, dirp, BUF_SIZE);
589 while (count > 0) {
590 while (count > 0) {
591 struct stat st;
592 int ret;
594 ret = sys_newlstat(dirp->d_name, &st);
595 WARN_ON_ONCE(ret);
596 if (!ret) {
597 if (S_ISDIR(st.st_mode))
598 sys_rmdir(dirp->d_name);
599 else
600 sys_unlink(dirp->d_name);
603 count -= dirp->d_reclen;
604 dirp = (void *)dirp + dirp->d_reclen;
606 dirp = buf;
607 memset(buf, 0, BUF_SIZE);
608 count = sys_getdents64(fd, dirp, BUF_SIZE);
611 sys_close(fd);
612 kfree(buf);
615 static int __init populate_rootfs(void)
617 char *err = unpack_to_rootfs(__initramfs_start,
618 __initramfs_end - __initramfs_start);
619 if (err)
620 panic(err);
621 if (initrd_start) {
622 #ifdef CONFIG_BLK_DEV_RAM
623 int fd;
624 printk(KERN_INFO "checking if image is initramfs...");
625 err = unpack_to_rootfs((char *)initrd_start,
626 initrd_end - initrd_start);
627 if (!err) {
628 printk(" it is\n");
629 free_initrd();
630 return 0;
631 } else {
632 clean_rootfs();
633 unpack_to_rootfs(__initramfs_start,
634 __initramfs_end - __initramfs_start);
636 printk("it isn't (%s); looks like an initrd\n", err);
637 fd = sys_open("/initrd.image", O_WRONLY|O_CREAT, 0700);
638 if (fd >= 0) {
639 sys_write(fd, (char *)initrd_start,
640 initrd_end - initrd_start);
641 sys_close(fd);
642 free_initrd();
644 #else
645 printk(KERN_INFO "Unpacking initramfs...");
646 err = unpack_to_rootfs((char *)initrd_start,
647 initrd_end - initrd_start);
648 if (err)
649 panic(err);
650 printk(" done\n");
651 free_initrd();
652 #endif
654 return 0;
656 rootfs_initcall(populate_rootfs);