f277a67a23f8a49e4da48bc6b88fb170155fc2d7
[project/odhcpd.git] / src / dhcpv4.c
1 /**
2 * Copyright (C) 2012-2013 Steven Barth <steven@midlink.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License v2 as published by
6 * the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 *
14 */
15
16 #include <time.h>
17 #include <errno.h>
18 #include <fcntl.h>
19 #include <unistd.h>
20 #include <stddef.h>
21 #include <stdlib.h>
22 #include <resolv.h>
23 #include <limits.h>
24 #include <net/if.h>
25 #include <net/if_arp.h>
26 #include <netinet/ip.h>
27 #include <sys/ioctl.h>
28 #include <sys/timerfd.h>
29 #include <arpa/inet.h>
30
31 #include "odhcpd.h"
32 #include "dhcpv4.h"
33 #include "dhcpv6.h"
34
35
36 static void handle_dhcpv4(void *addr, void *data, size_t len,
37 struct interface *iface, void *dest_addr);
38 static struct dhcpv4_assignment* dhcpv4_lease(struct interface *iface,
39 enum dhcpv4_msg msg, const uint8_t *mac, struct in_addr reqaddr,
40 const char *hostname);
41
42 // Create socket and register events
43 int init_dhcpv4(void)
44 {
45 return 0;
46 }
47
48 char *dhcpv4_msg_to_string(uint8_t reqmsg)
49 {
50 switch (reqmsg) {
51 case (DHCPV4_MSG_DISCOVER):
52 return "DHCPV4_MSG_DISCOVER";
53 case (DHCPV4_MSG_OFFER):
54 return "DHCPV4_MSG_OFFER";
55 case (DHCPV4_MSG_REQUEST):
56 return "DHCPV4_MSG_REQUEST";
57 case (DHCPV4_MSG_DECLINE):
58 return "DHCPV4_MSG_DECLINE";
59 case (DHCPV4_MSG_ACK):
60 return "DHCPV4_MSG_ACK";
61 case (DHCPV4_MSG_NAK):
62 return "DHCPV4_MSG_NAK";
63 case (DHCPV4_MSG_RELEASE):
64 return "DHCPV4_MSG_RELEASE";
65 case (DHCPV4_MSG_INFORM):
66 return "DHCPV4_MSG_INFORM";
67 default:
68 return "UNKNOWN";
69 }
70 }
71
72 int setup_dhcpv4_interface(struct interface *iface, bool enable)
73 {
74 if (iface->dhcpv4_event.uloop.fd > 0) {
75 uloop_fd_delete(&iface->dhcpv4_event.uloop);
76 close(iface->dhcpv4_event.uloop.fd);
77 iface->dhcpv4_event.uloop.fd = -1;
78 }
79
80 if (iface->dhcpv4 && enable) {
81 if (!iface->dhcpv4_assignments.next)
82 INIT_LIST_HEAD(&iface->dhcpv4_assignments);
83
84 int sock = socket(AF_INET, SOCK_DGRAM | SOCK_CLOEXEC, IPPROTO_UDP);
85 if (sock < 0) {
86 syslog(LOG_ERR, "Failed to create DHCPv4 server socket: %s",
87 strerror(errno));
88 return -1;
89 }
90
91 // Basic IPv6 configuration
92 int val = 1;
93 setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
94 setsockopt(sock, SOL_SOCKET, SO_BROADCAST, &val, sizeof(val));
95 setsockopt(sock, IPPROTO_IP, IP_PKTINFO, &val, sizeof(val));
96
97 val = IPTOS_PREC_INTERNETCONTROL;
98 setsockopt(sock, IPPROTO_IP, IP_TOS, &val, sizeof(val));
99
100 val = IP_PMTUDISC_DONT;
101 setsockopt(sock, IPPROTO_IP, IP_MTU_DISCOVER, &val, sizeof(val));
102
103 setsockopt(sock, SOL_SOCKET, SO_BINDTODEVICE,
104 iface->ifname, strlen(iface->ifname));
105
106 struct sockaddr_in bind_addr = {AF_INET, htons(DHCPV4_SERVER_PORT),
107 {INADDR_ANY}, {0}};
108
109 if (bind(sock, (struct sockaddr*)&bind_addr, sizeof(bind_addr))) {
110 syslog(LOG_ERR, "Failed to open DHCPv4 server socket: %s",
111 strerror(errno));
112 return -1;
113 }
114
115
116 if (ntohl(iface->dhcpv4_start.s_addr) > ntohl(iface->dhcpv4_end.s_addr)) {
117 syslog(LOG_ERR, "Invalid DHCP range");
118 return -1;
119 }
120
121 // Create a range if not specified
122 struct ifreq ifreq;
123 strncpy(ifreq.ifr_name, iface->ifname, sizeof(ifreq.ifr_name));
124
125 struct sockaddr_in *saddr = (struct sockaddr_in*)&ifreq.ifr_addr;
126 struct sockaddr_in *smask = (struct sockaddr_in*)&ifreq.ifr_netmask;
127 if (!(iface->dhcpv4_start.s_addr & htonl(0xffff0000)) &&
128 !(iface->dhcpv4_end.s_addr & htonl(0xffff0000)) &&
129 !ioctl(sock, SIOCGIFADDR, &ifreq)) {
130 struct in_addr addr = saddr->sin_addr;
131
132 ioctl(sock, SIOCGIFNETMASK, &ifreq);
133 struct in_addr mask = smask->sin_addr;
134
135 uint32_t start = ntohl(iface->dhcpv4_start.s_addr);
136 uint32_t end = ntohl(iface->dhcpv4_end.s_addr);
137
138 if (start && end && start < end &&
139 start > ntohl(addr.s_addr & ~mask.s_addr) &&
140 (start & ntohl(~mask.s_addr)) == start &&
141 (end & ntohl(~mask.s_addr)) == end) {
142 iface->dhcpv4_start.s_addr = htonl(start) |
143 (addr.s_addr & mask.s_addr);
144 iface->dhcpv4_end.s_addr = htonl(end) |
145 (addr.s_addr & mask.s_addr);
146 } else if (ntohl(mask.s_addr) <= 0xfffffff0) {
147 start = addr.s_addr & mask.s_addr;
148 end = addr.s_addr & mask.s_addr;
149
150 if (ntohl(mask.s_addr) <= 0xffffff00) {
151 iface->dhcpv4_start.s_addr = start | htonl(100);
152 iface->dhcpv4_end.s_addr = end | htonl(250);
153 } else if (ntohl(mask.s_addr) <= 0xffffffc0) {
154 iface->dhcpv4_start.s_addr = start | htonl(10);
155 iface->dhcpv4_end.s_addr = end | htonl(60);
156 } else if (ntohl(mask.s_addr) <= 0xffffffe0) {
157 iface->dhcpv4_start.s_addr = start | htonl(10);
158 iface->dhcpv4_end.s_addr = end | htonl(30);
159 } else {
160 iface->dhcpv4_start.s_addr = start | htonl(3);
161 iface->dhcpv4_end.s_addr = end | htonl(12);
162 }
163 }
164
165
166 }
167
168 // Parse static entries
169 struct lease *lease;
170 list_for_each_entry(lease, &leases, head) {
171 // Construct entry
172 size_t hostlen = strlen(lease->hostname) + 1;
173 struct dhcpv4_assignment *a = calloc(1, sizeof(*a) + hostlen);
174 if (!a) {
175 syslog(LOG_ERR, "Calloc failed for static lease on interface %s",
176 iface->ifname);
177 return -1;
178 }
179 if (lease->dhcpv4_leasetime >= 60)
180 a->leasetime = lease->dhcpv4_leasetime;
181 a->addr = ntohl(lease->ipaddr.s_addr);
182 memcpy(a->hwaddr, lease->mac.ether_addr_octet, sizeof(a->hwaddr));
183 memcpy(a->hostname, lease->hostname, hostlen);
184 a->valid_until = LONG_MAX;
185
186 // Assign to all interfaces
187 struct dhcpv4_assignment *c;
188 list_for_each_entry(c, &iface->dhcpv4_assignments, head) {
189 if (c->addr > a->addr) {
190 list_add_tail(&a->head, &c->head);
191 break;
192 } else if (c->addr == a->addr) {
193 // Already an assignment with that number
194 break;
195 }
196 }
197 if (&c->head == &iface->dhcpv4_assignments) {
198 list_add(&a->head, &iface->dhcpv4_assignments);
199 }
200
201 if (!a->head.next)
202 free(a);
203 }
204
205 // Clean invalid assignments
206 struct dhcpv4_assignment *a, *n;
207 list_for_each_entry_safe(a, n, &iface->dhcpv4_assignments, head) {
208 if ((htonl(a->addr) & smask->sin_addr.s_addr) !=
209 (iface->dhcpv4_start.s_addr & smask->sin_addr.s_addr)) {
210 list_del(&a->head);
211 free(a);
212 }
213 }
214
215
216 if (iface->dhcpv4_leasetime < 60)
217 iface->dhcpv4_leasetime = 43200;
218
219 iface->dhcpv4_event.uloop.fd = sock;
220 iface->dhcpv4_event.handle_dgram = handle_dhcpv4;
221 odhcpd_register(&iface->dhcpv4_event);
222 } else if (iface->dhcpv4_assignments.next) {
223 while (!list_empty(&iface->dhcpv4_assignments)) {
224 struct dhcpv4_assignment *a = list_first_entry(&iface->dhcpv4_assignments,
225 struct dhcpv4_assignment, head);
226 list_del(&a->head);
227 free(a);
228 }
229
230 }
231 return 0;
232 }
233
234
235 static void dhcpv4_put(struct dhcpv4_message *msg, uint8_t **cookie,
236 uint8_t type, uint8_t len, const void *data)
237 {
238 uint8_t *c = *cookie;
239 if (*cookie + 2 + len > (uint8_t*)&msg[1])
240 return;
241
242 *c++ = type;
243 *c++ = len;
244 memcpy(c, data, len);
245
246 *cookie = c + len;
247 }
248
249
250 // Simple DHCPv6-server for information requests
251 static void handle_dhcpv4(void *addr, void *data, size_t len,
252 struct interface *iface, _unused void *dest_addr)
253 {
254 if (!iface->dhcpv4)
255 return;
256
257 struct dhcpv4_message *req = data;
258 if (len < offsetof(struct dhcpv4_message, options) + 4 ||
259 req->op != DHCPV4_BOOTREQUEST || req->hlen != 6)
260 return;
261
262 int sock = iface->dhcpv4_event.uloop.fd;
263 struct sockaddr_in ifaddr;
264 struct sockaddr_in ifnetmask;
265
266 syslog(LOG_NOTICE, "Got DHCPv4 request");
267
268 struct ifreq ifreq;
269 memcpy(ifreq.ifr_name, iface->ifname, sizeof(ifreq.ifr_name));
270 if (ioctl(sock, SIOCGIFADDR, &ifreq)) {
271 syslog(LOG_WARNING, "DHCPv4 failed to detect address: %s", strerror(errno));
272 return;
273 }
274
275 memcpy(&ifaddr, &ifreq.ifr_addr, sizeof(ifaddr));
276 if (ioctl(sock, SIOCGIFNETMASK, &ifreq))
277 return;
278
279 memcpy(&ifnetmask, &ifreq.ifr_netmask, sizeof(ifnetmask));
280 uint32_t network = ifaddr.sin_addr.s_addr & ifnetmask.sin_addr.s_addr;
281
282 if ((iface->dhcpv4_start.s_addr & ifnetmask.sin_addr.s_addr) != network ||
283 (iface->dhcpv4_end.s_addr & ifnetmask.sin_addr.s_addr) != network) {
284 syslog(LOG_WARNING, "DHCPv4 range out of assigned network");
285 return;
286 }
287
288 struct ifreq ifr = {.ifr_name = ""};
289 strncpy(ifr.ifr_name, iface->ifname, sizeof(ifr.ifr_name));
290
291 struct dhcpv4_message reply = {
292 .op = DHCPV4_BOOTREPLY,
293 .htype = 1,
294 .hlen = 6,
295 .hops = 0,
296 .xid = req->xid,
297 .secs = 0,
298 .flags = req->flags,
299 .ciaddr = {INADDR_ANY},
300 .giaddr = req->giaddr,
301 .siaddr = ifaddr.sin_addr,
302 };
303 memcpy(reply.chaddr, req->chaddr, sizeof(reply.chaddr));
304
305 reply.options[0] = 0x63;
306 reply.options[1] = 0x82;
307 reply.options[2] = 0x53;
308 reply.options[3] = 0x63;
309
310 uint8_t *cookie = &reply.options[4];
311 uint8_t reqmsg = DHCPV4_MSG_REQUEST;
312 uint8_t msg = DHCPV4_MSG_ACK;
313
314 struct in_addr reqaddr = {INADDR_ANY};
315 char hostname[256];
316 hostname[0] = 0;
317
318 uint8_t *start = &req->options[4];
319 uint8_t *end = ((uint8_t*)data) + len;
320 struct dhcpv4_option *opt;
321 dhcpv4_for_each_option(start, end, opt) {
322 if (opt->type == DHCPV4_OPT_MESSAGE && opt->len == 1) {
323 reqmsg = opt->data[0];
324 } else if (opt->type == DHCPV4_OPT_HOSTNAME && opt->len > 0) {
325 memcpy(hostname, opt->data, opt->len);
326 hostname[opt->len] = 0;
327 } else if (opt->type == DHCPV4_OPT_IPADDRESS && opt->len == 4) {
328 memcpy(&reqaddr, opt->data, 4);
329 } else if (opt->type == DHCPV4_OPT_SERVERID && opt->len == 4) {
330 if (memcmp(opt->data, &ifaddr.sin_addr, 4))
331 return;
332 } else if (iface->filter_class && opt->type == DHCPV4_OPT_USER_CLASS) {
333 uint8_t *c = opt->data, *cend = &opt->data[opt->len];
334 for (; c < cend && &c[*c] < cend; c = &c[1 + *c]) {
335 size_t elen = strlen(iface->filter_class);
336 if (*c == elen && !memcmp(&c[1], iface->filter_class, elen))
337 return; // Ignore from homenet
338 }
339 }
340 }
341
342 if (reqmsg != DHCPV4_MSG_DISCOVER && reqmsg != DHCPV4_MSG_REQUEST &&
343 reqmsg != DHCPV4_MSG_INFORM && reqmsg != DHCPV4_MSG_DECLINE &&
344 reqmsg != DHCPV4_MSG_RELEASE)
345 return;
346
347 struct dhcpv4_assignment *lease = NULL;
348 if (reqmsg != DHCPV4_MSG_INFORM)
349 lease = dhcpv4_lease(iface, reqmsg, req->chaddr, reqaddr, hostname);
350
351 if (!lease) {
352 if (reqmsg == DHCPV4_MSG_REQUEST)
353 msg = DHCPV4_MSG_NAK;
354 else if (reqmsg == DHCPV4_MSG_DISCOVER)
355 return;
356 } else if (reqmsg == DHCPV4_MSG_DISCOVER) {
357 msg = DHCPV4_MSG_OFFER;
358 } else if (reqmsg == DHCPV4_MSG_REQUEST && reqaddr.s_addr &&
359 reqaddr.s_addr != htonl(lease->addr)) {
360 msg = DHCPV4_MSG_NAK;
361 /*
362 * DHCP client requested an IP which we can't offer to him. Probably the
363 * client changed the network. The reply type is set to DHCPV4_MSG_NAK,
364 * because the client should not use that IP.
365 *
366 * For modern devices we build an answer that includes a valid IP, like
367 * a DHCPV4_MSG_ACK. The client will use that IP and doesn't need to
368 * perform additional DHCP round trips.
369 *
370 */
371 }
372
373 syslog(LOG_WARNING, "received %s from %x:%x:%x:%x:%x:%x",
374 dhcpv4_msg_to_string(reqmsg),
375 req->chaddr[0],req->chaddr[1],req->chaddr[2],
376 req->chaddr[3],req->chaddr[4],req->chaddr[5]);
377
378 if (reqmsg == DHCPV4_MSG_DECLINE || reqmsg == DHCPV4_MSG_RELEASE)
379 return;
380
381 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_MESSAGE, 1, &msg);
382 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_SERVERID, 4, &ifaddr.sin_addr);
383
384 if (lease) {
385 reply.yiaddr.s_addr = htonl(lease->addr);
386
387 uint32_t val;
388 uint32_t leasetime;
389
390 if (lease->leasetime >= 60) {
391 leasetime = lease->leasetime;
392 } else {
393 leasetime = iface->dhcpv4_leasetime;
394 }
395
396 val = htonl(leasetime);
397 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_LEASETIME, 4, &val);
398
399 val = htonl(500 * leasetime / 1000);
400 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_RENEW, 4, &val);
401
402 val = htonl(875 * leasetime / 1000);
403 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_REBIND, 4, &val);
404
405 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_NETMASK, 4, &ifnetmask.sin_addr);
406
407 if (lease->hostname[0])
408 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_HOSTNAME,
409 strlen(lease->hostname), lease->hostname);
410
411 if (!ioctl(sock, SIOCGIFBRDADDR, &ifr)) {
412 struct sockaddr_in *ina = (struct sockaddr_in*)&ifr.ifr_broadaddr;
413 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_BROADCAST, 4, &ina->sin_addr);
414 }
415 }
416
417 if (!ioctl(sock, SIOCGIFMTU, &ifr)) {
418 uint16_t mtu = htons(ifr.ifr_mtu);
419 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_MTU, 2, &mtu);
420 }
421
422 if (iface->search && iface->search_len <= 255) {
423 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_SEARCH_DOMAIN,
424 iface->search_len, iface->search);
425 } else if (!res_init() && _res.dnsrch[0] && _res.dnsrch[0][0]) {
426 uint8_t search_buf[256];
427 int len = dn_comp(_res.dnsrch[0], search_buf,
428 sizeof(search_buf), NULL, NULL);
429 if (len > 0)
430 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_SEARCH_DOMAIN,
431 len, search_buf);
432 }
433
434 if (iface->dhcpv4_router_cnt == 0)
435 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_ROUTER, 4, &ifaddr.sin_addr);
436 else
437 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_ROUTER,
438 4 * iface->dhcpv4_router_cnt, iface->dhcpv4_router);
439
440
441 if (iface->dhcpv4_dns_cnt == 0)
442 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_DNSSERVER, 4, &ifaddr.sin_addr);
443 else
444 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_DNSSERVER,
445 4 * iface->dhcpv4_dns_cnt, iface->dhcpv4_dns);
446
447
448 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_END, 0, NULL);
449
450 struct sockaddr_in dest = *((struct sockaddr_in*)addr);
451 if (req->giaddr.s_addr) {
452 /*
453 * relay agent is configured, send reply to the agent
454 */
455 dest.sin_addr = req->giaddr;
456 dest.sin_port = htons(DHCPV4_SERVER_PORT);
457 } else if (req->ciaddr.s_addr && req->ciaddr.s_addr != dest.sin_addr.s_addr) {
458 /*
459 * client has existing configuration (ciaddr is set) AND this address is
460 * not the address it used for the dhcp message
461 */
462 dest.sin_addr = req->ciaddr;
463 dest.sin_port = htons(DHCPV4_CLIENT_PORT);
464 } else if ((ntohs(req->flags) & DHCPV4_FLAG_BROADCAST) ||
465 req->hlen != reply.hlen || !reply.yiaddr.s_addr) {
466 /*
467 * client requests a broadcast reply OR we can't offer an IP
468 */
469 dest.sin_addr.s_addr = INADDR_BROADCAST;
470 dest.sin_port = htons(DHCPV4_CLIENT_PORT);
471 } else if (!req->ciaddr.s_addr && msg == DHCPV4_MSG_NAK) {
472 /*
473 * client has no previous configuration -> no IP, so we need to reply
474 * with a broadcast packet
475 */
476 dest.sin_addr.s_addr = INADDR_BROADCAST;
477 dest.sin_port = htons(DHCPV4_CLIENT_PORT);
478 } else {
479 /*
480 * send reply to the newly (in this proccess) allocated IP
481 */
482 dest.sin_addr = reply.yiaddr;
483 dest.sin_port = htons(DHCPV4_CLIENT_PORT);
484
485 struct arpreq arp = {.arp_flags = ATF_COM};
486 memcpy(arp.arp_ha.sa_data, req->chaddr, 6);
487 memcpy(&arp.arp_pa, &dest, sizeof(arp.arp_pa));
488 memcpy(arp.arp_dev, iface->ifname, sizeof(arp.arp_dev));
489 ioctl(sock, SIOCSARP, &arp);
490 }
491
492 if (dest.sin_addr.s_addr == INADDR_BROADCAST) {
493 /*
494 * reply goes to IP broadcast -> MAC broadcast
495 */
496 syslog(LOG_WARNING, "sending %s to ff:ff:ff:ff:ff:ff - %s",
497 dhcpv4_msg_to_string(msg),
498 inet_ntoa(dest.sin_addr));
499 } else {
500 /*
501 * reply is send directly to IP,
502 * MAC is assumed to be the same as the request
503 */
504 syslog(LOG_WARNING, "sending %s to %x:%x:%x:%x:%x:%x - %s",
505 dhcpv4_msg_to_string(msg),
506 req->chaddr[0],req->chaddr[1],req->chaddr[2],
507 req->chaddr[3],req->chaddr[4],req->chaddr[5],
508 inet_ntoa(dest.sin_addr));
509 }
510
511 sendto(sock, &reply, sizeof(reply), MSG_DONTWAIT,
512 (struct sockaddr*)&dest, sizeof(dest));
513 }
514
515 static bool dhcpv4_test(struct interface *iface, uint32_t try)
516 {
517 struct dhcpv4_assignment *c;
518 list_for_each_entry(c, &iface->dhcpv4_assignments, head) {
519 if (c->addr == try) {
520 return false;
521 }
522 }
523 return true;
524 }
525
526 static bool dhcpv4_assign(struct interface *iface,
527 struct dhcpv4_assignment *assign, uint32_t raddr)
528 {
529 uint32_t start = ntohl(iface->dhcpv4_start.s_addr);
530 uint32_t end = ntohl(iface->dhcpv4_end.s_addr);
531 uint32_t count = end - start + 1;
532
533 // try to assign the IP the client asked for
534 if (start <= raddr && raddr <= end && dhcpv4_test(iface, raddr)) {
535 assign->addr = raddr;
536 list_add(&assign->head, &iface->dhcpv4_assignments);
537 syslog(LOG_DEBUG, "assigning the IP the client asked for: %u.%u.%u.%u",
538 (assign->addr & 0xff000000) >> 24,
539 (assign->addr & 0x00ff0000) >> 16,
540 (assign->addr & 0x0000ff00) >> 8,
541 (assign->addr & 0x000000ff));
542 return true;
543 }
544
545 // Seed RNG with checksum of hwaddress
546 uint32_t seed = 0;
547 for (size_t i = 0; i < sizeof(assign->hwaddr); ++i) {
548 // Knuth's multiplicative method
549 uint8_t o = assign->hwaddr[i];
550 seed += (o*2654435761) % UINT32_MAX;
551 }
552 srand(seed);
553
554 uint32_t try = (((uint32_t)rand()) % count) + start;
555
556 if (list_empty(&iface->dhcpv4_assignments)) {
557 assign->addr = try;
558 list_add(&assign->head, &iface->dhcpv4_assignments);
559 syslog(LOG_DEBUG, "assigning mapped IP (empty list): %u.%u.%u.%u",
560 (assign->addr & 0xff000000) >> 24,
561 (assign->addr & 0x00ff0000) >> 16,
562 (assign->addr & 0x0000ff00) >> 8,
563 (assign->addr & 0x000000ff));
564 return true;
565 }
566
567 for (uint32_t i = 0; i < count; ++i) {
568 if (dhcpv4_test(iface, try)) {
569 /* test was successful: IP address is not assigned, assign it */
570 assign->addr = try;
571 list_add(&assign->head, &iface->dhcpv4_assignments);
572 syslog(LOG_DEBUG, "assigning mapped IP: %u.%u.%u.%u (try %u of %u)",
573 (assign->addr & 0xff000000) >> 24,
574 (assign->addr & 0x00ff0000) >> 16,
575 (assign->addr & 0x0000ff00) >> 8,
576 (assign->addr & 0x000000ff), i, count);
577 return true;
578 }
579 try = (((try - start) + 1) % count) + start;
580 }
581
582 syslog(LOG_DEBUG, "can't assign any IP address -> address space is full");
583 return false;
584 }
585
586
587 static struct dhcpv4_assignment* dhcpv4_lease(struct interface *iface,
588 enum dhcpv4_msg msg, const uint8_t *mac, struct in_addr reqaddr,
589 const char *hostname)
590 {
591 struct dhcpv4_assignment *lease = NULL;
592 uint32_t raddr = ntohl(reqaddr.s_addr);
593 time_t now = odhcpd_time();
594
595 struct dhcpv4_assignment *c, *n, *a = NULL;
596 list_for_each_entry_safe(c, n, &iface->dhcpv4_assignments, head) {
597 if (!memcmp(c->hwaddr, mac, 6)) {
598 a = c;
599 if (c->addr == raddr)
600 break;
601 } else if (c->valid_until < now) {
602 list_del(&c->head);
603 free(c);
604 }
605 }
606
607 if (msg == DHCPV4_MSG_DISCOVER || msg == DHCPV4_MSG_REQUEST) {
608 bool assigned = !!a;
609 size_t hostlen = strlen(hostname) + 1;
610
611 if (!a && !iface->no_dynamic_dhcp) { // Create new binding
612 a = calloc(1, sizeof(*a) + hostlen);
613 if (!a) {
614 syslog(LOG_ERR, "Failed to calloc binding on interface %s", iface->ifname);
615 return NULL;
616 }
617 memcpy(a->hwaddr, mac, sizeof(a->hwaddr));
618 memcpy(a->hostname, hostname, hostlen);
619
620 assigned = dhcpv4_assign(iface, a, raddr);
621 }
622
623 if (assigned && !a->hostname[0] && hostname) {
624 a = realloc(a, sizeof(*a) + hostlen);
625 if (!a) {
626 syslog(LOG_ERR, "Failed to realloc binding on interface %s", iface->ifname);
627 return NULL;
628 }
629 memcpy(a->hostname, hostname, hostlen);
630
631 // Fixup list
632 a->head.next->prev = &a->head;
633 a->head.prev->next = &a->head;
634 }
635
636 uint32_t leasetime;
637 if (a->leasetime) {
638 leasetime = a->leasetime;
639 } else {
640 leasetime = iface->dhcpv4_leasetime;
641 }
642
643 // Was only a solicitation: mark binding for removal
644 if (assigned && a->valid_until < now) {
645 a->valid_until = (msg == DHCPV4_MSG_DISCOVER) ? 0 :
646 (now + leasetime);
647 } else if (!assigned && a) { // Cleanup failed assignment
648 free(a);
649 a = NULL;
650 }
651
652 if (assigned && a)
653 lease = a;
654 } else if (msg == DHCPV4_MSG_RELEASE) {
655 if (a && a->valid_until != LONG_MAX)
656 a->valid_until = 0;
657 } else if (msg == DHCPV4_MSG_DECLINE && a && a->valid_until != LONG_MAX) {
658 memset(a->hwaddr, 0, sizeof(a->hwaddr));
659 a->valid_until = now + 3600; // Block address for 1h
660 }
661
662 dhcpv6_write_statefile();
663
664 return lease;
665 }
666