forked from chris-se/tiny-initramfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.c
115 lines (97 loc) · 2.91 KB
/
log.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
/*
* tiny_initramfs - Minimalistic initramfs implementation
* Copyright (C) 2016 Christian Seiler <[email protected]>
*
* log.c: Basic logging helpers
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "tiny_initramfs.h"
#include <sys/uio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
static void showmsgv(va_list ap, const char *before1, const char *after1, const char *after2);
void panic(int err, ...)
{
va_list ap;
va_start(ap, err);
if (err)
showmsgv(ap, NULL, ": ", strerror(err));
else
showmsgv(ap, NULL, NULL, NULL);
va_end(ap);
/* We want the user to see the message before we cause a kernel panic,
* because a kernel panic obscures the message. But we need to cause
* a kernel panic (by PID 1 exiting), because if the user tells the
* kernel to reboot on panic, we want to make sure this happens. */
warn("Causing kernel panic", NULL);
//sleep(10);
_exit(1);
}
void warn(const char *str1, ...)
{
va_list ap;
va_start(ap, str1);
showmsgv(ap, str1, NULL, NULL);
va_end(ap);
}
void showmsgv(va_list ap, const char *before1, const char *after1, const char *after2)
{
/* Don't use stdio functions, because we link statically
* and they bloat the binary. */
int argc = 1;
int fd;
struct iovec iov[32];
unsigned extra_arg_count = !!after1 + !!after2;
const char *arg;
if (before1) {
iov[1].iov_base = (char *)before1;
iov[1].iov_len = strlen(before1);
argc++;
}
while ((arg = va_arg(ap, const char *))) {
iov[argc].iov_base = (char *)arg;
iov[argc].iov_len = strlen(arg);
argc++;
/* We only support a fixed number of arguments. */
if (argc + 1 + extra_arg_count > 32)
break;
}
if (after1) {
iov[argc].iov_base = (char *)after1;
iov[argc].iov_len = strlen(after1);
argc++;
}
if (after2) {
iov[argc].iov_base = (char *)after2;
iov[argc].iov_len = strlen(after2);
argc++;
}
if (argc == 1)
return;
iov[argc].iov_base = (char *)"\n";
iov[argc].iov_len = 1;
iov[0].iov_base = (char *)LOG_PREFIX;
iov[0].iov_len = sizeof(LOG_PREFIX) - 1;
/* Try to open /dev/kmsg, log to stderr if not possible */
fd = open(KMSG_FILENAME, O_WRONLY | O_NOCTTY | O_CLOEXEC);
if (fd < 0)
fd = 2;
writev(fd, iov, argc + 1);
if (fd >= 3)
close(fd);
}