dmesg.c revision 1.31 1 1.31 christos /* $NetBSD: dmesg.c,v 1.31 2018/04/10 22:21:52 christos Exp $ */
2 1.1 cgd /*-
3 1.6 cgd * Copyright (c) 1991, 1993
4 1.6 cgd * The Regents of the University of California. All rights reserved.
5 1.1 cgd *
6 1.1 cgd * Redistribution and use in source and binary forms, with or without
7 1.1 cgd * modification, are permitted provided that the following conditions
8 1.1 cgd * are met:
9 1.1 cgd * 1. Redistributions of source code must retain the above copyright
10 1.1 cgd * notice, this list of conditions and the following disclaimer.
11 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 cgd * notice, this list of conditions and the following disclaimer in the
13 1.1 cgd * documentation and/or other materials provided with the distribution.
14 1.22 agc * 3. Neither the name of the University nor the names of its contributors
15 1.1 cgd * may be used to endorse or promote products derived from this software
16 1.1 cgd * without specific prior written permission.
17 1.1 cgd *
18 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 1.1 cgd * SUCH DAMAGE.
29 1.1 cgd */
30 1.1 cgd
31 1.11 lukem #include <sys/cdefs.h>
32 1.1 cgd #ifndef lint
33 1.26 lukem __COPYRIGHT("@(#) Copyright (c) 1991, 1993\
34 1.26 lukem The Regents of the University of California. All rights reserved.");
35 1.1 cgd #endif /* not lint */
36 1.1 cgd
37 1.1 cgd #ifndef lint
38 1.8 cgd #if 0
39 1.6 cgd static char sccsid[] = "@(#)dmesg.c 8.1 (Berkeley) 6/5/93";
40 1.8 cgd #else
41 1.31 christos __RCSID("$NetBSD: dmesg.c,v 1.31 2018/04/10 22:21:52 christos Exp $");
42 1.8 cgd #endif
43 1.1 cgd #endif /* not lint */
44 1.1 cgd
45 1.17 simonb #include <sys/param.h>
46 1.1 cgd #include <sys/msgbuf.h>
47 1.17 simonb #include <sys/sysctl.h>
48 1.6 cgd
49 1.7 cgd #include <err.h>
50 1.6 cgd #include <fcntl.h>
51 1.28 christos #include <time.h>
52 1.6 cgd #include <kvm.h>
53 1.1 cgd #include <nlist.h>
54 1.6 cgd #include <stdio.h>
55 1.17 simonb #include <stddef.h>
56 1.1 cgd #include <stdlib.h>
57 1.5 jtc #include <unistd.h>
58 1.6 cgd #include <vis.h>
59 1.1 cgd
60 1.20 simonb #ifndef SMALL
61 1.27 joerg static struct nlist nl[] = {
62 1.6 cgd #define X_MSGBUF 0
63 1.25 christos { .n_name = "_msgbufp" },
64 1.25 christos { .n_name = NULL },
65 1.1 cgd };
66 1.1 cgd
67 1.27 joerg __dead static void usage(void);
68 1.1 cgd
69 1.6 cgd #define KREAD(addr, var) \
70 1.6 cgd kvm_read(kd, addr, &var, sizeof(var)) != sizeof(var)
71 1.24 dsl #endif
72 1.6 cgd
73 1.6 cgd int
74 1.18 simonb main(int argc, char *argv[])
75 1.1 cgd {
76 1.17 simonb struct kern_msgbuf cur;
77 1.28 christos int ch, newl, log, i;
78 1.28 christos size_t tstamp, size;
79 1.20 simonb char *p, *bufdata;
80 1.28 christos char buf[5];
81 1.20 simonb #ifndef SMALL
82 1.28 christos char tbuf[64];
83 1.20 simonb char *memf, *nlistf;
84 1.28 christos struct timeval boottime;
85 1.31 christos struct timespec lasttime;
86 1.31 christos intmax_t sec;
87 1.31 christos long nsec;
88 1.31 christos int deltas, quiet, humantime;
89 1.28 christos
90 1.28 christos static const int bmib[] = { CTL_KERN, KERN_BOOTTIME };
91 1.28 christos size = sizeof(boottime);
92 1.28 christos
93 1.28 christos boottime.tv_sec = 0;
94 1.28 christos boottime.tv_usec = 0;
95 1.31 christos lasttime.tv_sec = 0;
96 1.31 christos lasttime.tv_nsec = 0;
97 1.31 christos deltas = quiet = humantime = 0;
98 1.28 christos
99 1.28 christos (void)sysctl(bmib, 2, &boottime, &size, NULL, 0);
100 1.1 cgd
101 1.6 cgd memf = nlistf = NULL;
102 1.31 christos while ((ch = getopt(argc, argv, "dM:N:tT")) != -1)
103 1.1 cgd switch(ch) {
104 1.31 christos case 'd':
105 1.31 christos deltas = 1;
106 1.31 christos break;
107 1.1 cgd case 'M':
108 1.6 cgd memf = optarg;
109 1.1 cgd break;
110 1.1 cgd case 'N':
111 1.6 cgd nlistf = optarg;
112 1.1 cgd break;
113 1.31 christos case 't':
114 1.31 christos quiet = 1;
115 1.28 christos break;
116 1.31 christos case 'T':
117 1.31 christos humantime = 1;
118 1.28 christos break;
119 1.1 cgd case '?':
120 1.1 cgd default:
121 1.1 cgd usage();
122 1.1 cgd }
123 1.1 cgd argc -= optind;
124 1.1 cgd argv += optind;
125 1.31 christos if (quiet && humantime)
126 1.31 christos err(EXIT_FAILURE, "-t cannot be used with -T");
127 1.1 cgd
128 1.19 simonb if (memf == NULL) {
129 1.20 simonb #endif
130 1.28 christos static const int mmib[2] = { CTL_KERN, KERN_MSGBUF };
131 1.17 simonb
132 1.28 christos if (sysctl(mmib, 2, NULL, &size, NULL, 0) == -1 ||
133 1.24 dsl (bufdata = malloc(size)) == NULL ||
134 1.28 christos sysctl(mmib, 2, bufdata, &size, NULL, 0) == -1)
135 1.17 simonb err(1, "can't get msgbuf");
136 1.17 simonb
137 1.17 simonb /* make a dummy struct msgbuf for the display logic */
138 1.24 dsl cur.msg_bufx = 0;
139 1.24 dsl cur.msg_bufs = size;
140 1.20 simonb #ifndef SMALL
141 1.17 simonb } else {
142 1.17 simonb kvm_t *kd;
143 1.17 simonb struct kern_msgbuf *bufp;
144 1.17 simonb
145 1.17 simonb /*
146 1.17 simonb * Read in message buffer header and data, and do sanity
147 1.17 simonb * checks.
148 1.17 simonb */
149 1.17 simonb kd = kvm_open(nlistf, memf, NULL, O_RDONLY, "dmesg");
150 1.17 simonb if (kd == NULL)
151 1.17 simonb exit (1);
152 1.17 simonb if (kvm_nlist(kd, nl) == -1)
153 1.17 simonb errx(1, "kvm_nlist: %s", kvm_geterr(kd));
154 1.17 simonb if (nl[X_MSGBUF].n_type == 0)
155 1.17 simonb errx(1, "%s: msgbufp not found", nlistf ? nlistf :
156 1.17 simonb "namelist");
157 1.17 simonb if (KREAD(nl[X_MSGBUF].n_value, bufp))
158 1.17 simonb errx(1, "kvm_read: %s (0x%lx)", kvm_geterr(kd),
159 1.17 simonb nl[X_MSGBUF].n_value);
160 1.17 simonb if (kvm_read(kd, (long)bufp, &cur,
161 1.17 simonb offsetof(struct kern_msgbuf, msg_bufc)) !=
162 1.17 simonb offsetof(struct kern_msgbuf, msg_bufc))
163 1.17 simonb errx(1, "kvm_read: %s (0x%lx)", kvm_geterr(kd),
164 1.17 simonb (unsigned long)bufp);
165 1.17 simonb if (cur.msg_magic != MSG_MAGIC)
166 1.17 simonb errx(1, "magic number incorrect");
167 1.17 simonb bufdata = malloc(cur.msg_bufs);
168 1.17 simonb if (bufdata == NULL)
169 1.17 simonb errx(1, "couldn't allocate space for buffer data");
170 1.17 simonb if (kvm_read(kd, (long)&bufp->msg_bufc, bufdata,
171 1.17 simonb cur.msg_bufs) != cur.msg_bufs)
172 1.17 simonb errx(1, "kvm_read: %s", kvm_geterr(kd));
173 1.17 simonb kvm_close(kd);
174 1.17 simonb if (cur.msg_bufx >= cur.msg_bufs)
175 1.17 simonb cur.msg_bufx = 0;
176 1.17 simonb }
177 1.20 simonb #endif
178 1.1 cgd
179 1.1 cgd /*
180 1.14 enami * The message buffer is circular; start at the write pointer
181 1.14 enami * (which points the oldest character), and go to the write
182 1.14 enami * pointer - 1 (which points the newest character). I.e, loop
183 1.14 enami * over cur.msg_bufs times. Unused area is skipped since it
184 1.14 enami * contains nul.
185 1.1 cgd */
186 1.28 christos for (tstamp = 0, newl = 1, log = i = 0, p = bufdata + cur.msg_bufx;
187 1.14 enami i < cur.msg_bufs; i++, p++) {
188 1.24 dsl #ifndef SMALL
189 1.12 leo if (p == bufdata + cur.msg_bufs)
190 1.12 leo p = bufdata;
191 1.28 christos #define ADDC(c) \
192 1.28 christos do \
193 1.28 christos if (tstamp < sizeof(tbuf) - 1) \
194 1.28 christos tbuf[tstamp++] = (c); \
195 1.28 christos while (/*CONSTCOND*/0)
196 1.28 christos #else
197 1.28 christos #define ADDC(c)
198 1.24 dsl #endif
199 1.1 cgd ch = *p;
200 1.30 christos if (ch == '\0')
201 1.30 christos continue;
202 1.1 cgd /* Skip "\n<.*>" syslog sequences. */
203 1.28 christos /* Gather timestamp sequences */
204 1.28 christos if (newl) {
205 1.28 christos switch (ch) {
206 1.28 christos case '[':
207 1.28 christos ADDC(ch);
208 1.28 christos continue;
209 1.28 christos case '<':
210 1.28 christos log = 1;
211 1.28 christos continue;
212 1.28 christos case '>':
213 1.29 christos log = 0;
214 1.28 christos continue;
215 1.28 christos case ']':
216 1.28 christos ADDC(ch);
217 1.28 christos ADDC('\0');
218 1.28 christos tstamp = 0;
219 1.28 christos #ifndef SMALL
220 1.31 christos sscanf(tbuf, "[%jd.%ld]", &sec, &nsec);
221 1.31 christos if (!quiet || deltas)
222 1.31 christos printf("[");
223 1.31 christos if (humantime) {
224 1.28 christos time_t t;
225 1.28 christos struct tm tm;
226 1.28 christos t = boottime.tv_sec + sec;
227 1.28 christos if (localtime_r(&t, &tm) != NULL) {
228 1.28 christos strftime(tbuf, sizeof(tbuf),
229 1.31 christos "%a %b %e %H:%M:%S %Z %Y",
230 1.28 christos &tm);
231 1.31 christos printf("%s", tbuf);
232 1.28 christos }
233 1.31 christos } else if (!quiet) {
234 1.31 christos printf("% 9jd.%06ld",
235 1.31 christos sec, nsec / 1000);
236 1.31 christos }
237 1.31 christos if (deltas) {
238 1.31 christos struct timespec nt = { sec, nsec };
239 1.31 christos struct timespec dt;
240 1.31 christos timespecsub(&nt, &lasttime, &dt);
241 1.31 christos if (humantime || !quiet)
242 1.31 christos printf(" ");
243 1.31 christos printf("<% 4jd.%06ld>", (intmax_t)
244 1.31 christos dt.tv_sec, dt.tv_nsec / 1000);
245 1.31 christos lasttime = nt;
246 1.31 christos }
247 1.31 christos if (!quiet || deltas)
248 1.31 christos printf("] ");
249 1.28 christos #endif
250 1.28 christos continue;
251 1.28 christos case ' ':
252 1.28 christos if (!tstamp)
253 1.28 christos continue;
254 1.28 christos /*FALLTHROUGH*/
255 1.28 christos default:
256 1.28 christos if (tstamp) {
257 1.28 christos ADDC(ch);
258 1.28 christos continue;
259 1.28 christos }
260 1.28 christos if (log)
261 1.28 christos continue;
262 1.28 christos break;
263 1.28 christos }
264 1.29 christos newl = 0;
265 1.1 cgd }
266 1.6 cgd newl = ch == '\n';
267 1.21 augustss (void)vis(buf, ch, VIS_NOSLASH, 0);
268 1.24 dsl #ifndef SMALL
269 1.6 cgd if (buf[1] == 0)
270 1.6 cgd (void)putchar(buf[0]);
271 1.6 cgd else
272 1.24 dsl #endif
273 1.6 cgd (void)printf("%s", buf);
274 1.12 leo }
275 1.1 cgd if (!newl)
276 1.1 cgd (void)putchar('\n');
277 1.28 christos return EXIT_SUCCESS;
278 1.1 cgd }
279 1.1 cgd
280 1.24 dsl #ifndef SMALL
281 1.27 joerg static void
282 1.18 simonb usage(void)
283 1.1 cgd {
284 1.15 enami
285 1.28 christos (void)fprintf(stderr, "Usage: %s [-qt] [-M core] [-N system]\n",
286 1.28 christos getprogname());
287 1.28 christos exit(EXIT_FAILURE);
288 1.1 cgd }
289 1.24 dsl #endif
290