From e68cdf9c4ff71199f81313b1e5c8618f7c57ac33 Mon Sep 17 00:00:00 2001 From: tuexen Date: Sat, 7 Apr 2018 21:01:43 +0000 Subject: MFC r327967: Improve support for sctp_generic_recvmsg() and sctp_generic_sendmsg() and add support for sctp_generic_sendmsg_iov(). Handle the struct iovec argument and the struct sctp_sndrcvinfo arguments. --- usr.bin/truss/syscall.h | 2 +- usr.bin/truss/syscalls.c | 42 +++++++++++++++++++++++++++++++++++++----- 2 files changed, 38 insertions(+), 6 deletions(-) (limited to 'usr.bin') diff --git a/usr.bin/truss/syscall.h b/usr.bin/truss/syscall.h index 5034742..b39594b 100644 --- a/usr.bin/truss/syscall.h +++ b/usr.bin/truss/syscall.h @@ -81,7 +81,7 @@ enum Argtype { None = 1, Hex, Octal, Int, UInt, LongHex, Name, Ptr, Stat, Ioctl, Sockoptname, Msgflags, CapRights, PUInt, PQuadHex, Acltype, Extattrnamespace, Minherit, Mlockall, Mountflags, Msync, Priowhich, Ptraceop, Quotactlcmd, Reboothowto, Rtpriofunc, Schedpolicy, Schedparam, - PSig, Siginfo, Kevent11, Iovec, + PSig, Siginfo, Kevent11, Iovec, Sctpsndrcvinfo, CloudABIAdvice, CloudABIClockID, ClouduABIFDSFlags, CloudABIFDStat, CloudABIFileStat, CloudABIFileType, diff --git a/usr.bin/truss/syscalls.c b/usr.bin/truss/syscalls.c index 364119a..80fcba0 100644 --- a/usr.bin/truss/syscalls.c +++ b/usr.bin/truss/syscalls.c @@ -49,6 +49,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include @@ -412,13 +413,17 @@ static struct syscall decoded_syscalls[] = { { .name = "sched_setscheduler", .ret_type = 1, .nargs = 3, .args = { { Int, 0 }, { Schedpolicy, 1 }, { Schedparam, 2 } } }, { .name = "sctp_generic_recvmsg", .ret_type = 1, .nargs = 7, - .args = { { Int, 0 }, { Ptr | IN, 1 }, { Int, 2 }, - { Sockaddr | OUT, 3 }, { Ptr | OUT, 4 }, { Ptr | OUT, 5 }, - { Ptr | OUT, 6 } } }, + .args = { { Int, 0 }, { Iovec | OUT, 1 }, { Int, 2 }, + { Sockaddr | OUT, 3 }, { Ptr | OUT, 4 }, + { Sctpsndrcvinfo | OUT, 5 }, { Ptr | OUT, 6 } } }, { .name = "sctp_generic_sendmsg", .ret_type = 1, .nargs = 7, .args = { { Int, 0 }, { BinString | IN, 1 }, { Int, 2 }, - { Sockaddr | IN, 3 }, { Socklent, 4 }, { Ptr | IN, 5 }, - { Msgflags, 6 } } }, + { Sockaddr | IN, 3 }, { Socklent, 4 }, + { Sctpsndrcvinfo | IN, 5 }, { Msgflags, 6 } } }, + { .name = "sctp_generic_sendmsg_iov", .ret_type = 1, .nargs = 7, + .args = { { Int, 0 }, { Iovec | IN, 1 }, { Int, 2 }, + { Sockaddr | IN, 3 }, { Socklent, 4 }, + { Sctpsndrcvinfo | IN, 5 }, { Msgflags, 6 } } }, { .name = "select", .ret_type = 1, .nargs = 5, .args = { { Int, 0 }, { Fd_set, 1 }, { Fd_set, 2 }, { Fd_set, 3 }, { Timeval, 4 } } }, @@ -2130,6 +2135,33 @@ print_arg(struct syscall_args *sc, unsigned long *args, long *retval, fprintf(fp, "%s%s", iov_truncated ? ",..." : "", "]"); break; } + case Sctpsndrcvinfo: { + struct sctp_sndrcvinfo info; + + if (get_struct(pid, (void *)args[sc->offset], + &info, sizeof(struct sctp_sndrcvinfo)) == -1) { + fprintf(fp, "0x%lx", args[sc->offset]); + break; + } + fprintf(fp, "{sid=%u,", info.sinfo_stream); + if (sc->type & OUT) { + fprintf(fp, "ssn=%u,", info.sinfo_ssn); + } + fputs("flgs=", fp); + sysdecode_sctp_sinfo_flags(fp, info.sinfo_flags); + fprintf(fp, ",ppid=%u,", ntohl(info.sinfo_ppid)); + /* Can't use IN here, since IN is 0 */ + if ((sc->type & OUT) == 0) { + fprintf(fp, "ctx=%u,", info.sinfo_context); + fprintf(fp, "ttl=%u,", info.sinfo_timetolive); + } + if (sc->type & OUT) { + fprintf(fp, "tsn=%u,", info.sinfo_tsn); + fprintf(fp, "cumtsn=%u,", info.sinfo_cumtsn); + } + fprintf(fp, "id=%u}", info.sinfo_assoc_id); + break; + } case CloudABIAdvice: fputs(xlookup(cloudabi_advice, args[sc->offset]), fp); -- cgit v1.1