blob: 2812e6e8c48e869c972dede4117ce5e0d82e82e4 [file] [log] [blame]
Russ Dill61fb4892002-10-14 21:41:28 +00001/* dhcpd.c
2 *
3 * udhcp Server
4 * 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 *
9 * 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.
22 */
23
24#include <fcntl.h>
25#include <string.h>
26#include <stdlib.h>
27#include <sys/wait.h>
Russ Dill61fb4892002-10-14 21:41:28 +000028#include <arpa/inet.h>
29#include <netdb.h>
30#include <netinet/in.h>
Russ Dill61fb4892002-10-14 21:41:28 +000031#include <sys/socket.h>
32#include <unistd.h>
33#include <signal.h>
34#include <errno.h>
35#include <sys/ioctl.h>
36#include <time.h>
37#include <sys/time.h>
38
Russ Dill61fb4892002-10-14 21:41:28 +000039#include "dhcpd.h"
40#include "arpping.h"
41#include "socket.h"
42#include "options.h"
43#include "files.h"
Russ Dill61fb4892002-10-14 21:41:28 +000044#include "serverpacket.h"
Glenn L McGrath24833432003-06-10 17:22:49 +000045#include "common.h"
Russ Dill4e864a32003-12-18 22:25:38 +000046#include "signalpipe.h"
Eric Andersenabf58d62004-10-08 08:49:26 +000047#include "static_leases.h"
Russ Dill61fb4892002-10-14 21:41:28 +000048
49
50/* globals */
51struct dhcpOfferedAddr *leases;
52struct server_config_t server_config;
Russ Dill61fb4892002-10-14 21:41:28 +000053
54
Eric Andersenc7bda1c2004-03-15 08:29:22 +000055#ifdef COMBINED_BINARY
Russ Dill61fb4892002-10-14 21:41:28 +000056int udhcpd_main(int argc, char *argv[])
Russ Dill4e864a32003-12-18 22:25:38 +000057#else
58int main(int argc, char *argv[])
59#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +000060{
Russ Dill61fb4892002-10-14 21:41:28 +000061 fd_set rfds;
62 struct timeval tv;
63 int server_socket = -1;
64 int bytes, retval;
65 struct dhcpMessage packet;
Eric Andersenad953732004-01-30 23:45:53 +000066 uint8_t *state;
67 uint8_t *server_id, *requested;
68 uint32_t server_id_align, requested_align;
Russ Dill61fb4892002-10-14 21:41:28 +000069 unsigned long timeout_end;
70 struct option_set *option;
71 struct dhcpOfferedAddr *lease;
Eric Andersenabf58d62004-10-08 08:49:26 +000072 struct dhcpOfferedAddr static_lease;
Russ Dill61fb4892002-10-14 21:41:28 +000073 int max_sock;
Russ Dill9f4395c2002-12-11 21:40:46 +000074 unsigned long num_ips;
Eric Andersenc7bda1c2004-03-15 08:29:22 +000075
Eric Andersenabf58d62004-10-08 08:49:26 +000076 uint32_t static_lease_ip;
77
Russ Dill61fb4892002-10-14 21:41:28 +000078 memset(&server_config, 0, sizeof(struct server_config_t));
Russ Dill4e864a32003-12-18 22:25:38 +000079 read_config(argc < 2 ? DHCPD_CONF_FILE : argv[1]);
80
81 /* Start the log, sanitize fd's, and write a pid file */
82 start_log_and_pid("udhcpd", server_config.pidfile);
Russ Dill61fb4892002-10-14 21:41:28 +000083
Russ Dill61fb4892002-10-14 21:41:28 +000084 if ((option = find_option(server_config.options, DHCP_LEASE_TIME))) {
85 memcpy(&server_config.lease, option->data + 2, 4);
86 server_config.lease = ntohl(server_config.lease);
87 }
88 else server_config.lease = LEASE_TIME;
Eric Andersenc7bda1c2004-03-15 08:29:22 +000089
Russ Dill9f4395c2002-12-11 21:40:46 +000090 /* Sanity check */
Rob Landley37adefc2005-09-01 02:43:39 +000091 num_ips = ntohl(server_config.end) - ntohl(server_config.start) + 1;
Russ Dill9f4395c2002-12-11 21:40:46 +000092 if (server_config.max_leases > num_ips) {
Glenn L McGrath24833432003-06-10 17:22:49 +000093 LOG(LOG_ERR, "max_leases value (%lu) not sane, "
94 "setting to %lu instead",
Russ Dill9f4395c2002-12-11 21:40:46 +000095 server_config.max_leases, num_ips);
96 server_config.max_leases = num_ips;
97 }
98
Russ Dill4e864a32003-12-18 22:25:38 +000099 leases = xcalloc(server_config.max_leases, sizeof(struct dhcpOfferedAddr));
Russ Dill61fb4892002-10-14 21:41:28 +0000100 read_leases(server_config.lease_file);
101
102 if (read_interface(server_config.interface, &server_config.ifindex,
103 &server_config.server, server_config.arp) < 0)
Russ Dill4e864a32003-12-18 22:25:38 +0000104 return 1;
Russ Dill61fb4892002-10-14 21:41:28 +0000105
Russ Dill4e864a32003-12-18 22:25:38 +0000106#ifndef UDHCP_DEBUG
107 background(server_config.pidfile); /* hold lock during fork. */
Russ Dill61fb4892002-10-14 21:41:28 +0000108#endif
109
Russ Dill4e864a32003-12-18 22:25:38 +0000110 /* Setup the signal pipe */
111 udhcp_sp_setup();
Russ Dill61fb4892002-10-14 21:41:28 +0000112
113 timeout_end = time(0) + server_config.auto_time;
114 while(1) { /* loop until universe collapses */
115
116 if (server_socket < 0)
117 if ((server_socket = listen_socket(INADDR_ANY, SERVER_PORT, server_config.interface)) < 0) {
Glenn L McGrath24833432003-06-10 17:22:49 +0000118 LOG(LOG_ERR, "FATAL: couldn't create server socket, %m");
Russ Dill4e864a32003-12-18 22:25:38 +0000119 return 2;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000120 }
Russ Dill61fb4892002-10-14 21:41:28 +0000121
Russ Dill4e864a32003-12-18 22:25:38 +0000122 max_sock = udhcp_sp_fd_set(&rfds, server_socket);
Russ Dill61fb4892002-10-14 21:41:28 +0000123 if (server_config.auto_time) {
124 tv.tv_sec = timeout_end - time(0);
125 tv.tv_usec = 0;
126 }
127 if (!server_config.auto_time || tv.tv_sec > 0) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000128 retval = select(max_sock + 1, &rfds, NULL, NULL,
Russ Dill61fb4892002-10-14 21:41:28 +0000129 server_config.auto_time ? &tv : NULL);
130 } else retval = 0; /* If we already timed out, fall through */
131
132 if (retval == 0) {
133 write_leases();
134 timeout_end = time(0) + server_config.auto_time;
135 continue;
136 } else if (retval < 0 && errno != EINTR) {
137 DEBUG(LOG_INFO, "error on select");
138 continue;
139 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000140
Russ Dill4e864a32003-12-18 22:25:38 +0000141 switch (udhcp_sp_read(&rfds)) {
142 case SIGUSR1:
143 LOG(LOG_INFO, "Received a SIGUSR1");
144 write_leases();
145 /* why not just reset the timeout, eh */
146 timeout_end = time(0) + server_config.auto_time;
147 continue;
148 case SIGTERM:
149 LOG(LOG_INFO, "Received a SIGTERM");
150 return 0;
151 case 0: break; /* no signal */
152 default: continue; /* signal or error (probably EINTR) */
Russ Dill61fb4892002-10-14 21:41:28 +0000153 }
154
155 if ((bytes = get_packet(&packet, server_socket)) < 0) { /* this waits for a packet - idle */
156 if (bytes == -1 && errno != EINTR) {
Glenn L McGrath24833432003-06-10 17:22:49 +0000157 DEBUG(LOG_INFO, "error on read, %m, reopening socket");
Russ Dill61fb4892002-10-14 21:41:28 +0000158 close(server_socket);
159 server_socket = -1;
160 }
161 continue;
162 }
163
164 if ((state = get_option(&packet, DHCP_MESSAGE_TYPE)) == NULL) {
165 DEBUG(LOG_ERR, "couldn't get option from packet, ignoring");
166 continue;
167 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000168
Eric Andersenabf58d62004-10-08 08:49:26 +0000169 /* Look for a static lease */
170 static_lease_ip = getIpByMac(server_config.static_leases, &packet.chaddr);
171
172 if(static_lease_ip)
173 {
174 printf("Found static lease: %x\n", static_lease_ip);
175
176 memcpy(&static_lease.chaddr, &packet.chaddr, 16);
177 static_lease.yiaddr = static_lease_ip;
178 static_lease.expires = 0;
179
180 lease = &static_lease;
181
182 }
183 else
184 {
Russ Dill61fb4892002-10-14 21:41:28 +0000185 lease = find_lease_by_chaddr(packet.chaddr);
Eric Andersenabf58d62004-10-08 08:49:26 +0000186 }
187
Russ Dill61fb4892002-10-14 21:41:28 +0000188 switch (state[0]) {
189 case DHCPDISCOVER:
190 DEBUG(LOG_INFO,"received DISCOVER");
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000191
Russ Dill61fb4892002-10-14 21:41:28 +0000192 if (sendOffer(&packet) < 0) {
193 LOG(LOG_ERR, "send OFFER failed");
194 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000195 break;
Russ Dill61fb4892002-10-14 21:41:28 +0000196 case DHCPREQUEST:
197 DEBUG(LOG_INFO, "received REQUEST");
198
199 requested = get_option(&packet, DHCP_REQUESTED_IP);
200 server_id = get_option(&packet, DHCP_SERVER_ID);
201
202 if (requested) memcpy(&requested_align, requested, 4);
203 if (server_id) memcpy(&server_id_align, server_id, 4);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000204
Eric Andersenabf58d62004-10-08 08:49:26 +0000205 if (lease) {
Russ Dill61fb4892002-10-14 21:41:28 +0000206 if (server_id) {
207 /* SELECTING State */
208 DEBUG(LOG_INFO, "server_id = %08x", ntohl(server_id_align));
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000209 if (server_id_align == server_config.server && requested &&
Russ Dill61fb4892002-10-14 21:41:28 +0000210 requested_align == lease->yiaddr) {
211 sendACK(&packet, lease->yiaddr);
212 }
213 } else {
214 if (requested) {
215 /* INIT-REBOOT State */
216 if (lease->yiaddr == requested_align)
217 sendACK(&packet, lease->yiaddr);
218 else sendNAK(&packet);
219 } else {
220 /* RENEWING or REBINDING State */
221 if (lease->yiaddr == packet.ciaddr)
222 sendACK(&packet, lease->yiaddr);
223 else {
224 /* don't know what to do!!!! */
225 sendNAK(&packet);
226 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000227 }
Russ Dill61fb4892002-10-14 21:41:28 +0000228 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000229
Russ Dill61fb4892002-10-14 21:41:28 +0000230 /* what to do if we have no record of the client */
231 } else if (server_id) {
232 /* SELECTING State */
233
234 } else if (requested) {
235 /* INIT-REBOOT State */
236 if ((lease = find_lease_by_yiaddr(requested_align))) {
237 if (lease_expired(lease)) {
238 /* probably best if we drop this lease */
239 memset(lease->chaddr, 0, 16);
240 /* make some contention for this address */
241 } else sendNAK(&packet);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000242 } else if (requested_align < server_config.start ||
Russ Dill61fb4892002-10-14 21:41:28 +0000243 requested_align > server_config.end) {
244 sendNAK(&packet);
245 } /* else remain silent */
246
247 } else {
248 /* RENEWING or REBINDING State */
249 }
250 break;
251 case DHCPDECLINE:
252 DEBUG(LOG_INFO,"received DECLINE");
253 if (lease) {
254 memset(lease->chaddr, 0, 16);
255 lease->expires = time(0) + server_config.decline_time;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000256 }
Russ Dill61fb4892002-10-14 21:41:28 +0000257 break;
258 case DHCPRELEASE:
259 DEBUG(LOG_INFO,"received RELEASE");
260 if (lease) lease->expires = time(0);
261 break;
262 case DHCPINFORM:
263 DEBUG(LOG_INFO,"received INFORM");
264 send_inform(&packet);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000265 break;
Russ Dill61fb4892002-10-14 21:41:28 +0000266 default:
267 LOG(LOG_WARNING, "unsupported DHCP message (%02x) -- ignoring", state[0]);
268 }
269 }
270
271 return 0;
272}
Russ Dill4e864a32003-12-18 22:25:38 +0000273