dhclient - Add and ignore DHCP option 66/0x42 TFTP server name.
[dragonfly.git] / sbin / dhclient / dispatch.c
1 /*      $OpenBSD: src/sbin/dhclient/dispatch.c,v 1.47 2010/07/02 22:03:27 deraadt Exp $ */
2
3 /*
4  * Copyright 2004 Henning Brauer <henning@openbsd.org>
5  * Copyright (c) 1995, 1996, 1997, 1998, 1999
6  * The Internet Software Consortium.   All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
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.
20  *
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
33  * SUCH DAMAGE.
34  *
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''.
40  */
41
42 #include <sys/ioctl.h>
43
44 #include <net/if_media.h>
45
46 #include <ifaddrs.h>
47 #include <poll.h>
48
49 #include "dhcpd.h"
50
51 struct timeout *timeouts;
52 static struct timeout *free_timeouts;
53 static int interfaces_invalidated;
54
55 /*
56  * Use getifaddrs() to get a list of all the attached interfaces.  For
57  * each interface that's of type INET and not the loopback interface,
58  * register that interface with the network I/O software, figure out
59  * what subnet it's on, and add it to the list of interfaces.
60  */
61 void
62 discover_interface(void)
63 {
64         struct ifaddrs *ifap, *ifa;
65         struct ifreq *tif;
66         int len = IFNAMSIZ + sizeof(struct sockaddr_storage);
67
68         if (getifaddrs(&ifap) != 0)
69                 error("getifaddrs failed");
70
71         for (ifa = ifap; ifa != NULL; ifa = ifa->ifa_next) {
72                 if ((ifa->ifa_flags & IFF_LOOPBACK) ||
73                     (ifa->ifa_flags & IFF_POINTOPOINT) ||
74                     (!(ifa->ifa_flags & IFF_UP)))
75                         continue;
76
77                 if (strcmp(ifi->name, ifa->ifa_name))
78                         continue;
79
80                 /*
81                  * If we have the capability, extract link information
82                  * and record it in a linked list.
83                  */
84                 if (ifa->ifa_addr->sa_family == AF_LINK) {
85                         struct sockaddr_dl *foo =
86                             (struct sockaddr_dl *)ifa->ifa_addr;
87
88                         ifi->index = foo->sdl_index;
89                         ifi->hw_address.hlen = foo->sdl_alen;
90                         ifi->hw_address.htype = HTYPE_ETHER; /* XXX */
91                         memcpy(ifi->hw_address.haddr,
92                             LLADDR(foo), foo->sdl_alen);
93                 }
94                 if (!ifi->ifp) {
95                         if ((tif = malloc(len)) == NULL)
96                                 error("no space to remember ifp");
97                         strlcpy(tif->ifr_name, ifa->ifa_name, IFNAMSIZ);
98                         ifi->ifp = tif;
99                 }
100         }
101
102         if (!ifi->ifp)
103                 error("%s: not found", ifi->name);
104
105         /* Register the interface... */
106         if_register_receive();
107         if_register_send();
108         freeifaddrs(ifap);
109 }
110
111 void
112 reinitialize_interface(void)
113 {
114         interfaces_invalidated = 1;
115 }
116
117 /*
118  * Wait for packets to come in using poll().  When a packet comes in, call
119  * receive_packet to receive the packet and possibly strip hardware addressing
120  * information from it, and then call do_packet to try to do something with it.
121  */
122 void
123 dispatch(void)
124 {
125         int count, to_msec;
126         struct pollfd fds[2];
127         time_t howlong;
128
129         do {
130                 /*
131                  * Call any expired timeouts, and then if there's still
132                  * a timeout registered, time out the select call then.
133                  */
134 another:
135                 if (!ifi->linkstat)
136                         interfaces_invalidated = 0;
137
138                 if (timeouts) {
139                         struct timeout *t;
140
141                         if (timeouts->when <= cur_time) {
142                                 t = timeouts;
143                                 timeouts = timeouts->next;
144                                 (*(t->func))();
145                                 t->next = free_timeouts;
146                                 free_timeouts = t;
147                                 goto another;
148                         }
149
150                         /*
151                          * Figure timeout in milliseconds, and check for
152                          * potential overflow, so we can cram into an
153                          * int for poll, while not polling with a
154                          * negative timeout and blocking indefinitely.
155                          */
156                         howlong = timeouts->when - cur_time;
157                         if (howlong > INT_MAX / 1000)
158                                 howlong = INT_MAX / 1000;
159                         to_msec = howlong * 1000;
160                 } else
161                         to_msec = -1;
162
163                 /* Set up the descriptors to be polled. */
164                 if (!ifi || ifi->rfdesc == -1)
165                         error("No live interface to poll on");
166
167                 fds[0].fd = ifi->rfdesc;
168                 fds[1].fd = routefd; /* Could be -1, which will be ignored. */
169                 fds[0].events = fds[1].events = POLLIN;
170
171                 /* Wait for a packet or a timeout... XXX */
172                 count = poll(fds, 2, to_msec);
173
174                 /* Get the current time... */
175                 time(&cur_time);
176
177                 /* Not likely to be transitory... */
178                 if (count == -1) {
179                         if (errno == EAGAIN || errno == EINTR) {
180                                 continue;
181                         } else
182                                 error("poll: %m");
183                 }
184
185                 if ((fds[0].revents & (POLLIN | POLLHUP))) {
186                         if (ifi && ifi->linkstat && ifi->rfdesc != -1)
187                                 got_one();
188                 }
189                 if ((fds[1].revents & (POLLIN | POLLHUP))) {
190                         if (ifi && !interfaces_invalidated)
191                                 routehandler();
192                 }
193
194                 interfaces_invalidated = 0;
195         } while (1);
196 }
197
198 void
199 got_one(void)
200 {
201         struct sockaddr_in from;
202         struct hardware hfrom;
203         struct iaddr ifrom;
204         ssize_t result;
205
206         if ((result = receive_packet(&from, &hfrom)) == -1) {
207                 warning("receive_packet failed on %s: %s", ifi->name,
208                     strerror(errno));
209                 ifi->errors++;
210                 if ((!interface_status(ifi->name)) ||
211                     (ifi->noifmedia && ifi->errors > 20)) {
212                         /* our interface has gone away. */
213                         error("Interface %s no longer appears valid.",
214                             ifi->name);
215                 }
216                 return;
217         }
218         if (result == 0)
219                 return;
220
221         ifrom.len = 4;
222         memcpy(ifrom.iabuf, &from.sin_addr, ifrom.len);
223
224         do_packet(result, from.sin_port, ifrom, &hfrom);
225 }
226
227 int
228 interface_link_forceup(char *ifname)
229 {
230         struct ifreq ifr;
231         int sock;
232
233         if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
234                 error("Can't create socket");
235
236         memset(&ifr, 0, sizeof(ifr));
237         strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
238         if (ioctl(sock, SIOCGIFFLAGS, (caddr_t)&ifr) == -1) {
239                 close(sock);
240                 return (-1);
241         }
242
243         if ((ifr.ifr_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING)) {
244                 ifr.ifr_flags |= IFF_UP;
245                 if (ioctl(sock, SIOCSIFFLAGS, (caddr_t)&ifr) == -1) {
246                         close(sock);
247                         return (-1);
248                 }
249                 close(sock);
250                 return (0);
251         }
252         close(sock);
253         return (1);
254 }
255
256 int
257 interface_status(char *ifname)
258 {
259         struct ifreq ifr;
260         struct ifmediareq ifmr;
261         int sock;
262
263         if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
264                 error("Can't create socket");
265
266         /* get interface flags */
267         memset(&ifr, 0, sizeof(ifr));
268         strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
269         if (ioctl(sock, SIOCGIFFLAGS, &ifr) < 0) {
270                 error("ioctl(SIOCGIFFLAGS) on %s: %m", ifname);
271         }
272
273         /*
274          * if one of UP and RUNNING flags is dropped,
275          * the interface is not active.
276          */
277         if ((ifr.ifr_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING))
278                 goto inactive;
279
280         /* Next, check carrier on the interface, if possible */
281         if (ifi->noifmedia)
282                 goto active;
283         memset(&ifmr, 0, sizeof(ifmr));
284         strlcpy(ifmr.ifm_name, ifname, sizeof(ifmr.ifm_name));
285         if (ioctl(sock, SIOCGIFMEDIA, (caddr_t)&ifmr) < 0) {
286                 /*
287                  * EINVAL or ENOTTY simply means that the interface
288                  * does not support the SIOCGIFMEDIA ioctl. We regard it alive.
289                  */
290 #ifdef DEBUG
291                 if (errno != EINVAL && errno != ENOTTY)
292                         debug("ioctl(SIOCGIFMEDIA) on %s: %m", ifname);
293 #endif
294                 ifi->noifmedia = 1;
295                 goto active;
296         }
297         if (ifmr.ifm_status & IFM_AVALID) {
298                 if (ifmr.ifm_status & IFM_ACTIVE)
299                         goto active;
300                 else
301                         goto inactive;
302         }
303 inactive:
304         close(sock);
305         return (0);
306 active:
307         close(sock);
308         return (1);
309 }
310
311 void
312 add_timeout(time_t when, void (*where)(void))
313 {
314         struct timeout *t, *q;
315
316         /* See if this timeout supersedes an existing timeout. */
317         t = NULL;
318         for (q = timeouts; q; q = q->next) {
319                 if (q->func == where) {
320                         if (t)
321                                 t->next = q->next;
322                         else
323                                 timeouts = q->next;
324                         break;
325                 }
326                 t = q;
327         }
328
329         /* If we didn't supersede a timeout, allocate a timeout
330            structure now. */
331         if (!q) {
332                 if (free_timeouts) {
333                         q = free_timeouts;
334                         free_timeouts = q->next;
335                         q->func = where;
336                 } else {
337                         q = malloc(sizeof(struct timeout));
338                         if (!q)
339                                 error("Can't allocate timeout structure!");
340                         q->func = where;
341                 }
342         }
343
344         q->when = when;
345
346         /* Now sort this timeout into the timeout list. */
347
348         /* Beginning of list? */
349         if (!timeouts || timeouts->when > q->when) {
350                 q->next = timeouts;
351                 timeouts = q;
352                 return;
353         }
354
355         /* Middle of list? */
356         for (t = timeouts; t->next; t = t->next) {
357                 if (t->next->when > q->when) {
358                         q->next = t->next;
359                         t->next = q;
360                         return;
361                 }
362         }
363
364         /* End of list. */
365         t->next = q;
366         q->next = NULL;
367 }
368
369 void
370 cancel_timeout(void (*where)(void))
371 {
372         struct timeout *t, *q;
373
374         /* Look for this timeout on the list, and unlink it if we find it. */
375         t = NULL;
376         for (q = timeouts; q; q = q->next) {
377                 if (q->func == where) {
378                         if (t)
379                                 t->next = q->next;
380                         else
381                                 timeouts = q->next;
382                         break;
383                 }
384                 t = q;
385         }
386
387         /* If we found the timeout, put it on the free list. */
388         if (q) {
389                 q->next = free_timeouts;
390                 free_timeouts = q;
391         }
392 }
393
394 int
395 interface_link_status(char *ifname)
396 {
397         struct ifmediareq ifmr;
398         int sock;
399
400         if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
401                 error("Can't create socket");
402
403         memset(&ifmr, 0, sizeof(ifmr));
404         strlcpy(ifmr.ifm_name, ifname, sizeof(ifmr.ifm_name));
405         if (ioctl(sock, SIOCGIFMEDIA, (caddr_t)&ifmr) == -1) {
406                 /* EINVAL/ENOTTY -> link state unknown. treat as active */
407 #ifdef DEBUG
408                 if (errno != EINVAL && errno != ENOTTY)
409                         debug("ioctl(SIOCGIFMEDIA) on %s: %m", ifname);
410 #endif
411                 close(sock);
412                 return (1);
413         }
414         close(sock);
415
416         if (ifmr.ifm_status & IFM_AVALID) {
417                 if (ifmr.ifm_status & IFM_ACTIVE)
418                         return (1);
419                 else
420                         return (0);
421         }
422         return (1);
423 }