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