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 */
8 * Copyright (c) 1983,1991 The Regents of the University of California.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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
40 /* Inetd - Internet super-server
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
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
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.
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)
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)
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.
83 * A line can also consist of just
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
91 * is implicitly in effect at the beginning of the file.
93 * The hostaddress specifier may (and often will) contain dots;
94 * the service name must not.
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.
102 * Comment lines are indicated by a '#' in column 1.
105 /* inetd rules for passing file descriptors to children
106 * (http://www.freebsd.org/cgi/man.cgi?query=inetd):
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.
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.
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.
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)
148 * 2) group is specified:
149 * a) user = root: setgid(specified group)
152 * b) other: initgroups(name, specified group)
153 * setgid(specified group)
156 //config:config INETD
157 //config: bool "inetd (18 kb)"
159 //config: select FEATURE_SYSLOG
161 //config: Internet superserver daemon
163 //config:config FEATURE_INETD_SUPPORT_BUILTIN_ECHO
164 //config: bool "Support echo service on port 7"
166 //config: depends on INETD
168 //config: Internal service which echoes data back.
169 //config: Activated by configuration lines like these:
170 //config: echo stream tcp nowait root internal
171 //config: echo dgram udp wait root internal
173 //config:config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
174 //config: bool "Support discard service on port 8"
176 //config: depends on INETD
178 //config: Internal service which discards all input.
179 //config: Activated by configuration lines like these:
180 //config: discard stream tcp nowait root internal
181 //config: discard dgram udp wait root internal
183 //config:config FEATURE_INETD_SUPPORT_BUILTIN_TIME
184 //config: bool "Support time service on port 37"
186 //config: depends on INETD
188 //config: Internal service which returns big-endian 32-bit number
189 //config: of seconds passed since 1900-01-01. The number wraps around
190 //config: on overflow.
191 //config: Activated by configuration lines like these:
192 //config: time stream tcp nowait root internal
193 //config: time dgram udp wait root internal
195 //config:config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
196 //config: bool "Support daytime service on port 13"
198 //config: depends on INETD
200 //config: Internal service which returns human-readable time.
201 //config: Activated by configuration lines like these:
202 //config: daytime stream tcp nowait root internal
203 //config: daytime dgram udp wait root internal
205 //config:config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
206 //config: bool "Support chargen service on port 19"
208 //config: depends on INETD
210 //config: Internal service which generates endless stream
211 //config: of all ASCII chars beetween space and char 126.
212 //config: Activated by configuration lines like these:
213 //config: chargen stream tcp nowait root internal
214 //config: chargen dgram udp wait root internal
216 //config:config FEATURE_INETD_RPC
217 //config: bool "Support RPC services"
218 //config: default n # very rarely used, and needs Sun RPC support in libc
219 //config: depends on INETD
221 //config: Support Sun-RPC based services
223 //applet:IF_INETD(APPLET(inetd, BB_DIR_USR_SBIN, BB_SUID_DROP))
225 //kbuild:lib-$(CONFIG_INETD) += inetd.o
227 //usage:#define inetd_trivial_usage
228 //usage: "[-fe] [-q N] [-R N] [CONFFILE]"
229 //usage:#define inetd_full_usage "\n\n"
230 //usage: "Listen for network connections and launch programs\n"
231 //usage: "\n -f Run in foreground"
232 //usage: "\n -e Log to stderr"
233 //usage: "\n -q N Socket listen queue (default 128)"
234 //usage: "\n -R N Pause services after N connects/min"
235 //usage: "\n (default 0 - disabled)"
236 //usage: "\n Default CONFFILE is /etc/inetd.conf"
239 #include <sys/resource.h> /* setrlimit */
240 #include <sys/socket.h> /* un.h may need this */
244 #include "common_bufsiz.h"
246 #if ENABLE_FEATURE_INETD_RPC
247 # if defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__)
248 # warning "You probably need to build uClibc with UCLIBC_HAS_RPC for NFS support"
249 /* not #error, since user may be using e.g. libtirpc instead.
251 * CONFIG_EXTRA_CFLAGS="-I/usr/include/tirpc"
252 * CONFIG_EXTRA_LDLIBS="tirpc"
255 # include <rpc/rpc.h>
256 # include <rpc/pmap_clnt.h>
260 /* stream version of chargen is forking but not execing,
261 * can't do that (easily) on NOMMU */
262 #undef ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
263 #define ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN 0
266 #define CNT_INTERVAL 60 /* servers in CNT_INTERVAL sec. */
267 #define RETRYTIME 60 /* retry after bind or server fail */
269 // TODO: explain, or get rid of setrlimit games
271 #ifndef RLIMIT_NOFILE
272 #define RLIMIT_NOFILE RLIMIT_OFILE
279 /* Reserve some descriptors, 3 stdio + at least: 1 log, 1 conf. file */
282 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD \
283 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO \
284 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN \
285 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME \
286 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
287 # define INETD_BUILTINS_ENABLED
290 typedef struct servtab_t {
291 /* The most frequently referenced one: */
292 int se_fd; /* open descriptor */
293 /* NB: 'biggest fields last' saves on code size (~250 bytes) */
294 /* [addr:]service socktype proto wait user[:group] prog [args] */
295 char *se_local_hostname; /* addr to listen on */
296 char *se_service; /* "80" or "www" or "mount/2[-3]" */
297 /* socktype is in se_socktype */ /* "stream" "dgram" "raw" "rdm" "seqpacket" */
298 char *se_proto; /* "unix" or "[rpc/]tcp[6]" */
299 #if ENABLE_FEATURE_INETD_RPC
300 int se_rpcprog; /* rpc program number */
301 int se_rpcver_lo; /* rpc program lowest version */
302 int se_rpcver_hi; /* rpc program highest version */
303 #define is_rpc_service(sep) ((sep)->se_rpcver_lo != 0)
305 #define is_rpc_service(sep) 0
307 pid_t se_wait; /* 0:"nowait", 1:"wait", >1:"wait" */
308 /* and waiting for this pid */
309 socktype_t se_socktype; /* SOCK_STREAM/DGRAM/RDM/... */
310 family_t se_family; /* AF_UNIX/INET[6] */
311 /* se_proto_no is used by RPC code only... hmm */
312 smallint se_proto_no; /* IPPROTO_TCP/UDP, n/a for AF_UNIX */
313 smallint se_checked; /* looked at during merge */
314 unsigned se_max; /* allowed instances per minute */
315 unsigned se_count; /* number started since se_time */
316 unsigned se_time; /* when we started counting */
317 char *se_user; /* user name to run as */
318 char *se_group; /* group name to run as, can be NULL */
319 #ifdef INETD_BUILTINS_ENABLED
320 const struct builtin *se_builtin; /* if built-in, description */
322 struct servtab_t *se_next;
323 len_and_sockaddr *se_lsa;
324 char *se_program; /* server program */
326 char *se_argv[MAXARGV + 1]; /* program arguments */
329 #ifdef INETD_BUILTINS_ENABLED
330 /* Echo received data */
331 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
332 static void FAST_FUNC echo_stream(int, servtab_t *);
333 static void FAST_FUNC echo_dg(int, servtab_t *);
335 /* Internet /dev/null */
336 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
337 static void FAST_FUNC discard_stream(int, servtab_t *);
338 static void FAST_FUNC discard_dg(int, servtab_t *);
340 /* Return 32 bit time since 1900 */
341 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
342 static void FAST_FUNC machtime_stream(int, servtab_t *);
343 static void FAST_FUNC machtime_dg(int, servtab_t *);
345 /* Return human-readable time */
346 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
347 static void FAST_FUNC daytime_stream(int, servtab_t *);
348 static void FAST_FUNC daytime_dg(int, servtab_t *);
350 /* Familiar character generator */
351 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
352 static void FAST_FUNC chargen_stream(int, servtab_t *);
353 static void FAST_FUNC chargen_dg(int, servtab_t *);
357 /* NB: not necessarily NUL terminated */
358 char bi_service7[7]; /* internally provided service name */
359 uint8_t bi_fork; /* 1 if stream fn should run in child */
360 void (*bi_stream_fn)(int, servtab_t *) FAST_FUNC;
361 void (*bi_dgram_fn)(int, servtab_t *) FAST_FUNC;
364 static const struct builtin builtins[] = {
365 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
366 { "echo", 1, echo_stream, echo_dg },
368 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
369 { "discard", 1, discard_stream, discard_dg },
371 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
372 { "chargen", 1, chargen_stream, chargen_dg },
374 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
375 { "time", 0, machtime_stream, machtime_dg },
377 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
378 { "daytime", 0, daytime_stream, daytime_dg },
381 #endif /* INETD_BUILTINS_ENABLED */
384 rlim_t rlim_ofile_cur;
385 struct rlimit rlim_ofile;
386 servtab_t *serv_list;
388 int maxsock; /* max fd# in allsock, -1: unknown */
389 /* whenever maxsock grows, prev_maxsock is set to new maxsock,
390 * but if maxsock is set to -1, prev_maxsock is not changed */
392 unsigned max_concurrency;
393 smallint alarm_armed;
394 uid_t real_uid; /* user ID who ran us */
395 const char *config_filename;
397 char *default_local_hostname;
398 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
404 /* Used in next_line(), and as scratch read buffer */
405 char line[256]; /* _at least_ 256, see LINE_SIZE */
407 #define G (*(struct globals*)bb_common_bufsiz1)
408 enum { LINE_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line) };
409 #define rlim_ofile_cur (G.rlim_ofile_cur )
410 #define rlim_ofile (G.rlim_ofile )
411 #define serv_list (G.serv_list )
412 #define global_queuelen (G.global_queuelen)
413 #define maxsock (G.maxsock )
414 #define prev_maxsock (G.prev_maxsock )
415 #define max_concurrency (G.max_concurrency)
416 #define alarm_armed (G.alarm_armed )
417 #define real_uid (G.real_uid )
418 #define config_filename (G.config_filename)
419 #define parser (G.parser )
420 #define default_local_hostname (G.default_local_hostname)
421 #define first_ps_byte (G.first_ps_byte )
422 #define last_ps_byte (G.last_ps_byte )
423 #define end_ring (G.end_ring )
424 #define ring_pos (G.ring_pos )
425 #define ring (G.ring )
426 #define allsock (G.allsock )
427 #define line (G.line )
428 #define INIT_G() do { \
429 setup_common_bufsiz(); \
430 BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
431 rlim_ofile_cur = OPEN_MAX; \
432 global_queuelen = 128; \
433 config_filename = "/etc/inetd.conf"; \
437 # define dbg(...) ((void)0)
441 int dbg_fd = open("inetd_debug.log", O_WRONLY | O_CREAT | O_APPEND, 0666); \
443 fdprintf(dbg_fd, "%d: ", getpid()); \
444 fdprintf(dbg_fd, __VA_ARGS__); \
450 static void maybe_close(int fd)
454 dbg("closed fd:%d\n", fd);
458 // TODO: move to libbb?
459 static len_and_sockaddr *xzalloc_lsa(int family)
461 len_and_sockaddr *lsa;
464 sz = sizeof(struct sockaddr_in);
465 if (family == AF_UNIX)
466 sz = sizeof(struct sockaddr_un);
467 #if ENABLE_FEATURE_IPV6
468 if (family == AF_INET6)
469 sz = sizeof(struct sockaddr_in6);
471 lsa = xzalloc(LSA_LEN_SIZE + sz);
473 lsa->u.sa.sa_family = family;
477 static void rearm_alarm(void)
485 static void block_CHLD_HUP_ALRM(sigset_t *m)
488 sigaddset(m, SIGCHLD);
489 sigaddset(m, SIGHUP);
490 sigaddset(m, SIGALRM);
491 sigprocmask(SIG_BLOCK, m, m); /* old sigmask is stored in m */
494 static void restore_sigmask(sigset_t *m)
496 sigprocmask(SIG_SETMASK, m, NULL);
499 #if ENABLE_FEATURE_INETD_RPC
500 static void register_rpc(servtab_t *sep)
503 struct sockaddr_in ir_sin;
505 if (bb_getsockname(sep->se_fd, (struct sockaddr *) &ir_sin, sizeof(ir_sin)) < 0) {
506 //TODO: verify that such failure is even possible in Linux kernel
507 bb_perror_msg("getsockname");
511 for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) {
512 pmap_unset(sep->se_rpcprog, n);
513 if (!pmap_set(sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port)))
514 bb_perror_msg("%s %s: pmap_set(%u,%u,%u,%u)",
515 sep->se_service, sep->se_proto,
516 sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port));
520 static void unregister_rpc(servtab_t *sep)
524 for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) {
525 if (!pmap_unset(sep->se_rpcprog, n))
526 bb_perror_msg("pmap_unset(%u,%u)", sep->se_rpcprog, n);
529 #endif /* FEATURE_INETD_RPC */
531 static void bump_nofile(void)
533 enum { FD_CHUNK = 32 };
536 /* Never fails under Linux (except if you pass it bad arguments) */
537 getrlimit(RLIMIT_NOFILE, &rl);
538 rl.rlim_cur = MIN(rl.rlim_max, rl.rlim_cur + FD_CHUNK);
539 rl.rlim_cur = MIN(FD_SETSIZE, rl.rlim_cur + FD_CHUNK);
540 if (rl.rlim_cur <= rlim_ofile_cur) {
541 bb_error_msg("can't extend file limit, max = %d",
546 if (setrlimit(RLIMIT_NOFILE, &rl) < 0) {
547 bb_perror_msg("setrlimit");
551 rlim_ofile_cur = rl.rlim_cur;
554 static void remove_fd_from_set(int fd)
557 FD_CLR(fd, &allsock);
558 dbg("stopped listening on fd:%d\n", fd);
560 dbg("maxsock:%d\n", maxsock);
564 static void add_fd_to_set(int fd)
567 FD_SET(fd, &allsock);
568 dbg("started listening on fd:%d\n", fd);
569 if (maxsock >= 0 && fd > maxsock) {
570 prev_maxsock = maxsock = fd;
571 dbg("maxsock:%d\n", maxsock);
572 if ((rlim_t)fd > rlim_ofile_cur - FD_MARGIN)
578 static void recalculate_maxsock(void)
582 /* We may have no services, in this case maxsock should still be >= 0
583 * (code elsewhere is not happy with maxsock == -1) */
585 while (fd <= prev_maxsock) {
586 if (FD_ISSET(fd, &allsock))
590 dbg("recalculated maxsock:%d\n", maxsock);
591 prev_maxsock = maxsock;
592 if ((rlim_t)maxsock > rlim_ofile_cur - FD_MARGIN)
596 static void prepare_socket_fd(servtab_t *sep)
600 fd = socket(sep->se_family, sep->se_socktype, 0);
602 bb_perror_msg("socket");
605 setsockopt_reuseaddr(fd);
607 #if ENABLE_FEATURE_INETD_RPC
608 if (is_rpc_service(sep)) {
611 /* zero out the port for all RPC services; let bind()
613 set_nport(&sep->se_lsa->u.sa, 0);
615 /* for RPC services, attempt to use a reserved port
616 * if they are going to be running as root. */
617 if (real_uid == 0 && sep->se_family == AF_INET
618 && (pwd = getpwnam(sep->se_user)) != NULL
621 r = bindresvport(fd, &sep->se_lsa->u.sin);
623 r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
626 int saveerrno = errno;
627 /* update lsa with port# */
628 getsockname(fd, &sep->se_lsa->u.sa, &sep->se_lsa->len);
634 if (sep->se_family == AF_UNIX) {
635 struct sockaddr_un *sun;
636 sun = (struct sockaddr_un*)&(sep->se_lsa->u.sa);
637 unlink(sun->sun_path);
639 r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
642 bb_perror_msg("%s/%s: bind",
643 sep->se_service, sep->se_proto);
649 if (sep->se_socktype == SOCK_STREAM) {
650 listen(fd, global_queuelen);
651 dbg("new sep->se_fd:%d (stream)\n", fd);
653 dbg("new sep->se_fd:%d (!stream)\n", fd);
660 static int reopen_config_file(void)
662 free(default_local_hostname);
663 default_local_hostname = xstrdup("*");
665 config_close(parser);
666 parser = config_open(config_filename);
667 return (parser != NULL);
670 static void close_config_file(void)
673 config_close(parser);
678 static void free_servtab_strings(servtab_t *cp)
682 free(cp->se_local_hostname);
683 free(cp->se_service);
687 free(cp->se_lsa); /* not a string in fact */
688 free(cp->se_program);
689 for (i = 0; i < MAXARGV; i++)
690 free(cp->se_argv[i]);
693 static servtab_t *new_servtab(void)
695 servtab_t *newtab = xzalloc(sizeof(servtab_t));
696 newtab->se_fd = -1; /* paranoia */
700 static servtab_t *dup_servtab(servtab_t *sep)
705 newtab = new_servtab();
706 *newtab = *sep; /* struct copy */
707 /* deep-copying strings */
708 newtab->se_service = xstrdup(newtab->se_service);
709 newtab->se_proto = xstrdup(newtab->se_proto);
710 newtab->se_user = xstrdup(newtab->se_user);
711 newtab->se_group = xstrdup(newtab->se_group);
712 newtab->se_program = xstrdup(newtab->se_program);
713 for (argc = 0; argc <= MAXARGV; argc++)
714 newtab->se_argv[argc] = xstrdup(newtab->se_argv[argc]);
715 /* NB: se_fd, se_hostaddr and se_next are always
716 * overwrittend by callers, so we don't bother resetting them
717 * to NULL/0/-1 etc */
722 /* gcc generates much more code if this is inlined */
723 static NOINLINE servtab_t *parse_one_line(void)
726 char *token[6+MAXARGV];
734 argc = config_read(parser, token, 6+MAXARGV, 1, "# \t", PARSE_NORMAL);
740 /* [host:]service socktype proto wait user[:group] prog [args] */
741 /* Check for "host:...." line */
743 hostdelim = strrchr(arg, ':');
746 sep->se_local_hostname = xstrdup(arg);
748 if (*arg == '\0' && argc == 1) {
749 /* Line has just "host:", change the
750 * default host for the following lines. */
751 free(default_local_hostname);
752 default_local_hostname = sep->se_local_hostname;
753 /*sep->se_local_hostname = NULL; - redundant */
754 /* (we'll overwrite this field anyway) */
758 sep->se_local_hostname = xstrdup(default_local_hostname);
760 /* service socktype proto wait user[:group] prog [args] */
761 sep->se_service = xstrdup(arg);
763 /* socktype proto wait user[:group] prog [args] */
766 bb_error_msg("parse error on line %u, line is ignored",
768 /* Just "goto more" can make sep to carry over e.g.
769 * "rpc"-ness (by having se_rpcver_lo != 0).
770 * We will be more paranoid: */
771 free_servtab_strings(sep);
777 static const int8_t SOCK_xxx[] ALIGN1 = {
779 SOCK_STREAM, SOCK_DGRAM, SOCK_RDM,
780 SOCK_SEQPACKET, SOCK_RAW
782 sep->se_socktype = SOCK_xxx[1 + index_in_strings(
783 "stream""\0" "dgram""\0" "rdm""\0"
784 "seqpacket""\0" "raw""\0"
788 /* {unix,[rpc/]{tcp,udp}[6]} wait user[:group] prog [args] */
789 sep->se_proto = arg = xstrdup(token[2]);
790 if (strcmp(arg, "unix") == 0) {
791 sep->se_family = AF_UNIX;
794 sep->se_family = AF_INET;
795 six = last_char_is(arg, '6');
797 #if ENABLE_FEATURE_IPV6
799 sep->se_family = AF_INET6;
801 bb_error_msg("%s: no support for IPv6", sep->se_proto);
805 if (is_prefixed_with(arg, "rpc/")) {
806 #if ENABLE_FEATURE_INETD_RPC
809 p = strchr(sep->se_service, '/');
811 bb_error_msg("no rpc version: '%s'", sep->se_service);
815 n = bb_strtou(p, &p, 10);
818 bb_error_msg("bad rpc version");
821 sep->se_rpcver_lo = sep->se_rpcver_hi = n;
824 n = bb_strtou(p, &p, 10);
825 if (n > INT_MAX || (int)n < sep->se_rpcver_lo)
827 sep->se_rpcver_hi = n;
832 bb_error_msg("no support for rpc services");
836 /* we don't really need getprotobyname()! */
837 if (strcmp(arg, "tcp") == 0)
838 sep->se_proto_no = IPPROTO_TCP; /* = 6 */
839 if (strcmp(arg, "udp") == 0)
840 sep->se_proto_no = IPPROTO_UDP; /* = 17 */
843 if (!sep->se_proto_no) /* not tcp/udp?? */
847 /* [no]wait[.max] user[:group] prog [args] */
849 sep->se_max = max_concurrency;
850 p = strchr(arg, '.');
853 sep->se_max = bb_strtou(p, NULL, 10);
857 sep->se_wait = (arg[0] != 'n' || arg[1] != 'o');
858 if (!sep->se_wait) /* "no" seen */
860 if (strcmp(arg, "wait") != 0)
863 /* user[:group] prog [args] */
864 sep->se_user = xstrdup(token[4]);
865 arg = strchr(sep->se_user, '.');
867 arg = strchr(sep->se_user, ':');
870 sep->se_group = xstrdup(arg);
874 sep->se_program = xstrdup(token[5]);
875 #ifdef INETD_BUILTINS_ENABLED
876 if (strcmp(sep->se_program, "internal") == 0
877 && strlen(sep->se_service) <= 7
878 && (sep->se_socktype == SOCK_STREAM
879 || sep->se_socktype == SOCK_DGRAM)
882 for (i = 0; i < ARRAY_SIZE(builtins); i++)
883 if (strncmp(builtins[i].bi_service7, sep->se_service, 7) == 0)
885 bb_error_msg("unknown internal service %s", sep->se_service);
888 sep->se_builtin = &builtins[i];
889 /* stream builtins must be "nowait", dgram must be "wait" */
890 if (sep->se_wait != (sep->se_socktype == SOCK_DGRAM))
895 while (argc < MAXARGV && (arg = token[6+argc]) != NULL)
896 sep->se_argv[argc++] = xstrdup(arg);
897 /* Some inetd.conf files have no argv's, not even argv[0].
899 * (Technically, programs can be execed with argv[0] = NULL,
900 * but many programs do not like that at all) */
902 sep->se_argv[0] = xstrdup(sep->se_program);
904 /* catch mixups. "<service> stream udp ..." == wtf */
905 if (sep->se_socktype == SOCK_STREAM) {
906 if (sep->se_proto_no == IPPROTO_UDP)
909 if (sep->se_socktype == SOCK_DGRAM) {
910 if (sep->se_proto_no == IPPROTO_TCP)
915 // "ENTRY[%s][%s][%s][%d][%d][%d][%d][%d][%s][%s][%s]",
916 // sep->se_local_hostname, sep->se_service, sep->se_proto, sep->se_wait, sep->se_proto_no,
917 // sep->se_max, sep->se_count, sep->se_time, sep->se_user, sep->se_group, sep->se_program);
919 /* check if the hostname specifier is a comma separated list
920 * of hostnames. we'll make new entries for each address. */
921 while ((hostdelim = strrchr(sep->se_local_hostname, ',')) != NULL) {
922 nsep = dup_servtab(sep);
923 /* NUL terminate the hostname field of the existing entry,
924 * and make a dup for the new entry. */
926 nsep->se_local_hostname = xstrdup(hostdelim);
927 nsep->se_next = sep->se_next;
931 /* was doing it here: */
932 /* DNS resolution, create copies for each IP address */
933 /* IPv6-ization destroyed it :( */
938 static servtab_t *insert_in_servlist(servtab_t *cp)
944 *sep = *cp; /* struct copy */
946 #if ENABLE_FEATURE_INETD_RPC
947 sep->se_rpcprog = -1;
949 block_CHLD_HUP_ALRM(&omask);
950 sep->se_next = serv_list;
952 restore_sigmask(&omask);
956 static int same_serv_addr_proto(servtab_t *old, servtab_t *new)
958 if (strcmp(old->se_local_hostname, new->se_local_hostname) != 0)
960 if (strcmp(old->se_service, new->se_service) != 0)
962 if (strcmp(old->se_proto, new->se_proto) != 0)
967 static void reread_config_file(int sig UNUSED_PARAM)
969 servtab_t *sep, *cp, **sepp;
970 len_and_sockaddr *lsa;
974 int save_errno = errno;
976 if (!reopen_config_file())
978 for (sep = serv_list; sep; sep = sep->se_next)
985 cp = parse_one_line();
989 for (sep = serv_list; sep; sep = sep->se_next)
990 if (same_serv_addr_proto(sep, cp))
992 /* not an "equal" servtab */
993 sep = insert_in_servlist(cp);
999 block_CHLD_HUP_ALRM(&omask);
1000 #if ENABLE_FEATURE_INETD_RPC
1001 if (is_rpc_service(sep))
1002 unregister_rpc(sep);
1003 sep->se_rpcver_lo = cp->se_rpcver_lo;
1004 sep->se_rpcver_hi = cp->se_rpcver_hi;
1006 if (cp->se_wait == 0) {
1007 /* New config says "nowait". If old one
1008 * was "wait", we currently may be waiting
1009 * for a child (and not accepting connects).
1010 * Stop waiting, start listening again.
1011 * (if it's not true, this op is harmless) */
1012 add_fd_to_set(sep->se_fd);
1014 sep->se_wait = cp->se_wait;
1015 sep->se_max = cp->se_max;
1016 /* string fields need more love - we don't want to leak them */
1017 #define SWAP(type, a, b) do { type c = (type)a; a = (type)b; b = (type)c; } while (0)
1018 SWAP(char*, sep->se_user, cp->se_user);
1019 SWAP(char*, sep->se_group, cp->se_group);
1020 SWAP(char*, sep->se_program, cp->se_program);
1021 for (i = 0; i < MAXARGV; i++)
1022 SWAP(char*, sep->se_argv[i], cp->se_argv[i]);
1024 restore_sigmask(&omask);
1025 free_servtab_strings(cp);
1028 /* cp->string_fields are consumed by insert_in_servlist()
1029 * or freed at this point, cp itself is not yet freed. */
1030 sep->se_checked = 1;
1032 /* create new len_and_sockaddr */
1033 switch (sep->se_family) {
1034 struct sockaddr_un *sun;
1036 lsa = xzalloc_lsa(AF_UNIX);
1037 sun = (struct sockaddr_un*)&lsa->u.sa;
1038 safe_strncpy(sun->sun_path, sep->se_service, sizeof(sun->sun_path));
1041 default: /* case AF_INET, case AF_INET6 */
1042 n = bb_strtou(sep->se_service, NULL, 10);
1043 #if ENABLE_FEATURE_INETD_RPC
1044 if (is_rpc_service(sep)) {
1045 sep->se_rpcprog = n;
1046 if (errno) { /* se_service is not numeric */
1047 struct rpcent *rp = getrpcbyname(sep->se_service);
1049 bb_error_msg("%s: unknown rpc service", sep->se_service);
1052 sep->se_rpcprog = rp->r_number;
1054 if (sep->se_fd == -1)
1055 prepare_socket_fd(sep);
1056 if (sep->se_fd != -1)
1061 /* what port to listen on? */
1063 if (errno || n > 0xffff) { /* se_service is not numeric */
1066 /* can result only in "tcp" or "udp": */
1067 safe_strncpy(protoname, sep->se_proto, 4);
1068 sp = getservbyname(sep->se_service, protoname);
1070 bb_error_msg("%s/%s: unknown service",
1071 sep->se_service, sep->se_proto);
1076 if (LONE_CHAR(sep->se_local_hostname, '*')) {
1077 lsa = xzalloc_lsa(sep->se_family);
1078 set_nport(&lsa->u.sa, port);
1080 lsa = host_and_af2sockaddr(sep->se_local_hostname,
1081 ntohs(port), sep->se_family);
1083 bb_error_msg("%s/%s: unknown host '%s'",
1084 sep->se_service, sep->se_proto,
1085 sep->se_local_hostname);
1090 } /* end of "switch (sep->se_family)" */
1092 /* did lsa change? Then close/open */
1093 if (sep->se_lsa == NULL
1094 || lsa->len != sep->se_lsa->len
1095 || memcmp(&lsa->u.sa, &sep->se_lsa->u.sa, lsa->len) != 0
1097 remove_fd_from_set(sep->se_fd);
1098 maybe_close(sep->se_fd);
1105 if (sep->se_fd == -1)
1106 prepare_socket_fd(sep);
1111 } /* end of "while (1) parse lines" */
1112 close_config_file();
1114 /* Purge anything not looked at above - these are stale entries,
1115 * new config file doesnt have them. */
1116 block_CHLD_HUP_ALRM(&omask);
1118 while ((sep = *sepp) != NULL) {
1119 if (sep->se_checked) {
1120 sepp = &sep->se_next;
1123 *sepp = sep->se_next;
1124 remove_fd_from_set(sep->se_fd);
1125 maybe_close(sep->se_fd);
1126 #if ENABLE_FEATURE_INETD_RPC
1127 if (is_rpc_service(sep))
1128 unregister_rpc(sep);
1130 if (sep->se_family == AF_UNIX)
1131 unlink(sep->se_service);
1132 free_servtab_strings(sep);
1135 restore_sigmask(&omask);
1140 static void reap_child(int sig UNUSED_PARAM)
1145 int save_errno = errno;
1148 pid = wait_any_nohang(&status);
1151 for (sep = serv_list; sep; sep = sep->se_next) {
1152 if (sep->se_wait != pid)
1154 /* One of our "wait" services */
1155 if (WIFEXITED(status) && WEXITSTATUS(status))
1156 bb_error_msg("%s: exit status %u",
1157 sep->se_program, WEXITSTATUS(status));
1158 else if (WIFSIGNALED(status))
1159 bb_error_msg("%s: exit signal %u",
1160 sep->se_program, WTERMSIG(status));
1162 add_fd_to_set(sep->se_fd);
1169 static void retry_network_setup(int sig UNUSED_PARAM)
1171 int save_errno = errno;
1175 for (sep = serv_list; sep; sep = sep->se_next) {
1176 if (sep->se_fd == -1) {
1177 prepare_socket_fd(sep);
1178 #if ENABLE_FEATURE_INETD_RPC
1179 if (sep->se_fd != -1 && is_rpc_service(sep))
1187 static void clean_up_and_exit(int sig UNUSED_PARAM)
1191 /* XXX signal race walking sep list */
1192 for (sep = serv_list; sep; sep = sep->se_next) {
1193 if (sep->se_fd == -1)
1196 switch (sep->se_family) {
1198 unlink(sep->se_service);
1200 default: /* case AF_INET, AF_INET6 */
1201 #if ENABLE_FEATURE_INETD_RPC
1202 if (sep->se_wait == 1 && is_rpc_service(sep))
1203 unregister_rpc(sep); /* XXX signal race */
1207 if (ENABLE_FEATURE_CLEAN_UP)
1210 remove_pidfile(CONFIG_PID_FILE_PATH "/inetd.pid");
1214 int inetd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
1215 int inetd_main(int argc UNUSED_PARAM, char **argv)
1217 struct sigaction sa, saved_pipe_handler;
1218 servtab_t *sep, *sep2;
1220 struct group *grp = grp; /* for compiler */
1227 real_uid = getuid();
1228 if (real_uid != 0) /* run by non-root user */
1229 config_filename = NULL;
1232 opt = getopt32(argv, "R:+feq:+", &max_concurrency, &global_queuelen);
1236 config_filename = argv[0];
1237 if (config_filename == NULL)
1238 bb_error_msg_and_die("non-root must specify config file");
1240 bb_daemonize_or_rexec(0, argv - optind);
1242 bb_sanitize_stdio();
1244 /* LOG_NDELAY: connect to syslog daemon NOW.
1245 * Otherwise, we may open syslog socket
1246 * in vforked child, making opened fds and syslog()
1247 * internal state inconsistent.
1248 * This was observed to leak file descriptors. */
1249 openlog(applet_name, LOG_PID | LOG_NDELAY, LOG_DAEMON);
1250 logmode = LOGMODE_SYSLOG;
1253 if (real_uid == 0) {
1254 /* run by root, ensure groups vector gets trashed */
1255 gid_t gid = getgid();
1259 write_pidfile(CONFIG_PID_FILE_PATH "/inetd.pid");
1261 /* never fails under Linux (except if you pass it bad arguments) */
1262 getrlimit(RLIMIT_NOFILE, &rlim_ofile);
1263 rlim_ofile_cur = rlim_ofile.rlim_cur;
1264 if (rlim_ofile_cur == RLIM_INFINITY) /* ! */
1265 rlim_ofile_cur = OPEN_MAX;
1267 memset(&sa, 0, sizeof(sa));
1268 /*sigemptyset(&sa.sa_mask); - memset did it */
1269 sigaddset(&sa.sa_mask, SIGALRM);
1270 sigaddset(&sa.sa_mask, SIGCHLD);
1271 sigaddset(&sa.sa_mask, SIGHUP);
1272 //FIXME: explain why no SA_RESTART
1273 //FIXME: retry_network_setup is unsafe to run in signal handler (many reasons)!
1274 sa.sa_handler = retry_network_setup;
1275 sigaction_set(SIGALRM, &sa);
1276 //FIXME: reread_config_file is unsafe to run in signal handler(many reasons)!
1277 sa.sa_handler = reread_config_file;
1278 sigaction_set(SIGHUP, &sa);
1279 //FIXME: reap_child is unsafe to run in signal handler (uses stdio)!
1280 sa.sa_handler = reap_child;
1281 sigaction_set(SIGCHLD, &sa);
1282 //FIXME: clean_up_and_exit is unsafe to run in signal handler (uses stdio)!
1283 sa.sa_handler = clean_up_and_exit;
1284 sigaction_set(SIGTERM, &sa);
1285 sa.sa_handler = clean_up_and_exit;
1286 sigaction_set(SIGINT, &sa);
1287 sa.sa_handler = SIG_IGN;
1288 sigaction(SIGPIPE, &sa, &saved_pipe_handler);
1290 reread_config_file(SIGHUP); /* load config from file */
1294 int ctrl, accepted_fd, new_udp_fd;
1298 recalculate_maxsock();
1300 readable = allsock; /* struct copy */
1301 /* if there are no fds to wait on, we will block
1302 * until signal wakes us up (maxsock == 0, but readable
1303 * never contains fds 0 and 1...) */
1304 ready_fd_cnt = select(maxsock + 1, &readable, NULL, NULL, NULL);
1305 if (ready_fd_cnt < 0) {
1306 if (errno != EINTR) {
1307 bb_perror_msg("select");
1312 dbg("ready_fd_cnt:%d\n", ready_fd_cnt);
1314 for (sep = serv_list; ready_fd_cnt && sep; sep = sep->se_next) {
1315 if (sep->se_fd == -1 || !FD_ISSET(sep->se_fd, &readable))
1318 dbg("ready fd:%d\n", sep->se_fd);
1323 if (!sep->se_wait) {
1324 if (sep->se_socktype == SOCK_STREAM) {
1325 ctrl = accepted_fd = accept(sep->se_fd, NULL, NULL);
1326 dbg("accepted_fd:%d\n", accepted_fd);
1329 bb_perror_msg("accept (for %s)", sep->se_service);
1334 if (sep->se_socktype == SOCK_DGRAM
1335 && sep->se_family != AF_UNIX
1337 /* How udp "nowait" works:
1338 * child peeks at (received and buffered by kernel) UDP packet,
1339 * performs connect() on the socket so that it is linked only
1340 * to this peer. But this also affects parent, because descriptors
1341 * are shared after fork() a-la dup(). When parent performs
1342 * select(), it will see this descriptor connected to the peer (!)
1343 * and still readable, will act on it and mess things up
1344 * (can create many copies of same child, etc).
1345 * Parent must create and use new socket instead. */
1346 new_udp_fd = socket(sep->se_family, SOCK_DGRAM, 0);
1347 dbg("new_udp_fd:%d\n", new_udp_fd);
1348 if (new_udp_fd < 0) { /* error: eat packet, forget about it */
1350 recv(sep->se_fd, line, LINE_SIZE, MSG_DONTWAIT);
1353 setsockopt_reuseaddr(new_udp_fd);
1354 /* TODO: better do bind after fork in parent,
1355 * so that we don't have two wildcard bound sockets
1356 * even for a brief moment? */
1357 if (bind(new_udp_fd, &sep->se_lsa->u.sa, sep->se_lsa->len) < 0) {
1358 dbg("bind(new_udp_fd) failed\n");
1362 dbg("bind(new_udp_fd) succeeded\n");
1366 block_CHLD_HUP_ALRM(&omask);
1368 #ifdef INETD_BUILTINS_ENABLED
1369 /* do we need to fork? */
1370 if (sep->se_builtin == NULL
1371 || (sep->se_socktype == SOCK_STREAM
1372 && sep->se_builtin->bi_fork))
1375 if (sep->se_max != 0) {
1376 if (++sep->se_count == 1)
1377 sep->se_time = monotonic_sec();
1378 else if (sep->se_count >= sep->se_max) {
1379 unsigned now = monotonic_sec();
1380 /* did we accumulate se_max connects too quickly? */
1381 if (now - sep->se_time <= CNT_INTERVAL) {
1382 bb_error_msg("%s/%s: too many connections, pausing",
1383 sep->se_service, sep->se_proto);
1384 remove_fd_from_set(sep->se_fd);
1388 rearm_alarm(); /* will revive it in RETRYTIME sec */
1389 restore_sigmask(&omask);
1390 maybe_close(new_udp_fd);
1391 maybe_close(accepted_fd);
1392 continue; /* -> check next fd in fd set */
1397 /* on NOMMU, streamed chargen
1398 * builtin wouldn't work, but it is
1399 * not allowed on NOMMU (ifdefed out) */
1400 #ifdef INETD_BUILTINS_ENABLED
1401 if (BB_MMU && sep->se_builtin)
1407 if (pid < 0) { /* fork error */
1408 bb_perror_msg("vfork"+1);
1410 restore_sigmask(&omask);
1411 maybe_close(new_udp_fd);
1412 maybe_close(accepted_fd);
1413 continue; /* -> check next fd in fd set */
1416 pid--; /* -1: "we did fork and we are child" */
1418 /* if pid == 0 here, we didn't fork */
1420 if (pid > 0) { /* parent */
1422 /* wait: we passed socket to child,
1423 * will wait for child to terminate */
1425 remove_fd_from_set(sep->se_fd);
1427 if (new_udp_fd >= 0) {
1428 /* udp nowait: child connected the socket,
1429 * we created and will use new, unconnected one */
1430 xmove_fd(new_udp_fd, sep->se_fd);
1431 dbg("moved new_udp_fd:%d to sep->se_fd:%d\n", new_udp_fd, sep->se_fd);
1433 restore_sigmask(&omask);
1434 maybe_close(accepted_fd);
1435 continue; /* -> check next fd in fd set */
1438 /* we are either child or didn't fork at all */
1439 #ifdef INETD_BUILTINS_ENABLED
1440 if (sep->se_builtin) {
1441 if (pid) { /* "pid" is -1: we did fork */
1442 close(sep->se_fd); /* listening socket */
1443 dbg("closed sep->se_fd:%d\n", sep->se_fd);
1444 logmode = LOGMODE_NONE; /* make xwrite etc silent */
1446 restore_sigmask(&omask);
1447 if (sep->se_socktype == SOCK_STREAM)
1448 sep->se_builtin->bi_stream_fn(ctrl, sep);
1450 sep->se_builtin->bi_dgram_fn(ctrl, sep);
1451 if (pid) /* we did fork */
1452 _exit(EXIT_FAILURE);
1453 maybe_close(accepted_fd);
1454 continue; /* -> check next fd in fd set */
1460 if (new_udp_fd >= 0) {
1461 len_and_sockaddr *lsa;
1465 dbg("closed new_udp_fd:%d\n", new_udp_fd);
1466 lsa = xzalloc_lsa(sep->se_family);
1467 /* peek at the packet and remember peer addr */
1468 r = recvfrom(ctrl, NULL, 0, MSG_PEEK|MSG_DONTWAIT,
1469 &lsa->u.sa, &lsa->len);
1472 /* make this socket "connected" to peer addr:
1473 * only packets from this peer will be recv'ed,
1474 * and bare write()/send() will work on it */
1475 connect(ctrl, &lsa->u.sa, lsa->len);
1476 dbg("connected ctrl:%d to remote peer\n", ctrl);
1479 /* prepare env and exec program */
1480 pwd = getpwnam(sep->se_user);
1482 bb_error_msg("%s: no such %s", sep->se_user, "user");
1485 if (sep->se_group && (grp = getgrnam(sep->se_group)) == NULL) {
1486 bb_error_msg("%s: no such %s", sep->se_group, "group");
1489 if (real_uid != 0 && real_uid != pwd->pw_uid) {
1490 /* a user running private inetd */
1491 bb_error_msg("non-root must run services as himself");
1494 if (pwd->pw_uid != real_uid) {
1496 pwd->pw_gid = grp->gr_gid;
1497 /* initgroups, setgid, setuid: */
1498 change_identity(pwd);
1499 } else if (sep->se_group) {
1500 xsetgid(grp->gr_gid);
1501 setgroups(1, &grp->gr_gid);
1503 if (rlim_ofile.rlim_cur != rlim_ofile_cur)
1504 if (setrlimit(RLIMIT_NOFILE, &rlim_ofile) < 0)
1505 bb_perror_msg("setrlimit");
1507 /* closelog(); - WRONG. we are after vfork,
1508 * this may confuse syslog() internal state.
1509 * Let's hope libc sets syslog fd to CLOEXEC...
1511 xmove_fd(ctrl, STDIN_FILENO);
1512 xdup2(STDIN_FILENO, STDOUT_FILENO);
1513 dbg("moved ctrl:%d to fd 0,1[,2]\n", ctrl);
1514 /* manpages of inetd I managed to find either say
1515 * that stderr is also redirected to the network,
1516 * or do not talk about redirection at all (!) */
1517 if (!sep->se_wait) /* only for usual "tcp nowait" */
1518 xdup2(STDIN_FILENO, STDERR_FILENO);
1519 /* NB: among others, this loop closes listening sockets
1520 * for nowait stream children */
1521 for (sep2 = serv_list; sep2; sep2 = sep2->se_next)
1522 if (sep2->se_fd != ctrl)
1523 maybe_close(sep2->se_fd);
1524 sigaction_set(SIGPIPE, &saved_pipe_handler);
1525 restore_sigmask(&omask);
1526 dbg("execing:'%s'\n", sep->se_program);
1527 BB_EXECVP(sep->se_program, sep->se_argv);
1528 bb_perror_msg("can't execute '%s'", sep->se_program);
1530 /* eat packet in udp case */
1531 if (sep->se_socktype != SOCK_STREAM)
1532 recv(0, line, LINE_SIZE, MSG_DONTWAIT);
1533 _exit(EXIT_FAILURE);
1534 } /* for (sep = servtab...) */
1538 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO \
1539 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
1541 static const char *const cat_args[] = { "cat", NULL };
1546 * Internet services provided internally by inetd:
1548 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
1549 /* Echo service -- echo data back. */
1551 static void FAST_FUNC echo_stream(int s, servtab_t *sep UNUSED_PARAM)
1555 ssize_t sz = safe_read(s, line, LINE_SIZE);
1558 xwrite(s, line, sz);
1561 /* We are after vfork here! */
1562 /* move network socket to stdin/stdout */
1563 xmove_fd(s, STDIN_FILENO);
1564 xdup2(STDIN_FILENO, STDOUT_FILENO);
1565 /* no error messages please... */
1566 close(STDERR_FILENO);
1567 xopen(bb_dev_null, O_WRONLY);
1568 BB_EXECVP("cat", (char**)cat_args);
1569 /* on failure we return to main, which does exit(EXIT_FAILURE) */
1572 static void FAST_FUNC echo_dg(int s, servtab_t *sep)
1574 enum { BUFSIZE = 12*1024 }; /* for jumbo sized packets! :) */
1575 char *buf = xmalloc(BUFSIZE); /* too big for stack */
1577 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1579 lsa->len = sep->se_lsa->len;
1580 /* dgram builtins are non-forking - DONT BLOCK! */
1581 sz = recvfrom(s, buf, BUFSIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len);
1583 sendto(s, buf, sz, 0, &lsa->u.sa, lsa->len);
1586 #endif /* FEATURE_INETD_SUPPORT_BUILTIN_ECHO */
1589 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
1590 /* Discard service -- ignore data. */
1592 static void FAST_FUNC discard_stream(int s, servtab_t *sep UNUSED_PARAM)
1595 while (safe_read(s, line, LINE_SIZE) > 0)
1598 /* We are after vfork here! */
1599 /* move network socket to stdin */
1600 xmove_fd(s, STDIN_FILENO);
1601 /* discard output */
1602 close(STDOUT_FILENO);
1603 xopen(bb_dev_null, O_WRONLY);
1604 /* no error messages please... */
1605 xdup2(STDOUT_FILENO, STDERR_FILENO);
1606 BB_EXECVP("cat", (char**)cat_args);
1607 /* on failure we return to main, which does exit(EXIT_FAILURE) */
1611 static void FAST_FUNC discard_dg(int s, servtab_t *sep UNUSED_PARAM)
1613 /* dgram builtins are non-forking - DONT BLOCK! */
1614 recv(s, line, LINE_SIZE, MSG_DONTWAIT);
1616 #endif /* FEATURE_INETD_SUPPORT_BUILTIN_DISCARD */
1619 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
1621 static void init_ring(void)
1626 for (i = ' '; i < 127; i++)
1629 /* Character generator. MMU arches only. */
1631 static void FAST_FUNC chargen_stream(int s, servtab_t *sep UNUSED_PARAM)
1635 char text[LINESIZ + 2];
1642 text[LINESIZ] = '\r';
1643 text[LINESIZ + 1] = '\n';
1646 len = end_ring - rs;
1648 memmove(text, rs, LINESIZ);
1650 memmove(text, rs, len);
1651 memmove(text + len, ring, LINESIZ - len);
1653 if (++rs == end_ring)
1655 xwrite(s, text, sizeof(text));
1659 static void FAST_FUNC chargen_dg(int s, servtab_t *sep)
1662 char text[LINESIZ + 2];
1663 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1665 /* Eat UDP packet which started it all */
1666 /* dgram builtins are non-forking - DONT BLOCK! */
1667 lsa->len = sep->se_lsa->len;
1668 if (recvfrom(s, text, sizeof(text), MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1676 len = end_ring - ring_pos;
1678 memmove(text, ring_pos, LINESIZ);
1680 memmove(text, ring_pos, len);
1681 memmove(text + len, ring, LINESIZ - len);
1683 if (++ring_pos == end_ring)
1685 text[LINESIZ] = '\r';
1686 text[LINESIZ + 1] = '\n';
1687 sendto(s, text, sizeof(text), 0, &lsa->u.sa, lsa->len);
1689 #endif /* FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN */
1692 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
1694 * Return a machine readable date and time, in the form of the
1695 * number of seconds since midnight, Jan 1, 1900. Since gettimeofday
1696 * returns the number of seconds since midnight, Jan 1, 1970,
1697 * we must add 2208988800 seconds to this figure to make up for
1698 * some seventy years Bell Labs was asleep.
1700 static uint32_t machtime(void)
1704 gettimeofday(&tv, NULL);
1705 return htonl((uint32_t)(tv.tv_sec + 2208988800U));
1708 static void FAST_FUNC machtime_stream(int s, servtab_t *sep UNUSED_PARAM)
1712 result = machtime();
1713 full_write(s, &result, sizeof(result));
1715 static void FAST_FUNC machtime_dg(int s, servtab_t *sep)
1718 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1720 lsa->len = sep->se_lsa->len;
1721 if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1724 result = machtime();
1725 sendto(s, &result, sizeof(result), 0, &lsa->u.sa, lsa->len);
1727 #endif /* FEATURE_INETD_SUPPORT_BUILTIN_TIME */
1730 #if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
1731 /* Return human-readable time of day */
1733 static void FAST_FUNC daytime_stream(int s, servtab_t *sep UNUSED_PARAM)
1738 fdprintf(s, "%.24s\r\n", ctime(&t));
1740 static void FAST_FUNC daytime_dg(int s, servtab_t *sep)
1743 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1745 lsa->len = sep->se_lsa->len;
1746 if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1750 sprintf(line, "%.24s\r\n", ctime(&t));
1751 sendto(s, line, strlen(line), 0, &lsa->u.sa, lsa->len);
1753 #endif /* FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME */