blob: a255d6e84a1b3f9af26fed875f386148facb98f7 [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/* clientpacket.c
3 *
4 * Packet generation and dispatching functions for the DHCP client.
5 *
6 * Russ Dill <Russ.Dill@asu.edu> July 2001
7 *
Rob Landley3f785612006-05-28 01:06:36 +00008 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Mike Frysinger7031f622006-05-08 03:20:50 +00009 */
Denys Vlasenko860d2bb2009-07-10 18:37:06 +020010#include "common.h"
11#include "dhcpd.h"
12#include "dhcpc.h"
13#include "options.h"
Mike Frysinger7031f622006-05-08 03:20:50 +000014
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020015//#include <features.h>
Denis Vlasenko83e5d6f2006-12-18 21:49:06 +000016#if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined _NEWLIB_VERSION
Mike Frysinger7031f622006-05-08 03:20:50 +000017#include <netpacket/packet.h>
18#include <net/ethernet.h>
19#else
20#include <asm/types.h>
21#include <linux/if_packet.h>
22#include <linux/if_ether.h>
23#endif
Mike Frysinger7031f622006-05-08 03:20:50 +000024
Mike Frysinger7031f622006-05-08 03:20:50 +000025
26/* Create a random xid */
Denis Vlasenkof1980f62008-09-26 09:34:59 +000027uint32_t FAST_FUNC random_xid(void)
Mike Frysinger7031f622006-05-08 03:20:50 +000028{
Denis Vlasenkobd7bb292007-06-17 23:40:26 +000029 static smallint initialized;
Mike Frysinger7031f622006-05-08 03:20:50 +000030
Denis Vlasenkobd7bb292007-06-17 23:40:26 +000031 if (!initialized) {
32 srand(monotonic_us());
33 initialized = 1;
Mike Frysinger7031f622006-05-08 03:20:50 +000034 }
35 return rand();
36}
37
38
Denys Vlasenko26918dd2009-06-16 12:04:23 +020039/* Initialize the packet with the proper defaults */
Denys Vlasenko31af3d52009-06-17 11:57:09 +020040static void init_packet(struct dhcp_packet *packet, char type)
Mike Frysinger7031f622006-05-08 03:20:50 +000041{
Rob Landley3f785612006-05-28 01:06:36 +000042 udhcp_init_header(packet, type);
Denys Vlasenko26918dd2009-06-16 12:04:23 +020043 memcpy(packet->chaddr, client_config.client_mac, 6);
Mike Frysinger7031f622006-05-08 03:20:50 +000044 if (client_config.clientid)
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000045 add_option_string(packet->options, client_config.clientid);
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000046 if (client_config.hostname)
47 add_option_string(packet->options, client_config.hostname);
48 if (client_config.fqdn)
49 add_option_string(packet->options, client_config.fqdn);
Denys Vlasenko87fa2162010-03-20 18:06:23 +010050 if (type != DHCPDECLINE
51 && type != DHCPRELEASE
52 && client_config.vendorclass
53 ) {
Denis Vlasenkoca9635b2008-01-25 19:27:08 +000054 add_option_string(packet->options, client_config.vendorclass);
Denys Vlasenko87fa2162010-03-20 18:06:23 +010055 }
Mike Frysinger7031f622006-05-08 03:20:50 +000056}
57
58
59/* Add a parameter request list for stubborn DHCP servers. Pull the data
60 * from the struct in options.c. Don't do bounds checking here because it
61 * goes towards the head of the packet. */
Denys Vlasenko31af3d52009-06-17 11:57:09 +020062static void add_param_req_option(struct dhcp_packet *packet)
Mike Frysinger7031f622006-05-08 03:20:50 +000063{
Denis Vlasenko19183682007-12-10 07:03:38 +000064 uint8_t c;
Mike Frysinger7031f622006-05-08 03:20:50 +000065 int end = end_option(packet->options);
66 int i, len = 0;
67
Denis Vlasenko19183682007-12-10 07:03:38 +000068 for (i = 0; (c = dhcp_options[i].code) != 0; i++) {
Denys Vlasenko777706c2010-03-19 23:42:23 +010069 if (( (dhcp_options[i].flags & OPTION_REQ)
70 && !client_config.no_default_options
71 )
Denis Vlasenko19183682007-12-10 07:03:38 +000072 || (client_config.opt_mask[c >> 3] & (1 << (c & 7)))
73 ) {
Denis Vlasenkoca9635b2008-01-25 19:27:08 +000074 packet->options[end + OPT_DATA + len] = c;
75 len++;
Denis Vlasenko19183682007-12-10 07:03:38 +000076 }
77 }
Denis Vlasenko2e4c3c42008-04-02 13:04:19 +000078 if (len) {
79 packet->options[end + OPT_CODE] = DHCP_PARAM_REQ;
80 packet->options[end + OPT_LEN] = len;
81 packet->options[end + OPT_DATA + len] = DHCP_END;
82 }
Mike Frysinger7031f622006-05-08 03:20:50 +000083}
84
Denis Vlasenko739e30f2008-09-26 23:45:20 +000085/* RFC 2131
86 * 4.4.4 Use of broadcast and unicast
87 *
88 * The DHCP client broadcasts DHCPDISCOVER, DHCPREQUEST and DHCPINFORM
89 * messages, unless the client knows the address of a DHCP server.
90 * The client unicasts DHCPRELEASE messages to the server. Because
91 * the client is declining the use of the IP address supplied by the server,
92 * the client broadcasts DHCPDECLINE messages.
93 *
94 * When the DHCP client knows the address of a DHCP server, in either
95 * INIT or REBOOTING state, the client may use that address
96 * in the DHCPDISCOVER or DHCPREQUEST rather than the IP broadcast address.
97 * The client may also use unicast to send DHCPINFORM messages
98 * to a known DHCP server. If the client receives no response to DHCP
99 * messages sent to the IP address of a known DHCP server, the DHCP
100 * client reverts to using the IP broadcast address.
101 */
Denis Vlasenkoca9635b2008-01-25 19:27:08 +0000102
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200103static int raw_bcast_from_client_config_ifindex(struct dhcp_packet *packet)
Denis Vlasenkoc321b512008-09-26 16:29:12 +0000104{
105 return udhcp_send_raw_packet(packet,
106 /*src*/ INADDR_ANY, CLIENT_PORT,
107 /*dst*/ INADDR_BROADCAST, SERVER_PORT, MAC_BCAST_ADDR,
108 client_config.ifindex);
109}
110
111
Denis Vlasenko223bc972007-11-22 00:58:49 +0000112#if ENABLE_FEATURE_UDHCPC_ARPING
Denis Vlasenkoc321b512008-09-26 16:29:12 +0000113/* Broadcast a DHCP decline message */
Denis Vlasenkof1980f62008-09-26 09:34:59 +0000114int FAST_FUNC send_decline(uint32_t xid, uint32_t server, uint32_t requested)
Denis Vlasenko223bc972007-11-22 00:58:49 +0000115{
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200116 struct dhcp_packet packet;
Denis Vlasenko223bc972007-11-22 00:58:49 +0000117
118 init_packet(&packet, DHCPDECLINE);
119 packet.xid = xid;
Denis Vlasenkoca9635b2008-01-25 19:27:08 +0000120 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
121 add_simple_option(packet.options, DHCP_SERVER_ID, server);
Denis Vlasenko223bc972007-11-22 00:58:49 +0000122
123 bb_info_msg("Sending decline...");
124
Denis Vlasenkoc321b512008-09-26 16:29:12 +0000125 return raw_bcast_from_client_config_ifindex(&packet);
Denis Vlasenko223bc972007-11-22 00:58:49 +0000126}
127#endif
Mike Frysinger7031f622006-05-08 03:20:50 +0000128
Denys Vlasenko26918dd2009-06-16 12:04:23 +0200129
Mike Frysinger7031f622006-05-08 03:20:50 +0000130/* Broadcast a DHCP discover packet to the network, with an optionally requested IP */
Denis Vlasenkof1980f62008-09-26 09:34:59 +0000131int FAST_FUNC send_discover(uint32_t xid, uint32_t requested)
Mike Frysinger7031f622006-05-08 03:20:50 +0000132{
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200133 struct dhcp_packet packet;
Mike Frysinger7031f622006-05-08 03:20:50 +0000134
135 init_packet(&packet, DHCPDISCOVER);
136 packet.xid = xid;
137 if (requested)
138 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
139
Denis Vlasenko35ff7462007-11-28 19:23:12 +0000140 /* Explicitly saying that we want RFC-compliant packets helps
141 * some buggy DHCP servers to NOT send bigger packets */
142 add_simple_option(packet.options, DHCP_MAX_SIZE, htons(576));
Denis Vlasenko2e4c3c42008-04-02 13:04:19 +0000143
Denis Vlasenkoca9635b2008-01-25 19:27:08 +0000144 add_param_req_option(&packet);
Denis Vlasenko2e4c3c42008-04-02 13:04:19 +0000145
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000146 bb_info_msg("Sending discover...");
Denis Vlasenkoc321b512008-09-26 16:29:12 +0000147 return raw_bcast_from_client_config_ifindex(&packet);
Mike Frysinger7031f622006-05-08 03:20:50 +0000148}
149
150
Denys Vlasenko26918dd2009-06-16 12:04:23 +0200151/* Broadcast a DHCP request message */
Denis Vlasenko739e30f2008-09-26 23:45:20 +0000152/* RFC 2131 3.1 paragraph 3:
153 * "The client _broadcasts_ a DHCPREQUEST message..."
154 */
Denis Vlasenkoc321b512008-09-26 16:29:12 +0000155int FAST_FUNC send_select(uint32_t xid, uint32_t server, uint32_t requested)
Mike Frysinger7031f622006-05-08 03:20:50 +0000156{
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200157 struct dhcp_packet packet;
Mike Frysinger7031f622006-05-08 03:20:50 +0000158 struct in_addr addr;
159
160 init_packet(&packet, DHCPREQUEST);
161 packet.xid = xid;
162
163 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
164 add_simple_option(packet.options, DHCP_SERVER_ID, server);
Denis Vlasenkoca9635b2008-01-25 19:27:08 +0000165 add_param_req_option(&packet);
Denis Vlasenko2e4c3c42008-04-02 13:04:19 +0000166
Mike Frysinger7031f622006-05-08 03:20:50 +0000167 addr.s_addr = requested;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000168 bb_info_msg("Sending select for %s...", inet_ntoa(addr));
Denis Vlasenkoc321b512008-09-26 16:29:12 +0000169 return raw_bcast_from_client_config_ifindex(&packet);
Mike Frysinger7031f622006-05-08 03:20:50 +0000170}
171
172
Denys Vlasenko7895b912009-07-03 16:59:59 +0200173/* Unicast or broadcast a DHCP renew message */
Denis Vlasenkof1980f62008-09-26 09:34:59 +0000174int FAST_FUNC send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr)
Mike Frysinger7031f622006-05-08 03:20:50 +0000175{
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200176 struct dhcp_packet packet;
Mike Frysinger7031f622006-05-08 03:20:50 +0000177
178 init_packet(&packet, DHCPREQUEST);
179 packet.xid = xid;
180 packet.ciaddr = ciaddr;
181
Denis Vlasenkoca9635b2008-01-25 19:27:08 +0000182 add_param_req_option(&packet);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000183 bb_info_msg("Sending renew...");
Mike Frysinger7031f622006-05-08 03:20:50 +0000184 if (server)
Denis Vlasenkoc321b512008-09-26 16:29:12 +0000185 return udhcp_send_kernel_packet(&packet,
186 ciaddr, CLIENT_PORT,
187 server, SERVER_PORT);
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000188
Denis Vlasenkoc321b512008-09-26 16:29:12 +0000189 return raw_bcast_from_client_config_ifindex(&packet);
Mike Frysinger7031f622006-05-08 03:20:50 +0000190}
191
192
Denys Vlasenko7895b912009-07-03 16:59:59 +0200193/* Unicast a DHCP release message */
Denis Vlasenkof1980f62008-09-26 09:34:59 +0000194int FAST_FUNC send_release(uint32_t server, uint32_t ciaddr)
Mike Frysinger7031f622006-05-08 03:20:50 +0000195{
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200196 struct dhcp_packet packet;
Mike Frysinger7031f622006-05-08 03:20:50 +0000197
198 init_packet(&packet, DHCPRELEASE);
199 packet.xid = random_xid();
200 packet.ciaddr = ciaddr;
201
Mike Frysinger7031f622006-05-08 03:20:50 +0000202 add_simple_option(packet.options, DHCP_SERVER_ID, server);
203
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000204 bb_info_msg("Sending release...");
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000205 return udhcp_send_kernel_packet(&packet, ciaddr, CLIENT_PORT, server, SERVER_PORT);
Mike Frysinger7031f622006-05-08 03:20:50 +0000206}
207
208
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000209/* Returns -1 on errors that are fatal for the socket, -2 for those that aren't */
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200210int FAST_FUNC udhcp_recv_raw_packet(struct dhcp_packet *dhcp_pkt, int fd)
Mike Frysinger7031f622006-05-08 03:20:50 +0000211{
212 int bytes;
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200213 struct ip_udp_dhcp_packet packet;
Mike Frysinger7031f622006-05-08 03:20:50 +0000214 uint16_t check;
215
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000216 memset(&packet, 0, sizeof(packet));
217 bytes = safe_read(fd, &packet, sizeof(packet));
Mike Frysinger7031f622006-05-08 03:20:50 +0000218 if (bytes < 0) {
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200219 log1("Packet read error, ignoring");
Denis Vlasenko6de89942008-05-21 07:05:06 +0000220 /* NB: possible down interface, etc. Caller should pause. */
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000221 return bytes; /* returns -1 */
Mike Frysinger7031f622006-05-08 03:20:50 +0000222 }
223
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000224 if (bytes < (int) (sizeof(packet.ip) + sizeof(packet.udp))) {
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200225 log1("Packet is too short, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000226 return -2;
227 }
228
229 if (bytes < ntohs(packet.ip.tot_len)) {
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000230 /* packet is bigger than sizeof(packet), we did partial read */
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200231 log1("Oversized packet, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000232 return -2;
233 }
234
235 /* ignore any extra garbage bytes */
236 bytes = ntohs(packet.ip.tot_len);
237
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000238 /* make sure its the right packet for us, and that it passes sanity checks */
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000239 if (packet.ip.protocol != IPPROTO_UDP || packet.ip.version != IPVERSION
Denis Vlasenko6884f662007-11-23 00:08:54 +0000240 || packet.ip.ihl != (sizeof(packet.ip) >> 2)
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000241 || packet.udp.dest != htons(CLIENT_PORT)
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000242 /* || bytes > (int) sizeof(packet) - can't happen */
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000243 || ntohs(packet.udp.len) != (uint16_t)(bytes - sizeof(packet.ip))
244 ) {
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200245 log1("Unrelated/bogus packet, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000246 return -2;
247 }
248
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000249 /* verify IP checksum */
Mike Frysinger7031f622006-05-08 03:20:50 +0000250 check = packet.ip.check;
251 packet.ip.check = 0;
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000252 if (check != udhcp_checksum(&packet.ip, sizeof(packet.ip))) {
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200253 log1("Bad IP header checksum, ignoring");
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000254 return -2;
Mike Frysinger7031f622006-05-08 03:20:50 +0000255 }
256
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000257 /* verify UDP checksum. IP header has to be modified for this */
258 memset(&packet.ip, 0, offsetof(struct iphdr, protocol));
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000259 /* ip.xx fields which are not memset: protocol, check, saddr, daddr */
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000260 packet.ip.tot_len = packet.udp.len; /* yes, this is needed */
Mike Frysinger7031f622006-05-08 03:20:50 +0000261 check = packet.udp.check;
262 packet.udp.check = 0;
Rob Landley3f785612006-05-28 01:06:36 +0000263 if (check && check != udhcp_checksum(&packet, bytes)) {
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200264 log1("Packet with bad UDP checksum received, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000265 return -2;
266 }
267
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200268 memcpy(dhcp_pkt, &packet.data, bytes - (sizeof(packet.ip) + sizeof(packet.udp)));
Mike Frysinger7031f622006-05-08 03:20:50 +0000269
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200270 if (dhcp_pkt->cookie != htonl(DHCP_MAGIC)) {
271 bb_info_msg("Packet with bad magic, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000272 return -2;
273 }
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200274 log1("Got valid DHCP packet");
275 udhcp_dump_packet(dhcp_pkt);
Mike Frysinger7031f622006-05-08 03:20:50 +0000276 return bytes - (sizeof(packet.ip) + sizeof(packet.udp));
Mike Frysinger7031f622006-05-08 03:20:50 +0000277}