blob: 29d0d9a1d7a12a2c9618ec504d4bc915404599be [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 */
10
Mike Frysinger7031f622006-05-08 03:20:50 +000011#include <features.h>
Denis Vlasenko83e5d6f2006-12-18 21:49:06 +000012#if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined _NEWLIB_VERSION
Mike Frysinger7031f622006-05-08 03:20:50 +000013#include <netpacket/packet.h>
14#include <net/ethernet.h>
15#else
16#include <asm/types.h>
17#include <linux/if_packet.h>
18#include <linux/if_ether.h>
19#endif
Mike Frysinger7031f622006-05-08 03:20:50 +000020
Mike Frysinger7031f622006-05-08 03:20:50 +000021#include "common.h"
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000022#include "dhcpd.h"
23#include "dhcpc.h"
24#include "options.h"
Mike Frysinger7031f622006-05-08 03:20:50 +000025
26
27/* Create a random xid */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000028uint32_t random_xid(void)
Mike Frysinger7031f622006-05-08 03:20:50 +000029{
Denis Vlasenkobd7bb292007-06-17 23:40:26 +000030 static smallint initialized;
Mike Frysinger7031f622006-05-08 03:20:50 +000031
Denis Vlasenkobd7bb292007-06-17 23:40:26 +000032 if (!initialized) {
33 srand(monotonic_us());
34 initialized = 1;
Mike Frysinger7031f622006-05-08 03:20:50 +000035 }
36 return rand();
37}
38
39
40/* initialize a packet with the proper defaults */
41static void init_packet(struct dhcpMessage *packet, char type)
42{
Rob Landley3f785612006-05-28 01:06:36 +000043 udhcp_init_header(packet, type);
Mike Frysinger7031f622006-05-08 03:20:50 +000044 memcpy(packet->chaddr, client_config.arp, 6);
45 if (client_config.clientid)
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000046 add_option_string(packet->options, client_config.clientid);
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000047 if (client_config.hostname)
48 add_option_string(packet->options, client_config.hostname);
49 if (client_config.fqdn)
50 add_option_string(packet->options, client_config.fqdn);
Denis Vlasenkoca9635b2008-01-25 19:27:08 +000051 if ((type != DHCPDECLINE) && (type != DHCPRELEASE))
52 add_option_string(packet->options, client_config.vendorclass);
Mike Frysinger7031f622006-05-08 03:20:50 +000053}
54
55
56/* Add a parameter request list for stubborn DHCP servers. Pull the data
57 * from the struct in options.c. Don't do bounds checking here because it
58 * goes towards the head of the packet. */
Denis Vlasenkoca9635b2008-01-25 19:27:08 +000059static void add_param_req_option(struct dhcpMessage *packet)
Mike Frysinger7031f622006-05-08 03:20:50 +000060{
Denis Vlasenko19183682007-12-10 07:03:38 +000061 uint8_t c;
Mike Frysinger7031f622006-05-08 03:20:50 +000062 int end = end_option(packet->options);
63 int i, len = 0;
64
65 packet->options[end + OPT_CODE] = DHCP_PARAM_REQ;
Denis Vlasenko19183682007-12-10 07:03:38 +000066 for (i = 0; (c = dhcp_options[i].code) != 0; i++) {
Denis Vlasenkoca9635b2008-01-25 19:27:08 +000067 if ((dhcp_options[i].flags & OPTION_REQ)
Denis Vlasenko19183682007-12-10 07:03:38 +000068 || (client_config.opt_mask[c >> 3] & (1 << (c & 7)))
69 ) {
Denis Vlasenkoca9635b2008-01-25 19:27:08 +000070 packet->options[end + OPT_DATA + len] = c;
71 len++;
Denis Vlasenko19183682007-12-10 07:03:38 +000072 }
73 }
Mike Frysinger7031f622006-05-08 03:20:50 +000074 packet->options[end + OPT_LEN] = len;
75 packet->options[end + OPT_DATA + len] = DHCP_END;
Mike Frysinger7031f622006-05-08 03:20:50 +000076}
77
Denis Vlasenkoca9635b2008-01-25 19:27:08 +000078
Denis Vlasenko223bc972007-11-22 00:58:49 +000079#if ENABLE_FEATURE_UDHCPC_ARPING
80/* Unicast a DHCP decline message */
Denis Vlasenkoca9635b2008-01-25 19:27:08 +000081int send_decline(uint32_t xid, uint32_t server, uint32_t requested)
Denis Vlasenko223bc972007-11-22 00:58:49 +000082{
83 struct dhcpMessage packet;
84
85 init_packet(&packet, DHCPDECLINE);
86 packet.xid = xid;
Denis Vlasenkoca9635b2008-01-25 19:27:08 +000087 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
88 add_simple_option(packet.options, DHCP_SERVER_ID, server);
Denis Vlasenko223bc972007-11-22 00:58:49 +000089
90 bb_info_msg("Sending decline...");
91
Denis Vlasenkofff145d2007-12-20 21:11:38 +000092 return udhcp_send_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
Denis Vlasenko223bc972007-11-22 00:58:49 +000093 SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);
94}
95#endif
Mike Frysinger7031f622006-05-08 03:20:50 +000096
97/* Broadcast a DHCP discover packet to the network, with an optionally requested IP */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000098int send_discover(uint32_t xid, uint32_t requested)
Mike Frysinger7031f622006-05-08 03:20:50 +000099{
100 struct dhcpMessage packet;
101
102 init_packet(&packet, DHCPDISCOVER);
103 packet.xid = xid;
104 if (requested)
105 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
106
Denis Vlasenko35ff7462007-11-28 19:23:12 +0000107 /* Explicitly saying that we want RFC-compliant packets helps
108 * some buggy DHCP servers to NOT send bigger packets */
109 add_simple_option(packet.options, DHCP_MAX_SIZE, htons(576));
Denis Vlasenkoca9635b2008-01-25 19:27:08 +0000110 add_param_req_option(&packet);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000111 bb_info_msg("Sending discover...");
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000112 return udhcp_send_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000113 SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);
Mike Frysinger7031f622006-05-08 03:20:50 +0000114}
115
116
117/* Broadcasts a DHCP request message */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000118int send_selecting(uint32_t xid, uint32_t server, uint32_t requested)
Mike Frysinger7031f622006-05-08 03:20:50 +0000119{
120 struct dhcpMessage packet;
121 struct in_addr addr;
122
123 init_packet(&packet, DHCPREQUEST);
124 packet.xid = xid;
125
126 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
127 add_simple_option(packet.options, DHCP_SERVER_ID, server);
128
Denis Vlasenkoca9635b2008-01-25 19:27:08 +0000129 add_param_req_option(&packet);
Mike Frysinger7031f622006-05-08 03:20:50 +0000130 addr.s_addr = requested;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000131 bb_info_msg("Sending select for %s...", inet_ntoa(addr));
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000132 return udhcp_send_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
Mike Frysinger7031f622006-05-08 03:20:50 +0000133 SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);
134}
135
136
137/* Unicasts or broadcasts a DHCP renew message */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000138int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr)
Mike Frysinger7031f622006-05-08 03:20:50 +0000139{
140 struct dhcpMessage packet;
Mike Frysinger7031f622006-05-08 03:20:50 +0000141
142 init_packet(&packet, DHCPREQUEST);
143 packet.xid = xid;
144 packet.ciaddr = ciaddr;
145
Denis Vlasenkoca9635b2008-01-25 19:27:08 +0000146 add_param_req_option(&packet);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000147 bb_info_msg("Sending renew...");
Mike Frysinger7031f622006-05-08 03:20:50 +0000148 if (server)
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000149 return udhcp_send_kernel_packet(&packet, ciaddr, CLIENT_PORT, server, SERVER_PORT);
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000150
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000151 return udhcp_send_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
Mike Frysinger7031f622006-05-08 03:20:50 +0000152 SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);
Mike Frysinger7031f622006-05-08 03:20:50 +0000153}
154
155
156/* Unicasts a DHCP release message */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000157int send_release(uint32_t server, uint32_t ciaddr)
Mike Frysinger7031f622006-05-08 03:20:50 +0000158{
159 struct dhcpMessage packet;
160
161 init_packet(&packet, DHCPRELEASE);
162 packet.xid = random_xid();
163 packet.ciaddr = ciaddr;
164
Mike Frysinger7031f622006-05-08 03:20:50 +0000165 add_simple_option(packet.options, DHCP_SERVER_ID, server);
166
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000167 bb_info_msg("Sending release...");
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000168 return udhcp_send_kernel_packet(&packet, ciaddr, CLIENT_PORT, server, SERVER_PORT);
Mike Frysinger7031f622006-05-08 03:20:50 +0000169}
170
171
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000172/* Returns -1 on errors that are fatal for the socket, -2 for those that aren't */
Mike Frysinger7031f622006-05-08 03:20:50 +0000173int get_raw_packet(struct dhcpMessage *payload, int fd)
174{
175 int bytes;
176 struct udp_dhcp_packet packet;
Mike Frysinger7031f622006-05-08 03:20:50 +0000177 uint16_t check;
178
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000179 memset(&packet, 0, sizeof(packet));
180 bytes = safe_read(fd, &packet, sizeof(packet));
Mike Frysinger7031f622006-05-08 03:20:50 +0000181 if (bytes < 0) {
Denis Vlasenkoa9595882006-09-29 21:30:43 +0000182 DEBUG("Cannot read on raw listening socket - ignoring");
Denis Vlasenko6884f662007-11-23 00:08:54 +0000183 sleep(1); /* possible down interface, looping condition */
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000184 return bytes; /* returns -1 */
Mike Frysinger7031f622006-05-08 03:20:50 +0000185 }
186
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000187 if (bytes < (int) (sizeof(packet.ip) + sizeof(packet.udp))) {
188 DEBUG("Packet is too short, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000189 return -2;
190 }
191
192 if (bytes < ntohs(packet.ip.tot_len)) {
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000193 /* packet is bigger than sizeof(packet), we did partial read */
194 DEBUG("Oversized packet, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000195 return -2;
196 }
197
198 /* ignore any extra garbage bytes */
199 bytes = ntohs(packet.ip.tot_len);
200
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000201 /* make sure its the right packet for us, and that it passes sanity checks */
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000202 if (packet.ip.protocol != IPPROTO_UDP || packet.ip.version != IPVERSION
Denis Vlasenko6884f662007-11-23 00:08:54 +0000203 || packet.ip.ihl != (sizeof(packet.ip) >> 2)
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000204 || packet.udp.dest != htons(CLIENT_PORT)
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000205 /* || bytes > (int) sizeof(packet) - can't happen */
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000206 || ntohs(packet.udp.len) != (uint16_t)(bytes - sizeof(packet.ip))
207 ) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000208 DEBUG("Unrelated/bogus packet");
Mike Frysinger7031f622006-05-08 03:20:50 +0000209 return -2;
210 }
211
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000212 /* verify IP checksum */
Mike Frysinger7031f622006-05-08 03:20:50 +0000213 check = packet.ip.check;
214 packet.ip.check = 0;
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000215 if (check != udhcp_checksum(&packet.ip, sizeof(packet.ip))) {
216 DEBUG("Bad IP header checksum, ignoring");
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000217 return -2;
Mike Frysinger7031f622006-05-08 03:20:50 +0000218 }
219
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000220 /* verify UDP checksum. IP header has to be modified for this */
221 memset(&packet.ip, 0, offsetof(struct iphdr, protocol));
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000222 /* ip.xx fields which are not memset: protocol, check, saddr, daddr */
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000223 packet.ip.tot_len = packet.udp.len; /* yes, this is needed */
Mike Frysinger7031f622006-05-08 03:20:50 +0000224 check = packet.udp.check;
225 packet.udp.check = 0;
Rob Landley3f785612006-05-28 01:06:36 +0000226 if (check && check != udhcp_checksum(&packet, bytes)) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000227 bb_error_msg("packet with bad UDP checksum received, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000228 return -2;
229 }
230
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000231 memcpy(payload, &packet.data, bytes - (sizeof(packet.ip) + sizeof(packet.udp)));
Mike Frysinger7031f622006-05-08 03:20:50 +0000232
Denis Vlasenko6884f662007-11-23 00:08:54 +0000233 if (payload->cookie != htonl(DHCP_MAGIC)) {
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000234 bb_error_msg("received bogus message (bad magic), ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000235 return -2;
236 }
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000237 DEBUG("Got valid DHCP packet");
Mike Frysinger7031f622006-05-08 03:20:50 +0000238 return bytes - (sizeof(packet.ip) + sizeof(packet.udp));
Mike Frysinger7031f622006-05-08 03:20:50 +0000239}