svn commit: r317731 - head/usr.bin/truss
Michael Tuexen
tuexen at FreeBSD.org
Wed May 3 09:20:38 UTC 2017
Author: tuexen
Date: Wed May 3 09:20:36 2017
New Revision: 317731
URL: https://svnweb.freebsd.org/changeset/base/317731
Log:
Add Socklent for handling args of type socklen_t.
Modified:
head/usr.bin/truss/syscall.h
head/usr.bin/truss/syscalls.c
Modified: head/usr.bin/truss/syscall.h
==============================================================================
--- head/usr.bin/truss/syscall.h Wed May 3 09:09:34 2017 (r317730)
+++ head/usr.bin/truss/syscall.h Wed May 3 09:20:36 2017 (r317731)
@@ -46,7 +46,7 @@ enum Argtype { None = 1, Hex, Octal, Int
LinuxSockArgs, Umtxop, Atfd, Atflags, Timespec2, Accessmode, Long,
Sysarch, ExecArgs, ExecEnv, PipeFds, QuadHex, Utrace, IntArray, Pipe2,
CapFcntlRights, Fadvice, FileFlags, Flockop, Getfsstatmode, Kldsymcmd,
- Kldunloadflags, Sizet, Madvice,
+ Kldunloadflags, Sizet, Madvice, Socklent,
CloudABIAdvice, CloudABIClockID, ClouduABIFDSFlags,
CloudABIFDStat, CloudABIFileStat, CloudABIFileType,
Modified: head/usr.bin/truss/syscalls.c
==============================================================================
--- head/usr.bin/truss/syscalls.c Wed May 3 09:09:34 2017 (r317730)
+++ head/usr.bin/truss/syscalls.c Wed May 3 09:20:36 2017 (r317731)
@@ -86,7 +86,7 @@ static struct syscall decoded_syscalls[]
{ .name = "access", .ret_type = 1, .nargs = 2,
.args = { { Name | IN, 0 }, { Accessmode, 1 } } },
{ .name = "bind", .ret_type = 1, .nargs = 3,
- .args = { { Int, 0 }, { Sockaddr | IN, 1 }, { Int, 2 } } },
+ .args = { { Int, 0 }, { Sockaddr | IN, 1 }, { Socklent, 2 } } },
{ .name = "bindat", .ret_type = 1, .nargs = 4,
.args = { { Atfd, 0 }, { Int, 1 }, { Sockaddr | IN, 2 },
{ Int, 3 } } },
@@ -114,7 +114,7 @@ static struct syscall decoded_syscalls[]
{ .name = "close", .ret_type = 1, .nargs = 1,
.args = { { Int, 0 } } },
{ .name = "connect", .ret_type = 1, .nargs = 3,
- .args = { { Int, 0 }, { Sockaddr | IN, 1 }, { Int, 2 } } },
+ .args = { { Int, 0 }, { Sockaddr | IN, 1 }, { Socklent, 2 } } },
{ .name = "connectat", .ret_type = 1, .nargs = 4,
.args = { { Atfd, 0 }, { Int, 1 }, { Sockaddr | IN, 2 },
{ Int, 3 } } },
@@ -290,7 +290,7 @@ static struct syscall decoded_syscalls[]
{ Timeval, 4 } } },
{ .name = "sendto", .ret_type = 1, .nargs = 6,
.args = { { Int, 0 }, { BinString | IN, 1 }, { Sizet, 2 }, { Hex, 3 },
- { Sockaddr | IN, 4 }, { Int | IN, 5 } } },
+ { Sockaddr | IN, 4 }, { Socklent | IN, 5 } } },
{ .name = "setitimer", .ret_type = 1, .nargs = 3,
.args = { { Int, 0 }, { Itimerval, 1 }, { Itimerval | OUT, 2 } } },
{ .name = "setrlimit", .ret_type = 1, .nargs = 2,
@@ -1914,6 +1914,9 @@ print_arg(struct syscall_args *sc, unsig
case Madvice:
print_integer_arg(sysdecode_madvice, fp, args[sc->offset]);
break;
+ case Socklent:
+ fprintf(fp, "%u", (socklen_t)args[sc->offset]);
+ break;
case CloudABIAdvice:
fputs(xlookup(cloudabi_advice, args[sc->offset]), fp);
More information about the svn-src-head
mailing list