blob: b8190ba43ef694dd4a19d98f31c9d9cfd4faf357 [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);
Mike Frysinger7031f622006-05-08 03:20:50 +000051 add_option_string(packet->options, client_config.vendorclass);
52}
53
54
55/* Add a parameter request list for stubborn DHCP servers. Pull the data
56 * from the struct in options.c. Don't do bounds checking here because it
57 * goes towards the head of the packet. */
58static void add_requests(struct dhcpMessage *packet)
59{
Denis Vlasenko19183682007-12-10 07:03:38 +000060 uint8_t c;
Mike Frysinger7031f622006-05-08 03:20:50 +000061 int end = end_option(packet->options);
62 int i, len = 0;
63
64 packet->options[end + OPT_CODE] = DHCP_PARAM_REQ;
Denis Vlasenko19183682007-12-10 07:03:38 +000065 for (i = 0; (c = dhcp_options[i].code) != 0; i++) {
66 if (dhcp_options[i].flags & OPTION_REQ
67 || (client_config.opt_mask[c >> 3] & (1 << (c & 7)))
68 ) {
69 packet->options[end + OPT_DATA + len++] = c;
70 }
71 }
Mike Frysinger7031f622006-05-08 03:20:50 +000072 packet->options[end + OPT_LEN] = len;
73 packet->options[end + OPT_DATA + len] = DHCP_END;
74
75}
76
Denis Vlasenko223bc972007-11-22 00:58:49 +000077#if ENABLE_FEATURE_UDHCPC_ARPING
78/* Unicast a DHCP decline message */
79int send_decline(uint32_t xid, uint32_t server)
80{
81 struct dhcpMessage packet;
82
83 init_packet(&packet, DHCPDECLINE);
84 packet.xid = xid;
85 add_requests(&packet);
86
87 bb_info_msg("Sending decline...");
88
Denis Vlasenkofff145d2007-12-20 21:11:38 +000089 return udhcp_send_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
Denis Vlasenko223bc972007-11-22 00:58:49 +000090 SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);
91}
92#endif
Mike Frysinger7031f622006-05-08 03:20:50 +000093
94/* Broadcast a DHCP discover packet to the network, with an optionally requested IP */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000095int send_discover(uint32_t xid, uint32_t requested)
Mike Frysinger7031f622006-05-08 03:20:50 +000096{
97 struct dhcpMessage packet;
98
99 init_packet(&packet, DHCPDISCOVER);
100 packet.xid = xid;
101 if (requested)
102 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
103
Denis Vlasenko35ff7462007-11-28 19:23:12 +0000104 /* Explicitly saying that we want RFC-compliant packets helps
105 * some buggy DHCP servers to NOT send bigger packets */
106 add_simple_option(packet.options, DHCP_MAX_SIZE, htons(576));
Mike Frysinger7031f622006-05-08 03:20:50 +0000107 add_requests(&packet);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000108 bb_info_msg("Sending discover...");
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000109 return udhcp_send_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000110 SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);
Mike Frysinger7031f622006-05-08 03:20:50 +0000111}
112
113
114/* Broadcasts a DHCP request message */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000115int send_selecting(uint32_t xid, uint32_t server, uint32_t requested)
Mike Frysinger7031f622006-05-08 03:20:50 +0000116{
117 struct dhcpMessage packet;
118 struct in_addr addr;
119
120 init_packet(&packet, DHCPREQUEST);
121 packet.xid = xid;
122
123 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
124 add_simple_option(packet.options, DHCP_SERVER_ID, server);
125
126 add_requests(&packet);
127 addr.s_addr = requested;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000128 bb_info_msg("Sending select for %s...", inet_ntoa(addr));
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000129 return udhcp_send_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
Mike Frysinger7031f622006-05-08 03:20:50 +0000130 SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);
131}
132
133
134/* Unicasts or broadcasts a DHCP renew message */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000135int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr)
Mike Frysinger7031f622006-05-08 03:20:50 +0000136{
137 struct dhcpMessage packet;
Mike Frysinger7031f622006-05-08 03:20:50 +0000138
139 init_packet(&packet, DHCPREQUEST);
140 packet.xid = xid;
141 packet.ciaddr = ciaddr;
142
143 add_requests(&packet);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000144 bb_info_msg("Sending renew...");
Mike Frysinger7031f622006-05-08 03:20:50 +0000145 if (server)
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000146 return udhcp_send_kernel_packet(&packet, ciaddr, CLIENT_PORT, server, SERVER_PORT);
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000147
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000148 return udhcp_send_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
Mike Frysinger7031f622006-05-08 03:20:50 +0000149 SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);
Mike Frysinger7031f622006-05-08 03:20:50 +0000150}
151
152
153/* Unicasts a DHCP release message */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000154int send_release(uint32_t server, uint32_t ciaddr)
Mike Frysinger7031f622006-05-08 03:20:50 +0000155{
156 struct dhcpMessage packet;
157
158 init_packet(&packet, DHCPRELEASE);
159 packet.xid = random_xid();
160 packet.ciaddr = ciaddr;
161
162 add_simple_option(packet.options, DHCP_REQUESTED_IP, ciaddr);
163 add_simple_option(packet.options, DHCP_SERVER_ID, server);
164
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000165 bb_info_msg("Sending release...");
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000166 return udhcp_send_kernel_packet(&packet, ciaddr, CLIENT_PORT, server, SERVER_PORT);
Mike Frysinger7031f622006-05-08 03:20:50 +0000167}
168
169
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000170/* Returns -1 on errors that are fatal for the socket, -2 for those that aren't */
Mike Frysinger7031f622006-05-08 03:20:50 +0000171int get_raw_packet(struct dhcpMessage *payload, int fd)
172{
173 int bytes;
174 struct udp_dhcp_packet packet;
Mike Frysinger7031f622006-05-08 03:20:50 +0000175 uint16_t check;
176
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000177 memset(&packet, 0, sizeof(packet));
178 bytes = safe_read(fd, &packet, sizeof(packet));
Mike Frysinger7031f622006-05-08 03:20:50 +0000179 if (bytes < 0) {
Denis Vlasenkoa9595882006-09-29 21:30:43 +0000180 DEBUG("Cannot read on raw listening socket - ignoring");
Denis Vlasenko6884f662007-11-23 00:08:54 +0000181 sleep(1); /* possible down interface, looping condition */
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000182 return bytes; /* returns -1 */
Mike Frysinger7031f622006-05-08 03:20:50 +0000183 }
184
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000185 if (bytes < (int) (sizeof(packet.ip) + sizeof(packet.udp))) {
186 DEBUG("Packet is too short, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000187 return -2;
188 }
189
190 if (bytes < ntohs(packet.ip.tot_len)) {
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000191 /* packet is bigger than sizeof(packet), we did partial read */
192 DEBUG("Oversized packet, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000193 return -2;
194 }
195
196 /* ignore any extra garbage bytes */
197 bytes = ntohs(packet.ip.tot_len);
198
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000199 /* make sure its the right packet for us, and that it passes sanity checks */
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000200 if (packet.ip.protocol != IPPROTO_UDP || packet.ip.version != IPVERSION
Denis Vlasenko6884f662007-11-23 00:08:54 +0000201 || packet.ip.ihl != (sizeof(packet.ip) >> 2)
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000202 || packet.udp.dest != htons(CLIENT_PORT)
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000203 /* || bytes > (int) sizeof(packet) - can't happen */
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000204 || ntohs(packet.udp.len) != (uint16_t)(bytes - sizeof(packet.ip))
205 ) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000206 DEBUG("Unrelated/bogus packet");
Mike Frysinger7031f622006-05-08 03:20:50 +0000207 return -2;
208 }
209
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000210 /* verify IP checksum */
Mike Frysinger7031f622006-05-08 03:20:50 +0000211 check = packet.ip.check;
212 packet.ip.check = 0;
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000213 if (check != udhcp_checksum(&packet.ip, sizeof(packet.ip))) {
214 DEBUG("Bad IP header checksum, ignoring");
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000215 return -2;
Mike Frysinger7031f622006-05-08 03:20:50 +0000216 }
217
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000218 /* verify UDP checksum. IP header has to be modified for this */
219 memset(&packet.ip, 0, offsetof(struct iphdr, protocol));
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000220 /* ip.xx fields which are not memset: protocol, check, saddr, daddr */
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000221 packet.ip.tot_len = packet.udp.len; /* yes, this is needed */
Mike Frysinger7031f622006-05-08 03:20:50 +0000222 check = packet.udp.check;
223 packet.udp.check = 0;
Rob Landley3f785612006-05-28 01:06:36 +0000224 if (check && check != udhcp_checksum(&packet, bytes)) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000225 bb_error_msg("packet with bad UDP checksum received, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000226 return -2;
227 }
228
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000229 memcpy(payload, &packet.data, bytes - (sizeof(packet.ip) + sizeof(packet.udp)));
Mike Frysinger7031f622006-05-08 03:20:50 +0000230
Denis Vlasenko6884f662007-11-23 00:08:54 +0000231 if (payload->cookie != htonl(DHCP_MAGIC)) {
Denis Vlasenko8e5b6f52007-12-24 17:32:22 +0000232 bb_error_msg("received bogus message (bad magic), ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000233 return -2;
234 }
Denis Vlasenkofff145d2007-12-20 21:11:38 +0000235 DEBUG("Got valid DHCP packet");
Mike Frysinger7031f622006-05-08 03:20:50 +0000236 return bytes - (sizeof(packet.ip) + sizeof(packet.udp));
Mike Frysinger7031f622006-05-08 03:20:50 +0000237}