-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinit.c
153 lines (128 loc) · 2.92 KB
/
init.c
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
// SPDX-License-Identifier: Apache-2.0
/* Copyright (c) 2024 Elastic NV */
#include <linux/reboot.h>
#include <sys/ioctl.h>
#include <sys/mount.h>
#include <sys/reboot.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/utsname.h>
#include <sys/wait.h>
#include <net/if.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <err.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
static void
powerdown(void)
{
for (;;) {
/*
* Powering off is a very tricky thing, make sure we never
* return or busy loop. Mostly out of scare of AWS bills.
*/
reboot(RB_POWER_OFF);
sleep(1);
}
}
static void
display_banner(char *argv[])
{
struct utsname uts;
char **pp;
if (uname(&uts) == -1)
warn("uname");
else {
putchar('`');
for (pp = argv; *pp != 0; pp++) {
if (pp != argv)
putchar(' ');
printf("%s", *pp);
}
putchar('`');
printf(" on %s %s\n", uts.release, uts.machine);
}
}
static void
net_up(void)
{
struct ifreq ifr;
int fd;
if ((fd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
err(1, "socket");
bzero(&ifr, sizeof(ifr));
strncpy(ifr.ifr_name, "lo", sizeof(ifr.ifr_name));
if (ioctl(fd, SIOCGIFFLAGS, &ifr) == -1)
err(1, "SIOCGIFFLAGS");
ifr.ifr_flags |= IFF_UP;
if (ioctl(fd, SIOCSIFFLAGS, &ifr) == -1)
err(1, "SIOCSIFFLAGS");
close(fd);
}
int
main(int argc, char *argv[])
{
pid_t pid;
int status;
/*
* Cut the kernel some slack until it is in a good shape, I see TSC
* recalibration messages after init is forked.
*/
sleep(3);
if (argc < 2) {
warnx("no binary to execute");
powerdown();
}
argc--;
argv++;
pid = fork();
if (pid == -1) {
warn("fork");
powerdown();
}
/* child */
if (pid == 0) {
if (mkdir("/proc", 0666) != 0)
err(1, "mkdir /proc");
if (mkdir("/sys", 0666) != 0)
err(1, "mkdir /sys");
if (mount("proc", "/proc", "proc", 0, NULL) == -1)
err(1, "mount /proc");
if (mount(NULL, "/sys", "sysfs", 0, NULL) == -1)
err(1, "mount /sys");
if (mount(NULL, "/sys/kernel/tracing", "tracefs",
0, NULL) == -1) {
warn("mount /sys/kernel/tracing");
warnx("trying debugfs...");
if (mount(NULL, "/sys/kernel/debug", "debugfs",
0, NULL) == -1) {
warn("mount /sys/kernel/debug");
errx(1, "couldn't mount tracefs or debugfs");
}
}
if (mount(NULL, "/sys/fs/cgroup", "cgroup2", 0, NULL) == -1)
err(1, "mount /sys/fs/cgroup");
net_up();
display_banner(argv);
return (execv(argv[0], argv));
}
/* parent */
if (waitpid(pid, &status, 0) == -1) {
warn("waitpid");
powerdown();
}
if (WIFEXITED(status))
printf("%s exited with %d\n", argv[0], WEXITSTATUS(status));
else if (WIFSIGNALED(status))
printf("%s exited with signal %d (%s)\n", argv[0],
WTERMSIG(status), strsignal(WTERMSIG(status)));
else if (WCOREDUMP(status))
printf("%s core dumped\n", argv[0]);
else
printf("%s didn't exit cleanly\n", argv[0]);
powerdown();
return (0); /* NOTREACHED */
}