pledge "stdio route"; untested. this has the if_nametoindex() problem as
authorderaadt <deraadt@openbsd.org>
Sat, 10 Oct 2015 22:11:37 +0000 (22:11 +0000)
committerderaadt <deraadt@openbsd.org>
Sat, 10 Oct 2015 22:11:37 +0000 (22:11 +0000)
other *ctl programs using their daemon's log.c, and thus requires "route"
for now.  we hope to solve that issue soon.

usr.sbin/dvmrpctl/dvmrpctl.c

index 1117eec..d0ed2d8 100644 (file)
@@ -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 <claudio@openbsd.org>
@@ -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);