1 /* $OpenBSD: src/sbin/dhclient/dhclient.c,v 1.119 2008/05/26 03:11:48 deraadt Exp $ */
4 * Copyright 2004 Henning Brauer <henning@openbsd.org>
5 * Copyright (c) 1995, 1996, 1997, 1998, 1999
6 * The Internet Software Consortium. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of The Internet Software Consortium nor the names
18 * of its contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INTERNET SOFTWARE CONSORTIUM AND
22 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
23 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 * DISCLAIMED. IN NO EVENT SHALL THE INTERNET SOFTWARE CONSORTIUM OR
26 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
29 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
30 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * This software has been written for the Internet Software Consortium
36 * by Ted Lemon <mellon@fugue.com> in cooperation with Vixie
37 * Enterprises. To learn more about the Internet Software Consortium,
38 * see ``http://www.vix.com/isc''. To learn more about Vixie
39 * Enterprises, see ``http://www.vix.com''.
41 * This client was substantially modified and enhanced by Elliot Poger
42 * for use on Linux while he was working on the MosquitoNet project at
45 * The current version owes much to Elliot's Linux enhancements, but
46 * was substantially reorganized and partially rewritten by Ted Lemon
47 * so as to use the same networking framework that the Internet Software
48 * Consortium DHCP server uses. Much system-specific configuration code
49 * was moved into a shell script so that as support for more operating
50 * systems is added, it will not be necessary to port and maintain
51 * system-specific configuration code to these operating systems - instead,
52 * the shell script can invoke the native tools to accomplish the same
64 #define CLIENT_PATH "PATH=/usr/bin:/usr/sbin:/bin:/sbin"
65 #define DEFAULT_LEASE_TIME 43200 /* 12 hours... */
66 #define TIME_MAX 2147483647
67 #define POLL_FAILURES 10
68 #define POLL_FAILURE_WAIT 1 /* Back off multiplier (seconds) */
72 char *path_dhclient_conf = _PATH_DHCLIENT_CONF;
73 char *path_dhclient_db = NULL;
82 struct iaddr iaddr_broadcast = { 4, { 255, 255, 255, 255 } };
83 struct in_addr inaddr_any;
84 struct sockaddr_in sockaddr_broadcast;
86 struct interface_info *ifi;
87 struct client_state *client;
88 struct client_config *config;
90 int findproto(char *, int);
91 struct sockaddr *get_ifa(char *, int);
93 int check_option(struct client_lease *l, int option);
94 int ipv4addrs(char * buf);
95 int res_hnok(const char *dn);
96 char *option_as_string(unsigned int code, unsigned char *data, int len);
97 int fork_privchld(int, int);
100 ((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
101 #define ADVANCE(x, n) (x += ROUNDUP((n)->sa_len))
104 static FILE *leaseFile;
107 findproto(char *cp, int n)
114 for (i = 1; i; i <<= 1) {
116 sa = (struct sockaddr *)cp;
122 if (sa->sa_family == AF_INET)
124 if (sa->sa_family == AF_INET6)
137 get_ifa(char *cp, int n)
144 for (i = 1; i; i <<= 1)
146 sa = (struct sockaddr *)cp;
154 struct iaddr defaddr = { .len = 4 }; /* NULL is for silence warnings */
162 struct rt_msghdr *rtm;
163 struct if_msghdr *ifm;
164 struct ifa_msghdr *ifam;
165 struct if_announcemsghdr *ifan;
166 struct client_lease *l;
167 time_t t = time(NULL);
173 n = read(routefd, &msg, sizeof(msg));
174 } while (n == -1 && errno == EINTR);
176 rtm = (struct rt_msghdr *)msg;
177 if (n < sizeof(rtm->rtm_msglen) || n < rtm->rtm_msglen ||
178 rtm->rtm_version != RTM_VERSION)
181 switch (rtm->rtm_type) {
183 ifam = (struct ifa_msghdr *)rtm;
184 if (ifam->ifam_index != ifi->index)
186 if (findproto((char *)(ifam + 1), ifam->ifam_addrs) != AF_INET)
188 sa = get_ifa((char *)(ifam + 1), ifam->ifam_addrs);
192 if ((a.len = sizeof(struct in_addr)) > sizeof(a.iabuf))
193 error("king bula sez: len mismatch");
194 memcpy(a.iabuf, &((struct sockaddr_in *)sa)->sin_addr, a.len);
195 if (addr_eq(a, defaddr))
198 for (l = client->active; l != NULL; l = l->next)
199 if (addr_eq(a, l->address))
202 if (l != NULL || (client->alias &&
203 addr_eq(a, client->alias->address)))
204 /* new addr is the one we set */
209 ifam = (struct ifa_msghdr *)rtm;
210 if (ifam->ifam_index != ifi->index)
212 if (findproto((char *)(ifam + 1), ifam->ifam_addrs) != AF_INET)
214 if (scripttime == 0 || t < scripttime + 10)
218 ifm = (struct if_msghdr *)rtm;
219 if (ifm->ifm_index != ifi->index)
221 if ((rtm->rtm_flags & RTF_UP) == 0)
225 LINK_STATE_IS_UP(ifm->ifm_data.ifi_link_state) ? 1 : 0;
226 if (linkstat != ifi->linkstat) {
227 debug("link state %s -> %s",
228 ifi->linkstat ? "up" : "down",
229 linkstat ? "up" : "down");
230 ifi->linkstat = interface_link_status(ifi->name);
232 client->state = S_INIT;
238 ifan = (struct if_announcemsghdr *)rtm;
239 if (ifan->ifan_what == IFAN_DEPARTURE &&
240 ifan->ifan_index == ifi->index)
249 script_init("FAIL", NULL);
251 script_write_params("alias_", client->alias);
257 main(int argc, char *argv[])
259 int ch, fd, quiet = 0, i = 0, pipe_fd[2];
262 /* Initially, log errors to stderr as well as to syslogd. */
263 openlog(getprogname(), LOG_PID | LOG_NDELAY, DHCPD_LOG_FACILITY);
264 setlogmask(LOG_UPTO(LOG_INFO));
266 while ((ch = getopt(argc, argv, "c:dl:qu")) != -1)
269 path_dhclient_conf = optarg;
275 path_dhclient_db = optarg;
293 ifi = calloc(1, sizeof(*ifi));
296 client = calloc(1, sizeof(*client));
298 error("client calloc");
299 config = calloc(1, sizeof(*config));
301 error("config calloc");
303 if (strlcpy(ifi->name, argv[0], IFNAMSIZ) >= IFNAMSIZ)
304 error("Interface name too long");
305 if (path_dhclient_db == NULL && asprintf(&path_dhclient_db, "%s.%s",
306 _PATH_DHCLIENT_DB, ifi->name) == -1)
315 memset(&sockaddr_broadcast, 0, sizeof(sockaddr_broadcast));
316 sockaddr_broadcast.sin_family = AF_INET;
317 sockaddr_broadcast.sin_port = htons(REMOTE_PORT);
318 sockaddr_broadcast.sin_addr.s_addr = INADDR_BROADCAST;
319 sockaddr_broadcast.sin_len = sizeof(sockaddr_broadcast);
320 inaddr_any.s_addr = INADDR_ANY;
324 if (interface_status(ifi->name) == 0) {
325 interface_link_forceup(ifi->name);
326 /* Give it up to 4 seconds of silent grace to find link */
331 while (!(ifi->linkstat = interface_link_status(ifi->name))) {
333 fprintf(stderr, "%s: no link ...", ifi->name);
335 fprintf(stderr, ".");
337 if (++i > config->link_timeout) {
338 fprintf(stderr, " sleeping\n");
344 fprintf(stderr, " got link\n");
347 if ((nullfd = open(_PATH_DEVNULL, O_RDWR, 0)) == -1)
348 error("cannot open %s: %m", _PATH_DEVNULL);
350 if ((pw = getpwnam("_dhcp")) == NULL) {
351 warning("no such user: _dhcp, falling back to \"nobody\"");
352 if ((pw = getpwnam("nobody")) == NULL)
353 error("no such user: nobody");
356 if (pipe(pipe_fd) == -1)
359 fork_privchld(pipe_fd[0], pipe_fd[1]);
364 if ((fd = open(path_dhclient_db, O_RDONLY|O_EXLOCK|O_CREAT, 0)) == -1)
365 error("can't open and lock %s: %m", path_dhclient_db);
366 read_client_leases();
367 if ((leaseFile = fopen(path_dhclient_db, "w")) == NULL)
368 error("can't open %s: %m", path_dhclient_db);
369 rewrite_client_leases();
372 priv_script_init("PREINIT", NULL);
374 priv_script_write_params("alias_", client->alias);
377 if ((routefd = socket(PF_ROUTE, SOCK_RAW, 0)) == -1)
378 error("socket(PF_ROUTE, SOCK_RAW): %m");
380 /* set up the interface */
381 discover_interface();
383 if (chroot(_PATH_VAREMPTY) == -1)
385 if (chdir("/") == -1)
386 error("chdir(\"/\")");
388 if (setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) == -1)
390 if (setgroups(1, &pw->pw_gid) == -1)
392 if (setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid) == -1)
397 setproctitle("%s", ifi->name);
400 client->state = S_INIT;
414 fprintf(stderr, "usage: %s [-dqu] [-c file] [-l file] interface\n",
422 * Each routine is called from the dhclient_state_machine() in one of
424 * -> entering INIT state
425 * -> recvpacket_flag == 0: timeout in this state
426 * -> otherwise: received a packet in this state
428 * Return conditions as handled by dhclient_state_machine():
429 * Returns 1, sendpacket_flag = 1: send packet, reset timer.
430 * Returns 1, sendpacket_flag = 0: just reset the timer (wait for a milestone).
431 * Returns 0: finish the nap which was interrupted for no good reason.
433 * Several per-interface variables are used to keep track of the process:
434 * active_lease: the lease that is being used on the interface
435 * (null pointer if not configured yet).
436 * offered_leases: leases corresponding to DHCPOFFER messages that have
437 * been sent to us by DHCP servers.
438 * acked_leases: leases corresponding to DHCPACK messages that have been
439 * sent to us by DHCP servers.
440 * sendpacket: DHCP packet we're trying to send.
441 * destination: IP address to send sendpacket to
442 * In addition, there are several relevant per-lease variables.
443 * T1_expiry, T2_expiry, lease_expiry: lease milestones
444 * In the active lease, these control the process of renewing the lease;
445 * In leases on the acked_leases list, this simply determines when we
446 * can no longer legitimately use the lease.
451 /* If we don't remember an active lease, go straight to INIT. */
452 if (!client->active || client->active->is_bootp) {
457 /* We are in the rebooting state. */
458 client->state = S_REBOOTING;
460 /* make_request doesn't initialize xid because it normally comes
461 from the DHCPDISCOVER, but we haven't sent a DHCPDISCOVER,
462 so pick an xid now. */
463 client->xid = arc4random();
465 /* Make a DHCPREQUEST packet, and set appropriate per-interface
467 make_request(client->active);
468 client->destination = iaddr_broadcast;
469 client->first_sending = cur_time;
470 client->interval = config->initial_interval;
472 /* Zap the medium list... */
473 client->medium = NULL;
475 /* Send out the first DHCPREQUEST packet. */
480 * Called when a lease has completely expired and we've
481 * been unable to renew it.
486 /* Make a DHCPDISCOVER packet, and set appropriate per-interface
488 make_discover(client->active);
489 client->xid = client->packet.xid;
490 client->destination = iaddr_broadcast;
491 client->state = S_SELECTING;
492 client->first_sending = cur_time;
493 client->interval = config->initial_interval;
495 /* Add an immediate timeout to cause the first DHCPDISCOVER packet
501 * state_selecting is called when one or more DHCPOFFER packets
502 * have been received and a configurable period of time has passed.
505 state_selecting(void)
507 struct client_lease *lp, *next, *picked;
509 /* Cancel state_selecting and send_discover timeouts, since either
510 one could have got us here. */
511 cancel_timeout(state_selecting);
512 cancel_timeout(send_discover);
514 /* We have received one or more DHCPOFFER packets. Currently,
515 the only criterion by which we judge leases is whether or
516 not we get a response when we arp for them. */
518 for (lp = client->offered_leases; lp; lp = next) {
521 /* Check to see if we got an ARPREPLY for the address
522 in this particular lease. */
524 script_init("ARPCHECK", lp->medium);
525 script_write_params("check_", lp);
527 /* If the ARPCHECK code detects another
528 machine using the offered address, it exits
529 nonzero. We need to send a DHCPDECLINE and
540 free_client_lease(lp);
543 client->offered_leases = NULL;
545 /* If we just tossed all the leases we were offered, go back
548 client->state = S_INIT;
553 /* If it was a BOOTREPLY, we can just take the address right now. */
554 if (!picked->options[DHO_DHCP_MESSAGE_TYPE].len) {
555 client->new = picked;
557 /* Make up some lease expiry times
558 XXX these should be configurable. */
559 client->new->expiry = cur_time + 12000;
560 client->new->renewal += cur_time + 8000;
561 client->new->rebind += cur_time + 10000;
563 client->state = S_REQUESTING;
565 /* Bind to the address we received. */
570 /* Go to the REQUESTING state. */
571 client->destination = iaddr_broadcast;
572 client->state = S_REQUESTING;
573 client->first_sending = cur_time;
574 client->interval = config->initial_interval;
576 /* Make a DHCPREQUEST packet from the lease we picked. */
577 make_request(picked);
578 client->xid = client->packet.xid;
580 /* Toss the lease we picked - we'll get it back in a DHCPACK. */
581 free_client_lease(picked);
583 /* Add an immediate timeout to send the first DHCPREQUEST packet. */
588 dhcpack(struct iaddr client_addr, struct option_data *options)
590 struct client_lease *lease;
592 if (client->xid != client->packet.xid)
595 if (client->state != S_REBOOTING &&
596 client->state != S_REQUESTING &&
597 client->state != S_RENEWING &&
598 client->state != S_REBINDING)
601 note("DHCPACK from %s", piaddr(client_addr));
603 lease = packet_to_lease(options);
605 note("packet_to_lease failed.");
611 /* Stop resending DHCPREQUEST. */
612 cancel_timeout(send_request);
614 /* Figure out the lease time. */
615 if (client->new->options[DHO_DHCP_LEASE_TIME].data)
616 client->new->expiry =
617 getULong(client->new->options[DHO_DHCP_LEASE_TIME].data);
619 client->new->expiry = DEFAULT_LEASE_TIME;
620 /* A number that looks negative here is really just very large,
621 because the lease expiry offset is unsigned. */
622 if (client->new->expiry < 0)
623 client->new->expiry = TIME_MAX;
624 /* XXX should be fixed by resetting the client state */
625 if (client->new->expiry < 60)
626 client->new->expiry = 60;
628 /* Take the server-provided renewal time if there is one;
629 otherwise figure it out according to the spec. */
630 if (client->new->options[DHO_DHCP_RENEWAL_TIME].len)
631 client->new->renewal =
632 getULong(client->new->options[DHO_DHCP_RENEWAL_TIME].data);
634 client->new->renewal = client->new->expiry / 2;
636 /* Same deal with the rebind time. */
637 if (client->new->options[DHO_DHCP_REBINDING_TIME].len)
638 client->new->rebind =
639 getULong(client->new->options[DHO_DHCP_REBINDING_TIME].data);
641 client->new->rebind = client->new->renewal +
642 client->new->renewal / 2 + client->new->renewal / 4;
644 client->new->expiry += cur_time;
645 /* Lease lengths can never be negative. */
646 if (client->new->expiry < cur_time)
647 client->new->expiry = TIME_MAX;
648 client->new->renewal += cur_time;
649 if (client->new->renewal < cur_time)
650 client->new->renewal = TIME_MAX;
651 client->new->rebind += cur_time;
652 if (client->new->rebind < cur_time)
653 client->new->rebind = TIME_MAX;
661 /* Remember the medium. */
662 client->new->medium = client->medium;
664 /* Write out the new lease. */
665 write_client_lease(client->new, 0);
667 /* Run the client script with the new parameters. */
668 script_init((client->state == S_REQUESTING ? "BOUND" :
669 (client->state == S_RENEWING ? "RENEW" :
670 (client->state == S_REBOOTING ? "REBOOT" : "REBIND"))),
671 client->new->medium);
672 if (client->active && client->state != S_REBOOTING)
673 script_write_params("old_", client->active);
674 script_write_params("new_", client->new);
676 script_write_params("alias_", client->alias);
679 /* Replace the old active lease with the new one. */
681 free_client_lease(client->active);
682 client->active = client->new;
685 /* Set up a timeout to start the renewal process. */
686 add_timeout(client->active->renewal, state_bound);
688 note("bound to %s -- renewal in %ld seconds.",
689 piaddr(client->active->address),
690 client->active->renewal - cur_time);
691 client->state = S_BOUND;
692 reinitialize_interface();
697 * state_bound is called when we've successfully bound to a particular
698 * lease, but the renewal time on that lease has expired. We are
699 * expected to unicast a DHCPREQUEST to the server that gave us our
705 /* T1 has expired. */
706 make_request(client->active);
707 client->xid = client->packet.xid;
709 if (client->active->options[DHO_DHCP_SERVER_IDENTIFIER].len == 4) {
710 memcpy(client->destination.iabuf,
711 client->active->options[DHO_DHCP_SERVER_IDENTIFIER].data,
713 client->destination.len = 4;
715 client->destination = iaddr_broadcast;
717 client->first_sending = cur_time;
718 client->interval = config->initial_interval;
719 client->state = S_RENEWING;
721 /* Send the first packet immediately. */
726 dhcpoffer(struct iaddr client_addr, struct option_data *options)
728 struct client_lease *lease, *lp;
730 int arp_timeout_needed, stop_selecting;
731 char *name = options[DHO_DHCP_MESSAGE_TYPE].len ? "DHCPOFFER" :
734 if (client->xid != client->packet.xid)
737 if (client->state != S_SELECTING)
740 note("%s from %s", name, piaddr(client_addr));
742 /* If this lease doesn't supply the minimum required parameters,
744 for (i = 0; config->required_options[i]; i++) {
745 if (!options[config->required_options[i]].len) {
746 note("%s isn't satisfactory.", name);
751 /* If we've already seen this lease, don't record it again. */
752 for (lease = client->offered_leases;
753 lease; lease = lease->next) {
754 if (lease->address.len == sizeof(client->packet.yiaddr) &&
755 !memcmp(lease->address.iabuf,
756 &client->packet.yiaddr, lease->address.len)) {
757 debug("%s already seen.", name);
762 lease = packet_to_lease(options);
764 note("packet_to_lease failed.");
768 /* If this lease was acquired through a BOOTREPLY, record that
770 if (!options[DHO_DHCP_MESSAGE_TYPE].len)
773 /* Record the medium under which this lease was offered. */
774 lease->medium = client->medium;
776 /* Send out an ARP Request for the offered IP address. */
777 script_init("ARPSEND", lease->medium);
778 script_write_params("check_", lease);
779 /* If the script can't send an ARP request without waiting,
780 we'll be waiting when we do the ARPCHECK, so don't wait now. */
782 arp_timeout_needed = 0;
784 arp_timeout_needed = 2;
786 /* Figure out when we're supposed to stop selecting. */
787 stop_selecting = client->first_sending + config->select_interval;
789 /* If this is the lease we asked for, put it at the head of the
790 list, and don't mess with the arp request timeout. */
791 if (lease->address.len == client->requested_address.len &&
792 !memcmp(lease->address.iabuf,
793 client->requested_address.iabuf,
794 client->requested_address.len)) {
795 lease->next = client->offered_leases;
796 client->offered_leases = lease;
798 /* If we already have an offer, and arping for this
799 offer would take us past the selection timeout,
800 then don't extend the timeout - just hope for the
802 if (client->offered_leases &&
803 (cur_time + arp_timeout_needed) > stop_selecting)
804 arp_timeout_needed = 0;
806 /* Put the lease at the end of the list. */
808 if (!client->offered_leases)
809 client->offered_leases = lease;
811 for (lp = client->offered_leases; lp->next;
818 /* If we're supposed to stop selecting before we've had time
819 to wait for the ARPREPLY, add some delay to wait for
821 if (stop_selecting - cur_time < arp_timeout_needed)
822 stop_selecting = cur_time + arp_timeout_needed;
824 /* If the selecting interval has expired, go immediately to
825 state_selecting(). Otherwise, time out into
826 state_selecting at the select interval. */
827 if (stop_selecting <= 0)
830 add_timeout(stop_selecting, state_selecting);
831 cancel_timeout(send_discover);
836 * Allocate a client_lease structure and initialize it from the
837 * parameters in the specified packet.
839 struct client_lease *
840 packet_to_lease(struct option_data *options)
842 struct client_lease *lease;
845 lease = malloc(sizeof(struct client_lease));
848 warning("dhcpoffer: no memory to record lease.");
852 memset(lease, 0, sizeof(*lease));
854 /* Copy the lease options. */
855 for (i = 0; i < 256; i++) {
856 if (options[i].len) {
857 lease->options[i] = options[i];
858 options[i].data = NULL;
860 if (!check_option(lease, i)) {
861 warning("Invalid lease option - ignoring offer");
862 free_client_lease(lease);
868 lease->address.len = sizeof(client->packet.yiaddr);
869 memcpy(lease->address.iabuf, &client->packet.yiaddr,
872 /* If the server name was filled out, copy it. */
873 if ((!lease->options[DHO_DHCP_OPTION_OVERLOAD].len ||
874 !(lease->options[DHO_DHCP_OPTION_OVERLOAD].data[0] & 2)) &&
875 client->packet.sname[0]) {
876 lease->server_name = malloc(DHCP_SNAME_LEN + 1);
877 if (!lease->server_name) {
878 warning("dhcpoffer: no memory for server name.");
879 free_client_lease(lease);
882 memcpy(lease->server_name, client->packet.sname,
884 lease->server_name[DHCP_SNAME_LEN] = '\0';
885 if (!res_hnok(lease->server_name)) {
886 warning("Bogus server name %s", lease->server_name);
887 free(lease->server_name);
888 lease->server_name = NULL;
892 /* Ditto for the filename. */
893 if ((!lease->options[DHO_DHCP_OPTION_OVERLOAD].len ||
894 !(lease->options[DHO_DHCP_OPTION_OVERLOAD].data[0] & 1)) &&
895 client->packet.file[0]) {
896 /* Don't count on the NUL terminator. */
897 lease->filename = malloc(DHCP_FILE_LEN + 1);
898 if (!lease->filename) {
899 warning("dhcpoffer: no memory for filename.");
900 free_client_lease(lease);
903 memcpy(lease->filename, client->packet.file, DHCP_FILE_LEN);
904 lease->filename[DHCP_FILE_LEN] = '\0';
910 dhcpnak(struct iaddr client_addr, struct option_data *options)
912 if (client->xid != client->packet.xid)
915 if (client->state != S_REBOOTING &&
916 client->state != S_REQUESTING &&
917 client->state != S_RENEWING &&
918 client->state != S_REBINDING)
921 note("DHCPNAK from %s", piaddr(client_addr));
923 if (!client->active) {
924 note("DHCPNAK with no active lease.");
928 free_client_lease(client->active);
929 client->active = NULL;
931 /* Stop sending DHCPREQUEST packets... */
932 cancel_timeout(send_request);
934 client->state = S_INIT;
939 * Send out a DHCPDISCOVER packet, and set a timeout to send out another
940 * one after the right interval has expired. If we don't get an offer by
941 * the time we reach the panic interval, call the panic function.
946 int interval, increase = 1;
948 /* Figure out how long it's been since we started transmitting. */
949 interval = cur_time - client->first_sending;
951 /* If we're past the panic timeout, call the script and tell it
952 we haven't found anything for this interface yet. */
953 if (interval > config->timeout) {
958 /* If we're selecting media, try the whole list before doing
959 the exponential backoff, but if we've already received an
960 offer, stop looping, because we obviously have it right. */
961 if (!client->offered_leases && config->media) {
964 if (client->medium) {
965 client->medium = client->medium->next;
968 if (!client->medium) {
970 error("No valid media types for %s!", ifi->name);
971 client->medium = config->media;
975 note("Trying medium \"%s\" %d", client->medium->string,
977 script_init("MEDIUM", client->medium);
983 * If we're supposed to increase the interval, do so. If it's
984 * currently zero (i.e., we haven't sent any packets yet), set
985 * it to initial_interval; otherwise, add to it a random
986 * number between zero and two times itself. On average, this
987 * means that it will double with every transmission.
990 if (!client->interval)
991 client->interval = config->initial_interval;
993 client->interval += (arc4random() >> 2) %
994 (2 * client->interval);
997 /* Don't backoff past cutoff. */
998 if (client->interval > config->backoff_cutoff)
999 client->interval = ((config->backoff_cutoff / 2)
1000 + ((arc4random() >> 2) %
1001 config->backoff_cutoff));
1002 } else if (!client->interval)
1003 client->interval = config->initial_interval;
1005 /* If the backoff would take us to the panic timeout, just use that
1007 if (cur_time + client->interval >
1008 client->first_sending + config->timeout)
1009 client->interval = (client->first_sending +
1010 config->timeout) - cur_time + 1;
1012 /* Record the number of seconds since we started sending. */
1013 if (interval < 65536)
1014 client->packet.secs = htons(interval);
1016 client->packet.secs = htons(65535);
1017 client->secs = client->packet.secs;
1019 note("DHCPDISCOVER on %s to %s port %d interval %ld",
1020 ifi->name, inet_ntoa(sockaddr_broadcast.sin_addr),
1021 ntohs(sockaddr_broadcast.sin_port), client->interval);
1023 /* Send out a packet. */
1024 send_packet(inaddr_any, &sockaddr_broadcast, NULL);
1026 add_timeout(cur_time + client->interval, send_discover);
1030 * state_panic gets called if we haven't received any offers in a preset
1031 * amount of time. When this happens, we try to use existing leases
1032 * that haven't yet expired, and failing that, we call the client script
1033 * and hope it can do something.
1038 struct client_lease *loop = client->active;
1039 struct client_lease *lp;
1041 note("No DHCPOFFERS received.");
1043 /* We may not have an active lease, but we may have some
1044 predefined leases that we can try. */
1045 if (!client->active && client->leases)
1048 /* Run through the list of leases and see if one can be used. */
1049 while (client->active) {
1050 if (client->active->expiry > cur_time) {
1051 note("Trying recorded lease %s",
1052 piaddr(client->active->address));
1053 /* Run the client script with the existing
1055 script_init("TIMEOUT",
1056 client->active->medium);
1057 script_write_params("new_", client->active);
1059 script_write_params("alias_",
1062 /* If the old lease is still good and doesn't
1063 yet need renewal, go into BOUND state and
1064 timeout at the renewal time. */
1067 client->active->renewal) {
1068 client->state = S_BOUND;
1069 note("bound: renewal in %ld seconds.",
1070 client->active->renewal -
1072 add_timeout(client->active->renewal,
1075 client->state = S_BOUND;
1076 note("bound: immediate renewal.");
1079 reinitialize_interface();
1085 /* If there are no other leases, give up. */
1086 if (!client->leases) {
1087 client->leases = client->active;
1088 client->active = NULL;
1093 /* Otherwise, put the active lease at the end of the
1094 lease list, and try another lease.. */
1095 for (lp = client->leases; lp->next; lp = lp->next)
1097 lp->next = client->active;
1099 lp->next->next = NULL;
1100 client->active = client->leases;
1101 client->leases = client->leases->next;
1103 /* If we already tried this lease, we've exhausted the
1104 set of leases, so we might as well give up for
1106 if (client->active == loop)
1109 loop = client->active;
1112 /* No leases were available, or what was available didn't work, so
1113 tell the shell script that we failed to allocate an address,
1114 and try again later. */
1115 note("No working leases in persistent database - sleeping.");
1116 script_init("FAIL", NULL);
1118 script_write_params("alias_", client->alias);
1120 client->state = S_INIT;
1121 add_timeout(cur_time + config->retry_interval, state_init);
1128 struct sockaddr_in destination;
1129 struct in_addr from;
1132 /* Figure out how long it's been since we started transmitting. */
1133 interval = cur_time - client->first_sending;
1135 /* If we're in the INIT-REBOOT or REQUESTING state and we're
1136 past the reboot timeout, go to INIT and see if we can
1137 DISCOVER an address... */
1138 /* XXX In the INIT-REBOOT state, if we don't get an ACK, it
1139 means either that we're on a network with no DHCP server,
1140 or that our server is down. In the latter case, assuming
1141 that there is a backup DHCP server, DHCPDISCOVER will get
1142 us a new address, but we could also have successfully
1143 reused our old address. In the former case, we're hosed
1144 anyway. This is not a win-prone situation. */
1145 if ((client->state == S_REBOOTING ||
1146 client->state == S_REQUESTING) &&
1147 interval > config->reboot_timeout) {
1149 client->state = S_INIT;
1150 cancel_timeout(send_request);
1155 /* If we're in the reboot state, make sure the media is set up
1157 if (client->state == S_REBOOTING &&
1159 client->active->medium) {
1160 script_init("MEDIUM", client->active->medium);
1162 /* If the medium we chose won't fly, go to INIT state. */
1166 /* Record the medium. */
1167 client->medium = client->active->medium;
1170 /* If the lease has expired, relinquish the address and go back
1171 to the INIT state. */
1172 if (client->state != S_REQUESTING &&
1173 cur_time > client->active->expiry) {
1174 /* Run the client script with the new parameters. */
1175 script_init("EXPIRE", NULL);
1176 script_write_params("old_", client->active);
1178 script_write_params("alias_", client->alias);
1181 /* Now do a preinit on the interface so that we can
1182 discover a new address. */
1183 script_init("PREINIT", NULL);
1185 script_write_params("alias_", client->alias);
1188 client->state = S_INIT;
1193 /* Do the exponential backoff... */
1194 if (!client->interval)
1195 client->interval = config->initial_interval;
1197 client->interval += ((arc4random() >> 2) %
1198 (2 * client->interval));
1200 /* Don't backoff past cutoff. */
1201 if (client->interval > config->backoff_cutoff)
1202 client->interval = ((config->backoff_cutoff / 2) +
1203 ((arc4random() >> 2) % client->interval));
1205 /* If the backoff would take us to the expiry time, just set the
1206 timeout to the expiry time. */
1207 if (client->state != S_REQUESTING && cur_time + client->interval >
1208 client->active->expiry)
1209 client->interval = client->active->expiry - cur_time + 1;
1211 /* If the lease T2 time has elapsed, or if we're not yet bound,
1212 broadcast the DHCPREQUEST rather than unicasting. */
1213 memset(&destination, 0, sizeof(destination));
1214 if (client->state == S_REQUESTING ||
1215 client->state == S_REBOOTING ||
1216 cur_time > client->active->rebind)
1217 destination.sin_addr.s_addr = INADDR_BROADCAST;
1219 memcpy(&destination.sin_addr.s_addr, client->destination.iabuf,
1220 sizeof(destination.sin_addr.s_addr));
1221 destination.sin_port = htons(REMOTE_PORT);
1222 destination.sin_family = AF_INET;
1223 destination.sin_len = sizeof(destination);
1225 if (client->state != S_REQUESTING)
1226 memcpy(&from, client->active->address.iabuf, sizeof(from));
1228 from.s_addr = INADDR_ANY;
1230 /* Record the number of seconds since we started sending. */
1231 if (client->state == S_REQUESTING)
1232 client->packet.secs = client->secs;
1234 if (interval < 65536)
1235 client->packet.secs = htons(interval);
1237 client->packet.secs = htons(65535);
1240 note("DHCPREQUEST on %s to %s port %d", ifi->name,
1241 inet_ntoa(destination.sin_addr), ntohs(destination.sin_port));
1243 /* Send out a packet. */
1244 send_packet(from, &destination, NULL);
1246 add_timeout(cur_time + client->interval, send_request);
1252 note("DHCPDECLINE on %s to %s port %d", ifi->name,
1253 inet_ntoa(sockaddr_broadcast.sin_addr),
1254 ntohs(sockaddr_broadcast.sin_port));
1256 /* Send out a packet. */
1257 send_packet(inaddr_any, &sockaddr_broadcast, NULL);
1261 make_discover(struct client_lease *lease)
1263 unsigned char discover = DHCPDISCOVER;
1264 struct option_data options[256];
1267 memset(options, 0, sizeof(options));
1268 memset(&client->packet, 0, sizeof(client->packet));
1270 /* Set DHCP_MESSAGE_TYPE to DHCPDISCOVER */
1271 i = DHO_DHCP_MESSAGE_TYPE;
1272 options[i].data = &discover;
1273 options[i].len = sizeof(discover);
1275 /* Request the options we want */
1276 i = DHO_DHCP_PARAMETER_REQUEST_LIST;
1277 options[i].data = config->requested_options;
1278 options[i].len = config->requested_option_count;
1280 /* If we had an address, try to get it again. */
1282 client->requested_address = lease->address;
1283 i = DHO_DHCP_REQUESTED_ADDRESS;
1284 options[i].data = lease->address.iabuf;
1285 options[i].len = lease->address.len;
1287 client->requested_address.len = 0;
1289 /* Send any options requested in the config file. */
1290 for (i = 0; i < 256; i++)
1291 if (!options[i].data &&
1292 config->send_options[i].data) {
1293 options[i].data = config->send_options[i].data;
1294 options[i].len = config->send_options[i].len;
1297 /* Set up the option buffer to fit in a minimal UDP packet. */
1298 i = cons_options(client->packet.options, 576 - DHCP_FIXED_LEN,
1300 if (i == -1 || client->packet.options[i] != DHO_END)
1301 error("options do not fit in DHCPDISCOVER packet.");
1302 client->packet_length = DHCP_FIXED_NON_UDP+i+1;
1303 if (client->packet_length < BOOTP_MIN_LEN)
1304 client->packet_length = BOOTP_MIN_LEN;
1306 client->packet.op = BOOTREQUEST;
1307 client->packet.htype = ifi->hw_address.htype;
1308 client->packet.hlen = ifi->hw_address.hlen;
1309 client->packet.hops = 0;
1310 client->packet.xid = arc4random();
1311 client->packet.secs = 0; /* filled in by send_discover. */
1312 client->packet.flags = 0;
1314 memset(&client->packet.ciaddr, 0, sizeof(client->packet.ciaddr));
1315 memset(&client->packet.yiaddr, 0, sizeof(client->packet.yiaddr));
1316 memset(&client->packet.siaddr, 0, sizeof(client->packet.siaddr));
1317 memset(&client->packet.giaddr, 0, sizeof(client->packet.giaddr));
1318 memcpy(client->packet.chaddr, ifi->hw_address.haddr,
1319 ifi->hw_address.hlen);
1323 make_request(struct client_lease * lease)
1325 unsigned char request = DHCPREQUEST;
1326 struct option_data options[256];
1329 memset(options, 0, sizeof(options));
1330 memset(&client->packet, 0, sizeof(client->packet));
1332 /* Set DHCP_MESSAGE_TYPE to DHCPREQUEST */
1333 i = DHO_DHCP_MESSAGE_TYPE;
1334 options[i].data = &request;
1335 options[i].len = sizeof(request);
1337 /* Request the options we want */
1338 i = DHO_DHCP_PARAMETER_REQUEST_LIST;
1339 options[i].data = config->requested_options;
1340 options[i].len = config->requested_option_count;
1342 /* If we are requesting an address that hasn't yet been assigned
1343 to us, use the DHCP Requested Address option. */
1344 if (client->state == S_REQUESTING) {
1345 /* Send back the server identifier... */
1346 i = DHO_DHCP_SERVER_IDENTIFIER;
1347 options[i].data = lease->options[i].data;
1348 options[i].len = lease->options[i].len;
1350 if (client->state == S_REQUESTING ||
1351 client->state == S_REBOOTING) {
1352 client->requested_address = lease->address;
1353 i = DHO_DHCP_REQUESTED_ADDRESS;
1354 options[i].data = lease->address.iabuf;
1355 options[i].len = lease->address.len;
1357 client->requested_address.len = 0;
1359 /* Send any options requested in the config file. */
1360 for (i = 0; i < 256; i++)
1361 if (!options[i].data && config->send_options[i].data) {
1362 options[i].data = config->send_options[i].data;
1363 options[i].len = config->send_options[i].len;
1366 /* Set up the option buffer to fit in a minimal UDP packet. */
1367 i = cons_options(client->packet.options, 576 - DHCP_FIXED_LEN,
1369 if (i == -1 || client->packet.options[i] != DHO_END)
1370 error("options do not fit in DHCPREQUEST packet.");
1371 client->packet_length = DHCP_FIXED_NON_UDP+i+1;
1372 if (client->packet_length < BOOTP_MIN_LEN)
1373 client->packet_length = BOOTP_MIN_LEN;
1375 client->packet.op = BOOTREQUEST;
1376 client->packet.htype = ifi->hw_address.htype;
1377 client->packet.hlen = ifi->hw_address.hlen;
1378 client->packet.hops = 0;
1379 client->packet.xid = client->xid;
1380 client->packet.secs = 0; /* Filled in by send_request. */
1381 client->packet.flags = 0;
1383 /* If we own the address we're requesting, put it in ciaddr;
1384 otherwise set ciaddr to zero. */
1385 if (client->state == S_BOUND ||
1386 client->state == S_RENEWING ||
1387 client->state == S_REBINDING) {
1388 memcpy(&client->packet.ciaddr,
1389 lease->address.iabuf, lease->address.len);
1391 memset(&client->packet.ciaddr, 0,
1392 sizeof(client->packet.ciaddr));
1395 memset(&client->packet.yiaddr, 0, sizeof(client->packet.yiaddr));
1396 memset(&client->packet.siaddr, 0, sizeof(client->packet.siaddr));
1397 memset(&client->packet.giaddr, 0, sizeof(client->packet.giaddr));
1398 memcpy(client->packet.chaddr, ifi->hw_address.haddr,
1399 ifi->hw_address.hlen);
1403 make_decline(struct client_lease *lease)
1405 struct option_data options[256];
1406 unsigned char decline = DHCPDECLINE;
1409 memset(options, 0, sizeof(options));
1410 memset(&client->packet, 0, sizeof(client->packet));
1412 /* Set DHCP_MESSAGE_TYPE to DHCPDECLINE */
1413 i = DHO_DHCP_MESSAGE_TYPE;
1414 options[i].data = &decline;
1415 options[i].len = sizeof(decline);
1417 /* Send back the server identifier... */
1418 i = DHO_DHCP_SERVER_IDENTIFIER;
1419 options[i].data = lease->options[i].data;
1420 options[i].len = lease->options[i].len;
1422 /* Send back the address we're declining. */
1423 i = DHO_DHCP_REQUESTED_ADDRESS;
1424 options[i].data = lease->address.iabuf;
1425 options[i].len = lease->address.len;
1427 /* Send the uid if the user supplied one. */
1428 i = DHO_DHCP_CLIENT_IDENTIFIER;
1429 if (config->send_options[i].len) {
1430 options[i].data = config->send_options[i].data;
1431 options[i].len = config->send_options[i].len;
1434 /* Set up the option buffer to fit in a minimal UDP packet. */
1435 i = cons_options(client->packet.options, 576 - DHCP_FIXED_LEN,
1437 if (i == -1 || client->packet.options[i] != DHO_END)
1438 error("options do not fit in DHCPDECLINE packet.");
1439 client->packet_length = DHCP_FIXED_NON_UDP+i+1;
1440 if (client->packet_length < BOOTP_MIN_LEN)
1441 client->packet_length = BOOTP_MIN_LEN;
1443 client->packet.op = BOOTREQUEST;
1444 client->packet.htype = ifi->hw_address.htype;
1445 client->packet.hlen = ifi->hw_address.hlen;
1446 client->packet.hops = 0;
1447 client->packet.xid = client->xid;
1448 client->packet.secs = 0; /* Filled in by send_request. */
1449 client->packet.flags = 0;
1451 /* ciaddr must always be zero. */
1452 memset(&client->packet.ciaddr, 0, sizeof(client->packet.ciaddr));
1453 memset(&client->packet.yiaddr, 0, sizeof(client->packet.yiaddr));
1454 memset(&client->packet.siaddr, 0, sizeof(client->packet.siaddr));
1455 memset(&client->packet.giaddr, 0, sizeof(client->packet.giaddr));
1456 memcpy(client->packet.chaddr, ifi->hw_address.haddr,
1457 ifi->hw_address.hlen);
1461 free_client_lease(struct client_lease *lease)
1465 if (lease->server_name)
1466 free(lease->server_name);
1467 if (lease->filename)
1468 free(lease->filename);
1469 for (i = 0; i < 256; i++) {
1470 if (lease->options[i].len)
1471 free(lease->options[i].data);
1477 rewrite_client_leases(void)
1479 struct client_lease *lp;
1481 if (!leaseFile) /* XXX */
1482 error("lease file not open");
1487 for (lp = client->leases; lp; lp = lp->next)
1488 write_client_lease(lp, 1);
1490 write_client_lease(client->active, 1);
1493 ftruncate(fileno(leaseFile), ftello(leaseFile));
1494 fsync(fileno(leaseFile));
1498 write_client_lease(struct client_lease *lease, int rewrite)
1500 static int leases_written;
1505 if (leases_written++ > 20) {
1506 rewrite_client_leases();
1511 /* If the lease came from the config file, we don't need to stash
1512 a copy in the lease database. */
1513 if (lease->is_static)
1516 if (!leaseFile) /* XXX */
1517 error("lease file not open");
1519 fprintf(leaseFile, "lease {\n");
1520 if (lease->is_bootp)
1521 fprintf(leaseFile, " bootp;\n");
1522 fprintf(leaseFile, " interface \"%s\";\n", ifi->name);
1523 fprintf(leaseFile, " fixed-address %s;\n", piaddr(lease->address));
1524 if (lease->filename)
1525 fprintf(leaseFile, " filename \"%s\";\n", lease->filename);
1526 if (lease->server_name)
1527 fprintf(leaseFile, " server-name \"%s\";\n",
1528 lease->server_name);
1530 fprintf(leaseFile, " medium \"%s\";\n", lease->medium->string);
1531 for (i = 0; i < 256; i++)
1532 if (lease->options[i].len)
1533 fprintf(leaseFile, " option %s %s;\n",
1534 dhcp_options[i].name,
1535 pretty_print_option(i, lease->options[i].data,
1536 lease->options[i].len, 1, 1));
1538 t = gmtime(&lease->renewal);
1539 fprintf(leaseFile, " renew %d %d/%d/%d %02d:%02d:%02d;\n",
1540 t->tm_wday, t->tm_year + 1900, t->tm_mon + 1, t->tm_mday,
1541 t->tm_hour, t->tm_min, t->tm_sec);
1542 t = gmtime(&lease->rebind);
1543 fprintf(leaseFile, " rebind %d %d/%d/%d %02d:%02d:%02d;\n",
1544 t->tm_wday, t->tm_year + 1900, t->tm_mon + 1, t->tm_mday,
1545 t->tm_hour, t->tm_min, t->tm_sec);
1546 t = gmtime(&lease->expiry);
1547 fprintf(leaseFile, " expire %d %d/%d/%d %02d:%02d:%02d;\n",
1548 t->tm_wday, t->tm_year + 1900, t->tm_mon + 1, t->tm_mday,
1549 t->tm_hour, t->tm_min, t->tm_sec);
1550 fprintf(leaseFile, "}\n");
1555 script_init(char *reason, struct string_list *medium)
1557 size_t len, mediumlen = 0;
1558 struct imsg_hdr hdr;
1561 if (medium != NULL && medium->string != NULL)
1562 mediumlen = strlen(medium->string);
1564 hdr.code = IMSG_SCRIPT_INIT;
1565 hdr.len = sizeof(struct imsg_hdr) +
1566 sizeof(size_t) + mediumlen +
1567 sizeof(size_t) + strlen(reason);
1569 buf = buf_open(hdr.len);
1571 buf_add(buf, &hdr, sizeof(hdr));
1572 buf_add(buf, &mediumlen, sizeof(mediumlen));
1574 buf_add(buf, medium->string, mediumlen);
1575 len = strlen(reason);
1576 buf_add(buf, &len, sizeof(len));
1577 buf_add(buf, reason, len);
1579 buf_close(privfd, buf);
1583 priv_script_init(char *reason, char *medium)
1585 client->scriptEnvsize = 100;
1586 if (client->scriptEnv == NULL)
1588 calloc(client->scriptEnvsize, sizeof(char *));
1589 if (client->scriptEnv == NULL)
1590 error("script_init: no memory for environment");
1592 client->scriptEnv[0] = strdup(CLIENT_PATH);
1593 if (client->scriptEnv[0] == NULL)
1594 error("script_init: no memory for environment");
1596 client->scriptEnv[1] = NULL;
1598 script_set_env("", "interface", ifi->name);
1601 script_set_env("", "medium", medium);
1603 script_set_env("", "reason", reason);
1607 priv_script_write_params(char *prefix, struct client_lease *lease)
1609 u_int8_t dbuf[1500];
1613 script_set_env(prefix, "ip_address", piaddr(lease->address));
1615 if (lease->options[DHO_SUBNET_MASK].len &&
1616 (lease->options[DHO_SUBNET_MASK].len <
1617 sizeof(lease->address.iabuf))) {
1618 struct iaddr netmask, subnet, broadcast;
1620 memcpy(netmask.iabuf, lease->options[DHO_SUBNET_MASK].data,
1621 lease->options[DHO_SUBNET_MASK].len);
1622 netmask.len = lease->options[DHO_SUBNET_MASK].len;
1624 subnet = subnet_number(lease->address, netmask);
1626 script_set_env(prefix, "network_number",
1628 if (!lease->options[DHO_BROADCAST_ADDRESS].len) {
1629 broadcast = broadcast_addr(subnet, netmask);
1631 script_set_env(prefix,
1632 "broadcast_address",
1638 if (lease->filename)
1639 script_set_env(prefix, "filename", lease->filename);
1640 if (lease->server_name)
1641 script_set_env(prefix, "server_name",
1642 lease->server_name);
1643 for (i = 0; i < 256; i++) {
1644 u_int8_t *dp = NULL;
1646 if (config->defaults[i].len) {
1647 if (lease->options[i].len) {
1648 switch (config->default_actions[i]) {
1649 case ACTION_DEFAULT:
1650 dp = lease->options[i].data;
1651 len = lease->options[i].len;
1653 case ACTION_SUPERSEDE:
1655 dp = config->defaults[i].data;
1656 len = config->defaults[i].len;
1658 case ACTION_PREPEND:
1659 len = config->defaults[i].len +
1660 lease->options[i].len;
1661 if (len > sizeof(dbuf)) {
1662 warning("no space to %s %s",
1664 dhcp_options[i].name);
1669 config->defaults[i].data,
1670 config->defaults[i].len);
1672 config->defaults[i].len,
1673 lease->options[i].data,
1674 lease->options[i].len);
1678 len = config->defaults[i].len +
1679 lease->options[i].len;
1680 if (len > sizeof(dbuf)) {
1681 warning("no space to %s %s",
1683 dhcp_options[i].name);
1687 memcpy(dp, lease->options[i].data,
1688 lease->options[i].len);
1689 memcpy(dp + lease->options[i].len,
1690 config->defaults[i].data,
1691 config->defaults[i].len);
1695 dp = config->defaults[i].data;
1696 len = config->defaults[i].len;
1698 } else if (lease->options[i].len) {
1699 len = lease->options[i].len;
1700 dp = lease->options[i].data;
1707 if (dhcp_option_ev_name(name, sizeof(name),
1709 script_set_env(prefix, name,
1710 pretty_print_option(i, dp, len, 0, 0));
1713 snprintf(tbuf, sizeof(tbuf), "%d", (int)lease->expiry);
1714 script_set_env(prefix, "expiry", tbuf);
1718 script_write_params(char *prefix, struct client_lease *lease)
1720 size_t fn_len = 0, sn_len = 0, pr_len = 0;
1721 struct imsg_hdr hdr;
1725 if (lease->filename != NULL)
1726 fn_len = strlen(lease->filename);
1727 if (lease->server_name != NULL)
1728 sn_len = strlen(lease->server_name);
1730 pr_len = strlen(prefix);
1732 hdr.code = IMSG_SCRIPT_WRITE_PARAMS;
1733 hdr.len = sizeof(hdr) + sizeof(struct client_lease) +
1734 sizeof(size_t) + fn_len + sizeof(size_t) + sn_len +
1735 sizeof(size_t) + pr_len;
1737 for (i = 0; i < 256; i++)
1738 hdr.len += sizeof(int) + lease->options[i].len;
1740 scripttime = time(NULL);
1742 buf = buf_open(hdr.len);
1744 buf_add(buf, &hdr, sizeof(hdr));
1745 buf_add(buf, lease, sizeof(struct client_lease));
1746 buf_add(buf, &fn_len, sizeof(fn_len));
1747 buf_add(buf, lease->filename, fn_len);
1748 buf_add(buf, &sn_len, sizeof(sn_len));
1749 buf_add(buf, lease->server_name, sn_len);
1750 buf_add(buf, &pr_len, sizeof(pr_len));
1751 buf_add(buf, prefix, pr_len);
1753 for (i = 0; i < 256; i++) {
1754 buf_add(buf, &lease->options[i].len,
1755 sizeof(lease->options[i].len));
1756 buf_add(buf, lease->options[i].data,
1757 lease->options[i].len);
1760 buf_close(privfd, buf);
1766 struct imsg_hdr hdr;
1770 scripttime = time(NULL);
1772 hdr.code = IMSG_SCRIPT_GO;
1773 hdr.len = sizeof(struct imsg_hdr);
1775 buf = buf_open(hdr.len);
1777 buf_add(buf, &hdr, sizeof(hdr));
1778 buf_close(privfd, buf);
1780 bzero(&hdr, sizeof(hdr));
1781 buf_read(privfd, &hdr, sizeof(hdr));
1782 if (hdr.code != IMSG_SCRIPT_GO_RET)
1783 error("unexpected msg type %u", hdr.code);
1784 if (hdr.len != sizeof(hdr) + sizeof(int))
1785 error("received corrupted message");
1786 buf_read(privfd, &ret, sizeof(ret));
1792 priv_script_go(void)
1794 char *scriptName, *argv[2], **envp;
1795 int pid, wpid, wstatus;
1797 scripttime = time(NULL);
1799 scriptName = config->script_name;
1800 envp = client->scriptEnv;
1802 argv[0] = scriptName;
1811 wpid = wait(&wstatus);
1812 } while (wpid != pid && wpid > 0);
1818 execve(scriptName, argv, envp);
1819 error("execve (%s, ...): %m", scriptName);
1824 return (WEXITSTATUS(wstatus));
1828 script_set_env(const char *prefix, const char *name, const char *value)
1832 namelen = strlen(name);
1834 for (i = 0; client->scriptEnv[i]; i++)
1835 if (strncmp(client->scriptEnv[i], name, namelen) == 0 &&
1836 client->scriptEnv[i][namelen] == '=')
1839 if (client->scriptEnv[i])
1840 /* Reuse the slot. */
1841 free(client->scriptEnv[i]);
1843 /* New variable. Expand if necessary. */
1844 if (i >= client->scriptEnvsize - 1) {
1845 char **newscriptEnv;
1846 int newscriptEnvsize = client->scriptEnvsize + 50;
1848 newscriptEnv = realloc(client->scriptEnv,
1850 if (newscriptEnv == NULL) {
1851 free(client->scriptEnv);
1852 client->scriptEnv = NULL;
1853 client->scriptEnvsize = 0;
1854 error("script_set_env: no memory for variable");
1856 client->scriptEnv = newscriptEnv;
1857 client->scriptEnvsize = newscriptEnvsize;
1859 /* need to set the NULL pointer at end of array beyond
1861 client->scriptEnv[i + 1] = NULL;
1863 /* Allocate space and format the variable in the appropriate slot. */
1864 client->scriptEnv[i] = malloc(strlen(prefix) + strlen(name) + 1 +
1866 if (client->scriptEnv[i] == NULL)
1867 error("script_set_env: no memory for variable assignment");
1869 /* No `` or $() command substitution allowed in environment values! */
1870 for (j = 0; j < strlen(value); j++)
1874 error("illegal character (%c) in value '%s'", value[j],
1878 snprintf(client->scriptEnv[i], strlen(prefix) + strlen(name) +
1879 1 + strlen(value) + 1, "%s%s=%s", prefix, name, value);
1883 script_flush_env(void)
1887 for (i = 0; client->scriptEnv[i]; i++) {
1888 free(client->scriptEnv[i]);
1889 client->scriptEnv[i] = NULL;
1891 client->scriptEnvsize = 0;
1895 dhcp_option_ev_name(char *buf, size_t buflen, const struct option *option)
1899 for (i = 0; option->name[i]; i++) {
1900 if (i + 1 == buflen)
1902 if (option->name[i] == '-')
1905 buf[i] = option->name[i];
1915 static int state = 0;
1917 if (no_daemon || state)
1922 /* Stop logging to stderr... */
1925 if (daemon(1, 0) == -1)
1928 /* we are chrooted, daemon(3) fails to open /dev/null */
1930 dup2(nullfd, STDIN_FILENO);
1931 dup2(nullfd, STDOUT_FILENO);
1932 dup2(nullfd, STDERR_FILENO);
1939 check_option(struct client_lease *l, int option)
1944 /* we use this, since this is what gets passed to dhclient-script */
1946 opbuf = pretty_print_option(option, l->options[option].data,
1947 l->options[option].len, 0, 0);
1949 sbuf = option_as_string(option, l->options[option].data,
1950 l->options[option].len);
1953 case DHO_SUBNET_MASK:
1954 case DHO_TIME_SERVERS:
1955 case DHO_NAME_SERVERS:
1957 case DHO_DOMAIN_NAME_SERVERS:
1958 case DHO_LOG_SERVERS:
1959 case DHO_COOKIE_SERVERS:
1960 case DHO_LPR_SERVERS:
1961 case DHO_IMPRESS_SERVERS:
1962 case DHO_RESOURCE_LOCATION_SERVERS:
1963 case DHO_SWAP_SERVER:
1964 case DHO_BROADCAST_ADDRESS:
1965 case DHO_NIS_SERVERS:
1966 case DHO_NTP_SERVERS:
1967 case DHO_NETBIOS_NAME_SERVERS:
1968 case DHO_NETBIOS_DD_SERVER:
1969 case DHO_FONT_SERVERS:
1970 case DHO_DHCP_SERVER_IDENTIFIER:
1971 if (!ipv4addrs(opbuf)) {
1972 warning("Invalid IP address in option: %s", opbuf);
1977 case DHO_DOMAIN_NAME:
1978 case DHO_NIS_DOMAIN:
1979 if (!res_hnok(sbuf)) {
1980 warning("Bogus Host Name option %d: %s (%s)", option,
1982 l->options[option].len = 0;
1983 free(l->options[option].data);
1987 case DHO_TIME_OFFSET:
1989 case DHO_MERIT_DUMP:
1991 case DHO_EXTENSIONS_PATH:
1992 case DHO_IP_FORWARDING:
1993 case DHO_NON_LOCAL_SOURCE_ROUTING:
1994 case DHO_POLICY_FILTER:
1995 case DHO_MAX_DGRAM_REASSEMBLY:
1996 case DHO_DEFAULT_IP_TTL:
1997 case DHO_PATH_MTU_AGING_TIMEOUT:
1998 case DHO_PATH_MTU_PLATEAU_TABLE:
1999 case DHO_INTERFACE_MTU:
2000 case DHO_ALL_SUBNETS_LOCAL:
2001 case DHO_PERFORM_MASK_DISCOVERY:
2002 case DHO_MASK_SUPPLIER:
2003 case DHO_ROUTER_DISCOVERY:
2004 case DHO_ROUTER_SOLICITATION_ADDRESS:
2005 case DHO_STATIC_ROUTES:
2006 case DHO_TRAILER_ENCAPSULATION:
2007 case DHO_ARP_CACHE_TIMEOUT:
2008 case DHO_IEEE802_3_ENCAPSULATION:
2009 case DHO_DEFAULT_TCP_TTL:
2010 case DHO_TCP_KEEPALIVE_INTERVAL:
2011 case DHO_TCP_KEEPALIVE_GARBAGE:
2012 case DHO_VENDOR_ENCAPSULATED_OPTIONS:
2013 case DHO_NETBIOS_NODE_TYPE:
2014 case DHO_NETBIOS_SCOPE:
2015 case DHO_X_DISPLAY_MANAGER:
2016 case DHO_DHCP_REQUESTED_ADDRESS:
2017 case DHO_DHCP_LEASE_TIME:
2018 case DHO_DHCP_OPTION_OVERLOAD:
2019 case DHO_DHCP_MESSAGE_TYPE:
2020 case DHO_DHCP_PARAMETER_REQUEST_LIST:
2021 case DHO_DHCP_MESSAGE:
2022 case DHO_DHCP_MAX_MESSAGE_SIZE:
2023 case DHO_DHCP_RENEWAL_TIME:
2024 case DHO_DHCP_REBINDING_TIME:
2025 case DHO_DHCP_CLASS_IDENTIFIER:
2026 case DHO_DHCP_CLIENT_IDENTIFIER:
2027 case DHO_DHCP_USER_CLASS_ID:
2031 warning("unknown dhcp option value 0x%x", option);
2032 return (unknown_ok);
2037 res_hnok(const char *name)
2039 const char *dn = name;
2040 int pch = '.', ch = *dn++;
2043 while (ch != '\0') {
2048 } else if (pch == '.' || nch == '.' || nch == '\0') {
2051 } else if (!isalnum(ch) && ch != '-' && ch != '_')
2053 else if (ch == '_' && warn == 0) {
2054 warning("warning: hostname %s contains an "
2055 "underscore which violates RFC 952", name);
2063 /* Does buf consist only of dotted decimal ipv4 addrs?
2064 * return how many if so,
2065 * otherwise, return 0
2068 ipv4addrs(char * buf)
2073 while (inet_aton(buf, &jnk) == 1){
2075 while (*buf == '.' || isdigit(*buf))
2086 option_as_string(unsigned int code, unsigned char *data, int len)
2088 static char optbuf[32768]; /* XXX */
2090 int opleft = sizeof(optbuf);
2091 unsigned char *dp = data;
2094 error("option_as_string: bad code %d", code);
2096 for (; dp < data + len; dp++) {
2097 if (!isascii(*dp) || !isprint(*dp)) {
2098 if (dp + 1 != data + len || *dp != 0) {
2100 snprintf(op, opleft, "\\%03o", *dp);
2105 } else if (*dp == '"' || *dp == '\'' || *dp == '$' ||
2106 *dp == '`' || *dp == '\\') {
2120 warning("dhcp option too large");
2125 fork_privchld(int fd, int fd2)
2127 struct pollfd pfd[1];
2128 int nfds, pfail = 0;
2132 error("cannot fork");
2140 if (chdir("/") == -1)
2141 error("chdir(\"/\")");
2143 setproctitle("%s [priv]", ifi->name);
2145 dup2(nullfd, STDIN_FILENO);
2146 dup2(nullfd, STDOUT_FILENO);
2147 dup2(nullfd, STDERR_FILENO);
2153 pfd[0].events = POLLIN;
2154 if ((nfds = poll(pfd, 1, INFTIM)) == -1)
2156 error("poll error");
2159 * Handle temporary errors, but bail if they persist.
2161 if (nfds == 0 || !(pfd[0].revents & POLLIN)) {
2162 if (pfail > POLL_FAILURES)
2163 error("poll failed > %d times", POLL_FAILURES);
2164 sleep(pfail * POLL_FAILURE_WAIT);