diff options
author | Doug Hogan <doug@cvs.openbsd.org> | 2015-10-10 22:28:52 +0000 |
---|---|---|
committer | Doug Hogan <doug@cvs.openbsd.org> | 2015-10-10 22:28:52 +0000 |
commit | f3387a448636cc68a1b808bebb2d1be7dc9fdb1a (patch) | |
tree | ffee9f85c8d2f7db098aeb18105934f93aa237a6 /usr.bin/openssl/pkey.c | |
parent | 39255032ff4a0f6ea77ba504e5dd2595bbff43ce (diff) |
Initial support for pledges in openssl(1) commands.
openssl(1) has two mechanisms for operating: either a single execution
of one command (looking at argv[0] or argv[1]) or as an interactive
session than may execute any number of commands.
We already have a top level pledge that should cover all commands
and that's what interactive mode must continue using. However, we can
tighten up the pledges when only executing one command.
This is an initial stab at support and may contain regressions. Most
commands only need "stdio rpath wpath cpath". The pledges could be
further restricted by evaluating the situation after parsing options.
deraadt@ and beck@ are roughly fine with this approach.
Diffstat (limited to 'usr.bin/openssl/pkey.c')
-rw-r--r-- | usr.bin/openssl/pkey.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/openssl/pkey.c b/usr.bin/openssl/pkey.c index 72c03181f68..d1ddf5a9299 100644 --- a/usr.bin/openssl/pkey.c +++ b/usr.bin/openssl/pkey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pkey.c,v 1.5 2015/09/11 14:30:23 bcook Exp $ */ +/* $OpenBSD: pkey.c,v 1.6 2015/10/10 22:28:51 doug Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006 */ @@ -79,6 +79,11 @@ pkey_main(int argc, char **argv) int badarg = 0; int ret = 1; + if (single_execution) { + if (pledge("stdio rpath wpath cpath", NULL) == -1) + perror("pledge"); + } + informat = FORMAT_PEM; outformat = FORMAT_PEM; |