blob: c3724e0e27bb17e2677b065d9f05534d59a51b20 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Mike Frysinger7031f622006-05-08 03:20:50 +00002/* serverpacket.c
3 *
4 * Construct and send DHCP server packets
5 *
6 * Russ Dill <Russ.Dill@asu.edu> July 2001
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
Mike Frysinger7031f622006-05-08 03:20:50 +000023#include "common.h"
Denis Vlasenkod55fe3e2008-02-04 13:12:16 +000024#include "dhcpc.h"
Mike Frysinger7031f622006-05-08 03:20:50 +000025#include "dhcpd.h"
26#include "options.h"
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000027
Mike Frysinger7031f622006-05-08 03:20:50 +000028
Denys Vlasenko990a6172009-06-16 10:23:55 +020029/* send a packet to gateway_nip using the kernel ip stack */
Denys Vlasenko31af3d52009-06-17 11:57:09 +020030static int send_packet_to_relay(struct dhcp_packet *dhcp_pkt)
Mike Frysinger7031f622006-05-08 03:20:50 +000031{
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020032 log1("Forwarding packet to relay");
Mike Frysinger7031f622006-05-08 03:20:50 +000033
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020034 return udhcp_send_kernel_packet(dhcp_pkt,
Denys Vlasenko990a6172009-06-16 10:23:55 +020035 server_config.server_nip, SERVER_PORT,
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020036 dhcp_pkt->gateway_nip, SERVER_PORT);
Mike Frysinger7031f622006-05-08 03:20:50 +000037}
38
39
Denys Vlasenko26918dd2009-06-16 12:04:23 +020040/* send a packet to a specific mac address and ip address by creating our own ip packet */
Denys Vlasenko31af3d52009-06-17 11:57:09 +020041static int send_packet_to_client(struct dhcp_packet *dhcp_pkt, int force_broadcast)
Mike Frysinger7031f622006-05-08 03:20:50 +000042{
Denis Vlasenkofbd29182007-04-07 01:05:47 +000043 const uint8_t *chaddr;
Mike Frysinger7031f622006-05-08 03:20:50 +000044 uint32_t ciaddr;
45
Denys Vlasenko47f2d7e2009-06-16 10:20:27 +020046 // Was:
47 //if (force_broadcast) { /* broadcast */ }
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020048 //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 */ }
Denys Vlasenko47f2d7e2009-06-16 10:20:27 +020051 // 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!
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020054 // We should never unicast to dhcp_pkt->yiaddr!
55 // dhcp_pkt->ciaddr, OTOH, comes from client's request packet,
Denys Vlasenko47f2d7e2009-06-16 10:20:27 +020056 // and can be used.
57
58 if (force_broadcast
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020059 || (dhcp_pkt->flags & htons(BROADCAST_FLAG))
60 || !dhcp_pkt->ciaddr
Denys Vlasenko47f2d7e2009-06-16 10:20:27 +020061 ) {
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020062 log1("Broadcasting packet to client");
Mike Frysinger7031f622006-05-08 03:20:50 +000063 ciaddr = INADDR_BROADCAST;
64 chaddr = MAC_BCAST_ADDR;
65 } else {
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020066 log1("Unicasting packet to client ciaddr");
67 ciaddr = dhcp_pkt->ciaddr;
68 chaddr = dhcp_pkt->chaddr;
Mike Frysinger7031f622006-05-08 03:20:50 +000069 }
Denys Vlasenko47f2d7e2009-06-16 10:20:27 +020070
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020071 return udhcp_send_raw_packet(dhcp_pkt,
Denys Vlasenko990a6172009-06-16 10:23:55 +020072 /*src*/ server_config.server_nip, SERVER_PORT,
Denis Vlasenkoc321b512008-09-26 16:29:12 +000073 /*dst*/ ciaddr, CLIENT_PORT, chaddr,
74 server_config.ifindex);
Mike Frysinger7031f622006-05-08 03:20:50 +000075}
76
77
78/* send a dhcp packet, if force broadcast is set, the packet will be broadcast to the client */
Denys Vlasenko31af3d52009-06-17 11:57:09 +020079static int send_packet(struct dhcp_packet *dhcp_pkt, int force_broadcast)
Mike Frysinger7031f622006-05-08 03:20:50 +000080{
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020081 if (dhcp_pkt->gateway_nip)
82 return send_packet_to_relay(dhcp_pkt);
83 return send_packet_to_client(dhcp_pkt, force_broadcast);
Mike Frysinger7031f622006-05-08 03:20:50 +000084}
85
86
Denys Vlasenko31af3d52009-06-17 11:57:09 +020087static void init_packet(struct dhcp_packet *packet, struct dhcp_packet *oldpacket, char type)
Mike Frysinger7031f622006-05-08 03:20:50 +000088{
Rob Landley3f785612006-05-28 01:06:36 +000089 udhcp_init_header(packet, type);
Mike Frysinger7031f622006-05-08 03:20:50 +000090 packet->xid = oldpacket->xid;
Denys Vlasenko31af3d52009-06-17 11:57:09 +020091 memcpy(packet->chaddr, oldpacket->chaddr, sizeof(oldpacket->chaddr));
Mike Frysinger7031f622006-05-08 03:20:50 +000092 packet->flags = oldpacket->flags;
Denys Vlasenko990a6172009-06-16 10:23:55 +020093 packet->gateway_nip = oldpacket->gateway_nip;
Mike Frysinger7031f622006-05-08 03:20:50 +000094 packet->ciaddr = oldpacket->ciaddr;
Denys Vlasenko990a6172009-06-16 10:23:55 +020095 add_simple_option(packet->options, DHCP_SERVER_ID, server_config.server_nip);
Mike Frysinger7031f622006-05-08 03:20:50 +000096}
97
98
99/* add in the bootp options */
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200100static void add_bootp_options(struct dhcp_packet *packet)
Mike Frysinger7031f622006-05-08 03:20:50 +0000101{
Denys Vlasenko56f2d062009-06-16 10:25:35 +0200102 packet->siaddr_nip = server_config.siaddr_nip;
Mike Frysinger7031f622006-05-08 03:20:50 +0000103 if (server_config.sname)
104 strncpy((char*)packet->sname, server_config.sname, sizeof(packet->sname) - 1);
105 if (server_config.boot_file)
106 strncpy((char*)packet->file, server_config.boot_file, sizeof(packet->file) - 1);
107}
108
109
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200110static uint32_t select_lease_time(struct dhcp_packet *packet)
111{
112 uint32_t lease_time_sec = server_config.max_lease_sec;
113 uint8_t *lease_time_opt = get_option(packet, DHCP_LEASE_TIME);
114 if (lease_time_opt) {
115 move_from_unaligned32(lease_time_sec, lease_time_opt);
116 lease_time_sec = ntohl(lease_time_sec);
117 if (lease_time_sec > server_config.max_lease_sec)
118 lease_time_sec = server_config.max_lease_sec;
119 if (lease_time_sec < server_config.min_lease_sec)
120 lease_time_sec = server_config.min_lease_sec;
121 }
122 return lease_time_sec;
123}
124
125
Mike Frysinger7031f622006-05-08 03:20:50 +0000126/* send a DHCP OFFER to a DHCP DISCOVER */
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200127int FAST_FUNC send_offer(struct dhcp_packet *oldpacket)
Mike Frysinger7031f622006-05-08 03:20:50 +0000128{
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200129 struct dhcp_packet packet;
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200130 uint32_t req_nip;
131 uint32_t lease_time_sec = server_config.max_lease_sec;
Denis Vlasenko0416e3d2009-01-01 17:52:09 +0000132 uint32_t static_lease_ip;
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200133 uint8_t *req_ip_opt, *p_host_name;
Mike Frysinger7031f622006-05-08 03:20:50 +0000134 struct option_set *curr;
135 struct in_addr addr;
136
Mike Frysinger7031f622006-05-08 03:20:50 +0000137 init_packet(&packet, oldpacket, DHCPOFFER);
138
Denys Vlasenkocab3a012009-06-16 12:03:12 +0200139 static_lease_ip = get_static_nip_by_mac(server_config.static_leases, oldpacket->chaddr);
Mike Frysinger7031f622006-05-08 03:20:50 +0000140
141 /* ADDME: if static, short circuit */
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000142 if (!static_lease_ip) {
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200143 struct dyn_lease *lease;
Denis Vlasenko0416e3d2009-01-01 17:52:09 +0000144
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200145 lease = find_lease_by_mac(oldpacket->chaddr);
Denys Vlasenko47f2d7e2009-06-16 10:20:27 +0200146 /* The client is in our lease/offered table */
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000147 if (lease) {
Denis Vlasenko0416e3d2009-01-01 17:52:09 +0000148 signed_leasetime_t tmp = lease->expires - time(NULL);
149 if (tmp >= 0)
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200150 lease_time_sec = tmp;
Denys Vlasenko1d924f52009-06-16 10:23:01 +0200151 packet.yiaddr = lease->lease_nip;
Denys Vlasenko47f2d7e2009-06-16 10:20:27 +0200152 }
153 /* Or the client has requested an IP */
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200154 else if ((req_ip_opt = get_option(oldpacket, DHCP_REQUESTED_IP)) != NULL
Denys Vlasenko47f2d7e2009-06-16 10:20:27 +0200155 /* (read IP) */
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200156 && (move_from_unaligned32(req_nip, req_ip_opt), 1)
Denys Vlasenko47f2d7e2009-06-16 10:20:27 +0200157 /* and the IP is in the lease range */
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200158 && ntohl(req_nip) >= server_config.start_ip
159 && ntohl(req_nip) <= server_config.end_ip
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000160 /* and is not already taken/offered */
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200161 && (!(lease = find_lease_by_nip(req_nip))
Denis Vlasenko0416e3d2009-01-01 17:52:09 +0000162 /* or its taken, but expired */
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200163 || is_expired_lease(lease))
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000164 ) {
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200165 packet.yiaddr = req_nip;
Denys Vlasenko47f2d7e2009-06-16 10:20:27 +0200166 }
167 /* Otherwise, find a free IP */
168 else {
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200169 packet.yiaddr = find_free_or_expired_nip(oldpacket->chaddr);
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000170 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000171
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000172 if (!packet.yiaddr) {
173 bb_error_msg("no IP addresses to give - OFFER abandoned");
174 return -1;
175 }
Denis Vlasenkobd79c3d2009-04-01 12:36:09 +0000176 p_host_name = get_option(oldpacket, DHCP_HOST_NAME);
177 if (!add_lease(packet.chaddr, packet.yiaddr, server_config.offer_time, p_host_name)) {
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000178 bb_error_msg("lease pool is full - OFFER abandoned");
179 return -1;
180 }
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200181 lease_time_sec = select_lease_time(oldpacket);
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000182 } else {
Mike Frysinger7031f622006-05-08 03:20:50 +0000183 /* It is a static lease... use it */
184 packet.yiaddr = static_lease_ip;
185 }
186
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200187 add_simple_option(packet.options, DHCP_LEASE_TIME, htonl(lease_time_sec));
Mike Frysinger7031f622006-05-08 03:20:50 +0000188
189 curr = server_config.options;
190 while (curr) {
191 if (curr->data[OPT_CODE] != DHCP_LEASE_TIME)
192 add_option_string(packet.options, curr->data);
193 curr = curr->next;
194 }
195
196 add_bootp_options(&packet);
197
198 addr.s_addr = packet.yiaddr;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000199 bb_info_msg("Sending OFFER of %s", inet_ntoa(addr));
Mike Frysinger7031f622006-05-08 03:20:50 +0000200 return send_packet(&packet, 0);
201}
202
203
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200204int FAST_FUNC send_NAK(struct dhcp_packet *oldpacket)
Mike Frysinger7031f622006-05-08 03:20:50 +0000205{
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200206 struct dhcp_packet packet;
Mike Frysinger7031f622006-05-08 03:20:50 +0000207
208 init_packet(&packet, oldpacket, DHCPNAK);
209
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200210 log1("Sending NAK");
Mike Frysinger7031f622006-05-08 03:20:50 +0000211 return send_packet(&packet, 1);
212}
213
214
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200215int FAST_FUNC send_ACK(struct dhcp_packet *oldpacket, uint32_t yiaddr)
Mike Frysinger7031f622006-05-08 03:20:50 +0000216{
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200217 struct dhcp_packet packet;
Mike Frysinger7031f622006-05-08 03:20:50 +0000218 struct option_set *curr;
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200219 uint32_t lease_time_sec;
Mike Frysinger7031f622006-05-08 03:20:50 +0000220 struct in_addr addr;
Denis Vlasenkobd79c3d2009-04-01 12:36:09 +0000221 uint8_t *p_host_name;
Mike Frysinger7031f622006-05-08 03:20:50 +0000222
223 init_packet(&packet, oldpacket, DHCPACK);
224 packet.yiaddr = yiaddr;
225
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200226 lease_time_sec = select_lease_time(oldpacket);
Mike Frysinger7031f622006-05-08 03:20:50 +0000227
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200228 add_simple_option(packet.options, DHCP_LEASE_TIME, htonl(lease_time_sec));
Mike Frysinger7031f622006-05-08 03:20:50 +0000229
230 curr = server_config.options;
231 while (curr) {
232 if (curr->data[OPT_CODE] != DHCP_LEASE_TIME)
233 add_option_string(packet.options, curr->data);
234 curr = curr->next;
235 }
236
237 add_bootp_options(&packet);
238
239 addr.s_addr = packet.yiaddr;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000240 bb_info_msg("Sending ACK to %s", inet_ntoa(addr));
Mike Frysinger7031f622006-05-08 03:20:50 +0000241
242 if (send_packet(&packet, 0) < 0)
243 return -1;
244
Denis Vlasenkobd79c3d2009-04-01 12:36:09 +0000245 p_host_name = get_option(oldpacket, DHCP_HOST_NAME);
Denys Vlasenko6947d2c2009-06-17 13:24:03 +0200246 add_lease(packet.chaddr, packet.yiaddr, lease_time_sec, p_host_name);
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000247 if (ENABLE_FEATURE_UDHCPD_WRITE_LEASES_EARLY) {
248 /* rewrite the file with leases at every new acceptance */
249 write_leases();
250 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000251
252 return 0;
253}
254
255
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200256int FAST_FUNC send_inform(struct dhcp_packet *oldpacket)
Mike Frysinger7031f622006-05-08 03:20:50 +0000257{
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200258 struct dhcp_packet packet;
Mike Frysinger7031f622006-05-08 03:20:50 +0000259 struct option_set *curr;
260
261 init_packet(&packet, oldpacket, DHCPACK);
262
263 curr = server_config.options;
264 while (curr) {
265 if (curr->data[OPT_CODE] != DHCP_LEASE_TIME)
266 add_option_string(packet.options, curr->data);
267 curr = curr->next;
268 }
269
270 add_bootp_options(&packet);
271
272 return send_packet(&packet, 0);
273}