blob: fb2fbe32307c3cb53e6c7d8a8b7201228f89e28e [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00002/* $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> */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00006/* IPv6 support, many bug fixes by Denys Vlasenko (c) 2008 */
Glenn L McGrath06e95652003-02-09 06:51:14 +00007/*
8 * Copyright (c) 1983,1991 The Regents of the University of California.
9 * All rights reserved.
10 *
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +000011 * 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.
Glenn L McGrath06e95652003-02-09 06:51:14 +000026 *
Denis Vlasenkof8138d12007-01-11 23:26:13 +000027 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +000028 * 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.
Glenn L McGrath06e95652003-02-09 06:51:14 +000038 */
39
Denis Vlasenkof8138d12007-01-11 23:26:13 +000040/* Inetd - Internet super-server
Glenn L McGrath06e95652003-02-09 06:51:14 +000041 *
Denis Vlasenko4cf1d082008-03-12 23:13:50 +000042 * 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
Glenn L McGrath06e95652003-02-09 06:51:14 +000045 * connection is made, by creating a process. This process
46 * is passed the connection as file descriptor 0 and is
Denis Vlasenko4cf1d082008-03-12 23:13:50 +000047 * expected to do a getpeername to find out peer's host
Glenn L McGrath06e95652003-02-09 06:51:14 +000048 * and port.
Glenn L McGrath06e95652003-02-09 06:51:14 +000049 * Datagram oriented services are invoked when a datagram
50 * arrives; a process is created and passed a pending message
Denis Vlasenko4cf1d082008-03-12 23:13:50 +000051 * on file descriptor 0. peer's address can be obtained
52 * using recvfrom.
Glenn L McGrath06e95652003-02-09 06:51:14 +000053 *
54 * Inetd uses a configuration file which is read at startup
55 * and, possibly, at some later time in response to a hangup signal.
Denis Vlasenkof8138d12007-01-11 23:26:13 +000056 * The configuration file is "free format" with fields given in the
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +000057 * order shown below. Continuation lines for an entry must begin with
Glenn L McGrath06e95652003-02-09 06:51:14 +000058 * a space or tab. All fields must be present in each entry.
59 *
Denis Vlasenko4cf1d082008-03-12 23:13:50 +000060 * service_name must be in /etc/services
61 * socket_type stream/dgram/raw/rdm/seqpacket
Glenn L McGrath06e95652003-02-09 06:51:14 +000062 * protocol must be in /etc/protocols
Denis Vlasenko4e6d5112008-03-12 22:14:34 +000063 * (usually "tcp" or "udp")
Glenn L McGrath06e95652003-02-09 06:51:14 +000064 * wait/nowait[.max] single-threaded/multi-threaded, max #
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +000065 * user[.group] or user[:group] user/group to run daemon as
Denis Vlasenko4cf1d082008-03-12 23:13:50 +000066 * server_program full path name
67 * server_program_arguments maximum of MAXARGS (20)
Glenn L McGrath06e95652003-02-09 06:51:14 +000068 *
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +000069 * For RPC services
Denis Vlasenko4cf1d082008-03-12 23:13:50 +000070 * service_name/version must be in /etc/rpc
71 * socket_type stream/dgram/raw/rdm/seqpacket
Denis Vlasenko4e6d5112008-03-12 22:14:34 +000072 * rpc/protocol "rpc/tcp" etc
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +000073 * wait/nowait[.max] single-threaded/multi-threaded
74 * user[.group] or user[:group] user to run daemon as
Denis Vlasenko4cf1d082008-03-12 23:13:50 +000075 * server_program full path name
76 * server_program_arguments maximum of MAXARGS (20)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +000077 *
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
Denis Vlasenko4cf1d082008-03-12 23:13:50 +000081 * consists of a single '*' character, INADDR_ANY is used.
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +000082 *
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.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000101 *
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000102 * Comment lines are indicated by a '#' in column 1.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000103 */
104
Denis Vlasenkof8138d12007-01-11 23:26:13 +0000105/* 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
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000121 * said to be "single-threaded". The comsat(8), biff(1) and talkd(8)
Denis Vlasenkof8138d12007-01-11 23:26:13 +0000122 * 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.
Denis Vlasenkoaefed942008-03-17 08:35:44 +0000133 */
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.
Denis Vlasenkof8138d12007-01-11 23:26:13 +0000140 */
141
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000142/* Here's the scoop concerning the user[:group] feature:
143 * 1) group is not specified:
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000144 * a) user = root: NO setuid() or setgid() is done
Denis Vlasenko92305822008-03-20 15:12:58 +0000145 * b) other: initgroups(name, primary group)
146 * setgid(primary group as found in passwd)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000147 * setuid()
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000148 * 2) group is specified:
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000149 * a) user = root: setgid(specified group)
150 * NO initgroups()
151 * NO setuid()
Denis Vlasenko92305822008-03-20 15:12:58 +0000152 * b) other: initgroups(name, specified group)
153 * setgid(specified group)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000154 * setuid()
Glenn L McGrath06e95652003-02-09 06:51:14 +0000155 */
Denys Vlasenko47367e12016-11-23 09:05:14 +0100156//config:config INETD
Denys Vlasenko4eed2c62017-07-18 22:01:24 +0200157//config: bool "inetd (18 kb)"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100158//config: default y
159//config: select FEATURE_SYSLOG
160//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200161//config: Internet superserver daemon
Denys Vlasenko47367e12016-11-23 09:05:14 +0100162//config:
163//config:config FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200164//config: bool "Support echo service on port 7"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100165//config: default y
166//config: depends on INETD
167//config: help
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200168//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
Denys Vlasenko47367e12016-11-23 09:05:14 +0100172//config:
173//config:config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200174//config: bool "Support discard service on port 8"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100175//config: default y
176//config: depends on INETD
177//config: help
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200178//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
Denys Vlasenko47367e12016-11-23 09:05:14 +0100182//config:
183//config:config FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200184//config: bool "Support time service on port 37"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100185//config: default y
186//config: depends on INETD
187//config: help
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200188//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
Denys Vlasenko47367e12016-11-23 09:05:14 +0100194//config:
195//config:config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200196//config: bool "Support daytime service on port 13"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100197//config: default y
198//config: depends on INETD
199//config: help
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200200//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
Denys Vlasenko47367e12016-11-23 09:05:14 +0100204//config:
205//config:config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200206//config: bool "Support chargen service on port 19"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100207//config: default y
208//config: depends on INETD
209//config: help
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200210//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
Denys Vlasenko47367e12016-11-23 09:05:14 +0100215//config:
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
Denys Vlasenko47367e12016-11-23 09:05:14 +0100220//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200221//config: Support Sun-RPC based services
Denys Vlasenko47367e12016-11-23 09:05:14 +0100222
223//applet:IF_INETD(APPLET(inetd, BB_DIR_USR_SBIN, BB_SUID_DROP))
224
225//kbuild:lib-$(CONFIG_INETD) += inetd.o
Glenn L McGrath06e95652003-02-09 06:51:14 +0000226
Pere Orga5bc8c002011-04-11 03:29:49 +0200227//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"
Pere Orga5bc8c002011-04-11 03:29:49 +0200231//usage: "\n -f Run in foreground"
232//usage: "\n -e Log to stderr"
Denys Vlasenkof3d705f2017-01-21 03:46:35 +0100233//usage: "\n -q N Socket listen queue (default 128)"
Pere Orga5bc8c002011-04-11 03:29:49 +0200234//usage: "\n -R N Pause services after N connects/min"
Denys Vlasenkof3d705f2017-01-21 03:46:35 +0100235//usage: "\n (default 0 - disabled)"
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200236//usage: "\n Default CONFFILE is /etc/inetd.conf"
Pere Orga5bc8c002011-04-11 03:29:49 +0200237
Rob Landleyd921b2e2006-08-03 15:41:12 +0000238#include <syslog.h>
Mike Frysingerc5fe9f72012-07-05 23:19:09 -0400239#include <sys/resource.h> /* setrlimit */
Tias Guns64f763b2012-06-10 14:19:01 +0200240#include <sys/socket.h> /* un.h may need this */
Rob Landley099ed502006-08-28 09:41:49 +0000241#include <sys/un.h>
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000242
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000243#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200244#include "common_bufsiz.h"
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000245
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000246#if ENABLE_FEATURE_INETD_RPC
Bernhard Reutner-Fischer901a53b2011-06-15 09:38:43 +0200247# if defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__)
Denys Vlasenkoce552842017-07-10 14:43:22 +0200248# warning "You probably need to build uClibc with UCLIBC_HAS_RPC for NFS support"
Denys Vlasenko4892f3a2018-02-13 18:20:28 +0100249 /* not #error, since user may be using e.g. libtirpc instead.
250 * This might work:
251 * CONFIG_EXTRA_CFLAGS="-I/usr/include/tirpc"
252 * CONFIG_EXTRA_LDLIBS="tirpc"
253 */
Bernhard Reutner-Fischer901a53b2011-06-15 09:38:43 +0200254# endif
255# include <rpc/rpc.h>
256# include <rpc/pmap_clnt.h>
Glenn L McGrathff6ec8a2004-01-17 02:47:45 +0000257#endif
258
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000259#if !BB_MMU
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
264#endif
265
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000266#define CNT_INTERVAL 60 /* servers in CNT_INTERVAL sec. */
267#define RETRYTIME 60 /* retry after bind or server fail */
268
269// TODO: explain, or get rid of setrlimit games
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000270
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000271#ifndef RLIMIT_NOFILE
272#define RLIMIT_NOFILE RLIMIT_OFILE
273#endif
274
275#ifndef OPEN_MAX
276#define OPEN_MAX 64
277#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000278
279/* Reserve some descriptors, 3 stdio + at least: 1 log, 1 conf. file */
Denis Vlasenkof8138d12007-01-11 23:26:13 +0000280#define FD_MARGIN 8
Glenn L McGrath06e95652003-02-09 06:51:14 +0000281
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000282#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
Glenn L McGrath06e95652003-02-09 06:51:14 +0000288#endif
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000289
Denis Vlasenko512a5452007-09-24 10:41:30 +0000290typedef struct servtab_t {
Denis Vlasenko39824072007-09-26 10:46:18 +0000291 /* The most frequently referenced one: */
292 int se_fd; /* open descriptor */
293 /* NB: 'biggest fields last' saves on code size (~250 bytes) */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000294 /* [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]" */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000299#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000300 int se_rpcprog; /* rpc program number */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000301 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)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000304#else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000305#define is_rpc_service(sep) 0
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000306#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000307 pid_t se_wait; /* 0:"nowait", 1:"wait", >1:"wait" */
308 /* and waiting for this pid */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000309 socktype_t se_socktype; /* SOCK_STREAM/DGRAM/RDM/... */
310 family_t se_family; /* AF_UNIX/INET[6] */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000311 /* se_proto_no is used by RPC code only... hmm */
312 smallint se_proto_no; /* IPPROTO_TCP/UDP, n/a for AF_UNIX */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000313 smallint se_checked; /* looked at during merge */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000314 unsigned se_max; /* allowed instances per minute */
315 unsigned se_count; /* number started since se_time */
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000316 unsigned se_time; /* when we started counting */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000317 char *se_user; /* user name to run as */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000318 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 */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000321#endif
Denis Vlasenko39824072007-09-26 10:46:18 +0000322 struct servtab_t *se_next;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000323 len_and_sockaddr *se_lsa;
324 char *se_program; /* server program */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000325#define MAXARGV 20
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000326 char *se_argv[MAXARGV + 1]; /* program arguments */
Glenn L McGrath03a06432004-02-18 13:19:58 +0000327} servtab_t;
328
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000329#ifdef INETD_BUILTINS_ENABLED
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000330/* Echo received data */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000331#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200332static void FAST_FUNC echo_stream(int, servtab_t *);
333static void FAST_FUNC echo_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000334#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000335/* Internet /dev/null */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000336#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200337static void FAST_FUNC discard_stream(int, servtab_t *);
338static void FAST_FUNC discard_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000339#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000340/* Return 32 bit time since 1900 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000341#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200342static void FAST_FUNC machtime_stream(int, servtab_t *);
343static void FAST_FUNC machtime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000344#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000345/* Return human-readable time */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000346#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200347static void FAST_FUNC daytime_stream(int, servtab_t *);
348static void FAST_FUNC daytime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000349#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000350/* Familiar character generator */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000351#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200352static void FAST_FUNC chargen_stream(int, servtab_t *);
353static void FAST_FUNC chargen_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000354#endif
355
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000356struct builtin {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000357 /* 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 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200360 void (*bi_stream_fn)(int, servtab_t *) FAST_FUNC;
361 void (*bi_dgram_fn)(int, servtab_t *) FAST_FUNC;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000362};
363
Denys Vlasenko6cc49622020-11-30 14:58:02 +0100364static const struct builtin builtins[] ALIGN_PTR = {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000365#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000366 { "echo", 1, echo_stream, echo_dg },
Glenn L McGrath06e95652003-02-09 06:51:14 +0000367#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000368#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000369 { "discard", 1, discard_stream, discard_dg },
Glenn L McGrath06e95652003-02-09 06:51:14 +0000370#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000371#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000372 { "chargen", 1, chargen_stream, chargen_dg },
Glenn L McGrath06e95652003-02-09 06:51:14 +0000373#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000374#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000375 { "time", 0, machtime_stream, machtime_dg },
376#endif
377#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000378 { "daytime", 0, daytime_stream, daytime_dg },
379#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000380};
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000381#endif /* INETD_BUILTINS_ENABLED */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000382
Denis Vlasenko512a5452007-09-24 10:41:30 +0000383struct globals {
384 rlim_t rlim_ofile_cur;
385 struct rlimit rlim_ofile;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000386 servtab_t *serv_list;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000387 int global_queuelen;
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200388 int maxsock; /* max fd# in allsock, -1: unknown */
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000389 /* whenever maxsock grows, prev_maxsock is set to new maxsock,
390 * but if maxsock is set to -1, prev_maxsock is not changed */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000391 int prev_maxsock;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000392 unsigned max_concurrency;
393 smallint alarm_armed;
394 uid_t real_uid; /* user ID who ran us */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000395 const char *config_filename;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000396 parser_t *parser;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000397 char *default_local_hostname;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000398#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000399 char *end_ring;
400 char *ring_pos;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000401 char ring[128];
402#endif
403 fd_set allsock;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000404 /* Used in next_line(), and as scratch read buffer */
405 char line[256]; /* _at least_ 256, see LINE_SIZE */
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100406} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200407#define G (*(struct globals*)bb_common_bufsiz1)
Denis Vlasenko512a5452007-09-24 10:41:30 +0000408enum { LINE_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line) };
Denis Vlasenko512a5452007-09-24 10:41:30 +0000409#define rlim_ofile_cur (G.rlim_ofile_cur )
410#define rlim_ofile (G.rlim_ofile )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000411#define serv_list (G.serv_list )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000412#define global_queuelen (G.global_queuelen)
Denis Vlasenko512a5452007-09-24 10:41:30 +0000413#define maxsock (G.maxsock )
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000414#define prev_maxsock (G.prev_maxsock )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000415#define max_concurrency (G.max_concurrency)
416#define alarm_armed (G.alarm_armed )
417#define real_uid (G.real_uid )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000418#define config_filename (G.config_filename)
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000419#define parser (G.parser )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000420#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 )
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000423#define end_ring (G.end_ring )
424#define ring_pos (G.ring_pos )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000425#define ring (G.ring )
426#define allsock (G.allsock )
427#define line (G.line )
428#define INIT_G() do { \
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200429 setup_common_bufsiz(); \
Denys Vlasenko7b85ec32015-10-13 17:17:34 +0200430 BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
Denis Vlasenko512a5452007-09-24 10:41:30 +0000431 rlim_ofile_cur = OPEN_MAX; \
432 global_queuelen = 128; \
433 config_filename = "/etc/inetd.conf"; \
434} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000435
Denys Vlasenko223b9412011-09-11 16:48:21 +0200436#if 1
437# define dbg(...) ((void)0)
438#else
439# define dbg(...) \
440do { \
441 int dbg_fd = open("inetd_debug.log", O_WRONLY | O_CREAT | O_APPEND, 0666); \
442 if (dbg_fd >= 0) { \
443 fdprintf(dbg_fd, "%d: ", getpid()); \
444 fdprintf(dbg_fd, __VA_ARGS__); \
445 close(dbg_fd); \
446 } \
447} while (0)
448#endif
449
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000450static void maybe_close(int fd)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000451{
Denys Vlasenko223b9412011-09-11 16:48:21 +0200452 if (fd >= 0) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000453 close(fd);
Denys Vlasenko223b9412011-09-11 16:48:21 +0200454 dbg("closed fd:%d\n", fd);
455 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000456}
457
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000458// TODO: move to libbb?
459static len_and_sockaddr *xzalloc_lsa(int family)
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000460{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000461 len_and_sockaddr *lsa;
462 int sz;
463
464 sz = sizeof(struct sockaddr_in);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000465 if (family == AF_UNIX)
466 sz = sizeof(struct sockaddr_un);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000467#if ENABLE_FEATURE_IPV6
468 if (family == AF_INET6)
469 sz = sizeof(struct sockaddr_in6);
470#endif
471 lsa = xzalloc(LSA_LEN_SIZE + sz);
472 lsa->len = sz;
473 lsa->u.sa.sa_family = family;
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000474 return lsa;
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000475}
476
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000477static void rearm_alarm(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000478{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000479 if (!alarm_armed) {
480 alarm_armed = 1;
481 alarm(RETRYTIME);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000482 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000483}
484
485static void block_CHLD_HUP_ALRM(sigset_t *m)
486{
487 sigemptyset(m);
488 sigaddset(m, SIGCHLD);
489 sigaddset(m, SIGHUP);
490 sigaddset(m, SIGALRM);
Denys Vlasenkob437df12018-12-08 15:35:24 +0100491 sigprocmask2(SIG_BLOCK, m); /* old sigmask is stored in m */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000492}
493
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000494static void restore_sigmask(sigset_t *m)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000495{
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000496 sigprocmask(SIG_SETMASK, m, NULL);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000497}
Glenn L McGrath53766c42004-01-18 08:58:06 +0000498
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000499#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000500static void register_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000501{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000502 int n;
503 struct sockaddr_in ir_sin;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000504
Denys Vlasenkoba3b9db2018-02-11 14:55:46 +0100505 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
James Byrne69374872019-07-02 11:35:03 +0200507 bb_simple_perror_msg("getsockname");
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000508 return;
509 }
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000510
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000511 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));
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000517 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000518}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000519
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000520static void unregister_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000521{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000522 int n;
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000523
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000524 for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000525 if (!pmap_unset(sep->se_rpcprog, n))
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000526 bb_perror_msg("pmap_unset(%u,%u)", sep->se_rpcprog, n);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000527 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000528}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000529#endif /* FEATURE_INETD_RPC */
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000530
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000531static void bump_nofile(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000532{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000533 enum { FD_CHUNK = 32 };
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000534 struct rlimit rl;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000535
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000536 /* Never fails under Linux (except if you pass it bad arguments) */
537 getrlimit(RLIMIT_NOFILE, &rl);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000538 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) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000541 bb_error_msg("can't extend file limit, max = %d",
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000542 (int) rl.rlim_cur);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000543 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000544 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000545
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000546 if (setrlimit(RLIMIT_NOFILE, &rl) < 0) {
James Byrne69374872019-07-02 11:35:03 +0200547 bb_simple_perror_msg("setrlimit");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000548 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000549 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000550
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000551 rlim_ofile_cur = rl.rlim_cur;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000552}
553
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000554static void remove_fd_from_set(int fd)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000555{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000556 if (fd >= 0) {
557 FD_CLR(fd, &allsock);
Denys Vlasenko223b9412011-09-11 16:48:21 +0200558 dbg("stopped listening on fd:%d\n", fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000559 maxsock = -1;
Denys Vlasenko223b9412011-09-11 16:48:21 +0200560 dbg("maxsock:%d\n", maxsock);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000561 }
562}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000563
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000564static void add_fd_to_set(int fd)
565{
566 if (fd >= 0) {
567 FD_SET(fd, &allsock);
Denys Vlasenko223b9412011-09-11 16:48:21 +0200568 dbg("started listening on fd:%d\n", fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000569 if (maxsock >= 0 && fd > maxsock) {
570 prev_maxsock = maxsock = fd;
Denys Vlasenko223b9412011-09-11 16:48:21 +0200571 dbg("maxsock:%d\n", maxsock);
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000572 if ((rlim_t)fd > rlim_ofile_cur - FD_MARGIN)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000573 bump_nofile();
574 }
575 }
576}
577
578static void recalculate_maxsock(void)
579{
580 int fd = 0;
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000581
582 /* We may have no services, in this case maxsock should still be >= 0
583 * (code elsewhere is not happy with maxsock == -1) */
584 maxsock = 0;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000585 while (fd <= prev_maxsock) {
586 if (FD_ISSET(fd, &allsock))
587 maxsock = fd;
588 fd++;
589 }
Denys Vlasenko223b9412011-09-11 16:48:21 +0200590 dbg("recalculated maxsock:%d\n", maxsock);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000591 prev_maxsock = maxsock;
592 if ((rlim_t)maxsock > rlim_ofile_cur - FD_MARGIN)
593 bump_nofile();
594}
595
596static void prepare_socket_fd(servtab_t *sep)
597{
598 int r, fd;
599
600 fd = socket(sep->se_family, sep->se_socktype, 0);
601 if (fd < 0) {
James Byrne69374872019-07-02 11:35:03 +0200602 bb_simple_perror_msg("socket");
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000603 return;
604 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000605 setsockopt_reuseaddr(fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000606
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000607#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000608 if (is_rpc_service(sep)) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000609 struct passwd *pwd;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000610
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000611 /* zero out the port for all RPC services; let bind()
612 * find one. */
Denys Vlasenkoca183112011-04-07 17:52:20 +0200613 set_nport(&sep->se_lsa->u.sa, 0);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000614
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000615 /* 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
619 && pwd->pw_uid == 0
620 ) {
621 r = bindresvport(fd, &sep->se_lsa->u.sin);
622 } else {
623 r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
624 }
625 if (r == 0) {
626 int saveerrno = errno;
627 /* update lsa with port# */
628 getsockname(fd, &sep->se_lsa->u.sa, &sep->se_lsa->len);
629 errno = saveerrno;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000630 }
631 } else
Glenn L McGrath53766c42004-01-18 08:58:06 +0000632#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000633 {
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);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000638 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000639 r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
640 }
641 if (r < 0) {
642 bb_perror_msg("%s/%s: bind",
643 sep->se_service, sep->se_proto);
644 close(fd);
645 rearm_alarm();
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000646 return;
Glenn L McGrath53766c42004-01-18 08:58:06 +0000647 }
Denys Vlasenko223b9412011-09-11 16:48:21 +0200648
649 if (sep->se_socktype == SOCK_STREAM) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000650 listen(fd, global_queuelen);
Denys Vlasenko223b9412011-09-11 16:48:21 +0200651 dbg("new sep->se_fd:%d (stream)\n", fd);
652 } else {
653 dbg("new sep->se_fd:%d (!stream)\n", fd);
654 }
Glenn L McGrath53766c42004-01-18 08:58:06 +0000655
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000656 add_fd_to_set(fd);
657 sep->se_fd = fd;
658}
659
660static int reopen_config_file(void)
661{
662 free(default_local_hostname);
663 default_local_hostname = xstrdup("*");
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000664 if (parser != NULL)
665 config_close(parser);
666 parser = config_open(config_filename);
667 return (parser != NULL);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000668}
669
670static void close_config_file(void)
671{
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000672 if (parser) {
673 config_close(parser);
674 parser = NULL;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000675 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000676}
677
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000678static void free_servtab_strings(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000679{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000680 int i;
681
682 free(cp->se_local_hostname);
683 free(cp->se_service);
684 free(cp->se_proto);
685 free(cp->se_user);
686 free(cp->se_group);
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]);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000691}
692
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000693static servtab_t *new_servtab(void)
694{
695 servtab_t *newtab = xzalloc(sizeof(servtab_t));
696 newtab->se_fd = -1; /* paranoia */
697 return newtab;
698}
699
700static servtab_t *dup_servtab(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000701{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000702 servtab_t *newtab;
703 int argc;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000704
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000705 newtab = new_servtab();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000706 *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);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000713 for (argc = 0; argc <= MAXARGV; argc++)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000714 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 */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000718
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000719 return newtab;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000720}
721
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000722/* gcc generates much more code if this is inlined */
Denys Vlasenko2ec4f442015-03-03 13:10:30 +0100723static NOINLINE servtab_t *parse_one_line(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000724{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000725 int argc;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000726 char *token[6+MAXARGV];
727 char *p, *arg;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000728 char *hostdelim;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000729 servtab_t *sep;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000730 servtab_t *nsep;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000731 new:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000732 sep = new_servtab();
Denis Vlasenko13858992006-10-08 12:49:22 +0000733 more:
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000734 argc = config_read(parser, token, 6+MAXARGV, 1, "# \t", PARSE_NORMAL);
735 if (!argc) {
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000736 free(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000737 return NULL;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000738 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000739
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000740 /* [host:]service socktype proto wait user[:group] prog [args] */
741 /* Check for "host:...." line */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000742 arg = token[0];
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000743 hostdelim = strrchr(arg, ':');
744 if (hostdelim) {
745 *hostdelim = '\0';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000746 sep->se_local_hostname = xstrdup(arg);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000747 arg = hostdelim + 1;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000748 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;
Denys Vlasenko2ec4f442015-03-03 13:10:30 +0100753 /*sep->se_local_hostname = NULL; - redundant */
754 /* (we'll overwrite this field anyway) */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000755 goto more;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000756 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000757 } else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000758 sep->se_local_hostname = xstrdup(default_local_hostname);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000759
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000760 /* service socktype proto wait user[:group] prog [args] */
761 sep->se_service = xstrdup(arg);
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000762
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000763 /* socktype proto wait user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000764 if (argc < 6) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000765 parse_err:
766 bb_error_msg("parse error on line %u, line is ignored",
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000767 parser->lineno);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000768 /* 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: */
Denys Vlasenko2ec4f442015-03-03 13:10:30 +0100771 free_servtab_strings(sep);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000772 free(sep);
773 goto new;
774 }
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000775
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000776 {
Denis Vlasenkoeb4e5ec2009-04-22 23:25:48 +0000777 static const int8_t SOCK_xxx[] ALIGN1 = {
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000778 -1,
779 SOCK_STREAM, SOCK_DGRAM, SOCK_RDM,
780 SOCK_SEQPACKET, SOCK_RAW
781 };
782 sep->se_socktype = SOCK_xxx[1 + index_in_strings(
783 "stream""\0" "dgram""\0" "rdm""\0"
784 "seqpacket""\0" "raw""\0"
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000785 , token[1])];
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000786 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000787
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000788 /* {unix,[rpc/]{tcp,udp}[6]} wait user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000789 sep->se_proto = arg = xstrdup(token[2]);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000790 if (strcmp(arg, "unix") == 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000791 sep->se_family = AF_UNIX;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000792 } else {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000793 char *six;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000794 sep->se_family = AF_INET;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000795 six = last_char_is(arg, '6');
796 if (six) {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000797#if ENABLE_FEATURE_IPV6
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000798 *six = '\0';
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000799 sep->se_family = AF_INET6;
800#else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000801 bb_error_msg("%s: no support for IPv6", sep->se_proto);
802 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000803#endif
804 }
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100805 if (is_prefixed_with(arg, "rpc/")) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000806#if ENABLE_FEATURE_INETD_RPC
807 unsigned n;
808 arg += 4;
809 p = strchr(sep->se_service, '/');
810 if (p == NULL) {
811 bb_error_msg("no rpc version: '%s'", sep->se_service);
812 goto parse_err;
813 }
814 *p++ = '\0';
815 n = bb_strtou(p, &p, 10);
816 if (n > INT_MAX) {
817 bad_ver_spec:
James Byrne69374872019-07-02 11:35:03 +0200818 bb_simple_error_msg("bad rpc version");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000819 goto parse_err;
820 }
821 sep->se_rpcver_lo = sep->se_rpcver_hi = n;
822 if (*p == '-') {
823 p++;
824 n = bb_strtou(p, &p, 10);
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000825 if (n > INT_MAX || (int)n < sep->se_rpcver_lo)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000826 goto bad_ver_spec;
827 sep->se_rpcver_hi = n;
828 }
829 if (*p != '\0')
830 goto bad_ver_spec;
831#else
James Byrne69374872019-07-02 11:35:03 +0200832 bb_simple_error_msg("no support for rpc services");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000833 goto parse_err;
834#endif
835 }
836 /* we don't really need getprotobyname()! */
837 if (strcmp(arg, "tcp") == 0)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000838 sep->se_proto_no = IPPROTO_TCP; /* = 6 */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000839 if (strcmp(arg, "udp") == 0)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000840 sep->se_proto_no = IPPROTO_UDP; /* = 17 */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000841 if (six)
842 *six = '6';
843 if (!sep->se_proto_no) /* not tcp/udp?? */
844 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000845 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000846
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000847 /* [no]wait[.max] user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000848 arg = token[3];
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000849 sep->se_max = max_concurrency;
850 p = strchr(arg, '.');
851 if (p) {
852 *p++ = '\0';
853 sep->se_max = bb_strtou(p, NULL, 10);
854 if (errno)
855 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000856 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000857 sep->se_wait = (arg[0] != 'n' || arg[1] != 'o');
858 if (!sep->se_wait) /* "no" seen */
859 arg += 2;
860 if (strcmp(arg, "wait") != 0)
861 goto parse_err;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000862
863 /* user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000864 sep->se_user = xstrdup(token[4]);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000865 arg = strchr(sep->se_user, '.');
866 if (arg == NULL)
867 arg = strchr(sep->se_user, ':');
868 if (arg) {
869 *arg++ = '\0';
870 sep->se_group = xstrdup(arg);
871 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000872
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000873 /* prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000874 sep->se_program = xstrdup(token[5]);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000875#ifdef INETD_BUILTINS_ENABLED
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000876 if (strcmp(sep->se_program, "internal") == 0
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000877 && strlen(sep->se_service) <= 7
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000878 && (sep->se_socktype == SOCK_STREAM
879 || sep->se_socktype == SOCK_DGRAM)
880 ) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000881 unsigned i;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000882 for (i = 0; i < ARRAY_SIZE(builtins); i++)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000883 if (strncmp(builtins[i].bi_service7, sep->se_service, 7) == 0)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000884 goto found_bi;
885 bb_error_msg("unknown internal service %s", sep->se_service);
886 goto parse_err;
887 found_bi:
888 sep->se_builtin = &builtins[i];
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000889 /* stream builtins must be "nowait", dgram must be "wait" */
890 if (sep->se_wait != (sep->se_socktype == SOCK_DGRAM))
891 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000892 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000893#endif
894 argc = 0;
Denys Vlasenko2ec4f442015-03-03 13:10:30 +0100895 while (argc < MAXARGV && (arg = token[6+argc]) != NULL)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000896 sep->se_argv[argc++] = xstrdup(arg);
Mike Frysingera945f612010-11-22 04:57:37 +0100897 /* Some inetd.conf files have no argv's, not even argv[0].
898 * Fix them up.
899 * (Technically, programs can be execed with argv[0] = NULL,
900 * but many programs do not like that at all) */
901 if (argc == 0)
902 sep->se_argv[0] = xstrdup(sep->se_program);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000903
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000904 /* catch mixups. "<service> stream udp ..." == wtf */
905 if (sep->se_socktype == SOCK_STREAM) {
906 if (sep->se_proto_no == IPPROTO_UDP)
907 goto parse_err;
908 }
909 if (sep->se_socktype == SOCK_DGRAM) {
910 if (sep->se_proto_no == IPPROTO_TCP)
911 goto parse_err;
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000912 }
913
Denys Vlasenko066e76b2016-03-30 16:20:28 +0200914 //bb_error_msg(
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);
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000918
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000919 /* check if the hostname specifier is a comma separated list
920 * of hostnames. we'll make new entries for each address. */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000921 while ((hostdelim = strrchr(sep->se_local_hostname, ',')) != NULL) {
922 nsep = dup_servtab(sep);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000923 /* NUL terminate the hostname field of the existing entry,
924 * and make a dup for the new entry. */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000925 *hostdelim++ = '\0';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000926 nsep->se_local_hostname = xstrdup(hostdelim);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000927 nsep->se_next = sep->se_next;
928 sep->se_next = nsep;
929 }
930
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000931 /* was doing it here: */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000932 /* DNS resolution, create copies for each IP address */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000933 /* IPv6-ization destroyed it :( */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000934
935 return sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000936}
937
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000938static servtab_t *insert_in_servlist(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000939{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000940 servtab_t *sep;
941 sigset_t omask;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000942
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000943 sep = new_servtab();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000944 *sep = *cp; /* struct copy */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000945 sep->se_fd = -1;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000946#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000947 sep->se_rpcprog = -1;
948#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000949 block_CHLD_HUP_ALRM(&omask);
950 sep->se_next = serv_list;
951 serv_list = sep;
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000952 restore_sigmask(&omask);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000953 return sep;
954}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000955
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000956static int same_serv_addr_proto(servtab_t *old, servtab_t *new)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000957{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000958 if (strcmp(old->se_local_hostname, new->se_local_hostname) != 0)
959 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000960 if (strcmp(old->se_service, new->se_service) != 0)
961 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000962 if (strcmp(old->se_proto, new->se_proto) != 0)
963 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000964 return 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000965}
966
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000967static void reread_config_file(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000968{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000969 servtab_t *sep, *cp, **sepp;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000970 len_and_sockaddr *lsa;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000971 sigset_t omask;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000972 unsigned n;
973 uint16_t port;
Denis Vlasenkof54e62a2008-07-22 20:57:28 +0000974 int save_errno = errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000975
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000976 if (!reopen_config_file())
Denis Vlasenkof54e62a2008-07-22 20:57:28 +0000977 goto ret;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000978 for (sep = serv_list; sep; sep = sep->se_next)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000979 sep->se_checked = 0;
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000980
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000981 goto first_line;
982 while (1) {
983 if (cp == NULL) {
984 first_line:
985 cp = parse_one_line();
986 if (cp == NULL)
987 break;
988 }
989 for (sep = serv_list; sep; sep = sep->se_next)
990 if (same_serv_addr_proto(sep, cp))
991 goto equal_servtab;
992 /* not an "equal" servtab */
993 sep = insert_in_servlist(cp);
994 goto after_check;
995 equal_servtab:
996 {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000997 int i;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000998
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000999 block_CHLD_HUP_ALRM(&omask);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001000#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001001 if (is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001002 unregister_rpc(sep);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001003 sep->se_rpcver_lo = cp->se_rpcver_lo;
1004 sep->se_rpcver_hi = cp->se_rpcver_hi;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001005#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001006 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);
1013 }
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]);
1023#undef SWAP
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001024 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001025 free_servtab_strings(cp);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001026 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001027 after_check:
1028 /* cp->string_fields are consumed by insert_in_servlist()
1029 * or freed at this point, cp itself is not yet freed. */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001030 sep->se_checked = 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001031
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001032 /* create new len_and_sockaddr */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001033 switch (sep->se_family) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001034 struct sockaddr_un *sun;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001035 case AF_UNIX:
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001036 lsa = xzalloc_lsa(AF_UNIX);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001037 sun = (struct sockaddr_un*)&lsa->u.sa;
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001038 safe_strncpy(sun->sun_path, sep->se_service, sizeof(sun->sun_path));
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001039 break;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001040
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001041 default: /* case AF_INET, case AF_INET6 */
1042 n = bb_strtou(sep->se_service, NULL, 10);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001043#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001044 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);
1048 if (rp == NULL) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001049 bb_error_msg("%s: unknown rpc service", sep->se_service);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001050 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001051 }
1052 sep->se_rpcprog = rp->r_number;
1053 }
1054 if (sep->se_fd == -1)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001055 prepare_socket_fd(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001056 if (sep->se_fd != -1)
1057 register_rpc(sep);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001058 goto next_cp;
1059 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001060#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001061 /* what port to listen on? */
1062 port = htons(n);
1063 if (errno || n > 0xffff) { /* se_service is not numeric */
1064 char protoname[4];
1065 struct servent *sp;
1066 /* can result only in "tcp" or "udp": */
1067 safe_strncpy(protoname, sep->se_proto, 4);
1068 sp = getservbyname(sep->se_service, protoname);
1069 if (sp == NULL) {
1070 bb_error_msg("%s/%s: unknown service",
1071 sep->se_service, sep->se_proto);
1072 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001073 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001074 port = sp->s_port;
1075 }
1076 if (LONE_CHAR(sep->se_local_hostname, '*')) {
1077 lsa = xzalloc_lsa(sep->se_family);
Denys Vlasenkoca183112011-04-07 17:52:20 +02001078 set_nport(&lsa->u.sa, port);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001079 } else {
1080 lsa = host_and_af2sockaddr(sep->se_local_hostname,
1081 ntohs(port), sep->se_family);
1082 if (!lsa) {
1083 bb_error_msg("%s/%s: unknown host '%s'",
1084 sep->se_service, sep->se_proto,
1085 sep->se_local_hostname);
1086 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001087 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001088 }
1089 break;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001090 } /* end of "switch (sep->se_family)" */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001091
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001092 /* 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
1096 ) {
1097 remove_fd_from_set(sep->se_fd);
1098 maybe_close(sep->se_fd);
1099 free(sep->se_lsa);
1100 sep->se_lsa = lsa;
1101 sep->se_fd = -1;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001102 } else {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001103 free(lsa);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001104 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001105 if (sep->se_fd == -1)
1106 prepare_socket_fd(sep);
1107 next_cp:
1108 sep = cp->se_next;
1109 free(cp);
1110 cp = sep;
1111 } /* end of "while (1) parse lines" */
1112 close_config_file();
1113
1114 /* Purge anything not looked at above - these are stale entries,
1115 * new config file doesnt have them. */
1116 block_CHLD_HUP_ALRM(&omask);
1117 sepp = &serv_list;
Denys Vlasenko223b9412011-09-11 16:48:21 +02001118 while ((sep = *sepp) != NULL) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001119 if (sep->se_checked) {
1120 sepp = &sep->se_next;
1121 continue;
1122 }
1123 *sepp = sep->se_next;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001124 remove_fd_from_set(sep->se_fd);
1125 maybe_close(sep->se_fd);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001126#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001127 if (is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001128 unregister_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001129#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001130 if (sep->se_family == AF_UNIX)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001131 unlink(sep->se_service);
1132 free_servtab_strings(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001133 free(sep);
1134 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001135 restore_sigmask(&omask);
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001136 ret:
1137 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001138}
1139
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001140static void reap_child(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001141{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001142 pid_t pid;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001143 int status;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001144 servtab_t *sep;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001145 int save_errno = errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001146
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001147 for (;;) {
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001148 pid = wait_any_nohang(&status);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001149 if (pid <= 0)
1150 break;
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001151 for (sep = serv_list; sep; sep = sep->se_next) {
1152 if (sep->se_wait != pid)
1153 continue;
1154 /* One of our "wait" services */
1155 if (WIFEXITED(status) && WEXITSTATUS(status))
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001156 bb_error_msg("%s: exit status %u",
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001157 sep->se_program, WEXITSTATUS(status));
1158 else if (WIFSIGNALED(status))
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001159 bb_error_msg("%s: exit signal %u",
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001160 sep->se_program, WTERMSIG(status));
1161 sep->se_wait = 1;
1162 add_fd_to_set(sep->se_fd);
1163 break;
1164 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001165 }
1166 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001167}
1168
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001169static void retry_network_setup(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001170{
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001171 int save_errno = errno;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001172 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001173
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001174 alarm_armed = 0;
1175 for (sep = serv_list; sep; sep = sep->se_next) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001176 if (sep->se_fd == -1) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001177 prepare_socket_fd(sep);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001178#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001179 if (sep->se_fd != -1 && is_rpc_service(sep))
1180 register_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001181#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001182 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001183 }
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001184 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001185}
1186
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001187static void clean_up_and_exit(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001188{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001189 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001190
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001191 /* XXX signal race walking sep list */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001192 for (sep = serv_list; sep; sep = sep->se_next) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001193 if (sep->se_fd == -1)
1194 continue;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001195
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001196 switch (sep->se_family) {
1197 case AF_UNIX:
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001198 unlink(sep->se_service);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001199 break;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001200 default: /* case AF_INET, AF_INET6 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001201#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001202 if (sep->se_wait == 1 && is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001203 unregister_rpc(sep); /* XXX signal race */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001204#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001205 break;
1206 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001207 if (ENABLE_FEATURE_CLEAN_UP)
1208 close(sep->se_fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001209 }
Denys Vlasenko50596532019-03-17 19:47:52 +01001210 remove_pidfile_std_path_and_ext("inetd");
Denys Vlasenkodb5546c2022-01-05 22:16:06 +01001211 exit_SUCCESS();
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001212}
1213
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001214int inetd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001215int inetd_main(int argc UNUSED_PARAM, char **argv)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001216{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001217 struct sigaction sa, saved_pipe_handler;
1218 servtab_t *sep, *sep2;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001219 struct passwd *pwd;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001220 struct group *grp = grp; /* for compiler */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001221 int opt;
1222 pid_t pid;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001223 sigset_t omask;
Denis Vlasenko512a5452007-09-24 10:41:30 +00001224
1225 INIT_G();
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001226
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001227 real_uid = getuid();
1228 if (real_uid != 0) /* run by non-root user */
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001229 config_filename = NULL;
Denis Vlasenko5a142022007-03-26 13:20:54 +00001230
Denys Vlasenko237bedd2016-07-06 21:58:02 +02001231 /* -q N, -R N */
1232 opt = getopt32(argv, "R:+feq:+", &max_concurrency, &global_queuelen);
Denis Vlasenko5a142022007-03-26 13:20:54 +00001233 argv += optind;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001234 //argc -= optind;
1235 if (argv[0])
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001236 config_filename = argv[0];
1237 if (config_filename == NULL)
James Byrne69374872019-07-02 11:35:03 +02001238 bb_simple_error_msg_and_die("non-root must specify config file");
Denis Vlasenko5a142022007-03-26 13:20:54 +00001239 if (!(opt & 2))
1240 bb_daemonize_or_rexec(0, argv - optind);
1241 else
1242 bb_sanitize_stdio();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001243 if (!(opt & 4)) {
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001244 /* 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);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001250 logmode = LOGMODE_SYSLOG;
1251 }
Eric Andersen35e643b2003-07-28 07:40:39 +00001252
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001253 if (real_uid == 0) {
1254 /* run by root, ensure groups vector gets trashed */
Denis Vlasenko7a431b32007-01-14 01:29:06 +00001255 gid_t gid = getgid();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001256 setgroups(1, &gid);
1257 }
1258
Denys Vlasenko50596532019-03-17 19:47:52 +01001259 write_pidfile_std_path_and_ext("inetd");
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001260
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001261 /* 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;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001266
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001267 memset(&sa, 0, sizeof(sa));
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001268 /*sigemptyset(&sa.sa_mask); - memset did it */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001269 sigaddset(&sa.sa_mask, SIGALRM);
1270 sigaddset(&sa.sa_mask, SIGCHLD);
1271 sigaddset(&sa.sa_mask, SIGHUP);
Denys Vlasenkob1ab2832011-05-12 23:05:27 +02001272//FIXME: explain why no SA_RESTART
1273//FIXME: retry_network_setup is unsafe to run in signal handler (many reasons)!
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001274 sa.sa_handler = retry_network_setup;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001275 sigaction_set(SIGALRM, &sa);
Denys Vlasenkob1ab2832011-05-12 23:05:27 +02001276//FIXME: reread_config_file is unsafe to run in signal handler(many reasons)!
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001277 sa.sa_handler = reread_config_file;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001278 sigaction_set(SIGHUP, &sa);
Denys Vlasenkob1ab2832011-05-12 23:05:27 +02001279//FIXME: reap_child is unsafe to run in signal handler (uses stdio)!
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001280 sa.sa_handler = reap_child;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001281 sigaction_set(SIGCHLD, &sa);
Denys Vlasenkob1ab2832011-05-12 23:05:27 +02001282//FIXME: clean_up_and_exit is unsafe to run in signal handler (uses stdio)!
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001283 sa.sa_handler = clean_up_and_exit;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001284 sigaction_set(SIGTERM, &sa);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001285 sa.sa_handler = clean_up_and_exit;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001286 sigaction_set(SIGINT, &sa);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001287 sa.sa_handler = SIG_IGN;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001288 sigaction(SIGPIPE, &sa, &saved_pipe_handler);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001289
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001290 reread_config_file(SIGHUP); /* load config from file */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001291
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001292 for (;;) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001293 int ready_fd_cnt;
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001294 int ctrl, accepted_fd, new_udp_fd;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001295 fd_set readable;
1296
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001297 if (maxsock < 0)
1298 recalculate_maxsock();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001299
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001300 readable = allsock; /* struct copy */
1301 /* if there are no fds to wait on, we will block
Denis Vlasenko4cb576e2008-11-05 11:36:22 +00001302 * until signal wakes us up (maxsock == 0, but readable
1303 * never contains fds 0 and 1...) */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001304 ready_fd_cnt = select(maxsock + 1, &readable, NULL, NULL, NULL);
1305 if (ready_fd_cnt < 0) {
1306 if (errno != EINTR) {
James Byrne69374872019-07-02 11:35:03 +02001307 bb_simple_perror_msg("select");
Denys Vlasenkoec16c032020-11-29 11:37:34 +01001308 sleep1();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001309 }
Glenn L McGrath82d42db2004-02-18 13:12:53 +00001310 continue;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001311 }
Denys Vlasenko223b9412011-09-11 16:48:21 +02001312 dbg("ready_fd_cnt:%d\n", ready_fd_cnt);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001313
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001314 for (sep = serv_list; ready_fd_cnt && sep; sep = sep->se_next) {
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001315 if (sep->se_fd == -1 || !FD_ISSET(sep->se_fd, &readable))
1316 continue;
1317
Denys Vlasenko223b9412011-09-11 16:48:21 +02001318 dbg("ready fd:%d\n", sep->se_fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001319 ready_fd_cnt--;
1320 ctrl = sep->se_fd;
1321 accepted_fd = -1;
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001322 new_udp_fd = -1;
1323 if (!sep->se_wait) {
1324 if (sep->se_socktype == SOCK_STREAM) {
1325 ctrl = accepted_fd = accept(sep->se_fd, NULL, NULL);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001326 dbg("accepted_fd:%d\n", accepted_fd);
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001327 if (ctrl < 0) {
1328 if (errno != EINTR)
1329 bb_perror_msg("accept (for %s)", sep->se_service);
1330 continue;
1331 }
1332 }
1333 /* "nowait" udp */
1334 if (sep->se_socktype == SOCK_DGRAM
1335 && sep->se_family != AF_UNIX
1336 ) {
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);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001347 dbg("new_udp_fd:%d\n", new_udp_fd);
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001348 if (new_udp_fd < 0) { /* error: eat packet, forget about it */
1349 udp_err:
1350 recv(sep->se_fd, line, LINE_SIZE, MSG_DONTWAIT);
1351 continue;
1352 }
1353 setsockopt_reuseaddr(new_udp_fd);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001354 /* TODO: better do bind after fork in parent,
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001355 * 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) {
Denys Vlasenko223b9412011-09-11 16:48:21 +02001358 dbg("bind(new_udp_fd) failed\n");
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001359 close(new_udp_fd);
1360 goto udp_err;
1361 }
Denys Vlasenko223b9412011-09-11 16:48:21 +02001362 dbg("bind(new_udp_fd) succeeded\n");
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001363 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001364 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001365
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001366 block_CHLD_HUP_ALRM(&omask);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001367 pid = 0;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001368#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))
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001373#endif
1374 {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001375 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);
1385 close(sep->se_fd);
1386 sep->se_fd = -1;
1387 sep->se_count = 0;
1388 rearm_alarm(); /* will revive it in RETRYTIME sec */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001389 restore_sigmask(&omask);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001390 maybe_close(new_udp_fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001391 maybe_close(accepted_fd);
1392 continue; /* -> check next fd in fd set */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001393 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001394 sep->se_count = 0;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001395 }
1396 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001397 /* on NOMMU, streamed chargen
1398 * builtin wouldn't work, but it is
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001399 * not allowed on NOMMU (ifdefed out) */
1400#ifdef INETD_BUILTINS_ENABLED
1401 if (BB_MMU && sep->se_builtin)
1402 pid = fork();
1403 else
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001404#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001405 pid = vfork();
1406
1407 if (pid < 0) { /* fork error */
James Byrne69374872019-07-02 11:35:03 +02001408 bb_simple_perror_msg("vfork"+1);
Denys Vlasenkoec16c032020-11-29 11:37:34 +01001409 sleep1();
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001410 restore_sigmask(&omask);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001411 maybe_close(new_udp_fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001412 maybe_close(accepted_fd);
1413 continue; /* -> check next fd in fd set */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001414 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001415 if (pid == 0)
1416 pid--; /* -1: "we did fork and we are child" */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001417 }
Denys Vlasenko223b9412011-09-11 16:48:21 +02001418 /* if pid == 0 here, we didn't fork */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001419
1420 if (pid > 0) { /* parent */
1421 if (sep->se_wait) {
Denys Vlasenko223b9412011-09-11 16:48:21 +02001422 /* wait: we passed socket to child,
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001423 * will wait for child to terminate */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001424 sep->se_wait = pid;
1425 remove_fd_from_set(sep->se_fd);
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001426 }
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);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001431 dbg("moved new_udp_fd:%d to sep->se_fd:%d\n", new_udp_fd, sep->se_fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001432 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001433 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001434 maybe_close(accepted_fd);
1435 continue; /* -> check next fd in fd set */
1436 }
1437
Denys Vlasenko223b9412011-09-11 16:48:21 +02001438 /* we are either child or didn't fork at all */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001439#ifdef INETD_BUILTINS_ENABLED
1440 if (sep->se_builtin) {
Denys Vlasenko223b9412011-09-11 16:48:21 +02001441 if (pid) { /* "pid" is -1: we did fork */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001442 close(sep->se_fd); /* listening socket */
Denys Vlasenko223b9412011-09-11 16:48:21 +02001443 dbg("closed sep->se_fd:%d\n", sep->se_fd);
Denis Vlasenkoa19e6492009-03-11 14:40:00 +00001444 logmode = LOGMODE_NONE; /* make xwrite etc silent */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001445 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001446 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001447 if (sep->se_socktype == SOCK_STREAM)
1448 sep->se_builtin->bi_stream_fn(ctrl, sep);
1449 else
1450 sep->se_builtin->bi_dgram_fn(ctrl, sep);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001451 if (pid) /* we did fork */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001452 _exit(EXIT_FAILURE);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001453 maybe_close(accepted_fd);
1454 continue; /* -> check next fd in fd set */
1455 }
1456#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001457 /* child */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001458 setsid();
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001459 /* "nowait" udp */
1460 if (new_udp_fd >= 0) {
Denys Vlasenko223b9412011-09-11 16:48:21 +02001461 len_and_sockaddr *lsa;
1462 int r;
1463
1464 close(new_udp_fd);
1465 dbg("closed new_udp_fd:%d\n", new_udp_fd);
1466 lsa = xzalloc_lsa(sep->se_family);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001467 /* peek at the packet and remember peer addr */
Denys Vlasenko223b9412011-09-11 16:48:21 +02001468 r = recvfrom(ctrl, NULL, 0, MSG_PEEK|MSG_DONTWAIT,
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001469 &lsa->u.sa, &lsa->len);
Denis Vlasenkoc6938402008-03-24 02:18:03 +00001470 if (r < 0)
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001471 goto do_exit1;
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);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001476 dbg("connected ctrl:%d to remote peer\n", ctrl);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001477 free(lsa);
1478 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001479 /* prepare env and exec program */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001480 pwd = getpwnam(sep->se_user);
1481 if (pwd == NULL) {
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001482 bb_error_msg("%s: no such %s", sep->se_user, "user");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001483 goto do_exit1;
1484 }
1485 if (sep->se_group && (grp = getgrnam(sep->se_group)) == NULL) {
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001486 bb_error_msg("%s: no such %s", sep->se_group, "group");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001487 goto do_exit1;
1488 }
1489 if (real_uid != 0 && real_uid != pwd->pw_uid) {
1490 /* a user running private inetd */
James Byrne69374872019-07-02 11:35:03 +02001491 bb_simple_error_msg("non-root must run services as himself");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001492 goto do_exit1;
1493 }
Denys Vlasenko2fee2bc2017-11-09 16:19:42 +01001494 if (pwd->pw_uid != real_uid) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001495 if (sep->se_group)
1496 pwd->pw_gid = grp->gr_gid;
Denis Vlasenko92305822008-03-20 15:12:58 +00001497 /* initgroups, setgid, setuid: */
1498 change_identity(pwd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001499 } else if (sep->se_group) {
1500 xsetgid(grp->gr_gid);
1501 setgroups(1, &grp->gr_gid);
1502 }
1503 if (rlim_ofile.rlim_cur != rlim_ofile_cur)
1504 if (setrlimit(RLIMIT_NOFILE, &rlim_ofile) < 0)
James Byrne69374872019-07-02 11:35:03 +02001505 bb_simple_perror_msg("setrlimit");
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001506
Denys Vlasenko2cc70912009-09-04 03:48:40 +02001507 /* closelog(); - WRONG. we are after vfork,
1508 * this may confuse syslog() internal state.
1509 * Let's hope libc sets syslog fd to CLOEXEC...
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001510 */
Denys Vlasenko0f952c22009-06-05 15:35:36 +02001511 xmove_fd(ctrl, STDIN_FILENO);
1512 xdup2(STDIN_FILENO, STDOUT_FILENO);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001513 dbg("moved ctrl:%d to fd 0,1[,2]\n", ctrl);
Denys Vlasenko0f952c22009-06-05 15:35:36 +02001514 /* 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 (!) */
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001517 if (!sep->se_wait) /* only for usual "tcp nowait" */
1518 xdup2(STDIN_FILENO, STDERR_FILENO);
1519 /* NB: among others, this loop closes listening sockets
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001520 * for nowait stream children */
1521 for (sep2 = serv_list; sep2; sep2 = sep2->se_next)
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001522 if (sep2->se_fd != ctrl)
1523 maybe_close(sep2->se_fd);
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001524 sigaction_set(SIGPIPE, &saved_pipe_handler);
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001525 restore_sigmask(&omask);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001526 dbg("execing:'%s'\n", sep->se_program);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001527 BB_EXECVP(sep->se_program, sep->se_argv);
Denys Vlasenko31c3dad2010-06-27 16:57:55 +02001528 bb_perror_msg("can't execute '%s'", sep->se_program);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001529 do_exit1:
1530 /* eat packet in udp case */
1531 if (sep->se_socktype != SOCK_STREAM)
1532 recv(0, line, LINE_SIZE, MSG_DONTWAIT);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001533 _exit(EXIT_FAILURE);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001534 } /* for (sep = servtab...) */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +00001535 } /* for (;;) */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001536}
Glenn L McGrath06e95652003-02-09 06:51:14 +00001537
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001538#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO \
1539 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
1540# if !BB_MMU
Denys Vlasenko987be932022-02-06 20:07:12 +01001541static const char *const cat_args[] ALIGN_PTR = { "cat", NULL };
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001542# endif
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001543#endif
1544
Glenn L McGrath06e95652003-02-09 06:51:14 +00001545/*
1546 * Internet services provided internally by inetd:
1547 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001548#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001549/* Echo service -- echo data back. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001550/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001551static void FAST_FUNC echo_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001552{
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001553# if BB_MMU
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001554 while (1) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001555 ssize_t sz = safe_read(s, line, LINE_SIZE);
1556 if (sz <= 0)
1557 break;
1558 xwrite(s, line, sz);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001559 }
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001560# else
Denis Vlasenko85c24712008-03-17 09:04:04 +00001561 /* We are after vfork here! */
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001562 /* move network socket to stdin/stdout */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001563 xmove_fd(s, STDIN_FILENO);
1564 xdup2(STDIN_FILENO, STDOUT_FILENO);
1565 /* no error messages please... */
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001566 close(STDERR_FILENO);
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001567 xopen(bb_dev_null, O_WRONLY);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001568 BB_EXECVP("cat", (char**)cat_args);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001569 /* on failure we return to main, which does exit(EXIT_FAILURE) */
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001570# endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001571}
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001572static void FAST_FUNC echo_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001573{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001574 enum { BUFSIZE = 12*1024 }; /* for jumbo sized packets! :) */
1575 char *buf = xmalloc(BUFSIZE); /* too big for stack */
1576 int sz;
1577 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001578
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001579 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);
1582 if (sz > 0)
1583 sendto(s, buf, sz, 0, &lsa->u.sa, lsa->len);
1584 free(buf);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001585}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001586#endif /* FEATURE_INETD_SUPPORT_BUILTIN_ECHO */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001587
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001588
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001589#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenko4cb576e2008-11-05 11:36:22 +00001590/* Discard service -- ignore data. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001591/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001592static void FAST_FUNC discard_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001593{
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001594# if BB_MMU
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001595 while (safe_read(s, line, LINE_SIZE) > 0)
1596 continue;
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001597# else
Denis Vlasenko85c24712008-03-17 09:04:04 +00001598 /* We are after vfork here! */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001599 /* move network socket to stdin */
1600 xmove_fd(s, STDIN_FILENO);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001601 /* discard output */
1602 close(STDOUT_FILENO);
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001603 xopen(bb_dev_null, O_WRONLY);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001604 /* no error messages please... */
1605 xdup2(STDOUT_FILENO, STDERR_FILENO);
1606 BB_EXECVP("cat", (char**)cat_args);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001607 /* on failure we return to main, which does exit(EXIT_FAILURE) */
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001608# endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001609}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001610/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001611static void FAST_FUNC discard_dg(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001612{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001613 /* dgram builtins are non-forking - DONT BLOCK! */
1614 recv(s, line, LINE_SIZE, MSG_DONTWAIT);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001615}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001616#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DISCARD */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001617
1618
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001619#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Glenn L McGrath06e95652003-02-09 06:51:14 +00001620#define LINESIZ 72
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001621static void init_ring(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001622{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001623 int i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001624
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001625 end_ring = ring;
Denys Vlasenko8684cbb2009-11-18 11:34:43 +01001626 for (i = ' '; i < 127; i++)
1627 *end_ring++ = i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001628}
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001629/* Character generator. MMU arches only. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001630/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001631static void FAST_FUNC chargen_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001632{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001633 char *rs;
1634 int len;
1635 char text[LINESIZ + 2];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001636
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001637 if (!end_ring) {
1638 init_ring();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001639 rs = ring;
1640 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001641
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001642 text[LINESIZ] = '\r';
1643 text[LINESIZ + 1] = '\n';
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001644 rs = ring;
1645 for (;;) {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001646 len = end_ring - rs;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001647 if (len >= LINESIZ)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001648 memmove(text, rs, LINESIZ);
1649 else {
1650 memmove(text, rs, len);
1651 memmove(text + len, ring, LINESIZ - len);
1652 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001653 if (++rs == end_ring)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001654 rs = ring;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001655 xwrite(s, text, sizeof(text));
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001656 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001657}
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001658/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001659static void FAST_FUNC chargen_dg(int s, servtab_t *sep)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001660{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001661 int len;
1662 char text[LINESIZ + 2];
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001663 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1664
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)
1669 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001670
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001671 if (!end_ring) {
1672 init_ring();
1673 ring_pos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001674 }
1675
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001676 len = end_ring - ring_pos;
Denis Vlasenko512a5452007-09-24 10:41:30 +00001677 if (len >= LINESIZ)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001678 memmove(text, ring_pos, LINESIZ);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001679 else {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001680 memmove(text, ring_pos, len);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001681 memmove(text + len, ring, LINESIZ - len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001682 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001683 if (++ring_pos == end_ring)
1684 ring_pos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001685 text[LINESIZ] = '\r';
1686 text[LINESIZ + 1] = '\n';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001687 sendto(s, text, sizeof(text), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001688}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001689#endif /* FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001690
1691
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001692#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001693/*
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.
1699 */
Denys Vlasenko121b02d2021-04-24 12:06:03 +02001700static NOINLINE uint32_t machtime(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001701{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001702 struct timeval tv;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001703
Denys Vlasenko3c13da32020-12-30 23:48:01 +01001704 xgettimeofday(&tv);
Denys Vlasenko179e88b2017-01-20 16:03:48 +01001705 return htonl((uint32_t)(tv.tv_sec + 2208988800U));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001706}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001707/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001708static void FAST_FUNC machtime_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001709{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001710 uint32_t result;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001711
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001712 result = machtime();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001713 full_write(s, &result, sizeof(result));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001714}
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001715static void FAST_FUNC machtime_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001716{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001717 uint32_t result;
1718 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001719
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001720 lsa->len = sep->se_lsa->len;
1721 if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001722 return;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001723
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001724 result = machtime();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001725 sendto(s, &result, sizeof(result), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001726}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001727#endif /* FEATURE_INETD_SUPPORT_BUILTIN_TIME */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001728
1729
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001730#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001731/* Return human-readable time of day */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001732/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001733static void FAST_FUNC daytime_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001734{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001735 time_t t;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001736
Denys Vlasenko54e95852015-02-18 13:47:27 +01001737 time(&t);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001738 fdprintf(s, "%.24s\r\n", ctime(&t));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001739}
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001740static void FAST_FUNC daytime_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001741{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001742 time_t t;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001743 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1744
1745 lsa->len = sep->se_lsa->len;
1746 if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1747 return;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001748
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001749 t = time(NULL);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001750 sprintf(line, "%.24s\r\n", ctime(&t));
1751 sendto(s, line, strlen(line), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001752}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001753#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME */