blob: d51d8b82f669c5d749c982d631530ff6d0d8e80e [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenko6b24d532010-03-22 13:42:13 +01002/*
Mike Frysinger7031f622006-05-08 03:20:50 +00003 * udhcp DHCP client
4 *
5 * Russ Dill <Russ.Dill@asu.edu> July 2001
6 *
Denys Vlasenko6b24d532010-03-22 13:42:13 +01007 * 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.
Mike Frysinger7031f622006-05-08 03:20:50 +000020 */
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +000021#include <syslog.h>
Denis Vlasenko1caca342007-08-02 10:14:29 +000022/* Override ENABLE_FEATURE_PIDFILE - ifupdown needs our pidfile to always exist */
23#define WANT_PIDFILE 1
Mike Frysinger7031f622006-05-08 03:20:50 +000024#include "common.h"
25#include "dhcpd.h"
26#include "dhcpc.h"
27#include "options.h"
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000028
Denys Vlasenko6b24d532010-03-22 13:42:13 +010029#include <asm/types.h>
30#if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined(_NEWLIB_VERSION)
31# include <netpacket/packet.h>
32# include <net/ethernet.h>
33#else
34# include <linux/if_packet.h>
35# include <linux/if_ether.h>
36#endif
37#include <linux/filter.h>
38
Mike Frysinger7031f622006-05-08 03:20:50 +000039
Denis Vlasenkofbd29182007-04-07 01:05:47 +000040static int sockfd = -1;
Mike Frysinger7031f622006-05-08 03:20:50 +000041
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020042#define LISTEN_NONE 0
Mike Frysinger7031f622006-05-08 03:20:50 +000043#define LISTEN_KERNEL 1
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020044#define LISTEN_RAW 2
Denis Vlasenkofbd29182007-04-07 01:05:47 +000045static smallint listen_mode;
46
Denys Vlasenko13ca4b12009-07-19 04:07:21 +020047/* initial state: (re)start DHCP negotiation */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +000048#define INIT_SELECTING 0
Denys Vlasenko13ca4b12009-07-19 04:07:21 +020049/* discover was sent, DHCPOFFER reply received */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +000050#define REQUESTING 1
Denys Vlasenko13ca4b12009-07-19 04:07:21 +020051/* select/renew was sent, DHCPACK reply received */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +000052#define BOUND 2
Denys Vlasenko7d6a7912009-07-19 04:24:23 +020053/* half of lease passed, want to renew it by sending unicast renew requests */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +000054#define RENEWING 3
Denys Vlasenko13ca4b12009-07-19 04:07:21 +020055/* renew requests were not answered, lease is almost over, send broadcast renew */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +000056#define REBINDING 4
Denys Vlasenko13ca4b12009-07-19 04:07:21 +020057/* manually requested renew (SIGUSR1) */
58#define RENEW_REQUESTED 5
59/* release, possibly manually requested (SIGUSR2) */
60#define RELEASED 6
Denis Vlasenkofbd29182007-04-07 01:05:47 +000061static smallint state;
Mike Frysinger7031f622006-05-08 03:20:50 +000062
Denis Vlasenkodeabacd2007-09-30 17:55:43 +000063/* struct client_config_t client_config is in bb_common_bufsiz1 */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +000064
Mike Frysinger7031f622006-05-08 03:20:50 +000065
Denys Vlasenko501e35c2010-03-22 13:43:12 +010066/* Create a random xid */
67static uint32_t random_xid(void)
68{
69 static smallint initialized;
70
71 if (!initialized) {
72 srand(monotonic_us());
73 initialized = 1;
74 }
75 return rand();
76}
77
78/* Initialize the packet with the proper defaults */
79static void init_packet(struct dhcp_packet *packet, char type)
80{
81 udhcp_init_header(packet, type);
82 memcpy(packet->chaddr, client_config.client_mac, 6);
83 if (client_config.clientid)
84 add_option_string(packet->options, client_config.clientid);
85 if (client_config.hostname)
86 add_option_string(packet->options, client_config.hostname);
87 if (client_config.fqdn)
88 add_option_string(packet->options, client_config.fqdn);
89 if (type != DHCPDECLINE
90 && type != DHCPRELEASE
91 && client_config.vendorclass
92 ) {
93 add_option_string(packet->options, client_config.vendorclass);
94 }
95}
96
97/* Add a parameter request list for stubborn DHCP servers. Pull the data
98 * from the struct in options.c. Don't do bounds checking here because it
99 * goes towards the head of the packet. */
100static void add_param_req_option(struct dhcp_packet *packet)
101{
102 uint8_t c;
103 int end = end_option(packet->options);
104 int i, len = 0;
105
106 for (i = 0; (c = dhcp_options[i].code) != 0; i++) {
107 if (( (dhcp_options[i].flags & OPTION_REQ)
108 && !client_config.no_default_options
109 )
110 || (client_config.opt_mask[c >> 3] & (1 << (c & 7)))
111 ) {
112 packet->options[end + OPT_DATA + len] = c;
113 len++;
114 }
115 }
116 if (len) {
117 packet->options[end + OPT_CODE] = DHCP_PARAM_REQ;
118 packet->options[end + OPT_LEN] = len;
119 packet->options[end + OPT_DATA + len] = DHCP_END;
120 }
121}
122
123/* RFC 2131
124 * 4.4.4 Use of broadcast and unicast
125 *
126 * The DHCP client broadcasts DHCPDISCOVER, DHCPREQUEST and DHCPINFORM
127 * messages, unless the client knows the address of a DHCP server.
128 * The client unicasts DHCPRELEASE messages to the server. Because
129 * the client is declining the use of the IP address supplied by the server,
130 * the client broadcasts DHCPDECLINE messages.
131 *
132 * When the DHCP client knows the address of a DHCP server, in either
133 * INIT or REBOOTING state, the client may use that address
134 * in the DHCPDISCOVER or DHCPREQUEST rather than the IP broadcast address.
135 * The client may also use unicast to send DHCPINFORM messages
136 * to a known DHCP server. If the client receives no response to DHCP
137 * messages sent to the IP address of a known DHCP server, the DHCP
138 * client reverts to using the IP broadcast address.
139 */
140
141static int raw_bcast_from_client_config_ifindex(struct dhcp_packet *packet)
142{
143 return udhcp_send_raw_packet(packet,
144 /*src*/ INADDR_ANY, CLIENT_PORT,
145 /*dst*/ INADDR_BROADCAST, SERVER_PORT, MAC_BCAST_ADDR,
146 client_config.ifindex);
147}
148
149/* Broadcast a DHCP discover packet to the network, with an optionally requested IP */
150static int send_discover(uint32_t xid, uint32_t requested)
151{
152 struct dhcp_packet packet;
153
154 init_packet(&packet, DHCPDISCOVER);
155 packet.xid = xid;
156 if (requested)
157 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
158 /* Explicitly saying that we want RFC-compliant packets helps
159 * some buggy DHCP servers to NOT send bigger packets */
160 add_simple_option(packet.options, DHCP_MAX_SIZE, htons(576));
161 add_param_req_option(&packet);
162
163 bb_info_msg("Sending discover...");
164 return raw_bcast_from_client_config_ifindex(&packet);
165}
166
167/* Broadcast a DHCP request message */
168/* RFC 2131 3.1 paragraph 3:
169 * "The client _broadcasts_ a DHCPREQUEST message..."
170 */
171static int send_select(uint32_t xid, uint32_t server, uint32_t requested)
172{
173 struct dhcp_packet packet;
174 struct in_addr addr;
175
176 init_packet(&packet, DHCPREQUEST);
177 packet.xid = xid;
178 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
179 add_simple_option(packet.options, DHCP_SERVER_ID, server);
180 add_param_req_option(&packet);
181
182 addr.s_addr = requested;
183 bb_info_msg("Sending select for %s...", inet_ntoa(addr));
184 return raw_bcast_from_client_config_ifindex(&packet);
185}
186
187/* Unicast or broadcast a DHCP renew message */
188static int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr)
189{
190 struct dhcp_packet packet;
191
192 init_packet(&packet, DHCPREQUEST);
193 packet.xid = xid;
194 packet.ciaddr = ciaddr;
195 add_param_req_option(&packet);
196
197 bb_info_msg("Sending renew...");
198 if (server)
199 return udhcp_send_kernel_packet(&packet,
200 ciaddr, CLIENT_PORT,
201 server, SERVER_PORT);
202 return raw_bcast_from_client_config_ifindex(&packet);
203}
204
205#if ENABLE_FEATURE_UDHCPC_ARPING
206/* Broadcast a DHCP decline message */
207static int send_decline(uint32_t xid, uint32_t server, uint32_t requested)
208{
209 struct dhcp_packet packet;
210
211 init_packet(&packet, DHCPDECLINE);
212 packet.xid = xid;
213 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
214 add_simple_option(packet.options, DHCP_SERVER_ID, server);
215
216 bb_info_msg("Sending decline...");
217 return raw_bcast_from_client_config_ifindex(&packet);
218}
219#endif
220
221/* Unicast a DHCP release message */
222static int send_release(uint32_t server, uint32_t ciaddr)
223{
224 struct dhcp_packet packet;
225
226 init_packet(&packet, DHCPRELEASE);
227 packet.xid = random_xid();
228 packet.ciaddr = ciaddr;
229
230 add_simple_option(packet.options, DHCP_SERVER_ID, server);
231
232 bb_info_msg("Sending release...");
233 return udhcp_send_kernel_packet(&packet, ciaddr, CLIENT_PORT, server, SERVER_PORT);
234}
235
236/* Returns -1 on errors that are fatal for the socket, -2 for those that aren't */
237static NOINLINE int udhcp_recv_raw_packet(struct dhcp_packet *dhcp_pkt, int fd)
238{
239 int bytes;
240 struct ip_udp_dhcp_packet packet;
241 uint16_t check;
242
243 memset(&packet, 0, sizeof(packet));
244 bytes = safe_read(fd, &packet, sizeof(packet));
245 if (bytes < 0) {
246 log1("Packet read error, ignoring");
247 /* NB: possible down interface, etc. Caller should pause. */
248 return bytes; /* returns -1 */
249 }
250
251 if (bytes < (int) (sizeof(packet.ip) + sizeof(packet.udp))) {
252 log1("Packet is too short, ignoring");
253 return -2;
254 }
255
256 if (bytes < ntohs(packet.ip.tot_len)) {
257 /* packet is bigger than sizeof(packet), we did partial read */
258 log1("Oversized packet, ignoring");
259 return -2;
260 }
261
262 /* ignore any extra garbage bytes */
263 bytes = ntohs(packet.ip.tot_len);
264
265 /* make sure its the right packet for us, and that it passes sanity checks */
266 if (packet.ip.protocol != IPPROTO_UDP || packet.ip.version != IPVERSION
267 || packet.ip.ihl != (sizeof(packet.ip) >> 2)
268 || packet.udp.dest != htons(CLIENT_PORT)
269 /* || bytes > (int) sizeof(packet) - can't happen */
270 || ntohs(packet.udp.len) != (uint16_t)(bytes - sizeof(packet.ip))
271 ) {
272 log1("Unrelated/bogus packet, ignoring");
273 return -2;
274 }
275
276 /* verify IP checksum */
277 check = packet.ip.check;
278 packet.ip.check = 0;
279 if (check != udhcp_checksum(&packet.ip, sizeof(packet.ip))) {
280 log1("Bad IP header checksum, ignoring");
281 return -2;
282 }
283
284 /* verify UDP checksum. IP header has to be modified for this */
285 memset(&packet.ip, 0, offsetof(struct iphdr, protocol));
286 /* ip.xx fields which are not memset: protocol, check, saddr, daddr */
287 packet.ip.tot_len = packet.udp.len; /* yes, this is needed */
288 check = packet.udp.check;
289 packet.udp.check = 0;
290 if (check && check != udhcp_checksum(&packet, bytes)) {
291 log1("Packet with bad UDP checksum received, ignoring");
292 return -2;
293 }
294
295 memcpy(dhcp_pkt, &packet.data, bytes - (sizeof(packet.ip) + sizeof(packet.udp)));
296
297 if (dhcp_pkt->cookie != htonl(DHCP_MAGIC)) {
298 bb_info_msg("Packet with bad magic, ignoring");
299 return -2;
300 }
301 log1("Got valid DHCP packet");
302 udhcp_dump_packet(dhcp_pkt);
303 return bytes - (sizeof(packet.ip) + sizeof(packet.udp));
304}
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100305
306static int udhcp_raw_socket(int ifindex)
307{
308 int fd;
309 struct sockaddr_ll sock;
310
311 /*
312 * Comment:
313 *
314 * I've selected not to see LL header, so BPF doesn't see it, too.
315 * The filter may also pass non-IP and non-ARP packets, but we do
316 * a more complete check when receiving the message in userspace.
317 *
318 * and filter shamelessly stolen from:
319 *
320 * http://www.flamewarmaster.de/software/dhcpclient/
321 *
322 * There are a few other interesting ideas on that page (look under
323 * "Motivation"). Use of netlink events is most interesting. Think
324 * of various network servers listening for events and reconfiguring.
325 * That would obsolete sending HUP signals and/or make use of restarts.
326 *
327 * Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>.
328 * License: GPL v2.
329 *
330 * TODO: make conditional?
331 */
332#define SERVER_AND_CLIENT_PORTS ((67 << 16) + 68)
333 static const struct sock_filter filter_instr[] = {
334 /* check for udp */
335 BPF_STMT(BPF_LD|BPF_B|BPF_ABS, 9),
336 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, IPPROTO_UDP, 2, 0), /* L5, L1, is UDP? */
337 /* ugly check for arp on ethernet-like and IPv4 */
338 BPF_STMT(BPF_LD|BPF_W|BPF_ABS, 2), /* L1: */
339 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, 0x08000604, 3, 4), /* L3, L4 */
340 /* skip IP header */
341 BPF_STMT(BPF_LDX|BPF_B|BPF_MSH, 0), /* L5: */
342 /* check udp source and destination ports */
343 BPF_STMT(BPF_LD|BPF_W|BPF_IND, 0),
344 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, SERVER_AND_CLIENT_PORTS, 0, 1), /* L3, L4 */
345 /* returns */
346 BPF_STMT(BPF_RET|BPF_K, 0x0fffffff ), /* L3: pass */
347 BPF_STMT(BPF_RET|BPF_K, 0), /* L4: reject */
348 };
349 static const struct sock_fprog filter_prog = {
350 .len = sizeof(filter_instr) / sizeof(filter_instr[0]),
351 /* casting const away: */
352 .filter = (struct sock_filter *) filter_instr,
353 };
354
355 log1("Opening raw socket on ifindex %d", ifindex); //log2?
356
357 fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP));
358 log1("Got raw socket fd %d", fd); //log2?
359
360 if (SERVER_PORT == 67 && CLIENT_PORT == 68) {
361 /* Use only if standard ports are in use */
362 /* Ignoring error (kernel may lack support for this) */
363 if (setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, &filter_prog,
364 sizeof(filter_prog)) >= 0)
365 log1("Attached filter to raw socket fd %d", fd); // log?
366 }
367
368 sock.sll_family = AF_PACKET;
369 sock.sll_protocol = htons(ETH_P_IP);
370 sock.sll_ifindex = ifindex;
371 xbind(fd, (struct sockaddr *) &sock, sizeof(sock));
372 log1("Created raw socket");
373
374 return fd;
375}
376
Mike Frysinger7031f622006-05-08 03:20:50 +0000377/* just a little helper */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000378static void change_listen_mode(int new_mode)
Mike Frysinger7031f622006-05-08 03:20:50 +0000379{
Denys Vlasenko4945ed32009-06-17 11:58:11 +0200380 log1("Entering listen mode: %s",
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200381 new_mode != LISTEN_NONE
382 ? (new_mode == LISTEN_KERNEL ? "kernel" : "raw")
383 : "none"
384 );
Denis Vlasenko517413f2008-12-10 11:16:47 +0000385
386 listen_mode = new_mode;
Denis Vlasenkofbd29182007-04-07 01:05:47 +0000387 if (sockfd >= 0) {
388 close(sockfd);
389 sockfd = -1;
390 }
Denis Vlasenko517413f2008-12-10 11:16:47 +0000391 if (new_mode == LISTEN_KERNEL)
392 sockfd = udhcp_listen_socket(/*INADDR_ANY,*/ CLIENT_PORT, client_config.interface);
393 else if (new_mode != LISTEN_NONE)
394 sockfd = udhcp_raw_socket(client_config.ifindex);
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100395 /* else LISTEN_NONE: sockfd stays closed */
Mike Frysinger7031f622006-05-08 03:20:50 +0000396}
397
Mike Frysinger7031f622006-05-08 03:20:50 +0000398/* perform a renew */
399static void perform_renew(void)
400{
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000401 bb_info_msg("Performing a DHCP renew");
Mike Frysinger7031f622006-05-08 03:20:50 +0000402 switch (state) {
403 case BOUND:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000404 change_listen_mode(LISTEN_KERNEL);
Mike Frysinger7031f622006-05-08 03:20:50 +0000405 case RENEWING:
406 case REBINDING:
407 state = RENEW_REQUESTED;
408 break;
409 case RENEW_REQUESTED: /* impatient are we? fine, square 1 */
Rob Landley3f785612006-05-28 01:06:36 +0000410 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +0000411 case REQUESTING:
412 case RELEASED:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000413 change_listen_mode(LISTEN_RAW);
Mike Frysinger7031f622006-05-08 03:20:50 +0000414 state = INIT_SELECTING;
415 break;
416 case INIT_SELECTING:
417 break;
418 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000419}
420
Mike Frysinger7031f622006-05-08 03:20:50 +0000421/* perform a release */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000422static void perform_release(uint32_t requested_ip, uint32_t server_addr)
Mike Frysinger7031f622006-05-08 03:20:50 +0000423{
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000424 char buffer[sizeof("255.255.255.255")];
Mike Frysinger7031f622006-05-08 03:20:50 +0000425 struct in_addr temp_addr;
426
427 /* send release packet */
428 if (state == BOUND || state == RENEWING || state == REBINDING) {
429 temp_addr.s_addr = server_addr;
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000430 strcpy(buffer, inet_ntoa(temp_addr));
Mike Frysinger7031f622006-05-08 03:20:50 +0000431 temp_addr.s_addr = requested_ip;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000432 bb_info_msg("Unicasting a release of %s to %s",
Mike Frysinger7031f622006-05-08 03:20:50 +0000433 inet_ntoa(temp_addr), buffer);
434 send_release(server_addr, requested_ip); /* unicast */
Rob Landley3f785612006-05-28 01:06:36 +0000435 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +0000436 }
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000437 bb_info_msg("Entering released state");
Mike Frysinger7031f622006-05-08 03:20:50 +0000438
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000439 change_listen_mode(LISTEN_NONE);
Mike Frysinger7031f622006-05-08 03:20:50 +0000440 state = RELEASED;
Mike Frysinger7031f622006-05-08 03:20:50 +0000441}
442
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000443#if BB_MMU
Mike Frysinger7031f622006-05-08 03:20:50 +0000444static void client_background(void)
445{
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000446 bb_daemonize(0);
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000447 logmode &= ~LOGMODE_STDIO;
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000448 /* rewrite pidfile, as our pid is different now */
Denis Vlasenko80edead2007-08-02 22:31:05 +0000449 write_pidfile(client_config.pidfile);
Mike Frysinger7031f622006-05-08 03:20:50 +0000450}
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000451#endif
Mike Frysinger7031f622006-05-08 03:20:50 +0000452
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000453static uint8_t* alloc_dhcp_option(int code, const char *str, int extra)
454{
455 uint8_t *storage;
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100456 int len = strnlen(str, 255);
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000457 storage = xzalloc(len + extra + OPT_DATA);
458 storage[OPT_CODE] = code;
459 storage[OPT_LEN] = len + extra;
460 memcpy(storage + extra + OPT_DATA, str, len);
461 return storage;
462}
463
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000464int udhcpc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000465int udhcpc_main(int argc UNUSED_PARAM, char **argv)
Mike Frysinger7031f622006-05-08 03:20:50 +0000466{
467 uint8_t *temp, *message;
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100468 const char *str_c, *str_V, *str_h, *str_F, *str_r;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000469 IF_FEATURE_UDHCP_PORT(char *str_P;)
Denis Vlasenko19183682007-12-10 07:03:38 +0000470 llist_t *list_O = NULL;
Denis Vlasenko68af8e72007-11-22 21:41:14 +0000471 int tryagain_timeout = 20;
472 int discover_timeout = 3;
473 int discover_retries = 3;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000474 uint32_t server_addr = server_addr; /* for compiler */
475 uint32_t requested_ip = 0;
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000476 uint32_t xid = 0;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000477 uint32_t lease_seconds = 0; /* can be given as 32-bit quantity */
Denis Vlasenkob539c842007-11-29 08:17:45 +0000478 int packet_num;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000479 int timeout; /* must be signed */
Denis Vlasenko19903f02008-05-21 07:03:03 +0000480 unsigned already_waited_sec;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000481 unsigned opt;
Mike Frysinger7031f622006-05-08 03:20:50 +0000482 int max_fd;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000483 int retval;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000484 struct timeval tv;
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200485 struct dhcp_packet packet;
Denis Vlasenko80edead2007-08-02 22:31:05 +0000486 fd_set rfds;
Mike Frysinger7031f622006-05-08 03:20:50 +0000487
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200488#if ENABLE_LONG_OPTS
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000489 static const char udhcpc_longopts[] ALIGN1 =
Denis Vlasenko19183682007-12-10 07:03:38 +0000490 "clientid\0" Required_argument "c"
491 "clientid-none\0" No_argument "C"
492 "vendorclass\0" Required_argument "V"
Denis Vlasenko19183682007-12-10 07:03:38 +0000493 "hostname\0" Required_argument "H"
494 "fqdn\0" Required_argument "F"
495 "interface\0" Required_argument "i"
496 "now\0" No_argument "n"
497 "pidfile\0" Required_argument "p"
498 "quit\0" No_argument "q"
499 "release\0" No_argument "R"
500 "request\0" Required_argument "r"
501 "script\0" Required_argument "s"
502 "timeout\0" Required_argument "T"
503 "version\0" No_argument "v"
504 "retries\0" Required_argument "t"
505 "tryagain\0" Required_argument "A"
506 "syslog\0" No_argument "S"
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000507 "request-option\0" Required_argument "O"
508 "no-default-options\0" No_argument "o"
509 "foreground\0" No_argument "f"
510 "background\0" No_argument "b"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000511 IF_FEATURE_UDHCPC_ARPING("arping\0" No_argument "a")
512 IF_FEATURE_UDHCP_PORT("client-port\0" Required_argument "P")
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000513 ;
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000514#endif
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000515 enum {
516 OPT_c = 1 << 0,
517 OPT_C = 1 << 1,
518 OPT_V = 1 << 2,
519 OPT_H = 1 << 3,
520 OPT_h = 1 << 4,
521 OPT_F = 1 << 5,
Denis Vlasenkof716a6d2008-06-15 09:49:21 +0000522 OPT_i = 1 << 6,
523 OPT_n = 1 << 7,
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000524 OPT_p = 1 << 8,
525 OPT_q = 1 << 9,
526 OPT_R = 1 << 10,
527 OPT_r = 1 << 11,
528 OPT_s = 1 << 12,
529 OPT_T = 1 << 13,
530 OPT_t = 1 << 14,
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200531 OPT_S = 1 << 15,
532 OPT_A = 1 << 16,
533 OPT_O = 1 << 17,
534 OPT_o = 1 << 18,
535 OPT_f = 1 << 19,
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000536/* The rest has variable bit positions, need to be clever */
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200537 OPTBIT_f = 19,
538 USE_FOR_MMU( OPTBIT_b,)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000539 IF_FEATURE_UDHCPC_ARPING(OPTBIT_a,)
540 IF_FEATURE_UDHCP_PORT( OPTBIT_P,)
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200541 USE_FOR_MMU( OPT_b = 1 << OPTBIT_b,)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000542 IF_FEATURE_UDHCPC_ARPING(OPT_a = 1 << OPTBIT_a,)
543 IF_FEATURE_UDHCP_PORT( OPT_P = 1 << OPTBIT_P,)
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000544 };
545
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000546 /* Default options. */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000547 IF_FEATURE_UDHCP_PORT(SERVER_PORT = 67;)
548 IF_FEATURE_UDHCP_PORT(CLIENT_PORT = 68;)
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000549 client_config.interface = "eth0";
550 client_config.script = DEFAULT_SCRIPT;
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100551 str_V = "udhcp "BB_VER;
Mike Frysinger7031f622006-05-08 03:20:50 +0000552
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000553 /* Parse command line */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000554 /* Cc: mutually exclusive; O: list; -T,-t,-A take numeric param */
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200555 opt_complementary = "c--C:C--c:O::T+:t+:A+"
556#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
557 ":vv"
558#endif
559 ;
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200560 IF_LONG_OPTS(applet_long_options = udhcpc_longopts;)
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200561 opt = getopt32(argv, "c:CV:H:h:F:i:np:qRr:s:T:t:SA:O:of"
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000562 USE_FOR_MMU("b")
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000563 IF_FEATURE_UDHCPC_ARPING("a")
564 IF_FEATURE_UDHCP_PORT("P:")
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200565 "v"
Denis Vlasenko19183682007-12-10 07:03:38 +0000566 , &str_c, &str_V, &str_h, &str_h, &str_F
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000567 , &client_config.interface, &client_config.pidfile, &str_r /* i,p */
568 , &client_config.script /* s */
569 , &discover_timeout, &discover_retries, &tryagain_timeout /* T,t,A */
Denis Vlasenko19183682007-12-10 07:03:38 +0000570 , &list_O
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000571 IF_FEATURE_UDHCP_PORT(, &str_P)
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200572#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
573 , &dhcp_verbose
574#endif
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000575 );
Denis Vlasenko68af8e72007-11-22 21:41:14 +0000576 if (opt & (OPT_h|OPT_H))
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000577 client_config.hostname = alloc_dhcp_option(DHCP_HOST_NAME, str_h, 0);
578 if (opt & OPT_F) {
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100579 /* FQDN option format: [0x51][len][flags][0][0]<fqdn> */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000580 client_config.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3);
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100581 /* Flag bits: 0000NEOS
582 * S: 1 = Client requests server to update A RR in DNS as well as PTR
583 * O: 1 = Server indicates to client that DNS has been updated regardless
584 * E: 1 = Name is in DNS format, i.e. <4>host<6>domain<3>com<0>,
585 * not "host.domain.com". Format 0 is obsolete.
586 * N: 1 = Client requests server to not update DNS (S must be 0 then)
587 * Two [0] bytes which follow are deprecated and must be 0.
588 */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000589 client_config.fqdn[OPT_DATA + 0] = 0x1;
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100590 /*client_config.fqdn[OPT_DATA + 1] = 0; - xzalloc did it */
591 /*client_config.fqdn[OPT_DATA + 2] = 0; */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000592 }
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000593 if (opt & OPT_r)
594 requested_ip = inet_addr(str_r);
Denis Vlasenkod55fe3e2008-02-04 13:12:16 +0000595#if ENABLE_FEATURE_UDHCP_PORT
596 if (opt & OPT_P) {
597 CLIENT_PORT = xatou16(str_P);
598 SERVER_PORT = CLIENT_PORT - 1;
599 }
600#endif
Denis Vlasenko2e4c3c42008-04-02 13:04:19 +0000601 if (opt & OPT_o)
602 client_config.no_default_options = 1;
Denis Vlasenko19183682007-12-10 07:03:38 +0000603 while (list_O) {
Denis Vlasenko18c93022008-08-27 22:29:43 +0000604 char *optstr = llist_pop(&list_O);
605 int n = index_in_strings(dhcp_option_strings, optstr);
Denis Vlasenko19183682007-12-10 07:03:38 +0000606 if (n < 0)
Denis Vlasenko18c93022008-08-27 22:29:43 +0000607 bb_error_msg_and_die("unknown option '%s'", optstr);
Denis Vlasenko19183682007-12-10 07:03:38 +0000608 n = dhcp_options[n].code;
609 client_config.opt_mask[n >> 3] |= 1 << (n & 7);
Denis Vlasenko19183682007-12-10 07:03:38 +0000610 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000611
Denys Vlasenko26918dd2009-06-16 12:04:23 +0200612 if (udhcp_read_interface(client_config.interface,
613 &client_config.ifindex,
614 NULL,
615 client_config.client_mac)
616 ) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000617 return 1;
Denys Vlasenko26918dd2009-06-16 12:04:23 +0200618 }
619
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100620 if (opt & OPT_c) {
621 client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, str_c, 0);
622 } else if (!(opt & OPT_C)) {
623 /* not set and not suppressed, set the default client ID */
624 client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, "", 7);
625 client_config.clientid[OPT_DATA] = 1; /* type: ethernet */
626 memcpy(client_config.clientid + OPT_DATA+1, client_config.client_mac, 6);
627 }
628 if (str_V[0] != '\0')
629 client_config.vendorclass = alloc_dhcp_option(DHCP_VENDOR, str_V, 0);
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000630#if !BB_MMU
631 /* on NOMMU reexec (i.e., background) early */
632 if (!(opt & OPT_f)) {
633 bb_daemonize_or_rexec(0 /* flags */, argv);
Denis Vlasenkoa19e6492009-03-11 14:40:00 +0000634 logmode = LOGMODE_NONE;
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000635 }
636#endif
637 if (opt & OPT_S) {
Denis Vlasenko5e4fda02009-03-08 23:46:48 +0000638 openlog(applet_name, LOG_PID, LOG_DAEMON);
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000639 logmode |= LOGMODE_SYSLOG;
640 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000641
Denis Vlasenko80edead2007-08-02 22:31:05 +0000642 /* Make sure fd 0,1,2 are open */
643 bb_sanitize_stdio();
644 /* Equivalent of doing a fflush after every \n */
645 setlinebuf(stdout);
646
647 /* Create pidfile */
648 write_pidfile(client_config.pidfile);
Denis Vlasenko80edead2007-08-02 22:31:05 +0000649
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000650 /* Goes to stdout (unless NOMMU) and possibly syslog */
Denis Vlasenkodef88982007-10-07 17:06:01 +0000651 bb_info_msg("%s (v"BB_VER") started", applet_name);
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +0000652
Denys Vlasenko4248c332009-06-26 23:23:16 +0200653 /* Set up the signal pipe */
Mike Frysinger7031f622006-05-08 03:20:50 +0000654 udhcp_sp_setup();
655
656 state = INIT_SELECTING;
Rob Landley3f785612006-05-28 01:06:36 +0000657 udhcp_run_script(NULL, "deconfig");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000658 change_listen_mode(LISTEN_RAW);
Denis Vlasenkob539c842007-11-29 08:17:45 +0000659 packet_num = 0;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000660 timeout = 0;
Denis Vlasenko19903f02008-05-21 07:03:03 +0000661 already_waited_sec = 0;
Mike Frysinger7031f622006-05-08 03:20:50 +0000662
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000663 /* Main event loop. select() waits on signal pipe and possibly
664 * on sockfd.
665 * "continue" statements in code below jump to the top of the loop.
666 */
Mike Frysinger7031f622006-05-08 03:20:50 +0000667 for (;;) {
Denis Vlasenkoec64a572009-01-14 00:28:03 +0000668 /* silence "uninitialized!" warning */
669 unsigned timestamp_before_wait = timestamp_before_wait;
Mike Frysinger7031f622006-05-08 03:20:50 +0000670
Denis Vlasenko517413f2008-12-10 11:16:47 +0000671 //bb_error_msg("sockfd:%d, listen_mode:%d", sockfd, listen_mode);
672
673 /* Was opening raw or udp socket here
674 * if (listen_mode != LISTEN_NONE && sockfd < 0),
675 * but on fast network renew responses return faster
676 * than we open sockets. Thus this code is moved
677 * to change_listen_mode(). Thus we open listen socket
678 * BEFORE we send renew request (see "case BOUND:"). */
679
Denis Vlasenkofbd29182007-04-07 01:05:47 +0000680 max_fd = udhcp_sp_fd_set(&rfds, sockfd);
Mike Frysinger7031f622006-05-08 03:20:50 +0000681
Denis Vlasenko19903f02008-05-21 07:03:03 +0000682 tv.tv_sec = timeout - already_waited_sec;
Denis Vlasenkob2342912008-05-21 07:02:16 +0000683 tv.tv_usec = 0;
Denis Vlasenko80edead2007-08-02 22:31:05 +0000684 retval = 0; /* If we already timed out, fall through, else... */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200685 if ((int)tv.tv_sec > 0) {
Denis Vlasenkob2342912008-05-21 07:02:16 +0000686 timestamp_before_wait = (unsigned)monotonic_sec();
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200687 log1("Waiting on select...");
Mike Frysinger7031f622006-05-08 03:20:50 +0000688 retval = select(max_fd + 1, &rfds, NULL, NULL, &tv);
Denis Vlasenkob2342912008-05-21 07:02:16 +0000689 if (retval < 0) {
690 /* EINTR? A signal was caught, don't panic */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200691 if (errno == EINTR) {
692 already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
Denis Vlasenkob2342912008-05-21 07:02:16 +0000693 continue;
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200694 }
Denis Vlasenko80edead2007-08-02 22:31:05 +0000695 /* Else: an error occured, panic! */
696 bb_perror_msg_and_die("select");
697 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000698 }
699
700 /* If timeout dropped to zero, time to become active:
701 * resend discover/renew/whatever
702 */
703 if (retval == 0) {
Denis Vlasenkof1980f62008-09-26 09:34:59 +0000704 /* We will restart the wait in any case */
Denis Vlasenko19903f02008-05-21 07:03:03 +0000705 already_waited_sec = 0;
706
Mike Frysinger7031f622006-05-08 03:20:50 +0000707 switch (state) {
708 case INIT_SELECTING:
Denis Vlasenko223bc972007-11-22 00:58:49 +0000709 if (packet_num < discover_retries) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000710 if (packet_num == 0)
711 xid = random_xid();
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200712 /* broadcast */
713 send_discover(xid, requested_ip);
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000714 timeout = discover_timeout;
Mike Frysinger7031f622006-05-08 03:20:50 +0000715 packet_num++;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000716 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +0000717 }
Denis Vlasenkocdb0b652008-09-26 09:34:15 +0000718 leasefail:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000719 udhcp_run_script(NULL, "leasefail");
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000720#if BB_MMU /* -b is not supported on NOMMU */
721 if (opt & OPT_b) { /* background if no lease */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000722 bb_info_msg("No lease, forking to background");
723 client_background();
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000724 /* do not background again! */
725 opt = ((opt & ~OPT_b) | OPT_f);
726 } else
727#endif
728 if (opt & OPT_n) { /* abort if no lease */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000729 bb_info_msg("No lease, failing");
730 retval = 1;
731 goto ret;
732 }
Denis Vlasenko6de89942008-05-21 07:05:06 +0000733 /* wait before trying again */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000734 timeout = tryagain_timeout;
735 packet_num = 0;
736 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +0000737 case REQUESTING:
Denis Vlasenko223bc972007-11-22 00:58:49 +0000738 if (packet_num < discover_retries) {
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200739 /* send broadcast select packet */
740 send_select(xid, server_addr, requested_ip);
Denis Vlasenko6de89942008-05-21 07:05:06 +0000741 timeout = discover_timeout;
Mike Frysinger7031f622006-05-08 03:20:50 +0000742 packet_num++;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000743 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +0000744 }
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200745 /* Timed out, go back to init state.
746 * "discover...select...discover..." loops
Denis Vlasenko7d9399e2008-09-26 22:21:03 +0000747 * were seen in the wild. Treat them similarly
Denis Vlasenkocdb0b652008-09-26 09:34:15 +0000748 * to "no response to discover" case */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200749 change_listen_mode(LISTEN_RAW);
Denis Vlasenko7d9399e2008-09-26 22:21:03 +0000750 state = INIT_SELECTING;
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200751 goto leasefail;
Mike Frysinger7031f622006-05-08 03:20:50 +0000752 case BOUND:
Denys Vlasenko7d6a7912009-07-19 04:24:23 +0200753 /* 1/2 lease passed, enter renewing state */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200754 state = RENEWING;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000755 change_listen_mode(LISTEN_KERNEL);
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200756 log1("Entering renew state");
Mike Frysinger7031f622006-05-08 03:20:50 +0000757 /* fall right through */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200758 case RENEW_REQUESTED: /* manual (SIGUSR1) renew */
759 case_RENEW_REQUESTED:
Mike Frysinger7031f622006-05-08 03:20:50 +0000760 case RENEWING:
Denis Vlasenko19903f02008-05-21 07:03:03 +0000761 if (timeout > 60) {
Denys Vlasenko7d6a7912009-07-19 04:24:23 +0200762 /* send an unicast renew request */
763 /* Sometimes observed to fail (EADDRNOTAVAIL) to bind
764 * a new UDP socket for sending inside send_renew.
765 * I hazard to guess existing listening socket
766 * is somehow conflicting with it, but why is it
767 * not deterministic then?! Strange.
Denys Vlasenko753a3ce2009-07-19 04:27:10 +0200768 * Anyway, it does recover by eventually failing through
Denys Vlasenko7d6a7912009-07-19 04:24:23 +0200769 * into INIT_SELECTING state.
770 */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200771 send_renew(xid, server_addr, requested_ip);
Denis Vlasenko19903f02008-05-21 07:03:03 +0000772 timeout >>= 1;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000773 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +0000774 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000775 /* Timed out, enter rebinding state */
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200776 log1("Entering rebinding state");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000777 state = REBINDING;
Denis Vlasenko6de89942008-05-21 07:05:06 +0000778 /* fall right through */
Mike Frysinger7031f622006-05-08 03:20:50 +0000779 case REBINDING:
Denys Vlasenko219757f2009-10-08 23:05:46 +0200780 /* Switch to bcast receive */
781 change_listen_mode(LISTEN_RAW);
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000782 /* Lease is *really* about to run out,
783 * try to find DHCP server using broadcast */
Denis Vlasenko19903f02008-05-21 07:03:03 +0000784 if (timeout > 0) {
Denys Vlasenko7d6a7912009-07-19 04:24:23 +0200785 /* send a broadcast renew request */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200786 send_renew(xid, 0 /*INADDR_ANY*/, requested_ip);
Denis Vlasenko19903f02008-05-21 07:03:03 +0000787 timeout >>= 1;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000788 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +0000789 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000790 /* Timed out, enter init state */
791 bb_info_msg("Lease lost, entering init state");
792 udhcp_run_script(NULL, "deconfig");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000793 state = INIT_SELECTING;
Denis Vlasenko19903f02008-05-21 07:03:03 +0000794 /*timeout = 0; - already is */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000795 packet_num = 0;
796 continue;
797 /* case RELEASED: */
Mike Frysinger7031f622006-05-08 03:20:50 +0000798 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000799 /* yah, I know, *you* say it would never happen */
800 timeout = INT_MAX;
801 continue; /* back to main loop */
Denys Vlasenko4248c332009-06-26 23:23:16 +0200802 } /* if select timed out */
803
804 /* select() didn't timeout, something happened */
805
806 /* Is it a signal? */
807 /* note: udhcp_sp_read checks FD_ISSET before reading */
808 switch (udhcp_sp_read(&rfds)) {
809 case SIGUSR1:
810 perform_renew();
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200811 if (state == RENEW_REQUESTED)
812 goto case_RENEW_REQUESTED;
Denys Vlasenko4248c332009-06-26 23:23:16 +0200813 /* Start things over */
814 packet_num = 0;
Denys Vlasenko7d6a7912009-07-19 04:24:23 +0200815 /* Kill any timeouts, user wants this to hurry along */
Denys Vlasenko4248c332009-06-26 23:23:16 +0200816 timeout = 0;
817 continue;
818 case SIGUSR2:
819 perform_release(requested_ip, server_addr);
820 timeout = INT_MAX;
821 continue;
822 case SIGTERM:
823 bb_info_msg("Received SIGTERM");
824 if (opt & OPT_R) /* release on quit */
825 perform_release(requested_ip, server_addr);
826 goto ret0;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000827 }
828
Denis Vlasenko739e30f2008-09-26 23:45:20 +0000829 /* Is it a packet? */
Denys Vlasenko4248c332009-06-26 23:23:16 +0200830 if (listen_mode == LISTEN_NONE || !FD_ISSET(sockfd, &rfds))
831 continue; /* no */
Mike Frysinger7031f622006-05-08 03:20:50 +0000832
Denys Vlasenko4248c332009-06-26 23:23:16 +0200833 {
834 int len;
835
836 /* A packet is ready, read it */
Mike Frysinger7031f622006-05-08 03:20:50 +0000837 if (listen_mode == LISTEN_KERNEL)
Denis Vlasenko6de89942008-05-21 07:05:06 +0000838 len = udhcp_recv_kernel_packet(&packet, sockfd);
Denis Vlasenkob76b9a42008-01-25 22:46:34 +0000839 else
Denis Vlasenko6de89942008-05-21 07:05:06 +0000840 len = udhcp_recv_raw_packet(&packet, sockfd);
Denys Vlasenko4248c332009-06-26 23:23:16 +0200841 if (len == -1) {
842 /* Error is severe, reopen socket */
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200843 bb_info_msg("Read error: %s, reopening socket", strerror(errno));
Denis Vlasenko6de89942008-05-21 07:05:06 +0000844 sleep(discover_timeout); /* 3 seconds by default */
845 change_listen_mode(listen_mode); /* just close and reopen */
846 }
Denis Vlasenkob2342912008-05-21 07:02:16 +0000847 /* If this packet will turn out to be unrelated/bogus,
848 * we will go back and wait for next one.
849 * Be sure timeout is properly decreased. */
Denis Vlasenko19903f02008-05-21 07:03:03 +0000850 already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
Denis Vlasenko6de89942008-05-21 07:05:06 +0000851 if (len < 0)
852 continue;
Denys Vlasenko4248c332009-06-26 23:23:16 +0200853 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000854
Denys Vlasenko4248c332009-06-26 23:23:16 +0200855 if (packet.xid != xid) {
856 log1("xid %x (our is %x), ignoring packet",
857 (unsigned)packet.xid, (unsigned)xid);
858 continue;
859 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000860
Denys Vlasenko4248c332009-06-26 23:23:16 +0200861 /* Ignore packets that aren't for us */
862 if (packet.hlen != 6
863 || memcmp(packet.chaddr, client_config.client_mac, 6)
864 ) {
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200865//FIXME: need to also check that last 10 bytes are zero
Denys Vlasenko4248c332009-06-26 23:23:16 +0200866 log1("chaddr does not match, ignoring packet"); // log2?
867 continue;
868 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000869
Denys Vlasenko4248c332009-06-26 23:23:16 +0200870 message = get_option(&packet, DHCP_MESSAGE_TYPE);
871 if (message == NULL) {
872 bb_error_msg("no message type option, ignoring packet");
873 continue;
874 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000875
Denys Vlasenko4248c332009-06-26 23:23:16 +0200876 switch (state) {
877 case INIT_SELECTING:
878 /* Must be a DHCPOFFER to one of our xid's */
879 if (*message == DHCPOFFER) {
880 /* TODO: why we don't just fetch server's IP from IP header? */
881 temp = get_option(&packet, DHCP_SERVER_ID);
882 if (!temp) {
883 bb_error_msg("no server ID in message");
884 continue;
885 /* still selecting - this server looks bad */
Mike Frysinger7031f622006-05-08 03:20:50 +0000886 }
Denys Vlasenko4248c332009-06-26 23:23:16 +0200887 /* it IS unaligned sometimes, don't "optimize" */
888 move_from_unaligned32(server_addr, temp);
889 xid = packet.xid;
890 requested_ip = packet.yiaddr;
891
892 /* enter requesting state */
893 state = REQUESTING;
894 timeout = 0;
895 packet_num = 0;
896 already_waited_sec = 0;
897 }
898 continue;
Denys Vlasenko4248c332009-06-26 23:23:16 +0200899 case REQUESTING:
900 case RENEWING:
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200901 case RENEW_REQUESTED:
Denys Vlasenko4248c332009-06-26 23:23:16 +0200902 case REBINDING:
903 if (*message == DHCPACK) {
904 temp = get_option(&packet, DHCP_LEASE_TIME);
905 if (!temp) {
906 bb_error_msg("no lease time with ACK, using 1 hour lease");
907 lease_seconds = 60 * 60;
908 } else {
909 /* it IS unaligned sometimes, don't "optimize" */
910 move_from_unaligned32(lease_seconds, temp);
911 lease_seconds = ntohl(lease_seconds);
912 lease_seconds &= 0x0fffffff; /* paranoia: must not be prone to overflows */
913 if (lease_seconds < 10) /* and not too small */
914 lease_seconds = 10;
915 }
Denis Vlasenko223bc972007-11-22 00:58:49 +0000916#if ENABLE_FEATURE_UDHCPC_ARPING
Denys Vlasenko4248c332009-06-26 23:23:16 +0200917 if (opt & OPT_a) {
Denis Vlasenko739e30f2008-09-26 23:45:20 +0000918/* RFC 2131 3.1 paragraph 5:
919 * "The client receives the DHCPACK message with configuration
920 * parameters. The client SHOULD perform a final check on the
921 * parameters (e.g., ARP for allocated network address), and notes
922 * the duration of the lease specified in the DHCPACK message. At this
923 * point, the client is configured. If the client detects that the
924 * address is already in use (e.g., through the use of ARP),
925 * the client MUST send a DHCPDECLINE message to the server and restarts
926 * the configuration process..." */
Denys Vlasenko4248c332009-06-26 23:23:16 +0200927 if (!arpping(packet.yiaddr,
928 NULL,
929 (uint32_t) 0,
930 client_config.client_mac,
931 client_config.interface)
932 ) {
933 bb_info_msg("Offered address is in use "
934 "(got ARP reply), declining");
935 send_decline(xid, server_addr, packet.yiaddr);
Denis Vlasenko223bc972007-11-22 00:58:49 +0000936
Denys Vlasenko4248c332009-06-26 23:23:16 +0200937 if (state != REQUESTING)
938 udhcp_run_script(NULL, "deconfig");
939 change_listen_mode(LISTEN_RAW);
940 state = INIT_SELECTING;
941 requested_ip = 0;
942 timeout = tryagain_timeout;
943 packet_num = 0;
944 already_waited_sec = 0;
945 continue; /* back to main loop */
Denis Vlasenko223bc972007-11-22 00:58:49 +0000946 }
Denys Vlasenko4248c332009-06-26 23:23:16 +0200947 }
Denis Vlasenko223bc972007-11-22 00:58:49 +0000948#endif
Denys Vlasenko4248c332009-06-26 23:23:16 +0200949 /* enter bound state */
950 timeout = lease_seconds / 2;
951 {
952 struct in_addr temp_addr;
953 temp_addr.s_addr = packet.yiaddr;
954 bb_info_msg("Lease of %s obtained, lease time %u",
955 inet_ntoa(temp_addr), (unsigned)lease_seconds);
956 }
957 requested_ip = packet.yiaddr;
Denys Vlasenko4abfc262009-07-19 04:35:16 +0200958 udhcp_run_script(&packet, state == REQUESTING ? "bound" : "renew");
Mike Frysinger7031f622006-05-08 03:20:50 +0000959
Denys Vlasenko4248c332009-06-26 23:23:16 +0200960 state = BOUND;
961 change_listen_mode(LISTEN_NONE);
962 if (opt & OPT_q) { /* quit after lease */
963 if (opt & OPT_R) /* release on quit */
964 perform_release(requested_ip, server_addr);
965 goto ret0;
966 }
Justin Maggardaa369e02009-08-13 01:26:17 +0200967 /* future renew failures should not exit (JM) */
968 opt &= ~OPT_n;
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000969#if BB_MMU /* NOMMU case backgrounded earlier */
Denys Vlasenko4248c332009-06-26 23:23:16 +0200970 if (!(opt & OPT_f)) {
971 client_background();
972 /* do not background again! */
973 opt = ((opt & ~OPT_b) | OPT_f);
974 }
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000975#endif
Denys Vlasenko4248c332009-06-26 23:23:16 +0200976 already_waited_sec = 0;
977 continue; /* back to main loop */
Mike Frysinger7031f622006-05-08 03:20:50 +0000978 }
Denys Vlasenko4248c332009-06-26 23:23:16 +0200979 if (*message == DHCPNAK) {
980 /* return to init state */
981 bb_info_msg("Received DHCP NAK");
982 udhcp_run_script(&packet, "nak");
983 if (state != REQUESTING)
984 udhcp_run_script(NULL, "deconfig");
985 change_listen_mode(LISTEN_RAW);
986 sleep(3); /* avoid excessive network traffic */
987 state = INIT_SELECTING;
988 requested_ip = 0;
Denis Vlasenkob539c842007-11-29 08:17:45 +0000989 timeout = 0;
Denys Vlasenko4248c332009-06-26 23:23:16 +0200990 packet_num = 0;
991 already_waited_sec = 0;
Mike Frysinger7031f622006-05-08 03:20:50 +0000992 }
Denys Vlasenko4248c332009-06-26 23:23:16 +0200993 continue;
994 /* case BOUND: - ignore all packets */
995 /* case RELEASED: - ignore all packets */
Mike Frysinger7031f622006-05-08 03:20:50 +0000996 }
Denys Vlasenko4248c332009-06-26 23:23:16 +0200997 /* back to main loop */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000998 } /* for (;;) - main loop ends */
999
Denis Vlasenko6e6d3312007-05-03 23:39:35 +00001000 ret0:
1001 retval = 0;
1002 ret:
Denis Vlasenkob2342912008-05-21 07:02:16 +00001003 /*if (client_config.pidfile) - remove_pidfile has its own check */
Denis Vlasenko6e6d3312007-05-03 23:39:35 +00001004 remove_pidfile(client_config.pidfile);
1005 return retval;
Mike Frysinger7031f622006-05-08 03:20:50 +00001006}