eigrpctl pledges to use stdio and route.
authorrenato <renato@openbsd.org>
Sat, 10 Oct 2015 05:06:00 +0000 (05:06 +0000)
committerrenato <renato@openbsd.org>
Sat, 10 Oct 2015 05:06:00 +0000 (05:06 +0000)
ok deraadt

usr.sbin/eigrpctl/eigrpctl.c

index 1810dbd..98f0bd2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: eigrpctl.c,v 1.1 2015/10/02 04:31:52 renato Exp $ */
+/*     $OpenBSD: eigrpctl.c,v 1.2 2015/10/10 05:06:00 renato Exp $ */
 
 /*
  * Copyright (c) 2015 Renato Westphal <renato@openbsd.org>
@@ -97,6 +97,9 @@ main(int argc, char *argv[])
        if (connect(ctl_sock, (struct sockaddr *)&sun, sizeof(sun)) == -1)
                err(1, "connect: %s", EIGRPD_SOCKET);
 
+       if (pledge("stdio route", NULL) == -1)
+               err(1, "tame");
+
        if ((ibuf = malloc(sizeof(struct imsgbuf))) == NULL)
                err(1, NULL);
        imsg_init(ibuf, ctl_sock);