26348fa93c4e723b83f8efca6689ad6ecd373b3e
[oweals/busybox.git] / networking / inetd.c
1 /* vi: set sw=4 ts=4: */
2 /*      $Slackware: inetd.c 1.79s 2001/02/06 13:18:00 volkerdi Exp $    */
3 /*      $OpenBSD: inetd.c,v 1.79 2001/01/30 08:30:57 deraadt Exp $      */
4 /*      $NetBSD: inetd.c,v 1.11 1996/02/22 11:14:41 mycroft Exp $       */
5 /* Busybox port by Vladimir Oleynik (C) 2001-2005 <dzo@simtreas.ru>     */
6 /* IPv6 support, many bug fixes by Denys Vlasenko (c) 2008 */
7 /*
8  * Copyright (c) 1983,1991 The Regents of the University of California.
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *      This product includes software developed by the University of
22  *      California, Berkeley and its contributors.
23  * 4. Neither the name of the University nor the names of its contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37  * SUCH DAMAGE.
38  */
39
40 /* Inetd - Internet super-server
41  *
42  * This program invokes configured services when a connection
43  * from a peer is established or a datagram arrives.
44  * Connection-oriented services are invoked each time a
45  * connection is made, by creating a process.  This process
46  * is passed the connection as file descriptor 0 and is
47  * expected to do a getpeername to find out peer's host
48  * and port.
49  * Datagram oriented services are invoked when a datagram
50  * arrives; a process is created and passed a pending message
51  * on file descriptor 0. peer's address can be obtained
52  * using recvfrom.
53  *
54  * Inetd uses a configuration file which is read at startup
55  * and, possibly, at some later time in response to a hangup signal.
56  * The configuration file is "free format" with fields given in the
57  * order shown below.  Continuation lines for an entry must begin with
58  * a space or tab.  All fields must be present in each entry.
59  *
60  *      service_name                    must be in /etc/services
61  *      socket_type                     stream/dgram/raw/rdm/seqpacket
62  *      protocol                        must be in /etc/protocols
63  *                                      (usually "tcp" or "udp")
64  *      wait/nowait[.max]               single-threaded/multi-threaded, max #
65  *      user[.group] or user[:group]    user/group to run daemon as
66  *      server_program                  full path name
67  *      server_program_arguments        maximum of MAXARGS (20)
68  *
69  * For RPC services
70  *      service_name/version            must be in /etc/rpc
71  *      socket_type                     stream/dgram/raw/rdm/seqpacket
72  *      rpc/protocol                    "rpc/tcp" etc
73  *      wait/nowait[.max]               single-threaded/multi-threaded
74  *      user[.group] or user[:group]    user to run daemon as
75  *      server_program                  full path name
76  *      server_program_arguments        maximum of MAXARGS (20)
77  *
78  * For non-RPC services, the "service name" can be of the form
79  * hostaddress:servicename, in which case the hostaddress is used
80  * as the host portion of the address to listen on.  If hostaddress
81  * consists of a single '*' character, INADDR_ANY is used.
82  *
83  * A line can also consist of just
84  *      hostaddress:
85  * where hostaddress is as in the preceding paragraph.  Such a line must
86  * have no further fields; the specified hostaddress is remembered and
87  * used for all further lines that have no hostaddress specified,
88  * until the next such line (or EOF).  (This is why * is provided to
89  * allow explicit specification of INADDR_ANY.)  A line
90  *      *:
91  * is implicitly in effect at the beginning of the file.
92  *
93  * The hostaddress specifier may (and often will) contain dots;
94  * the service name must not.
95  *
96  * For RPC services, host-address specifiers are accepted and will
97  * work to some extent; however, because of limitations in the
98  * portmapper interface, it will not work to try to give more than
99  * one line for any given RPC service, even if the host-address
100  * specifiers are different.
101  *
102  * Comment lines are indicated by a '#' in column 1.
103  */
104
105 /* inetd rules for passing file descriptors to children
106  * (http://www.freebsd.org/cgi/man.cgi?query=inetd):
107  *
108  * The wait/nowait entry specifies whether the server that is invoked by
109  * inetd will take over the socket associated with the service access point,
110  * and thus whether inetd should wait for the server to exit before listen-
111  * ing for new service requests.  Datagram servers must use "wait", as
112  * they are always invoked with the original datagram socket bound to the
113  * specified service address.  These servers must read at least one datagram
114  * from the socket before exiting.  If a datagram server connects to its
115  * peer, freeing the socket so inetd can receive further messages on the
116  * socket, it is said to be a "multi-threaded" server; it should read one
117  * datagram from the socket and create a new socket connected to the peer.
118  * It should fork, and the parent should then exit to allow inetd to check
119  * for new service requests to spawn new servers.  Datagram servers which
120  * process all incoming datagrams on a socket and eventually time out are
121  * said to be "single-threaded".  The comsat(8), biff(1) and talkd(8)
122  * utilities are both examples of the latter type of datagram server.  The
123  * tftpd(8) utility is an example of a multi-threaded datagram server.
124  *
125  * Servers using stream sockets generally are multi-threaded and use the
126  * "nowait" entry. Connection requests for these services are accepted by
127  * inetd, and the server is given only the newly-accepted socket connected
128  * to a client of the service.  Most stream-based services operate in this
129  * manner.  Stream-based servers that use "wait" are started with the lis-
130  * tening service socket, and must accept at least one connection request
131  * before exiting.  Such a server would normally accept and process incoming
132  * connection requests until a timeout.
133  */
134
135 /* Despite of above doc saying that dgram services must use "wait",
136  * "udp nowait" servers are implemented in busyboxed inetd.
137  * IPv6 addresses are also implemented. However, they may look ugly -
138  * ":::service..." means "address '::' (IPv6 wildcard addr)":"service"...
139  * You have to put "tcp6"/"udp6" in protocol field to select IPv6.
140  */
141
142 /* Here's the scoop concerning the user[:group] feature:
143  * 1) group is not specified:
144  *      a) user = root: NO setuid() or setgid() is done
145  *      b) other:       initgroups(name, primary group)
146  *                      setgid(primary group as found in passwd)
147  *                      setuid()
148  * 2) group is specified:
149  *      a) user = root: setgid(specified group)
150  *                      NO initgroups()
151  *                      NO setuid()
152  *      b) other:       initgroups(name, specified group)
153  *                      setgid(specified group)
154  *                      setuid()
155  */
156
157 //usage:#define inetd_trivial_usage
158 //usage:       "[-fe] [-q N] [-R N] [CONFFILE]"
159 //usage:#define inetd_full_usage "\n\n"
160 //usage:       "Listen for network connections and launch programs\n"
161 //usage:     "\n        -f      Run in foreground"
162 //usage:     "\n        -e      Log to stderr"
163 //usage:     "\n        -q N    Socket listen queue (default: 128)"
164 //usage:     "\n        -R N    Pause services after N connects/min"
165 //usage:     "\n                (default: 0 - disabled)"
166
167 #include <syslog.h>
168 #include <sys/un.h>
169
170 #include "libbb.h"
171
172 #if ENABLE_FEATURE_INETD_RPC
173 #include <rpc/rpc.h>
174 #include <rpc/pmap_clnt.h>
175 #endif
176
177 #if !BB_MMU
178 /* stream version of chargen is forking but not execing,
179  * can't do that (easily) on NOMMU */
180 #undef  ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
181 #define ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN 0
182 #endif
183
184 #define _PATH_INETDPID  "/var/run/inetd.pid"
185
186 #define CNT_INTERVAL    60      /* servers in CNT_INTERVAL sec. */
187 #define RETRYTIME       60      /* retry after bind or server fail */
188
189 // TODO: explain, or get rid of setrlimit games
190
191 #ifndef RLIMIT_NOFILE
192 #define RLIMIT_NOFILE   RLIMIT_OFILE
193 #endif
194
195 #ifndef OPEN_MAX
196 #define OPEN_MAX        64
197 #endif
198
199 /* Reserve some descriptors, 3 stdio + at least: 1 log, 1 conf. file */
200 #define FD_MARGIN       8
201
202 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD \
203  || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO    \
204  || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN \
205  || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME    \
206  || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
207 # define INETD_BUILTINS_ENABLED
208 #endif
209
210 typedef struct servtab_t {
211         /* The most frequently referenced one: */
212         int se_fd;                            /* open descriptor */
213         /* NB: 'biggest fields last' saves on code size (~250 bytes) */
214         /* [addr:]service socktype proto wait user[:group] prog [args] */
215         char *se_local_hostname;              /* addr to listen on */
216         char *se_service;                     /* "80" or "www" or "mount/2[-3]" */
217         /* socktype is in se_socktype */      /* "stream" "dgram" "raw" "rdm" "seqpacket" */
218         char *se_proto;                       /* "unix" or "[rpc/]tcp[6]" */
219 #if ENABLE_FEATURE_INETD_RPC
220         int se_rpcprog;                       /* rpc program number */
221         int se_rpcver_lo;                     /* rpc program lowest version */
222         int se_rpcver_hi;                     /* rpc program highest version */
223 #define is_rpc_service(sep)       ((sep)->se_rpcver_lo != 0)
224 #else
225 #define is_rpc_service(sep)       0
226 #endif
227         pid_t se_wait;                        /* 0:"nowait", 1:"wait", >1:"wait" */
228                                               /* and waiting for this pid */
229         socktype_t se_socktype;               /* SOCK_STREAM/DGRAM/RDM/... */
230         family_t se_family;                   /* AF_UNIX/INET[6] */
231         /* se_proto_no is used by RPC code only... hmm */
232         smallint se_proto_no;                 /* IPPROTO_TCP/UDP, n/a for AF_UNIX */
233         smallint se_checked;                  /* looked at during merge */
234         unsigned se_max;                      /* allowed instances per minute */
235         unsigned se_count;                    /* number started since se_time */
236         unsigned se_time;                     /* when we started counting */
237         char *se_user;                        /* user name to run as */
238         char *se_group;                       /* group name to run as, can be NULL */
239 #ifdef INETD_BUILTINS_ENABLED
240         const struct builtin *se_builtin;     /* if built-in, description */
241 #endif
242         struct servtab_t *se_next;
243         len_and_sockaddr *se_lsa;
244         char *se_program;                     /* server program */
245 #define MAXARGV 20
246         char *se_argv[MAXARGV + 1];           /* program arguments */
247 } servtab_t;
248
249 #ifdef INETD_BUILTINS_ENABLED
250 /* Echo received data */
251 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
252 static void FAST_FUNC echo_stream(int, servtab_t *);
253 static void FAST_FUNC echo_dg(int, servtab_t *);
254 #endif
255 /* Internet /dev/null */
256 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
257 static void FAST_FUNC discard_stream(int, servtab_t *);
258 static void FAST_FUNC discard_dg(int, servtab_t *);
259 #endif
260 /* Return 32 bit time since 1900 */
261 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
262 static void FAST_FUNC machtime_stream(int, servtab_t *);
263 static void FAST_FUNC machtime_dg(int, servtab_t *);
264 #endif
265 /* Return human-readable time */
266 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
267 static void FAST_FUNC daytime_stream(int, servtab_t *);
268 static void FAST_FUNC daytime_dg(int, servtab_t *);
269 #endif
270 /* Familiar character generator */
271 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
272 static void FAST_FUNC chargen_stream(int, servtab_t *);
273 static void FAST_FUNC chargen_dg(int, servtab_t *);
274 #endif
275
276 struct builtin {
277         /* NB: not necessarily NUL terminated */
278         char bi_service7[7];      /* internally provided service name */
279         uint8_t bi_fork;          /* 1 if stream fn should run in child */
280         void (*bi_stream_fn)(int, servtab_t *) FAST_FUNC;
281         void (*bi_dgram_fn)(int, servtab_t *) FAST_FUNC;
282 };
283
284 static const struct builtin builtins[] = {
285 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
286         { "echo", 1, echo_stream, echo_dg },
287 #endif
288 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
289         { "discard", 1, discard_stream, discard_dg },
290 #endif
291 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
292         { "chargen", 1, chargen_stream, chargen_dg },
293 #endif
294 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
295         { "time", 0, machtime_stream, machtime_dg },
296 #endif
297 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
298         { "daytime", 0, daytime_stream, daytime_dg },
299 #endif
300 };
301 #endif /* INETD_BUILTINS_ENABLED */
302
303 struct globals {
304         rlim_t rlim_ofile_cur;
305         struct rlimit rlim_ofile;
306         servtab_t *serv_list;
307         int global_queuelen;
308         int maxsock;         /* max fd# in allsock, -1: unknown */
309         /* whenever maxsock grows, prev_maxsock is set to new maxsock,
310          * but if maxsock is set to -1, prev_maxsock is not changed */
311         int prev_maxsock;
312         unsigned max_concurrency;
313         smallint alarm_armed;
314         uid_t real_uid; /* user ID who ran us */
315         const char *config_filename;
316         parser_t *parser;
317         char *default_local_hostname;
318 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
319         char *end_ring;
320         char *ring_pos;
321         char ring[128];
322 #endif
323         fd_set allsock;
324         /* Used in next_line(), and as scratch read buffer */
325         char line[256];          /* _at least_ 256, see LINE_SIZE */
326 } FIX_ALIASING;
327 #define G (*(struct globals*)&bb_common_bufsiz1)
328 enum { LINE_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line) };
329 struct BUG_G_too_big {
330         char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
331 };
332 #define rlim_ofile_cur  (G.rlim_ofile_cur )
333 #define rlim_ofile      (G.rlim_ofile     )
334 #define serv_list       (G.serv_list      )
335 #define global_queuelen (G.global_queuelen)
336 #define maxsock         (G.maxsock        )
337 #define prev_maxsock    (G.prev_maxsock   )
338 #define max_concurrency (G.max_concurrency)
339 #define alarm_armed     (G.alarm_armed    )
340 #define real_uid        (G.real_uid       )
341 #define config_filename (G.config_filename)
342 #define parser          (G.parser         )
343 #define default_local_hostname (G.default_local_hostname)
344 #define first_ps_byte   (G.first_ps_byte  )
345 #define last_ps_byte    (G.last_ps_byte   )
346 #define end_ring        (G.end_ring       )
347 #define ring_pos        (G.ring_pos       )
348 #define ring            (G.ring           )
349 #define allsock         (G.allsock        )
350 #define line            (G.line           )
351 #define INIT_G() do { \
352         rlim_ofile_cur = OPEN_MAX; \
353         global_queuelen = 128; \
354         config_filename = "/etc/inetd.conf"; \
355 } while (0)
356
357 static void maybe_close(int fd)
358 {
359         if (fd >= 0)
360                 close(fd);
361 }
362
363 // TODO: move to libbb?
364 static len_and_sockaddr *xzalloc_lsa(int family)
365 {
366         len_and_sockaddr *lsa;
367         int sz;
368
369         sz = sizeof(struct sockaddr_in);
370         if (family == AF_UNIX)
371                 sz = sizeof(struct sockaddr_un);
372 #if ENABLE_FEATURE_IPV6
373         if (family == AF_INET6)
374                 sz = sizeof(struct sockaddr_in6);
375 #endif
376         lsa = xzalloc(LSA_LEN_SIZE + sz);
377         lsa->len = sz;
378         lsa->u.sa.sa_family = family;
379         return lsa;
380 }
381
382 static void rearm_alarm(void)
383 {
384         if (!alarm_armed) {
385                 alarm_armed = 1;
386                 alarm(RETRYTIME);
387         }
388 }
389
390 static void block_CHLD_HUP_ALRM(sigset_t *m)
391 {
392         sigemptyset(m);
393         sigaddset(m, SIGCHLD);
394         sigaddset(m, SIGHUP);
395         sigaddset(m, SIGALRM);
396         sigprocmask(SIG_BLOCK, m, m); /* old sigmask is stored in m */
397 }
398
399 static void restore_sigmask(sigset_t *m)
400 {
401         sigprocmask(SIG_SETMASK, m, NULL);
402 }
403
404 #if ENABLE_FEATURE_INETD_RPC
405 static void register_rpc(servtab_t *sep)
406 {
407         int n;
408         struct sockaddr_in ir_sin;
409         socklen_t size;
410
411         size = sizeof(ir_sin);
412         if (getsockname(sep->se_fd, (struct sockaddr *) &ir_sin, &size) < 0) {
413                 bb_perror_msg("getsockname");
414                 return;
415         }
416
417         for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) {
418                 pmap_unset(sep->se_rpcprog, n);
419                 if (!pmap_set(sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port)))
420                         bb_perror_msg("%s %s: pmap_set(%u,%u,%u,%u)",
421                                 sep->se_service, sep->se_proto,
422                                 sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port));
423         }
424 }
425
426 static void unregister_rpc(servtab_t *sep)
427 {
428         int n;
429
430         for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) {
431                 if (!pmap_unset(sep->se_rpcprog, n))
432                         bb_perror_msg("pmap_unset(%u,%u)", sep->se_rpcprog, n);
433         }
434 }
435 #endif /* FEATURE_INETD_RPC */
436
437 static void bump_nofile(void)
438 {
439         enum { FD_CHUNK = 32 };
440         struct rlimit rl;
441
442         /* Never fails under Linux (except if you pass it bad arguments) */
443         getrlimit(RLIMIT_NOFILE, &rl);
444         rl.rlim_cur = MIN(rl.rlim_max, rl.rlim_cur + FD_CHUNK);
445         rl.rlim_cur = MIN(FD_SETSIZE, rl.rlim_cur + FD_CHUNK);
446         if (rl.rlim_cur <= rlim_ofile_cur) {
447                 bb_error_msg("can't extend file limit, max = %d",
448                                                 (int) rl.rlim_cur);
449                 return;
450         }
451
452         if (setrlimit(RLIMIT_NOFILE, &rl) < 0) {
453                 bb_perror_msg("setrlimit");
454                 return;
455         }
456
457         rlim_ofile_cur = rl.rlim_cur;
458 }
459
460 static void remove_fd_from_set(int fd)
461 {
462         if (fd >= 0) {
463                 FD_CLR(fd, &allsock);
464                 maxsock = -1;
465         }
466 }
467
468 static void add_fd_to_set(int fd)
469 {
470         if (fd >= 0) {
471                 FD_SET(fd, &allsock);
472                 if (maxsock >= 0 && fd > maxsock) {
473                         prev_maxsock = maxsock = fd;
474                         if ((rlim_t)fd > rlim_ofile_cur - FD_MARGIN)
475                                 bump_nofile();
476                 }
477         }
478 }
479
480 static void recalculate_maxsock(void)
481 {
482         int fd = 0;
483
484         /* We may have no services, in this case maxsock should still be >= 0
485          * (code elsewhere is not happy with maxsock == -1) */
486         maxsock = 0;
487         while (fd <= prev_maxsock) {
488                 if (FD_ISSET(fd, &allsock))
489                         maxsock = fd;
490                 fd++;
491         }
492         prev_maxsock = maxsock;
493         if ((rlim_t)maxsock > rlim_ofile_cur - FD_MARGIN)
494                 bump_nofile();
495 }
496
497 static void prepare_socket_fd(servtab_t *sep)
498 {
499         int r, fd;
500
501         fd = socket(sep->se_family, sep->se_socktype, 0);
502         if (fd < 0) {
503                 bb_perror_msg("socket");
504                 return;
505         }
506         setsockopt_reuseaddr(fd);
507
508 #if ENABLE_FEATURE_INETD_RPC
509         if (is_rpc_service(sep)) {
510                 struct passwd *pwd;
511
512                 /* zero out the port for all RPC services; let bind()
513                  * find one. */
514                 set_nport(&sep->se_lsa->u.sa, 0);
515
516                 /* for RPC services, attempt to use a reserved port
517                  * if they are going to be running as root. */
518                 if (real_uid == 0 && sep->se_family == AF_INET
519                  && (pwd = getpwnam(sep->se_user)) != NULL
520                  && pwd->pw_uid == 0
521                 ) {
522                         r = bindresvport(fd, &sep->se_lsa->u.sin);
523                 } else {
524                         r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
525                 }
526                 if (r == 0) {
527                         int saveerrno = errno;
528                         /* update lsa with port# */
529                         getsockname(fd, &sep->se_lsa->u.sa, &sep->se_lsa->len);
530                         errno = saveerrno;
531                 }
532         } else
533 #endif
534         {
535                 if (sep->se_family == AF_UNIX) {
536                         struct sockaddr_un *sun;
537                         sun = (struct sockaddr_un*)&(sep->se_lsa->u.sa);
538                         unlink(sun->sun_path);
539                 }
540                 r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
541         }
542         if (r < 0) {
543                 bb_perror_msg("%s/%s: bind",
544                                 sep->se_service, sep->se_proto);
545                 close(fd);
546                 rearm_alarm();
547                 return;
548         }
549         if (sep->se_socktype == SOCK_STREAM)
550                 listen(fd, global_queuelen);
551
552         add_fd_to_set(fd);
553         sep->se_fd = fd;
554 }
555
556 static int reopen_config_file(void)
557 {
558         free(default_local_hostname);
559         default_local_hostname = xstrdup("*");
560         if (parser != NULL)
561                 config_close(parser);
562         parser = config_open(config_filename);
563         return (parser != NULL);
564 }
565
566 static void close_config_file(void)
567 {
568         if (parser) {
569                 config_close(parser);
570                 parser = NULL;
571         }
572 }
573
574 static void free_servtab_strings(servtab_t *cp)
575 {
576         int i;
577
578         free(cp->se_local_hostname);
579         free(cp->se_service);
580         free(cp->se_proto);
581         free(cp->se_user);
582         free(cp->se_group);
583         free(cp->se_lsa); /* not a string in fact */
584         free(cp->se_program);
585         for (i = 0; i < MAXARGV; i++)
586                 free(cp->se_argv[i]);
587 }
588
589 static servtab_t *new_servtab(void)
590 {
591         servtab_t *newtab = xzalloc(sizeof(servtab_t));
592         newtab->se_fd = -1; /* paranoia */
593         return newtab;
594 }
595
596 static servtab_t *dup_servtab(servtab_t *sep)
597 {
598         servtab_t *newtab;
599         int argc;
600
601         newtab = new_servtab();
602         *newtab = *sep; /* struct copy */
603         /* deep-copying strings */
604         newtab->se_service = xstrdup(newtab->se_service);
605         newtab->se_proto = xstrdup(newtab->se_proto);
606         newtab->se_user = xstrdup(newtab->se_user);
607         newtab->se_group = xstrdup(newtab->se_group);
608         newtab->se_program = xstrdup(newtab->se_program);
609         for (argc = 0; argc <= MAXARGV; argc++)
610                 newtab->se_argv[argc] = xstrdup(newtab->se_argv[argc]);
611         /* NB: se_fd, se_hostaddr and se_next are always
612          * overwrittend by callers, so we don't bother resetting them
613          * to NULL/0/-1 etc */
614
615         return newtab;
616 }
617
618 /* gcc generates much more code if this is inlined */
619 static servtab_t *parse_one_line(void)
620 {
621         int argc;
622         char *token[6+MAXARGV];
623         char *p, *arg;
624         char *hostdelim;
625         servtab_t *sep;
626         servtab_t *nsep;
627  new:
628         sep = new_servtab();
629  more:
630         argc = config_read(parser, token, 6+MAXARGV, 1, "# \t", PARSE_NORMAL);
631         if (!argc) {
632                 free(sep);
633                 return NULL;
634         }
635
636         /* [host:]service socktype proto wait user[:group] prog [args] */
637         /* Check for "host:...." line */
638         arg = token[0];
639         hostdelim = strrchr(arg, ':');
640         if (hostdelim) {
641                 *hostdelim = '\0';
642                 sep->se_local_hostname = xstrdup(arg);
643                 arg = hostdelim + 1;
644                 if (*arg == '\0' && argc == 1) {
645                         /* Line has just "host:", change the
646                          * default host for the following lines. */
647                         free(default_local_hostname);
648                         default_local_hostname = sep->se_local_hostname;
649                         goto more;
650                 }
651         } else
652                 sep->se_local_hostname = xstrdup(default_local_hostname);
653
654         /* service socktype proto wait user[:group] prog [args] */
655         sep->se_service = xstrdup(arg);
656
657         /* socktype proto wait user[:group] prog [args] */
658         if (argc < 6) {
659  parse_err:
660                 bb_error_msg("parse error on line %u, line is ignored",
661                                 parser->lineno);
662                 free_servtab_strings(sep);
663                 /* Just "goto more" can make sep to carry over e.g.
664                  * "rpc"-ness (by having se_rpcver_lo != 0).
665                  * We will be more paranoid: */
666                 free(sep);
667                 goto new;
668         }
669
670         {
671                 static const int8_t SOCK_xxx[] ALIGN1 = {
672                         -1,
673                         SOCK_STREAM, SOCK_DGRAM, SOCK_RDM,
674                         SOCK_SEQPACKET, SOCK_RAW
675                 };
676                 sep->se_socktype = SOCK_xxx[1 + index_in_strings(
677                         "stream""\0" "dgram""\0" "rdm""\0"
678                         "seqpacket""\0" "raw""\0"
679                         , token[1])];
680         }
681
682         /* {unix,[rpc/]{tcp,udp}[6]} wait user[:group] prog [args] */
683         sep->se_proto = arg = xstrdup(token[2]);
684         if (strcmp(arg, "unix") == 0) {
685                 sep->se_family = AF_UNIX;
686         } else {
687                 char *six;
688                 sep->se_family = AF_INET;
689                 six = last_char_is(arg, '6');
690                 if (six) {
691 #if ENABLE_FEATURE_IPV6
692                         *six = '\0';
693                         sep->se_family = AF_INET6;
694 #else
695                         bb_error_msg("%s: no support for IPv6", sep->se_proto);
696                         goto parse_err;
697 #endif
698                 }
699                 if (strncmp(arg, "rpc/", 4) == 0) {
700 #if ENABLE_FEATURE_INETD_RPC
701                         unsigned n;
702                         arg += 4;
703                         p = strchr(sep->se_service, '/');
704                         if (p == NULL) {
705                                 bb_error_msg("no rpc version: '%s'", sep->se_service);
706                                 goto parse_err;
707                         }
708                         *p++ = '\0';
709                         n = bb_strtou(p, &p, 10);
710                         if (n > INT_MAX) {
711  bad_ver_spec:
712                                 bb_error_msg("bad rpc version");
713                                 goto parse_err;
714                         }
715                         sep->se_rpcver_lo = sep->se_rpcver_hi = n;
716                         if (*p == '-') {
717                                 p++;
718                                 n = bb_strtou(p, &p, 10);
719                                 if (n > INT_MAX || (int)n < sep->se_rpcver_lo)
720                                         goto bad_ver_spec;
721                                 sep->se_rpcver_hi = n;
722                         }
723                         if (*p != '\0')
724                                 goto bad_ver_spec;
725 #else
726                         bb_error_msg("no support for rpc services");
727                         goto parse_err;
728 #endif
729                 }
730                 /* we don't really need getprotobyname()! */
731                 if (strcmp(arg, "tcp") == 0)
732                         sep->se_proto_no = IPPROTO_TCP; /* = 6 */
733                 if (strcmp(arg, "udp") == 0)
734                         sep->se_proto_no = IPPROTO_UDP; /* = 17 */
735                 if (six)
736                         *six = '6';
737                 if (!sep->se_proto_no) /* not tcp/udp?? */
738                         goto parse_err;
739         }
740
741         /* [no]wait[.max] user[:group] prog [args] */
742         arg = token[3];
743         sep->se_max = max_concurrency;
744         p = strchr(arg, '.');
745         if (p) {
746                 *p++ = '\0';
747                 sep->se_max = bb_strtou(p, NULL, 10);
748                 if (errno)
749                         goto parse_err;
750         }
751         sep->se_wait = (arg[0] != 'n' || arg[1] != 'o');
752         if (!sep->se_wait) /* "no" seen */
753                 arg += 2;
754         if (strcmp(arg, "wait") != 0)
755                 goto parse_err;
756
757         /* user[:group] prog [args] */
758         sep->se_user = xstrdup(token[4]);
759         arg = strchr(sep->se_user, '.');
760         if (arg == NULL)
761                 arg = strchr(sep->se_user, ':');
762         if (arg) {
763                 *arg++ = '\0';
764                 sep->se_group = xstrdup(arg);
765         }
766
767         /* prog [args] */
768         sep->se_program = xstrdup(token[5]);
769 #ifdef INETD_BUILTINS_ENABLED
770         if (strcmp(sep->se_program, "internal") == 0
771          && strlen(sep->se_service) <= 7
772          && (sep->se_socktype == SOCK_STREAM
773              || sep->se_socktype == SOCK_DGRAM)
774         ) {
775                 unsigned i;
776                 for (i = 0; i < ARRAY_SIZE(builtins); i++)
777                         if (strncmp(builtins[i].bi_service7, sep->se_service, 7) == 0)
778                                 goto found_bi;
779                 bb_error_msg("unknown internal service %s", sep->se_service);
780                 goto parse_err;
781  found_bi:
782                 sep->se_builtin = &builtins[i];
783                 /* stream builtins must be "nowait", dgram must be "wait" */
784                 if (sep->se_wait != (sep->se_socktype == SOCK_DGRAM))
785                         goto parse_err;
786         }
787 #endif
788         argc = 0;
789         while ((arg = token[6+argc]) != NULL && argc < MAXARGV)
790                 sep->se_argv[argc++] = xstrdup(arg);
791         /* Some inetd.conf files have no argv's, not even argv[0].
792          * Fix them up.
793          * (Technically, programs can be execed with argv[0] = NULL,
794          * but many programs do not like that at all) */
795         if (argc == 0)
796                 sep->se_argv[0] = xstrdup(sep->se_program);
797
798         /* catch mixups. "<service> stream udp ..." == wtf */
799         if (sep->se_socktype == SOCK_STREAM) {
800                 if (sep->se_proto_no == IPPROTO_UDP)
801                         goto parse_err;
802         }
803         if (sep->se_socktype == SOCK_DGRAM) {
804                 if (sep->se_proto_no == IPPROTO_TCP)
805                         goto parse_err;
806         }
807
808 //      bb_info_msg(
809 //              "ENTRY[%s][%s][%s][%d][%d][%d][%d][%d][%s][%s][%s]",
810 //              sep->se_local_hostname, sep->se_service, sep->se_proto, sep->se_wait, sep->se_proto_no,
811 //              sep->se_max, sep->se_count, sep->se_time, sep->se_user, sep->se_group, sep->se_program);
812
813         /* check if the hostname specifier is a comma separated list
814          * of hostnames. we'll make new entries for each address. */
815         while ((hostdelim = strrchr(sep->se_local_hostname, ',')) != NULL) {
816                 nsep = dup_servtab(sep);
817                 /* NUL terminate the hostname field of the existing entry,
818                  * and make a dup for the new entry. */
819                 *hostdelim++ = '\0';
820                 nsep->se_local_hostname = xstrdup(hostdelim);
821                 nsep->se_next = sep->se_next;
822                 sep->se_next = nsep;
823         }
824
825         /* was doing it here: */
826         /* DNS resolution, create copies for each IP address */
827         /* IPv6-ization destroyed it :( */
828
829         return sep;
830 }
831
832 static servtab_t *insert_in_servlist(servtab_t *cp)
833 {
834         servtab_t *sep;
835         sigset_t omask;
836
837         sep = new_servtab();
838         *sep = *cp; /* struct copy */
839         sep->se_fd = -1;
840 #if ENABLE_FEATURE_INETD_RPC
841         sep->se_rpcprog = -1;
842 #endif
843         block_CHLD_HUP_ALRM(&omask);
844         sep->se_next = serv_list;
845         serv_list = sep;
846         restore_sigmask(&omask);
847         return sep;
848 }
849
850 static int same_serv_addr_proto(servtab_t *old, servtab_t *new)
851 {
852         if (strcmp(old->se_local_hostname, new->se_local_hostname) != 0)
853                 return 0;
854         if (strcmp(old->se_service, new->se_service) != 0)
855                 return 0;
856         if (strcmp(old->se_proto, new->se_proto) != 0)
857                 return 0;
858         return 1;
859 }
860
861 static void reread_config_file(int sig UNUSED_PARAM)
862 {
863         servtab_t *sep, *cp, **sepp;
864         len_and_sockaddr *lsa;
865         sigset_t omask;
866         unsigned n;
867         uint16_t port;
868         int save_errno = errno;
869
870         if (!reopen_config_file())
871                 goto ret;
872         for (sep = serv_list; sep; sep = sep->se_next)
873                 sep->se_checked = 0;
874
875         goto first_line;
876         while (1) {
877                 if (cp == NULL) {
878  first_line:
879                         cp = parse_one_line();
880                         if (cp == NULL)
881                                 break;
882                 }
883                 for (sep = serv_list; sep; sep = sep->se_next)
884                         if (same_serv_addr_proto(sep, cp))
885                                 goto equal_servtab;
886                 /* not an "equal" servtab */
887                 sep = insert_in_servlist(cp);
888                 goto after_check;
889  equal_servtab:
890                 {
891                         int i;
892
893                         block_CHLD_HUP_ALRM(&omask);
894 #if ENABLE_FEATURE_INETD_RPC
895                         if (is_rpc_service(sep))
896                                 unregister_rpc(sep);
897                         sep->se_rpcver_lo = cp->se_rpcver_lo;
898                         sep->se_rpcver_hi = cp->se_rpcver_hi;
899 #endif
900                         if (cp->se_wait == 0) {
901                                 /* New config says "nowait". If old one
902                                  * was "wait", we currently may be waiting
903                                  * for a child (and not accepting connects).
904                                  * Stop waiting, start listening again.
905                                  * (if it's not true, this op is harmless) */
906                                 add_fd_to_set(sep->se_fd);
907                         }
908                         sep->se_wait = cp->se_wait;
909                         sep->se_max = cp->se_max;
910                         /* string fields need more love - we don't want to leak them */
911 #define SWAP(type, a, b) do { type c = (type)a; a = (type)b; b = (type)c; } while (0)
912                         SWAP(char*, sep->se_user, cp->se_user);
913                         SWAP(char*, sep->se_group, cp->se_group);
914                         SWAP(char*, sep->se_program, cp->se_program);
915                         for (i = 0; i < MAXARGV; i++)
916                                 SWAP(char*, sep->se_argv[i], cp->se_argv[i]);
917 #undef SWAP
918                         restore_sigmask(&omask);
919                         free_servtab_strings(cp);
920                 }
921  after_check:
922                 /* cp->string_fields are consumed by insert_in_servlist()
923                  * or freed at this point, cp itself is not yet freed. */
924                 sep->se_checked = 1;
925
926                 /* create new len_and_sockaddr */
927                 switch (sep->se_family) {
928                         struct sockaddr_un *sun;
929                 case AF_UNIX:
930                         lsa = xzalloc_lsa(AF_UNIX);
931                         sun = (struct sockaddr_un*)&lsa->u.sa;
932                         safe_strncpy(sun->sun_path, sep->se_service, sizeof(sun->sun_path));
933                         break;
934
935                 default: /* case AF_INET, case AF_INET6 */
936                         n = bb_strtou(sep->se_service, NULL, 10);
937 #if ENABLE_FEATURE_INETD_RPC
938                         if (is_rpc_service(sep)) {
939                                 sep->se_rpcprog = n;
940                                 if (errno) { /* se_service is not numeric */
941                                         struct rpcent *rp = getrpcbyname(sep->se_service);
942                                         if (rp == NULL) {
943                                                 bb_error_msg("%s: unknown rpc service", sep->se_service);
944                                                 goto next_cp;
945                                         }
946                                         sep->se_rpcprog = rp->r_number;
947                                 }
948                                 if (sep->se_fd == -1)
949                                         prepare_socket_fd(sep);
950                                 if (sep->se_fd != -1)
951                                         register_rpc(sep);
952                                 goto next_cp;
953                         }
954 #endif
955                         /* what port to listen on? */
956                         port = htons(n);
957                         if (errno || n > 0xffff) { /* se_service is not numeric */
958                                 char protoname[4];
959                                 struct servent *sp;
960                                 /* can result only in "tcp" or "udp": */
961                                 safe_strncpy(protoname, sep->se_proto, 4);
962                                 sp = getservbyname(sep->se_service, protoname);
963                                 if (sp == NULL) {
964                                         bb_error_msg("%s/%s: unknown service",
965                                                         sep->se_service, sep->se_proto);
966                                         goto next_cp;
967                                 }
968                                 port = sp->s_port;
969                         }
970                         if (LONE_CHAR(sep->se_local_hostname, '*')) {
971                                 lsa = xzalloc_lsa(sep->se_family);
972                                 set_nport(&lsa->u.sa, port);
973                         } else {
974                                 lsa = host_and_af2sockaddr(sep->se_local_hostname,
975                                                 ntohs(port), sep->se_family);
976                                 if (!lsa) {
977                                         bb_error_msg("%s/%s: unknown host '%s'",
978                                                 sep->se_service, sep->se_proto,
979                                                 sep->se_local_hostname);
980                                         goto next_cp;
981                                 }
982                         }
983                         break;
984                 } /* end of "switch (sep->se_family)" */
985
986                 /* did lsa change? Then close/open */
987                 if (sep->se_lsa == NULL
988                  || lsa->len != sep->se_lsa->len
989                  || memcmp(&lsa->u.sa, &sep->se_lsa->u.sa, lsa->len) != 0
990                 ) {
991                         remove_fd_from_set(sep->se_fd);
992                         maybe_close(sep->se_fd);
993                         free(sep->se_lsa);
994                         sep->se_lsa = lsa;
995                         sep->se_fd = -1;
996                 } else {
997                         free(lsa);
998                 }
999                 if (sep->se_fd == -1)
1000                         prepare_socket_fd(sep);
1001  next_cp:
1002                 sep = cp->se_next;
1003                 free(cp);
1004                 cp = sep;
1005         } /* end of "while (1) parse lines" */
1006         close_config_file();
1007
1008         /* Purge anything not looked at above - these are stale entries,
1009          * new config file doesnt have them. */
1010         block_CHLD_HUP_ALRM(&omask);
1011         sepp = &serv_list;
1012         while ((sep = *sepp)) {
1013                 if (sep->se_checked) {
1014                         sepp = &sep->se_next;
1015                         continue;
1016                 }
1017                 *sepp = sep->se_next;
1018                 remove_fd_from_set(sep->se_fd);
1019                 maybe_close(sep->se_fd);
1020 #if ENABLE_FEATURE_INETD_RPC
1021                 if (is_rpc_service(sep))
1022                         unregister_rpc(sep);
1023 #endif
1024                 if (sep->se_family == AF_UNIX)
1025                         unlink(sep->se_service);
1026                 free_servtab_strings(sep);
1027                 free(sep);
1028         }
1029         restore_sigmask(&omask);
1030  ret:
1031         errno = save_errno;
1032 }
1033
1034 static void reap_child(int sig UNUSED_PARAM)
1035 {
1036         pid_t pid;
1037         int status;
1038         servtab_t *sep;
1039         int save_errno = errno;
1040
1041         for (;;) {
1042                 pid = wait_any_nohang(&status);
1043                 if (pid <= 0)
1044                         break;
1045                 for (sep = serv_list; sep; sep = sep->se_next) {
1046                         if (sep->se_wait != pid)
1047                                 continue;
1048                         /* One of our "wait" services */
1049                         if (WIFEXITED(status) && WEXITSTATUS(status))
1050                                 bb_error_msg("%s: exit status %u",
1051                                                 sep->se_program, WEXITSTATUS(status));
1052                         else if (WIFSIGNALED(status))
1053                                 bb_error_msg("%s: exit signal %u",
1054                                                 sep->se_program, WTERMSIG(status));
1055                         sep->se_wait = 1;
1056                         add_fd_to_set(sep->se_fd);
1057                         break;
1058                 }
1059         }
1060         errno = save_errno;
1061 }
1062
1063 static void retry_network_setup(int sig UNUSED_PARAM)
1064 {
1065         int save_errno = errno;
1066         servtab_t *sep;
1067
1068         alarm_armed = 0;
1069         for (sep = serv_list; sep; sep = sep->se_next) {
1070                 if (sep->se_fd == -1) {
1071                         prepare_socket_fd(sep);
1072 #if ENABLE_FEATURE_INETD_RPC
1073                         if (sep->se_fd != -1 && is_rpc_service(sep))
1074                                 register_rpc(sep);
1075 #endif
1076                 }
1077         }
1078         errno = save_errno;
1079 }
1080
1081 static void clean_up_and_exit(int sig UNUSED_PARAM)
1082 {
1083         servtab_t *sep;
1084
1085         /* XXX signal race walking sep list */
1086         for (sep = serv_list; sep; sep = sep->se_next) {
1087                 if (sep->se_fd == -1)
1088                         continue;
1089
1090                 switch (sep->se_family) {
1091                 case AF_UNIX:
1092                         unlink(sep->se_service);
1093                         break;
1094                 default: /* case AF_INET, AF_INET6 */
1095 #if ENABLE_FEATURE_INETD_RPC
1096                         if (sep->se_wait == 1 && is_rpc_service(sep))
1097                                 unregister_rpc(sep);   /* XXX signal race */
1098 #endif
1099                         break;
1100                 }
1101                 if (ENABLE_FEATURE_CLEAN_UP)
1102                         close(sep->se_fd);
1103         }
1104         remove_pidfile(_PATH_INETDPID);
1105         exit(EXIT_SUCCESS);
1106 }
1107
1108 int inetd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1109 int inetd_main(int argc UNUSED_PARAM, char **argv)
1110 {
1111         struct sigaction sa, saved_pipe_handler;
1112         servtab_t *sep, *sep2;
1113         struct passwd *pwd;
1114         struct group *grp = grp; /* for compiler */
1115         int opt;
1116         pid_t pid;
1117         sigset_t omask;
1118
1119         INIT_G();
1120
1121         real_uid = getuid();
1122         if (real_uid != 0) /* run by non-root user */
1123                 config_filename = NULL;
1124
1125         opt_complementary = "R+:q+"; /* -q N, -R N */
1126         opt = getopt32(argv, "R:feq:", &max_concurrency, &global_queuelen);
1127         argv += optind;
1128         //argc -= optind;
1129         if (argv[0])
1130                 config_filename = argv[0];
1131         if (config_filename == NULL)
1132                 bb_error_msg_and_die("non-root must specify config file");
1133         if (!(opt & 2))
1134                 bb_daemonize_or_rexec(0, argv - optind);
1135         else
1136                 bb_sanitize_stdio();
1137         if (!(opt & 4)) {
1138                 /* LOG_NDELAY: connect to syslog daemon NOW.
1139                  * Otherwise, we may open syslog socket
1140                  * in vforked child, making opened fds and syslog()
1141                  * internal state inconsistent.
1142                  * This was observed to leak file descriptors. */
1143                 openlog(applet_name, LOG_PID | LOG_NDELAY, LOG_DAEMON);
1144                 logmode = LOGMODE_SYSLOG;
1145         }
1146
1147         if (real_uid == 0) {
1148                 /* run by root, ensure groups vector gets trashed */
1149                 gid_t gid = getgid();
1150                 setgroups(1, &gid);
1151         }
1152
1153         write_pidfile(_PATH_INETDPID);
1154
1155         /* never fails under Linux (except if you pass it bad arguments) */
1156         getrlimit(RLIMIT_NOFILE, &rlim_ofile);
1157         rlim_ofile_cur = rlim_ofile.rlim_cur;
1158         if (rlim_ofile_cur == RLIM_INFINITY)    /* ! */
1159                 rlim_ofile_cur = OPEN_MAX;
1160
1161         memset(&sa, 0, sizeof(sa));
1162         /*sigemptyset(&sa.sa_mask); - memset did it */
1163         sigaddset(&sa.sa_mask, SIGALRM);
1164         sigaddset(&sa.sa_mask, SIGCHLD);
1165         sigaddset(&sa.sa_mask, SIGHUP);
1166 //FIXME: explain why no SA_RESTART
1167 //FIXME: retry_network_setup is unsafe to run in signal handler (many reasons)!
1168         sa.sa_handler = retry_network_setup;
1169         sigaction_set(SIGALRM, &sa);
1170 //FIXME: reread_config_file is unsafe to run in signal handler(many reasons)!
1171         sa.sa_handler = reread_config_file;
1172         sigaction_set(SIGHUP, &sa);
1173 //FIXME: reap_child is unsafe to run in signal handler (uses stdio)!
1174         sa.sa_handler = reap_child;
1175         sigaction_set(SIGCHLD, &sa);
1176 //FIXME: clean_up_and_exit is unsafe to run in signal handler (uses stdio)!
1177         sa.sa_handler = clean_up_and_exit;
1178         sigaction_set(SIGTERM, &sa);
1179         sa.sa_handler = clean_up_and_exit;
1180         sigaction_set(SIGINT, &sa);
1181         sa.sa_handler = SIG_IGN;
1182         sigaction(SIGPIPE, &sa, &saved_pipe_handler);
1183
1184         reread_config_file(SIGHUP); /* load config from file */
1185
1186         for (;;) {
1187                 int ready_fd_cnt;
1188                 int ctrl, accepted_fd, new_udp_fd;
1189                 fd_set readable;
1190
1191                 if (maxsock < 0)
1192                         recalculate_maxsock();
1193
1194                 readable = allsock; /* struct copy */
1195                 /* if there are no fds to wait on, we will block
1196                  * until signal wakes us up (maxsock == 0, but readable
1197                  * never contains fds 0 and 1...) */
1198                 ready_fd_cnt = select(maxsock + 1, &readable, NULL, NULL, NULL);
1199                 if (ready_fd_cnt < 0) {
1200                         if (errno != EINTR) {
1201                                 bb_perror_msg("select");
1202                                 sleep(1);
1203                         }
1204                         continue;
1205                 }
1206
1207                 for (sep = serv_list; ready_fd_cnt && sep; sep = sep->se_next) {
1208                         if (sep->se_fd == -1 || !FD_ISSET(sep->se_fd, &readable))
1209                                 continue;
1210
1211                         ready_fd_cnt--;
1212                         ctrl = sep->se_fd;
1213                         accepted_fd = -1;
1214                         new_udp_fd = -1;
1215                         if (!sep->se_wait) {
1216                                 if (sep->se_socktype == SOCK_STREAM) {
1217                                         ctrl = accepted_fd = accept(sep->se_fd, NULL, NULL);
1218                                         if (ctrl < 0) {
1219                                                 if (errno != EINTR)
1220                                                         bb_perror_msg("accept (for %s)", sep->se_service);
1221                                                 continue;
1222                                         }
1223                                 }
1224                                 /* "nowait" udp */
1225                                 if (sep->se_socktype == SOCK_DGRAM
1226                                  && sep->se_family != AF_UNIX
1227                                 ) {
1228 /* How udp "nowait" works:
1229  * child peeks at (received and buffered by kernel) UDP packet,
1230  * performs connect() on the socket so that it is linked only
1231  * to this peer. But this also affects parent, because descriptors
1232  * are shared after fork() a-la dup(). When parent performs
1233  * select(), it will see this descriptor connected to the peer (!)
1234  * and still readable, will act on it and mess things up
1235  * (can create many copies of same child, etc).
1236  * Parent must create and use new socket instead. */
1237                                         new_udp_fd = socket(sep->se_family, SOCK_DGRAM, 0);
1238                                         if (new_udp_fd < 0) { /* error: eat packet, forget about it */
1239  udp_err:
1240                                                 recv(sep->se_fd, line, LINE_SIZE, MSG_DONTWAIT);
1241                                                 continue;
1242                                         }
1243                                         setsockopt_reuseaddr(new_udp_fd);
1244                                         /* TODO: better do bind after vfork in parent,
1245                                          * so that we don't have two wildcard bound sockets
1246                                          * even for a brief moment? */
1247                                         if (bind(new_udp_fd, &sep->se_lsa->u.sa, sep->se_lsa->len) < 0) {
1248                                                 close(new_udp_fd);
1249                                                 goto udp_err;
1250                                         }
1251                                 }
1252                         }
1253
1254                         block_CHLD_HUP_ALRM(&omask);
1255                         pid = 0;
1256 #ifdef INETD_BUILTINS_ENABLED
1257                         /* do we need to fork? */
1258                         if (sep->se_builtin == NULL
1259                          || (sep->se_socktype == SOCK_STREAM
1260                              && sep->se_builtin->bi_fork))
1261 #endif
1262                         {
1263                                 if (sep->se_max != 0) {
1264                                         if (++sep->se_count == 1)
1265                                                 sep->se_time = monotonic_sec();
1266                                         else if (sep->se_count >= sep->se_max) {
1267                                                 unsigned now = monotonic_sec();
1268                                                 /* did we accumulate se_max connects too quickly? */
1269                                                 if (now - sep->se_time <= CNT_INTERVAL) {
1270                                                         bb_error_msg("%s/%s: too many connections, pausing",
1271                                                                         sep->se_service, sep->se_proto);
1272                                                         remove_fd_from_set(sep->se_fd);
1273                                                         close(sep->se_fd);
1274                                                         sep->se_fd = -1;
1275                                                         sep->se_count = 0;
1276                                                         rearm_alarm(); /* will revive it in RETRYTIME sec */
1277                                                         restore_sigmask(&omask);
1278                                                         maybe_close(accepted_fd);
1279                                                         continue; /* -> check next fd in fd set */
1280                                                 }
1281                                                 sep->se_count = 0;
1282                                         }
1283                                 }
1284                                 /* on NOMMU, streamed chargen
1285                                  * builtin wouldn't work, but it is
1286                                  * not allowed on NOMMU (ifdefed out) */
1287 #ifdef INETD_BUILTINS_ENABLED
1288                                 if (BB_MMU && sep->se_builtin)
1289                                         pid = fork();
1290                                 else
1291 #endif
1292                                         pid = vfork();
1293
1294                                 if (pid < 0) { /* fork error */
1295                                         bb_perror_msg("vfork"+1);
1296                                         sleep(1);
1297                                         restore_sigmask(&omask);
1298                                         maybe_close(accepted_fd);
1299                                         continue; /* -> check next fd in fd set */
1300                                 }
1301                                 if (pid == 0)
1302                                         pid--; /* -1: "we did fork and we are child" */
1303                         }
1304                         /* if pid == 0 here, we never forked */
1305
1306                         if (pid > 0) { /* parent */
1307                                 if (sep->se_wait) {
1308                                         /* tcp wait: we passed listening socket to child,
1309                                          * will wait for child to terminate */
1310                                         sep->se_wait = pid;
1311                                         remove_fd_from_set(sep->se_fd);
1312                                 }
1313                                 if (new_udp_fd >= 0) {
1314                                         /* udp nowait: child connected the socket,
1315                                          * we created and will use new, unconnected one */
1316                                         xmove_fd(new_udp_fd, sep->se_fd);
1317                                 }
1318                                 restore_sigmask(&omask);
1319                                 maybe_close(accepted_fd);
1320                                 continue; /* -> check next fd in fd set */
1321                         }
1322
1323                         /* we are either child or didn't vfork at all */
1324 #ifdef INETD_BUILTINS_ENABLED
1325                         if (sep->se_builtin) {
1326                                 if (pid) { /* "pid" is -1: we did vfork */
1327                                         close(sep->se_fd); /* listening socket */
1328                                         logmode = LOGMODE_NONE; /* make xwrite etc silent */
1329                                 }
1330                                 restore_sigmask(&omask);
1331                                 if (sep->se_socktype == SOCK_STREAM)
1332                                         sep->se_builtin->bi_stream_fn(ctrl, sep);
1333                                 else
1334                                         sep->se_builtin->bi_dgram_fn(ctrl, sep);
1335                                 if (pid) /* we did vfork */
1336                                         _exit(EXIT_FAILURE);
1337                                 maybe_close(accepted_fd);
1338                                 continue; /* -> check next fd in fd set */
1339                         }
1340 #endif
1341                         /* child */
1342                         setsid();
1343                         /* "nowait" udp */
1344                         if (new_udp_fd >= 0) {
1345                                 len_and_sockaddr *lsa = xzalloc_lsa(sep->se_family);
1346                                 /* peek at the packet and remember peer addr */
1347                                 int r = recvfrom(ctrl, NULL, 0, MSG_PEEK|MSG_DONTWAIT,
1348                                         &lsa->u.sa, &lsa->len);
1349                                 if (r < 0)
1350                                         goto do_exit1;
1351                                 /* make this socket "connected" to peer addr:
1352                                  * only packets from this peer will be recv'ed,
1353                                  * and bare write()/send() will work on it */
1354                                 connect(ctrl, &lsa->u.sa, lsa->len);
1355                                 free(lsa);
1356                         }
1357                         /* prepare env and exec program */
1358                         pwd = getpwnam(sep->se_user);
1359                         if (pwd == NULL) {
1360                                 bb_error_msg("%s: no such %s", sep->se_user, "user");
1361                                 goto do_exit1;
1362                         }
1363                         if (sep->se_group && (grp = getgrnam(sep->se_group)) == NULL) {
1364                                 bb_error_msg("%s: no such %s", sep->se_group, "group");
1365                                 goto do_exit1;
1366                         }
1367                         if (real_uid != 0 && real_uid != pwd->pw_uid) {
1368                                 /* a user running private inetd */
1369                                 bb_error_msg("non-root must run services as himself");
1370                                 goto do_exit1;
1371                         }
1372                         if (pwd->pw_uid) {
1373                                 if (sep->se_group)
1374                                         pwd->pw_gid = grp->gr_gid;
1375                                 /* initgroups, setgid, setuid: */
1376                                 change_identity(pwd);
1377                         } else if (sep->se_group) {
1378                                 xsetgid(grp->gr_gid);
1379                                 setgroups(1, &grp->gr_gid);
1380                         }
1381                         if (rlim_ofile.rlim_cur != rlim_ofile_cur)
1382                                 if (setrlimit(RLIMIT_NOFILE, &rlim_ofile) < 0)
1383                                         bb_perror_msg("setrlimit");
1384
1385                         /* closelog(); - WRONG. we are after vfork,
1386                          * this may confuse syslog() internal state.
1387                          * Let's hope libc sets syslog fd to CLOEXEC...
1388                          */
1389                         xmove_fd(ctrl, STDIN_FILENO);
1390                         xdup2(STDIN_FILENO, STDOUT_FILENO);
1391                         /* manpages of inetd I managed to find either say
1392                          * that stderr is also redirected to the network,
1393                          * or do not talk about redirection at all (!) */
1394                         if (!sep->se_wait) /* only for usual "tcp nowait" */
1395                                 xdup2(STDIN_FILENO, STDERR_FILENO);
1396                         /* NB: among others, this loop closes listening sockets
1397                          * for nowait stream children */
1398                         for (sep2 = serv_list; sep2; sep2 = sep2->se_next)
1399                                 if (sep2->se_fd != ctrl)
1400                                         maybe_close(sep2->se_fd);
1401                         sigaction_set(SIGPIPE, &saved_pipe_handler);
1402                         restore_sigmask(&omask);
1403                         BB_EXECVP(sep->se_program, sep->se_argv);
1404                         bb_perror_msg("can't execute '%s'", sep->se_program);
1405  do_exit1:
1406                         /* eat packet in udp case */
1407                         if (sep->se_socktype != SOCK_STREAM)
1408                                 recv(0, line, LINE_SIZE, MSG_DONTWAIT);
1409                         _exit(EXIT_FAILURE);
1410                 } /* for (sep = servtab...) */
1411         } /* for (;;) */
1412 }
1413
1414 #if !BB_MMU
1415 static const char *const cat_args[] = { "cat", NULL };
1416 #endif
1417
1418 /*
1419  * Internet services provided internally by inetd:
1420  */
1421 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
1422 /* Echo service -- echo data back. */
1423 /* ARGSUSED */
1424 static void FAST_FUNC echo_stream(int s, servtab_t *sep UNUSED_PARAM)
1425 {
1426 #if BB_MMU
1427         while (1) {
1428                 ssize_t sz = safe_read(s, line, LINE_SIZE);
1429                 if (sz <= 0)
1430                         break;
1431                 xwrite(s, line, sz);
1432         }
1433 #else
1434         /* We are after vfork here! */
1435         /* move network socket to stdin/stdout */
1436         xmove_fd(s, STDIN_FILENO);
1437         xdup2(STDIN_FILENO, STDOUT_FILENO);
1438         /* no error messages please... */
1439         close(STDERR_FILENO);
1440         xopen(bb_dev_null, O_WRONLY);
1441         BB_EXECVP("cat", (char**)cat_args);
1442         /* on failure we return to main, which does exit(EXIT_FAILURE) */
1443 #endif
1444 }
1445 static void FAST_FUNC echo_dg(int s, servtab_t *sep)
1446 {
1447         enum { BUFSIZE = 12*1024 }; /* for jumbo sized packets! :) */
1448         char *buf = xmalloc(BUFSIZE); /* too big for stack */
1449         int sz;
1450         len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1451
1452         lsa->len = sep->se_lsa->len;
1453         /* dgram builtins are non-forking - DONT BLOCK! */
1454         sz = recvfrom(s, buf, BUFSIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len);
1455         if (sz > 0)
1456                 sendto(s, buf, sz, 0, &lsa->u.sa, lsa->len);
1457         free(buf);
1458 }
1459 #endif  /* FEATURE_INETD_SUPPORT_BUILTIN_ECHO */
1460
1461
1462 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
1463 /* Discard service -- ignore data. */
1464 /* ARGSUSED */
1465 static void FAST_FUNC discard_stream(int s, servtab_t *sep UNUSED_PARAM)
1466 {
1467 #if BB_MMU
1468         while (safe_read(s, line, LINE_SIZE) > 0)
1469                 continue;
1470 #else
1471         /* We are after vfork here! */
1472         /* move network socket to stdin */
1473         xmove_fd(s, STDIN_FILENO);
1474         /* discard output */
1475         close(STDOUT_FILENO);
1476         xopen(bb_dev_null, O_WRONLY);
1477         /* no error messages please... */
1478         xdup2(STDOUT_FILENO, STDERR_FILENO);
1479         BB_EXECVP("cat", (char**)cat_args);
1480         /* on failure we return to main, which does exit(EXIT_FAILURE) */
1481 #endif
1482 }
1483 /* ARGSUSED */
1484 static void FAST_FUNC discard_dg(int s, servtab_t *sep UNUSED_PARAM)
1485 {
1486         /* dgram builtins are non-forking - DONT BLOCK! */
1487         recv(s, line, LINE_SIZE, MSG_DONTWAIT);
1488 }
1489 #endif /* FEATURE_INETD_SUPPORT_BUILTIN_DISCARD */
1490
1491
1492 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
1493 #define LINESIZ 72
1494 static void init_ring(void)
1495 {
1496         int i;
1497
1498         end_ring = ring;
1499         for (i = ' '; i < 127; i++)
1500                 *end_ring++ = i;
1501 }
1502 /* Character generator. MMU arches only. */
1503 /* ARGSUSED */
1504 static void FAST_FUNC chargen_stream(int s, servtab_t *sep UNUSED_PARAM)
1505 {
1506         char *rs;
1507         int len;
1508         char text[LINESIZ + 2];
1509
1510         if (!end_ring) {
1511                 init_ring();
1512                 rs = ring;
1513         }
1514
1515         text[LINESIZ] = '\r';
1516         text[LINESIZ + 1] = '\n';
1517         rs = ring;
1518         for (;;) {
1519                 len = end_ring - rs;
1520                 if (len >= LINESIZ)
1521                         memmove(text, rs, LINESIZ);
1522                 else {
1523                         memmove(text, rs, len);
1524                         memmove(text + len, ring, LINESIZ - len);
1525                 }
1526                 if (++rs == end_ring)
1527                         rs = ring;
1528                 xwrite(s, text, sizeof(text));
1529         }
1530 }
1531 /* ARGSUSED */
1532 static void FAST_FUNC chargen_dg(int s, servtab_t *sep)
1533 {
1534         int len;
1535         char text[LINESIZ + 2];
1536         len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1537
1538         /* Eat UDP packet which started it all */
1539         /* dgram builtins are non-forking - DONT BLOCK! */
1540         lsa->len = sep->se_lsa->len;
1541         if (recvfrom(s, text, sizeof(text), MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1542                 return;
1543
1544         if (!end_ring) {
1545                 init_ring();
1546                 ring_pos = ring;
1547         }
1548
1549         len = end_ring - ring_pos;
1550         if (len >= LINESIZ)
1551                 memmove(text, ring_pos, LINESIZ);
1552         else {
1553                 memmove(text, ring_pos, len);
1554                 memmove(text + len, ring, LINESIZ - len);
1555         }
1556         if (++ring_pos == end_ring)
1557                 ring_pos = ring;
1558         text[LINESIZ] = '\r';
1559         text[LINESIZ + 1] = '\n';
1560         sendto(s, text, sizeof(text), 0, &lsa->u.sa, lsa->len);
1561 }
1562 #endif /* FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN */
1563
1564
1565 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
1566 /*
1567  * Return a machine readable date and time, in the form of the
1568  * number of seconds since midnight, Jan 1, 1900.  Since gettimeofday
1569  * returns the number of seconds since midnight, Jan 1, 1970,
1570  * we must add 2208988800 seconds to this figure to make up for
1571  * some seventy years Bell Labs was asleep.
1572  */
1573 static uint32_t machtime(void)
1574 {
1575         struct timeval tv;
1576
1577         gettimeofday(&tv, NULL);
1578         return htonl((uint32_t)(tv.tv_sec + 2208988800));
1579 }
1580 /* ARGSUSED */
1581 static void FAST_FUNC machtime_stream(int s, servtab_t *sep UNUSED_PARAM)
1582 {
1583         uint32_t result;
1584
1585         result = machtime();
1586         full_write(s, &result, sizeof(result));
1587 }
1588 static void FAST_FUNC machtime_dg(int s, servtab_t *sep)
1589 {
1590         uint32_t result;
1591         len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1592
1593         lsa->len = sep->se_lsa->len;
1594         if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1595                 return;
1596
1597         result = machtime();
1598         sendto(s, &result, sizeof(result), 0, &lsa->u.sa, lsa->len);
1599 }
1600 #endif /* FEATURE_INETD_SUPPORT_BUILTIN_TIME */
1601
1602
1603 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
1604 /* Return human-readable time of day */
1605 /* ARGSUSED */
1606 static void FAST_FUNC daytime_stream(int s, servtab_t *sep UNUSED_PARAM)
1607 {
1608         time_t t;
1609
1610         t = time(NULL);
1611         fdprintf(s, "%.24s\r\n", ctime(&t));
1612 }
1613 static void FAST_FUNC daytime_dg(int s, servtab_t *sep)
1614 {
1615         time_t t;
1616         len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1617
1618         lsa->len = sep->se_lsa->len;
1619         if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1620                 return;
1621
1622         t = time(NULL);
1623         sprintf(line, "%.24s\r\n", ctime(&t));
1624         sendto(s, line, strlen(line), 0, &lsa->u.sa, lsa->len);
1625 }
1626 #endif /* FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME */