summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authortuexen <tuexen@FreeBSD.org>2018-04-07 21:01:43 +0000
committertuexen <tuexen@FreeBSD.org>2018-04-07 21:01:43 +0000
commite68cdf9c4ff71199f81313b1e5c8618f7c57ac33 (patch)
treecc1dd6a9e1ade3cbad682a5d2076e8b1221cdb45 /usr.bin
parent430d0ac850f95c95107c9c6fdafc1b400bc40ed1 (diff)
downloadFreeBSD-src-e68cdf9c4ff71199f81313b1e5c8618f7c57ac33.zip
FreeBSD-src-e68cdf9c4ff71199f81313b1e5c8618f7c57ac33.tar.gz
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.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/truss/syscall.h2
-rw-r--r--usr.bin/truss/syscalls.c42
2 files changed, 38 insertions, 6 deletions
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 <sys/un.h>
#include <sys/wait.h>
#include <netinet/in.h>
+#include <netinet/sctp.h>
#include <arpa/inet.h>
#include <assert.h>
@@ -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);
OpenPOWER on IntegriCloud