From: deraadt Date: Sat, 10 Oct 2015 22:11:37 +0000 (+0000) Subject: pledge "stdio route"; untested. this has the if_nametoindex() problem as X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=bc3fb1a1aadc9cad8d309fad5b319ec1cb1ca6d3;p=openbsd pledge "stdio route"; untested. this has the if_nametoindex() problem as other *ctl programs using their daemon's log.c, and thus requires "route" for now. we hope to solve that issue soon. --- diff --git a/usr.sbin/dvmrpctl/dvmrpctl.c b/usr.sbin/dvmrpctl/dvmrpctl.c index 1117eecc6ea..d0ed2d87b7e 100644 --- a/usr.sbin/dvmrpctl/dvmrpctl.c +++ b/usr.sbin/dvmrpctl/dvmrpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dvmrpctl.c,v 1.12 2015/09/27 17:29:45 stsp Exp $ */ +/* $OpenBSD: dvmrpctl.c,v 1.13 2015/10/10 22:11:37 deraadt Exp $ */ /* * Copyright (c) 2005 Claudio Jeker @@ -95,6 +95,9 @@ main(int argc, char *argv[]) if (connect(ctl_sock, (struct sockaddr *)&sun, sizeof(sun)) == -1) err(1, "connect: %s", DVMRPD_SOCKET); + if (pledge("stdio route", NULL) == -1) + err(1, "pledge"); + if ((ibuf = malloc(sizeof(struct imsgbuf))) == NULL) fatal(NULL); imsg_init(ibuf, ctl_sock);