1997-12-06 05:23:12 +00:00
|
|
|
/*
|
1997-12-20 18:40:43 +00:00
|
|
|
* See i386-fbsd.c for copyright and license terms.
|
|
|
|
*
|
1997-12-06 05:23:12 +00:00
|
|
|
* System call arguments come in several flavours:
|
|
|
|
* Hex -- values that should be printed in hex (addresses)
|
|
|
|
* Octal -- Same as above, but octal
|
|
|
|
* Int -- normal integer values (file descriptors, for example)
|
- Add decoding of kse_release, kevent, sigprocmask, unmount, socket, getrusage,
rename, __getcwd, shutdown, getrlimit, setrlimit, _umtx_lock, _umtx_unlock,
pathconf, truncate, ftruncate, kill
- Decode more arguments of open, mprot, *stat, and fcntl.
- Convert all constant-macro and bitfield decoding to lookup tables; much
cleaner than previous code.
- Print the timestamp of process exit and signal reception when -d or -D are in
use
- Try six times with 1/2 second delay to debug the child
PR: bin/52190 (updated)
Submitted by: Dan Nelson <dnelson@allantgroup.com>
Approved by: alfred
2006-05-15 21:18:28 +00:00
|
|
|
* Name -- pointer to a NULL-terminated string.
|
|
|
|
* BinString -- pointer to an array of chars, printed via strvisx().
|
|
|
|
* Ptr -- pointer to some unspecified structure. Just print as hex for now.
|
|
|
|
* Stat -- a pointer to a stat buffer. Prints a couple fields.
|
1997-12-06 06:51:14 +00:00
|
|
|
* Ioctl -- an ioctl command. Woefully limited.
|
Add support for decoding Timespec, Timeval, Itimerval, Pollfd,
Fd_set and Sigaction structures. Use these for printing the arguments
to sigaction(), nanosleep(), select(), poll(), gettimeofday(),
clock_gettime(), recvfrom(), getitimer() and setitimer().
This is based on Dan's patch from the PR but I've hacked it for
style and some other issues. While Dan has checked this patch, any
goofs are probably my fault.
(The PR also contains support for the dual return values of pipe().
These will follow once I've ported that support to platforms other
than i386.)
PR: 52190
Submitted by: Dan Nelson <dnelson@allantgroup.com>
2004-03-23 12:37:02 +00:00
|
|
|
* Quad -- a double-word value. e.g., lseek(int, offset_t, int)
|
|
|
|
* Signal -- a signal number. Prints the signal name (SIGxxx)
|
|
|
|
* Sockaddr -- a pointer to a struct sockaddr. Prints symbolic AF, and IP:Port
|
|
|
|
* StringArray -- a pointer to an array of string pointers.
|
|
|
|
* Timespec -- a pointer to a struct timespec. Prints both elements.
|
|
|
|
* Timeval -- a pointer to a struct timeval. Prints both elements.
|
- Add decoding of kse_release, kevent, sigprocmask, unmount, socket, getrusage,
rename, __getcwd, shutdown, getrlimit, setrlimit, _umtx_lock, _umtx_unlock,
pathconf, truncate, ftruncate, kill
- Decode more arguments of open, mprot, *stat, and fcntl.
- Convert all constant-macro and bitfield decoding to lookup tables; much
cleaner than previous code.
- Print the timestamp of process exit and signal reception when -d or -D are in
use
- Try six times with 1/2 second delay to debug the child
PR: bin/52190 (updated)
Submitted by: Dan Nelson <dnelson@allantgroup.com>
Approved by: alfred
2006-05-15 21:18:28 +00:00
|
|
|
* Timeval2 -- a pointer to two struct timevals. Prints both elements of both.
|
Add support for decoding Timespec, Timeval, Itimerval, Pollfd,
Fd_set and Sigaction structures. Use these for printing the arguments
to sigaction(), nanosleep(), select(), poll(), gettimeofday(),
clock_gettime(), recvfrom(), getitimer() and setitimer().
This is based on Dan's patch from the PR but I've hacked it for
style and some other issues. While Dan has checked this patch, any
goofs are probably my fault.
(The PR also contains support for the dual return values of pipe().
These will follow once I've ported that support to platforms other
than i386.)
PR: 52190
Submitted by: Dan Nelson <dnelson@allantgroup.com>
2004-03-23 12:37:02 +00:00
|
|
|
* Itimerval -- a pointer to a struct itimerval. Prints all elements.
|
|
|
|
* Pollfd -- a pointer to an array of struct pollfd. Prints .fd and .events.
|
|
|
|
* Fd_set -- a pointer to an array of fd_set. Prints the fds that are set.
|
|
|
|
* Sigaction -- a pointer to a struct sigaction. Prints all elements.
|
- Add decoding of kse_release, kevent, sigprocmask, unmount, socket, getrusage,
rename, __getcwd, shutdown, getrlimit, setrlimit, _umtx_lock, _umtx_unlock,
pathconf, truncate, ftruncate, kill
- Decode more arguments of open, mprot, *stat, and fcntl.
- Convert all constant-macro and bitfield decoding to lookup tables; much
cleaner than previous code.
- Print the timestamp of process exit and signal reception when -d or -D are in
use
- Try six times with 1/2 second delay to debug the child
PR: bin/52190 (updated)
Submitted by: Dan Nelson <dnelson@allantgroup.com>
Approved by: alfred
2006-05-15 21:18:28 +00:00
|
|
|
* Umtx -- a pointer to a struct umtx. Prints the value of owner.
|
|
|
|
* Sigset -- a pointer to a sigset_t. Prints the signals that are set.
|
|
|
|
* Sigprocmask -- the first argument to sigprocmask(). Prints the name.
|
|
|
|
* Kevent -- a pointer to an array of struct kevents. Prints all elements.
|
2008-07-31 17:15:21 +00:00
|
|
|
* Pathconf -- the 2nd argument of pathconf().
|
1997-12-06 05:23:12 +00:00
|
|
|
*
|
|
|
|
* In addition, the pointer types (String, Ptr) may have OUT masked in --
|
|
|
|
* this means that the data is set on *return* from the system call -- or
|
|
|
|
* IN (meaning that the data is passed *into* the system call).
|
|
|
|
*/
|
|
|
|
/*
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1997-12-06 05:23:12 +00:00
|
|
|
*/
|
|
|
|
|
- Add decoding of kse_release, kevent, sigprocmask, unmount, socket, getrusage,
rename, __getcwd, shutdown, getrlimit, setrlimit, _umtx_lock, _umtx_unlock,
pathconf, truncate, ftruncate, kill
- Decode more arguments of open, mprot, *stat, and fcntl.
- Convert all constant-macro and bitfield decoding to lookup tables; much
cleaner than previous code.
- Print the timestamp of process exit and signal reception when -d or -D are in
use
- Try six times with 1/2 second delay to debug the child
PR: bin/52190 (updated)
Submitted by: Dan Nelson <dnelson@allantgroup.com>
Approved by: alfred
2006-05-15 21:18:28 +00:00
|
|
|
enum Argtype { None = 1, Hex, Octal, Int, Name, Ptr, Stat, Ioctl, Quad,
|
|
|
|
Signal, Sockaddr, StringArray, Timespec, Timeval, Itimerval, Pollfd,
|
|
|
|
Fd_set, Sigaction, Fcntl, Mprot, Mmapflags, Whence, Readlinkres,
|
|
|
|
Umtx, Sigset, Sigprocmask, Kevent, Sockdomain, Socktype, Open,
|
|
|
|
Fcntlflag, Rusage, BinString, Shutdown, Resource, Rlimit, Timeval2,
|
2013-09-12 18:08:25 +00:00
|
|
|
Pathconf, Rforkflags, ExitStatus, Waitoptions, Idtype };
|
1997-12-06 05:23:12 +00:00
|
|
|
|
2012-09-02 11:03:18 +00:00
|
|
|
#define ARG_MASK 0xff
|
|
|
|
#define OUT 0x100
|
|
|
|
#define IN /*0x20*/0
|
1997-12-06 05:23:12 +00:00
|
|
|
|
|
|
|
struct syscall_args {
|
|
|
|
enum Argtype type;
|
|
|
|
int offset;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct syscall {
|
2001-12-11 23:34:02 +00:00
|
|
|
const char *name;
|
1997-12-06 05:23:12 +00:00
|
|
|
int ret_type; /* 0, 1, or 2 return values */
|
|
|
|
int nargs; /* actual number of meaningful arguments */
|
|
|
|
/* Hopefully, no syscalls with > 10 args */
|
|
|
|
struct syscall_args args[10];
|
2009-05-12 20:42:12 +00:00
|
|
|
struct timespec time; /* Time spent for this call */
|
|
|
|
int ncalls; /* Number of calls */
|
|
|
|
int nerror; /* Number of calls that returned with error */
|
1997-12-06 05:23:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct syscall *get_syscall(const char*);
|
2007-04-10 04:03:34 +00:00
|
|
|
char *print_arg(struct syscall_args *, unsigned long*, long, struct trussinfo *);
|
2002-08-04 00:46:48 +00:00
|
|
|
void print_syscall(struct trussinfo *, const char *, int, char **);
|
2003-11-09 03:48:13 +00:00
|
|
|
void print_syscall_ret(struct trussinfo *, const char *, int, char **, int,
|
2009-05-12 20:42:12 +00:00
|
|
|
long, struct syscall *);
|
|
|
|
void print_summary(struct trussinfo *trussinfo);
|