2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#) Copyright (c) 1991, 1993 The Regents of the University of California. All rights reserved.
30 * @(#)dmesg.c 8.1 (Berkeley) 6/5/93
31 * $FreeBSD: src/sbin/dmesg/dmesg.c,v 1.11.2.3 2001/08/08 22:32:15 obrien Exp $
34 #include <sys/types.h>
35 #include <sys/msgbuf.h>
36 #include <sys/sysctl.h>
47 #include <sys/syslog.h>
49 static struct nlist nl
[] = {
51 { "_msgbufp", 0, 0, 0, 0 },
55 static void dumpbuf(char *bp
, size_t bufpos
, size_t buflen
,
56 int *newl
, int *skip
, int *pri
);
57 static void usage(void) __dead2
;
59 #define KREAD(addr, var) \
60 kvm_read(kd, addr, &var, sizeof(var)) != sizeof(var)
62 #define INCRBUFSIZE 65536
67 main(int argc
, char **argv
)
70 struct msgbuf
*bufp
, cur
;
71 char *bp
, *memf
, *nlistf
;
78 size_t buflen
, bufpos
;
81 setlocale(LC_CTYPE
, "");
83 while ((ch
= getopt(argc
, argv
, "acfM:N:n:")) != -1) {
101 kno
= strtol(optarg
, NULL
, 0);
102 asprintf(&memf
, "vmcore.%d", kno
);
103 asprintf(&nlistf
, "kern.%d", kno
);
104 if (stat(memf
, &st
) || stat(nlistf
, &st
)) {
107 asprintf(&memf
, "/var/crash/vmcore.%d", kno
);
108 asprintf(&nlistf
, "/var/crash/kern.%d", kno
);
123 if (memf
== NULL
&& nlistf
== NULL
&& tailmode
== 0) {
124 /* Running kernel. Use sysctl. */
126 if (sysctlbyname("kern.msgbuf", NULL
, &buflen
, NULL
, 0) == -1)
127 err(1, "sysctl kern.msgbuf");
128 if (buflen
== 0) /* can happen if msgbuf was cleared */
131 if ((bp
= malloc(buflen
)) == NULL
)
132 errx(1, "malloc failed");
133 if (sysctlbyname("kern.msgbuf", bp
, &buflen
, NULL
, 0) == -1)
134 err(1, "sysctl kern.msgbuf");
135 /* We get a dewrapped buffer using sysctl. */
137 dumpbuf(bp
, bufpos
, buflen
, &newl
, &skip
, &pri
);
145 /* Read in kernel message buffer, do sanity checks. */
146 kd
= kvm_open(nlistf
, memf
, NULL
, O_RDONLY
, "dmesg");
149 if (kvm_nlist(kd
, nl
) == -1)
150 errx(1, "kvm_nlist: %s", kvm_geterr(kd
));
151 if (nl
[X_MSGBUF
].n_type
== 0)
152 errx(1, "%s: msgbufp not found",
153 nlistf
? nlistf
: "namelist");
154 bp
= malloc(INCRBUFSIZE
);
156 errx(1, "malloc failed");
157 if (KREAD(nl
[X_MSGBUF
].n_value
, bufp
))
158 errx(1, "kvm_read: %s", kvm_geterr(kd
));
159 if (KREAD((long)bufp
, cur
))
160 errx(1, "kvm_read: %s", kvm_geterr(kd
));
161 if (cur
.msg_magic
!= MSG_MAGIC
&& cur
.msg_magic
!= MSG_OMAGIC
)
162 errx(1, "kernel message buffer has different magic "
166 * NOTE: current algorithm is compatible with both old and
167 * new msgbuf structures. The new structure doesn't
168 * modulo the indexes (so we do), and adds a separate
169 * log index which we don't access here.
172 rindex
= cur
.msg_bufr
;
176 * Calculate index for dump and do sanity clipping.
178 xindex
= cur
.msg_bufx
;
180 if (n
> cur
.msg_size
- 1024) {
181 rindex
= xindex
- cur
.msg_size
+ 2048;
184 ri
= rindex
% cur
.msg_size
;
185 xi
= xindex
% cur
.msg_size
;
190 buflen
= cur
.msg_size
- ri
;
193 if (buflen
> INCRBUFSIZE
)
194 buflen
= INCRBUFSIZE
;
196 if (kvm_read(kd
, (long)cur
.msg_ptr
+ ri
,
197 bp
, buflen
) != (ssize_t
)buflen
) {
198 errx(1, "kvm_read: %s", kvm_geterr(kd
));
201 dumpbuf(bp
, 0, buflen
, &newl
, &skip
, &pri
);
202 ri
= (ri
+ buflen
) % cur
.msg_size
;
212 if (KREAD((long)bufp
, cur
))
213 errx(1, "kvm_read: %s", kvm_geterr(kd
));
220 if (sysctlbyname("kern.msgbuf_clear", NULL
, NULL
,
221 &clear
, sizeof(int)) != 0) {
222 err(1, "sysctl kern.msgbuf_clear");
230 dumpbuf(char *bp
, size_t bufpos
, size_t buflen
,
231 int *newl
, int *skip
, int *pri
)
238 * The message buffer is circular. If the buffer has wrapped, the
239 * write pointer points to the oldest data. Otherwise, the write
240 * pointer points to \0's following the data. Read the entire
241 * buffer starting at the write pointer and ignore nulls so that
242 * we effectively start at the oldest data.
245 ep
= (bufpos
== 0 ? bp
+ buflen
: p
);
247 if (p
== bp
+ buflen
)
250 /* Skip "\n<.*>" syslog sequences. */
256 if (LOG_FAC(*pri
) == LOG_KERN
)
258 } else if (ch
>= '0' && ch
<= '9') {
264 if (*newl
&& ch
== '<' && all_opt
== 0) {
271 *newl
= (ch
== '\n');
272 vis(buf
, ch
, VIS_NOSLASH
, 0);
283 fprintf(stderr
, "usage: dmesg [-ac] [-M core] [-N system]\n");