blob: ff74507398c7e44b69280ea415de0a69b5c199c5 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenko8a7c1662010-03-20 03:48:11 +01002/*
Denys Vlasenko385b4562010-03-26 10:09:34 +01003 * udhcp server
Mike Frysinger7031f622006-05-08 03:20:50 +00004 * Copyright (C) 1999 Matthew Ramsay <matthewr@moreton.com.au>
5 * Chris Trew <ctrew@moreton.com.au>
6 *
7 * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
8 *
Denys Vlasenko8a7c1662010-03-20 03:48:11 +01009 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Mike Frysinger7031f622006-05-08 03:20:50 +000022 */
Denys Vlasenkof7683cd2016-11-23 18:54:59 +010023//applet:IF_UDHCPD(APPLET(udhcpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
24
25//kbuild:lib-$(CONFIG_UDHCPD) += common.o packet.o signalpipe.o socket.o
26//kbuild:lib-$(CONFIG_UDHCPD) += dhcpd.o arpping.o
27//kbuild:lib-$(CONFIG_FEATURE_UDHCP_RFC3397) += domain_codec.o
Pere Orga5bc8c002011-04-11 03:29:49 +020028
29//usage:#define udhcpd_trivial_usage
Denys Vlasenko7b5d5c12013-03-14 02:18:52 +010030//usage: "[-fS] [-I ADDR]" IF_FEATURE_UDHCP_PORT(" [-P N]") " [CONFFILE]"
Pere Orga5bc8c002011-04-11 03:29:49 +020031//usage:#define udhcpd_full_usage "\n\n"
32//usage: "DHCP server\n"
33//usage: "\n -f Run in foreground"
34//usage: "\n -S Log to syslog too"
Denys Vlasenkoe3f5b732013-03-13 22:27:37 +010035//usage: "\n -I ADDR Local address"
Michel Stam9f412712014-10-30 11:59:04 +010036//usage: "\n -a MSEC Timeout for ARP ping (default 2000)"
Pere Orga5bc8c002011-04-11 03:29:49 +020037//usage: IF_FEATURE_UDHCP_PORT(
38//usage: "\n -P N Use port N (default 67)"
39//usage: )
40
Denys Vlasenko2bf29312016-10-04 00:37:50 +020041#include <netinet/ether.h>
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +000042#include <syslog.h>
Mike Frysinger7031f622006-05-08 03:20:50 +000043#include "common.h"
Denis Vlasenkod55fe3e2008-02-04 13:12:16 +000044#include "dhcpc.h"
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000045#include "dhcpd.h"
Mike Frysinger7031f622006-05-08 03:20:50 +000046
Denys Vlasenkoa85740c2016-10-04 00:51:38 +020047/* globals */
Denys Vlasenko06076492018-02-01 10:41:14 +010048#define g_leases ((struct dyn_lease*)ptr_to_globals)
Denys Vlasenkoa85740c2016-10-04 00:51:38 +020049/* struct server_config_t server_config is in bb_common_bufsiz1 */
50
Denys Vlasenkod2ae66c2016-10-04 00:43:14 +020051/* Takes the address of the pointer to the static_leases linked list,
52 * address to a 6 byte mac address,
53 * 4 byte IP address */
54static void add_static_lease(struct static_lease **st_lease_pp,
55 uint8_t *mac,
56 uint32_t nip)
57{
58 struct static_lease *st_lease;
59
60 /* Find the tail of the list */
61 while ((st_lease = *st_lease_pp) != NULL) {
62 st_lease_pp = &st_lease->next;
63 }
64
65 /* Add new node */
66 *st_lease_pp = st_lease = xzalloc(sizeof(*st_lease));
67 memcpy(st_lease->mac, mac, 6);
68 st_lease->nip = nip;
69 /*st_lease->next = NULL;*/
70}
71
72/* Find static lease IP by mac */
73static uint32_t get_static_nip_by_mac(struct static_lease *st_lease, void *mac)
74{
75 while (st_lease) {
76 if (memcmp(st_lease->mac, mac, 6) == 0)
77 return st_lease->nip;
78 st_lease = st_lease->next;
79 }
80
81 return 0;
82}
83
Denys Vlasenkoa85740c2016-10-04 00:51:38 +020084static int is_nip_reserved(struct static_lease *st_lease, uint32_t nip)
85{
86 while (st_lease) {
87 if (st_lease->nip == nip)
88 return 1;
89 st_lease = st_lease->next;
90 }
91
92 return 0;
93}
94
Denys Vlasenkod2ae66c2016-10-04 00:43:14 +020095#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 2
96/* Print out static leases just to check what's going on */
97/* Takes the address of the pointer to the static_leases linked list */
98static void log_static_leases(struct static_lease **st_lease_pp)
99{
100 struct static_lease *cur;
101
102 if (dhcp_verbose < 2)
103 return;
104
105 cur = *st_lease_pp;
106 while (cur) {
107 bb_error_msg("static lease: mac:%02x:%02x:%02x:%02x:%02x:%02x nip:%x",
108 cur->mac[0], cur->mac[1], cur->mac[2],
109 cur->mac[3], cur->mac[4], cur->mac[5],
110 cur->nip
111 );
112 cur = cur->next;
113 }
114}
115#else
116# define log_static_leases(st_lease_pp) ((void)0)
117#endif
118
Denys Vlasenkoa85740c2016-10-04 00:51:38 +0200119/* Find the oldest expired lease, NULL if there are no expired leases */
120static struct dyn_lease *oldest_expired_lease(void)
121{
122 struct dyn_lease *oldest_lease = NULL;
123 leasetime_t oldest_time = time(NULL);
124 unsigned i;
125
126 /* Unexpired leases have g_leases[i].expires >= current time
127 * and therefore can't ever match */
128 for (i = 0; i < server_config.max_leases; i++) {
129 if (g_leases[i].expires == 0 /* empty entry */
130 || g_leases[i].expires < oldest_time
131 ) {
132 oldest_time = g_leases[i].expires;
133 oldest_lease = &g_leases[i];
134 }
135 }
136 return oldest_lease;
137}
138
139/* Clear out all leases with matching nonzero chaddr OR yiaddr.
140 * If chaddr == NULL, this is a conflict lease.
141 */
142static void clear_leases(const uint8_t *chaddr, uint32_t yiaddr)
143{
144 unsigned i;
145
146 for (i = 0; i < server_config.max_leases; i++) {
147 if ((chaddr && memcmp(g_leases[i].lease_mac, chaddr, 6) == 0)
148 || (yiaddr && g_leases[i].lease_nip == yiaddr)
149 ) {
150 memset(&g_leases[i], 0, sizeof(g_leases[i]));
151 }
152 }
153}
154
155/* Add a lease into the table, clearing out any old ones.
156 * If chaddr == NULL, this is a conflict lease.
157 */
158static struct dyn_lease *add_lease(
159 const uint8_t *chaddr, uint32_t yiaddr,
160 leasetime_t leasetime,
161 const char *hostname, int hostname_len)
162{
163 struct dyn_lease *oldest;
164
165 /* clean out any old ones */
166 clear_leases(chaddr, yiaddr);
167
168 oldest = oldest_expired_lease();
169
170 if (oldest) {
171 memset(oldest, 0, sizeof(*oldest));
172 if (hostname) {
173 char *p;
174
175 hostname_len++; /* include NUL */
176 if (hostname_len > sizeof(oldest->hostname))
177 hostname_len = sizeof(oldest->hostname);
178 p = safe_strncpy(oldest->hostname, hostname, hostname_len);
179 /*
180 * Sanitization (s/bad_char/./g).
181 * The intent is not to allow only "DNS-valid" hostnames,
182 * but merely make dumpleases output safe for shells to use.
183 * We accept "0-9A-Za-z._-", all other chars turn to dots.
184 */
185 while (*p) {
186 if (!isalnum(*p) && *p != '-' && *p != '_')
187 *p = '.';
188 p++;
189 }
190 }
191 if (chaddr)
192 memcpy(oldest->lease_mac, chaddr, 6);
193 oldest->lease_nip = yiaddr;
194 oldest->expires = time(NULL) + leasetime;
195 }
196
197 return oldest;
198}
199
200/* True if a lease has expired */
201static int is_expired_lease(struct dyn_lease *lease)
202{
203 return (lease->expires < (leasetime_t) time(NULL));
204}
205
206/* Find the first lease that matches MAC, NULL if no match */
207static struct dyn_lease *find_lease_by_mac(const uint8_t *mac)
208{
209 unsigned i;
210
211 for (i = 0; i < server_config.max_leases; i++)
212 if (memcmp(g_leases[i].lease_mac, mac, 6) == 0)
213 return &g_leases[i];
214
215 return NULL;
216}
217
218/* Find the first lease that matches IP, NULL is no match */
219static struct dyn_lease *find_lease_by_nip(uint32_t nip)
220{
221 unsigned i;
222
223 for (i = 0; i < server_config.max_leases; i++)
224 if (g_leases[i].lease_nip == nip)
225 return &g_leases[i];
226
227 return NULL;
228}
229
230/* Check if the IP is taken; if it is, add it to the lease table */
231static int nobody_responds_to_arp(uint32_t nip, const uint8_t *safe_mac, unsigned arpping_ms)
232{
233 struct in_addr temp;
234 int r;
235
236 r = arpping(nip, safe_mac,
237 server_config.server_nip,
238 server_config.server_mac,
239 server_config.interface,
240 arpping_ms);
241 if (r)
242 return r;
243
244 temp.s_addr = nip;
245 bb_error_msg("%s belongs to someone, reserving it for %u seconds",
246 inet_ntoa(temp), (unsigned)server_config.conflict_time);
247 add_lease(NULL, nip, server_config.conflict_time, NULL, 0);
248 return 0;
249}
250
251/* Find a new usable (we think) address */
252static uint32_t find_free_or_expired_nip(const uint8_t *safe_mac, unsigned arpping_ms)
253{
254 uint32_t addr;
255 struct dyn_lease *oldest_lease = NULL;
256
257#if ENABLE_FEATURE_UDHCPD_BASE_IP_ON_MAC
258 uint32_t stop;
259 unsigned i, hash;
260
261 /* hash hwaddr: use the SDBM hashing algorithm. Seems to give good
262 * dispersal even with similarly-valued "strings".
263 */
264 hash = 0;
265 for (i = 0; i < 6; i++)
266 hash += safe_mac[i] + (hash << 6) + (hash << 16) - hash;
267
268 /* pick a seed based on hwaddr then iterate until we find a free address. */
269 addr = server_config.start_ip
270 + (hash % (1 + server_config.end_ip - server_config.start_ip));
271 stop = addr;
272#else
273 addr = server_config.start_ip;
274#define stop (server_config.end_ip + 1)
275#endif
276 do {
277 uint32_t nip;
278 struct dyn_lease *lease;
279
280 /* ie, 192.168.55.0 */
281 if ((addr & 0xff) == 0)
282 goto next_addr;
283 /* ie, 192.168.55.255 */
284 if ((addr & 0xff) == 0xff)
285 goto next_addr;
286 nip = htonl(addr);
287 /* skip our own address */
288 if (nip == server_config.server_nip)
289 goto next_addr;
290 /* is this a static lease addr? */
291 if (is_nip_reserved(server_config.static_leases, nip))
292 goto next_addr;
293
294 lease = find_lease_by_nip(nip);
295 if (!lease) {
296//TODO: DHCP servers do not always sit on the same subnet as clients: should *ping*, not arp-ping!
297 if (nobody_responds_to_arp(nip, safe_mac, arpping_ms))
298 return nip;
299 } else {
300 if (!oldest_lease || lease->expires < oldest_lease->expires)
301 oldest_lease = lease;
302 }
303
304 next_addr:
305 addr++;
306#if ENABLE_FEATURE_UDHCPD_BASE_IP_ON_MAC
307 if (addr > server_config.end_ip)
308 addr = server_config.start_ip;
309#endif
310 } while (addr != stop);
311
312 if (oldest_lease
313 && is_expired_lease(oldest_lease)
314 && nobody_responds_to_arp(oldest_lease->lease_nip, safe_mac, arpping_ms)
315 ) {
316 return oldest_lease->lease_nip;
317 }
318
319 return 0;
320}
321
Denys Vlasenkod2ae66c2016-10-04 00:43:14 +0200322/* On these functions, make sure your datatype matches */
Denys Vlasenko2bf29312016-10-04 00:37:50 +0200323static int FAST_FUNC read_str(const char *line, void *arg)
324{
325 char **dest = arg;
326
327 free(*dest);
328 *dest = xstrdup(line);
329 return 1;
330}
331
332static int FAST_FUNC read_u32(const char *line, void *arg)
333{
334 *(uint32_t*)arg = bb_strtou32(line, NULL, 10);
335 return errno == 0;
336}
337
338static int FAST_FUNC read_staticlease(const char *const_line, void *arg)
339{
340 char *line;
341 char *mac_string;
342 char *ip_string;
343 struct ether_addr mac_bytes; /* it's "struct { uint8_t mac[6]; }" */
344 uint32_t nip;
345
346 /* Read mac */
347 line = (char *) const_line;
348 mac_string = strtok_r(line, " \t", &line);
349 if (!mac_string || !ether_aton_r(mac_string, &mac_bytes))
350 return 0;
351
352 /* Read ip */
353 ip_string = strtok_r(NULL, " \t", &line);
354 if (!ip_string || !udhcp_str2nip(ip_string, &nip))
355 return 0;
356
357 add_static_lease(arg, (uint8_t*) &mac_bytes, nip);
358
359 log_static_leases(arg);
360
361 return 1;
362}
363
Denys Vlasenkoba4fbca2017-06-28 19:18:17 +0200364static int FAST_FUNC read_optset(const char *line, void *arg) {
365 return udhcp_str2optset(line, arg, dhcp_optflags, dhcp_option_strings);
366}
367
Denys Vlasenko2bf29312016-10-04 00:37:50 +0200368struct config_keyword {
369 const char *keyword;
370 int (*handler)(const char *line, void *var) FAST_FUNC;
371 unsigned ofs;
372 const char *def;
373};
374
375#define OFS(field) offsetof(struct server_config_t, field)
376
377static const struct config_keyword keywords[] = {
378 /* keyword handler variable address default */
379 {"start" , udhcp_str2nip , OFS(start_ip ), "192.168.0.20"},
380 {"end" , udhcp_str2nip , OFS(end_ip ), "192.168.0.254"},
381 {"interface" , read_str , OFS(interface ), "eth0"},
382 /* Avoid "max_leases value not sane" warning by setting default
383 * to default_end_ip - default_start_ip + 1: */
384 {"max_leases" , read_u32 , OFS(max_leases ), "235"},
385 {"auto_time" , read_u32 , OFS(auto_time ), "7200"},
386 {"decline_time" , read_u32 , OFS(decline_time ), "3600"},
387 {"conflict_time", read_u32 , OFS(conflict_time), "3600"},
388 {"offer_time" , read_u32 , OFS(offer_time ), "60"},
389 {"min_lease" , read_u32 , OFS(min_lease_sec), "60"},
390 {"lease_file" , read_str , OFS(lease_file ), LEASES_FILE},
391 {"pidfile" , read_str , OFS(pidfile ), "/var/run/udhcpd.pid"},
392 {"siaddr" , udhcp_str2nip , OFS(siaddr_nip ), "0.0.0.0"},
393 /* keywords with no defaults must be last! */
Denys Vlasenkoba4fbca2017-06-28 19:18:17 +0200394 {"option" , read_optset , OFS(options ), ""},
395 {"opt" , read_optset , OFS(options ), ""},
Denys Vlasenko2bf29312016-10-04 00:37:50 +0200396 {"notify_file" , read_str , OFS(notify_file ), NULL},
397 {"sname" , read_str , OFS(sname ), NULL},
398 {"boot_file" , read_str , OFS(boot_file ), NULL},
399 {"static_lease" , read_staticlease, OFS(static_leases), ""},
400};
401enum { KWS_WITH_DEFAULTS = ARRAY_SIZE(keywords) - 6 };
402
403static NOINLINE void read_config(const char *file)
404{
405 parser_t *parser;
406 const struct config_keyword *k;
407 unsigned i;
408 char *token[2];
409
410 for (i = 0; i < KWS_WITH_DEFAULTS; i++)
411 keywords[i].handler(keywords[i].def, (char*)&server_config + keywords[i].ofs);
412
413 parser = config_open(file);
414 while (config_read(parser, token, 2, 2, "# \t", PARSE_NORMAL)) {
415 for (k = keywords, i = 0; i < ARRAY_SIZE(keywords); k++, i++) {
416 if (strcasecmp(token[0], k->keyword) == 0) {
417 if (!k->handler(token[1], (char*)&server_config + k->ofs)) {
418 bb_error_msg("can't parse line %u in %s",
419 parser->lineno, file);
420 /* reset back to the default value */
421 k->handler(k->def, (char*)&server_config + k->ofs);
422 }
423 break;
424 }
425 }
426 }
427 config_close(parser);
428
429 server_config.start_ip = ntohl(server_config.start_ip);
430 server_config.end_ip = ntohl(server_config.end_ip);
431}
432
433static void write_leases(void)
434{
435 int fd;
436 unsigned i;
437 leasetime_t curr;
438 int64_t written_at;
439
440 fd = open_or_warn(server_config.lease_file, O_WRONLY|O_CREAT|O_TRUNC);
441 if (fd < 0)
442 return;
443
444 curr = written_at = time(NULL);
445
446 written_at = SWAP_BE64(written_at);
447 full_write(fd, &written_at, sizeof(written_at));
448
449 for (i = 0; i < server_config.max_leases; i++) {
450 leasetime_t tmp_time;
451
452 if (g_leases[i].lease_nip == 0)
453 continue;
454
455 /* Screw with the time in the struct, for easier writing */
456 tmp_time = g_leases[i].expires;
457
458 g_leases[i].expires -= curr;
459 if ((signed_leasetime_t) g_leases[i].expires < 0)
460 g_leases[i].expires = 0;
461 g_leases[i].expires = htonl(g_leases[i].expires);
462
463 /* No error check. If the file gets truncated,
464 * we lose some leases on restart. Oh well. */
465 full_write(fd, &g_leases[i], sizeof(g_leases[i]));
466
467 /* Then restore it when done */
468 g_leases[i].expires = tmp_time;
469 }
470 close(fd);
471
472 if (server_config.notify_file) {
473 char *argv[3];
474 argv[0] = server_config.notify_file;
475 argv[1] = server_config.lease_file;
476 argv[2] = NULL;
477 spawn_and_wait(argv);
478 }
479}
480
481static NOINLINE void read_leases(const char *file)
482{
483 struct dyn_lease lease;
484 int64_t written_at, time_passed;
485 int fd;
486#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
487 unsigned i = 0;
488#endif
489
490 fd = open_or_warn(file, O_RDONLY);
491 if (fd < 0)
492 return;
493
494 if (full_read(fd, &written_at, sizeof(written_at)) != sizeof(written_at))
495 goto ret;
496 written_at = SWAP_BE64(written_at);
497
498 time_passed = time(NULL) - written_at;
499 /* Strange written_at, or lease file from old version of udhcpd
500 * which had no "written_at" field? */
501 if ((uint64_t)time_passed > 12 * 60 * 60)
502 goto ret;
503
504 while (full_read(fd, &lease, sizeof(lease)) == sizeof(lease)) {
505 uint32_t y = ntohl(lease.lease_nip);
506 if (y >= server_config.start_ip && y <= server_config.end_ip) {
507 signed_leasetime_t expires = ntohl(lease.expires) - (signed_leasetime_t)time_passed;
508 uint32_t static_nip;
509
510 if (expires <= 0)
511 /* We keep expired leases: add_lease() will add
512 * a lease with 0 seconds remaining.
513 * Fewer IP address changes this way for mass reboot scenario.
514 */
515 expires = 0;
516
517 /* Check if there is a different static lease for this IP or MAC */
518 static_nip = get_static_nip_by_mac(server_config.static_leases, lease.lease_mac);
519 if (static_nip) {
520 /* NB: we do not add lease even if static_nip == lease.lease_nip.
521 */
522 continue;
523 }
524 if (is_nip_reserved(server_config.static_leases, lease.lease_nip))
525 continue;
526
527 /* NB: add_lease takes "relative time", IOW,
528 * lease duration, not lease deadline. */
529 if (add_lease(lease.lease_mac, lease.lease_nip,
530 expires,
531 lease.hostname, sizeof(lease.hostname)
532 ) == 0
533 ) {
534 bb_error_msg("too many leases while loading %s", file);
535 break;
536 }
537#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
538 i++;
539#endif
540 }
541 }
542 log1("read %d leases", i);
543 ret:
544 close(fd);
545}
Mike Frysinger7031f622006-05-08 03:20:50 +0000546
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100547/* Send a packet to a specific mac address and ip address by creating our own ip packet */
548static void send_packet_to_client(struct dhcp_packet *dhcp_pkt, int force_broadcast)
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100549{
550 const uint8_t *chaddr;
551 uint32_t ciaddr;
552
553 // Was:
554 //if (force_broadcast) { /* broadcast */ }
555 //else if (dhcp_pkt->ciaddr) { /* unicast to dhcp_pkt->ciaddr */ }
556 //else if (dhcp_pkt->flags & htons(BROADCAST_FLAG)) { /* broadcast */ }
557 //else { /* unicast to dhcp_pkt->yiaddr */ }
558 // But this is wrong: yiaddr is _our_ idea what client's IP is
559 // (for example, from lease file). Client may not know that,
560 // and may not have UDP socket listening on that IP!
561 // We should never unicast to dhcp_pkt->yiaddr!
562 // dhcp_pkt->ciaddr, OTOH, comes from client's request packet,
563 // and can be used.
564
565 if (force_broadcast
566 || (dhcp_pkt->flags & htons(BROADCAST_FLAG))
Denys Vlasenko53f72bb2010-03-21 06:46:09 +0100567 || dhcp_pkt->ciaddr == 0
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100568 ) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200569 log1("broadcasting packet to client");
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100570 ciaddr = INADDR_BROADCAST;
571 chaddr = MAC_BCAST_ADDR;
572 } else {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200573 log1("unicasting packet to client ciaddr");
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100574 ciaddr = dhcp_pkt->ciaddr;
575 chaddr = dhcp_pkt->chaddr;
576 }
577
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100578 udhcp_send_raw_packet(dhcp_pkt,
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100579 /*src*/ server_config.server_nip, SERVER_PORT,
580 /*dst*/ ciaddr, CLIENT_PORT, chaddr,
581 server_config.ifindex);
582}
583
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100584/* Send a packet to gateway_nip using the kernel ip stack */
585static void send_packet_to_relay(struct dhcp_packet *dhcp_pkt)
586{
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200587 log1("forwarding packet to relay");
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100588
589 udhcp_send_kernel_packet(dhcp_pkt,
590 server_config.server_nip, SERVER_PORT,
Denys Vlasenkoa6a3ad32017-09-29 15:55:24 +0200591 dhcp_pkt->gateway_nip, SERVER_PORT,
592 /*send_flags:*/ 0
593 );
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100594}
595
596static void send_packet(struct dhcp_packet *dhcp_pkt, int force_broadcast)
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100597{
598 if (dhcp_pkt->gateway_nip)
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100599 send_packet_to_relay(dhcp_pkt);
600 else
601 send_packet_to_client(dhcp_pkt, force_broadcast);
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100602}
603
604static void init_packet(struct dhcp_packet *packet, struct dhcp_packet *oldpacket, char type)
605{
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100606 /* Sets op, htype, hlen, cookie fields
607 * and adds DHCP_MESSAGE_TYPE option */
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100608 udhcp_init_header(packet, type);
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100609
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100610 packet->xid = oldpacket->xid;
611 memcpy(packet->chaddr, oldpacket->chaddr, sizeof(oldpacket->chaddr));
612 packet->flags = oldpacket->flags;
613 packet->gateway_nip = oldpacket->gateway_nip;
614 packet->ciaddr = oldpacket->ciaddr;
Denys Vlasenko7724c762010-03-26 09:32:09 +0100615 udhcp_add_simple_option(packet, DHCP_SERVER_ID, server_config.server_nip);
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100616}
617
Denys Vlasenkoe5ce91b2010-03-21 00:43:11 +0100618/* Fill options field, siaddr_nip, and sname and boot_file fields.
619 * TODO: teach this code to use overload option.
620 */
621static void add_server_options(struct dhcp_packet *packet)
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100622{
Denys Vlasenkoe5ce91b2010-03-21 00:43:11 +0100623 struct option_set *curr = server_config.options;
624
625 while (curr) {
626 if (curr->data[OPT_CODE] != DHCP_LEASE_TIME)
Denys Vlasenko7724c762010-03-26 09:32:09 +0100627 udhcp_add_binary_option(packet, curr->data);
Denys Vlasenkoe5ce91b2010-03-21 00:43:11 +0100628 curr = curr->next;
629 }
630
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100631 packet->siaddr_nip = server_config.siaddr_nip;
Denys Vlasenkoe5ce91b2010-03-21 00:43:11 +0100632
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100633 if (server_config.sname)
634 strncpy((char*)packet->sname, server_config.sname, sizeof(packet->sname) - 1);
635 if (server_config.boot_file)
636 strncpy((char*)packet->file, server_config.boot_file, sizeof(packet->file) - 1);
637}
638
639static uint32_t select_lease_time(struct dhcp_packet *packet)
640{
641 uint32_t lease_time_sec = server_config.max_lease_sec;
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100642 uint8_t *lease_time_opt = udhcp_get_option(packet, DHCP_LEASE_TIME);
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100643 if (lease_time_opt) {
644 move_from_unaligned32(lease_time_sec, lease_time_opt);
645 lease_time_sec = ntohl(lease_time_sec);
646 if (lease_time_sec > server_config.max_lease_sec)
647 lease_time_sec = server_config.max_lease_sec;
648 if (lease_time_sec < server_config.min_lease_sec)
649 lease_time_sec = server_config.min_lease_sec;
650 }
651 return lease_time_sec;
652}
653
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100654/* We got a DHCP DISCOVER. Send an OFFER. */
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200655/* NOINLINE: limit stack usage in caller */
Denys Vlasenkofa5e2952010-11-28 01:10:51 +0100656static NOINLINE void send_offer(struct dhcp_packet *oldpacket,
657 uint32_t static_lease_nip,
658 struct dyn_lease *lease,
Michel Stam9f412712014-10-30 11:59:04 +0100659 uint8_t *requested_ip_opt,
660 unsigned arpping_ms)
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100661{
662 struct dhcp_packet packet;
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100663 uint32_t lease_time_sec;
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100664 struct in_addr addr;
665
666 init_packet(&packet, oldpacket, DHCPOFFER);
667
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100668 /* If it is a static lease, use its IP */
669 packet.yiaddr = static_lease_nip;
670 /* Else: */
Denys Vlasenkoa9539872010-03-20 03:49:27 +0100671 if (!static_lease_nip) {
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100672 /* We have no static lease for client's chaddr */
Denys Vlasenkoe5ce91b2010-03-21 00:43:11 +0100673 uint32_t req_nip;
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100674 const char *p_host_name;
Denys Vlasenkoe5ce91b2010-03-21 00:43:11 +0100675
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100676 if (lease) {
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100677 /* We have a dynamic lease for client's chaddr.
678 * Reuse its IP (even if lease is expired).
679 * Note that we ignore requested IP in this case.
680 */
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100681 packet.yiaddr = lease->lease_nip;
682 }
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100683 /* Or: if client has requested an IP */
Denys Vlasenkofa5e2952010-11-28 01:10:51 +0100684 else if (requested_ip_opt != NULL
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100685 /* (read IP) */
Denys Vlasenkofa5e2952010-11-28 01:10:51 +0100686 && (move_from_unaligned32(req_nip, requested_ip_opt), 1)
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100687 /* and the IP is in the lease range */
688 && ntohl(req_nip) >= server_config.start_ip
689 && ntohl(req_nip) <= server_config.end_ip
Denys Vlasenkoe5ce91b2010-03-21 00:43:11 +0100690 /* and */
691 && ( !(lease = find_lease_by_nip(req_nip)) /* is not already taken */
692 || is_expired_lease(lease) /* or is taken, but expired */
693 )
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100694 ) {
695 packet.yiaddr = req_nip;
696 }
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100697 else {
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100698 /* Otherwise, find a free IP */
Michel Stam9f412712014-10-30 11:59:04 +0100699 packet.yiaddr = find_free_or_expired_nip(oldpacket->chaddr, arpping_ms);
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100700 }
701
702 if (!packet.yiaddr) {
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100703 bb_error_msg("no free IP addresses. OFFER abandoned");
704 return;
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100705 }
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100706 /* Reserve the IP for a short time hoping to get DHCPREQUEST soon */
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100707 p_host_name = (const char*) udhcp_get_option(oldpacket, DHCP_HOST_NAME);
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100708 lease = add_lease(packet.chaddr, packet.yiaddr,
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100709 server_config.offer_time,
710 p_host_name,
711 p_host_name ? (unsigned char)p_host_name[OPT_LEN - OPT_DATA] : 0
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100712 );
713 if (!lease) {
714 bb_error_msg("no free IP addresses. OFFER abandoned");
715 return;
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100716 }
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100717 }
718
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100719 lease_time_sec = select_lease_time(oldpacket);
Denys Vlasenko7724c762010-03-26 09:32:09 +0100720 udhcp_add_simple_option(&packet, DHCP_LEASE_TIME, htonl(lease_time_sec));
Denys Vlasenkoe5ce91b2010-03-21 00:43:11 +0100721 add_server_options(&packet);
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100722
723 addr.s_addr = packet.yiaddr;
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200724 bb_error_msg("sending OFFER of %s", inet_ntoa(addr));
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100725 /* send_packet emits error message itself if it detects failure */
726 send_packet(&packet, /*force_bcast:*/ 0);
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100727}
728
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200729/* NOINLINE: limit stack usage in caller */
730static NOINLINE void send_NAK(struct dhcp_packet *oldpacket)
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100731{
732 struct dhcp_packet packet;
733
734 init_packet(&packet, oldpacket, DHCPNAK);
735
Denys Vlasenko16efe192016-03-30 18:44:52 +0200736 log1("sending %s", "NAK");
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100737 send_packet(&packet, /*force_bcast:*/ 1);
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100738}
739
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200740/* NOINLINE: limit stack usage in caller */
741static NOINLINE void send_ACK(struct dhcp_packet *oldpacket, uint32_t yiaddr)
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100742{
743 struct dhcp_packet packet;
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100744 uint32_t lease_time_sec;
745 struct in_addr addr;
746 const char *p_host_name;
747
748 init_packet(&packet, oldpacket, DHCPACK);
749 packet.yiaddr = yiaddr;
750
751 lease_time_sec = select_lease_time(oldpacket);
Denys Vlasenko7724c762010-03-26 09:32:09 +0100752 udhcp_add_simple_option(&packet, DHCP_LEASE_TIME, htonl(lease_time_sec));
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100753
Denys Vlasenkoe5ce91b2010-03-21 00:43:11 +0100754 add_server_options(&packet);
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100755
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100756 addr.s_addr = yiaddr;
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200757 bb_error_msg("sending ACK to %s", inet_ntoa(addr));
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100758 send_packet(&packet, /*force_bcast:*/ 0);
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100759
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100760 p_host_name = (const char*) udhcp_get_option(oldpacket, DHCP_HOST_NAME);
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100761 add_lease(packet.chaddr, packet.yiaddr,
762 lease_time_sec,
763 p_host_name,
764 p_host_name ? (unsigned char)p_host_name[OPT_LEN - OPT_DATA] : 0
765 );
766 if (ENABLE_FEATURE_UDHCPD_WRITE_LEASES_EARLY) {
767 /* rewrite the file with leases at every new acceptance */
768 write_leases();
769 }
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100770}
771
Denys Vlasenko0bb35e12010-10-21 12:33:10 +0200772/* NOINLINE: limit stack usage in caller */
773static NOINLINE void send_inform(struct dhcp_packet *oldpacket)
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100774{
775 struct dhcp_packet packet;
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100776
Denys Vlasenkof8fcc182010-04-04 22:36:34 +0200777 /* "If a client has obtained a network address through some other means
778 * (e.g., manual configuration), it may use a DHCPINFORM request message
779 * to obtain other local configuration parameters. Servers receiving a
780 * DHCPINFORM message construct a DHCPACK message with any local
781 * configuration parameters appropriate for the client without:
782 * allocating a new address, checking for an existing binding, filling
783 * in 'yiaddr' or including lease time parameters. The servers SHOULD
784 * unicast the DHCPACK reply to the address given in the 'ciaddr' field
785 * of the DHCPINFORM message.
786 * ...
787 * The server responds to a DHCPINFORM message by sending a DHCPACK
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100788 * message directly to the address given in the 'ciaddr' field
789 * of the DHCPINFORM message. The server MUST NOT send a lease
790 * expiration time to the client and SHOULD NOT fill in 'yiaddr'."
791 */
Denys Vlasenkof8fcc182010-04-04 22:36:34 +0200792//TODO: do a few sanity checks: is ciaddr set?
793//Better yet: is ciaddr == IP source addr?
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100794 init_packet(&packet, oldpacket, DHCPACK);
Denys Vlasenkoe5ce91b2010-03-21 00:43:11 +0100795 add_server_options(&packet);
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100796
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100797 send_packet(&packet, /*force_bcast:*/ 0);
Denys Vlasenko8a7c1662010-03-20 03:48:11 +0100798}
799
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000800int udhcpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000801int udhcpd_main(int argc UNUSED_PARAM, char **argv)
Mike Frysinger7031f622006-05-08 03:20:50 +0000802{
Denys Vlasenko52a515d2017-02-16 23:25:44 +0100803 int server_socket = -1, retval;
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200804 uint8_t *state;
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000805 unsigned timeout_end;
806 unsigned num_ips;
Denis Vlasenko3d17d2b2007-08-14 16:45:29 +0000807 unsigned opt;
Mike Frysinger7031f622006-05-08 03:20:50 +0000808 struct option_set *option;
Denys Vlasenkoe3f5b732013-03-13 22:27:37 +0100809 char *str_I = str_I;
Michel Stam9f412712014-10-30 11:59:04 +0100810 const char *str_a = "2000";
811 unsigned arpping_ms;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000812 IF_FEATURE_UDHCP_PORT(char *str_P;)
Mike Frysinger7031f622006-05-08 03:20:50 +0000813
Denys Vlasenkodf70a432016-04-21 18:54:36 +0200814 setup_common_bufsiz();
815
816 IF_FEATURE_UDHCP_PORT(SERVER_PORT = 67;)
817 IF_FEATURE_UDHCP_PORT(CLIENT_PORT = 68;)
Denis Vlasenkod55fe3e2008-02-04 13:12:16 +0000818
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200819 opt = getopt32(argv, "^"
820 "fSI:va:"IF_FEATURE_UDHCP_PORT("P:")
821 "\0"
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200822#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200823 "vv"
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200824#endif
Denys Vlasenkoe3f5b732013-03-13 22:27:37 +0100825 , &str_I
Michel Stam9f412712014-10-30 11:59:04 +0100826 , &str_a
Denys Vlasenkoe3f5b732013-03-13 22:27:37 +0100827 IF_FEATURE_UDHCP_PORT(, &str_P)
Leonid Lisovskiy6c9c0a12011-10-18 00:35:47 +0200828 IF_UDHCP_VERBOSE(, &dhcp_verbose)
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200829 );
Denis Vlasenko3d17d2b2007-08-14 16:45:29 +0000830 if (!(opt & 1)) { /* no -f */
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000831 bb_daemonize_or_rexec(0, argv);
Denis Vlasenkoa19e6492009-03-11 14:40:00 +0000832 logmode = LOGMODE_NONE;
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +0000833 }
Mike Frysinger6db13732010-06-04 13:24:50 -0400834 /* update argv after the possible vfork+exec in daemonize */
835 argv += optind;
Denis Vlasenko3d17d2b2007-08-14 16:45:29 +0000836 if (opt & 2) { /* -S */
Denis Vlasenko5e4fda02009-03-08 23:46:48 +0000837 openlog(applet_name, LOG_PID, LOG_DAEMON);
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +0000838 logmode |= LOGMODE_SYSLOG;
839 }
Denys Vlasenkoe3f5b732013-03-13 22:27:37 +0100840 if (opt & 4) { /* -I */
841 len_and_sockaddr *lsa = xhost_and_af2sockaddr(str_I, 0, AF_INET);
842 server_config.server_nip = lsa->u.sin.sin_addr.s_addr;
843 free(lsa);
844 }
Denis Vlasenkod55fe3e2008-02-04 13:12:16 +0000845#if ENABLE_FEATURE_UDHCP_PORT
Michel Stam9f412712014-10-30 11:59:04 +0100846 if (opt & 32) { /* -P */
Denis Vlasenkod55fe3e2008-02-04 13:12:16 +0000847 SERVER_PORT = xatou16(str_P);
848 CLIENT_PORT = SERVER_PORT + 1;
849 }
850#endif
Michel Stam9f412712014-10-30 11:59:04 +0100851 arpping_ms = xatou(str_a);
852
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +0000853 /* Would rather not do read_config before daemonization -
854 * otherwise NOMMU machines will parse config twice */
Denis Vlasenko9f7b92a2007-08-15 20:03:36 +0000855 read_config(argv[0] ? argv[0] : DHCPD_CONF_FILE);
Mike Frysinger7031f622006-05-08 03:20:50 +0000856
Denis Vlasenko80edead2007-08-02 22:31:05 +0000857 /* Make sure fd 0,1,2 are open */
858 bb_sanitize_stdio();
859 /* Equivalent of doing a fflush after every \n */
860 setlinebuf(stdout);
861
862 /* Create pidfile */
863 write_pidfile(server_config.pidfile);
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100864 /* if (!..) bb_perror_msg("can't create pidfile %s", pidfile); */
Denis Vlasenko80edead2007-08-02 22:31:05 +0000865
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200866 bb_error_msg("started, v"BB_VER);
Mike Frysinger7031f622006-05-08 03:20:50 +0000867
Denys Vlasenko7724c762010-03-26 09:32:09 +0100868 option = udhcp_find_option(server_config.options, DHCP_LEASE_TIME);
Denys Vlasenko2e7aa922010-03-21 02:22:07 +0100869 server_config.max_lease_sec = DEFAULT_LEASE_TIME;
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +0000870 if (option) {
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200871 move_from_unaligned32(server_config.max_lease_sec, option->data + OPT_DATA);
872 server_config.max_lease_sec = ntohl(server_config.max_lease_sec);
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000873 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000874
875 /* Sanity check */
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000876 num_ips = server_config.end_ip - server_config.start_ip + 1;
Mike Frysinger7031f622006-05-08 03:20:50 +0000877 if (server_config.max_leases > num_ips) {
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000878 bb_error_msg("max_leases=%u is too big, setting to %u",
879 (unsigned)server_config.max_leases, num_ips);
Mike Frysinger7031f622006-05-08 03:20:50 +0000880 server_config.max_leases = num_ips;
881 }
882
Denys Vlasenko06076492018-02-01 10:41:14 +0100883 /* this sets g_leases */
884 SET_PTR_TO_GLOBALS(xzalloc(server_config.max_leases * sizeof(g_leases[0])));
885
Mike Frysinger7031f622006-05-08 03:20:50 +0000886 read_leases(server_config.lease_file);
887
Denys Vlasenko26918dd2009-06-16 12:04:23 +0200888 if (udhcp_read_interface(server_config.interface,
889 &server_config.ifindex,
Denys Vlasenkoe3f5b732013-03-13 22:27:37 +0100890 (server_config.server_nip == 0 ? &server_config.server_nip : NULL),
Denys Vlasenko26918dd2009-06-16 12:04:23 +0200891 server_config.server_mac)
892 ) {
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000893 retval = 1;
894 goto ret;
895 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000896
Mike Frysinger7031f622006-05-08 03:20:50 +0000897 /* Setup the signal pipe */
898 udhcp_sp_setup();
899
Denys Vlasenko71045cc2012-07-24 17:21:26 +0200900 continue_with_autotime:
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000901 timeout_end = monotonic_sec() + server_config.auto_time;
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000902 while (1) { /* loop until universe collapses */
Denys Vlasenko52a515d2017-02-16 23:25:44 +0100903 struct pollfd pfds[2];
Denys Vlasenkofa5e2952010-11-28 01:10:51 +0100904 struct dhcp_packet packet;
Denis Vlasenko0416e3d2009-01-01 17:52:09 +0000905 int bytes;
Denys Vlasenko52a515d2017-02-16 23:25:44 +0100906 int tv;
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100907 uint8_t *server_id_opt;
Denys Vlasenkofa5e2952010-11-28 01:10:51 +0100908 uint8_t *requested_ip_opt;
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100909 uint32_t requested_nip = requested_nip; /* for compiler */
Denys Vlasenkofa5e2952010-11-28 01:10:51 +0100910 uint32_t static_lease_nip;
911 struct dyn_lease *lease, fake_lease;
Mike Frysinger7031f622006-05-08 03:20:50 +0000912
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000913 if (server_socket < 0) {
Denis Vlasenkof1980f62008-09-26 09:34:59 +0000914 server_socket = udhcp_listen_socket(/*INADDR_ANY,*/ SERVER_PORT,
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000915 server_config.interface);
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000916 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000917
Denys Vlasenko52a515d2017-02-16 23:25:44 +0100918 udhcp_sp_fd_set(pfds, server_socket);
919 tv = timeout_end - monotonic_sec();
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000920 retval = 0;
Denys Vlasenko52a515d2017-02-16 23:25:44 +0100921 if (!server_config.auto_time || tv > 0) {
922 retval = poll(pfds, 2, server_config.auto_time ? tv * 1000 : -1);
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000923 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000924 if (retval == 0) {
925 write_leases();
Denys Vlasenko71045cc2012-07-24 17:21:26 +0200926 goto continue_with_autotime;
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000927 }
928 if (retval < 0 && errno != EINTR) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200929 log1("error on select");
Mike Frysinger7031f622006-05-08 03:20:50 +0000930 continue;
931 }
932
Denys Vlasenko52a515d2017-02-16 23:25:44 +0100933 switch (udhcp_sp_read(pfds)) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000934 case SIGUSR1:
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200935 bb_error_msg("received %s", "SIGUSR1");
Mike Frysinger7031f622006-05-08 03:20:50 +0000936 write_leases();
937 /* why not just reset the timeout, eh */
Denys Vlasenko71045cc2012-07-24 17:21:26 +0200938 goto continue_with_autotime;
Mike Frysinger7031f622006-05-08 03:20:50 +0000939 case SIGTERM:
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200940 bb_error_msg("received %s", "SIGTERM");
Denys Vlasenko71045cc2012-07-24 17:21:26 +0200941 write_leases();
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000942 goto ret0;
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200943 case 0: /* no signal: read a packet */
Denis Vlasenko0416e3d2009-01-01 17:52:09 +0000944 break;
945 default: /* signal or error (probably EINTR): back to select */
946 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +0000947 }
948
Denis Vlasenko0416e3d2009-01-01 17:52:09 +0000949 bytes = udhcp_recv_kernel_packet(&packet, server_socket);
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +0000950 if (bytes < 0) {
Denis Vlasenko0416e3d2009-01-01 17:52:09 +0000951 /* bytes can also be -2 ("bad packet data") */
Mike Frysinger7031f622006-05-08 03:20:50 +0000952 if (bytes == -1 && errno != EINTR) {
Denys Vlasenko6f97b302017-09-29 18:17:25 +0200953 log1("read error: "STRERROR_FMT", reopening socket" STRERROR_ERRNO);
Mike Frysinger7031f622006-05-08 03:20:50 +0000954 close(server_socket);
955 server_socket = -1;
956 }
957 continue;
958 }
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200959 if (packet.hlen != 6) {
960 bb_error_msg("MAC length != 6, ignoring packet");
961 continue;
962 }
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100963 if (packet.op != BOOTREQUEST) {
964 bb_error_msg("not a REQUEST, ignoring packet");
965 continue;
966 }
Denys Vlasenkodde8bdc2010-03-22 14:29:13 +0100967 state = udhcp_get_option(&packet, DHCP_MESSAGE_TYPE);
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100968 if (state == NULL || state[0] < DHCP_MINTYPE || state[0] > DHCP_MAXTYPE) {
969 bb_error_msg("no or bad message type option, ignoring packet");
Mike Frysinger7031f622006-05-08 03:20:50 +0000970 continue;
971 }
972
Denys Vlasenkofa5e2952010-11-28 01:10:51 +0100973 /* Get SERVER_ID if present */
974 server_id_opt = udhcp_get_option(&packet, DHCP_SERVER_ID);
975 if (server_id_opt) {
Denys Vlasenko713d2412010-11-28 21:51:44 +0100976 uint32_t server_id_network_order;
977 move_from_unaligned32(server_id_network_order, server_id_opt);
978 if (server_id_network_order != server_config.server_nip) {
Denys Vlasenkofa5e2952010-11-28 01:10:51 +0100979 /* client talks to somebody else */
980 log1("server ID doesn't match, ignoring");
981 continue;
982 }
983 }
984
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +0100985 /* Look for a static/dynamic lease */
Denys Vlasenkoa9539872010-03-20 03:49:27 +0100986 static_lease_nip = get_static_nip_by_mac(server_config.static_leases, &packet.chaddr);
987 if (static_lease_nip) {
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200988 bb_error_msg("found static lease: %x", static_lease_nip);
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200989 memcpy(&fake_lease.lease_mac, &packet.chaddr, 6);
Denys Vlasenkoa9539872010-03-20 03:49:27 +0100990 fake_lease.lease_nip = static_lease_nip;
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200991 fake_lease.expires = 0;
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200992 lease = &fake_lease;
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000993 } else {
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200994 lease = find_lease_by_mac(packet.chaddr);
Mike Frysinger7031f622006-05-08 03:20:50 +0000995 }
996
Denys Vlasenkofa5e2952010-11-28 01:10:51 +0100997 /* Get REQUESTED_IP if present */
998 requested_ip_opt = udhcp_get_option(&packet, DHCP_REQUESTED_IP);
999 if (requested_ip_opt) {
1000 move_from_unaligned32(requested_nip, requested_ip_opt);
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001001 }
1002
Mike Frysinger7031f622006-05-08 03:20:50 +00001003 switch (state[0]) {
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001004
Mike Frysinger7031f622006-05-08 03:20:50 +00001005 case DHCPDISCOVER:
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001006 log1("received %s", "DISCOVER");
Mike Frysinger7031f622006-05-08 03:20:50 +00001007
Michel Stam9f412712014-10-30 11:59:04 +01001008 send_offer(&packet, static_lease_nip, lease, requested_ip_opt, arpping_ms);
Mike Frysinger7031f622006-05-08 03:20:50 +00001009 break;
Denys Vlasenko6947d2c2009-06-17 13:24:03 +02001010
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001011 case DHCPREQUEST:
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001012 log1("received %s", "REQUEST");
Denys Vlasenko53f72bb2010-03-21 06:46:09 +01001013/* RFC 2131:
Mike Frysinger7031f622006-05-08 03:20:50 +00001014
Denys Vlasenko53f72bb2010-03-21 06:46:09 +01001015o DHCPREQUEST generated during SELECTING state:
1016
1017 Client inserts the address of the selected server in 'server
1018 identifier', 'ciaddr' MUST be zero, 'requested IP address' MUST be
1019 filled in with the yiaddr value from the chosen DHCPOFFER.
1020
1021 Note that the client may choose to collect several DHCPOFFER
1022 messages and select the "best" offer. The client indicates its
1023 selection by identifying the offering server in the DHCPREQUEST
1024 message. If the client receives no acceptable offers, the client
1025 may choose to try another DHCPDISCOVER message. Therefore, the
1026 servers may not receive a specific DHCPREQUEST from which they can
1027 decide whether or not the client has accepted the offer.
1028
1029o DHCPREQUEST generated during INIT-REBOOT state:
1030
1031 'server identifier' MUST NOT be filled in, 'requested IP address'
1032 option MUST be filled in with client's notion of its previously
1033 assigned address. 'ciaddr' MUST be zero. The client is seeking to
1034 verify a previously allocated, cached configuration. Server SHOULD
1035 send a DHCPNAK message to the client if the 'requested IP address'
1036 is incorrect, or is on the wrong network.
1037
1038 Determining whether a client in the INIT-REBOOT state is on the
1039 correct network is done by examining the contents of 'giaddr', the
1040 'requested IP address' option, and a database lookup. If the DHCP
1041 server detects that the client is on the wrong net (i.e., the
1042 result of applying the local subnet mask or remote subnet mask (if
1043 'giaddr' is not zero) to 'requested IP address' option value
1044 doesn't match reality), then the server SHOULD send a DHCPNAK
1045 message to the client.
1046
1047 If the network is correct, then the DHCP server should check if
1048 the client's notion of its IP address is correct. If not, then the
1049 server SHOULD send a DHCPNAK message to the client. If the DHCP
1050 server has no record of this client, then it MUST remain silent,
1051 and MAY output a warning to the network administrator. This
1052 behavior is necessary for peaceful coexistence of non-
1053 communicating DHCP servers on the same wire.
1054
1055 If 'giaddr' is 0x0 in the DHCPREQUEST message, the client is on
1056 the same subnet as the server. The server MUST broadcast the
1057 DHCPNAK message to the 0xffffffff broadcast address because the
1058 client may not have a correct network address or subnet mask, and
1059 the client may not be answering ARP requests.
1060
1061 If 'giaddr' is set in the DHCPREQUEST message, the client is on a
1062 different subnet. The server MUST set the broadcast bit in the
1063 DHCPNAK, so that the relay agent will broadcast the DHCPNAK to the
1064 client, because the client may not have a correct network address
1065 or subnet mask, and the client may not be answering ARP requests.
1066
1067o DHCPREQUEST generated during RENEWING state:
1068
1069 'server identifier' MUST NOT be filled in, 'requested IP address'
1070 option MUST NOT be filled in, 'ciaddr' MUST be filled in with
1071 client's IP address. In this situation, the client is completely
1072 configured, and is trying to extend its lease. This message will
1073 be unicast, so no relay agents will be involved in its
1074 transmission. Because 'giaddr' is therefore not filled in, the
1075 DHCP server will trust the value in 'ciaddr', and use it when
1076 replying to the client.
1077
1078 A client MAY choose to renew or extend its lease prior to T1. The
1079 server may choose not to extend the lease (as a policy decision by
1080 the network administrator), but should return a DHCPACK message
1081 regardless.
1082
1083o DHCPREQUEST generated during REBINDING state:
1084
1085 'server identifier' MUST NOT be filled in, 'requested IP address'
1086 option MUST NOT be filled in, 'ciaddr' MUST be filled in with
1087 client's IP address. In this situation, the client is completely
1088 configured, and is trying to extend its lease. This message MUST
1089 be broadcast to the 0xffffffff IP broadcast address. The DHCP
1090 server SHOULD check 'ciaddr' for correctness before replying to
1091 the DHCPREQUEST.
1092
1093 The DHCPREQUEST from a REBINDING client is intended to accommodate
1094 sites that have multiple DHCP servers and a mechanism for
1095 maintaining consistency among leases managed by multiple servers.
1096 A DHCP server MAY extend a client's lease only if it has local
1097 administrative authority to do so.
1098*/
Denys Vlasenkofa5e2952010-11-28 01:10:51 +01001099 if (!requested_ip_opt) {
Denys Vlasenko53f72bb2010-03-21 06:46:09 +01001100 requested_nip = packet.ciaddr;
1101 if (requested_nip == 0) {
1102 log1("no requested IP and no ciaddr, ignoring");
1103 break;
1104 }
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001105 }
1106 if (lease && requested_nip == lease->lease_nip) {
Denys Vlasenko53f72bb2010-03-21 06:46:09 +01001107 /* client requested or configured IP matches the lease.
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001108 * ACK it, and bump lease expiration time. */
1109 send_ACK(&packet, lease->lease_nip);
1110 break;
1111 }
Denys Vlasenko713d2412010-11-28 21:51:44 +01001112 /* No lease for this MAC, or lease IP != requested IP */
1113
1114 if (server_id_opt /* client is in SELECTING state */
1115 || requested_ip_opt /* client is in INIT-REBOOT state */
1116 ) {
1117 /* "No, we don't have this IP for you" */
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001118 send_NAK(&packet);
Denys Vlasenko713d2412010-11-28 21:51:44 +01001119 } /* else: client is in RENEWING or REBINDING, do not answer */
1120
Mike Frysinger7031f622006-05-08 03:20:50 +00001121 break;
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001122
Mike Frysinger7031f622006-05-08 03:20:50 +00001123 case DHCPDECLINE:
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001124 /* RFC 2131:
1125 * "If the server receives a DHCPDECLINE message,
1126 * the client has discovered through some other means
1127 * that the suggested network address is already
1128 * in use. The server MUST mark the network address
1129 * as not available and SHOULD notify the local
1130 * sysadmin of a possible configuration problem."
1131 *
1132 * SERVER_ID must be present,
1133 * REQUESTED_IP must be present,
1134 * chaddr must be filled in,
1135 * ciaddr must be 0 (we do not check this)
1136 */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001137 log1("received %s", "DECLINE");
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001138 if (server_id_opt
Denys Vlasenkofa5e2952010-11-28 01:10:51 +01001139 && requested_ip_opt
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001140 && lease /* chaddr matches this lease */
1141 && requested_nip == lease->lease_nip
1142 ) {
Denys Vlasenko31af3d52009-06-17 11:57:09 +02001143 memset(lease->lease_mac, 0, sizeof(lease->lease_mac));
Denis Vlasenko04158e02009-02-02 10:48:06 +00001144 lease->expires = time(NULL) + server_config.decline_time;
Mike Frysinger7031f622006-05-08 03:20:50 +00001145 }
1146 break;
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001147
Mike Frysinger7031f622006-05-08 03:20:50 +00001148 case DHCPRELEASE:
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001149 /* "Upon receipt of a DHCPRELEASE message, the server
1150 * marks the network address as not allocated."
1151 *
1152 * SERVER_ID must be present,
1153 * REQUESTED_IP must not be present (we do not check this),
1154 * chaddr must be filled in,
1155 * ciaddr must be filled in
1156 */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001157 log1("received %s", "RELEASE");
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001158 if (server_id_opt
1159 && lease /* chaddr matches this lease */
1160 && packet.ciaddr == lease->lease_nip
1161 ) {
Denis Vlasenko04158e02009-02-02 10:48:06 +00001162 lease->expires = time(NULL);
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001163 }
Mike Frysinger7031f622006-05-08 03:20:50 +00001164 break;
Denys Vlasenkoc7dc79e2010-03-21 06:15:28 +01001165
Mike Frysinger7031f622006-05-08 03:20:50 +00001166 case DHCPINFORM:
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +02001167 log1("received %s", "INFORM");
Mike Frysinger7031f622006-05-08 03:20:50 +00001168 send_inform(&packet);
1169 break;
Mike Frysinger7031f622006-05-08 03:20:50 +00001170 }
1171 }
Denis Vlasenko6e6d3312007-05-03 23:39:35 +00001172 ret0:
1173 retval = 0;
1174 ret:
Denis Vlasenko42b3dea2007-07-03 15:47:50 +00001175 /*if (server_config.pidfile) - server_config.pidfile is never NULL */
Denis Vlasenko6e6d3312007-05-03 23:39:35 +00001176 remove_pidfile(server_config.pidfile);
1177 return retval;
Mike Frysinger7031f622006-05-08 03:20:50 +00001178}