2000-04-10 13:42:37 +04:00
|
|
|
/* $NetBSD: dump.c,v 1.9 2000/04/10 09:42:37 jdolecek Exp $ */
|
1999-07-12 08:13:34 +04:00
|
|
|
|
1999-07-12 07:20:17 +04:00
|
|
|
/*-
|
|
|
|
* 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. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. 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/cdefs.h>
|
|
|
|
#ifndef lint
|
|
|
|
__COPYRIGHT("@(#) Copyright (c) 1988, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n");
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)kdump.c 8.4 (Berkeley) 4/28/95";
|
|
|
|
#endif
|
2000-04-10 13:42:37 +04:00
|
|
|
__RCSID("$NetBSD: dump.c,v 1.9 2000/04/10 09:42:37 jdolecek Exp $");
|
1999-07-12 07:20:17 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#define _KERNEL
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#undef _KERNEL
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/ktrace.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/ptrace.h>
|
|
|
|
#define _KERNEL
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#undef _KERNEL
|
|
|
|
|
|
|
|
#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 "misc.h"
|
2000-04-10 13:42:37 +04:00
|
|
|
#include "setemul.h"
|
1999-07-12 07:20:17 +04:00
|
|
|
|
|
|
|
int timestamp, decimal, fancy = 1, tail, maxdata;
|
|
|
|
|
|
|
|
#define eqs(s1, s2) (strcmp((s1), (s2)) == 0)
|
|
|
|
|
|
|
|
#include <sys/syscall.h>
|
|
|
|
|
|
|
|
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",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-07-23 07:12:31 +04:00
|
|
|
void dumprecord __P((struct ktr_header *, int, int *, void **, FILE *));
|
1999-07-12 07:20:17 +04:00
|
|
|
void dumpheader __P((struct ktr_header *, char *, int, int *));
|
|
|
|
void dumpfile __P((char *, int, int));
|
|
|
|
int fread_tail __P((char *, int, int, FILE *));
|
|
|
|
void ioctldecode __P((u_long));
|
|
|
|
int ktrsyscall __P((struct ktr_syscall *, int, char *, int, int *));
|
|
|
|
void ktrsysret __P((struct ktr_sysret *, char *, int, int *));
|
|
|
|
void ktrnamei __P((char *, int, char *, int, int *));
|
2000-04-10 13:42:37 +04:00
|
|
|
void ktremul __P((struct ktr_header *, char *, int, char *, int, int *));
|
1999-07-12 07:20:17 +04:00
|
|
|
void ktrgenio __P((struct ktr_genio *, int, char *, int, int *));
|
|
|
|
void ktrpsig __P((struct ktr_psig *));
|
|
|
|
void ktrcsw __P((struct ktr_csw *));
|
|
|
|
|
|
|
|
#define KTR_BUFSZ 512
|
|
|
|
#define BLEFT (bufsz - (bp - buff))
|
|
|
|
|
|
|
|
|
|
|
|
void
|
1999-07-23 07:12:31 +04:00
|
|
|
dumprecord(ktr, trpoints, sizep, mp, fp)
|
1999-07-12 07:20:17 +04:00
|
|
|
register struct ktr_header *ktr;
|
1999-07-23 07:12:31 +04:00
|
|
|
int trpoints;
|
|
|
|
int *sizep;
|
|
|
|
void **mp;
|
1999-07-12 07:20:17 +04:00
|
|
|
FILE *fp;
|
|
|
|
{
|
|
|
|
static void *mcopy = NULL;
|
|
|
|
static int linelen = 0, iolinelen = 0;
|
|
|
|
char buff[KTR_BUFSZ], iobuff[KTR_BUFSZ], *bp;
|
|
|
|
int ktrlen, *lenp;
|
1999-07-23 07:12:31 +04:00
|
|
|
void *m;
|
1999-07-12 07:20:17 +04:00
|
|
|
|
|
|
|
if (!ktr) {
|
|
|
|
printf("%s\n", buff);
|
|
|
|
if (*iobuff)
|
|
|
|
printf("%s\n", iobuff);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ktr->ktr_type == KTR_GENIO || ktr->ktr_type == KTR_EMUL) {
|
|
|
|
bp = iobuff;
|
|
|
|
lenp = &iolinelen;
|
|
|
|
} else {
|
|
|
|
bp = buff;
|
|
|
|
lenp = &linelen;
|
|
|
|
}
|
|
|
|
if (!mcopy && (trpoints & (1<<ktr->ktr_type)))
|
|
|
|
dumpheader(ktr, bp, KTR_BUFSZ, lenp);
|
|
|
|
|
|
|
|
if ((ktrlen = ktr->ktr_len) < 0)
|
|
|
|
errx(1, "bogus length 0x%x", ktrlen);
|
1999-07-23 07:12:31 +04:00
|
|
|
m = *mp;
|
|
|
|
if (ktrlen >= *sizep) {
|
2000-04-10 13:42:37 +04:00
|
|
|
while(ktrlen > *sizep) *sizep *= 2;
|
|
|
|
*mp = m = (void *)realloc(m, *sizep);
|
1999-07-12 07:20:17 +04:00
|
|
|
if (m == NULL)
|
2000-04-10 13:42:37 +04:00
|
|
|
errx(1, "realloc: %s", strerror(ENOMEM));
|
1999-07-12 07:20:17 +04:00
|
|
|
}
|
|
|
|
if (ktrlen && fread_tail(m, ktrlen, 1, fp) == 0)
|
|
|
|
errx(1, "data too short");
|
|
|
|
if ((trpoints & (1<<ktr->ktr_type)) == 0)
|
|
|
|
return;
|
2000-04-10 13:42:37 +04:00
|
|
|
|
|
|
|
/* update context to match currently processed record */
|
|
|
|
ectx_sanify(ktr->ktr_pid);
|
|
|
|
|
1999-07-12 07:20:17 +04:00
|
|
|
switch (ktr->ktr_type)
|
|
|
|
{
|
|
|
|
case KTR_SYSCALL:
|
|
|
|
if (ktrsyscall((struct ktr_syscall *)m, 0, bp, KTR_BUFSZ,
|
|
|
|
lenp) == 0) {
|
|
|
|
mcopy = (void *)malloc(ktrlen + 1);
|
|
|
|
bcopy(m, mcopy, ktrlen);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KTR_SYSRET:
|
|
|
|
ktrsysret((struct ktr_sysret *)m, bp, KTR_BUFSZ, lenp);
|
|
|
|
if (*iobuff || iolinelen) {
|
|
|
|
fputs(iobuff, stdout);
|
|
|
|
*iobuff = '\0';
|
|
|
|
iolinelen = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KTR_NAMEI:
|
|
|
|
ktrnamei(m, ktrlen, bp, sizeof(buff), lenp);
|
|
|
|
if (mcopy) {
|
|
|
|
(void) ktrsyscall((struct ktr_syscall *)mcopy, 1, bp,
|
|
|
|
KTR_BUFSZ, lenp);
|
|
|
|
free(mcopy);
|
|
|
|
mcopy = NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KTR_GENIO:
|
|
|
|
ktrgenio((struct ktr_genio *)m, ktrlen, bp, KTR_BUFSZ, lenp);
|
|
|
|
break;
|
|
|
|
case KTR_PSIG:
|
|
|
|
ktrpsig((struct ktr_psig *)m);
|
|
|
|
break;
|
|
|
|
case KTR_CSW:
|
|
|
|
ktrcsw((struct ktr_csw *)m);
|
|
|
|
break;
|
|
|
|
case KTR_EMUL:
|
2000-04-10 13:42:37 +04:00
|
|
|
ktremul(ktr, m, ktrlen, bp, sizeof(buff), lenp);
|
1999-07-12 07:20:17 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-01-26 17:23:41 +03:00
|
|
|
if (mcopy) {
|
1999-07-12 07:20:17 +04:00
|
|
|
free(mcopy);
|
2000-01-26 17:23:41 +03:00
|
|
|
mcopy = NULL;
|
|
|
|
}
|
1999-07-12 07:20:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
dumpfile(file, fd, trpoints)
|
|
|
|
char *file;
|
|
|
|
int fd;
|
|
|
|
int trpoints;
|
|
|
|
{
|
|
|
|
struct ktr_header ktr_header;
|
1999-07-23 07:12:31 +04:00
|
|
|
void *m;
|
1999-07-12 07:20:17 +04:00
|
|
|
FILE *fp;
|
|
|
|
int size;
|
|
|
|
|
2000-04-10 13:42:37 +04:00
|
|
|
m = (void *)malloc(size = 1024);
|
1999-07-12 07:20:17 +04:00
|
|
|
if (m == NULL)
|
2000-04-10 13:42:37 +04:00
|
|
|
errx(1, "malloc: %s", strerror(ENOMEM));
|
1999-07-12 07:20:17 +04:00
|
|
|
if (!file || !*file) {
|
|
|
|
if (!(fp = fdopen(fd, "r")))
|
|
|
|
err(1, "fdopen(%d)", fd);
|
|
|
|
} else if (!strcmp(file, "-"))
|
|
|
|
fp = stdin;
|
|
|
|
else if (!(fp = fopen(file, "r")))
|
|
|
|
err(1, "%s", file);
|
|
|
|
|
|
|
|
while (fread_tail((char *)&ktr_header,sizeof(struct ktr_header),1,fp)) {
|
1999-07-23 07:12:31 +04:00
|
|
|
dumprecord(&ktr_header, trpoints, &size, &m, fp);
|
1999-07-12 07:20:17 +04:00
|
|
|
if (tail)
|
|
|
|
(void)fflush(stdout);
|
|
|
|
}
|
1999-07-23 07:12:31 +04:00
|
|
|
dumprecord(NULL, 0, NULL, NULL, fp);
|
1999-07-12 07:20:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
fread_tail(buf, size, num, fp)
|
|
|
|
char *buf;
|
|
|
|
int num, size;
|
|
|
|
FILE *fp;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
while ((i = fread(buf, size, num, fp)) == 0 && tail) {
|
|
|
|
(void)sleep(1);
|
1999-07-29 05:53:26 +04:00
|
|
|
clearerr(fp);
|
1999-07-12 07:20:17 +04:00
|
|
|
}
|
|
|
|
return (i);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
dumpheader(kth, buff, buffsz, lenp)
|
|
|
|
struct ktr_header *kth;
|
|
|
|
char *buff;
|
|
|
|
int buffsz, *lenp;
|
|
|
|
{
|
|
|
|
static struct timeval prevtime;
|
|
|
|
char *bp = buff + *lenp;
|
|
|
|
struct timeval temp;
|
|
|
|
|
|
|
|
if (kth->ktr_type == KTR_SYSRET || kth->ktr_type == KTR_GENIO)
|
|
|
|
return;
|
|
|
|
*lenp = 0;
|
|
|
|
(void)snprintf(bp, buffsz - *lenp, "%6d %-8.*s ",
|
|
|
|
kth->ktr_pid, MAXCOMLEN, kth->ktr_comm);
|
|
|
|
*lenp += strlen(bp);
|
|
|
|
bp = buff + *lenp;
|
|
|
|
|
|
|
|
if (timestamp) {
|
|
|
|
if (timestamp == 2) {
|
|
|
|
timersub(&kth->ktr_time, &prevtime, &temp);
|
|
|
|
prevtime = kth->ktr_time;
|
|
|
|
} else
|
|
|
|
temp = kth->ktr_time;
|
2000-03-27 21:03:25 +04:00
|
|
|
(void)snprintf(bp, buffsz - *lenp, "%ld.%06ld ",
|
|
|
|
(long int)temp.tv_sec,
|
|
|
|
(long int)temp.tv_usec);
|
1999-07-12 07:20:17 +04:00
|
|
|
*lenp += strlen(bp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ioctldecode(cmd)
|
|
|
|
u_long cmd;
|
|
|
|
{
|
|
|
|
char dirbuf[4], *dir = dirbuf;
|
|
|
|
|
|
|
|
if (cmd & IOC_OUT)
|
|
|
|
*dir++ = 'W';
|
|
|
|
if (cmd & IOC_IN)
|
|
|
|
*dir++ = 'R';
|
|
|
|
*dir = '\0';
|
|
|
|
|
|
|
|
printf(decimal ? ",_IO%s('%c',%ld" : ",_IO%s('%c',%#lx",
|
|
|
|
dirbuf, (cmd >> 8) & 0xff, cmd & 0xff);
|
|
|
|
if ((cmd & IOC_VOID) == 0)
|
|
|
|
printf(decimal ? ",%ld)" : ",%#lx)", (cmd >> 16) & 0xff);
|
|
|
|
else
|
|
|
|
printf(")");
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ktrsyscall(ktr, nohdr, buff, bufsz, lenp)
|
|
|
|
register struct ktr_syscall *ktr;
|
|
|
|
int nohdr, bufsz, *lenp;
|
|
|
|
char *buff;
|
|
|
|
{
|
|
|
|
register int argsize = ktr->ktr_argsize;
|
|
|
|
register register_t *ap;
|
|
|
|
char *bp = buff;
|
|
|
|
int eol = 1;
|
|
|
|
|
|
|
|
if (*lenp < bufsz) {
|
|
|
|
bp += *lenp;
|
|
|
|
bzero(bp, BLEFT);
|
|
|
|
}
|
|
|
|
if (!nohdr) {
|
|
|
|
if (ktr->ktr_code >= current->nsysnames || ktr->ktr_code < 0)
|
|
|
|
(void)snprintf(bp, BLEFT, "[%d]", ktr->ktr_code);
|
|
|
|
else
|
|
|
|
(void)snprintf(bp, BLEFT,
|
|
|
|
"%s", current->sysnames[ktr->ktr_code]);
|
|
|
|
bp += strlen(bp);
|
|
|
|
}
|
|
|
|
ap = (register_t *)((char *)ktr + sizeof(struct ktr_syscall));
|
|
|
|
if (argsize) {
|
|
|
|
char *s = "(";
|
|
|
|
if (fancy && !nohdr) {
|
|
|
|
switch (ktr->ktr_code) {
|
|
|
|
/*
|
|
|
|
* All these have a path as the first param.
|
|
|
|
*/
|
|
|
|
case SYS_open : case SYS_chdir :
|
|
|
|
case SYS___stat13 : case SYS_chroot :
|
|
|
|
case SYS_execve : case SYS_pathconf :
|
|
|
|
case SYS_rmdir : case SYS_rename :
|
|
|
|
case SYS_symlink : case SYS_chflags :
|
|
|
|
case SYS_link : case SYS_mkdir :
|
|
|
|
case SYS_mknod : case SYS_mkfifo :
|
|
|
|
if (BLEFT > 1)
|
|
|
|
*bp++ = '(';
|
|
|
|
eol = 0;
|
|
|
|
break;
|
|
|
|
case SYS___sigaction14 :
|
|
|
|
(void)snprintf(bp, BLEFT, "(%s",
|
|
|
|
signals[(int)*ap].name);
|
|
|
|
s = ", ";
|
|
|
|
argsize -= sizeof(register_t);
|
|
|
|
ap++;
|
|
|
|
break;
|
|
|
|
case SYS_ioctl :
|
|
|
|
if (decimal)
|
|
|
|
(void)snprintf(bp, BLEFT, "(%ld",
|
|
|
|
(long)*ap);
|
|
|
|
else
|
|
|
|
(void)snprintf(bp, BLEFT, "(%#lx",
|
|
|
|
(long)*ap);
|
|
|
|
bp += strlen(bp);
|
|
|
|
ap++;
|
|
|
|
argsize -= sizeof(register_t);
|
|
|
|
if ((s = ioctlname(*ap)) != NULL)
|
|
|
|
(void)snprintf(bp, BLEFT, ", %s", s);
|
|
|
|
else
|
|
|
|
ioctldecode(*ap);
|
|
|
|
s = ", ";
|
|
|
|
ap++;
|
|
|
|
argsize -= sizeof(register_t);
|
|
|
|
break;
|
|
|
|
case SYS_ptrace :
|
|
|
|
if (*ap >= 0 && *ap <=
|
|
|
|
sizeof(ptrace_ops) / sizeof(ptrace_ops[0]))
|
|
|
|
(void)snprintf(bp, BLEFT, "(%s",
|
|
|
|
ptrace_ops[*ap]);
|
|
|
|
else
|
|
|
|
(void)snprintf(bp, BLEFT, "(%ld",
|
|
|
|
(long)*ap);
|
|
|
|
s = ", ";
|
|
|
|
ap++;
|
|
|
|
argsize -= sizeof(register_t);
|
|
|
|
break;
|
|
|
|
default :
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
bp += strlen(bp);
|
|
|
|
}
|
|
|
|
if (eol) {
|
|
|
|
while (argsize) {
|
|
|
|
if (!nohdr || strcmp(s, "(")) {
|
|
|
|
if (decimal)
|
|
|
|
(void)snprintf(bp, BLEFT,
|
|
|
|
"%s%ld", s,
|
|
|
|
(long)*ap);
|
|
|
|
else
|
|
|
|
(void)snprintf(bp, BLEFT,
|
|
|
|
"%s%#lx", s,
|
|
|
|
(long)*ap);
|
|
|
|
bp += strlen(bp);
|
|
|
|
}
|
|
|
|
s = ", ";
|
|
|
|
ap++;
|
|
|
|
argsize -= sizeof(register_t);
|
|
|
|
}
|
|
|
|
if (BLEFT > 1)
|
|
|
|
*bp++ = ')';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*bp = '\0';
|
|
|
|
|
|
|
|
*lenp = bp - buff;
|
|
|
|
return eol;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ktrsysret(ktr, buff, buffsz, lenp)
|
|
|
|
struct ktr_sysret *ktr;
|
|
|
|
int buffsz, *lenp;
|
|
|
|
char *buff;
|
|
|
|
{
|
1999-08-06 04:11:02 +04:00
|
|
|
register register_t ret = ktr->ktr_retval;
|
1999-07-12 07:20:17 +04:00
|
|
|
register int error = ktr->ktr_error;
|
|
|
|
|
|
|
|
while (*lenp < 50)
|
|
|
|
buff[(*lenp)++] = ' ';
|
|
|
|
if (error == EJUSTRETURN)
|
|
|
|
strcpy(buff + *lenp, " JUSTRETURN");
|
|
|
|
else if (error == ERESTART)
|
|
|
|
strcpy(buff + *lenp, " RESTART");
|
|
|
|
else if (error) {
|
|
|
|
sprintf(buff + *lenp, " Err#%d", error);
|
|
|
|
if (error < MAXERRNOS && error >= -2)
|
|
|
|
sprintf(buff + strlen(buff), " %s",errnos[error].name);
|
|
|
|
} else
|
1999-08-06 04:11:02 +04:00
|
|
|
sprintf(buff + *lenp, " = %ld", (long)ret);
|
1999-07-12 07:20:17 +04:00
|
|
|
strcat(buff + *lenp, "\n");
|
|
|
|
*lenp = 0;
|
|
|
|
fputs(buff, stdout);
|
|
|
|
*buff = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ktrnamei(cp, len, buff, buffsz, lenp)
|
|
|
|
int buffsz, *lenp;
|
|
|
|
char *cp, *buff;
|
|
|
|
{
|
|
|
|
snprintf(buff + *lenp, buffsz - *lenp, "\"%.*s\"", len, cp);
|
|
|
|
*lenp += strlen(buff + *lenp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-04-10 13:42:37 +04:00
|
|
|
ktremul(ktr_header, cp, len, buff, buffsz, lenp)
|
|
|
|
struct ktr_header *ktr_header;
|
1999-07-12 07:20:17 +04:00
|
|
|
int buffsz, *lenp;
|
|
|
|
char *cp, *buff;
|
|
|
|
{
|
|
|
|
bzero(buff + *lenp, buffsz - *lenp);
|
|
|
|
cp[len] = '\0';
|
|
|
|
snprintf(buff + *lenp, buffsz - *lenp, "emul(%s)\n", cp);
|
|
|
|
*lenp += strlen(buff + *lenp);
|
|
|
|
|
2000-04-10 13:42:37 +04:00
|
|
|
setemul(cp, ktr_header->ktr_pid, 1);
|
1999-07-12 07:20:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ktrgenio(ktr, len, buff, bufsz, lenp)
|
|
|
|
struct ktr_genio *ktr;
|
|
|
|
int len;
|
|
|
|
char *buff;
|
|
|
|
int bufsz, *lenp;
|
|
|
|
{
|
|
|
|
static int screenwidth = 0;
|
|
|
|
register int datalen = len - sizeof (struct ktr_genio);
|
|
|
|
register char *dp = (char *)ktr + sizeof (struct ktr_genio);
|
|
|
|
register int col = 0;
|
|
|
|
register int width;
|
|
|
|
char visbuf[5], *bp = buff;
|
|
|
|
|
|
|
|
if (*lenp < bufsz) {
|
|
|
|
bp += *lenp;
|
|
|
|
bzero(buff, BLEFT);
|
|
|
|
} else
|
|
|
|
*lenp = 0;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (maxdata && datalen > maxdata)
|
|
|
|
datalen = maxdata;
|
|
|
|
strcpy(bp, " \"");
|
|
|
|
col = *lenp;
|
|
|
|
col += 8;
|
|
|
|
bp += 8;
|
|
|
|
for (; datalen > 0; datalen--, dp++) {
|
|
|
|
(void) vis(visbuf, *dp, VIS_NL|VIS_TAB|VIS_CSTYLE, *(dp+1));
|
|
|
|
width = strlen(visbuf);
|
|
|
|
visbuf[4] = '\0';
|
|
|
|
if (col + width + 2 >= screenwidth)
|
|
|
|
break;
|
|
|
|
col += width;
|
|
|
|
strncpy(bp, visbuf, width);
|
|
|
|
bp += width;
|
|
|
|
if (col + 2 >= screenwidth)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
strcpy(bp, "\"\n");
|
|
|
|
*lenp = col + 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ktrpsig(psig)
|
|
|
|
struct ktr_psig *psig;
|
|
|
|
{
|
|
|
|
(void)printf("SIG%s ", sys_signame[psig->signo]);
|
|
|
|
if (psig->action == SIG_DFL)
|
|
|
|
(void)printf("SIG_DFL\n");
|
|
|
|
else {
|
|
|
|
(void)printf("caught handler=0x%lx mask=0x%lx code=0x%x\n",
|
2000-01-26 17:23:41 +03:00
|
|
|
(u_long)psig->action, (unsigned long)psig->mask.__bits[0],
|
|
|
|
psig->code);
|
1999-07-12 07:20:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ktrcsw(cs)
|
|
|
|
struct ktr_csw *cs;
|
|
|
|
{
|
|
|
|
(void)printf("%s %s\n", cs->out ? "stop" : "resume",
|
|
|
|
cs->user ? "user" : "kernel");
|
|
|
|
}
|