2 * Copyright (c) 2002 Jake Burkholder
3 * Copyright (c) 2004 Robert Watson
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
31 #include <sys/types.h>
49 "usage: ktrdump [-cfqrt] [-e execfile] [-i ktrfile] [-m corefile] [-o outfile]\n"
54 static void usage(void);
56 static struct nlist nl
[] = {
73 static char corefile
[PATH_MAX
];
74 static char execfile
[PATH_MAX
];
76 static char desc
[SBUFLEN
];
77 static char errbuf
[_POSIX2_LINE_MAX
];
78 static char fbuf
[PATH_MAX
];
79 static char obuf
[PATH_MAX
];
80 static char sbuf
[KTR_PARMS
][SBUFLEN
];
83 * Reads the ktr trace buffer from kernel memory and prints the trace entries.
86 main(int ac
, char **av
)
88 u_long parms
[KTR_PARMS
];
89 struct ktr_entry
*buf
;
90 uintmax_t tlast
, tnow
;
104 * Parse commandline arguments.
107 while ((c
= getopt(ac
, av
, "cfqrte:i:m:o:")) != -1)
113 if (strlcpy(execfile
, optarg
, sizeof(execfile
))
115 errx(1, "%s: File name too long", optarg
);
123 if ((in
= open(optarg
, O_RDONLY
)) == -1)
124 err(1, "%s", optarg
);
127 if (strlcpy(corefile
, optarg
, sizeof(corefile
))
129 errx(1, "%s: File name too long", optarg
);
133 if ((out
= fopen(optarg
, "w")) == NULL
)
134 err(1, "%s", optarg
);
155 * Open our execfile and corefile, resolve needed symbols and read in
158 if ((kd
= kvm_openfiles(eflag
? execfile
: NULL
,
159 mflag
? corefile
: NULL
, NULL
, O_RDONLY
, errbuf
)) == NULL
)
160 errx(1, "%s", errbuf
);
161 if (kvm_nlist(kd
, nl
) != 0 ||
162 kvm_read(kd
, nl
[0].n_value
, &version
, sizeof(version
)) == -1)
163 errx(1, "%s", kvm_geterr(kd
));
164 if (version
!= KTR_VERSION
)
165 errx(1, "ktr version mismatch");
167 if (fstat(in
, &sb
) == -1)
169 entries
= sb
.st_size
/ sizeof(*buf
);
171 buf
= mmap(NULL
, sb
.st_size
, PROT_READ
, MAP_SHARED
, in
, 0);
172 if (buf
== MAP_FAILED
)
175 if (kvm_read(kd
, nl
[1].n_value
, &entries
, sizeof(entries
))
177 errx(1, "%s", kvm_geterr(kd
));
178 if ((buf
= malloc(sizeof(*buf
) * entries
)) == NULL
)
180 if (kvm_read(kd
, nl
[2].n_value
, &index
, sizeof(index
)) == -1 ||
181 kvm_read(kd
, nl
[3].n_value
, buf
, sizeof(*buf
) * entries
)
183 errx(1, "%s", kvm_geterr(kd
));
187 * Print a nice header.
190 fprintf(out
, "%-6s ", "index");
192 fprintf(out
, "%-3s ", "cpu");
194 fprintf(out
, "%-16s ", "timestamp");
196 fprintf(out
, "%-40s ", "file and line");
197 fprintf(out
, "%s", "trace");
200 fprintf(out
, "------ ");
202 fprintf(out
, "--- ");
204 fprintf(out
, "---------------- ");
207 "---------------------------------------- ");
208 fprintf(out
, "----- ");
213 * Now tear through the trace buffer.
216 i
= (index
- 1) & (entries
- 1);
219 if (buf
[i
].ktr_desc
== NULL
)
221 if (kvm_read(kd
, (u_long
)buf
[i
].ktr_desc
, desc
,
223 errx(1, "%s", kvm_geterr(kd
));
224 desc
[sizeof(desc
) - 1] = '\0';
226 for (p
= desc
; (c
= *p
++) != '\0';) {
229 next
: if ((c
= *p
++) == '\0')
231 if (parm
== KTR_PARMS
)
232 errx(1, "too many parameters");
234 case '0': case '1': case '2': case '3': case '4':
235 case '5': case '6': case '7': case '8': case '9':
236 case '#': case '-': case ' ': case '+': case '\'':
237 case 'h': case 'l': case 'j': case 't': case 'z':
238 case 'q': case 'L': case '.':
241 if (kvm_read(kd
, (u_long
)buf
[i
].ktr_parms
[parm
],
242 sbuf
[parm
], sizeof(sbuf
[parm
])) == -1)
243 strcpy(sbuf
[parm
], "(null)");
244 sbuf
[parm
][sizeof(sbuf
[0]) - 1] = '\0';
245 parms
[parm
] = (u_long
)sbuf
[parm
];
249 parms
[parm
] = buf
[i
].ktr_parms
[parm
];
254 fprintf(out
, "%6d ", i
);
256 fprintf(out
, "%3d ", buf
[i
].ktr_cpu
);
258 tnow
= (uintmax_t)buf
[i
].ktr_timestamp
;
262 fprintf(out
, "%16ju ", !iflag
? tlast
- tnow
:
266 fprintf(out
, "%16ju ", tnow
);
269 if (kvm_read(kd
, (u_long
)buf
[i
].ktr_file
, fbuf
,
271 strcpy(fbuf
, "(null)");
272 snprintf(obuf
, sizeof(obuf
), "%s:%d", fbuf
,
274 fprintf(out
, "%-40s ", obuf
);
276 fprintf(out
, desc
, parms
[0], parms
[1], parms
[2], parms
[3],
282 i
= (i
- 1) & (entries
- 1);
296 fprintf(stderr
, USAGE
);