blob: e79feb7fe00451eebc3a3b33a134f95c6ade227a [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 */
Denys Vlasenko8d114452010-03-22 13:44:09 +010067static ALWAYS_INLINE uint32_t random_xid(void)
Denys Vlasenko501e35c2010-03-22 13:43:12 +010068{
Denys Vlasenko501e35c2010-03-22 13:43:12 +010069 return rand();
70}
71
72/* Initialize the packet with the proper defaults */
73static void init_packet(struct dhcp_packet *packet, char type)
74{
75 udhcp_init_header(packet, type);
76 memcpy(packet->chaddr, client_config.client_mac, 6);
77 if (client_config.clientid)
78 add_option_string(packet->options, client_config.clientid);
79 if (client_config.hostname)
80 add_option_string(packet->options, client_config.hostname);
81 if (client_config.fqdn)
82 add_option_string(packet->options, client_config.fqdn);
83 if (type != DHCPDECLINE
84 && type != DHCPRELEASE
85 && client_config.vendorclass
86 ) {
87 add_option_string(packet->options, client_config.vendorclass);
88 }
89}
90
91/* Add a parameter request list for stubborn DHCP servers. Pull the data
92 * from the struct in options.c. Don't do bounds checking here because it
93 * goes towards the head of the packet. */
94static void add_param_req_option(struct dhcp_packet *packet)
95{
96 uint8_t c;
97 int end = end_option(packet->options);
98 int i, len = 0;
99
100 for (i = 0; (c = dhcp_options[i].code) != 0; i++) {
101 if (( (dhcp_options[i].flags & OPTION_REQ)
102 && !client_config.no_default_options
103 )
104 || (client_config.opt_mask[c >> 3] & (1 << (c & 7)))
105 ) {
106 packet->options[end + OPT_DATA + len] = c;
107 len++;
108 }
109 }
110 if (len) {
111 packet->options[end + OPT_CODE] = DHCP_PARAM_REQ;
112 packet->options[end + OPT_LEN] = len;
113 packet->options[end + OPT_DATA + len] = DHCP_END;
114 }
115}
116
117/* RFC 2131
118 * 4.4.4 Use of broadcast and unicast
119 *
120 * The DHCP client broadcasts DHCPDISCOVER, DHCPREQUEST and DHCPINFORM
121 * messages, unless the client knows the address of a DHCP server.
122 * The client unicasts DHCPRELEASE messages to the server. Because
123 * the client is declining the use of the IP address supplied by the server,
124 * the client broadcasts DHCPDECLINE messages.
125 *
126 * When the DHCP client knows the address of a DHCP server, in either
127 * INIT or REBOOTING state, the client may use that address
128 * in the DHCPDISCOVER or DHCPREQUEST rather than the IP broadcast address.
129 * The client may also use unicast to send DHCPINFORM messages
130 * to a known DHCP server. If the client receives no response to DHCP
131 * messages sent to the IP address of a known DHCP server, the DHCP
132 * client reverts to using the IP broadcast address.
133 */
134
135static int raw_bcast_from_client_config_ifindex(struct dhcp_packet *packet)
136{
137 return udhcp_send_raw_packet(packet,
138 /*src*/ INADDR_ANY, CLIENT_PORT,
139 /*dst*/ INADDR_BROADCAST, SERVER_PORT, MAC_BCAST_ADDR,
140 client_config.ifindex);
141}
142
143/* Broadcast a DHCP discover packet to the network, with an optionally requested IP */
144static int send_discover(uint32_t xid, uint32_t requested)
145{
146 struct dhcp_packet packet;
147
148 init_packet(&packet, DHCPDISCOVER);
149 packet.xid = xid;
150 if (requested)
151 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
152 /* Explicitly saying that we want RFC-compliant packets helps
153 * some buggy DHCP servers to NOT send bigger packets */
154 add_simple_option(packet.options, DHCP_MAX_SIZE, htons(576));
155 add_param_req_option(&packet);
156
157 bb_info_msg("Sending discover...");
158 return raw_bcast_from_client_config_ifindex(&packet);
159}
160
161/* Broadcast a DHCP request message */
162/* RFC 2131 3.1 paragraph 3:
163 * "The client _broadcasts_ a DHCPREQUEST message..."
164 */
165static int send_select(uint32_t xid, uint32_t server, uint32_t requested)
166{
167 struct dhcp_packet packet;
168 struct in_addr addr;
169
170 init_packet(&packet, DHCPREQUEST);
171 packet.xid = xid;
172 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
173 add_simple_option(packet.options, DHCP_SERVER_ID, server);
174 add_param_req_option(&packet);
175
176 addr.s_addr = requested;
177 bb_info_msg("Sending select for %s...", inet_ntoa(addr));
178 return raw_bcast_from_client_config_ifindex(&packet);
179}
180
181/* Unicast or broadcast a DHCP renew message */
182static int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr)
183{
184 struct dhcp_packet packet;
185
186 init_packet(&packet, DHCPREQUEST);
187 packet.xid = xid;
188 packet.ciaddr = ciaddr;
189 add_param_req_option(&packet);
190
191 bb_info_msg("Sending renew...");
192 if (server)
193 return udhcp_send_kernel_packet(&packet,
194 ciaddr, CLIENT_PORT,
195 server, SERVER_PORT);
196 return raw_bcast_from_client_config_ifindex(&packet);
197}
198
199#if ENABLE_FEATURE_UDHCPC_ARPING
200/* Broadcast a DHCP decline message */
201static int send_decline(uint32_t xid, uint32_t server, uint32_t requested)
202{
203 struct dhcp_packet packet;
204
205 init_packet(&packet, DHCPDECLINE);
206 packet.xid = xid;
207 add_simple_option(packet.options, DHCP_REQUESTED_IP, requested);
208 add_simple_option(packet.options, DHCP_SERVER_ID, server);
209
210 bb_info_msg("Sending decline...");
211 return raw_bcast_from_client_config_ifindex(&packet);
212}
213#endif
214
215/* Unicast a DHCP release message */
216static int send_release(uint32_t server, uint32_t ciaddr)
217{
218 struct dhcp_packet packet;
219
220 init_packet(&packet, DHCPRELEASE);
221 packet.xid = random_xid();
222 packet.ciaddr = ciaddr;
223
224 add_simple_option(packet.options, DHCP_SERVER_ID, server);
225
226 bb_info_msg("Sending release...");
227 return udhcp_send_kernel_packet(&packet, ciaddr, CLIENT_PORT, server, SERVER_PORT);
228}
229
230/* Returns -1 on errors that are fatal for the socket, -2 for those that aren't */
231static NOINLINE int udhcp_recv_raw_packet(struct dhcp_packet *dhcp_pkt, int fd)
232{
233 int bytes;
234 struct ip_udp_dhcp_packet packet;
235 uint16_t check;
236
237 memset(&packet, 0, sizeof(packet));
238 bytes = safe_read(fd, &packet, sizeof(packet));
239 if (bytes < 0) {
240 log1("Packet read error, ignoring");
241 /* NB: possible down interface, etc. Caller should pause. */
242 return bytes; /* returns -1 */
243 }
244
245 if (bytes < (int) (sizeof(packet.ip) + sizeof(packet.udp))) {
246 log1("Packet is too short, ignoring");
247 return -2;
248 }
249
250 if (bytes < ntohs(packet.ip.tot_len)) {
251 /* packet is bigger than sizeof(packet), we did partial read */
252 log1("Oversized packet, ignoring");
253 return -2;
254 }
255
256 /* ignore any extra garbage bytes */
257 bytes = ntohs(packet.ip.tot_len);
258
259 /* make sure its the right packet for us, and that it passes sanity checks */
260 if (packet.ip.protocol != IPPROTO_UDP || packet.ip.version != IPVERSION
261 || packet.ip.ihl != (sizeof(packet.ip) >> 2)
262 || packet.udp.dest != htons(CLIENT_PORT)
263 /* || bytes > (int) sizeof(packet) - can't happen */
264 || ntohs(packet.udp.len) != (uint16_t)(bytes - sizeof(packet.ip))
265 ) {
266 log1("Unrelated/bogus packet, ignoring");
267 return -2;
268 }
269
270 /* verify IP checksum */
271 check = packet.ip.check;
272 packet.ip.check = 0;
273 if (check != udhcp_checksum(&packet.ip, sizeof(packet.ip))) {
274 log1("Bad IP header checksum, ignoring");
275 return -2;
276 }
277
278 /* verify UDP checksum. IP header has to be modified for this */
279 memset(&packet.ip, 0, offsetof(struct iphdr, protocol));
280 /* ip.xx fields which are not memset: protocol, check, saddr, daddr */
281 packet.ip.tot_len = packet.udp.len; /* yes, this is needed */
282 check = packet.udp.check;
283 packet.udp.check = 0;
284 if (check && check != udhcp_checksum(&packet, bytes)) {
285 log1("Packet with bad UDP checksum received, ignoring");
286 return -2;
287 }
288
289 memcpy(dhcp_pkt, &packet.data, bytes - (sizeof(packet.ip) + sizeof(packet.udp)));
290
291 if (dhcp_pkt->cookie != htonl(DHCP_MAGIC)) {
292 bb_info_msg("Packet with bad magic, ignoring");
293 return -2;
294 }
295 log1("Got valid DHCP packet");
296 udhcp_dump_packet(dhcp_pkt);
297 return bytes - (sizeof(packet.ip) + sizeof(packet.udp));
298}
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100299
300static int udhcp_raw_socket(int ifindex)
301{
302 int fd;
303 struct sockaddr_ll sock;
304
305 /*
306 * Comment:
307 *
308 * I've selected not to see LL header, so BPF doesn't see it, too.
309 * The filter may also pass non-IP and non-ARP packets, but we do
310 * a more complete check when receiving the message in userspace.
311 *
312 * and filter shamelessly stolen from:
313 *
314 * http://www.flamewarmaster.de/software/dhcpclient/
315 *
316 * There are a few other interesting ideas on that page (look under
317 * "Motivation"). Use of netlink events is most interesting. Think
318 * of various network servers listening for events and reconfiguring.
319 * That would obsolete sending HUP signals and/or make use of restarts.
320 *
321 * Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>.
322 * License: GPL v2.
323 *
324 * TODO: make conditional?
325 */
326#define SERVER_AND_CLIENT_PORTS ((67 << 16) + 68)
327 static const struct sock_filter filter_instr[] = {
328 /* check for udp */
329 BPF_STMT(BPF_LD|BPF_B|BPF_ABS, 9),
330 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, IPPROTO_UDP, 2, 0), /* L5, L1, is UDP? */
331 /* ugly check for arp on ethernet-like and IPv4 */
332 BPF_STMT(BPF_LD|BPF_W|BPF_ABS, 2), /* L1: */
333 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, 0x08000604, 3, 4), /* L3, L4 */
334 /* skip IP header */
335 BPF_STMT(BPF_LDX|BPF_B|BPF_MSH, 0), /* L5: */
336 /* check udp source and destination ports */
337 BPF_STMT(BPF_LD|BPF_W|BPF_IND, 0),
338 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, SERVER_AND_CLIENT_PORTS, 0, 1), /* L3, L4 */
339 /* returns */
340 BPF_STMT(BPF_RET|BPF_K, 0x0fffffff ), /* L3: pass */
341 BPF_STMT(BPF_RET|BPF_K, 0), /* L4: reject */
342 };
343 static const struct sock_fprog filter_prog = {
344 .len = sizeof(filter_instr) / sizeof(filter_instr[0]),
345 /* casting const away: */
346 .filter = (struct sock_filter *) filter_instr,
347 };
348
349 log1("Opening raw socket on ifindex %d", ifindex); //log2?
350
351 fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP));
352 log1("Got raw socket fd %d", fd); //log2?
353
354 if (SERVER_PORT == 67 && CLIENT_PORT == 68) {
355 /* Use only if standard ports are in use */
356 /* Ignoring error (kernel may lack support for this) */
357 if (setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, &filter_prog,
358 sizeof(filter_prog)) >= 0)
359 log1("Attached filter to raw socket fd %d", fd); // log?
360 }
361
362 sock.sll_family = AF_PACKET;
363 sock.sll_protocol = htons(ETH_P_IP);
364 sock.sll_ifindex = ifindex;
365 xbind(fd, (struct sockaddr *) &sock, sizeof(sock));
366 log1("Created raw socket");
367
368 return fd;
369}
370
Mike Frysinger7031f622006-05-08 03:20:50 +0000371/* just a little helper */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000372static void change_listen_mode(int new_mode)
Mike Frysinger7031f622006-05-08 03:20:50 +0000373{
Denys Vlasenko4945ed32009-06-17 11:58:11 +0200374 log1("Entering listen mode: %s",
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200375 new_mode != LISTEN_NONE
376 ? (new_mode == LISTEN_KERNEL ? "kernel" : "raw")
377 : "none"
378 );
Denis Vlasenko517413f2008-12-10 11:16:47 +0000379
380 listen_mode = new_mode;
Denis Vlasenkofbd29182007-04-07 01:05:47 +0000381 if (sockfd >= 0) {
382 close(sockfd);
383 sockfd = -1;
384 }
Denis Vlasenko517413f2008-12-10 11:16:47 +0000385 if (new_mode == LISTEN_KERNEL)
386 sockfd = udhcp_listen_socket(/*INADDR_ANY,*/ CLIENT_PORT, client_config.interface);
387 else if (new_mode != LISTEN_NONE)
388 sockfd = udhcp_raw_socket(client_config.ifindex);
Denys Vlasenko6b24d532010-03-22 13:42:13 +0100389 /* else LISTEN_NONE: sockfd stays closed */
Mike Frysinger7031f622006-05-08 03:20:50 +0000390}
391
Mike Frysinger7031f622006-05-08 03:20:50 +0000392/* perform a renew */
393static void perform_renew(void)
394{
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000395 bb_info_msg("Performing a DHCP renew");
Mike Frysinger7031f622006-05-08 03:20:50 +0000396 switch (state) {
397 case BOUND:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000398 change_listen_mode(LISTEN_KERNEL);
Mike Frysinger7031f622006-05-08 03:20:50 +0000399 case RENEWING:
400 case REBINDING:
401 state = RENEW_REQUESTED;
402 break;
403 case RENEW_REQUESTED: /* impatient are we? fine, square 1 */
Rob Landley3f785612006-05-28 01:06:36 +0000404 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +0000405 case REQUESTING:
406 case RELEASED:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000407 change_listen_mode(LISTEN_RAW);
Mike Frysinger7031f622006-05-08 03:20:50 +0000408 state = INIT_SELECTING;
409 break;
410 case INIT_SELECTING:
411 break;
412 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000413}
414
Mike Frysinger7031f622006-05-08 03:20:50 +0000415/* perform a release */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000416static void perform_release(uint32_t requested_ip, uint32_t server_addr)
Mike Frysinger7031f622006-05-08 03:20:50 +0000417{
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000418 char buffer[sizeof("255.255.255.255")];
Mike Frysinger7031f622006-05-08 03:20:50 +0000419 struct in_addr temp_addr;
420
421 /* send release packet */
422 if (state == BOUND || state == RENEWING || state == REBINDING) {
423 temp_addr.s_addr = server_addr;
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000424 strcpy(buffer, inet_ntoa(temp_addr));
Mike Frysinger7031f622006-05-08 03:20:50 +0000425 temp_addr.s_addr = requested_ip;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000426 bb_info_msg("Unicasting a release of %s to %s",
Mike Frysinger7031f622006-05-08 03:20:50 +0000427 inet_ntoa(temp_addr), buffer);
428 send_release(server_addr, requested_ip); /* unicast */
Rob Landley3f785612006-05-28 01:06:36 +0000429 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +0000430 }
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000431 bb_info_msg("Entering released state");
Mike Frysinger7031f622006-05-08 03:20:50 +0000432
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000433 change_listen_mode(LISTEN_NONE);
Mike Frysinger7031f622006-05-08 03:20:50 +0000434 state = RELEASED;
Mike Frysinger7031f622006-05-08 03:20:50 +0000435}
436
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000437#if BB_MMU
Mike Frysinger7031f622006-05-08 03:20:50 +0000438static void client_background(void)
439{
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000440 bb_daemonize(0);
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000441 logmode &= ~LOGMODE_STDIO;
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000442 /* rewrite pidfile, as our pid is different now */
Denis Vlasenko80edead2007-08-02 22:31:05 +0000443 write_pidfile(client_config.pidfile);
Mike Frysinger7031f622006-05-08 03:20:50 +0000444}
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000445#endif
Mike Frysinger7031f622006-05-08 03:20:50 +0000446
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000447static uint8_t* alloc_dhcp_option(int code, const char *str, int extra)
448{
449 uint8_t *storage;
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100450 int len = strnlen(str, 255);
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000451 storage = xzalloc(len + extra + OPT_DATA);
452 storage[OPT_CODE] = code;
453 storage[OPT_LEN] = len + extra;
454 memcpy(storage + extra + OPT_DATA, str, len);
455 return storage;
456}
457
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000458int udhcpc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000459int udhcpc_main(int argc UNUSED_PARAM, char **argv)
Mike Frysinger7031f622006-05-08 03:20:50 +0000460{
461 uint8_t *temp, *message;
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100462 const char *str_c, *str_V, *str_h, *str_F, *str_r;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000463 IF_FEATURE_UDHCP_PORT(char *str_P;)
Denis Vlasenko19183682007-12-10 07:03:38 +0000464 llist_t *list_O = NULL;
Denis Vlasenko68af8e72007-11-22 21:41:14 +0000465 int tryagain_timeout = 20;
466 int discover_timeout = 3;
467 int discover_retries = 3;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000468 uint32_t server_addr = server_addr; /* for compiler */
469 uint32_t requested_ip = 0;
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000470 uint32_t xid = 0;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000471 uint32_t lease_seconds = 0; /* can be given as 32-bit quantity */
Denis Vlasenkob539c842007-11-29 08:17:45 +0000472 int packet_num;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000473 int timeout; /* must be signed */
Denis Vlasenko19903f02008-05-21 07:03:03 +0000474 unsigned already_waited_sec;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000475 unsigned opt;
Mike Frysinger7031f622006-05-08 03:20:50 +0000476 int max_fd;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000477 int retval;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000478 struct timeval tv;
Denys Vlasenko31af3d52009-06-17 11:57:09 +0200479 struct dhcp_packet packet;
Denis Vlasenko80edead2007-08-02 22:31:05 +0000480 fd_set rfds;
Mike Frysinger7031f622006-05-08 03:20:50 +0000481
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200482#if ENABLE_LONG_OPTS
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000483 static const char udhcpc_longopts[] ALIGN1 =
Denis Vlasenko19183682007-12-10 07:03:38 +0000484 "clientid\0" Required_argument "c"
485 "clientid-none\0" No_argument "C"
486 "vendorclass\0" Required_argument "V"
Denis Vlasenko19183682007-12-10 07:03:38 +0000487 "hostname\0" Required_argument "H"
488 "fqdn\0" Required_argument "F"
489 "interface\0" Required_argument "i"
490 "now\0" No_argument "n"
491 "pidfile\0" Required_argument "p"
492 "quit\0" No_argument "q"
493 "release\0" No_argument "R"
494 "request\0" Required_argument "r"
495 "script\0" Required_argument "s"
496 "timeout\0" Required_argument "T"
497 "version\0" No_argument "v"
498 "retries\0" Required_argument "t"
499 "tryagain\0" Required_argument "A"
500 "syslog\0" No_argument "S"
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000501 "request-option\0" Required_argument "O"
502 "no-default-options\0" No_argument "o"
503 "foreground\0" No_argument "f"
504 "background\0" No_argument "b"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000505 IF_FEATURE_UDHCPC_ARPING("arping\0" No_argument "a")
506 IF_FEATURE_UDHCP_PORT("client-port\0" Required_argument "P")
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000507 ;
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000508#endif
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000509 enum {
510 OPT_c = 1 << 0,
511 OPT_C = 1 << 1,
512 OPT_V = 1 << 2,
513 OPT_H = 1 << 3,
514 OPT_h = 1 << 4,
515 OPT_F = 1 << 5,
Denis Vlasenkof716a6d2008-06-15 09:49:21 +0000516 OPT_i = 1 << 6,
517 OPT_n = 1 << 7,
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000518 OPT_p = 1 << 8,
519 OPT_q = 1 << 9,
520 OPT_R = 1 << 10,
521 OPT_r = 1 << 11,
522 OPT_s = 1 << 12,
523 OPT_T = 1 << 13,
524 OPT_t = 1 << 14,
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200525 OPT_S = 1 << 15,
526 OPT_A = 1 << 16,
527 OPT_O = 1 << 17,
528 OPT_o = 1 << 18,
529 OPT_f = 1 << 19,
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000530/* The rest has variable bit positions, need to be clever */
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200531 OPTBIT_f = 19,
532 USE_FOR_MMU( OPTBIT_b,)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000533 IF_FEATURE_UDHCPC_ARPING(OPTBIT_a,)
534 IF_FEATURE_UDHCP_PORT( OPTBIT_P,)
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200535 USE_FOR_MMU( OPT_b = 1 << OPTBIT_b,)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000536 IF_FEATURE_UDHCPC_ARPING(OPT_a = 1 << OPTBIT_a,)
537 IF_FEATURE_UDHCP_PORT( OPT_P = 1 << OPTBIT_P,)
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000538 };
539
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000540 /* Default options. */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000541 IF_FEATURE_UDHCP_PORT(SERVER_PORT = 67;)
542 IF_FEATURE_UDHCP_PORT(CLIENT_PORT = 68;)
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000543 client_config.interface = "eth0";
544 client_config.script = DEFAULT_SCRIPT;
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100545 str_V = "udhcp "BB_VER;
Mike Frysinger7031f622006-05-08 03:20:50 +0000546
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000547 /* Parse command line */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000548 /* Cc: mutually exclusive; O: list; -T,-t,-A take numeric param */
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200549 opt_complementary = "c--C:C--c:O::T+:t+:A+"
550#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
551 ":vv"
552#endif
553 ;
Denys Vlasenkof3b92d32009-06-19 12:10:38 +0200554 IF_LONG_OPTS(applet_long_options = udhcpc_longopts;)
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200555 opt = getopt32(argv, "c:CV:H:h:F:i:np:qRr:s:T:t:SA:O:of"
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000556 USE_FOR_MMU("b")
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000557 IF_FEATURE_UDHCPC_ARPING("a")
558 IF_FEATURE_UDHCP_PORT("P:")
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200559 "v"
Denis Vlasenko19183682007-12-10 07:03:38 +0000560 , &str_c, &str_V, &str_h, &str_h, &str_F
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000561 , &client_config.interface, &client_config.pidfile, &str_r /* i,p */
562 , &client_config.script /* s */
563 , &discover_timeout, &discover_retries, &tryagain_timeout /* T,t,A */
Denis Vlasenko19183682007-12-10 07:03:38 +0000564 , &list_O
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000565 IF_FEATURE_UDHCP_PORT(, &str_P)
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200566#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
567 , &dhcp_verbose
568#endif
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000569 );
Denis Vlasenko68af8e72007-11-22 21:41:14 +0000570 if (opt & (OPT_h|OPT_H))
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000571 client_config.hostname = alloc_dhcp_option(DHCP_HOST_NAME, str_h, 0);
572 if (opt & OPT_F) {
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100573 /* FQDN option format: [0x51][len][flags][0][0]<fqdn> */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000574 client_config.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3);
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100575 /* Flag bits: 0000NEOS
576 * S: 1 = Client requests server to update A RR in DNS as well as PTR
577 * O: 1 = Server indicates to client that DNS has been updated regardless
578 * E: 1 = Name is in DNS format, i.e. <4>host<6>domain<3>com<0>,
579 * not "host.domain.com". Format 0 is obsolete.
580 * N: 1 = Client requests server to not update DNS (S must be 0 then)
581 * Two [0] bytes which follow are deprecated and must be 0.
582 */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000583 client_config.fqdn[OPT_DATA + 0] = 0x1;
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100584 /*client_config.fqdn[OPT_DATA + 1] = 0; - xzalloc did it */
585 /*client_config.fqdn[OPT_DATA + 2] = 0; */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000586 }
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000587 if (opt & OPT_r)
588 requested_ip = inet_addr(str_r);
Denis Vlasenkod55fe3e2008-02-04 13:12:16 +0000589#if ENABLE_FEATURE_UDHCP_PORT
590 if (opt & OPT_P) {
591 CLIENT_PORT = xatou16(str_P);
592 SERVER_PORT = CLIENT_PORT - 1;
593 }
594#endif
Denis Vlasenko2e4c3c42008-04-02 13:04:19 +0000595 if (opt & OPT_o)
596 client_config.no_default_options = 1;
Denis Vlasenko19183682007-12-10 07:03:38 +0000597 while (list_O) {
Denis Vlasenko18c93022008-08-27 22:29:43 +0000598 char *optstr = llist_pop(&list_O);
599 int n = index_in_strings(dhcp_option_strings, optstr);
Denis Vlasenko19183682007-12-10 07:03:38 +0000600 if (n < 0)
Denis Vlasenko18c93022008-08-27 22:29:43 +0000601 bb_error_msg_and_die("unknown option '%s'", optstr);
Denis Vlasenko19183682007-12-10 07:03:38 +0000602 n = dhcp_options[n].code;
603 client_config.opt_mask[n >> 3] |= 1 << (n & 7);
Denis Vlasenko19183682007-12-10 07:03:38 +0000604 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000605
Denys Vlasenko26918dd2009-06-16 12:04:23 +0200606 if (udhcp_read_interface(client_config.interface,
607 &client_config.ifindex,
608 NULL,
609 client_config.client_mac)
610 ) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000611 return 1;
Denys Vlasenko26918dd2009-06-16 12:04:23 +0200612 }
613
Denys Vlasenko87fa2162010-03-20 18:06:23 +0100614 if (opt & OPT_c) {
615 client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, str_c, 0);
616 } else if (!(opt & OPT_C)) {
617 /* not set and not suppressed, set the default client ID */
618 client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, "", 7);
619 client_config.clientid[OPT_DATA] = 1; /* type: ethernet */
620 memcpy(client_config.clientid + OPT_DATA+1, client_config.client_mac, 6);
621 }
622 if (str_V[0] != '\0')
623 client_config.vendorclass = alloc_dhcp_option(DHCP_VENDOR, str_V, 0);
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000624#if !BB_MMU
625 /* on NOMMU reexec (i.e., background) early */
626 if (!(opt & OPT_f)) {
627 bb_daemonize_or_rexec(0 /* flags */, argv);
Denis Vlasenkoa19e6492009-03-11 14:40:00 +0000628 logmode = LOGMODE_NONE;
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000629 }
630#endif
631 if (opt & OPT_S) {
Denis Vlasenko5e4fda02009-03-08 23:46:48 +0000632 openlog(applet_name, LOG_PID, LOG_DAEMON);
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000633 logmode |= LOGMODE_SYSLOG;
634 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000635
Denis Vlasenko80edead2007-08-02 22:31:05 +0000636 /* Make sure fd 0,1,2 are open */
637 bb_sanitize_stdio();
638 /* Equivalent of doing a fflush after every \n */
639 setlinebuf(stdout);
Denis Vlasenko80edead2007-08-02 22:31:05 +0000640 /* Create pidfile */
641 write_pidfile(client_config.pidfile);
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000642 /* Goes to stdout (unless NOMMU) and possibly syslog */
Denis Vlasenkodef88982007-10-07 17:06:01 +0000643 bb_info_msg("%s (v"BB_VER") started", applet_name);
Denys Vlasenko4248c332009-06-26 23:23:16 +0200644 /* Set up the signal pipe */
Mike Frysinger7031f622006-05-08 03:20:50 +0000645 udhcp_sp_setup();
Denys Vlasenko8d114452010-03-22 13:44:09 +0100646 /* We want random_xid to be random... */
647 srand(monotonic_us());
Mike Frysinger7031f622006-05-08 03:20:50 +0000648
649 state = INIT_SELECTING;
Rob Landley3f785612006-05-28 01:06:36 +0000650 udhcp_run_script(NULL, "deconfig");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000651 change_listen_mode(LISTEN_RAW);
Denis Vlasenkob539c842007-11-29 08:17:45 +0000652 packet_num = 0;
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000653 timeout = 0;
Denis Vlasenko19903f02008-05-21 07:03:03 +0000654 already_waited_sec = 0;
Mike Frysinger7031f622006-05-08 03:20:50 +0000655
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000656 /* Main event loop. select() waits on signal pipe and possibly
657 * on sockfd.
658 * "continue" statements in code below jump to the top of the loop.
659 */
Mike Frysinger7031f622006-05-08 03:20:50 +0000660 for (;;) {
Denis Vlasenkoec64a572009-01-14 00:28:03 +0000661 /* silence "uninitialized!" warning */
662 unsigned timestamp_before_wait = timestamp_before_wait;
Mike Frysinger7031f622006-05-08 03:20:50 +0000663
Denis Vlasenko517413f2008-12-10 11:16:47 +0000664 //bb_error_msg("sockfd:%d, listen_mode:%d", sockfd, listen_mode);
665
666 /* Was opening raw or udp socket here
667 * if (listen_mode != LISTEN_NONE && sockfd < 0),
668 * but on fast network renew responses return faster
669 * than we open sockets. Thus this code is moved
670 * to change_listen_mode(). Thus we open listen socket
671 * BEFORE we send renew request (see "case BOUND:"). */
672
Denis Vlasenkofbd29182007-04-07 01:05:47 +0000673 max_fd = udhcp_sp_fd_set(&rfds, sockfd);
Mike Frysinger7031f622006-05-08 03:20:50 +0000674
Denis Vlasenko19903f02008-05-21 07:03:03 +0000675 tv.tv_sec = timeout - already_waited_sec;
Denis Vlasenkob2342912008-05-21 07:02:16 +0000676 tv.tv_usec = 0;
Denys Vlasenko8d114452010-03-22 13:44:09 +0100677 retval = 0;
678 /* If we already timed out, fall through with retval = 0, else... */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200679 if ((int)tv.tv_sec > 0) {
Denis Vlasenkob2342912008-05-21 07:02:16 +0000680 timestamp_before_wait = (unsigned)monotonic_sec();
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200681 log1("Waiting on select...");
Mike Frysinger7031f622006-05-08 03:20:50 +0000682 retval = select(max_fd + 1, &rfds, NULL, NULL, &tv);
Denis Vlasenkob2342912008-05-21 07:02:16 +0000683 if (retval < 0) {
684 /* EINTR? A signal was caught, don't panic */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200685 if (errno == EINTR) {
686 already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
Denis Vlasenkob2342912008-05-21 07:02:16 +0000687 continue;
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200688 }
Denis Vlasenko80edead2007-08-02 22:31:05 +0000689 /* Else: an error occured, panic! */
690 bb_perror_msg_and_die("select");
691 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000692 }
693
694 /* If timeout dropped to zero, time to become active:
695 * resend discover/renew/whatever
696 */
697 if (retval == 0) {
Denis Vlasenkof1980f62008-09-26 09:34:59 +0000698 /* We will restart the wait in any case */
Denis Vlasenko19903f02008-05-21 07:03:03 +0000699 already_waited_sec = 0;
700
Mike Frysinger7031f622006-05-08 03:20:50 +0000701 switch (state) {
702 case INIT_SELECTING:
Denis Vlasenko223bc972007-11-22 00:58:49 +0000703 if (packet_num < discover_retries) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000704 if (packet_num == 0)
705 xid = random_xid();
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200706 /* broadcast */
707 send_discover(xid, requested_ip);
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000708 timeout = discover_timeout;
Mike Frysinger7031f622006-05-08 03:20:50 +0000709 packet_num++;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000710 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +0000711 }
Denis Vlasenkocdb0b652008-09-26 09:34:15 +0000712 leasefail:
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000713 udhcp_run_script(NULL, "leasefail");
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000714#if BB_MMU /* -b is not supported on NOMMU */
715 if (opt & OPT_b) { /* background if no lease */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000716 bb_info_msg("No lease, forking to background");
717 client_background();
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000718 /* do not background again! */
719 opt = ((opt & ~OPT_b) | OPT_f);
720 } else
721#endif
722 if (opt & OPT_n) { /* abort if no lease */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000723 bb_info_msg("No lease, failing");
724 retval = 1;
725 goto ret;
726 }
Denis Vlasenko6de89942008-05-21 07:05:06 +0000727 /* wait before trying again */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000728 timeout = tryagain_timeout;
729 packet_num = 0;
730 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +0000731 case REQUESTING:
Denis Vlasenko223bc972007-11-22 00:58:49 +0000732 if (packet_num < discover_retries) {
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200733 /* send broadcast select packet */
734 send_select(xid, server_addr, requested_ip);
Denis Vlasenko6de89942008-05-21 07:05:06 +0000735 timeout = discover_timeout;
Mike Frysinger7031f622006-05-08 03:20:50 +0000736 packet_num++;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000737 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +0000738 }
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200739 /* Timed out, go back to init state.
740 * "discover...select...discover..." loops
Denis Vlasenko7d9399e2008-09-26 22:21:03 +0000741 * were seen in the wild. Treat them similarly
Denis Vlasenkocdb0b652008-09-26 09:34:15 +0000742 * to "no response to discover" case */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200743 change_listen_mode(LISTEN_RAW);
Denis Vlasenko7d9399e2008-09-26 22:21:03 +0000744 state = INIT_SELECTING;
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200745 goto leasefail;
Mike Frysinger7031f622006-05-08 03:20:50 +0000746 case BOUND:
Denys Vlasenko7d6a7912009-07-19 04:24:23 +0200747 /* 1/2 lease passed, enter renewing state */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200748 state = RENEWING;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000749 change_listen_mode(LISTEN_KERNEL);
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200750 log1("Entering renew state");
Mike Frysinger7031f622006-05-08 03:20:50 +0000751 /* fall right through */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200752 case RENEW_REQUESTED: /* manual (SIGUSR1) renew */
753 case_RENEW_REQUESTED:
Mike Frysinger7031f622006-05-08 03:20:50 +0000754 case RENEWING:
Denis Vlasenko19903f02008-05-21 07:03:03 +0000755 if (timeout > 60) {
Denys Vlasenko7d6a7912009-07-19 04:24:23 +0200756 /* send an unicast renew request */
757 /* Sometimes observed to fail (EADDRNOTAVAIL) to bind
758 * a new UDP socket for sending inside send_renew.
759 * I hazard to guess existing listening socket
760 * is somehow conflicting with it, but why is it
761 * not deterministic then?! Strange.
Denys Vlasenko753a3ce2009-07-19 04:27:10 +0200762 * Anyway, it does recover by eventually failing through
Denys Vlasenko7d6a7912009-07-19 04:24:23 +0200763 * into INIT_SELECTING state.
764 */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200765 send_renew(xid, server_addr, requested_ip);
Denis Vlasenko19903f02008-05-21 07:03:03 +0000766 timeout >>= 1;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000767 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +0000768 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000769 /* Timed out, enter rebinding state */
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200770 log1("Entering rebinding state");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000771 state = REBINDING;
Denis Vlasenko6de89942008-05-21 07:05:06 +0000772 /* fall right through */
Mike Frysinger7031f622006-05-08 03:20:50 +0000773 case REBINDING:
Denys Vlasenko219757f2009-10-08 23:05:46 +0200774 /* Switch to bcast receive */
775 change_listen_mode(LISTEN_RAW);
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000776 /* Lease is *really* about to run out,
777 * try to find DHCP server using broadcast */
Denis Vlasenko19903f02008-05-21 07:03:03 +0000778 if (timeout > 0) {
Denys Vlasenko7d6a7912009-07-19 04:24:23 +0200779 /* send a broadcast renew request */
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200780 send_renew(xid, 0 /*INADDR_ANY*/, requested_ip);
Denis Vlasenko19903f02008-05-21 07:03:03 +0000781 timeout >>= 1;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000782 continue;
Mike Frysinger7031f622006-05-08 03:20:50 +0000783 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000784 /* Timed out, enter init state */
785 bb_info_msg("Lease lost, entering init state");
786 udhcp_run_script(NULL, "deconfig");
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000787 state = INIT_SELECTING;
Denis Vlasenko19903f02008-05-21 07:03:03 +0000788 /*timeout = 0; - already is */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000789 packet_num = 0;
790 continue;
791 /* case RELEASED: */
Mike Frysinger7031f622006-05-08 03:20:50 +0000792 }
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000793 /* yah, I know, *you* say it would never happen */
794 timeout = INT_MAX;
795 continue; /* back to main loop */
Denys Vlasenko4248c332009-06-26 23:23:16 +0200796 } /* if select timed out */
797
798 /* select() didn't timeout, something happened */
799
800 /* Is it a signal? */
801 /* note: udhcp_sp_read checks FD_ISSET before reading */
802 switch (udhcp_sp_read(&rfds)) {
803 case SIGUSR1:
804 perform_renew();
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200805 if (state == RENEW_REQUESTED)
806 goto case_RENEW_REQUESTED;
Denys Vlasenko4248c332009-06-26 23:23:16 +0200807 /* Start things over */
808 packet_num = 0;
Denys Vlasenko7d6a7912009-07-19 04:24:23 +0200809 /* Kill any timeouts, user wants this to hurry along */
Denys Vlasenko4248c332009-06-26 23:23:16 +0200810 timeout = 0;
811 continue;
812 case SIGUSR2:
813 perform_release(requested_ip, server_addr);
814 timeout = INT_MAX;
815 continue;
816 case SIGTERM:
817 bb_info_msg("Received SIGTERM");
818 if (opt & OPT_R) /* release on quit */
819 perform_release(requested_ip, server_addr);
820 goto ret0;
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000821 }
822
Denis Vlasenko739e30f2008-09-26 23:45:20 +0000823 /* Is it a packet? */
Denys Vlasenko4248c332009-06-26 23:23:16 +0200824 if (listen_mode == LISTEN_NONE || !FD_ISSET(sockfd, &rfds))
825 continue; /* no */
Mike Frysinger7031f622006-05-08 03:20:50 +0000826
Denys Vlasenko4248c332009-06-26 23:23:16 +0200827 {
828 int len;
829
830 /* A packet is ready, read it */
Mike Frysinger7031f622006-05-08 03:20:50 +0000831 if (listen_mode == LISTEN_KERNEL)
Denis Vlasenko6de89942008-05-21 07:05:06 +0000832 len = udhcp_recv_kernel_packet(&packet, sockfd);
Denis Vlasenkob76b9a42008-01-25 22:46:34 +0000833 else
Denis Vlasenko6de89942008-05-21 07:05:06 +0000834 len = udhcp_recv_raw_packet(&packet, sockfd);
Denys Vlasenko4248c332009-06-26 23:23:16 +0200835 if (len == -1) {
836 /* Error is severe, reopen socket */
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200837 bb_info_msg("Read error: %s, reopening socket", strerror(errno));
Denis Vlasenko6de89942008-05-21 07:05:06 +0000838 sleep(discover_timeout); /* 3 seconds by default */
839 change_listen_mode(listen_mode); /* just close and reopen */
840 }
Denis Vlasenkob2342912008-05-21 07:02:16 +0000841 /* If this packet will turn out to be unrelated/bogus,
842 * we will go back and wait for next one.
843 * Be sure timeout is properly decreased. */
Denis Vlasenko19903f02008-05-21 07:03:03 +0000844 already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
Denis Vlasenko6de89942008-05-21 07:05:06 +0000845 if (len < 0)
846 continue;
Denys Vlasenko4248c332009-06-26 23:23:16 +0200847 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000848
Denys Vlasenko4248c332009-06-26 23:23:16 +0200849 if (packet.xid != xid) {
850 log1("xid %x (our is %x), ignoring packet",
851 (unsigned)packet.xid, (unsigned)xid);
852 continue;
853 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000854
Denys Vlasenko4248c332009-06-26 23:23:16 +0200855 /* Ignore packets that aren't for us */
856 if (packet.hlen != 6
857 || memcmp(packet.chaddr, client_config.client_mac, 6)
858 ) {
Denys Vlasenkoac906fa2009-06-17 11:54:52 +0200859//FIXME: need to also check that last 10 bytes are zero
Denys Vlasenko4248c332009-06-26 23:23:16 +0200860 log1("chaddr does not match, ignoring packet"); // log2?
861 continue;
862 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000863
Denys Vlasenko4248c332009-06-26 23:23:16 +0200864 message = get_option(&packet, DHCP_MESSAGE_TYPE);
865 if (message == NULL) {
866 bb_error_msg("no message type option, ignoring packet");
867 continue;
868 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000869
Denys Vlasenko4248c332009-06-26 23:23:16 +0200870 switch (state) {
871 case INIT_SELECTING:
872 /* Must be a DHCPOFFER to one of our xid's */
873 if (*message == DHCPOFFER) {
874 /* TODO: why we don't just fetch server's IP from IP header? */
875 temp = get_option(&packet, DHCP_SERVER_ID);
876 if (!temp) {
877 bb_error_msg("no server ID in message");
878 continue;
879 /* still selecting - this server looks bad */
Mike Frysinger7031f622006-05-08 03:20:50 +0000880 }
Denys Vlasenko4248c332009-06-26 23:23:16 +0200881 /* it IS unaligned sometimes, don't "optimize" */
882 move_from_unaligned32(server_addr, temp);
883 xid = packet.xid;
884 requested_ip = packet.yiaddr;
885
886 /* enter requesting state */
887 state = REQUESTING;
888 timeout = 0;
889 packet_num = 0;
890 already_waited_sec = 0;
891 }
892 continue;
Denys Vlasenko4248c332009-06-26 23:23:16 +0200893 case REQUESTING:
894 case RENEWING:
Denys Vlasenko13ca4b12009-07-19 04:07:21 +0200895 case RENEW_REQUESTED:
Denys Vlasenko4248c332009-06-26 23:23:16 +0200896 case REBINDING:
897 if (*message == DHCPACK) {
898 temp = get_option(&packet, DHCP_LEASE_TIME);
899 if (!temp) {
900 bb_error_msg("no lease time with ACK, using 1 hour lease");
901 lease_seconds = 60 * 60;
902 } else {
903 /* it IS unaligned sometimes, don't "optimize" */
904 move_from_unaligned32(lease_seconds, temp);
905 lease_seconds = ntohl(lease_seconds);
906 lease_seconds &= 0x0fffffff; /* paranoia: must not be prone to overflows */
907 if (lease_seconds < 10) /* and not too small */
908 lease_seconds = 10;
909 }
Denis Vlasenko223bc972007-11-22 00:58:49 +0000910#if ENABLE_FEATURE_UDHCPC_ARPING
Denys Vlasenko4248c332009-06-26 23:23:16 +0200911 if (opt & OPT_a) {
Denis Vlasenko739e30f2008-09-26 23:45:20 +0000912/* RFC 2131 3.1 paragraph 5:
913 * "The client receives the DHCPACK message with configuration
914 * parameters. The client SHOULD perform a final check on the
915 * parameters (e.g., ARP for allocated network address), and notes
916 * the duration of the lease specified in the DHCPACK message. At this
917 * point, the client is configured. If the client detects that the
918 * address is already in use (e.g., through the use of ARP),
919 * the client MUST send a DHCPDECLINE message to the server and restarts
920 * the configuration process..." */
Denys Vlasenko4248c332009-06-26 23:23:16 +0200921 if (!arpping(packet.yiaddr,
922 NULL,
923 (uint32_t) 0,
924 client_config.client_mac,
925 client_config.interface)
926 ) {
927 bb_info_msg("Offered address is in use "
928 "(got ARP reply), declining");
929 send_decline(xid, server_addr, packet.yiaddr);
Denis Vlasenko223bc972007-11-22 00:58:49 +0000930
Denys Vlasenko4248c332009-06-26 23:23:16 +0200931 if (state != REQUESTING)
932 udhcp_run_script(NULL, "deconfig");
933 change_listen_mode(LISTEN_RAW);
934 state = INIT_SELECTING;
935 requested_ip = 0;
936 timeout = tryagain_timeout;
937 packet_num = 0;
938 already_waited_sec = 0;
939 continue; /* back to main loop */
Denis Vlasenko223bc972007-11-22 00:58:49 +0000940 }
Denys Vlasenko4248c332009-06-26 23:23:16 +0200941 }
Denis Vlasenko223bc972007-11-22 00:58:49 +0000942#endif
Denys Vlasenko4248c332009-06-26 23:23:16 +0200943 /* enter bound state */
944 timeout = lease_seconds / 2;
945 {
946 struct in_addr temp_addr;
947 temp_addr.s_addr = packet.yiaddr;
948 bb_info_msg("Lease of %s obtained, lease time %u",
949 inet_ntoa(temp_addr), (unsigned)lease_seconds);
950 }
951 requested_ip = packet.yiaddr;
Denys Vlasenko4abfc262009-07-19 04:35:16 +0200952 udhcp_run_script(&packet, state == REQUESTING ? "bound" : "renew");
Mike Frysinger7031f622006-05-08 03:20:50 +0000953
Denys Vlasenko4248c332009-06-26 23:23:16 +0200954 state = BOUND;
955 change_listen_mode(LISTEN_NONE);
956 if (opt & OPT_q) { /* quit after lease */
957 if (opt & OPT_R) /* release on quit */
958 perform_release(requested_ip, server_addr);
959 goto ret0;
960 }
Justin Maggardaa369e02009-08-13 01:26:17 +0200961 /* future renew failures should not exit (JM) */
962 opt &= ~OPT_n;
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000963#if BB_MMU /* NOMMU case backgrounded earlier */
Denys Vlasenko4248c332009-06-26 23:23:16 +0200964 if (!(opt & OPT_f)) {
965 client_background();
966 /* do not background again! */
967 opt = ((opt & ~OPT_b) | OPT_f);
968 }
Denis Vlasenko21765fa2008-06-13 20:44:05 +0000969#endif
Denys Vlasenko4248c332009-06-26 23:23:16 +0200970 already_waited_sec = 0;
971 continue; /* back to main loop */
Mike Frysinger7031f622006-05-08 03:20:50 +0000972 }
Denys Vlasenko4248c332009-06-26 23:23:16 +0200973 if (*message == DHCPNAK) {
974 /* return to init state */
975 bb_info_msg("Received DHCP NAK");
976 udhcp_run_script(&packet, "nak");
977 if (state != REQUESTING)
978 udhcp_run_script(NULL, "deconfig");
979 change_listen_mode(LISTEN_RAW);
980 sleep(3); /* avoid excessive network traffic */
981 state = INIT_SELECTING;
982 requested_ip = 0;
Denis Vlasenkob539c842007-11-29 08:17:45 +0000983 timeout = 0;
Denys Vlasenko4248c332009-06-26 23:23:16 +0200984 packet_num = 0;
985 already_waited_sec = 0;
Mike Frysinger7031f622006-05-08 03:20:50 +0000986 }
Denys Vlasenko4248c332009-06-26 23:23:16 +0200987 continue;
988 /* case BOUND: - ignore all packets */
989 /* case RELEASED: - ignore all packets */
Mike Frysinger7031f622006-05-08 03:20:50 +0000990 }
Denys Vlasenko4248c332009-06-26 23:23:16 +0200991 /* back to main loop */
Denis Vlasenko9cdfd142007-11-22 01:00:00 +0000992 } /* for (;;) - main loop ends */
993
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000994 ret0:
995 retval = 0;
996 ret:
Denis Vlasenkob2342912008-05-21 07:02:16 +0000997 /*if (client_config.pidfile) - remove_pidfile has its own check */
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000998 remove_pidfile(client_config.pidfile);
999 return retval;
Mike Frysinger7031f622006-05-08 03:20:50 +00001000}