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