Merge branch 'vendor/EE'
[dragonfly.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  * 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.
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  * @(#) 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 $
32  */
33
34 #include <sys/types.h>
35 #include <sys/msgbuf.h>
36 #include <sys/sysctl.h>
37
38 #include <err.h>
39 #include <fcntl.h>
40 #include <kvm.h>
41 #include <locale.h>
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <unistd.h>
45 #include <vis.h>
46 #include <sys/syslog.h>
47
48 struct nlist nl[] = {
49 #define X_MSGBUF        0
50         { "_msgbufp",   0, 0, 0, 0 },
51         { NULL,         0, 0, 0, 0 },
52 };
53
54 static void dumpbuf(char *bp, size_t bufpos, size_t buflen,
55                     int *newl, int *skip, int *pri);
56 void usage(void);
57
58 #define KREAD(addr, var) \
59         kvm_read(kd, addr, &var, sizeof(var)) != sizeof(var)
60
61 #define INCRBUFSIZE     65536
62
63 int all_opt;
64
65 int
66 main(int argc, char **argv)
67 {
68         int newl, skip;
69         struct msgbuf *bufp, cur;
70         char *bp, *memf, *nlistf;
71         kvm_t *kd;
72         int ch;
73         int clear = 0;
74         int pri = 0;
75         int tailmode = 0;
76         unsigned int rindex;
77         size_t buflen, bufpos;
78
79         setlocale(LC_CTYPE, "");
80         memf = nlistf = NULL;
81         while ((ch = getopt(argc, argv, "acfM:N:")) != -1) {
82                 switch(ch) {
83                 case 'a':
84                         all_opt++;
85                         break;
86                 case 'c':
87                         clear = 1;
88                         break;
89                 case 'f':
90                         tailmode = 1;
91                         break;
92                 case 'M':
93                         memf = optarg;
94                         break;
95                 case 'N':
96                         nlistf = optarg;
97                         break;
98                 case '?':
99                 default:
100                         usage();
101                 }
102         }
103         argc -= optind;
104         argv += optind;
105
106         newl = 0;
107         skip = 0;
108         pri = 0;
109
110         if (memf == NULL && nlistf == NULL && tailmode == 0) {
111                 /* Running kernel. Use sysctl. */
112                 if (sysctlbyname("kern.msgbuf", NULL, &buflen, NULL, 0) == -1)
113                         err(1, "sysctl kern.msgbuf");
114                 buflen += 4096;         /* add some slop */
115                 if ((bp = malloc(buflen)) == NULL)
116                         errx(1, "malloc failed");
117                 if (sysctlbyname("kern.msgbuf", bp, &buflen, NULL, 0) == -1)
118                         err(1, "sysctl kern.msgbuf");
119                 /* We get a dewrapped buffer using sysctl. */
120                 bufpos = 0;
121                 dumpbuf(bp, bufpos, buflen, &newl, &skip, &pri);
122         } else {
123                 /* Read in kernel message buffer, 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                 bp = malloc(INCRBUFSIZE);
133                 if (!bp)
134                         errx(1, "malloc failed");
135                 if (KREAD(nl[X_MSGBUF].n_value, bufp))
136                         errx(1, "kvm_read: %s", kvm_geterr(kd));
137                 if (KREAD((long)bufp, cur))
138                         errx(1, "kvm_read: %s", kvm_geterr(kd));
139                 if (cur.msg_magic != MSG_MAGIC)
140                         errx(1, "kernel message buffer has different magic "
141                             "number");
142
143                 /*
144                  * Start point.  Use rindex == bufx as our end-of-buffer
145                  * indication but for the initial rindex from the kernel
146                  * this means the buffer has cycled and is 100% full.
147                  */
148                 rindex = cur.msg_bufr;
149                 if (rindex == cur.msg_bufx) {
150                         if (++rindex >= cur.msg_size)
151                                 rindex = 0;
152                 }
153
154                 for (;;) {
155                         if (cur.msg_bufx >= rindex)
156                                 buflen = cur.msg_bufx - rindex;
157                         else
158                                 buflen = cur.msg_size - rindex;
159                         if (buflen > INCRBUFSIZE)
160                                 buflen = INCRBUFSIZE;
161                         if (kvm_read(kd, (long)cur.msg_ptr + rindex,
162                                      bp, buflen) != (ssize_t)buflen) {
163                                 errx(1, "kvm_read: %s", kvm_geterr(kd));
164                         }
165                         if (buflen)
166                                 dumpbuf(bp, 0, buflen, &newl, &skip, &pri);
167                         rindex += buflen;
168                         if (rindex >= cur.msg_size)
169                                 rindex = 0;
170                         if (rindex == cur.msg_bufx) {
171                                 if (tailmode == 0)
172                                         break;
173                                 sleep(1);
174                         }
175                         if (KREAD((long)bufp, cur))
176                                 errx(1, "kvm_read: %s", kvm_geterr(kd));
177                 }
178                 kvm_close(kd);
179         }
180         if (!newl)
181                 putchar('\n');
182         if (clear) {
183                 if (sysctlbyname("kern.msgbuf_clear", NULL, NULL,
184                                  &clear, sizeof(int)) != 0) {
185                         err(1, "sysctl kern.msgbuf_clear");
186                 }
187         }
188         return(0);
189 }
190
191 static
192 void
193 dumpbuf(char *bp, size_t bufpos, size_t buflen,
194         int *newl, int *skip, int *pri)
195 {
196         int ch;
197         char *p, *ep;
198         char buf[5];
199
200         /*
201          * The message buffer is circular.  If the buffer has wrapped, the
202          * write pointer points to the oldest data.  Otherwise, the write
203          * pointer points to \0's following the data.  Read the entire
204          * buffer starting at the write pointer and ignore nulls so that
205          * we effectively start at the oldest data.
206          */
207         p = bp + bufpos;
208         ep = (bufpos == 0 ? bp + buflen : p);
209         do {
210                 if (p == bp + buflen)
211                         p = bp;
212                 ch = *p;
213                 /* Skip "\n<.*>" syslog sequences. */
214                 if (*skip) {
215                         if (ch == '\n') {
216                                 *skip = 0;
217                                 *newl = 1;
218                         } if (ch == '>') {
219                                 if (LOG_FAC(*pri) == LOG_KERN || all_opt)
220                                         *newl = *skip = 0;
221                         } else if (ch >= '0' && ch <= '9') {
222                                 *pri *= 10;
223                                 *pri += ch - '0';
224                         }
225                         continue;
226                 }
227                 if (*newl && ch == '<') {
228                         *pri = 0;
229                         *skip = 1;
230                         continue;
231                 }
232                 if (ch == '\0')
233                         continue;
234                 *newl = ch == '\n';
235                 vis(buf, ch, 0, 0);
236                 if (buf[1] == 0)
237                         putchar(buf[0]);
238                 else
239                         printf("%s", buf);
240         } while (++p != ep);
241 }
242
243 void
244 usage(void)
245 {
246         fprintf(stderr, "usage: dmesg [-ac] [-M core] [-N system]\n");
247         exit(1);
248 }