config: Support infinite as DHCP pool leasetime value
[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 /* Infinite valid */
185 a->valid_until = 0;
186
187 // Assign to all interfaces
188 struct dhcpv4_assignment *c;
189 list_for_each_entry(c, &iface->dhcpv4_assignments, head) {
190 if (c->addr > a->addr) {
191 list_add_tail(&a->head, &c->head);
192 break;
193 } else if (c->addr == a->addr) {
194 // Already an assignment with that number
195 break;
196 }
197 }
198 if (&c->head == &iface->dhcpv4_assignments) {
199 list_add(&a->head, &iface->dhcpv4_assignments);
200 }
201
202 if (!a->head.next)
203 free(a);
204 }
205
206 // Clean invalid assignments
207 struct dhcpv4_assignment *a, *n;
208 list_for_each_entry_safe(a, n, &iface->dhcpv4_assignments, head) {
209 if ((htonl(a->addr) & smask->sin_addr.s_addr) !=
210 (iface->dhcpv4_start.s_addr & smask->sin_addr.s_addr)) {
211 list_del(&a->head);
212 free(a);
213 }
214 }
215
216
217 if (iface->dhcpv4_leasetime < 60)
218 iface->dhcpv4_leasetime = 43200;
219
220 iface->dhcpv4_event.uloop.fd = sock;
221 iface->dhcpv4_event.handle_dgram = handle_dhcpv4;
222 odhcpd_register(&iface->dhcpv4_event);
223 } else if (iface->dhcpv4_assignments.next) {
224 while (!list_empty(&iface->dhcpv4_assignments)) {
225 struct dhcpv4_assignment *a = list_first_entry(&iface->dhcpv4_assignments,
226 struct dhcpv4_assignment, head);
227 list_del(&a->head);
228 free(a);
229 }
230
231 }
232 return 0;
233 }
234
235
236 static void dhcpv4_put(struct dhcpv4_message *msg, uint8_t **cookie,
237 uint8_t type, uint8_t len, const void *data)
238 {
239 uint8_t *c = *cookie;
240 if (*cookie + 2 + len > (uint8_t*)&msg[1])
241 return;
242
243 *c++ = type;
244 *c++ = len;
245 memcpy(c, data, len);
246
247 *cookie = c + len;
248 }
249
250 // Handler for DHCPv4 messages
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 if (leasetime != UINT32_MAX) {
400 val = htonl(500 * leasetime / 1000);
401 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_RENEW, 4, &val);
402
403 val = htonl(875 * leasetime / 1000);
404 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_REBIND, 4, &val);
405 }
406
407 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_NETMASK, 4, &ifnetmask.sin_addr);
408
409 if (lease->hostname[0])
410 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_HOSTNAME,
411 strlen(lease->hostname), lease->hostname);
412
413 if (!ioctl(sock, SIOCGIFBRDADDR, &ifr)) {
414 struct sockaddr_in *ina = (struct sockaddr_in*)&ifr.ifr_broadaddr;
415 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_BROADCAST, 4, &ina->sin_addr);
416 }
417 }
418
419 if (!ioctl(sock, SIOCGIFMTU, &ifr)) {
420 uint16_t mtu = htons(ifr.ifr_mtu);
421 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_MTU, 2, &mtu);
422 }
423
424 if (iface->search && iface->search_len <= 255) {
425 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_SEARCH_DOMAIN,
426 iface->search_len, iface->search);
427 } else if (!res_init() && _res.dnsrch[0] && _res.dnsrch[0][0]) {
428 uint8_t search_buf[256];
429 int len = dn_comp(_res.dnsrch[0], search_buf,
430 sizeof(search_buf), NULL, NULL);
431 if (len > 0)
432 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_SEARCH_DOMAIN,
433 len, search_buf);
434 }
435
436 if (iface->dhcpv4_router_cnt == 0)
437 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_ROUTER, 4, &ifaddr.sin_addr);
438 else
439 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_ROUTER,
440 4 * iface->dhcpv4_router_cnt, iface->dhcpv4_router);
441
442
443 if (iface->dhcpv4_dns_cnt == 0)
444 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_DNSSERVER, 4, &ifaddr.sin_addr);
445 else
446 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_DNSSERVER,
447 4 * iface->dhcpv4_dns_cnt, iface->dhcpv4_dns);
448
449
450 dhcpv4_put(&reply, &cookie, DHCPV4_OPT_END, 0, NULL);
451
452 struct sockaddr_in dest = *((struct sockaddr_in*)addr);
453 if (req->giaddr.s_addr) {
454 /*
455 * relay agent is configured, send reply to the agent
456 */
457 dest.sin_addr = req->giaddr;
458 dest.sin_port = htons(DHCPV4_SERVER_PORT);
459 } else if (req->ciaddr.s_addr && req->ciaddr.s_addr != dest.sin_addr.s_addr) {
460 /*
461 * client has existing configuration (ciaddr is set) AND this address is
462 * not the address it used for the dhcp message
463 */
464 dest.sin_addr = req->ciaddr;
465 dest.sin_port = htons(DHCPV4_CLIENT_PORT);
466 } else if ((ntohs(req->flags) & DHCPV4_FLAG_BROADCAST) ||
467 req->hlen != reply.hlen || !reply.yiaddr.s_addr) {
468 /*
469 * client requests a broadcast reply OR we can't offer an IP
470 */
471 dest.sin_addr.s_addr = INADDR_BROADCAST;
472 dest.sin_port = htons(DHCPV4_CLIENT_PORT);
473 } else if (!req->ciaddr.s_addr && msg == DHCPV4_MSG_NAK) {
474 /*
475 * client has no previous configuration -> no IP, so we need to reply
476 * with a broadcast packet
477 */
478 dest.sin_addr.s_addr = INADDR_BROADCAST;
479 dest.sin_port = htons(DHCPV4_CLIENT_PORT);
480 } else {
481 /*
482 * send reply to the newly (in this proccess) allocated IP
483 */
484 dest.sin_addr = reply.yiaddr;
485 dest.sin_port = htons(DHCPV4_CLIENT_PORT);
486
487 struct arpreq arp = {.arp_flags = ATF_COM};
488 memcpy(arp.arp_ha.sa_data, req->chaddr, 6);
489 memcpy(&arp.arp_pa, &dest, sizeof(arp.arp_pa));
490 memcpy(arp.arp_dev, iface->ifname, sizeof(arp.arp_dev));
491 ioctl(sock, SIOCSARP, &arp);
492 }
493
494 if (dest.sin_addr.s_addr == INADDR_BROADCAST) {
495 /*
496 * reply goes to IP broadcast -> MAC broadcast
497 */
498 syslog(LOG_WARNING, "sending %s to ff:ff:ff:ff:ff:ff - %s",
499 dhcpv4_msg_to_string(msg),
500 inet_ntoa(dest.sin_addr));
501 } else {
502 /*
503 * reply is send directly to IP,
504 * MAC is assumed to be the same as the request
505 */
506 syslog(LOG_WARNING, "sending %s to %x:%x:%x:%x:%x:%x - %s",
507 dhcpv4_msg_to_string(msg),
508 req->chaddr[0],req->chaddr[1],req->chaddr[2],
509 req->chaddr[3],req->chaddr[4],req->chaddr[5],
510 inet_ntoa(dest.sin_addr));
511 }
512
513 sendto(sock, &reply, sizeof(reply), MSG_DONTWAIT,
514 (struct sockaddr*)&dest, sizeof(dest));
515 }
516
517 static bool dhcpv4_test(struct interface *iface, uint32_t try)
518 {
519 struct dhcpv4_assignment *c;
520 list_for_each_entry(c, &iface->dhcpv4_assignments, head) {
521 if (c->addr == try) {
522 return false;
523 }
524 }
525 return true;
526 }
527
528 static bool dhcpv4_assign(struct interface *iface,
529 struct dhcpv4_assignment *assign, uint32_t raddr)
530 {
531 uint32_t start = ntohl(iface->dhcpv4_start.s_addr);
532 uint32_t end = ntohl(iface->dhcpv4_end.s_addr);
533 uint32_t count = end - start + 1;
534
535 // try to assign the IP the client asked for
536 if (start <= raddr && raddr <= end && dhcpv4_test(iface, raddr)) {
537 assign->addr = raddr;
538 list_add(&assign->head, &iface->dhcpv4_assignments);
539 syslog(LOG_DEBUG, "assigning the IP the client asked for: %u.%u.%u.%u",
540 (assign->addr & 0xff000000) >> 24,
541 (assign->addr & 0x00ff0000) >> 16,
542 (assign->addr & 0x0000ff00) >> 8,
543 (assign->addr & 0x000000ff));
544 return true;
545 }
546
547 // Seed RNG with checksum of hwaddress
548 uint32_t seed = 0;
549 for (size_t i = 0; i < sizeof(assign->hwaddr); ++i) {
550 // Knuth's multiplicative method
551 uint8_t o = assign->hwaddr[i];
552 seed += (o*2654435761) % UINT32_MAX;
553 }
554 srand(seed);
555
556 uint32_t try = (((uint32_t)rand()) % count) + start;
557
558 if (list_empty(&iface->dhcpv4_assignments)) {
559 assign->addr = try;
560 list_add(&assign->head, &iface->dhcpv4_assignments);
561 syslog(LOG_DEBUG, "assigning mapped IP (empty list): %u.%u.%u.%u",
562 (assign->addr & 0xff000000) >> 24,
563 (assign->addr & 0x00ff0000) >> 16,
564 (assign->addr & 0x0000ff00) >> 8,
565 (assign->addr & 0x000000ff));
566 return true;
567 }
568
569 for (uint32_t i = 0; i < count; ++i) {
570 if (dhcpv4_test(iface, try)) {
571 /* test was successful: IP address is not assigned, assign it */
572 assign->addr = try;
573 list_add(&assign->head, &iface->dhcpv4_assignments);
574 syslog(LOG_DEBUG, "assigning mapped IP: %u.%u.%u.%u (try %u of %u)",
575 (assign->addr & 0xff000000) >> 24,
576 (assign->addr & 0x00ff0000) >> 16,
577 (assign->addr & 0x0000ff00) >> 8,
578 (assign->addr & 0x000000ff), i, count);
579 return true;
580 }
581 try = (((try - start) + 1) % count) + start;
582 }
583
584 syslog(LOG_DEBUG, "can't assign any IP address -> address space is full");
585 return false;
586 }
587
588
589 static struct dhcpv4_assignment* dhcpv4_lease(struct interface *iface,
590 enum dhcpv4_msg msg, const uint8_t *mac, struct in_addr reqaddr,
591 const char *hostname)
592 {
593 struct dhcpv4_assignment *lease = NULL;
594 uint32_t raddr = ntohl(reqaddr.s_addr);
595 time_t now = odhcpd_time();
596
597 struct dhcpv4_assignment *c, *n, *a = NULL;
598 list_for_each_entry_safe(c, n, &iface->dhcpv4_assignments, head) {
599 if (!memcmp(c->hwaddr, mac, 6)) {
600 a = c;
601 if (c->addr == raddr)
602 break;
603 } else if (!INFINITE_VALID(c->valid_until) && c->valid_until < now) {
604 list_del(&c->head);
605 free(c);
606 }
607 }
608
609 if (msg == DHCPV4_MSG_DISCOVER || msg == DHCPV4_MSG_REQUEST) {
610 bool assigned = !!a;
611 size_t hostlen = strlen(hostname) + 1;
612
613 if (!a && !iface->no_dynamic_dhcp) { // Create new binding
614 a = calloc(1, sizeof(*a) + hostlen);
615 if (!a) {
616 syslog(LOG_ERR, "Failed to calloc binding on interface %s", iface->ifname);
617 return NULL;
618 }
619 memcpy(a->hwaddr, mac, sizeof(a->hwaddr));
620 memcpy(a->hostname, hostname, hostlen);
621
622 assigned = dhcpv4_assign(iface, a, raddr);
623 }
624
625 if (assigned && !a->hostname[0] && hostname) {
626 a = realloc(a, sizeof(*a) + hostlen);
627 if (!a) {
628 syslog(LOG_ERR, "Failed to realloc binding on interface %s", iface->ifname);
629 return NULL;
630 }
631 memcpy(a->hostname, hostname, hostlen);
632
633 // Fixup list
634 a->head.next->prev = &a->head;
635 a->head.prev->next = &a->head;
636 }
637
638 uint32_t leasetime;
639 if (a->leasetime) {
640 leasetime = a->leasetime;
641 } else {
642 leasetime = iface->dhcpv4_leasetime;
643 }
644
645 // Was only a discover; mark binding for removal
646 if (assigned && a->valid_until < now) {
647 a->valid_until = ((msg == DHCPV4_MSG_DISCOVER) ? now : ((leasetime == UINT32_MAX) ?
648 0 : (time_t)(now + leasetime)));
649 } else if (!assigned && a) { // Cleanup failed assignment
650 free(a);
651 a = NULL;
652 }
653
654 if (assigned && a)
655 lease = a;
656 } else if (msg == DHCPV4_MSG_RELEASE) {
657 if (a && !INFINITE_VALID(a->valid_until))
658 a->valid_until = now - 1;
659 } else if (msg == DHCPV4_MSG_DECLINE && a && !INFINITE_VALID(a->valid_until)) {
660 memset(a->hwaddr, 0, sizeof(a->hwaddr));
661 a->valid_until = now + 3600; // Block address for 1h
662 }
663
664 dhcpv6_write_statefile();
665
666 return lease;
667 }
668