blob: b3b89459e608767125db5b6335cef3e27aa137bc [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Mike Frysinger7031f622006-05-08 03:20:50 +00002/* dhcpc.c
3 *
4 * udhcp DHCP client
5 *
6 * Russ Dill <Russ.Dill@asu.edu> July 2001
7 *
8 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
9 */
10
Mike Frysinger7031f622006-05-08 03:20:50 +000011#include <getopt.h>
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +000012#include <syslog.h>
Mike Frysinger7031f622006-05-08 03:20:50 +000013
Denis Vlasenko1caca342007-08-02 10:14:29 +000014/* Override ENABLE_FEATURE_PIDFILE - ifupdown needs our pidfile to always exist */
15#define WANT_PIDFILE 1
Mike Frysinger7031f622006-05-08 03:20:50 +000016#include "common.h"
17#include "dhcpd.h"
18#include "dhcpc.h"
19#include "options.h"
Denis Vlasenko5a3395b2006-11-18 19:51:32 +000020
Mike Frysinger7031f622006-05-08 03:20:50 +000021
Denis Vlasenko239369b2006-09-07 17:05:44 +000022/* Something is definitely wrong here. IPv4 addresses
23 * in variables of type long?? BTW, we use inet_ntoa()
24 * in the code. Manpage says that struct in_addr has a member of type long (!)
25 * which holds IPv4 address, and the struct is passed by value (!!)
26 */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000027static unsigned timeout;
28static uint32_t requested_ip; /* = 0 */
Denis Vlasenko74c9d232007-01-18 15:42:00 +000029static uint32_t server_addr;
Mike Frysinger7031f622006-05-08 03:20:50 +000030static int packet_num; /* = 0 */
Denis Vlasenkofbd29182007-04-07 01:05:47 +000031static int sockfd = -1;
Mike Frysinger7031f622006-05-08 03:20:50 +000032
33#define LISTEN_NONE 0
34#define LISTEN_KERNEL 1
35#define LISTEN_RAW 2
Denis Vlasenkofbd29182007-04-07 01:05:47 +000036static smallint listen_mode;
37
38static smallint state;
Mike Frysinger7031f622006-05-08 03:20:50 +000039
Denis Vlasenkodeabacd2007-09-30 17:55:43 +000040/* struct client_config_t client_config is in bb_common_bufsiz1 */
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +000041
Mike Frysinger7031f622006-05-08 03:20:50 +000042
Mike Frysinger7031f622006-05-08 03:20:50 +000043/* just a little helper */
44static void change_mode(int new_mode)
45{
Denis Vlasenko3538b9a2006-09-06 18:36:50 +000046 DEBUG("entering %s listen mode",
Mike Frysinger7031f622006-05-08 03:20:50 +000047 new_mode ? (new_mode == 1 ? "kernel" : "raw") : "none");
Denis Vlasenkofbd29182007-04-07 01:05:47 +000048 if (sockfd >= 0) {
49 close(sockfd);
50 sockfd = -1;
51 }
Mike Frysinger7031f622006-05-08 03:20:50 +000052 listen_mode = new_mode;
53}
54
55
56/* perform a renew */
57static void perform_renew(void)
58{
Denis Vlasenko3538b9a2006-09-06 18:36:50 +000059 bb_info_msg("Performing a DHCP renew");
Mike Frysinger7031f622006-05-08 03:20:50 +000060 switch (state) {
61 case BOUND:
62 change_mode(LISTEN_KERNEL);
63 case RENEWING:
64 case REBINDING:
65 state = RENEW_REQUESTED;
66 break;
67 case RENEW_REQUESTED: /* impatient are we? fine, square 1 */
Rob Landley3f785612006-05-28 01:06:36 +000068 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +000069 case REQUESTING:
70 case RELEASED:
71 change_mode(LISTEN_RAW);
72 state = INIT_SELECTING;
73 break;
74 case INIT_SELECTING:
75 break;
76 }
77
78 /* start things over */
79 packet_num = 0;
80
81 /* Kill any timeouts because the user wants this to hurry along */
82 timeout = 0;
83}
84
85
86/* perform a release */
87static void perform_release(void)
88{
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000089 char buffer[sizeof("255.255.255.255")];
Mike Frysinger7031f622006-05-08 03:20:50 +000090 struct in_addr temp_addr;
91
92 /* send release packet */
93 if (state == BOUND || state == RENEWING || state == REBINDING) {
94 temp_addr.s_addr = server_addr;
Denis Vlasenko42b3dea2007-07-03 15:47:50 +000095 strcpy(buffer, inet_ntoa(temp_addr));
Mike Frysinger7031f622006-05-08 03:20:50 +000096 temp_addr.s_addr = requested_ip;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +000097 bb_info_msg("Unicasting a release of %s to %s",
Mike Frysinger7031f622006-05-08 03:20:50 +000098 inet_ntoa(temp_addr), buffer);
99 send_release(server_addr, requested_ip); /* unicast */
Rob Landley3f785612006-05-28 01:06:36 +0000100 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +0000101 }
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000102 bb_info_msg("Entering released state");
Mike Frysinger7031f622006-05-08 03:20:50 +0000103
104 change_mode(LISTEN_NONE);
105 state = RELEASED;
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000106 timeout = INT_MAX;
Mike Frysinger7031f622006-05-08 03:20:50 +0000107}
108
109
110static void client_background(void)
111{
Denis Vlasenko80edead2007-08-02 22:31:05 +0000112#if !BB_MMU
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +0000113 bb_error_msg("cannot background in uclinux (yet)");
114/* ... mainly because udhcpc calls client_background()
115 * in _the _middle _of _udhcpc _run_, not at the start!
116 * If that will be properly disabled for NOMMU, client_background()
117 * will work on NOMMU too */
118#else
Denis Vlasenkoc82b5102007-07-01 17:05:57 +0000119 bb_daemonize(0);
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000120 logmode &= ~LOGMODE_STDIO;
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000121 /* rewrite pidfile, as our pid is different now */
Denis Vlasenko80edead2007-08-02 22:31:05 +0000122 write_pidfile(client_config.pidfile);
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +0000123#endif
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000124 /* Do not fork again. */
125 client_config.foreground = 1;
Mike Frysinger7031f622006-05-08 03:20:50 +0000126 client_config.background_if_no_lease = 0;
127}
128
129
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000130static uint8_t* alloc_dhcp_option(int code, const char *str, int extra)
131{
132 uint8_t *storage;
133 int len = strlen(str);
134 if (len > 255) len = 255;
135 storage = xzalloc(len + extra + OPT_DATA);
136 storage[OPT_CODE] = code;
137 storage[OPT_LEN] = len + extra;
138 memcpy(storage + extra + OPT_DATA, str, len);
139 return storage;
140}
141
142
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000143int udhcpc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +0000144int udhcpc_main(int argc, char **argv)
Mike Frysinger7031f622006-05-08 03:20:50 +0000145{
146 uint8_t *temp, *message;
Paul Fox49cce2b2007-11-07 16:01:28 +0000147 char *str_c, *str_V, *str_h, *str_F, *str_r, *str_T, *str_A, *str_t;
Denis Vlasenko223bc972007-11-22 00:58:49 +0000148 int tryagain_timeout = 60;
149 int discover_timeout = 3;
150 int discover_retries = 3;
151#if ENABLE_FEATURE_UDHCPC_ARPING
152 int decline_wait = 10;
153 char *str_W;
154#endif
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000155 uint32_t xid = 0;
156 uint32_t lease = 0; /* can be given as 32-bit quantity */
Denis Vlasenko80edead2007-08-02 22:31:05 +0000157 unsigned t1 = 0, t2 = 0; /* what a wonderful names */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000158 unsigned start = 0;
159 unsigned now;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000160 unsigned opt;
Mike Frysinger7031f622006-05-08 03:20:50 +0000161 int max_fd;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000162 int retval;
163 int len;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000164 struct timeval tv;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000165 struct in_addr temp_addr;
Denis Vlasenko80edead2007-08-02 22:31:05 +0000166 struct dhcpMessage packet;
167 fd_set rfds;
Mike Frysinger7031f622006-05-08 03:20:50 +0000168
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000169 enum {
170 OPT_c = 1 << 0,
171 OPT_C = 1 << 1,
172 OPT_V = 1 << 2,
173 OPT_f = 1 << 3,
174 OPT_b = 1 << 4,
175 OPT_H = 1 << 5,
176 OPT_h = 1 << 6,
177 OPT_F = 1 << 7,
178 OPT_i = 1 << 8,
179 OPT_n = 1 << 9,
180 OPT_p = 1 << 10,
181 OPT_q = 1 << 11,
182 OPT_R = 1 << 12,
183 OPT_r = 1 << 13,
184 OPT_s = 1 << 14,
185 OPT_T = 1 << 15,
186 OPT_t = 1 << 16,
187 OPT_v = 1 << 17,
Denis Vlasenko3d17d2b2007-08-14 16:45:29 +0000188 OPT_S = 1 << 18,
Paul Fox49cce2b2007-11-07 16:01:28 +0000189 OPT_A = 1 << 19,
Denis Vlasenko223bc972007-11-22 00:58:49 +0000190#if ENABLE_FEATURE_UDHCPC_ARPING
191 OPT_a = 1 << 20,
192 OPT_W = 1 << 21,
193#endif
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000194 };
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000195#if ENABLE_GETOPT_LONG
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000196 static const char udhcpc_longopts[] ALIGN1 =
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000197 "clientid\0" Required_argument "c"
198 "clientid-none\0" No_argument "C"
199 "vendorclass\0" Required_argument "V"
200 "foreground\0" No_argument "f"
201 "background\0" No_argument "b"
202 "hostname\0" Required_argument "H"
203 "hostname\0" Required_argument "h"
204 "fqdn\0" Required_argument "F"
205 "interface\0" Required_argument "i"
206 "now\0" No_argument "n"
207 "pidfile\0" Required_argument "p"
208 "quit\0" No_argument "q"
209 "release\0" No_argument "R"
210 "request\0" Required_argument "r"
211 "script\0" Required_argument "s"
212 "timeout\0" Required_argument "T"
213 "version\0" No_argument "v"
214 "retries\0" Required_argument "t"
Paul Fox49cce2b2007-11-07 16:01:28 +0000215 "tryagain\0" Required_argument "A"
Denis Vlasenko3d17d2b2007-08-14 16:45:29 +0000216 "syslog\0" No_argument "S"
Denis Vlasenko223bc972007-11-22 00:58:49 +0000217#if ENABLE_FEATURE_UDHCPC_ARPING
218 "arping\0" No_argument "a"
219 "wait\0" Required_argument "W"
220#endif
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000221 ;
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000222#endif
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000223 /* Default options. */
224 client_config.interface = "eth0";
225 client_config.script = DEFAULT_SCRIPT;
Mike Frysinger7031f622006-05-08 03:20:50 +0000226
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000227 /* Parse command line */
Denis Vlasenko09196572007-07-21 13:27:44 +0000228 opt_complementary = "c--C:C--c" // mutually exclusive
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000229 ":hH:Hh"; // -h and -H are the same
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000230#if ENABLE_GETOPT_LONG
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000231 applet_long_options = udhcpc_longopts;
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000232#endif
Denis Vlasenko223bc972007-11-22 00:58:49 +0000233 opt = getopt32(argv, "c:CV:fbH:h:F:i:np:qRr:s:T:t:vSA:"
234 USE_FEATURE_UDHCPC_ARPING("aW:")
235 , &str_c, &str_V, &str_h, &str_h, &str_F,
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000236 &client_config.interface, &client_config.pidfile, &str_r,
Paul Fox49cce2b2007-11-07 16:01:28 +0000237 &client_config.script, &str_T, &str_t, &str_A
Denis Vlasenko223bc972007-11-22 00:58:49 +0000238 USE_FEATURE_UDHCPC_ARPING(, &str_W)
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000239 );
240
241 if (opt & OPT_c)
242 client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, str_c, 0);
Denis Vlasenko80edead2007-08-02 22:31:05 +0000243 //if (opt & OPT_C)
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000244 if (opt & OPT_V)
245 client_config.vendorclass = alloc_dhcp_option(DHCP_VENDOR, str_V, 0);
246 if (opt & OPT_f)
247 client_config.foreground = 1;
248 if (opt & OPT_b)
249 client_config.background_if_no_lease = 1;
250 if (opt & OPT_h)
251 client_config.hostname = alloc_dhcp_option(DHCP_HOST_NAME, str_h, 0);
252 if (opt & OPT_F) {
253 client_config.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3);
254 /* Flags: 0000NEOS
255 S: 1 => Client requests Server to update A RR in DNS as well as PTR
256 O: 1 => Server indicates to client that DNS has been updated regardless
257 E: 1 => Name data is DNS format, i.e. <4>host<6>domain<4>com<0> not "host.domain.com"
258 N: 1 => Client requests Server to not update DNS
259 */
260 client_config.fqdn[OPT_DATA + 0] = 0x1;
261 /* client_config.fqdn[OPT_DATA + 1] = 0; - redundant */
262 /* client_config.fqdn[OPT_DATA + 2] = 0; - redundant */
263 }
264 // if (opt & OPT_i) client_config.interface = ...
265 if (opt & OPT_n)
266 client_config.abort_if_no_lease = 1;
267 // if (opt & OPT_p) client_config.pidfile = ...
268 if (opt & OPT_q)
269 client_config.quit_after_lease = 1;
270 if (opt & OPT_R)
271 client_config.release_on_quit = 1;
272 if (opt & OPT_r)
273 requested_ip = inet_addr(str_r);
274 // if (opt & OPT_s) client_config.script = ...
275 if (opt & OPT_T)
Denis Vlasenko223bc972007-11-22 00:58:49 +0000276 discover_timeout = xatoi_u(str_T);
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000277 if (opt & OPT_t)
Denis Vlasenko223bc972007-11-22 00:58:49 +0000278 discover_retries = xatoi_u(str_t);
Paul Fox49cce2b2007-11-07 16:01:28 +0000279 if (opt & OPT_A)
Denis Vlasenko223bc972007-11-22 00:58:49 +0000280 tryagain_timeout = xatoi_u(str_A);
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000281 if (opt & OPT_v) {
Denis Vlasenkodef88982007-10-07 17:06:01 +0000282 puts("version "BB_VER);
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000283 return 0;
Mike Frysinger7031f622006-05-08 03:20:50 +0000284 }
285
Denis Vlasenko3d17d2b2007-08-14 16:45:29 +0000286 if (opt & OPT_S) {
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +0000287 openlog(applet_name, LOG_PID, LOG_LOCAL0);
288 logmode |= LOGMODE_SYSLOG;
289 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000290
Denis Vlasenko223bc972007-11-22 00:58:49 +0000291#if ENABLE_FEATURE_UDHCPC_ARPING
292 if (opt & OPT_W)
293 decline_wait = xatou_range(str_W, 10, INT_MAX);
294#endif
295
Mike Frysinger7031f622006-05-08 03:20:50 +0000296 if (read_interface(client_config.interface, &client_config.ifindex,
Denis Vlasenko80edead2007-08-02 22:31:05 +0000297 NULL, client_config.arp))
Mike Frysinger7031f622006-05-08 03:20:50 +0000298 return 1;
299
Denis Vlasenko80edead2007-08-02 22:31:05 +0000300 /* Make sure fd 0,1,2 are open */
301 bb_sanitize_stdio();
302 /* Equivalent of doing a fflush after every \n */
303 setlinebuf(stdout);
304
305 /* Create pidfile */
306 write_pidfile(client_config.pidfile);
307 /* if (!..) bb_perror_msg("cannot create pidfile %s", pidfile); */
308
309 /* Goes to stdout and possibly syslog */
Denis Vlasenkodef88982007-10-07 17:06:01 +0000310 bb_info_msg("%s (v"BB_VER") started", applet_name);
Denis Vlasenkoaf1c8432007-03-26 13:22:35 +0000311
Mike Frysinger7031f622006-05-08 03:20:50 +0000312 /* if not set, and not suppressed, setup the default client ID */
Denis Vlasenko80edead2007-08-02 22:31:05 +0000313 if (!client_config.clientid && !(opt & OPT_C)) {
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000314 client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, "", 7);
Mike Frysinger7031f622006-05-08 03:20:50 +0000315 client_config.clientid[OPT_DATA] = 1;
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000316 memcpy(client_config.clientid + OPT_DATA+1, client_config.arp, 6);
Mike Frysinger7031f622006-05-08 03:20:50 +0000317 }
318
Denis Vlasenkoe2d3ded2006-11-27 23:43:28 +0000319 if (!client_config.vendorclass)
320 client_config.vendorclass = alloc_dhcp_option(DHCP_VENDOR, "udhcp "BB_VER, 0);
Mike Frysinger7031f622006-05-08 03:20:50 +0000321
322 /* setup the signal pipe */
323 udhcp_sp_setup();
324
325 state = INIT_SELECTING;
Rob Landley3f785612006-05-28 01:06:36 +0000326 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +0000327 change_mode(LISTEN_RAW);
Denis Vlasenko80edead2007-08-02 22:31:05 +0000328 tv.tv_sec = 0;
329 goto jump_in;
Mike Frysinger7031f622006-05-08 03:20:50 +0000330
331 for (;;) {
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000332 tv.tv_sec = timeout - monotonic_sec();
Denis Vlasenko80edead2007-08-02 22:31:05 +0000333 jump_in:
Mike Frysinger7031f622006-05-08 03:20:50 +0000334 tv.tv_usec = 0;
335
Denis Vlasenkofbd29182007-04-07 01:05:47 +0000336 if (listen_mode != LISTEN_NONE && sockfd < 0) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000337 if (listen_mode == LISTEN_KERNEL)
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +0000338 sockfd = listen_socket(/*INADDR_ANY,*/ CLIENT_PORT, client_config.interface);
Mike Frysinger7031f622006-05-08 03:20:50 +0000339 else
Denis Vlasenkofbd29182007-04-07 01:05:47 +0000340 sockfd = raw_socket(client_config.ifindex);
Mike Frysinger7031f622006-05-08 03:20:50 +0000341 }
Denis Vlasenkofbd29182007-04-07 01:05:47 +0000342 max_fd = udhcp_sp_fd_set(&rfds, sockfd);
Mike Frysinger7031f622006-05-08 03:20:50 +0000343
Denis Vlasenko80edead2007-08-02 22:31:05 +0000344 retval = 0; /* If we already timed out, fall through, else... */
Mike Frysinger7031f622006-05-08 03:20:50 +0000345 if (tv.tv_sec > 0) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000346 DEBUG("Waiting on select...");
Mike Frysinger7031f622006-05-08 03:20:50 +0000347 retval = select(max_fd + 1, &rfds, NULL, NULL, &tv);
Denis Vlasenko80edead2007-08-02 22:31:05 +0000348 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000349
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000350 now = monotonic_sec();
Denis Vlasenko80edead2007-08-02 22:31:05 +0000351 if (retval < 0) {
352 /* EINTR? signal was caught, don't panic */
353 if (errno != EINTR) {
354 /* Else: an error occured, panic! */
355 bb_perror_msg_and_die("select");
356 }
357 } else if (retval == 0) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000358 /* timeout dropped to zero */
359 switch (state) {
360 case INIT_SELECTING:
Denis Vlasenko223bc972007-11-22 00:58:49 +0000361 if (packet_num < discover_retries) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000362 if (packet_num == 0)
363 xid = random_xid();
364
365 /* send discover packet */
366 send_discover(xid, requested_ip); /* broadcast */
367
Denis Vlasenko223bc972007-11-22 00:58:49 +0000368 timeout = now + discover_timeout;
Mike Frysinger7031f622006-05-08 03:20:50 +0000369 packet_num++;
370 } else {
Rob Landley3f785612006-05-28 01:06:36 +0000371 udhcp_run_script(NULL, "leasefail");
Mike Frysinger7031f622006-05-08 03:20:50 +0000372 if (client_config.background_if_no_lease) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000373 bb_info_msg("No lease, forking to background");
Mike Frysinger7031f622006-05-08 03:20:50 +0000374 client_background();
375 } else if (client_config.abort_if_no_lease) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000376 bb_info_msg("No lease, failing");
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000377 retval = 1;
378 goto ret;
Mike Frysinger7031f622006-05-08 03:20:50 +0000379 }
380 /* wait to try again */
381 packet_num = 0;
Denis Vlasenko223bc972007-11-22 00:58:49 +0000382 timeout = now + tryagain_timeout;
Mike Frysinger7031f622006-05-08 03:20:50 +0000383 }
384 break;
385 case RENEW_REQUESTED:
386 case REQUESTING:
Denis Vlasenko223bc972007-11-22 00:58:49 +0000387 if (packet_num < discover_retries) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000388 /* send request packet */
389 if (state == RENEW_REQUESTED)
390 send_renew(xid, server_addr, requested_ip); /* unicast */
391 else send_selecting(xid, server_addr, requested_ip); /* broadcast */
392
393 timeout = now + ((packet_num == 2) ? 10 : 2);
394 packet_num++;
395 } else {
396 /* timed out, go back to init state */
Denis Vlasenkofbd29182007-04-07 01:05:47 +0000397 if (state == RENEW_REQUESTED)
398 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +0000399 state = INIT_SELECTING;
400 timeout = now;
401 packet_num = 0;
402 change_mode(LISTEN_RAW);
403 }
404 break;
405 case BOUND:
406 /* Lease is starting to run out, time to enter renewing state */
407 state = RENEWING;
408 change_mode(LISTEN_KERNEL);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000409 DEBUG("Entering renew state");
Mike Frysinger7031f622006-05-08 03:20:50 +0000410 /* fall right through */
411 case RENEWING:
412 /* Either set a new T1, or enter REBINDING state */
413 if ((t2 - t1) <= (lease / 14400 + 1)) {
414 /* timed out, enter rebinding state */
415 state = REBINDING;
416 timeout = now + (t2 - t1);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000417 DEBUG("Entering rebinding state");
Mike Frysinger7031f622006-05-08 03:20:50 +0000418 } else {
419 /* send a request packet */
420 send_renew(xid, server_addr, requested_ip); /* unicast */
Mike Frysinger7031f622006-05-08 03:20:50 +0000421 t1 = (t2 - t1) / 2 + t1;
Denis Vlasenko80edead2007-08-02 22:31:05 +0000422 timeout = start + t1;
Mike Frysinger7031f622006-05-08 03:20:50 +0000423 }
424 break;
425 case REBINDING:
426 /* Either set a new T2, or enter INIT state */
427 if ((lease - t2) <= (lease / 14400 + 1)) {
428 /* timed out, enter init state */
429 state = INIT_SELECTING;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000430 bb_info_msg("Lease lost, entering init state");
Rob Landley3f785612006-05-28 01:06:36 +0000431 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +0000432 timeout = now;
433 packet_num = 0;
434 change_mode(LISTEN_RAW);
435 } else {
436 /* send a request packet */
437 send_renew(xid, 0, requested_ip); /* broadcast */
Mike Frysinger7031f622006-05-08 03:20:50 +0000438 t2 = (lease - t2) / 2 + t2;
Denis Vlasenko80edead2007-08-02 22:31:05 +0000439 timeout = start + t2;
Mike Frysinger7031f622006-05-08 03:20:50 +0000440 }
441 break;
442 case RELEASED:
443 /* yah, I know, *you* say it would never happen */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000444 timeout = INT_MAX;
Mike Frysinger7031f622006-05-08 03:20:50 +0000445 break;
446 }
Denis Vlasenko80edead2007-08-02 22:31:05 +0000447 } else if (listen_mode != LISTEN_NONE && FD_ISSET(sockfd, &rfds)) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000448 /* a packet is ready, read it */
449
450 if (listen_mode == LISTEN_KERNEL)
Denis Vlasenkofbd29182007-04-07 01:05:47 +0000451 len = udhcp_get_packet(&packet, sockfd);
452 else len = get_raw_packet(&packet, sockfd);
Mike Frysinger7031f622006-05-08 03:20:50 +0000453
454 if (len == -1 && errno != EINTR) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000455 DEBUG("error on read, %s, reopening socket", strerror(errno));
Mike Frysinger7031f622006-05-08 03:20:50 +0000456 change_mode(listen_mode); /* just close and reopen */
457 }
458 if (len < 0) continue;
459
460 if (packet.xid != xid) {
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000461 DEBUG("Ignoring XID %x (our xid is %x)",
462 (unsigned)packet.xid, (unsigned)xid);
Mike Frysinger7031f622006-05-08 03:20:50 +0000463 continue;
464 }
465
466 /* Ignore packets that aren't for us */
467 if (memcmp(packet.chaddr, client_config.arp, 6)) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000468 DEBUG("Packet does not have our chaddr - ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000469 continue;
470 }
471
Denis Vlasenkofbd29182007-04-07 01:05:47 +0000472 message = get_option(&packet, DHCP_MESSAGE_TYPE);
473 if (message == NULL) {
Denis Vlasenkoa6dbb082006-10-12 19:29:44 +0000474 bb_error_msg("cannot get option from packet - ignoring");
Mike Frysinger7031f622006-05-08 03:20:50 +0000475 continue;
476 }
477
478 switch (state) {
479 case INIT_SELECTING:
480 /* Must be a DHCPOFFER to one of our xid's */
481 if (*message == DHCPOFFER) {
Denis Vlasenko239369b2006-09-07 17:05:44 +0000482 temp = get_option(&packet, DHCP_SERVER_ID);
483 if (temp) {
Denis Vlasenko74c9d232007-01-18 15:42:00 +0000484 /* can be misaligned, thus memcpy */
485 memcpy(&server_addr, temp, 4);
Mike Frysinger7031f622006-05-08 03:20:50 +0000486 xid = packet.xid;
487 requested_ip = packet.yiaddr;
488
489 /* enter requesting state */
490 state = REQUESTING;
491 timeout = now;
492 packet_num = 0;
493 } else {
Denis Vlasenkoa6dbb082006-10-12 19:29:44 +0000494 bb_error_msg("no server ID in message");
Mike Frysinger7031f622006-05-08 03:20:50 +0000495 }
496 }
497 break;
498 case RENEW_REQUESTED:
499 case REQUESTING:
500 case RENEWING:
501 case REBINDING:
502 if (*message == DHCPACK) {
Denis Vlasenko239369b2006-09-07 17:05:44 +0000503 temp = get_option(&packet, DHCP_LEASE_TIME);
504 if (!temp) {
Denis Vlasenkoa6dbb082006-10-12 19:29:44 +0000505 bb_error_msg("no lease time with ACK, using 1 hour lease");
Mike Frysinger7031f622006-05-08 03:20:50 +0000506 lease = 60 * 60;
507 } else {
Denis Vlasenko74c9d232007-01-18 15:42:00 +0000508 /* can be misaligned, thus memcpy */
509 memcpy(&lease, temp, 4);
510 lease = ntohl(lease);
Mike Frysinger7031f622006-05-08 03:20:50 +0000511 }
512
Denis Vlasenko223bc972007-11-22 00:58:49 +0000513#if ENABLE_FEATURE_UDHCPC_ARPING
514 if (opt & OPT_a) {
515 if (!arpping(packet.yiaddr,
516 (uint32_t) 0,
517 client_config.arp,
518 client_config.interface)
519 ) {
520 bb_info_msg("offered address is in use,"
521 " declining");
522 send_decline(xid, server_addr);
523
524 if (state != REQUESTING)
525 udhcp_run_script(NULL, "deconfig");
526 state = INIT_SELECTING;
527 requested_ip = 0;
528 packet_num = 0;
529 change_mode(LISTEN_RAW);
530 timeout = now + decline_wait;
531 break;
532 }
533 }
534#endif
Mike Frysinger7031f622006-05-08 03:20:50 +0000535 /* enter bound state */
536 t1 = lease / 2;
537
538 /* little fixed point for n * .875 */
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000539 t2 = (lease * 7) >> 3;
Mike Frysinger7031f622006-05-08 03:20:50 +0000540 temp_addr.s_addr = packet.yiaddr;
Denis Vlasenko42b3dea2007-07-03 15:47:50 +0000541 bb_info_msg("Lease of %s obtained, lease time %u",
542 inet_ntoa(temp_addr), (unsigned)lease);
Mike Frysinger7031f622006-05-08 03:20:50 +0000543 start = now;
Denis Vlasenko80edead2007-08-02 22:31:05 +0000544 timeout = start + t1;
Mike Frysinger7031f622006-05-08 03:20:50 +0000545 requested_ip = packet.yiaddr;
Rob Landley3f785612006-05-28 01:06:36 +0000546 udhcp_run_script(&packet,
Mike Frysinger7031f622006-05-08 03:20:50 +0000547 ((state == RENEWING || state == REBINDING) ? "renew" : "bound"));
548
549 state = BOUND;
550 change_mode(LISTEN_NONE);
Denis Vlasenkoe175ff22006-09-26 17:41:00 +0000551 if (client_config.quit_after_lease) {
552 if (client_config.release_on_quit)
553 perform_release();
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000554 goto ret0;
Denis Vlasenkoe175ff22006-09-26 17:41:00 +0000555 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000556 if (!client_config.foreground)
557 client_background();
558
559 } else if (*message == DHCPNAK) {
560 /* return to init state */
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000561 bb_info_msg("Received DHCP NAK");
Rob Landley3f785612006-05-28 01:06:36 +0000562 udhcp_run_script(&packet, "nak");
Mike Frysinger7031f622006-05-08 03:20:50 +0000563 if (state != REQUESTING)
Rob Landley3f785612006-05-28 01:06:36 +0000564 udhcp_run_script(NULL, "deconfig");
Mike Frysinger7031f622006-05-08 03:20:50 +0000565 state = INIT_SELECTING;
566 timeout = now;
567 requested_ip = 0;
568 packet_num = 0;
569 change_mode(LISTEN_RAW);
570 sleep(3); /* avoid excessive network traffic */
571 }
572 break;
573 /* case BOUND, RELEASED: - ignore all packets */
574 }
Denis Vlasenko80edead2007-08-02 22:31:05 +0000575 } else {
576 int signo = udhcp_sp_read(&rfds);
577 switch (signo) {
Mike Frysinger7031f622006-05-08 03:20:50 +0000578 case SIGUSR1:
579 perform_renew();
580 break;
581 case SIGUSR2:
582 perform_release();
583 break;
584 case SIGTERM:
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000585 bb_info_msg("Received SIGTERM");
Denis Vlasenkoe175ff22006-09-26 17:41:00 +0000586 if (client_config.release_on_quit)
587 perform_release();
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000588 goto ret0;
Mike Frysinger7031f622006-05-08 03:20:50 +0000589 }
Mike Frysinger7031f622006-05-08 03:20:50 +0000590 }
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000591 } /* for (;;) */
592 ret0:
593 retval = 0;
594 ret:
Denis Vlasenkobb23c062007-08-15 20:05:37 +0000595 /*if (client_config.pidfile) - remove_pidfile has it's own check */
Denis Vlasenko6e6d3312007-05-03 23:39:35 +0000596 remove_pidfile(client_config.pidfile);
597 return retval;
Mike Frysinger7031f622006-05-08 03:20:50 +0000598}