dmesg.c revision 1.22 1 1.22 agc /* $NetBSD: dmesg.c,v 1.22 2003/08/07 10:04:13 agc 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.11 lukem __COPYRIGHT("@(#) Copyright (c) 1991, 1993\n\
34 1.11 lukem The Regents of the University of California. All rights reserved.\n");
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.22 agc __RCSID("$NetBSD: dmesg.c,v 1.22 2003/08/07 10:04:13 agc 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.6 cgd #include <kvm.h>
52 1.1 cgd #include <nlist.h>
53 1.6 cgd #include <stdio.h>
54 1.17 simonb #include <stddef.h>
55 1.1 cgd #include <stdlib.h>
56 1.5 jtc #include <unistd.h>
57 1.6 cgd #include <vis.h>
58 1.1 cgd
59 1.20 simonb #ifndef SMALL
60 1.1 cgd struct nlist nl[] = {
61 1.6 cgd #define X_MSGBUF 0
62 1.1 cgd { "_msgbufp" },
63 1.1 cgd { NULL },
64 1.1 cgd };
65 1.20 simonb #endif
66 1.1 cgd
67 1.18 simonb int main(int, char *[]);
68 1.18 simonb void usage(void);
69 1.1 cgd
70 1.6 cgd #define KREAD(addr, var) \
71 1.6 cgd kvm_read(kd, addr, &var, sizeof(var)) != sizeof(var)
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.14 enami int ch, newl, skip, i;
78 1.20 simonb char *p, *bufdata;
79 1.20 simonb #ifndef SMALL
80 1.20 simonb char *memf, *nlistf;
81 1.20 simonb #endif
82 1.6 cgd char buf[5];
83 1.1 cgd
84 1.20 simonb #ifndef SMALL
85 1.6 cgd memf = nlistf = NULL;
86 1.11 lukem while ((ch = getopt(argc, argv, "M:N:")) != -1)
87 1.1 cgd switch(ch) {
88 1.1 cgd case 'M':
89 1.6 cgd memf = optarg;
90 1.1 cgd break;
91 1.1 cgd case 'N':
92 1.6 cgd nlistf = optarg;
93 1.1 cgd break;
94 1.1 cgd case '?':
95 1.1 cgd default:
96 1.1 cgd usage();
97 1.1 cgd }
98 1.1 cgd argc -= optind;
99 1.1 cgd argv += optind;
100 1.1 cgd
101 1.19 simonb if (memf == NULL) {
102 1.20 simonb #endif
103 1.17 simonb size_t size;
104 1.17 simonb int mib[2];
105 1.17 simonb
106 1.17 simonb mib[0] = CTL_KERN;
107 1.17 simonb mib[1] = KERN_MSGBUF;
108 1.17 simonb
109 1.17 simonb if (sysctl(mib, 2, NULL, &size, NULL, 0) == -1)
110 1.17 simonb errx(1, "can't get size of msgbuf");
111 1.17 simonb
112 1.17 simonb if ((bufdata = malloc(size)) == NULL)
113 1.17 simonb err(1, "couldn't allocate space for buffer data");
114 1.17 simonb
115 1.17 simonb if (sysctl(mib, 2, bufdata, &size, NULL, 0) == -1)
116 1.17 simonb err(1, "can't get msgbuf");
117 1.17 simonb
118 1.17 simonb /* make a dummy struct msgbuf for the display logic */
119 1.17 simonb cur.msg_bufx = cur.msg_bufs = size;
120 1.20 simonb #ifndef SMALL
121 1.17 simonb } else {
122 1.17 simonb kvm_t *kd;
123 1.17 simonb struct kern_msgbuf *bufp;
124 1.17 simonb
125 1.17 simonb /*
126 1.17 simonb * Read in message buffer header and data, and do sanity
127 1.17 simonb * checks.
128 1.17 simonb */
129 1.17 simonb kd = kvm_open(nlistf, memf, NULL, O_RDONLY, "dmesg");
130 1.17 simonb if (kd == NULL)
131 1.17 simonb exit (1);
132 1.17 simonb if (kvm_nlist(kd, nl) == -1)
133 1.17 simonb errx(1, "kvm_nlist: %s", kvm_geterr(kd));
134 1.17 simonb if (nl[X_MSGBUF].n_type == 0)
135 1.17 simonb errx(1, "%s: msgbufp not found", nlistf ? nlistf :
136 1.17 simonb "namelist");
137 1.17 simonb if (KREAD(nl[X_MSGBUF].n_value, bufp))
138 1.17 simonb errx(1, "kvm_read: %s (0x%lx)", kvm_geterr(kd),
139 1.17 simonb nl[X_MSGBUF].n_value);
140 1.17 simonb if (kvm_read(kd, (long)bufp, &cur,
141 1.17 simonb offsetof(struct kern_msgbuf, msg_bufc)) !=
142 1.17 simonb offsetof(struct kern_msgbuf, msg_bufc))
143 1.17 simonb errx(1, "kvm_read: %s (0x%lx)", kvm_geterr(kd),
144 1.17 simonb (unsigned long)bufp);
145 1.17 simonb if (cur.msg_magic != MSG_MAGIC)
146 1.17 simonb errx(1, "magic number incorrect");
147 1.17 simonb bufdata = malloc(cur.msg_bufs);
148 1.17 simonb if (bufdata == NULL)
149 1.17 simonb errx(1, "couldn't allocate space for buffer data");
150 1.17 simonb if (kvm_read(kd, (long)&bufp->msg_bufc, bufdata,
151 1.17 simonb cur.msg_bufs) != cur.msg_bufs)
152 1.17 simonb errx(1, "kvm_read: %s", kvm_geterr(kd));
153 1.17 simonb kvm_close(kd);
154 1.17 simonb if (cur.msg_bufx >= cur.msg_bufs)
155 1.17 simonb cur.msg_bufx = 0;
156 1.17 simonb }
157 1.20 simonb #endif
158 1.1 cgd
159 1.1 cgd /*
160 1.14 enami * The message buffer is circular; start at the write pointer
161 1.14 enami * (which points the oldest character), and go to the write
162 1.14 enami * pointer - 1 (which points the newest character). I.e, loop
163 1.14 enami * over cur.msg_bufs times. Unused area is skipped since it
164 1.14 enami * contains nul.
165 1.1 cgd */
166 1.14 enami for (newl = skip = i = 0, p = bufdata + cur.msg_bufx;
167 1.14 enami i < cur.msg_bufs; i++, p++) {
168 1.12 leo if (p == bufdata + cur.msg_bufs)
169 1.12 leo p = bufdata;
170 1.1 cgd ch = *p;
171 1.1 cgd /* Skip "\n<.*>" syslog sequences. */
172 1.1 cgd if (skip) {
173 1.1 cgd if (ch == '>')
174 1.1 cgd newl = skip = 0;
175 1.1 cgd continue;
176 1.1 cgd }
177 1.1 cgd if (newl && ch == '<') {
178 1.1 cgd skip = 1;
179 1.1 cgd continue;
180 1.1 cgd }
181 1.1 cgd if (ch == '\0')
182 1.1 cgd continue;
183 1.6 cgd newl = ch == '\n';
184 1.21 augustss (void)vis(buf, ch, VIS_NOSLASH, 0);
185 1.6 cgd if (buf[1] == 0)
186 1.6 cgd (void)putchar(buf[0]);
187 1.6 cgd else
188 1.6 cgd (void)printf("%s", buf);
189 1.12 leo }
190 1.1 cgd if (!newl)
191 1.1 cgd (void)putchar('\n');
192 1.1 cgd exit(0);
193 1.1 cgd }
194 1.1 cgd
195 1.1 cgd void
196 1.18 simonb usage(void)
197 1.1 cgd {
198 1.15 enami
199 1.20 simonb #ifdef SMALL
200 1.20 simonb (void)fprintf(stderr, "usage: dmesg\n");
201 1.20 simonb #else
202 1.1 cgd (void)fprintf(stderr, "usage: dmesg [-M core] [-N system]\n");
203 1.20 simonb #endif
204 1.1 cgd exit(1);
205 1.1 cgd }
206