1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
|
/* $OpenBSD: dispatch.c,v 1.100 2015/02/06 04:18:20 krw Exp $ */
/*
* Copyright 2004 Henning Brauer <henning@openbsd.org>
* Copyright (c) 1995, 1996, 1997, 1998, 1999
* The Internet Software Consortium. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of The Internet Software Consortium nor the names
* of its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE INTERNET SOFTWARE CONSORTIUM AND
* CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE INTERNET SOFTWARE CONSORTIUM OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* This software has been written for the Internet Software Consortium
* by Ted Lemon <mellon@fugue.com> in cooperation with Vixie
* Enterprises. To learn more about the Internet Software Consortium,
* see ``http://www.vix.com/isc''. To learn more about Vixie
* Enterprises, see ``http://www.vix.com''.
*/
#include "dhcpd.h"
#include "privsep.h"
#include <sys/ioctl.h>
#include <net/if_media.h>
#include <net/if_types.h>
#include <ifaddrs.h>
#include <poll.h>
struct dhcp_timeout timeout;
void packethandler(void);
void
get_hw_address(void)
{
struct ifaddrs *ifap, *ifa;
struct sockaddr_dl *sdl;
int found;
if (getifaddrs(&ifap) != 0)
error("getifaddrs failed");
found = 0;
for (ifa = ifap; ifa != NULL; ifa = ifa->ifa_next) {
if ((ifa->ifa_flags & IFF_LOOPBACK) ||
(ifa->ifa_flags & IFF_POINTOPOINT) ||
(!(ifa->ifa_flags & IFF_UP)))
continue;
if (strcmp(ifi->name, ifa->ifa_name))
continue;
found = 1;
if (ifa->ifa_addr->sa_family != AF_LINK)
continue;
sdl = (struct sockaddr_dl *)ifa->ifa_addr;
if (sdl->sdl_type != IFT_ETHER ||
sdl->sdl_alen != ETHER_ADDR_LEN)
continue;
memcpy(ifi->hw_address.ether_addr_octet, LLADDR(sdl),
ETHER_ADDR_LEN);
ifi->flags |= IFI_VALID_LLADDR;
}
if (!found)
error("%s: not found", ifi->name);
freeifaddrs(ifap);
}
/*
* Loop waiting for packets, timeouts or routing messages.
*/
void
dispatch(void)
{
int count, to_msec;
struct pollfd fds[3];
time_t cur_time, howlong;
void (*func)(void);
while (quit == 0) {
if (ifi->rdomain != get_rdomain(ifi->name)) {
warning("%s rdomain changed; exiting", ifi->name);
quit = INTERNALSIG;
continue;
}
if (timeout.func) {
time(&cur_time);
if (timeout.when <= cur_time) {
func = timeout.func;
cancel_timeout();
(*(func))();
continue;
}
/*
* Figure timeout in milliseconds, and check for
* potential overflow, so we can cram into an
* int for poll, while not polling with a
* negative timeout and blocking indefinitely.
*/
howlong = timeout.when - cur_time;
if (howlong > INT_MAX / 1000)
howlong = INT_MAX / 1000;
to_msec = howlong * 1000;
} else
to_msec = -1;
/*
* Set up the descriptors to be polled.
*
* fds[0] == bpf socket for incoming packets
* fds[1] == routing socket for incoming RTM messages
* fds[2] == imsg socket to privileged process
*/
fds[0].fd = ifi->bfdesc;
fds[1].fd = routefd;
fds[2].fd = unpriv_ibuf->fd;
fds[0].events = fds[1].events = fds[2].events = POLLIN;
if (unpriv_ibuf->w.queued)
fds[2].events |= POLLOUT;
count = poll(fds, 3, to_msec);
if (count == -1) {
if (errno == EAGAIN || errno == EINTR) {
continue;
} else {
warning("poll: %s", strerror(errno));
quit = INTERNALSIG;
continue;
}
}
if ((fds[0].revents & (POLLIN | POLLHUP)))
packethandler();
if ((fds[1].revents & (POLLIN | POLLHUP)))
routehandler();
if (fds[2].revents & POLLOUT)
flush_unpriv_ibuf("dispatch");
if ((fds[2].revents & (POLLIN | POLLHUP))) {
/* Pipe to [priv] closed. Assume it emitted error. */
quit = INTERNALSIG;
continue;
}
}
if (quit == SIGHUP) {
/* Tell [priv] process that HUP has occurred. */
sendhup(client->active);
warning("%s; restarting", strsignal(quit));
exit (0);
} else if (quit != INTERNALSIG) {
warning("%s; exiting", strsignal(quit));
exit(1);
}
}
void
packethandler(void)
{
struct sockaddr_in from;
struct ether_addr hfrom;
struct in_addr ifrom;
ssize_t result;
if ((result = receive_packet(&from, &hfrom)) == -1) {
warning("%s receive_packet failed: %s", ifi->name,
strerror(errno));
ifi->errors++;
if (ifi->errors > 20) {
error("%s too many receive_packet failures; exiting",
ifi->name);
}
return;
}
ifi->errors = 0;
if (result == 0)
return;
ifrom.s_addr = from.sin_addr.s_addr;
do_packet(from.sin_port, ifrom, &hfrom);
}
void
interface_link_forceup(char *ifname)
{
struct ifreq ifr;
int sock;
if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
error("Can't create socket");
memset(&ifr, 0, sizeof(ifr));
strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
if (ioctl(sock, SIOCGIFFLAGS, (caddr_t)&ifr) == -1) {
note("interface_link_forceup: SIOCGIFFLAGS failed (%s)",
strerror(errno));
close(sock);
return;
}
/* Force it down and up so others notice link state change. */
ifr.ifr_flags &= ~IFF_UP;
if (ioctl(sock, SIOCSIFFLAGS, (caddr_t)&ifr) == -1) {
note("interface_link_forceup: SIOCSIFFLAGS DOWN failed (%s)",
strerror(errno));
close(sock);
return;
}
ifr.ifr_flags |= IFF_UP;
if (ioctl(sock, SIOCSIFFLAGS, (caddr_t)&ifr) == -1) {
note("interface_link_forceup: SIOCSIFFLAGS UP failed (%s)",
strerror(errno));
close(sock);
return;
}
close(sock);
}
int
interface_status(char *ifname)
{
struct ifreq ifr;
struct ifmediareq ifmr;
int sock;
if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
error("Can't create socket");
/* Get interface flags. */
memset(&ifr, 0, sizeof(ifr));
strlcpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
if (ioctl(sock, SIOCGIFFLAGS, &ifr) == -1) {
error("ioctl(SIOCGIFFLAGS) on %s: %s", ifname,
strerror(errno));
}
if ((ifr.ifr_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING))
goto inactive;
/* Next, check carrier on the interface if possible. */
if (ifi->flags & IFI_NOMEDIA)
goto active;
memset(&ifmr, 0, sizeof(ifmr));
strlcpy(ifmr.ifm_name, ifname, sizeof(ifmr.ifm_name));
if (ioctl(sock, SIOCGIFMEDIA, (caddr_t)&ifmr) == -1) {
/*
* EINVAL or ENOTTY simply means that the interface does not
* support the SIOCGIFMEDIA ioctl. We regard it alive.
*/
#ifdef DEBUG
if (errno != EINVAL && errno != ENOTTY)
debug("ioctl(SIOCGIFMEDIA) on %s: %s", ifname,
strerror(errno));
#endif
ifi->flags |= IFI_NOMEDIA;
goto active;
}
if (ifmr.ifm_status & IFM_AVALID) {
if (ifmr.ifm_status & IFM_ACTIVE)
goto active;
else
goto inactive;
}
/* Assume 'active' if IFM_AVALID is not set. */
active:
close(sock);
return (1);
inactive:
close(sock);
return (0);
}
void
set_timeout(time_t when, void (*where)(void))
{
timeout.when = when;
timeout.func = where;
}
void
set_timeout_interval(time_t secs, void (*where)(void))
{
timeout.when = time(NULL) + secs;
timeout.func = where;
}
void
cancel_timeout(void)
{
timeout.when = 0;
timeout.func = NULL;
}
int
get_rdomain(char *name)
{
int rv = 0, s;
struct ifreq ifr;
if ((s = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
error("get_rdomain socket: %s", strerror(errno));
memset(&ifr, 0, sizeof(ifr));
strlcpy(ifr.ifr_name, name, sizeof(ifr.ifr_name));
if (ioctl(s, SIOCGIFRDOMAIN, (caddr_t)&ifr) != -1)
rv = ifr.ifr_rdomainid;
close(s);
return rv;
}
int
subnet_exists(struct client_lease *l)
{
struct option_data *opt;
struct ifaddrs *ifap, *ifa;
struct in_addr mymask, myaddr, mynet, hismask, hisaddr, hisnet;
int myrdomain, hisrdomain;
opt = &l->options[DHO_SUBNET_MASK];
if (opt->len == sizeof(mymask))
mymask.s_addr = ((struct in_addr *)opt->data)->s_addr;
else
mymask.s_addr = INADDR_ANY;
myaddr.s_addr = l->address.s_addr;
mynet.s_addr = mymask.s_addr & myaddr.s_addr;
myrdomain = get_rdomain(ifi->name);
if (getifaddrs(&ifap) != 0)
error("getifaddrs failed");
for (ifa = ifap; ifa != NULL; ifa = ifa->ifa_next) {
if (strcmp(ifi->name, ifa->ifa_name) == 0)
continue;
if (ifa->ifa_addr->sa_family != AF_INET)
continue;
hisrdomain = get_rdomain(ifa->ifa_name);
if (hisrdomain != myrdomain)
continue;
memcpy(&hismask,
&((struct sockaddr_in *)ifa->ifa_netmask)->sin_addr,
sizeof(hismask));
memcpy(&hisaddr,
&((struct sockaddr_in *)ifa->ifa_addr)->sin_addr,
sizeof(hisaddr));
hisnet.s_addr = hisaddr.s_addr & hismask.s_addr;
if (hisnet.s_addr == INADDR_ANY)
continue;
/* Would his packets go out *my* interface? */
if (mynet.s_addr == (hisaddr.s_addr & mymask.s_addr)) {
note("interface %s already has the offered subnet!",
ifa->ifa_name);
break;
}
/* Would my packets go out *his* interface? */
if (hisnet.s_addr == (myaddr.s_addr & hismask.s_addr)) {
note("interface %s already has the offered subnet!",
ifa->ifa_name);
break;
}
}
freeifaddrs(ifap);
/* If ifa == NULL we scanned the list without finding a problem. */
if (ifa == NULL)
return (0);
else
return (1);
}
|