"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 2 | /* |
Denys Vlasenko | 385b456 | 2010-03-26 10:09:34 +0100 | [diff] [blame] | 3 | * udhcp server |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 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 | * |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 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. |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 22 | */ |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 23 | |
| 24 | //usage:#define udhcpd_trivial_usage |
| 25 | //usage: "[-fS]" IF_FEATURE_UDHCP_PORT(" [-P N]") " [CONFFILE]" |
| 26 | //usage:#define udhcpd_full_usage "\n\n" |
| 27 | //usage: "DHCP server\n" |
| 28 | //usage: "\n -f Run in foreground" |
| 29 | //usage: "\n -S Log to syslog too" |
| 30 | //usage: IF_FEATURE_UDHCP_PORT( |
| 31 | //usage: "\n -P N Use port N (default 67)" |
| 32 | //usage: ) |
| 33 | |
Denis Vlasenko | af1c843 | 2007-03-26 13:22:35 +0000 | [diff] [blame] | 34 | #include <syslog.h> |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 35 | #include "common.h" |
Denis Vlasenko | d55fe3e | 2008-02-04 13:12:16 +0000 | [diff] [blame] | 36 | #include "dhcpc.h" |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 37 | #include "dhcpd.h" |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 38 | |
| 39 | |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 40 | /* Send a packet to a specific mac address and ip address by creating our own ip packet */ |
| 41 | static void send_packet_to_client(struct dhcp_packet *dhcp_pkt, int force_broadcast) |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 42 | { |
| 43 | const uint8_t *chaddr; |
| 44 | uint32_t ciaddr; |
| 45 | |
| 46 | // Was: |
| 47 | //if (force_broadcast) { /* broadcast */ } |
| 48 | //else if (dhcp_pkt->ciaddr) { /* unicast to dhcp_pkt->ciaddr */ } |
| 49 | //else if (dhcp_pkt->flags & htons(BROADCAST_FLAG)) { /* broadcast */ } |
| 50 | //else { /* unicast to dhcp_pkt->yiaddr */ } |
| 51 | // But this is wrong: yiaddr is _our_ idea what client's IP is |
| 52 | // (for example, from lease file). Client may not know that, |
| 53 | // and may not have UDP socket listening on that IP! |
| 54 | // We should never unicast to dhcp_pkt->yiaddr! |
| 55 | // dhcp_pkt->ciaddr, OTOH, comes from client's request packet, |
| 56 | // and can be used. |
| 57 | |
| 58 | if (force_broadcast |
| 59 | || (dhcp_pkt->flags & htons(BROADCAST_FLAG)) |
Denys Vlasenko | 53f72bb | 2010-03-21 06:46:09 +0100 | [diff] [blame] | 60 | || dhcp_pkt->ciaddr == 0 |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 61 | ) { |
| 62 | log1("Broadcasting packet to client"); |
| 63 | ciaddr = INADDR_BROADCAST; |
| 64 | chaddr = MAC_BCAST_ADDR; |
| 65 | } else { |
| 66 | log1("Unicasting packet to client ciaddr"); |
| 67 | ciaddr = dhcp_pkt->ciaddr; |
| 68 | chaddr = dhcp_pkt->chaddr; |
| 69 | } |
| 70 | |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 71 | udhcp_send_raw_packet(dhcp_pkt, |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 72 | /*src*/ server_config.server_nip, SERVER_PORT, |
| 73 | /*dst*/ ciaddr, CLIENT_PORT, chaddr, |
| 74 | server_config.ifindex); |
| 75 | } |
| 76 | |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 77 | /* Send a packet to gateway_nip using the kernel ip stack */ |
| 78 | static void send_packet_to_relay(struct dhcp_packet *dhcp_pkt) |
| 79 | { |
| 80 | log1("Forwarding packet to relay"); |
| 81 | |
| 82 | udhcp_send_kernel_packet(dhcp_pkt, |
| 83 | server_config.server_nip, SERVER_PORT, |
| 84 | dhcp_pkt->gateway_nip, SERVER_PORT); |
| 85 | } |
| 86 | |
| 87 | static void send_packet(struct dhcp_packet *dhcp_pkt, int force_broadcast) |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 88 | { |
| 89 | if (dhcp_pkt->gateway_nip) |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 90 | send_packet_to_relay(dhcp_pkt); |
| 91 | else |
| 92 | send_packet_to_client(dhcp_pkt, force_broadcast); |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | static void init_packet(struct dhcp_packet *packet, struct dhcp_packet *oldpacket, char type) |
| 96 | { |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 97 | /* Sets op, htype, hlen, cookie fields |
| 98 | * and adds DHCP_MESSAGE_TYPE option */ |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 99 | udhcp_init_header(packet, type); |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 100 | |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 101 | packet->xid = oldpacket->xid; |
| 102 | memcpy(packet->chaddr, oldpacket->chaddr, sizeof(oldpacket->chaddr)); |
| 103 | packet->flags = oldpacket->flags; |
| 104 | packet->gateway_nip = oldpacket->gateway_nip; |
| 105 | packet->ciaddr = oldpacket->ciaddr; |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 106 | udhcp_add_simple_option(packet, DHCP_SERVER_ID, server_config.server_nip); |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 107 | } |
| 108 | |
Denys Vlasenko | e5ce91b | 2010-03-21 00:43:11 +0100 | [diff] [blame] | 109 | /* Fill options field, siaddr_nip, and sname and boot_file fields. |
| 110 | * TODO: teach this code to use overload option. |
| 111 | */ |
| 112 | static void add_server_options(struct dhcp_packet *packet) |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 113 | { |
Denys Vlasenko | e5ce91b | 2010-03-21 00:43:11 +0100 | [diff] [blame] | 114 | struct option_set *curr = server_config.options; |
| 115 | |
| 116 | while (curr) { |
| 117 | if (curr->data[OPT_CODE] != DHCP_LEASE_TIME) |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 118 | udhcp_add_binary_option(packet, curr->data); |
Denys Vlasenko | e5ce91b | 2010-03-21 00:43:11 +0100 | [diff] [blame] | 119 | curr = curr->next; |
| 120 | } |
| 121 | |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 122 | packet->siaddr_nip = server_config.siaddr_nip; |
Denys Vlasenko | e5ce91b | 2010-03-21 00:43:11 +0100 | [diff] [blame] | 123 | |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 124 | if (server_config.sname) |
| 125 | strncpy((char*)packet->sname, server_config.sname, sizeof(packet->sname) - 1); |
| 126 | if (server_config.boot_file) |
| 127 | strncpy((char*)packet->file, server_config.boot_file, sizeof(packet->file) - 1); |
| 128 | } |
| 129 | |
| 130 | static uint32_t select_lease_time(struct dhcp_packet *packet) |
| 131 | { |
| 132 | uint32_t lease_time_sec = server_config.max_lease_sec; |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 133 | uint8_t *lease_time_opt = udhcp_get_option(packet, DHCP_LEASE_TIME); |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 134 | if (lease_time_opt) { |
| 135 | move_from_unaligned32(lease_time_sec, lease_time_opt); |
| 136 | lease_time_sec = ntohl(lease_time_sec); |
| 137 | if (lease_time_sec > server_config.max_lease_sec) |
| 138 | lease_time_sec = server_config.max_lease_sec; |
| 139 | if (lease_time_sec < server_config.min_lease_sec) |
| 140 | lease_time_sec = server_config.min_lease_sec; |
| 141 | } |
| 142 | return lease_time_sec; |
| 143 | } |
| 144 | |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 145 | /* We got a DHCP DISCOVER. Send an OFFER. */ |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 146 | /* NOINLINE: limit stack usage in caller */ |
Denys Vlasenko | fa5e295 | 2010-11-28 01:10:51 +0100 | [diff] [blame] | 147 | static NOINLINE void send_offer(struct dhcp_packet *oldpacket, |
| 148 | uint32_t static_lease_nip, |
| 149 | struct dyn_lease *lease, |
| 150 | uint8_t *requested_ip_opt) |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 151 | { |
| 152 | struct dhcp_packet packet; |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 153 | uint32_t lease_time_sec; |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 154 | struct in_addr addr; |
| 155 | |
| 156 | init_packet(&packet, oldpacket, DHCPOFFER); |
| 157 | |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 158 | /* If it is a static lease, use its IP */ |
| 159 | packet.yiaddr = static_lease_nip; |
| 160 | /* Else: */ |
Denys Vlasenko | a953987 | 2010-03-20 03:49:27 +0100 | [diff] [blame] | 161 | if (!static_lease_nip) { |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 162 | /* We have no static lease for client's chaddr */ |
Denys Vlasenko | e5ce91b | 2010-03-21 00:43:11 +0100 | [diff] [blame] | 163 | uint32_t req_nip; |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 164 | const char *p_host_name; |
Denys Vlasenko | e5ce91b | 2010-03-21 00:43:11 +0100 | [diff] [blame] | 165 | |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 166 | if (lease) { |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 167 | /* We have a dynamic lease for client's chaddr. |
| 168 | * Reuse its IP (even if lease is expired). |
| 169 | * Note that we ignore requested IP in this case. |
| 170 | */ |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 171 | packet.yiaddr = lease->lease_nip; |
| 172 | } |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 173 | /* Or: if client has requested an IP */ |
Denys Vlasenko | fa5e295 | 2010-11-28 01:10:51 +0100 | [diff] [blame] | 174 | else if (requested_ip_opt != NULL |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 175 | /* (read IP) */ |
Denys Vlasenko | fa5e295 | 2010-11-28 01:10:51 +0100 | [diff] [blame] | 176 | && (move_from_unaligned32(req_nip, requested_ip_opt), 1) |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 177 | /* and the IP is in the lease range */ |
| 178 | && ntohl(req_nip) >= server_config.start_ip |
| 179 | && ntohl(req_nip) <= server_config.end_ip |
Denys Vlasenko | e5ce91b | 2010-03-21 00:43:11 +0100 | [diff] [blame] | 180 | /* and */ |
| 181 | && ( !(lease = find_lease_by_nip(req_nip)) /* is not already taken */ |
| 182 | || is_expired_lease(lease) /* or is taken, but expired */ |
| 183 | ) |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 184 | ) { |
| 185 | packet.yiaddr = req_nip; |
| 186 | } |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 187 | else { |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 188 | /* Otherwise, find a free IP */ |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 189 | packet.yiaddr = find_free_or_expired_nip(oldpacket->chaddr); |
| 190 | } |
| 191 | |
| 192 | if (!packet.yiaddr) { |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 193 | bb_error_msg("no free IP addresses. OFFER abandoned"); |
| 194 | return; |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 195 | } |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 196 | /* Reserve the IP for a short time hoping to get DHCPREQUEST soon */ |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 197 | p_host_name = (const char*) udhcp_get_option(oldpacket, DHCP_HOST_NAME); |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 198 | lease = add_lease(packet.chaddr, packet.yiaddr, |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 199 | server_config.offer_time, |
| 200 | p_host_name, |
| 201 | p_host_name ? (unsigned char)p_host_name[OPT_LEN - OPT_DATA] : 0 |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 202 | ); |
| 203 | if (!lease) { |
| 204 | bb_error_msg("no free IP addresses. OFFER abandoned"); |
| 205 | return; |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 206 | } |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 207 | } |
| 208 | |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 209 | lease_time_sec = select_lease_time(oldpacket); |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 210 | udhcp_add_simple_option(&packet, DHCP_LEASE_TIME, htonl(lease_time_sec)); |
Denys Vlasenko | e5ce91b | 2010-03-21 00:43:11 +0100 | [diff] [blame] | 211 | add_server_options(&packet); |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 212 | |
| 213 | addr.s_addr = packet.yiaddr; |
| 214 | bb_info_msg("Sending OFFER of %s", inet_ntoa(addr)); |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 215 | /* send_packet emits error message itself if it detects failure */ |
| 216 | send_packet(&packet, /*force_bcast:*/ 0); |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 217 | } |
| 218 | |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 219 | /* NOINLINE: limit stack usage in caller */ |
| 220 | static NOINLINE void send_NAK(struct dhcp_packet *oldpacket) |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 221 | { |
| 222 | struct dhcp_packet packet; |
| 223 | |
| 224 | init_packet(&packet, oldpacket, DHCPNAK); |
| 225 | |
| 226 | log1("Sending NAK"); |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 227 | send_packet(&packet, /*force_bcast:*/ 1); |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 228 | } |
| 229 | |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 230 | /* NOINLINE: limit stack usage in caller */ |
| 231 | static NOINLINE void send_ACK(struct dhcp_packet *oldpacket, uint32_t yiaddr) |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 232 | { |
| 233 | struct dhcp_packet packet; |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 234 | uint32_t lease_time_sec; |
| 235 | struct in_addr addr; |
| 236 | const char *p_host_name; |
| 237 | |
| 238 | init_packet(&packet, oldpacket, DHCPACK); |
| 239 | packet.yiaddr = yiaddr; |
| 240 | |
| 241 | lease_time_sec = select_lease_time(oldpacket); |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 242 | udhcp_add_simple_option(&packet, DHCP_LEASE_TIME, htonl(lease_time_sec)); |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 243 | |
Denys Vlasenko | e5ce91b | 2010-03-21 00:43:11 +0100 | [diff] [blame] | 244 | add_server_options(&packet); |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 245 | |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 246 | addr.s_addr = yiaddr; |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 247 | bb_info_msg("Sending ACK to %s", inet_ntoa(addr)); |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 248 | send_packet(&packet, /*force_bcast:*/ 0); |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 249 | |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 250 | p_host_name = (const char*) udhcp_get_option(oldpacket, DHCP_HOST_NAME); |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 251 | add_lease(packet.chaddr, packet.yiaddr, |
| 252 | lease_time_sec, |
| 253 | p_host_name, |
| 254 | p_host_name ? (unsigned char)p_host_name[OPT_LEN - OPT_DATA] : 0 |
| 255 | ); |
| 256 | if (ENABLE_FEATURE_UDHCPD_WRITE_LEASES_EARLY) { |
| 257 | /* rewrite the file with leases at every new acceptance */ |
| 258 | write_leases(); |
| 259 | } |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 260 | } |
| 261 | |
Denys Vlasenko | 0bb35e1 | 2010-10-21 12:33:10 +0200 | [diff] [blame] | 262 | /* NOINLINE: limit stack usage in caller */ |
| 263 | static NOINLINE void send_inform(struct dhcp_packet *oldpacket) |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 264 | { |
| 265 | struct dhcp_packet packet; |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 266 | |
Denys Vlasenko | f8fcc18 | 2010-04-04 22:36:34 +0200 | [diff] [blame] | 267 | /* "If a client has obtained a network address through some other means |
| 268 | * (e.g., manual configuration), it may use a DHCPINFORM request message |
| 269 | * to obtain other local configuration parameters. Servers receiving a |
| 270 | * DHCPINFORM message construct a DHCPACK message with any local |
| 271 | * configuration parameters appropriate for the client without: |
| 272 | * allocating a new address, checking for an existing binding, filling |
| 273 | * in 'yiaddr' or including lease time parameters. The servers SHOULD |
| 274 | * unicast the DHCPACK reply to the address given in the 'ciaddr' field |
| 275 | * of the DHCPINFORM message. |
| 276 | * ... |
| 277 | * The server responds to a DHCPINFORM message by sending a DHCPACK |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 278 | * message directly to the address given in the 'ciaddr' field |
| 279 | * of the DHCPINFORM message. The server MUST NOT send a lease |
| 280 | * expiration time to the client and SHOULD NOT fill in 'yiaddr'." |
| 281 | */ |
Denys Vlasenko | f8fcc18 | 2010-04-04 22:36:34 +0200 | [diff] [blame] | 282 | //TODO: do a few sanity checks: is ciaddr set? |
| 283 | //Better yet: is ciaddr == IP source addr? |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 284 | init_packet(&packet, oldpacket, DHCPACK); |
Denys Vlasenko | e5ce91b | 2010-03-21 00:43:11 +0100 | [diff] [blame] | 285 | add_server_options(&packet); |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 286 | |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 287 | send_packet(&packet, /*force_bcast:*/ 0); |
Denys Vlasenko | 8a7c166 | 2010-03-20 03:48:11 +0100 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 291 | /* globals */ |
Denys Vlasenko | 6947d2c | 2009-06-17 13:24:03 +0200 | [diff] [blame] | 292 | struct dyn_lease *g_leases; |
Denis Vlasenko | deabacd | 2007-09-30 17:55:43 +0000 | [diff] [blame] | 293 | /* struct server_config_t server_config is in bb_common_bufsiz1 */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 294 | |
| 295 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 296 | int udhcpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 297 | int udhcpd_main(int argc UNUSED_PARAM, char **argv) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 298 | { |
Denis Vlasenko | 0416e3d | 2009-01-01 17:52:09 +0000 | [diff] [blame] | 299 | int server_socket = -1, retval, max_sock; |
Denys Vlasenko | 6947d2c | 2009-06-17 13:24:03 +0200 | [diff] [blame] | 300 | uint8_t *state; |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 301 | unsigned timeout_end; |
| 302 | unsigned num_ips; |
Denis Vlasenko | 3d17d2b | 2007-08-14 16:45:29 +0000 | [diff] [blame] | 303 | unsigned opt; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 304 | struct option_set *option; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 305 | IF_FEATURE_UDHCP_PORT(char *str_P;) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 306 | |
Denis Vlasenko | d55fe3e | 2008-02-04 13:12:16 +0000 | [diff] [blame] | 307 | #if ENABLE_FEATURE_UDHCP_PORT |
| 308 | SERVER_PORT = 67; |
| 309 | CLIENT_PORT = 68; |
| 310 | #endif |
| 311 | |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 312 | #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1 |
| 313 | opt_complementary = "vv"; |
| 314 | #endif |
| 315 | opt = getopt32(argv, "fSv" |
| 316 | IF_FEATURE_UDHCP_PORT("P:", &str_P) |
| 317 | #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1 |
| 318 | , &dhcp_verbose |
| 319 | #endif |
| 320 | ); |
Denis Vlasenko | 3d17d2b | 2007-08-14 16:45:29 +0000 | [diff] [blame] | 321 | if (!(opt & 1)) { /* no -f */ |
Denis Vlasenko | c82b510 | 2007-07-01 17:05:57 +0000 | [diff] [blame] | 322 | bb_daemonize_or_rexec(0, argv); |
Denis Vlasenko | a19e649 | 2009-03-11 14:40:00 +0000 | [diff] [blame] | 323 | logmode = LOGMODE_NONE; |
Denis Vlasenko | af1c843 | 2007-03-26 13:22:35 +0000 | [diff] [blame] | 324 | } |
Mike Frysinger | 6db1373 | 2010-06-04 13:24:50 -0400 | [diff] [blame] | 325 | /* update argv after the possible vfork+exec in daemonize */ |
| 326 | argv += optind; |
Denis Vlasenko | 3d17d2b | 2007-08-14 16:45:29 +0000 | [diff] [blame] | 327 | if (opt & 2) { /* -S */ |
Denis Vlasenko | 5e4fda0 | 2009-03-08 23:46:48 +0000 | [diff] [blame] | 328 | openlog(applet_name, LOG_PID, LOG_DAEMON); |
Denis Vlasenko | af1c843 | 2007-03-26 13:22:35 +0000 | [diff] [blame] | 329 | logmode |= LOGMODE_SYSLOG; |
| 330 | } |
Denis Vlasenko | d55fe3e | 2008-02-04 13:12:16 +0000 | [diff] [blame] | 331 | #if ENABLE_FEATURE_UDHCP_PORT |
Denys Vlasenko | 406bd14 | 2010-03-27 23:24:57 +0100 | [diff] [blame] | 332 | if (opt & 8) { /* -P */ |
Denis Vlasenko | d55fe3e | 2008-02-04 13:12:16 +0000 | [diff] [blame] | 333 | SERVER_PORT = xatou16(str_P); |
| 334 | CLIENT_PORT = SERVER_PORT + 1; |
| 335 | } |
| 336 | #endif |
Denis Vlasenko | af1c843 | 2007-03-26 13:22:35 +0000 | [diff] [blame] | 337 | /* Would rather not do read_config before daemonization - |
| 338 | * otherwise NOMMU machines will parse config twice */ |
Denis Vlasenko | 9f7b92a | 2007-08-15 20:03:36 +0000 | [diff] [blame] | 339 | read_config(argv[0] ? argv[0] : DHCPD_CONF_FILE); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 340 | |
Denis Vlasenko | 80edead | 2007-08-02 22:31:05 +0000 | [diff] [blame] | 341 | /* Make sure fd 0,1,2 are open */ |
| 342 | bb_sanitize_stdio(); |
| 343 | /* Equivalent of doing a fflush after every \n */ |
| 344 | setlinebuf(stdout); |
| 345 | |
| 346 | /* Create pidfile */ |
| 347 | write_pidfile(server_config.pidfile); |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 348 | /* if (!..) bb_perror_msg("can't create pidfile %s", pidfile); */ |
Denis Vlasenko | 80edead | 2007-08-02 22:31:05 +0000 | [diff] [blame] | 349 | |
Denis Vlasenko | def8898 | 2007-10-07 17:06:01 +0000 | [diff] [blame] | 350 | bb_info_msg("%s (v"BB_VER") started", applet_name); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 351 | |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 352 | option = udhcp_find_option(server_config.options, DHCP_LEASE_TIME); |
Denys Vlasenko | 2e7aa92 | 2010-03-21 02:22:07 +0100 | [diff] [blame] | 353 | server_config.max_lease_sec = DEFAULT_LEASE_TIME; |
Denis Vlasenko | af1c843 | 2007-03-26 13:22:35 +0000 | [diff] [blame] | 354 | if (option) { |
Denys Vlasenko | 6947d2c | 2009-06-17 13:24:03 +0200 | [diff] [blame] | 355 | move_from_unaligned32(server_config.max_lease_sec, option->data + OPT_DATA); |
| 356 | server_config.max_lease_sec = ntohl(server_config.max_lease_sec); |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 357 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 358 | |
| 359 | /* Sanity check */ |
Denis Vlasenko | c82b510 | 2007-07-01 17:05:57 +0000 | [diff] [blame] | 360 | num_ips = server_config.end_ip - server_config.start_ip + 1; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 361 | if (server_config.max_leases > num_ips) { |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 362 | bb_error_msg("max_leases=%u is too big, setting to %u", |
| 363 | (unsigned)server_config.max_leases, num_ips); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 364 | server_config.max_leases = num_ips; |
| 365 | } |
| 366 | |
Denys Vlasenko | 6947d2c | 2009-06-17 13:24:03 +0200 | [diff] [blame] | 367 | g_leases = xzalloc(server_config.max_leases * sizeof(g_leases[0])); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 368 | read_leases(server_config.lease_file); |
| 369 | |
Denys Vlasenko | 26918dd | 2009-06-16 12:04:23 +0200 | [diff] [blame] | 370 | if (udhcp_read_interface(server_config.interface, |
| 371 | &server_config.ifindex, |
| 372 | &server_config.server_nip, |
| 373 | server_config.server_mac) |
| 374 | ) { |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 375 | retval = 1; |
| 376 | goto ret; |
| 377 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 378 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 379 | /* Setup the signal pipe */ |
| 380 | udhcp_sp_setup(); |
| 381 | |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 382 | timeout_end = monotonic_sec() + server_config.auto_time; |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 383 | while (1) { /* loop until universe collapses */ |
Denys Vlasenko | fa5e295 | 2010-11-28 01:10:51 +0100 | [diff] [blame] | 384 | fd_set rfds; |
| 385 | struct dhcp_packet packet; |
Denis Vlasenko | 0416e3d | 2009-01-01 17:52:09 +0000 | [diff] [blame] | 386 | int bytes; |
| 387 | struct timeval tv; |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 388 | uint8_t *server_id_opt; |
Denys Vlasenko | fa5e295 | 2010-11-28 01:10:51 +0100 | [diff] [blame] | 389 | uint8_t *requested_ip_opt; |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 390 | uint32_t requested_nip = requested_nip; /* for compiler */ |
Denys Vlasenko | fa5e295 | 2010-11-28 01:10:51 +0100 | [diff] [blame] | 391 | uint32_t static_lease_nip; |
| 392 | struct dyn_lease *lease, fake_lease; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 393 | |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 394 | if (server_socket < 0) { |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 395 | server_socket = udhcp_listen_socket(/*INADDR_ANY,*/ SERVER_PORT, |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 396 | server_config.interface); |
Denis Vlasenko | e2d3ded | 2006-11-27 23:43:28 +0000 | [diff] [blame] | 397 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 398 | |
| 399 | max_sock = udhcp_sp_fd_set(&rfds, server_socket); |
| 400 | if (server_config.auto_time) { |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 401 | tv.tv_sec = timeout_end - monotonic_sec(); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 402 | tv.tv_usec = 0; |
| 403 | } |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 404 | retval = 0; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 405 | if (!server_config.auto_time || tv.tv_sec > 0) { |
| 406 | retval = select(max_sock + 1, &rfds, NULL, NULL, |
| 407 | server_config.auto_time ? &tv : NULL); |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 408 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 409 | if (retval == 0) { |
| 410 | write_leases(); |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 411 | timeout_end = monotonic_sec() + server_config.auto_time; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 412 | continue; |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 413 | } |
| 414 | if (retval < 0 && errno != EINTR) { |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 415 | log1("Error on select"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 416 | continue; |
| 417 | } |
| 418 | |
| 419 | switch (udhcp_sp_read(&rfds)) { |
| 420 | case SIGUSR1: |
Denys Vlasenko | 651a269 | 2010-03-23 16:25:17 +0100 | [diff] [blame] | 421 | bb_info_msg("Received SIGUSR1"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 422 | write_leases(); |
| 423 | /* why not just reset the timeout, eh */ |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 424 | timeout_end = monotonic_sec() + server_config.auto_time; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 425 | continue; |
| 426 | case SIGTERM: |
Denys Vlasenko | 651a269 | 2010-03-23 16:25:17 +0100 | [diff] [blame] | 427 | bb_info_msg("Received SIGTERM"); |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 428 | goto ret0; |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 429 | case 0: /* no signal: read a packet */ |
Denis Vlasenko | 0416e3d | 2009-01-01 17:52:09 +0000 | [diff] [blame] | 430 | break; |
| 431 | default: /* signal or error (probably EINTR): back to select */ |
| 432 | continue; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 433 | } |
| 434 | |
Denis Vlasenko | 0416e3d | 2009-01-01 17:52:09 +0000 | [diff] [blame] | 435 | bytes = udhcp_recv_kernel_packet(&packet, server_socket); |
Denis Vlasenko | af1c843 | 2007-03-26 13:22:35 +0000 | [diff] [blame] | 436 | if (bytes < 0) { |
Denis Vlasenko | 0416e3d | 2009-01-01 17:52:09 +0000 | [diff] [blame] | 437 | /* bytes can also be -2 ("bad packet data") */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 438 | if (bytes == -1 && errno != EINTR) { |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 439 | log1("Read error: %s, reopening socket", strerror(errno)); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 440 | close(server_socket); |
| 441 | server_socket = -1; |
| 442 | } |
| 443 | continue; |
| 444 | } |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 445 | if (packet.hlen != 6) { |
| 446 | bb_error_msg("MAC length != 6, ignoring packet"); |
| 447 | continue; |
| 448 | } |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 449 | if (packet.op != BOOTREQUEST) { |
| 450 | bb_error_msg("not a REQUEST, ignoring packet"); |
| 451 | continue; |
| 452 | } |
Denys Vlasenko | dde8bdc | 2010-03-22 14:29:13 +0100 | [diff] [blame] | 453 | state = udhcp_get_option(&packet, DHCP_MESSAGE_TYPE); |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 454 | if (state == NULL || state[0] < DHCP_MINTYPE || state[0] > DHCP_MAXTYPE) { |
| 455 | bb_error_msg("no or bad message type option, ignoring packet"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 456 | continue; |
| 457 | } |
| 458 | |
Denys Vlasenko | fa5e295 | 2010-11-28 01:10:51 +0100 | [diff] [blame] | 459 | /* Get SERVER_ID if present */ |
| 460 | server_id_opt = udhcp_get_option(&packet, DHCP_SERVER_ID); |
| 461 | if (server_id_opt) { |
Denys Vlasenko | 713d241 | 2010-11-28 21:51:44 +0100 | [diff] [blame] | 462 | uint32_t server_id_network_order; |
| 463 | move_from_unaligned32(server_id_network_order, server_id_opt); |
| 464 | if (server_id_network_order != server_config.server_nip) { |
Denys Vlasenko | fa5e295 | 2010-11-28 01:10:51 +0100 | [diff] [blame] | 465 | /* client talks to somebody else */ |
| 466 | log1("server ID doesn't match, ignoring"); |
| 467 | continue; |
| 468 | } |
| 469 | } |
| 470 | |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 471 | /* Look for a static/dynamic lease */ |
Denys Vlasenko | a953987 | 2010-03-20 03:49:27 +0100 | [diff] [blame] | 472 | static_lease_nip = get_static_nip_by_mac(server_config.static_leases, &packet.chaddr); |
| 473 | if (static_lease_nip) { |
| 474 | bb_info_msg("Found static lease: %x", static_lease_nip); |
Denys Vlasenko | 6947d2c | 2009-06-17 13:24:03 +0200 | [diff] [blame] | 475 | memcpy(&fake_lease.lease_mac, &packet.chaddr, 6); |
Denys Vlasenko | a953987 | 2010-03-20 03:49:27 +0100 | [diff] [blame] | 476 | fake_lease.lease_nip = static_lease_nip; |
Denys Vlasenko | 6947d2c | 2009-06-17 13:24:03 +0200 | [diff] [blame] | 477 | fake_lease.expires = 0; |
Denys Vlasenko | 6947d2c | 2009-06-17 13:24:03 +0200 | [diff] [blame] | 478 | lease = &fake_lease; |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 479 | } else { |
Denys Vlasenko | 6947d2c | 2009-06-17 13:24:03 +0200 | [diff] [blame] | 480 | lease = find_lease_by_mac(packet.chaddr); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 481 | } |
| 482 | |
Denys Vlasenko | fa5e295 | 2010-11-28 01:10:51 +0100 | [diff] [blame] | 483 | /* Get REQUESTED_IP if present */ |
| 484 | requested_ip_opt = udhcp_get_option(&packet, DHCP_REQUESTED_IP); |
| 485 | if (requested_ip_opt) { |
| 486 | move_from_unaligned32(requested_nip, requested_ip_opt); |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 487 | } |
| 488 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 489 | switch (state[0]) { |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 490 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 491 | case DHCPDISCOVER: |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 492 | log1("Received DISCOVER"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 493 | |
Denys Vlasenko | fa5e295 | 2010-11-28 01:10:51 +0100 | [diff] [blame] | 494 | send_offer(&packet, static_lease_nip, lease, requested_ip_opt); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 495 | break; |
Denys Vlasenko | 6947d2c | 2009-06-17 13:24:03 +0200 | [diff] [blame] | 496 | |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 497 | case DHCPREQUEST: |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 498 | log1("Received REQUEST"); |
Denys Vlasenko | 53f72bb | 2010-03-21 06:46:09 +0100 | [diff] [blame] | 499 | /* RFC 2131: |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 500 | |
Denys Vlasenko | 53f72bb | 2010-03-21 06:46:09 +0100 | [diff] [blame] | 501 | o DHCPREQUEST generated during SELECTING state: |
| 502 | |
| 503 | Client inserts the address of the selected server in 'server |
| 504 | identifier', 'ciaddr' MUST be zero, 'requested IP address' MUST be |
| 505 | filled in with the yiaddr value from the chosen DHCPOFFER. |
| 506 | |
| 507 | Note that the client may choose to collect several DHCPOFFER |
| 508 | messages and select the "best" offer. The client indicates its |
| 509 | selection by identifying the offering server in the DHCPREQUEST |
| 510 | message. If the client receives no acceptable offers, the client |
| 511 | may choose to try another DHCPDISCOVER message. Therefore, the |
| 512 | servers may not receive a specific DHCPREQUEST from which they can |
| 513 | decide whether or not the client has accepted the offer. |
| 514 | |
| 515 | o DHCPREQUEST generated during INIT-REBOOT state: |
| 516 | |
| 517 | 'server identifier' MUST NOT be filled in, 'requested IP address' |
| 518 | option MUST be filled in with client's notion of its previously |
| 519 | assigned address. 'ciaddr' MUST be zero. The client is seeking to |
| 520 | verify a previously allocated, cached configuration. Server SHOULD |
| 521 | send a DHCPNAK message to the client if the 'requested IP address' |
| 522 | is incorrect, or is on the wrong network. |
| 523 | |
| 524 | Determining whether a client in the INIT-REBOOT state is on the |
| 525 | correct network is done by examining the contents of 'giaddr', the |
| 526 | 'requested IP address' option, and a database lookup. If the DHCP |
| 527 | server detects that the client is on the wrong net (i.e., the |
| 528 | result of applying the local subnet mask or remote subnet mask (if |
| 529 | 'giaddr' is not zero) to 'requested IP address' option value |
| 530 | doesn't match reality), then the server SHOULD send a DHCPNAK |
| 531 | message to the client. |
| 532 | |
| 533 | If the network is correct, then the DHCP server should check if |
| 534 | the client's notion of its IP address is correct. If not, then the |
| 535 | server SHOULD send a DHCPNAK message to the client. If the DHCP |
| 536 | server has no record of this client, then it MUST remain silent, |
| 537 | and MAY output a warning to the network administrator. This |
| 538 | behavior is necessary for peaceful coexistence of non- |
| 539 | communicating DHCP servers on the same wire. |
| 540 | |
| 541 | If 'giaddr' is 0x0 in the DHCPREQUEST message, the client is on |
| 542 | the same subnet as the server. The server MUST broadcast the |
| 543 | DHCPNAK message to the 0xffffffff broadcast address because the |
| 544 | client may not have a correct network address or subnet mask, and |
| 545 | the client may not be answering ARP requests. |
| 546 | |
| 547 | If 'giaddr' is set in the DHCPREQUEST message, the client is on a |
| 548 | different subnet. The server MUST set the broadcast bit in the |
| 549 | DHCPNAK, so that the relay agent will broadcast the DHCPNAK to the |
| 550 | client, because the client may not have a correct network address |
| 551 | or subnet mask, and the client may not be answering ARP requests. |
| 552 | |
| 553 | o DHCPREQUEST generated during RENEWING state: |
| 554 | |
| 555 | 'server identifier' MUST NOT be filled in, 'requested IP address' |
| 556 | option MUST NOT be filled in, 'ciaddr' MUST be filled in with |
| 557 | client's IP address. In this situation, the client is completely |
| 558 | configured, and is trying to extend its lease. This message will |
| 559 | be unicast, so no relay agents will be involved in its |
| 560 | transmission. Because 'giaddr' is therefore not filled in, the |
| 561 | DHCP server will trust the value in 'ciaddr', and use it when |
| 562 | replying to the client. |
| 563 | |
| 564 | A client MAY choose to renew or extend its lease prior to T1. The |
| 565 | server may choose not to extend the lease (as a policy decision by |
| 566 | the network administrator), but should return a DHCPACK message |
| 567 | regardless. |
| 568 | |
| 569 | o DHCPREQUEST generated during REBINDING state: |
| 570 | |
| 571 | 'server identifier' MUST NOT be filled in, 'requested IP address' |
| 572 | option MUST NOT be filled in, 'ciaddr' MUST be filled in with |
| 573 | client's IP address. In this situation, the client is completely |
| 574 | configured, and is trying to extend its lease. This message MUST |
| 575 | be broadcast to the 0xffffffff IP broadcast address. The DHCP |
| 576 | server SHOULD check 'ciaddr' for correctness before replying to |
| 577 | the DHCPREQUEST. |
| 578 | |
| 579 | The DHCPREQUEST from a REBINDING client is intended to accommodate |
| 580 | sites that have multiple DHCP servers and a mechanism for |
| 581 | maintaining consistency among leases managed by multiple servers. |
| 582 | A DHCP server MAY extend a client's lease only if it has local |
| 583 | administrative authority to do so. |
| 584 | */ |
Denys Vlasenko | fa5e295 | 2010-11-28 01:10:51 +0100 | [diff] [blame] | 585 | if (!requested_ip_opt) { |
Denys Vlasenko | 53f72bb | 2010-03-21 06:46:09 +0100 | [diff] [blame] | 586 | requested_nip = packet.ciaddr; |
| 587 | if (requested_nip == 0) { |
| 588 | log1("no requested IP and no ciaddr, ignoring"); |
| 589 | break; |
| 590 | } |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 591 | } |
| 592 | if (lease && requested_nip == lease->lease_nip) { |
Denys Vlasenko | 53f72bb | 2010-03-21 06:46:09 +0100 | [diff] [blame] | 593 | /* client requested or configured IP matches the lease. |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 594 | * ACK it, and bump lease expiration time. */ |
| 595 | send_ACK(&packet, lease->lease_nip); |
| 596 | break; |
| 597 | } |
Denys Vlasenko | 713d241 | 2010-11-28 21:51:44 +0100 | [diff] [blame] | 598 | /* No lease for this MAC, or lease IP != requested IP */ |
| 599 | |
| 600 | if (server_id_opt /* client is in SELECTING state */ |
| 601 | || requested_ip_opt /* client is in INIT-REBOOT state */ |
| 602 | ) { |
| 603 | /* "No, we don't have this IP for you" */ |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 604 | send_NAK(&packet); |
Denys Vlasenko | 713d241 | 2010-11-28 21:51:44 +0100 | [diff] [blame] | 605 | } /* else: client is in RENEWING or REBINDING, do not answer */ |
| 606 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 607 | break; |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 608 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 609 | case DHCPDECLINE: |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 610 | /* RFC 2131: |
| 611 | * "If the server receives a DHCPDECLINE message, |
| 612 | * the client has discovered through some other means |
| 613 | * that the suggested network address is already |
| 614 | * in use. The server MUST mark the network address |
| 615 | * as not available and SHOULD notify the local |
| 616 | * sysadmin of a possible configuration problem." |
| 617 | * |
| 618 | * SERVER_ID must be present, |
| 619 | * REQUESTED_IP must be present, |
| 620 | * chaddr must be filled in, |
| 621 | * ciaddr must be 0 (we do not check this) |
| 622 | */ |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 623 | log1("Received DECLINE"); |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 624 | if (server_id_opt |
Denys Vlasenko | fa5e295 | 2010-11-28 01:10:51 +0100 | [diff] [blame] | 625 | && requested_ip_opt |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 626 | && lease /* chaddr matches this lease */ |
| 627 | && requested_nip == lease->lease_nip |
| 628 | ) { |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 629 | memset(lease->lease_mac, 0, sizeof(lease->lease_mac)); |
Denis Vlasenko | 04158e0 | 2009-02-02 10:48:06 +0000 | [diff] [blame] | 630 | lease->expires = time(NULL) + server_config.decline_time; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 631 | } |
| 632 | break; |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 633 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 634 | case DHCPRELEASE: |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 635 | /* "Upon receipt of a DHCPRELEASE message, the server |
| 636 | * marks the network address as not allocated." |
| 637 | * |
| 638 | * SERVER_ID must be present, |
| 639 | * REQUESTED_IP must not be present (we do not check this), |
| 640 | * chaddr must be filled in, |
| 641 | * ciaddr must be filled in |
| 642 | */ |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 643 | log1("Received RELEASE"); |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 644 | if (server_id_opt |
| 645 | && lease /* chaddr matches this lease */ |
| 646 | && packet.ciaddr == lease->lease_nip |
| 647 | ) { |
Denis Vlasenko | 04158e0 | 2009-02-02 10:48:06 +0000 | [diff] [blame] | 648 | lease->expires = time(NULL); |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 649 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 650 | break; |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 651 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 652 | case DHCPINFORM: |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 653 | log1("Received INFORM"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 654 | send_inform(&packet); |
| 655 | break; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 656 | } |
| 657 | } |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 658 | ret0: |
| 659 | retval = 0; |
| 660 | ret: |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 661 | /*if (server_config.pidfile) - server_config.pidfile is never NULL */ |
Denis Vlasenko | 6e6d331 | 2007-05-03 23:39:35 +0000 | [diff] [blame] | 662 | remove_pidfile(server_config.pidfile); |
| 663 | return retval; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 664 | } |