]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sbin/dmesg/dmesg.c
MFC r324538
[FreeBSD/stable/9.git] / sbin / dmesg / dmesg.c
1 /*-
2  * Copyright (c) 1991, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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  * 4. 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.
16  *
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
27  * SUCH DAMAGE.
28  */
29
30 #if 0
31 #ifndef lint
32 static const char copyright[] =
33 "@(#) Copyright (c) 1991, 1993\n\
34         The Regents of the University of California.  All rights reserved.\n";
35 #endif /* not lint */
36
37 #ifndef lint
38 static const char sccsid[] = "@(#)dmesg.c       8.1 (Berkeley) 6/5/93";
39 #endif /* not lint */
40 #endif
41 #include <sys/cdefs.h>
42 __FBSDID("$FreeBSD$");
43
44 #include <sys/types.h>
45 #include <sys/msgbuf.h>
46 #include <sys/sysctl.h>
47
48 #include <ctype.h>
49 #include <err.h>
50 #include <errno.h>
51 #include <fcntl.h>
52 #include <kvm.h>
53 #include <limits.h>
54 #include <locale.h>
55 #include <nlist.h>
56 #include <stdio.h>
57 #include <stdlib.h>
58 #include <string.h>
59 #include <unistd.h>
60 #include <vis.h>
61 #include <sys/syslog.h>
62
63 char s_msgbufp[] = "_msgbufp";
64
65 struct nlist nl[] = {
66 #define X_MSGBUF        0
67         { s_msgbufp, 0, 0, 0, 0 },
68         { NULL, 0, 0, 0, 0 },
69 };
70
71 void usage(void) __dead2;
72
73 #define KREAD(addr, var) \
74         kvm_read(kd, addr, &var, sizeof(var)) != sizeof(var)
75
76 int
77 main(int argc, char *argv[])
78 {
79         struct msgbuf *bufp, cur;
80         char *bp, *ep, *memf, *nextp, *nlistf, *p, *q, *visbp;
81         kvm_t *kd;
82         size_t buflen, bufpos;
83         long pri;
84         int all, ch;
85
86         all = 0;
87         (void) setlocale(LC_CTYPE, "");
88         memf = nlistf = NULL;
89         while ((ch = getopt(argc, argv, "aM:N:")) != -1)
90                 switch(ch) {
91                 case 'a':
92                         all++;
93                         break;
94                 case 'M':
95                         memf = optarg;
96                         break;
97                 case 'N':
98                         nlistf = optarg;
99                         break;
100                 case '?':
101                 default:
102                         usage();
103                 }
104         argc -= optind;
105         if (argc != 0)
106                 usage();
107
108         if (memf == NULL) {
109                 /*
110                  * Running kernel.  Use sysctl.  This gives an unwrapped
111                  * buffer as a side effect.
112                  */
113                 if (sysctlbyname("kern.msgbuf", NULL, &buflen, NULL, 0) == -1)
114                         err(1, "sysctl kern.msgbuf");
115                 /* Allocate extra room for growth between the sysctl calls. */
116                 buflen += buflen/8;
117                 /* Allocate more than sysctl sees, for room to append \n\0. */
118                 if ((bp = malloc(buflen + 2)) == NULL)
119                         errx(1, "malloc failed");
120                 if (sysctlbyname("kern.msgbuf", bp, &buflen, NULL, 0) == -1)
121                         err(1, "sysctl kern.msgbuf");
122         } else {
123                 /* Read in kernel message buffer and do sanity checks. */
124                 kd = kvm_open(nlistf, memf, NULL, O_RDONLY, "dmesg");
125                 if (kd == NULL)
126                         exit (1);
127                 if (kvm_nlist(kd, nl) == -1)
128                         errx(1, "kvm_nlist: %s", kvm_geterr(kd));
129                 if (nl[X_MSGBUF].n_type == 0)
130                         errx(1, "%s: msgbufp not found",
131                             nlistf ? nlistf : "namelist");
132                 if (KREAD(nl[X_MSGBUF].n_value, bufp) || KREAD((long)bufp, cur))
133                         errx(1, "kvm_read: %s", kvm_geterr(kd));
134                 if (cur.msg_magic != MSG_MAGIC)
135                         errx(1, "kernel message buffer has different magic "
136                             "number");
137                 if ((bp = malloc(cur.msg_size + 2)) == NULL)
138                         errx(1, "malloc failed");
139
140                 /* Unwrap the circular buffer to start from the oldest data. */
141                 bufpos = MSGBUF_SEQ_TO_POS(&cur, cur.msg_wseq);
142                 if (kvm_read(kd, (long)&cur.msg_ptr[bufpos], bp,
143                     cur.msg_size - bufpos) != (ssize_t)(cur.msg_size - bufpos))
144                         errx(1, "kvm_read: %s", kvm_geterr(kd));
145                 if (bufpos != 0 && kvm_read(kd, (long)cur.msg_ptr,
146                     &bp[cur.msg_size - bufpos], bufpos) != (ssize_t)bufpos)
147                         errx(1, "kvm_read: %s", kvm_geterr(kd));
148                 kvm_close(kd);
149                 buflen = cur.msg_size;
150         }
151
152         /*
153          * Ensure that the buffer ends with a newline and a \0 to avoid
154          * complications below.  We left space above.
155          */
156         if (buflen == 0 || bp[buflen - 1] != '\n')
157                 bp[buflen++] = '\n';
158         bp[buflen] = '\0';
159
160         if ((visbp = malloc(4 * buflen + 1)) == NULL)
161                 errx(1, "malloc failed");
162
163         /*
164          * The message buffer is circular, but has been unwrapped so that
165          * the oldest data comes first.  The data will be preceded by \0's
166          * if the message buffer was not full.
167          */
168         p = bp;
169         ep = &bp[buflen];
170         if (*p == '\0') {
171                 /* Strip leading \0's */
172                 while (*p == '\0')
173                         p++;
174         } else if (!all) {
175                 /* Skip the first line, since it is probably incomplete. */
176                 p = memchr(p, '\n', ep - p);
177                 p++;
178         }
179         for (; p < ep; p = nextp) {
180                 nextp = memchr(p, '\n', ep - p);
181                 nextp++;
182
183                 /* Skip ^<[0-9]+> syslog sequences. */
184                 if (*p == '<' && isdigit(*(p+1))) {
185                         errno = 0;
186                         pri = strtol(p + 1, &q, 10);
187                         if (*q == '>' && pri >= 0 && pri < INT_MAX &&
188                             errno == 0) {
189                                 if (LOG_FAC(pri) != LOG_KERN && !all)
190                                         continue;
191                                 p = q + 1;
192                         }
193                 }
194
195                 (void)strvisx(visbp, p, nextp - p, 0);
196                 (void)printf("%s", visbp);
197         }
198         exit(0);
199 }
200
201 void
202 usage(void)
203 {
204         (void)fprintf(stderr, "usage: dmesg [-a] [-M core [-N system]]\n");
205         exit(1);
206 }