1
2
3
4
5
6
7
8
9
10
11
12
13
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
|
#include "driver/driver.h"
#include <camellia/flags.h>
#include <camellia/syscalls.h>
#include <stdint.h>
#include <stdio.h>
#include <unistd.h>
#include <user/lib/fs/misc.h>
int main(void) {
freopen("/kdev/com1", "a+", stdout);
printf("in init (stage 2), main at 0x%x\n", &main);
MOUNT("/tmp/", tmpfs_drv());
MOUNT("/keyboard", ps2_drv());
MOUNT("/vga_tty", ansiterm_drv());
MOUNT("/bin/", fs_passthru("/init/bin"));
if (fork()) {
/* (used to) expose a bug in the kernel
* the program will flow like this:
* 1. we launch the forked init
* 2. the forked init launches both shells
* 3. one of the shells quit
* 4. the forked init picks it up and quits
*
* then, in process_kill, the other shell will be deathbedded
*
* before i implement(ed) reparenting, it was a lingering running child
* of a dead process, which is invalid state
*/
_syscall_await();
exit(1);
}
if (!fork()) {
if (!freopen("/kdev/com1", "a+", stdout)) {
printf("couldn't open /kdev/com1\n"); // TODO borked
exit(1);
}
if (!freopen("/kdev/com1", "r", stdin)) {
printf("couldn't open /kdev/com1\n");
exit(1);
}
termcook();
execv("/bin/shell", NULL);
exit(1);
}
if (!fork()) {
if (!freopen("/vga_tty", "a+", stdout)) {
printf("couldn't open /vga_tty\n"); // TODO borked
exit(1);
}
if (!freopen("/keyboard", "r", stdin)) {
printf("couldn't open /keyboard\n");
exit(1);
}
termcook();
execv("/bin/shell", NULL);
exit(1);
}
_syscall_await();
printf("init: quitting\n");
return 0;
}
|