blob: c6a82090999a5266527337095ac388a31468d98f [file] [log] [blame]
Russ Dill61fb4892002-10-14 21:41:28 +00001/* serverpacket.c
2 *
Eric Andersenaff114c2004-04-14 17:51:38 +00003 * Construct and send DHCP server packets
Russ Dill61fb4892002-10-14 21:41:28 +00004 *
5 * Russ Dill <Russ.Dill@asu.edu> July 2001
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22#include <sys/socket.h>
23#include <netinet/in.h>
24#include <arpa/inet.h>
25#include <string.h>
26#include <time.h>
27
"Vladimir N. Oleynik"b6284092005-09-23 11:25:29 +000028#include "common.h"
Russ Dill76729b82003-12-16 20:44:15 +000029#include "serverpacket.h"
Russ Dill61fb4892002-10-14 21:41:28 +000030#include "dhcpd.h"
31#include "options.h"
Eric Andersenabf58d62004-10-08 08:49:26 +000032#include "static_leases.h"
Russ Dill61fb4892002-10-14 21:41:28 +000033
34/* send a packet to giaddr using the kernel ip stack */
35static int send_packet_to_relay(struct dhcpMessage *payload)
36{
37 DEBUG(LOG_INFO, "Forwarding packet to relay");
38
39 return kernel_packet(payload, server_config.server, SERVER_PORT,
40 payload->giaddr, SERVER_PORT);
41}
42
43
44/* send a packet to a specific arp address and ip address by creating our own ip packet */
45static int send_packet_to_client(struct dhcpMessage *payload, int force_broadcast)
46{
Eric Andersenad953732004-01-30 23:45:53 +000047 uint8_t *chaddr;
48 uint32_t ciaddr;
Eric Andersenc7bda1c2004-03-15 08:29:22 +000049
Russ Dill61fb4892002-10-14 21:41:28 +000050 if (force_broadcast) {
51 DEBUG(LOG_INFO, "broadcasting packet to client (NAK)");
52 ciaddr = INADDR_BROADCAST;
53 chaddr = MAC_BCAST_ADDR;
54 } else if (payload->ciaddr) {
55 DEBUG(LOG_INFO, "unicasting packet to client ciaddr");
56 ciaddr = payload->ciaddr;
57 chaddr = payload->chaddr;
58 } else if (ntohs(payload->flags) & BROADCAST_FLAG) {
59 DEBUG(LOG_INFO, "broadcasting packet to client (requested)");
60 ciaddr = INADDR_BROADCAST;
61 chaddr = MAC_BCAST_ADDR;
62 } else {
63 DEBUG(LOG_INFO, "unicasting packet to client yiaddr");
64 ciaddr = payload->yiaddr;
65 chaddr = payload->chaddr;
66 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +000067 return raw_packet(payload, server_config.server, SERVER_PORT,
Russ Dill61fb4892002-10-14 21:41:28 +000068 ciaddr, CLIENT_PORT, chaddr, server_config.ifindex);
69}
70
71
72/* send a dhcp packet, if force broadcast is set, the packet will be broadcast to the client */
73static int send_packet(struct dhcpMessage *payload, int force_broadcast)
74{
75 int ret;
76
77 if (payload->giaddr)
78 ret = send_packet_to_relay(payload);
79 else ret = send_packet_to_client(payload, force_broadcast);
80 return ret;
81}
82
83
84static void init_packet(struct dhcpMessage *packet, struct dhcpMessage *oldpacket, char type)
85{
86 init_header(packet, type);
87 packet->xid = oldpacket->xid;
88 memcpy(packet->chaddr, oldpacket->chaddr, 16);
89 packet->flags = oldpacket->flags;
90 packet->giaddr = oldpacket->giaddr;
91 packet->ciaddr = oldpacket->ciaddr;
92 add_simple_option(packet->options, DHCP_SERVER_ID, server_config.server);
93}
94
95
96/* add in the bootp options */
97static void add_bootp_options(struct dhcpMessage *packet)
98{
99 packet->siaddr = server_config.siaddr;
100 if (server_config.sname)
101 strncpy(packet->sname, server_config.sname, sizeof(packet->sname) - 1);
102 if (server_config.boot_file)
103 strncpy(packet->file, server_config.boot_file, sizeof(packet->file) - 1);
104}
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000105
Russ Dill61fb4892002-10-14 21:41:28 +0000106
107/* send a DHCP OFFER to a DHCP DISCOVER */
108int sendOffer(struct dhcpMessage *oldpacket)
109{
110 struct dhcpMessage packet;
111 struct dhcpOfferedAddr *lease = NULL;
Eric Andersenad953732004-01-30 23:45:53 +0000112 uint32_t req_align, lease_time_align = server_config.lease;
113 uint8_t *req, *lease_time;
Russ Dill61fb4892002-10-14 21:41:28 +0000114 struct option_set *curr;
115 struct in_addr addr;
116
Eric Andersenabf58d62004-10-08 08:49:26 +0000117 uint32_t static_lease_ip;
118
Russ Dill61fb4892002-10-14 21:41:28 +0000119 init_packet(&packet, oldpacket, DHCPOFFER);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000120
Eric Andersenabf58d62004-10-08 08:49:26 +0000121 static_lease_ip = getIpByMac(server_config.static_leases, oldpacket->chaddr);
122
Russ Dill61fb4892002-10-14 21:41:28 +0000123 /* ADDME: if static, short circuit */
Eric Andersenabf58d62004-10-08 08:49:26 +0000124 if(!static_lease_ip)
125 {
Russ Dill61fb4892002-10-14 21:41:28 +0000126 /* the client is in our lease/offered table */
127 if ((lease = find_lease_by_chaddr(oldpacket->chaddr))) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000128 if (!lease_expired(lease))
Russ Dill61fb4892002-10-14 21:41:28 +0000129 lease_time_align = lease->expires - time(0);
130 packet.yiaddr = lease->yiaddr;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000131
Russ Dill61fb4892002-10-14 21:41:28 +0000132 /* Or the client has a requested ip */
133 } else if ((req = get_option(oldpacket, DHCP_REQUESTED_IP)) &&
134
135 /* Don't look here (ugly hackish thing to do) */
136 memcpy(&req_align, req, 4) &&
137
138 /* and the ip is in the lease range */
139 ntohl(req_align) >= ntohl(server_config.start) &&
140 ntohl(req_align) <= ntohl(server_config.end) &&
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000141
Eric Andersenabf58d62004-10-08 08:49:26 +0000142 !static_lease_ip && /* Check that its not a static lease */
143 /* and is not already taken/offered */
Russ Dill61fb4892002-10-14 21:41:28 +0000144 ((!(lease = find_lease_by_yiaddr(req_align)) ||
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000145
Russ Dill61fb4892002-10-14 21:41:28 +0000146 /* or its taken, but expired */ /* ADDME: or maybe in here */
147 lease_expired(lease)))) {
148 packet.yiaddr = req_align; /* FIXME: oh my, is there a host using this IP? */
149
Eric Andersenabf58d62004-10-08 08:49:26 +0000150 /* otherwise, find a free IP */
Russ Dill61fb4892002-10-14 21:41:28 +0000151 } else {
Eric Andersenabf58d62004-10-08 08:49:26 +0000152 /* Is it a static lease? (No, because find_address skips static lease) */
Russ Dill61fb4892002-10-14 21:41:28 +0000153 packet.yiaddr = find_address(0);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000154
Russ Dill61fb4892002-10-14 21:41:28 +0000155 /* try for an expired lease */
156 if (!packet.yiaddr) packet.yiaddr = find_address(1);
157 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000158
Russ Dill61fb4892002-10-14 21:41:28 +0000159 if(!packet.yiaddr) {
160 LOG(LOG_WARNING, "no IP addresses to give -- OFFER abandoned");
161 return -1;
162 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000163
Russ Dill61fb4892002-10-14 21:41:28 +0000164 if (!add_lease(packet.chaddr, packet.yiaddr, server_config.offer_time)) {
165 LOG(LOG_WARNING, "lease pool is full -- OFFER abandoned");
166 return -1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000167 }
Russ Dill61fb4892002-10-14 21:41:28 +0000168
169 if ((lease_time = get_option(oldpacket, DHCP_LEASE_TIME))) {
170 memcpy(&lease_time_align, lease_time, 4);
171 lease_time_align = ntohl(lease_time_align);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000172 if (lease_time_align > server_config.lease)
Russ Dill61fb4892002-10-14 21:41:28 +0000173 lease_time_align = server_config.lease;
174 }
175
176 /* Make sure we aren't just using the lease time from the previous offer */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000177 if (lease_time_align < server_config.min_lease)
Russ Dill61fb4892002-10-14 21:41:28 +0000178 lease_time_align = server_config.lease;
Eric Andersenabf58d62004-10-08 08:49:26 +0000179 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000180 /* ADDME: end of short circuit */
Eric Andersenabf58d62004-10-08 08:49:26 +0000181 else
182 {
183 /* It is a static lease... use it */
184 packet.yiaddr = static_lease_ip;
185 }
186
Russ Dill61fb4892002-10-14 21:41:28 +0000187 add_simple_option(packet.options, DHCP_LEASE_TIME, htonl(lease_time_align));
188
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);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000197
Russ Dill61fb4892002-10-14 21:41:28 +0000198 addr.s_addr = packet.yiaddr;
199 LOG(LOG_INFO, "sending OFFER of %s", inet_ntoa(addr));
200 return send_packet(&packet, 0);
201}
202
203
204int sendNAK(struct dhcpMessage *oldpacket)
205{
206 struct dhcpMessage packet;
207
208 init_packet(&packet, oldpacket, DHCPNAK);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000209
Russ Dill61fb4892002-10-14 21:41:28 +0000210 DEBUG(LOG_INFO, "sending NAK");
211 return send_packet(&packet, 1);
212}
213
214
Eric Andersenad953732004-01-30 23:45:53 +0000215int sendACK(struct dhcpMessage *oldpacket, uint32_t yiaddr)
Russ Dill61fb4892002-10-14 21:41:28 +0000216{
217 struct dhcpMessage packet;
218 struct option_set *curr;
Eric Andersenad953732004-01-30 23:45:53 +0000219 uint8_t *lease_time;
220 uint32_t lease_time_align = server_config.lease;
Russ Dill61fb4892002-10-14 21:41:28 +0000221 struct in_addr addr;
222
223 init_packet(&packet, oldpacket, DHCPACK);
224 packet.yiaddr = yiaddr;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000225
Russ Dill61fb4892002-10-14 21:41:28 +0000226 if ((lease_time = get_option(oldpacket, DHCP_LEASE_TIME))) {
227 memcpy(&lease_time_align, lease_time, 4);
228 lease_time_align = ntohl(lease_time_align);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000229 if (lease_time_align > server_config.lease)
Russ Dill61fb4892002-10-14 21:41:28 +0000230 lease_time_align = server_config.lease;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000231 else if (lease_time_align < server_config.min_lease)
Russ Dill61fb4892002-10-14 21:41:28 +0000232 lease_time_align = server_config.lease;
233 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000234
Russ Dill61fb4892002-10-14 21:41:28 +0000235 add_simple_option(packet.options, DHCP_LEASE_TIME, htonl(lease_time_align));
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000236
Russ Dill61fb4892002-10-14 21:41:28 +0000237 curr = server_config.options;
238 while (curr) {
239 if (curr->data[OPT_CODE] != DHCP_LEASE_TIME)
240 add_option_string(packet.options, curr->data);
241 curr = curr->next;
242 }
243
244 add_bootp_options(&packet);
245
246 addr.s_addr = packet.yiaddr;
247 LOG(LOG_INFO, "sending ACK to %s", inet_ntoa(addr));
248
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000249 if (send_packet(&packet, 0) < 0)
Russ Dill61fb4892002-10-14 21:41:28 +0000250 return -1;
251
252 add_lease(packet.chaddr, packet.yiaddr, lease_time_align);
253
254 return 0;
255}
256
257
258int send_inform(struct dhcpMessage *oldpacket)
259{
260 struct dhcpMessage packet;
261 struct option_set *curr;
262
263 init_packet(&packet, oldpacket, DHCPACK);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000264
Russ Dill61fb4892002-10-14 21:41:28 +0000265 curr = server_config.options;
266 while (curr) {
267 if (curr->data[OPT_CODE] != DHCP_LEASE_TIME)
268 add_option_string(packet.options, curr->data);
269 curr = curr->next;
270 }
271
272 add_bootp_options(&packet);
273
274 return send_packet(&packet, 0);
275}