diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2015-10-09 12:07:33 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2015-10-09 12:07:33 +0000 |
commit | f357fd1f6f337d7f496966c82bac5f93156997d1 (patch) | |
tree | f66835c90e1119dda92446d46c89c04e459f0129 /usr.sbin/syslogd/syslogd.c | |
parent | c50e4b62a156f8b9d029c2dcf981fd9c2023364f (diff) |
Tame syslogd privsep child with "stdio rpath unix inet recvfd".
With and OK deraadt@
Diffstat (limited to 'usr.sbin/syslogd/syslogd.c')
-rw-r--r-- | usr.sbin/syslogd/syslogd.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/syslogd/syslogd.c b/usr.sbin/syslogd/syslogd.c index dbb557c97e1..41d64df0c90 100644 --- a/usr.sbin/syslogd/syslogd.c +++ b/usr.sbin/syslogd/syslogd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: syslogd.c,v 1.190 2015/09/29 03:19:23 guenther Exp $ */ +/* $OpenBSD: syslogd.c,v 1.191 2015/10/09 12:07:32 bluhm Exp $ */ /* * Copyright (c) 1983, 1988, 1993, 1994 @@ -593,6 +593,9 @@ main(int argc, char *argv[]) if (priv_init(ConfFile, NoDNS, lockpipe[1], nullfd, argv) < 0) errx(1, "unable to privsep"); + if (tame("stdio rpath unix inet recvfd", NULL) == -1) + err(1, "tame"); + /* Process is now unprivileged and inside a chroot */ event_init(); |