diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2014-11-16 21:05:25 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2014-11-16 21:05:25 +0000 |
commit | 56b7257d2aff5d970d033e895080664dbe028674 (patch) | |
tree | 4e4c592161e255527363ea24d34df6a1709fa466 | |
parent | 2238b0b63e37f1592c9327215df660e45440979a (diff) |
Move some memory allocations/initialization and file reading to
after forking the privileged process, which should not be reading
those bits. No intentional functional change.
-rw-r--r-- | sbin/dhclient/dhclient.c | 82 |
1 files changed, 43 insertions, 39 deletions
diff --git a/sbin/dhclient/dhclient.c b/sbin/dhclient/dhclient.c index b93d873ef8f..a1572c00b8c 100644 --- a/sbin/dhclient/dhclient.c +++ b/sbin/dhclient/dhclient.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dhclient.c,v 1.330 2014/11/15 00:12:52 krw Exp $ */ +/* $OpenBSD: dhclient.c,v 1.331 2014/11/16 21:05:24 krw Exp $ */ /* * Copyright 2004 Henning Brauer <henning@openbsd.org> @@ -462,20 +462,12 @@ main(int argc, char *argv[]) ifi = calloc(1, sizeof(*ifi)); if (ifi == NULL) error("ifi calloc"); - client = calloc(1, sizeof(*client)); - if (client == NULL) - error("client calloc"); - TAILQ_INIT(&client->leases); - TAILQ_INIT(&client->offered_leases); config = calloc(1, sizeof(*config)); if (config == NULL) error("config calloc"); TAILQ_INIT(&config->reject_list); get_ifname(argv[0]); - if (path_dhclient_db == NULL && asprintf(&path_dhclient_db, "%s.%s", - _PATH_DHCLIENT_DB, ifi->name) == -1) - error("asprintf"); tzset(); @@ -485,36 +477,7 @@ main(int argc, char *argv[]) error("setting routing table to %u: '%s'", ifi->rdomain, strerror(errno)); - read_client_conf(); - if (ignore_list) - apply_ignore_list(ignore_list); - - tailfd = open("/etc/resolv.conf.tail", O_RDONLY); - if (tailfd == -1) { - if (errno != ENOENT) - error("Cannot open /etc/resolv.conf.tail: %s", - strerror(errno)); - } else if (fstat(tailfd, &sb) == -1) { - error("Cannot stat /etc/resolv.conf.tail: %s", - strerror(errno)); - } else { - if (sb.st_size > 0 && sb.st_size < SIZE_MAX) { - config->resolv_tail = calloc(1, sb.st_size + 1); - if (config->resolv_tail == NULL) { - error("no memory for resolv.conf.tail " - "contents: %s", strerror(errno)); - } - tailn = read(tailfd, config->resolv_tail, sb.st_size); - if (tailn == -1) - error("Couldn't read resolv.conf.tail: %s", - strerror(errno)); - else if (tailn == 0) - error("Got no data from resolv.conf.tail"); - else if (tailn != sb.st_size) - error("Short read of resolv.conf.tail"); - } - close(tailfd); - } + read_client_conf(); /* Needed for config->link_timeout below! */ if (interface_status(ifi->name) == 0) { interface_link_forceup(ifi->name); @@ -563,6 +526,47 @@ main(int argc, char *argv[]) error("no memory for unpriv_ibuf"); imsg_init(unpriv_ibuf, socket_fd[1]); + if (path_dhclient_db == NULL && asprintf(&path_dhclient_db, "%s.%s", + _PATH_DHCLIENT_DB, ifi->name) == -1) + error("asprintf"); + + client = calloc(1, sizeof(*client)); + if (client == NULL) + error("client calloc"); + TAILQ_INIT(&client->leases); + TAILQ_INIT(&client->offered_leases); + + /* 2nd stage (post fork) config setup. */ + if (ignore_list) + apply_ignore_list(ignore_list); + + tailfd = open("/etc/resolv.conf.tail", O_RDONLY); + if (tailfd == -1) { + if (errno != ENOENT) + error("Cannot open /etc/resolv.conf.tail: %s", + strerror(errno)); + } else if (fstat(tailfd, &sb) == -1) { + error("Cannot stat /etc/resolv.conf.tail: %s", + strerror(errno)); + } else { + if (sb.st_size > 0 && sb.st_size < SIZE_MAX) { + config->resolv_tail = calloc(1, sb.st_size + 1); + if (config->resolv_tail == NULL) { + error("no memory for resolv.conf.tail " + "contents: %s", strerror(errno)); + } + tailn = read(tailfd, config->resolv_tail, sb.st_size); + if (tailn == -1) + error("Couldn't read resolv.conf.tail: %s", + strerror(errno)); + else if (tailn == 0) + error("Got no data from resolv.conf.tail"); + else if (tailn != sb.st_size) + error("Short read of resolv.conf.tail"); + } + close(tailfd); + } + if ((fd = open(path_dhclient_db, O_RDONLY|O_EXLOCK|O_CREAT|O_NOFOLLOW, 0640)) == -1) error("can't open and lock %s: %s", path_dhclient_db, |