903f3d3267281fca4325dc1f6569230c9c966bbb
[platform/upstream/busybox.git] / networking / udhcp / dhcpc.c
1 /* vi: set sw=4 ts=4: */
2 /* 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
11 #include <syslog.h>
12
13 /* Override ENABLE_FEATURE_PIDFILE - ifupdown needs our pidfile to always exist */
14 #define WANT_PIDFILE 1
15 #include "common.h"
16 #include "dhcpd.h"
17 #include "dhcpc.h"
18 #include "options.h"
19
20
21 static int sockfd = -1;
22
23 #define LISTEN_NONE 0
24 #define LISTEN_KERNEL 1
25 #define LISTEN_RAW 2
26 static smallint listen_mode;
27
28 #define INIT_SELECTING  0
29 #define REQUESTING      1
30 #define BOUND           2
31 #define RENEWING        3
32 #define REBINDING       4
33 #define INIT_REBOOT     5
34 #define RENEW_REQUESTED 6
35 #define RELEASED        7
36 static smallint state;
37
38 /* struct client_config_t client_config is in bb_common_bufsiz1 */
39
40
41 /* just a little helper */
42 static void change_listen_mode(int new_mode)
43 {
44         DEBUG("entering %s listen mode",
45                 new_mode ? (new_mode == 1 ? "kernel" : "raw") : "none");
46
47         listen_mode = new_mode;
48         if (sockfd >= 0) {
49                 close(sockfd);
50                 sockfd = -1;
51         }
52         if (new_mode == LISTEN_KERNEL)
53                 sockfd = udhcp_listen_socket(/*INADDR_ANY,*/ CLIENT_PORT, client_config.interface);
54         else if (new_mode != LISTEN_NONE)
55                 sockfd = udhcp_raw_socket(client_config.ifindex);
56         /* else LISTEN_NONE: sockfd stay closed */
57 }
58
59
60 /* perform a renew */
61 static void perform_renew(void)
62 {
63         bb_info_msg("Performing a DHCP renew");
64         switch (state) {
65         case BOUND:
66                 change_listen_mode(LISTEN_KERNEL);
67         case RENEWING:
68         case REBINDING:
69                 state = RENEW_REQUESTED;
70                 break;
71         case RENEW_REQUESTED: /* impatient are we? fine, square 1 */
72                 udhcp_run_script(NULL, "deconfig");
73         case REQUESTING:
74         case RELEASED:
75                 change_listen_mode(LISTEN_RAW);
76                 state = INIT_SELECTING;
77                 break;
78         case INIT_SELECTING:
79                 break;
80         }
81 }
82
83
84 /* perform a release */
85 static void perform_release(uint32_t requested_ip, uint32_t server_addr)
86 {
87         char buffer[sizeof("255.255.255.255")];
88         struct in_addr temp_addr;
89
90         /* send release packet */
91         if (state == BOUND || state == RENEWING || state == REBINDING) {
92                 temp_addr.s_addr = server_addr;
93                 strcpy(buffer, inet_ntoa(temp_addr));
94                 temp_addr.s_addr = requested_ip;
95                 bb_info_msg("Unicasting a release of %s to %s",
96                                 inet_ntoa(temp_addr), buffer);
97                 send_release(server_addr, requested_ip); /* unicast */
98                 udhcp_run_script(NULL, "deconfig");
99         }
100         bb_info_msg("Entering released state");
101
102         change_listen_mode(LISTEN_NONE);
103         state = RELEASED;
104 }
105
106
107 #if BB_MMU
108 static void client_background(void)
109 {
110         bb_daemonize(0);
111         logmode &= ~LOGMODE_STDIO;
112         /* rewrite pidfile, as our pid is different now */
113         write_pidfile(client_config.pidfile);
114 }
115 #endif
116
117
118 static uint8_t* alloc_dhcp_option(int code, const char *str, int extra)
119 {
120         uint8_t *storage;
121         int len = strlen(str);
122         if (len > 255) len = 255;
123         storage = xzalloc(len + extra + OPT_DATA);
124         storage[OPT_CODE] = code;
125         storage[OPT_LEN] = len + extra;
126         memcpy(storage + extra + OPT_DATA, str, len);
127         return storage;
128 }
129
130
131 int udhcpc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
132 int udhcpc_main(int argc UNUSED_PARAM, char **argv)
133 {
134         uint8_t *temp, *message;
135         char *str_c, *str_V, *str_h, *str_F, *str_r;
136         USE_FEATURE_UDHCP_PORT(char *str_P;)
137         llist_t *list_O = NULL;
138         int tryagain_timeout = 20;
139         int discover_timeout = 3;
140         int discover_retries = 3;
141         uint32_t server_addr = server_addr; /* for compiler */
142         uint32_t requested_ip = 0;
143         uint32_t xid = 0;
144         uint32_t lease_seconds = 0; /* can be given as 32-bit quantity */
145         int packet_num;
146         int timeout; /* must be signed */
147         unsigned already_waited_sec;
148         unsigned opt;
149         int max_fd;
150         int retval;
151         struct timeval tv;
152         struct dhcpMessage packet;
153         fd_set rfds;
154
155 #if ENABLE_GETOPT_LONG
156         static const char udhcpc_longopts[] ALIGN1 =
157                 "clientid\0"       Required_argument "c"
158                 "clientid-none\0"  No_argument       "C"
159                 "vendorclass\0"    Required_argument "V"
160                 "hostname\0"       Required_argument "H"
161                 "fqdn\0"           Required_argument "F"
162                 "interface\0"      Required_argument "i"
163                 "now\0"            No_argument       "n"
164                 "pidfile\0"        Required_argument "p"
165                 "quit\0"           No_argument       "q"
166                 "release\0"        No_argument       "R"
167                 "request\0"        Required_argument "r"
168                 "script\0"         Required_argument "s"
169                 "timeout\0"        Required_argument "T"
170                 "version\0"        No_argument       "v"
171                 "retries\0"        Required_argument "t"
172                 "tryagain\0"       Required_argument "A"
173                 "syslog\0"         No_argument       "S"
174                 "request-option\0" Required_argument "O"
175                 "no-default-options\0" No_argument   "o"
176                 "foreground\0"     No_argument       "f"
177                 "background\0"     No_argument       "b"
178                 USE_FEATURE_UDHCPC_ARPING("arping\0"    No_argument       "a")
179                 USE_FEATURE_UDHCP_PORT("client-port\0"  Required_argument "P")
180                 ;
181 #endif
182         enum {
183                 OPT_c = 1 << 0,
184                 OPT_C = 1 << 1,
185                 OPT_V = 1 << 2,
186                 OPT_H = 1 << 3,
187                 OPT_h = 1 << 4,
188                 OPT_F = 1 << 5,
189                 OPT_i = 1 << 6,
190                 OPT_n = 1 << 7,
191                 OPT_p = 1 << 8,
192                 OPT_q = 1 << 9,
193                 OPT_R = 1 << 10,
194                 OPT_r = 1 << 11,
195                 OPT_s = 1 << 12,
196                 OPT_T = 1 << 13,
197                 OPT_t = 1 << 14,
198                 OPT_v = 1 << 15,
199                 OPT_S = 1 << 16,
200                 OPT_A = 1 << 17,
201                 OPT_O = 1 << 18,
202                 OPT_o = 1 << 19,
203                 OPT_f = 1 << 20,
204 /* The rest has variable bit positions, need to be clever */
205                 OPTBIT_f = 20,
206                 USE_FOR_MMU(              OPTBIT_b,)
207                 USE_FEATURE_UDHCPC_ARPING(OPTBIT_a,)
208                 USE_FEATURE_UDHCP_PORT(   OPTBIT_P,)
209                 USE_FOR_MMU(              OPT_b = 1 << OPTBIT_b,)
210                 USE_FEATURE_UDHCPC_ARPING(OPT_a = 1 << OPTBIT_a,)
211                 USE_FEATURE_UDHCP_PORT(   OPT_P = 1 << OPTBIT_P,)
212         };
213
214         /* Default options. */
215         USE_FEATURE_UDHCP_PORT(SERVER_PORT = 67;)
216         USE_FEATURE_UDHCP_PORT(CLIENT_PORT = 68;)
217         client_config.interface = "eth0";
218         client_config.script = DEFAULT_SCRIPT;
219
220         /* Parse command line */
221         /* Cc: mutually exclusive; O: list; -T,-t,-A take numeric param */
222         opt_complementary = "c--C:C--c:O::T+:t+:A+";
223         USE_GETOPT_LONG(applet_long_options = udhcpc_longopts;)
224         opt = getopt32(argv, "c:CV:H:h:F:i:np:qRr:s:T:t:vSA:O:of"
225                 USE_FOR_MMU("b")
226                 USE_FEATURE_UDHCPC_ARPING("a")
227                 USE_FEATURE_UDHCP_PORT("P:")
228                 , &str_c, &str_V, &str_h, &str_h, &str_F
229                 , &client_config.interface, &client_config.pidfile, &str_r /* i,p */
230                 , &client_config.script /* s */
231                 , &discover_timeout, &discover_retries, &tryagain_timeout /* T,t,A */
232                 , &list_O
233                 USE_FEATURE_UDHCP_PORT(, &str_P)
234                 );
235         if (opt & OPT_c)
236                 client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, str_c, 0);
237         if (opt & OPT_V)
238                 client_config.vendorclass = alloc_dhcp_option(DHCP_VENDOR, str_V, 0);
239         if (opt & (OPT_h|OPT_H))
240                 client_config.hostname = alloc_dhcp_option(DHCP_HOST_NAME, str_h, 0);
241         if (opt & OPT_F) {
242                 client_config.fqdn = alloc_dhcp_option(DHCP_FQDN, str_F, 3);
243                 /* Flags: 0000NEOS
244                 S: 1 => Client requests Server to update A RR in DNS as well as PTR
245                 O: 1 => Server indicates to client that DNS has been updated regardless
246                 E: 1 => Name data is DNS format, i.e. <4>host<6>domain<3>com<0> not "host.domain.com"
247                 N: 1 => Client requests Server to not update DNS
248                 */
249                 client_config.fqdn[OPT_DATA + 0] = 0x1;
250                 /* client_config.fqdn[OPT_DATA + 1] = 0; - redundant */
251                 /* client_config.fqdn[OPT_DATA + 2] = 0; - redundant */
252         }
253         if (opt & OPT_r)
254                 requested_ip = inet_addr(str_r);
255         if (opt & OPT_v) {
256                 puts("version "BB_VER);
257                 return 0;
258         }
259 #if ENABLE_FEATURE_UDHCP_PORT
260         if (opt & OPT_P) {
261                 CLIENT_PORT = xatou16(str_P);
262                 SERVER_PORT = CLIENT_PORT - 1;
263         }
264 #endif
265         if (opt & OPT_o)
266                 client_config.no_default_options = 1;
267         while (list_O) {
268                 char *optstr = llist_pop(&list_O);
269                 int n = index_in_strings(dhcp_option_strings, optstr);
270                 if (n < 0)
271                         bb_error_msg_and_die("unknown option '%s'", optstr);
272                 n = dhcp_options[n].code;
273                 client_config.opt_mask[n >> 3] |= 1 << (n & 7);
274         }
275
276         if (udhcp_read_interface(client_config.interface, &client_config.ifindex,
277                            NULL, client_config.arp))
278                 return 1;
279 #if !BB_MMU
280         /* on NOMMU reexec (i.e., background) early */
281         if (!(opt & OPT_f)) {
282                 bb_daemonize_or_rexec(0 /* flags */, argv);
283                 logmode = 0;
284         }
285 #endif
286         if (opt & OPT_S) {
287                 openlog(applet_name, LOG_PID, LOG_DAEMON);
288                 logmode |= LOGMODE_SYSLOG;
289         }
290
291         /* Make sure fd 0,1,2 are open */
292         bb_sanitize_stdio();
293         /* Equivalent of doing a fflush after every \n */
294         setlinebuf(stdout);
295
296         /* Create pidfile */
297         write_pidfile(client_config.pidfile);
298
299         /* Goes to stdout (unless NOMMU) and possibly syslog */
300         bb_info_msg("%s (v"BB_VER") started", applet_name);
301
302         /* if not set, and not suppressed, setup the default client ID */
303         if (!client_config.clientid && !(opt & OPT_C)) {
304                 client_config.clientid = alloc_dhcp_option(DHCP_CLIENT_ID, "", 7);
305                 client_config.clientid[OPT_DATA] = 1;
306                 memcpy(client_config.clientid + OPT_DATA+1, client_config.arp, 6);
307         }
308
309         if (!client_config.vendorclass)
310                 client_config.vendorclass = alloc_dhcp_option(DHCP_VENDOR, "udhcp "BB_VER, 0);
311
312         /* setup the signal pipe */
313         udhcp_sp_setup();
314
315         state = INIT_SELECTING;
316         udhcp_run_script(NULL, "deconfig");
317         change_listen_mode(LISTEN_RAW);
318         packet_num = 0;
319         timeout = 0;
320         already_waited_sec = 0;
321
322         /* Main event loop. select() waits on signal pipe and possibly
323          * on sockfd.
324          * "continue" statements in code below jump to the top of the loop.
325          */
326         for (;;) {
327                 /* silence "uninitialized!" warning */
328                 unsigned timestamp_before_wait = timestamp_before_wait;
329
330                 //bb_error_msg("sockfd:%d, listen_mode:%d", sockfd, listen_mode);
331
332                 /* Was opening raw or udp socket here
333                  * if (listen_mode != LISTEN_NONE && sockfd < 0),
334                  * but on fast network renew responses return faster
335                  * than we open sockets. Thus this code is moved
336                  * to change_listen_mode(). Thus we open listen socket
337                  * BEFORE we send renew request (see "case BOUND:"). */
338
339                 max_fd = udhcp_sp_fd_set(&rfds, sockfd);
340
341                 tv.tv_sec = timeout - already_waited_sec;
342                 tv.tv_usec = 0;
343                 retval = 0; /* If we already timed out, fall through, else... */
344                 if (tv.tv_sec > 0) {
345                         timestamp_before_wait = (unsigned)monotonic_sec();
346                         DEBUG("Waiting on select...");
347                         retval = select(max_fd + 1, &rfds, NULL, NULL, &tv);
348                         if (retval < 0) {
349                                 /* EINTR? A signal was caught, don't panic */
350                                 if (errno == EINTR)
351                                         continue;
352                                 /* Else: an error occured, panic! */
353                                 bb_perror_msg_and_die("select");
354                         }
355                 }
356
357                 /* If timeout dropped to zero, time to become active:
358                  * resend discover/renew/whatever
359                  */
360                 if (retval == 0) {
361                         /* We will restart the wait in any case */
362                         already_waited_sec = 0;
363
364                         switch (state) {
365                         case INIT_SELECTING:
366                                 if (packet_num < discover_retries) {
367                                         if (packet_num == 0)
368                                                 xid = random_xid();
369
370                                         send_discover(xid, requested_ip); /* broadcast */
371
372                                         timeout = discover_timeout;
373                                         packet_num++;
374                                         continue;
375                                 }
376  leasefail:
377                                 udhcp_run_script(NULL, "leasefail");
378 #if BB_MMU /* -b is not supported on NOMMU */
379                                 if (opt & OPT_b) { /* background if no lease */
380                                         bb_info_msg("No lease, forking to background");
381                                         client_background();
382                                         /* do not background again! */
383                                         opt = ((opt & ~OPT_b) | OPT_f);
384                                 } else
385 #endif
386                                 if (opt & OPT_n) { /* abort if no lease */
387                                         bb_info_msg("No lease, failing");
388                                         retval = 1;
389                                         goto ret;
390                                 }
391                                 /* wait before trying again */
392                                 timeout = tryagain_timeout;
393                                 packet_num = 0;
394                                 continue;
395                         case RENEW_REQUESTED:
396                         case REQUESTING:
397                                 if (packet_num < discover_retries) {
398                                         /* send request packet */
399                                         if (state == RENEW_REQUESTED) /* unicast */
400                                                 send_renew(xid, server_addr, requested_ip);
401                                         else /* broadcast */
402                                                 send_select(xid, server_addr, requested_ip);
403
404                                         timeout = discover_timeout;
405                                         packet_num++;
406                                         continue;
407                                 }
408                                 /* timed out, go back to init state */
409                                 if (state == RENEW_REQUESTED)
410                                         udhcp_run_script(NULL, "deconfig");
411                                 change_listen_mode(LISTEN_RAW);
412                                 /* "discover...select...discover..." loops
413                                  * were seen in the wild. Treat them similarly
414                                  * to "no response to discover" case */
415                                 if (state == REQUESTING) {
416                                         state = INIT_SELECTING;
417                                         goto leasefail;
418                                 }
419                                 state = INIT_SELECTING;
420                                 timeout = 0;
421                                 packet_num = 0;
422                                 continue;
423                         case BOUND:
424                                 /* Half of the lease passed, time to enter renewing state */
425                                 change_listen_mode(LISTEN_KERNEL);
426                                 DEBUG("Entering renew state");
427                                 state = RENEWING;
428                                 /* fall right through */
429                         case RENEWING:
430                                 if (timeout > 60) {
431                                         /* send a request packet */
432                                         send_renew(xid, server_addr, requested_ip); /* unicast */
433                                         timeout >>= 1;
434                                         continue;
435                                 }
436                                 /* Timed out, enter rebinding state */
437                                 DEBUG("Entering rebinding state");
438                                 state = REBINDING;
439                                 /* fall right through */
440                         case REBINDING:
441                                 /* Lease is *really* about to run out,
442                                  * try to find DHCP server using broadcast */
443                                 if (timeout > 0) {
444                                         /* send a request packet */
445                                         send_renew(xid, 0 /*INADDR_ANY*/, requested_ip); /* broadcast */
446                                         timeout >>= 1;
447                                         continue;
448                                 }
449                                 /* Timed out, enter init state */
450                                 bb_info_msg("Lease lost, entering init state");
451                                 udhcp_run_script(NULL, "deconfig");
452                                 change_listen_mode(LISTEN_RAW);
453                                 state = INIT_SELECTING;
454                                 /*timeout = 0; - already is */
455                                 packet_num = 0;
456                                 continue;
457                         /* case RELEASED: */
458                         }
459                         /* yah, I know, *you* say it would never happen */
460                         timeout = INT_MAX;
461                         continue; /* back to main loop */
462                 }
463
464                 /* select() didn't timeout, something did happen. */
465                 /* Is it a packet? */
466                 if (listen_mode != LISTEN_NONE && FD_ISSET(sockfd, &rfds)) {
467                         int len;
468                         /* A packet is ready, read it */
469
470                         if (listen_mode == LISTEN_KERNEL)
471                                 len = udhcp_recv_kernel_packet(&packet, sockfd);
472                         else
473                                 len = udhcp_recv_raw_packet(&packet, sockfd);
474                         if (len == -1) { /* error is severe, reopen socket */
475                                 DEBUG("error on read, %s, reopening socket", strerror(errno));
476                                 sleep(discover_timeout); /* 3 seconds by default */
477                                 change_listen_mode(listen_mode); /* just close and reopen */
478                         }
479                         /* If this packet will turn out to be unrelated/bogus,
480                          * we will go back and wait for next one.
481                          * Be sure timeout is properly decreased. */
482                         already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
483                         if (len < 0)
484                                 continue;
485
486                         if (packet.xid != xid) {
487                                 DEBUG("Ignoring xid %x (our xid is %x)",
488                                         (unsigned)packet.xid, (unsigned)xid);
489                                 continue;
490                         }
491
492                         /* Ignore packets that aren't for us */
493                         if (memcmp(packet.chaddr, client_config.arp, 6)) {
494                                 DEBUG("Packet does not have our chaddr - ignoring");
495                                 continue;
496                         }
497
498                         message = get_option(&packet, DHCP_MESSAGE_TYPE);
499                         if (message == NULL) {
500                                 bb_error_msg("cannot get message type from packet - ignoring");
501                                 continue;
502                         }
503
504                         switch (state) {
505                         case INIT_SELECTING:
506                                 /* Must be a DHCPOFFER to one of our xid's */
507                                 if (*message == DHCPOFFER) {
508                         /* TODO: why we don't just fetch server's IP from IP header? */
509                                         temp = get_option(&packet, DHCP_SERVER_ID);
510                                         if (!temp) {
511                                                 bb_error_msg("no server ID in message");
512                                                 continue;
513                                                 /* still selecting - this server looks bad */
514                                         }
515                                         /* it IS unaligned sometimes, don't "optimize" */
516                                         move_from_unaligned32(server_addr, temp);
517                                         xid = packet.xid;
518                                         requested_ip = packet.yiaddr;
519
520                                         /* enter requesting state */
521                                         state = REQUESTING;
522                                         timeout = 0;
523                                         packet_num = 0;
524                                         already_waited_sec = 0;
525                                 }
526                                 continue;
527                         case RENEW_REQUESTED:
528                         case REQUESTING:
529                         case RENEWING:
530                         case REBINDING:
531                                 if (*message == DHCPACK) {
532                                         temp = get_option(&packet, DHCP_LEASE_TIME);
533                                         if (!temp) {
534                                                 bb_error_msg("no lease time with ACK, using 1 hour lease");
535                                                 lease_seconds = 60 * 60;
536                                         } else {
537                                                 /* it IS unaligned sometimes, don't "optimize" */
538                                                 move_from_unaligned32(lease_seconds, temp);
539                                                 lease_seconds = ntohl(lease_seconds);
540                                                 lease_seconds &= 0x0fffffff; /* paranoia: must not be prone to overflows */
541                                                 if (lease_seconds < 10) /* and not too small */
542                                                         lease_seconds = 10;
543                                         }
544 #if ENABLE_FEATURE_UDHCPC_ARPING
545                                         if (opt & OPT_a) {
546 /* RFC 2131 3.1 paragraph 5:
547  * "The client receives the DHCPACK message with configuration
548  * parameters. The client SHOULD perform a final check on the
549  * parameters (e.g., ARP for allocated network address), and notes
550  * the duration of the lease specified in the DHCPACK message. At this
551  * point, the client is configured. If the client detects that the
552  * address is already in use (e.g., through the use of ARP),
553  * the client MUST send a DHCPDECLINE message to the server and restarts
554  * the configuration process..." */
555                                                 if (!arpping(packet.yiaddr,
556                                                             (uint32_t) 0,
557                                                             client_config.arp,
558                                                             client_config.interface)
559                                                 ) {
560                                                         bb_info_msg("offered address is in use "
561                                                                 "(got ARP reply), declining");
562                                                         send_decline(xid, server_addr, packet.yiaddr);
563
564                                                         if (state != REQUESTING)
565                                                                 udhcp_run_script(NULL, "deconfig");
566                                                         change_listen_mode(LISTEN_RAW);
567                                                         state = INIT_SELECTING;
568                                                         requested_ip = 0;
569                                                         timeout = tryagain_timeout;
570                                                         packet_num = 0;
571                                                         already_waited_sec = 0;
572                                                         continue; /* back to main loop */
573                                                 }
574                                         }
575 #endif
576                                         /* enter bound state */
577                                         timeout = lease_seconds / 2;
578                                         {
579                                                 struct in_addr temp_addr;
580                                                 temp_addr.s_addr = packet.yiaddr;
581                                                 bb_info_msg("Lease of %s obtained, lease time %u",
582                                                         inet_ntoa(temp_addr), (unsigned)lease_seconds);
583                                         }
584                                         requested_ip = packet.yiaddr;
585                                         udhcp_run_script(&packet,
586                                                         ((state == RENEWING || state == REBINDING) ? "renew" : "bound"));
587
588                                         state = BOUND;
589                                         change_listen_mode(LISTEN_NONE);
590                                         if (opt & OPT_q) { /* quit after lease */
591                                                 if (opt & OPT_R) /* release on quit */
592                                                         perform_release(requested_ip, server_addr);
593                                                 goto ret0;
594                                         }
595 #if BB_MMU /* NOMMU case backgrounded earlier */
596                                         if (!(opt & OPT_f)) {
597                                                 client_background();
598                                                 /* do not background again! */
599                                                 opt = ((opt & ~OPT_b) | OPT_f);
600                                         }
601 #endif
602                                         already_waited_sec = 0;
603                                         continue; /* back to main loop */
604                                 }
605                                 if (*message == DHCPNAK) {
606                                         /* return to init state */
607                                         bb_info_msg("Received DHCP NAK");
608                                         udhcp_run_script(&packet, "nak");
609                                         if (state != REQUESTING)
610                                                 udhcp_run_script(NULL, "deconfig");
611                                         change_listen_mode(LISTEN_RAW);
612                                         sleep(3); /* avoid excessive network traffic */
613                                         state = INIT_SELECTING;
614                                         requested_ip = 0;
615                                         timeout = 0;
616                                         packet_num = 0;
617                                         already_waited_sec = 0;
618                                 }
619                                 continue;
620                         /* case BOUND, RELEASED: - ignore all packets */
621                         }
622                         continue; /* back to main loop */
623                 }
624
625                 /* select() didn't timeout, something did happen.
626                  * But it wasn't a packet. It's a signal pipe then. */
627                 {
628                         int signo = udhcp_sp_read(&rfds);
629                         switch (signo) {
630                         case SIGUSR1:
631                                 perform_renew();
632                                 /* start things over */
633                                 packet_num = 0;
634                                 /* Kill any timeouts because the user wants this to hurry along */
635                                 timeout = 0;
636                                 break;
637                         case SIGUSR2:
638                                 perform_release(requested_ip, server_addr);
639                                 timeout = INT_MAX;
640                                 break;
641                         case SIGTERM:
642                                 bb_info_msg("Received SIGTERM");
643                                 if (opt & OPT_R) /* release on quit */
644                                         perform_release(requested_ip, server_addr);
645                                 goto ret0;
646                         }
647                 }
648         } /* for (;;) - main loop ends */
649
650  ret0:
651         retval = 0;
652  ret:
653         /*if (client_config.pidfile) - remove_pidfile has its own check */
654                 remove_pidfile(client_config.pidfile);
655         return retval;
656 }