2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-05-08 08:50:50 +05:30
|
|
|
/* dhcpd.c
|
|
|
|
*
|
|
|
|
* udhcp Server
|
|
|
|
* Copyright (C) 1999 Matthew Ramsay <matthewr@moreton.com.au>
|
|
|
|
* Chris Trew <ctrew@moreton.com.au>
|
|
|
|
*
|
|
|
|
* Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
|
|
|
|
*
|
2006-05-28 06:36:36 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2006-05-08 08:50:50 +05:30
|
|
|
*/
|
|
|
|
|
2007-03-26 18:52:35 +05:30
|
|
|
#include <syslog.h>
|
2006-11-19 01:21:32 +05:30
|
|
|
#include "common.h"
|
2006-05-08 08:50:50 +05:30
|
|
|
#include "dhcpd.h"
|
|
|
|
#include "options.h"
|
|
|
|
|
|
|
|
|
|
|
|
/* globals */
|
|
|
|
struct dhcpOfferedAddr *leases;
|
|
|
|
struct server_config_t server_config;
|
|
|
|
|
|
|
|
|
2007-04-05 02:22:03 +05:30
|
|
|
int udhcpd_main(int argc, char **argv);
|
|
|
|
int udhcpd_main(int argc, char **argv)
|
2006-05-08 08:50:50 +05:30
|
|
|
{
|
|
|
|
fd_set rfds;
|
|
|
|
struct timeval tv;
|
2006-05-22 00:00:35 +05:30
|
|
|
int server_socket = -1, bytes, retval, max_sock;
|
2006-05-08 08:50:50 +05:30
|
|
|
struct dhcpMessage packet;
|
2006-05-22 00:00:35 +05:30
|
|
|
uint8_t *state, *server_id, *requested;
|
|
|
|
uint32_t server_id_align, requested_align, static_lease_ip;
|
2007-07-03 21:17:50 +05:30
|
|
|
unsigned timeout_end;
|
|
|
|
unsigned num_ips;
|
2007-08-14 22:15:29 +05:30
|
|
|
unsigned opt;
|
2006-05-08 08:50:50 +05:30
|
|
|
struct option_set *option;
|
2006-05-22 00:00:35 +05:30
|
|
|
struct dhcpOfferedAddr *lease, static_lease;
|
2006-05-08 08:50:50 +05:30
|
|
|
|
2007-08-18 21:02:12 +05:30
|
|
|
opt = getopt32(argv, "fS");
|
2007-08-16 01:33:36 +05:30
|
|
|
argv += optind;
|
2007-03-26 18:52:35 +05:30
|
|
|
|
2007-08-14 22:15:29 +05:30
|
|
|
if (!(opt & 1)) { /* no -f */
|
2007-07-01 22:35:57 +05:30
|
|
|
bb_daemonize_or_rexec(0, argv);
|
2007-05-30 05:59:55 +05:30
|
|
|
logmode &= ~LOGMODE_STDIO;
|
2007-03-26 18:52:35 +05:30
|
|
|
}
|
|
|
|
|
2007-08-14 22:15:29 +05:30
|
|
|
if (opt & 2) { /* -S */
|
2007-03-26 18:52:35 +05:30
|
|
|
openlog(applet_name, LOG_PID, LOG_LOCAL0);
|
|
|
|
logmode |= LOGMODE_SYSLOG;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Would rather not do read_config before daemonization -
|
|
|
|
* otherwise NOMMU machines will parse config twice */
|
2007-08-16 01:33:36 +05:30
|
|
|
read_config(argv[0] ? argv[0] : DHCPD_CONF_FILE);
|
2006-05-08 08:50:50 +05:30
|
|
|
|
2007-08-03 04:01:05 +05:30
|
|
|
/* Make sure fd 0,1,2 are open */
|
|
|
|
bb_sanitize_stdio();
|
|
|
|
/* Equivalent of doing a fflush after every \n */
|
|
|
|
setlinebuf(stdout);
|
|
|
|
|
|
|
|
/* Create pidfile */
|
|
|
|
write_pidfile(server_config.pidfile);
|
|
|
|
/* if (!..) bb_perror_msg("cannot create pidfile %s", pidfile); */
|
|
|
|
|
|
|
|
bb_info_msg("%s (v%s) started", applet_name, BB_VER);
|
2006-05-08 08:50:50 +05:30
|
|
|
|
2007-03-26 18:52:35 +05:30
|
|
|
option = find_option(server_config.options, DHCP_LEASE_TIME);
|
2007-05-04 05:09:35 +05:30
|
|
|
server_config.lease = LEASE_TIME;
|
2007-03-26 18:52:35 +05:30
|
|
|
if (option) {
|
2006-05-08 08:50:50 +05:30
|
|
|
memcpy(&server_config.lease, option->data + 2, 4);
|
|
|
|
server_config.lease = ntohl(server_config.lease);
|
2007-05-04 05:09:35 +05:30
|
|
|
}
|
2006-05-08 08:50:50 +05:30
|
|
|
|
|
|
|
/* Sanity check */
|
2007-07-01 22:35:57 +05:30
|
|
|
num_ips = server_config.end_ip - server_config.start_ip + 1;
|
2006-05-08 08:50:50 +05:30
|
|
|
if (server_config.max_leases > num_ips) {
|
2007-07-03 21:17:50 +05:30
|
|
|
bb_error_msg("max_leases=%u is too big, setting to %u",
|
|
|
|
(unsigned)server_config.max_leases, num_ips);
|
2006-05-08 08:50:50 +05:30
|
|
|
server_config.max_leases = num_ips;
|
|
|
|
}
|
|
|
|
|
2007-07-01 22:35:57 +05:30
|
|
|
leases = xzalloc(server_config.max_leases * sizeof(*leases));
|
2006-05-08 08:50:50 +05:30
|
|
|
read_leases(server_config.lease_file);
|
|
|
|
|
|
|
|
if (read_interface(server_config.interface, &server_config.ifindex,
|
2007-08-03 04:01:05 +05:30
|
|
|
&server_config.server, server_config.arp)) {
|
2007-05-04 05:09:35 +05:30
|
|
|
retval = 1;
|
|
|
|
goto ret;
|
|
|
|
}
|
2006-05-08 08:50:50 +05:30
|
|
|
|
|
|
|
/* Setup the signal pipe */
|
|
|
|
udhcp_sp_setup();
|
|
|
|
|
2007-07-03 21:17:50 +05:30
|
|
|
timeout_end = monotonic_sec() + server_config.auto_time;
|
2006-11-19 01:21:32 +05:30
|
|
|
while (1) { /* loop until universe collapses */
|
2006-05-08 08:50:50 +05:30
|
|
|
|
2006-11-28 05:13:28 +05:30
|
|
|
if (server_socket < 0) {
|
2007-08-18 19:46:39 +05:30
|
|
|
server_socket = listen_socket(/*INADDR_ANY,*/ SERVER_PORT,
|
2007-05-04 05:09:35 +05:30
|
|
|
server_config.interface);
|
2006-11-28 05:13:28 +05:30
|
|
|
}
|
2006-05-08 08:50:50 +05:30
|
|
|
|
|
|
|
max_sock = udhcp_sp_fd_set(&rfds, server_socket);
|
|
|
|
if (server_config.auto_time) {
|
2007-07-03 21:17:50 +05:30
|
|
|
tv.tv_sec = timeout_end - monotonic_sec();
|
2006-05-08 08:50:50 +05:30
|
|
|
tv.tv_usec = 0;
|
|
|
|
}
|
2007-05-04 05:09:35 +05:30
|
|
|
retval = 0;
|
2006-05-08 08:50:50 +05:30
|
|
|
if (!server_config.auto_time || tv.tv_sec > 0) {
|
|
|
|
retval = select(max_sock + 1, &rfds, NULL, NULL,
|
|
|
|
server_config.auto_time ? &tv : NULL);
|
2007-05-04 05:09:35 +05:30
|
|
|
}
|
2006-05-08 08:50:50 +05:30
|
|
|
if (retval == 0) {
|
|
|
|
write_leases();
|
2007-07-03 21:17:50 +05:30
|
|
|
timeout_end = monotonic_sec() + server_config.auto_time;
|
2006-05-08 08:50:50 +05:30
|
|
|
continue;
|
2007-05-04 05:09:35 +05:30
|
|
|
}
|
|
|
|
if (retval < 0 && errno != EINTR) {
|
2006-09-07 00:06:50 +05:30
|
|
|
DEBUG("error on select");
|
2006-05-08 08:50:50 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (udhcp_sp_read(&rfds)) {
|
|
|
|
case SIGUSR1:
|
2006-09-07 00:06:50 +05:30
|
|
|
bb_info_msg("Received a SIGUSR1");
|
2006-05-08 08:50:50 +05:30
|
|
|
write_leases();
|
|
|
|
/* why not just reset the timeout, eh */
|
2007-07-03 21:17:50 +05:30
|
|
|
timeout_end = monotonic_sec() + server_config.auto_time;
|
2006-05-08 08:50:50 +05:30
|
|
|
continue;
|
|
|
|
case SIGTERM:
|
2006-09-07 00:06:50 +05:30
|
|
|
bb_info_msg("Received a SIGTERM");
|
2007-05-04 05:09:35 +05:30
|
|
|
goto ret0;
|
2006-05-08 08:50:50 +05:30
|
|
|
case 0: break; /* no signal */
|
|
|
|
default: continue; /* signal or error (probably EINTR) */
|
|
|
|
}
|
|
|
|
|
2007-03-26 18:52:35 +05:30
|
|
|
bytes = udhcp_get_packet(&packet, server_socket); /* this waits for a packet - idle */
|
|
|
|
if (bytes < 0) {
|
2006-05-08 08:50:50 +05:30
|
|
|
if (bytes == -1 && errno != EINTR) {
|
2006-09-07 00:06:50 +05:30
|
|
|
DEBUG("error on read, %s, reopening socket", strerror(errno));
|
2006-05-08 08:50:50 +05:30
|
|
|
close(server_socket);
|
|
|
|
server_socket = -1;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-03-26 18:52:35 +05:30
|
|
|
state = get_option(&packet, DHCP_MESSAGE_TYPE);
|
|
|
|
if (state == NULL) {
|
2006-09-30 03:00:43 +05:30
|
|
|
bb_error_msg("cannot get option from packet, ignoring");
|
2006-05-08 08:50:50 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Look for a static lease */
|
|
|
|
static_lease_ip = getIpByMac(server_config.static_leases, &packet.chaddr);
|
|
|
|
|
2006-11-19 01:21:32 +05:30
|
|
|
if (static_lease_ip) {
|
2006-09-07 00:06:50 +05:30
|
|
|
bb_info_msg("Found static lease: %x", static_lease_ip);
|
2006-05-08 08:50:50 +05:30
|
|
|
|
|
|
|
memcpy(&static_lease.chaddr, &packet.chaddr, 16);
|
|
|
|
static_lease.yiaddr = static_lease_ip;
|
|
|
|
static_lease.expires = 0;
|
|
|
|
|
|
|
|
lease = &static_lease;
|
2006-11-19 01:21:32 +05:30
|
|
|
} else {
|
|
|
|
lease = find_lease_by_chaddr(packet.chaddr);
|
2006-05-08 08:50:50 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
switch (state[0]) {
|
|
|
|
case DHCPDISCOVER:
|
2006-09-07 00:06:50 +05:30
|
|
|
DEBUG("Received DISCOVER");
|
2006-05-08 08:50:50 +05:30
|
|
|
|
|
|
|
if (sendOffer(&packet) < 0) {
|
2006-09-30 03:00:43 +05:30
|
|
|
bb_error_msg("send OFFER failed");
|
2006-05-08 08:50:50 +05:30
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DHCPREQUEST:
|
2006-09-07 00:06:50 +05:30
|
|
|
DEBUG("received REQUEST");
|
2006-05-08 08:50:50 +05:30
|
|
|
|
|
|
|
requested = get_option(&packet, DHCP_REQUESTED_IP);
|
|
|
|
server_id = get_option(&packet, DHCP_SERVER_ID);
|
|
|
|
|
|
|
|
if (requested) memcpy(&requested_align, requested, 4);
|
|
|
|
if (server_id) memcpy(&server_id_align, server_id, 4);
|
|
|
|
|
|
|
|
if (lease) {
|
|
|
|
if (server_id) {
|
|
|
|
/* SELECTING State */
|
2006-09-07 00:06:50 +05:30
|
|
|
DEBUG("server_id = %08x", ntohl(server_id_align));
|
2007-03-26 18:52:35 +05:30
|
|
|
if (server_id_align == server_config.server && requested
|
|
|
|
&& requested_align == lease->yiaddr
|
|
|
|
) {
|
2006-05-08 08:50:50 +05:30
|
|
|
sendACK(&packet, lease->yiaddr);
|
|
|
|
}
|
2007-03-26 18:52:35 +05:30
|
|
|
} else if (requested) {
|
|
|
|
/* INIT-REBOOT State */
|
|
|
|
if (lease->yiaddr == requested_align)
|
|
|
|
sendACK(&packet, lease->yiaddr);
|
|
|
|
else
|
|
|
|
sendNAK(&packet);
|
|
|
|
} else if (lease->yiaddr == packet.ciaddr) {
|
|
|
|
/* RENEWING or REBINDING State */
|
|
|
|
sendACK(&packet, lease->yiaddr);
|
2006-05-08 08:50:50 +05:30
|
|
|
} else {
|
2007-03-26 18:52:35 +05:30
|
|
|
/* don't know what to do!!!! */
|
|
|
|
sendNAK(&packet);
|
2006-05-08 08:50:50 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* what to do if we have no record of the client */
|
|
|
|
} else if (server_id) {
|
|
|
|
/* SELECTING State */
|
|
|
|
|
|
|
|
} else if (requested) {
|
|
|
|
/* INIT-REBOOT State */
|
2007-03-26 18:52:35 +05:30
|
|
|
lease = find_lease_by_yiaddr(requested_align);
|
|
|
|
if (lease) {
|
2006-05-08 08:50:50 +05:30
|
|
|
if (lease_expired(lease)) {
|
|
|
|
/* probably best if we drop this lease */
|
|
|
|
memset(lease->chaddr, 0, 16);
|
|
|
|
/* make some contention for this address */
|
2007-03-26 18:52:35 +05:30
|
|
|
} else
|
|
|
|
sendNAK(&packet);
|
2007-07-01 22:35:57 +05:30
|
|
|
} else {
|
|
|
|
uint32_t r = ntohl(requested_align);
|
|
|
|
if (r < server_config.start_ip
|
|
|
|
|| r > server_config.end_ip
|
|
|
|
) {
|
|
|
|
sendNAK(&packet);
|
|
|
|
}
|
2007-07-01 22:41:54 +05:30
|
|
|
/* else remain silent */
|
|
|
|
}
|
2006-05-08 08:50:50 +05:30
|
|
|
|
|
|
|
} else {
|
2007-03-26 18:52:35 +05:30
|
|
|
/* RENEWING or REBINDING State */
|
2006-05-08 08:50:50 +05:30
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DHCPDECLINE:
|
2006-09-07 00:06:50 +05:30
|
|
|
DEBUG("Received DECLINE");
|
2006-05-08 08:50:50 +05:30
|
|
|
if (lease) {
|
|
|
|
memset(lease->chaddr, 0, 16);
|
|
|
|
lease->expires = time(0) + server_config.decline_time;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DHCPRELEASE:
|
2006-09-07 00:06:50 +05:30
|
|
|
DEBUG("Received RELEASE");
|
2007-05-04 05:09:35 +05:30
|
|
|
if (lease)
|
|
|
|
lease->expires = time(0);
|
2006-05-08 08:50:50 +05:30
|
|
|
break;
|
|
|
|
case DHCPINFORM:
|
2006-09-07 00:06:50 +05:30
|
|
|
DEBUG("Received INFORM");
|
2006-05-08 08:50:50 +05:30
|
|
|
send_inform(&packet);
|
|
|
|
break;
|
|
|
|
default:
|
2006-09-07 00:06:50 +05:30
|
|
|
bb_info_msg("Unsupported DHCP message (%02x) - ignoring", state[0]);
|
2006-05-08 08:50:50 +05:30
|
|
|
}
|
|
|
|
}
|
2007-05-04 05:09:35 +05:30
|
|
|
ret0:
|
|
|
|
retval = 0;
|
|
|
|
ret:
|
2007-07-03 21:17:50 +05:30
|
|
|
/*if (server_config.pidfile) - server_config.pidfile is never NULL */
|
2007-05-04 05:09:35 +05:30
|
|
|
remove_pidfile(server_config.pidfile);
|
|
|
|
return retval;
|
2006-05-08 08:50:50 +05:30
|
|
|
}
|