1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
|
/* $OpenBSD: kdump.c,v 1.54 2011/07/07 06:39:48 otto Exp $ */
/*-
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/param.h>
#include <sys/time.h>
#include <sys/uio.h>
#include <sys/ktrace.h>
#include <sys/ioctl.h>
#include <sys/ptrace.h>
#include <sys/socket.h>
#include <sys/sysctl.h>
#define _KERNEL
#include <sys/errno.h>
#undef _KERNEL
#include <ctype.h>
#include <err.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <vis.h>
#include "ktrace.h"
#include "kdump.h"
#include "kdump_subr.h"
#include "extern.h"
int timestamp, decimal, iohex, fancy = 1, tail, maxdata;
char *tracefile = DEF_TRACEFILE;
struct ktr_header ktr_header;
pid_t pid = -1;
#define eqs(s1, s2) (strcmp((s1), (s2)) == 0)
#include <sys/syscall.h>
#include <compat/linux/linux_syscall.h>
#define KTRACE
#define PTRACE
#define NFSCLIENT
#define NFSSERVER
#define SYSVSEM
#define SYSVMSG
#define SYSVSHM
#define LFS
#include <kern/syscalls.c>
#include <compat/linux/linux_syscalls.c>
#undef KTRACE
#undef PTRACE
#undef NFSCLIENT
#undef NFSSERVER
#undef SYSVSEM
#undef SYSVMSG
#undef SYSVSHM
#undef LFS
struct emulation {
char *name; /* Emulation name */
char **sysnames; /* Array of system call names */
int nsysnames; /* Number of */
};
static struct emulation emulations[] = {
{ "native", syscallnames, SYS_MAXSYSCALL },
{ "linux", linux_syscallnames, LINUX_SYS_MAXSYSCALL },
{ NULL, NULL, 0 }
};
struct emulation *current;
static char *ptrace_ops[] = {
"PT_TRACE_ME", "PT_READ_I", "PT_READ_D", "PT_READ_U",
"PT_WRITE_I", "PT_WRITE_D", "PT_WRITE_U", "PT_CONTINUE",
"PT_KILL", "PT_ATTACH", "PT_DETACH", "PT_IO",
};
static int narg;
static register_t *ap;
static char sep;
static int fread_tail(void *, size_t, size_t);
static void dumpheader(struct ktr_header *);
static void ktrcsw(struct ktr_csw *);
static void ktremul(char *, size_t);
static void ktrgenio(struct ktr_genio *, size_t);
static void ktrnamei(const char *, size_t);
static void ktrpsig(struct ktr_psig *);
static void ktrsyscall(struct ktr_syscall *);
static void ktrsysret(struct ktr_sysret *);
static void setemul(const char *);
static void usage(void);
int
main(int argc, char *argv[])
{
int ch, silent;
size_t ktrlen, size;
int trpoints = ALL_POINTS;
void *m;
current = &emulations[0]; /* native */
while ((ch = getopt(argc, argv, "e:f:dlm:nRp:Tt:xX")) != -1)
switch (ch) {
case 'e':
setemul(optarg);
break;
case 'f':
tracefile = optarg;
break;
case 'd':
decimal = 1;
break;
case 'l':
tail = 1;
break;
case 'm':
maxdata = atoi(optarg);
break;
case 'n':
fancy = 0;
break;
case 'p':
pid = atoi(optarg);
break;
case 'R':
timestamp = 2; /* relative timestamp */
break;
case 'T':
timestamp = 1;
break;
case 't':
trpoints = getpoints(optarg);
if (trpoints < 0)
errx(1, "unknown trace point in %s", optarg);
break;
case 'x':
iohex = 1;
break;
case 'X':
iohex = 2;
break;
default:
usage();
}
if (argc > optind)
usage();
m = malloc(size = 1025);
if (m == NULL)
err(1, NULL);
if (!freopen(tracefile, "r", stdin))
err(1, "%s", tracefile);
while (fread_tail(&ktr_header, sizeof(struct ktr_header), 1)) {
silent = 0;
if (pid != -1 && pid != ktr_header.ktr_pid)
silent = 1;
if (silent == 0 && trpoints & (1<<ktr_header.ktr_type))
dumpheader(&ktr_header);
ktrlen = ktr_header.ktr_len;
if (ktrlen > size) {
void *newm;
newm = realloc(m, ktrlen+1);
if (newm == NULL)
err(1, NULL);
m = newm;
size = ktrlen;
}
if (ktrlen && fread_tail(m, ktrlen, 1) == 0)
errx(1, "data too short");
if (silent)
continue;
if ((trpoints & (1<<ktr_header.ktr_type)) == 0)
continue;
switch (ktr_header.ktr_type) {
case KTR_SYSCALL:
ktrsyscall((struct ktr_syscall *)m);
break;
case KTR_SYSRET:
ktrsysret((struct ktr_sysret *)m);
break;
case KTR_NAMEI:
ktrnamei(m, ktrlen);
break;
case KTR_GENIO:
ktrgenio((struct ktr_genio *)m, ktrlen);
break;
case KTR_PSIG:
ktrpsig((struct ktr_psig *)m);
break;
case KTR_CSW:
ktrcsw((struct ktr_csw *)m);
break;
case KTR_EMUL:
ktremul(m, ktrlen);
break;
}
if (tail)
(void)fflush(stdout);
}
exit(0);
}
static int
fread_tail(void *buf, size_t size, size_t num)
{
int i;
while ((i = fread(buf, size, num, stdin)) == 0 && tail) {
(void)sleep(1);
clearerr(stdin);
}
return (i);
}
static void
dumpheader(struct ktr_header *kth)
{
static struct timeval prevtime;
char unknown[64], *type;
struct timeval temp;
switch (kth->ktr_type) {
case KTR_SYSCALL:
type = "CALL";
break;
case KTR_SYSRET:
type = "RET ";
break;
case KTR_NAMEI:
type = "NAMI";
break;
case KTR_GENIO:
type = "GIO ";
break;
case KTR_PSIG:
type = "PSIG";
break;
case KTR_CSW:
type = "CSW";
break;
case KTR_EMUL:
type = "EMUL";
break;
default:
(void)snprintf(unknown, sizeof unknown, "UNKNOWN(%d)",
kth->ktr_type);
type = unknown;
}
(void)printf("%6ld %-8.*s ", (long)kth->ktr_pid, MAXCOMLEN,
kth->ktr_comm);
if (timestamp) {
if (timestamp == 2) {
timersub(&kth->ktr_time, &prevtime, &temp);
prevtime = kth->ktr_time;
} else
temp = kth->ktr_time;
(void)printf("%ld.%06ld ", temp.tv_sec, temp.tv_usec);
}
(void)printf("%s ", type);
}
static void
ioctldecode(u_long cmd)
{
char dirbuf[4], *dir = dirbuf;
if (cmd & IOC_IN)
*dir++ = 'W';
if (cmd & IOC_OUT)
*dir++ = 'R';
*dir = '\0';
printf(decimal ? ",_IO%s('%c',%lu" : ",_IO%s('%c',%#lx",
dirbuf, (int)((cmd >> 8) & 0xff), cmd & 0xff);
if ((cmd & IOC_VOID) == 0)
printf(decimal ? ",%lu)" : ",%#lx)", (cmd >> 16) & 0xff);
else
printf(")");
}
static void
ptracedecode(void)
{
if (*ap >= 0 && *ap <
sizeof(ptrace_ops) / sizeof(ptrace_ops[0]))
(void)printf("%s", ptrace_ops[*ap]);
else switch(*ap) {
#ifdef PT_GETFPREGS
case PT_GETFPREGS:
(void)printf("PT_GETFPREGS");
break;
#endif
case PT_GETREGS:
(void)printf("PT_GETREGS");
break;
#ifdef PT_SETFPREGS
case PT_SETFPREGS:
(void)printf("PT_SETFPREGS");
break;
#endif
case PT_SETREGS:
(void)printf("PT_SETREGS");
break;
#ifdef PT_STEP
case PT_STEP:
(void)printf("PT_STEP");
break;
#endif
#ifdef PT_WCOOKIE
case PT_WCOOKIE:
(void)printf("PT_WCOOKIE");
break;
#endif
default:
(void)printf("%ld", (long)*ap);
break;
}
sep = ',';
ap++;
narg--;
}
static void
pn(void (*f)(int))
{
if (sep)
(void)putchar(sep);
if (fancy && f != NULL)
f((int)*ap);
else if (decimal)
(void)printf("%ld", (long)*ap);
else
(void)printf("%#lx", (long)*ap);
ap++;
narg--;
sep = ',';
}
#ifdef __LP64__
#define plln() pn(NULL)
#elif _BYTE_ORDER == _LITTLE_ENDIAN
static void
plln(void)
{
long long val = ((long long)*ap) & 0xffffffff;
ap++;
val |= ((long long)*ap) << 32;
ap++;
narg -= 2;
if (sep)
(void)putchar(sep);
if (decimal)
(void)printf("%lld", val);
else
(void)printf("%#llx", val);
sep = ',';
}
#else
static void
plln(void)
{
long long val = ((long long)*ap) << 32;
ap++;
val |= ((long long)*ap) & 0xffffffff;
ap++;
narg -= 2;
if (sep)
(void)putchar(sep);
if (decimal)
(void)printf("%lld", val);
else
(void)printf("%#llx", val);
sep = ',';
}
#endif
static void
ktrsyscall(struct ktr_syscall *ktr)
{
narg = ktr->ktr_argsize / sizeof(register_t);
sep = '\0';
if (ktr->ktr_code >= current->nsysnames || ktr->ktr_code < 0)
(void)printf("[%d]", ktr->ktr_code);
else
(void)printf("%s", current->sysnames[ktr->ktr_code]);
ap = (register_t *)((char *)ktr + sizeof(struct ktr_syscall));
(void)putchar('(');
if (current != &emulations[0])
goto nonnative;
switch (ktr->ktr_code) {
case SYS_ioctl: {
const char *cp;
pn(NULL);
if (!fancy)
break;
if ((cp = ioctlname(*ap)) != NULL)
(void)printf(",%s", cp);
else
ioctldecode(*ap);
ap++;
narg--;
break;
}
case SYS___sysctl: {
int *np, n;
if (!fancy)
break;
n = ap[1];
if (n > CTL_MAXNAME)
n = CTL_MAXNAME;
np = (int *)(ap + 6);
for (; n--; np++) {
if (sep)
putchar(sep);
printf("%d", *np);
sep = '.';
}
sep = ',';
ap += 2;
narg -= 2;
break;
}
case SYS_ptrace:
if (!fancy)
break;
ptracedecode();
break;
case SYS_access:
pn(NULL);
pn(accessmodename);
break;
case SYS_chmod:
case SYS_fchmod:
pn( NULL);
pn(modename);
break;
case SYS_fcntl: {
int cmd;
int arg;
pn(NULL);
if (!fancy)
break;
cmd = ap[0];
arg = ap[1];
(void)putchar(',');
fcntlcmdname(cmd, arg);
ap += 2;
narg -= 2;
break;
}
case SYS_flock:
pn(NULL);
pn(flockname);
break;
case SYS_getrlimit:
case SYS_setrlimit:
pn(rlimitname);
break;
case SYS_getsockopt:
case SYS_setsockopt: {
int level;
pn(NULL);
level = *ap;
pn(sockoptlevelname);
if (level == SOL_SOCKET)
pn(sockoptname);
break;
}
case SYS_kill:
pn(NULL);
pn(signame);
break;
case SYS_lseek:
pn(NULL);
/* skip padding */
ap++;
narg--;
plln();
pn(whencename);
break;
case SYS_madvise:
pn(NULL);
pn(NULL);
pn(madvisebehavname);
break;
case SYS_minherit:
pn(NULL);
pn(NULL);
pn(minheritname);
break;
case SYS_mlockall:
pn(mlockallname);
break;
case SYS_mmap:
pn(NULL);
pn(NULL);
pn(mmapprotname);
pn(mmapflagsname);
pn(NULL);
/* skip padding */
ap++;
narg--;
plln();
break;
case SYS_mprotect:
pn(NULL);
pn(NULL);
pn(mmapprotname);
break;
case SYS_mquery:
pn(NULL);
pn(NULL);
pn(mmapprotname);
pn(mmapflagsname);
pn(NULL);
/* skip padding */
ap++;
narg--;
plln();
break;
case SYS_msync:
pn(NULL);
pn(NULL);
pn(msyncflagsname);
break;
case SYS_msgctl:
pn(NULL);
pn(shmctlname);
break;
case SYS_open: {
int flags;
int mode;
pn(NULL);
if (!fancy)
break;
flags = ap[0];
mode = ap[1];
(void)putchar(',');
flagsandmodename(flags, mode);
ap += 2;
narg -= 2;
break;
}
case SYS_pread:
case SYS_preadv:
case SYS_pwrite:
case SYS_pwritev:
pn(NULL);
pn(NULL);
pn(NULL);
/* skip padding */
ap++;
narg--;
plln();
break;
case SYS_recvmsg:
case SYS_sendmsg:
pn(NULL);
pn(NULL);
pn(sendrecvflagsname);
break;
case SYS_recvfrom:
case SYS_sendto:
pn(NULL);
pn(NULL);
pn(NULL);
pn(sendrecvflagsname);
break;
case SYS___semctl:
pn(NULL);
pn(NULL);
pn(semctlname);
break;
case SYS_semget:
pn(NULL);
pn(NULL);
pn(semgetname);
break;
case SYS_shmat:
pn(NULL);
pn(NULL);
pn(shmatname);
break;
case SYS_shmctl:
pn(NULL);
pn(shmctlname);
break;
case SYS_sigaction:
pn(signame);
break;
case SYS_sigprocmask:
pn(sigprocmaskhowname);
break;
case SYS_socket: {
int sockdomain = *ap;
pn(sockdomainname);
pn(socktypename);
if (sockdomain == PF_INET || sockdomain == PF_INET6)
pn(sockipprotoname);
break;
}
case SYS_socketpair:
pn(sockdomainname);
pn(socktypename);
break;
case SYS_truncate:
case SYS_ftruncate:
pn(NULL);
/* skip padding */
ap++;
narg--;
plln();
break;
case SYS_wait4:
pn(NULL);
pn(NULL);
pn(wait4optname);
break;
}
nonnative:
while (narg) {
if (sep)
putchar(sep);
if (decimal)
(void)printf("%ld", (long)*ap);
else
(void)printf("%#lx", (long)*ap);
sep = ',';
ap++;
narg--;
}
(void)printf(")\n");
}
static void
ktrsysret(struct ktr_sysret *ktr)
{
register_t ret = ktr->ktr_retval;
int error = ktr->ktr_error;
int code = ktr->ktr_code;
if (code >= current->nsysnames || code < 0)
(void)printf("[%d] ", code);
else
(void)printf("%s ", current->sysnames[code]);
if (error == 0) {
if (fancy) {
(void)printf("%ld", (long)ret);
if (ret < 0 || ret > 9)
(void)printf("/%#lx", (long)ret);
} else {
if (decimal)
(void)printf("%ld", (long)ret);
else
(void)printf("%#lx", (long)ret);
}
} else if (error == ERESTART)
(void)printf("RESTART");
else if (error == EJUSTRETURN)
(void)printf("JUSTRETURN");
else {
(void)printf("-1 errno %d", ktr->ktr_error);
if (fancy)
(void)printf(" %s", strerror(ktr->ktr_error));
}
(void)putchar('\n');
}
static void
ktrnamei(const char *cp, size_t len)
{
(void)printf("\"%.*s\"\n", (int)len, cp);
}
static void
ktremul(char *cp, size_t len)
{
char name[1024];
if (len >= sizeof(name))
errx(1, "Emulation name too long");
strncpy(name, cp, len);
name[len] = '\0';
(void)printf("\"%s\"\n", name);
setemul(name);
}
static void
ktrgenio(struct ktr_genio *ktr, size_t len)
{
unsigned char *dp = (unsigned char *)ktr + sizeof(struct ktr_genio);
int i, j;
size_t datalen = len - sizeof(struct ktr_genio);
static int screenwidth = 0;
int col = 0, width, bpl;
unsigned char visbuf[5], *cp, c;
if (screenwidth == 0) {
struct winsize ws;
if (fancy && ioctl(fileno(stderr), TIOCGWINSZ, &ws) != -1 &&
ws.ws_col > 8)
screenwidth = ws.ws_col;
else
screenwidth = 80;
}
printf("fd %d %s %zu bytes\n", ktr->ktr_fd,
ktr->ktr_rw == UIO_READ ? "read" : "wrote", datalen);
if (maxdata && datalen > maxdata)
datalen = maxdata;
if (iohex && !datalen)
return;
if (iohex == 1) {
putchar('\t');
col = 8;
for (i = 0; i < datalen; i++) {
printf("%02x", dp[i]);
col += 3;
if (i < datalen - 1) {
if (col + 3 > screenwidth) {
printf("\n\t");
col = 8;
} else
putchar(' ');
}
}
putchar('\n');
return;
}
if (iohex == 2) {
bpl = (screenwidth - 13)/4;
if (bpl <= 0)
bpl = 1;
for (i = 0; i < datalen; i += bpl) {
printf(" %04x: ", i);
for (j = 0; j < bpl; j++) {
if (i+j >= datalen)
printf(" ");
else
printf("%02x ", dp[i+j]);
}
putchar(' ');
for (j = 0; j < bpl; j++) {
if (i+j >= datalen)
break;
c = dp[i+j];
if (!isprint(c))
c = '.';
putchar(c);
}
putchar('\n');
}
return;
}
(void)printf(" \"");
col = 8;
for (; datalen > 0; datalen--, dp++) {
(void)vis(visbuf, *dp, VIS_CSTYLE, *(dp+1));
cp = visbuf;
/*
* Keep track of printables and
* space chars (like fold(1)).
*/
if (col == 0) {
(void)putchar('\t');
col = 8;
}
switch (*cp) {
case '\n':
col = 0;
(void)putchar('\n');
continue;
case '\t':
width = 8 - (col&07);
break;
default:
width = strlen(cp);
}
if (col + width > (screenwidth-2)) {
(void)printf("\\\n\t");
col = 8;
}
col += width;
do {
(void)putchar(*cp++);
} while (*cp);
}
if (col == 0)
(void)printf(" ");
(void)printf("\"\n");
}
static void
ktrpsig(struct ktr_psig *psig)
{
(void)printf("SIG%s ", sys_signame[psig->signo]);
if (psig->action == SIG_DFL)
(void)printf("SIG_DFL code %d", psig->code);
else
(void)printf("caught handler=0x%lx mask=0x%x",
(u_long)psig->action, psig->mask);
switch (psig->signo) {
case SIGSEGV:
case SIGILL:
case SIGBUS:
case SIGFPE:
printf(" addr=%p trapno=%d", psig->si.si_addr,
psig->si.si_trapno);
break;
default:
break;
}
printf("\n");
}
static void
ktrcsw(struct ktr_csw *cs)
{
(void)printf("%s %s\n", cs->out ? "stop" : "resume",
cs->user ? "user" : "kernel");
}
static void
usage(void)
{
extern char *__progname;
fprintf(stderr, "usage: %s "
"[-dlnRTXx] [-e emulation] [-f file] [-m maxdata] [-p pid]\n"
"%*s[-t [ceinsw]]\n",
__progname, (int)(sizeof("usage: ") + strlen(__progname)), "");
exit(1);
}
static void
setemul(const char *name)
{
int i;
for (i = 0; emulations[i].name != NULL; i++)
if (strcmp(emulations[i].name, name) == 0) {
current = &emulations[i];
return;
}
warnx("Emulation `%s' unknown", name);
}
|