aboutsummaryrefslogtreecommitdiff
path: root/bin/ps/print.c
diff options
context:
space:
mode:
authorEdward Tomasz Napierala <trasz@FreeBSD.org>2017-09-06 16:34:42 +0000
committerEdward Tomasz Napierala <trasz@FreeBSD.org>2017-09-06 16:34:42 +0000
commit6f47d67bfefaeb4117a6acd1c6d9dd00281280dc (patch)
treeabf4b9a616f41c26d959fb3e65f26da7790f12ee /bin/ps/print.c
parent2c73c414eb0b7cb81e3142d98733f3be429f2abf (diff)
downloadsrc-6f47d67bfefaeb4117a6acd1c6d9dd00281280dc.tar.gz
src-6f47d67bfefaeb4117a6acd1c6d9dd00281280dc.zip
Make ps(1) flag processes in capsicum(4) capability mode with "C".
Obtained from: CheriBSD MFC after: 2 weeks Sponsored by: DARPA, AFRL
Notes
Notes: svn path=/head/; revision=323228
Diffstat (limited to 'bin/ps/print.c')
-rw-r--r--bin/ps/print.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/ps/print.c b/bin/ps/print.c
index 3c8214a3bb37..cb63369a3992 100644
--- a/bin/ps/print.c
+++ b/bin/ps/print.c
@@ -274,6 +274,8 @@ state(KINFO *k, VARENT *ve __unused)
*cp++ = 'V';
if ((flag & P_SYSTEM) || k->ki_p->ki_lock > 0)
*cp++ = 'L';
+ if ((k->ki_p->ki_cr_flags & CRED_FLAG_CAPMODE) != 0)
+ *cp++ = 'C';
if (k->ki_p->ki_kiflag & KI_SLEADER)
*cp++ = 's';
if ((flag & P_CONTROLT) && k->ki_p->ki_pgid == k->ki_p->ki_tpgid)