blob: e7eeb58b120d77a76a5b118fc17367e7a8c7f588 [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{
60 int end = end_option(packet->options);
61 int i, len = 0;
62
63 packet->options[end + OPT_CODE] = DHCP_PARAM_REQ;
64 for (i = 0; dhcp_options[i].code; i++)
65 if (dhcp_options[i].flags & OPTION_REQ)
66 packet->options[end + OPT_DATA + len++] = dhcp_options[i].code;
67 packet->options[end + OPT_LEN] = len;
68 packet->options[end + OPT_DATA + len] = DHCP_END;
69
70}
71
Denis Vlasenko223bc972007-11-22 00:58:49 +000072#if ENABLE_FEATURE_UDHCPC_ARPING
73/* Unicast a DHCP decline message */
74int send_decline(uint32_t xid, uint32_t server)
75{
76 struct dhcpMessage packet;
77
78 init_packet(&packet, DHCPDECLINE);
79 packet.xid = xid;
80 add_requests(&packet);
81
82 bb_info_msg("Sending decline...");
83
84 return udhcp_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
85 SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);
86}
87#endif
Mike Frysinger7031f622006-05-08 03:20:50 +000088
89/* Broadcast a DHCP discover packet to the network, with an optionally requested IP */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000090int send_discover(uint32_t xid, uint32_t requested)
Mike Frysinger7031f622006-05-08 03:20:50 +000091{
92 struct dhcpMessage packet;
93
94 init_packet(&packet, DHCPDISCOVER);
95 packet.xid = xid;
96 if (requested)
97 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
98
99 add_requests(&packet);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000100 bb_info_msg("Sending discover...");
Rob Landley3f785612006-05-28 01:06:36 +0000101 return udhcp_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000102 SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);
Mike Frysinger7031f622006-05-08 03:20:50 +0000103}
104
105
106/* Broadcasts a DHCP request message */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000107int send_selecting(uint32_t xid, uint32_t server, uint32_t requested)
Mike Frysinger7031f622006-05-08 03:20:50 +0000108{
109 struct dhcpMessage packet;
110 struct in_addr addr;
111
112 init_packet(&packet, DHCPREQUEST);
113 packet.xid = xid;
114
115 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
116 add_simple_option(packet.options, DHCP_SERVER_ID, server);
117
118 add_requests(&packet);
119 addr.s_addr = requested;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000120 bb_info_msg("Sending select for %s...", inet_ntoa(addr));
Rob Landley3f785612006-05-28 01:06:36 +0000121 return udhcp_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
Mike Frysinger7031f622006-05-08 03:20:50 +0000122 SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);
123}
124
125
126/* Unicasts or broadcasts a DHCP renew message */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000127int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr)
Mike Frysinger7031f622006-05-08 03:20:50 +0000128{
129 struct dhcpMessage packet;
Mike Frysinger7031f622006-05-08 03:20:50 +0000130
131 init_packet(&packet, DHCPREQUEST);
132 packet.xid = xid;
133 packet.ciaddr = ciaddr;
134
135 add_requests(&packet);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000136 bb_info_msg("Sending renew...");
Mike Frysinger7031f622006-05-08 03:20:50 +0000137 if (server)
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000138 return udhcp_kernel_packet(&packet, ciaddr, CLIENT_PORT, server, SERVER_PORT);
139
140 return udhcp_raw_packet(&packet, INADDR_ANY, CLIENT_PORT, INADDR_BROADCAST,
Mike Frysinger7031f622006-05-08 03:20:50 +0000141 SERVER_PORT, MAC_BCAST_ADDR, client_config.ifindex);
Mike Frysinger7031f622006-05-08 03:20:50 +0000142}
143
144
145/* Unicasts a DHCP release message */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000146int send_release(uint32_t server, uint32_t ciaddr)
Mike Frysinger7031f622006-05-08 03:20:50 +0000147{
148 struct dhcpMessage packet;
149
150 init_packet(&packet, DHCPRELEASE);
151 packet.xid = random_xid();
152 packet.ciaddr = ciaddr;
153
154 add_simple_option(packet.options, DHCP_REQUESTED_IP, ciaddr);
155 add_simple_option(packet.options, DHCP_SERVER_ID, server);
156
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000157 bb_info_msg("Sending release...");
Rob Landley3f785612006-05-28 01:06:36 +0000158 return udhcp_kernel_packet(&packet, ciaddr, CLIENT_PORT, server, SERVER_PORT);
Mike Frysinger7031f622006-05-08 03:20:50 +0000159}
160
161
162/* return -1 on errors that are fatal for the socket, -2 for those that aren't */
163int get_raw_packet(struct dhcpMessage *payload, int fd)
164{
165 int bytes;
166 struct udp_dhcp_packet packet;
167 uint32_t source, dest;
168 uint16_t check;
169
170 memset(&packet, 0, sizeof(struct udp_dhcp_packet));
171 bytes = read(fd, &packet, sizeof(struct udp_dhcp_packet));
172 if (bytes < 0) {
Denis Vlasenkoa9595882006-09-29 21:30:43 +0000173 DEBUG("Cannot read on raw listening socket - ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000174 usleep(500000); /* possible down interface, looping condition */
175 return -1;
176 }
177
178 if (bytes < (int) (sizeof(struct iphdr) + sizeof(struct udphdr))) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000179 DEBUG("Message too short, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000180 return -2;
181 }
182
183 if (bytes < ntohs(packet.ip.tot_len)) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000184 DEBUG("Truncated packet");
Mike Frysinger7031f622006-05-08 03:20:50 +0000185 return -2;
186 }
187
188 /* ignore any extra garbage bytes */
189 bytes = ntohs(packet.ip.tot_len);
190
191 /* Make sure its the right packet for us, and that it passes sanity checks */
Denis Vlasenko5a3395b2006-11-18 19:51:32 +0000192 if (packet.ip.protocol != IPPROTO_UDP || packet.ip.version != IPVERSION
193 || packet.ip.ihl != sizeof(packet.ip) >> 2
194 || packet.udp.dest != htons(CLIENT_PORT)
195 || bytes > (int) sizeof(struct udp_dhcp_packet)
196 || ntohs(packet.udp.len) != (uint16_t)(bytes - sizeof(packet.ip))
197 ) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000198 DEBUG("Unrelated/bogus packet");
Mike Frysinger7031f622006-05-08 03:20:50 +0000199 return -2;
200 }
201
202 /* check IP checksum */
203 check = packet.ip.check;
204 packet.ip.check = 0;
Rob Landley3f785612006-05-28 01:06:36 +0000205 if (check != udhcp_checksum(&(packet.ip), sizeof(packet.ip))) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000206 DEBUG("bad IP header checksum, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000207 return -1;
208 }
209
210 /* verify the UDP checksum by replacing the header with a psuedo header */
211 source = packet.ip.saddr;
212 dest = packet.ip.daddr;
213 check = packet.udp.check;
214 packet.udp.check = 0;
215 memset(&packet.ip, 0, sizeof(packet.ip));
216
217 packet.ip.protocol = IPPROTO_UDP;
218 packet.ip.saddr = source;
219 packet.ip.daddr = dest;
220 packet.ip.tot_len = packet.udp.len; /* cheat on the psuedo-header */
Rob Landley3f785612006-05-28 01:06:36 +0000221 if (check && check != udhcp_checksum(&packet, bytes)) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000222 bb_error_msg("packet with bad UDP checksum received, ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000223 return -2;
224 }
225
226 memcpy(payload, &(packet.data), bytes - (sizeof(packet.ip) + sizeof(packet.udp)));
227
228 if (ntohl(payload->cookie) != DHCP_MAGIC) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000229 bb_error_msg("received bogus message (bad magic) - ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000230 return -2;
231 }
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000232 DEBUG("oooooh!!! got some!");
Mike Frysinger7031f622006-05-08 03:20:50 +0000233 return bytes - (sizeof(packet.ip) + sizeof(packet.udp));
Mike Frysinger7031f622006-05-08 03:20:50 +0000234}