* other than test arg[0].
*/
- if (s->sys_func == sys_dup2 ||
- s->sys_func == sys_dup3 ||
- s->sys_func == sys_sendfile ||
- s->sys_func == sys_sendfile64 ||
- s->sys_func == sys_tee)
- {
+ switch (s->sen) {
+ case SEN_dup2:
+ case SEN_dup3:
+ case SEN_sendfile:
+ case SEN_sendfile64:
+ case SEN_tee:
/* fd, fd */
return fdmatch(tcp, tcp->u_arg[0]) ||
fdmatch(tcp, tcp->u_arg[1]);
- }
- if (s->sys_func == sys_inotify_add_watch ||
- s->sys_func == sys_faccessat ||
- s->sys_func == sys_fchmodat ||
- s->sys_func == sys_futimesat ||
- s->sys_func == sys_unlinkat ||
- s->sys_func == sys_newfstatat ||
- s->sys_func == sys_mknodat ||
- s->sys_func == sys_openat ||
- s->sys_func == sys_readlinkat ||
- s->sys_func == sys_utimensat ||
- s->sys_func == sys_fchownat ||
- s->sys_func == sys_pipe2)
- {
+ case SEN_faccessat:
+ case SEN_fchmodat:
+ case SEN_fchownat:
+ case SEN_futimesat:
+ case SEN_inotify_add_watch:
+ case SEN_mkdirat:
+ case SEN_mknodat:
+ case SEN_newfstatat:
+ case SEN_openat:
+ case SEN_pipe2:
+ case SEN_readlinkat:
+ case SEN_unlinkat:
+ case SEN_utimensat:
/* fd, path */
return fdmatch(tcp, tcp->u_arg[0]) ||
upathmatch(tcp, tcp->u_arg[1]);
- }
- if (s->sys_func == sys_link ||
- s->sys_func == sys_mount)
- {
+ case SEN_link:
+ case SEN_mount:
+ case SEN_pivotroot:
/* path, path */
return upathmatch(tcp, tcp->u_arg[0]) ||
upathmatch(tcp, tcp->u_arg[1]);
- }
- if (s->sys_func == sys_quotactl)
- {
+ case SEN_quotactl:
/* x, path */
return upathmatch(tcp, tcp->u_arg[1]);
- }
- if (s->sys_func == sys_renameat ||
- s->sys_func == sys_renameat2 ||
- s->sys_func == sys_linkat)
- {
+ case SEN_linkat:
+ case SEN_renameat2:
+ case SEN_renameat:
/* fd, path, fd, path */
return fdmatch(tcp, tcp->u_arg[0]) ||
fdmatch(tcp, tcp->u_arg[2]) ||
upathmatch(tcp, tcp->u_arg[1]) ||
upathmatch(tcp, tcp->u_arg[3]);
- }
- if (
- s->sys_func == sys_old_mmap ||
+ case SEN_old_mmap:
#if defined(S390)
- s->sys_func == sys_old_mmap_pgoff ||
+ case SEN_old_mmap_pgoff:
#endif
- s->sys_func == sys_mmap ||
- s->sys_func == sys_mmap_pgoff ||
- s->sys_func == sys_mmap_4koff
- ) {
+ case SEN_mmap:
+ case SEN_mmap_4koff:
+ case SEN_mmap_pgoff:
/* x, x, x, x, fd */
return fdmatch(tcp, tcp->u_arg[4]);
- }
- if (s->sys_func == sys_symlinkat) {
+ case SEN_symlinkat:
/* path, fd, path */
return fdmatch(tcp, tcp->u_arg[1]) ||
upathmatch(tcp, tcp->u_arg[0]) ||
upathmatch(tcp, tcp->u_arg[2]);
- }
- if (s->sys_func == sys_splice) {
+ case SEN_splice:
/* fd, x, fd, x, x */
return fdmatch(tcp, tcp->u_arg[0]) ||
fdmatch(tcp, tcp->u_arg[2]);
- }
- if (s->sys_func == sys_epoll_ctl) {
+ case SEN_epoll_ctl:
/* x, x, fd, x */
return fdmatch(tcp, tcp->u_arg[2]);
- }
- if (s->sys_func == sys_fanotify_mark) {
+
+ case SEN_fanotify_mark:
/* x, x, x, fd, path */
return fdmatch(tcp, tcp->u_arg[3]) ||
upathmatch(tcp, tcp->u_arg[4]);
- }
- if (s->sys_func == sys_select ||
- s->sys_func == sys_oldselect ||
- s->sys_func == sys_pselect6)
+ case SEN_oldselect:
+ case SEN_pselect6:
+ case SEN_select:
{
int i, j;
int nfds;
fd_set *fds;
args = tcp->u_arg;
- if (s->sys_func == sys_oldselect) {
+ if (SEN_oldselect == s->sen) {
if (umoven(tcp, tcp->u_arg[0], sizeof oldargs,
oldargs) < 0)
{
return 0;
}
- if (s->sys_func == sys_poll ||
- s->sys_func == sys_ppoll)
+ case SEN_poll:
+ case SEN_ppoll:
{
struct pollfd fds;
unsigned nfds;
return 0;
}
- if (s->sys_func == printargs ||
- s->sys_func == sys_pipe ||
- s->sys_func == sys_pipe2 ||
- s->sys_func == sys_eventfd2 ||
- s->sys_func == sys_eventfd ||
- s->sys_func == sys_inotify_init1 ||
- s->sys_func == sys_timerfd_create ||
- s->sys_func == sys_timerfd_settime ||
- s->sys_func == sys_timerfd_gettime ||
- s->sys_func == sys_epoll_create ||
- s->sys_func == sys_socket ||
- s->sys_func == sys_socketpair ||
- s->sys_func == sys_fanotify_init)
- {
+ case SEN_epoll_create:
+ case SEN_eventfd2:
+ case SEN_eventfd:
+ case SEN_fanotify_init:
+ case SEN_inotify_init1:
+ case SEN_perf_event_open:
+ case SEN_pipe:
+ case SEN_printargs:
+ case SEN_socket:
+ case SEN_socketpair:
+ case SEN_timerfd_create:
+ case SEN_timerfd_gettime:
+ case SEN_timerfd_settime:
/*
* These have TRACE_FILE or TRACE_DESCRIPTOR or TRACE_NETWORK set,
* but they don't have any file descriptor or path args to test.
static void
dumpio(struct tcb *tcp)
{
- int (*func)();
+ int sen;
if (syserror(tcp))
return;
if ((unsigned long) tcp->u_arg[0] >= num_quals)
return;
- func = tcp->s_ent->sys_func;
- if (func == printargs)
+ sen = tcp->s_ent->sen;
+ if (SEN_printargs == sen)
return;
if (qual_flags[tcp->u_arg[0]] & QUAL_READ) {
- if (func == sys_read ||
- func == sys_pread ||
- func == sys_recv ||
- func == sys_recvfrom) {
+ switch (sen) {
+ case SEN_read:
+ case SEN_pread:
+ case SEN_recv:
+ case SEN_recvfrom:
dumpstr(tcp, tcp->u_arg[1], tcp->u_rval);
return;
- } else if (func == sys_readv) {
+ case SEN_readv:
dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
return;
#ifdef HAVE_SENDMSG
- } else if (func == sys_recvmsg) {
+ case SEN_recvmsg:
dumpiov_in_msghdr(tcp, tcp->u_arg[1]);
return;
- } else if (func == sys_recvmmsg) {
+ case SEN_recvmmsg:
dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
return;
#endif
}
}
if (qual_flags[tcp->u_arg[0]] & QUAL_WRITE) {
- if (func == sys_write ||
- func == sys_pwrite ||
- func == sys_send ||
- func == sys_sendto)
+ switch (sen) {
+ case SEN_write:
+ case SEN_pwrite:
+ case SEN_send:
+ case SEN_sendto:
dumpstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
- else if (func == sys_writev)
+ break;
+ case SEN_writev:
dumpiov(tcp, tcp->u_arg[2], tcp->u_arg[1]);
+ break;
#ifdef HAVE_SENDMSG
- else if (func == sys_sendmsg)
+ case SEN_sendmsg:
dumpiov_in_msghdr(tcp, tcp->u_arg[1]);
- else if (func == sys_sendmmsg)
+ break;
+ case SEN_sendmmsg:
dumpiov_in_mmsghdr(tcp, tcp->u_arg[1]);
+ break;
#endif
+ }
}
}
}
#ifdef LINUX_MIPSO32
- if (sys_syscall == tcp->s_ent->sys_func)
+ if (SEN_syscall == tcp->s_ent->sen)
decode_mips_subcall(tcp);
#endif
- if ( sys_execve == tcp->s_ent->sys_func
+ if ( SEN_execve == tcp->s_ent->sen
# if defined(SPARC) || defined(SPARC64)
- || sys_execv == tcp->s_ent->sys_func
+ || SEN_execv == tcp->s_ent->sen
# endif
) {
hide_log_until_execve = 0;
}
#if defined(SYS_socket_subcall) || defined(SYS_ipc_subcall)
- while (1) {
+ switch (tcp->s_ent->sen) {
# ifdef SYS_socket_subcall
- if (tcp->s_ent->sys_func == sys_socketcall) {
+ case SEN_socketcall:
decode_socket_subcall(tcp);
break;
- }
# endif
# ifdef SYS_ipc_subcall
- if (tcp->s_ent->sys_func == sys_ipc) {
+ case SEN_ipc:
decode_ipc_subcall(tcp);
break;
- }
# endif
- break;
}
#endif
tprintf("%s(", undefined_scno_name(tcp));
else
tprintf("%s(", tcp->s_ent->sys_name);
- if ((tcp->qual_flg & QUAL_RAW) && tcp->s_ent->sys_func != sys_exit)
+ if ((tcp->qual_flg & QUAL_RAW) && SEN_exit != tcp->s_ent->sen)
res = printargs(tcp);
else
res = tcp->s_ent->sys_func(tcp);