aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/truss
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2017-06-02 22:35:18 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2017-06-02 22:35:18 +0000
commitebb2cc40d1f62e204166a72f9141416c16c11210 (patch)
treedfc90aead38024979121650ca45d5140908c4a4d /usr.bin/truss
parente2005cef7fae8dfde46aae0f2e334c574b043162 (diff)
downloadsrc-ebb2cc40d1f62e204166a72f9141416c16c11210.tar.gz
src-ebb2cc40d1f62e204166a72f9141416c16c11210.zip
Decode the argument passed to cap_getmode().
The returned integer value is output.
Notes
Notes: svn path=/head/; revision=319509
Diffstat (limited to 'usr.bin/truss')
-rw-r--r--usr.bin/truss/syscall.h2
-rw-r--r--usr.bin/truss/syscalls.c12
2 files changed, 13 insertions, 1 deletions
diff --git a/usr.bin/truss/syscall.h b/usr.bin/truss/syscall.h
index f0b39b468bbf..6c6babb5b241 100644
--- a/usr.bin/truss/syscall.h
+++ b/usr.bin/truss/syscall.h
@@ -48,7 +48,7 @@ enum Argtype { None = 1, Hex, Octal, Int, UInt, LongHex, Name, Ptr, Stat, Ioctl,
Sysarch, ExecArgs, ExecEnv, PipeFds, QuadHex, Utrace, IntArray, Pipe2,
CapFcntlRights, Fadvice, FileFlags, Flockop, Getfsstatmode, Kldsymcmd,
Kldunloadflags, Sizet, Madvice, Socklent, Sockprotocol, Sockoptlevel,
- Sockoptname, Msgflags, CapRights,
+ Sockoptname, Msgflags, CapRights, PUInt,
CloudABIAdvice, CloudABIClockID, ClouduABIFDSFlags,
CloudABIFDStat, CloudABIFileStat, CloudABIFileType,
diff --git a/usr.bin/truss/syscalls.c b/usr.bin/truss/syscalls.c
index f8c1943125ec..f4195642276d 100644
--- a/usr.bin/truss/syscalls.c
+++ b/usr.bin/truss/syscalls.c
@@ -99,6 +99,8 @@ static struct syscall decoded_syscalls[] = {
.args = { { Int, 0 }, { CapFcntlRights | OUT, 1 } } },
{ .name = "cap_fcntls_limit", .ret_type = 1, .nargs = 2,
.args = { { Int, 0 }, { CapFcntlRights, 1 } } },
+ { .name = "cap_getmode", .ret_type = 1, .nargs = 1,
+ .args = { { PUInt | OUT, 0 } } },
{ .name = "cap_rights_limit", .ret_type = 1, .nargs = 2,
.args = { { Int, 0 }, { CapRights, 1 } } },
{ .name = "chdir", .ret_type = 1, .nargs = 1,
@@ -1190,6 +1192,16 @@ print_arg(struct syscall_args *sc, unsigned long *args, long *retval,
case UInt:
fprintf(fp, "%u", (unsigned int)args[sc->offset]);
break;
+ case PUInt: {
+ unsigned int val;
+
+ if (get_struct(pid, (void *)args[sc->offset], &val,
+ sizeof(val)) == 0)
+ fprintf(fp, "{ %u }", val);
+ else
+ fprintf(fp, "0x%lx", args[sc->offset]);
+ break;
+ }
case LongHex:
fprintf(fp, "0x%lx", args[sc->offset]);
break;