blob: 91545d0a3aa024175f2f14654657f1265ca8d04c [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
220//config: select FEATURE_HAVE_RPC
221//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200222//config: Support Sun-RPC based services
Denys Vlasenko47367e12016-11-23 09:05:14 +0100223
224//applet:IF_INETD(APPLET(inetd, BB_DIR_USR_SBIN, BB_SUID_DROP))
225
226//kbuild:lib-$(CONFIG_INETD) += inetd.o
Glenn L McGrath06e95652003-02-09 06:51:14 +0000227
Pere Orga5bc8c002011-04-11 03:29:49 +0200228//usage:#define inetd_trivial_usage
229//usage: "[-fe] [-q N] [-R N] [CONFFILE]"
230//usage:#define inetd_full_usage "\n\n"
231//usage: "Listen for network connections and launch programs\n"
Pere Orga5bc8c002011-04-11 03:29:49 +0200232//usage: "\n -f Run in foreground"
233//usage: "\n -e Log to stderr"
Denys Vlasenkof3d705f2017-01-21 03:46:35 +0100234//usage: "\n -q N Socket listen queue (default 128)"
Pere Orga5bc8c002011-04-11 03:29:49 +0200235//usage: "\n -R N Pause services after N connects/min"
Denys Vlasenkof3d705f2017-01-21 03:46:35 +0100236//usage: "\n (default 0 - disabled)"
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200237//usage: "\n Default CONFFILE is /etc/inetd.conf"
Pere Orga5bc8c002011-04-11 03:29:49 +0200238
Rob Landleyd921b2e2006-08-03 15:41:12 +0000239#include <syslog.h>
Mike Frysingerc5fe9f72012-07-05 23:19:09 -0400240#include <sys/resource.h> /* setrlimit */
Tias Guns64f763b2012-06-10 14:19:01 +0200241#include <sys/socket.h> /* un.h may need this */
Rob Landley099ed502006-08-28 09:41:49 +0000242#include <sys/un.h>
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000243
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000244#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200245#include "common_bufsiz.h"
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000246
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000247#if ENABLE_FEATURE_INETD_RPC
Bernhard Reutner-Fischer901a53b2011-06-15 09:38:43 +0200248# if defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__)
Denys Vlasenkoce552842017-07-10 14:43:22 +0200249# warning "You probably need to build uClibc with UCLIBC_HAS_RPC for NFS support"
250 /* not #error, since user may be using e.g. libtirpc instead */
Bernhard Reutner-Fischer901a53b2011-06-15 09:38:43 +0200251# endif
252# include <rpc/rpc.h>
253# include <rpc/pmap_clnt.h>
Glenn L McGrathff6ec8a2004-01-17 02:47:45 +0000254#endif
255
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000256#if !BB_MMU
257/* stream version of chargen is forking but not execing,
258 * can't do that (easily) on NOMMU */
259#undef ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
260#define ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN 0
261#endif
262
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000263#define CNT_INTERVAL 60 /* servers in CNT_INTERVAL sec. */
264#define RETRYTIME 60 /* retry after bind or server fail */
265
266// TODO: explain, or get rid of setrlimit games
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000267
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000268#ifndef RLIMIT_NOFILE
269#define RLIMIT_NOFILE RLIMIT_OFILE
270#endif
271
272#ifndef OPEN_MAX
273#define OPEN_MAX 64
274#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000275
276/* Reserve some descriptors, 3 stdio + at least: 1 log, 1 conf. file */
Denis Vlasenkof8138d12007-01-11 23:26:13 +0000277#define FD_MARGIN 8
Glenn L McGrath06e95652003-02-09 06:51:14 +0000278
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000279#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD \
280 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO \
281 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN \
282 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME \
283 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
284# define INETD_BUILTINS_ENABLED
Glenn L McGrath06e95652003-02-09 06:51:14 +0000285#endif
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000286
Denis Vlasenko512a5452007-09-24 10:41:30 +0000287typedef struct servtab_t {
Denis Vlasenko39824072007-09-26 10:46:18 +0000288 /* The most frequently referenced one: */
289 int se_fd; /* open descriptor */
290 /* NB: 'biggest fields last' saves on code size (~250 bytes) */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000291 /* [addr:]service socktype proto wait user[:group] prog [args] */
292 char *se_local_hostname; /* addr to listen on */
293 char *se_service; /* "80" or "www" or "mount/2[-3]" */
294 /* socktype is in se_socktype */ /* "stream" "dgram" "raw" "rdm" "seqpacket" */
295 char *se_proto; /* "unix" or "[rpc/]tcp[6]" */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000296#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000297 int se_rpcprog; /* rpc program number */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000298 int se_rpcver_lo; /* rpc program lowest version */
299 int se_rpcver_hi; /* rpc program highest version */
300#define is_rpc_service(sep) ((sep)->se_rpcver_lo != 0)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000301#else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000302#define is_rpc_service(sep) 0
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000303#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000304 pid_t se_wait; /* 0:"nowait", 1:"wait", >1:"wait" */
305 /* and waiting for this pid */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000306 socktype_t se_socktype; /* SOCK_STREAM/DGRAM/RDM/... */
307 family_t se_family; /* AF_UNIX/INET[6] */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000308 /* se_proto_no is used by RPC code only... hmm */
309 smallint se_proto_no; /* IPPROTO_TCP/UDP, n/a for AF_UNIX */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000310 smallint se_checked; /* looked at during merge */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000311 unsigned se_max; /* allowed instances per minute */
312 unsigned se_count; /* number started since se_time */
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000313 unsigned se_time; /* when we started counting */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000314 char *se_user; /* user name to run as */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000315 char *se_group; /* group name to run as, can be NULL */
316#ifdef INETD_BUILTINS_ENABLED
317 const struct builtin *se_builtin; /* if built-in, description */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000318#endif
Denis Vlasenko39824072007-09-26 10:46:18 +0000319 struct servtab_t *se_next;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000320 len_and_sockaddr *se_lsa;
321 char *se_program; /* server program */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000322#define MAXARGV 20
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000323 char *se_argv[MAXARGV + 1]; /* program arguments */
Glenn L McGrath03a06432004-02-18 13:19:58 +0000324} servtab_t;
325
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000326#ifdef INETD_BUILTINS_ENABLED
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000327/* Echo received data */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000328#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200329static void FAST_FUNC echo_stream(int, servtab_t *);
330static void FAST_FUNC echo_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000331#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000332/* Internet /dev/null */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000333#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200334static void FAST_FUNC discard_stream(int, servtab_t *);
335static void FAST_FUNC discard_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000336#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000337/* Return 32 bit time since 1900 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000338#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200339static void FAST_FUNC machtime_stream(int, servtab_t *);
340static void FAST_FUNC machtime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000341#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000342/* Return human-readable time */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000343#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200344static void FAST_FUNC daytime_stream(int, servtab_t *);
345static void FAST_FUNC daytime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000346#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000347/* Familiar character generator */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000348#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200349static void FAST_FUNC chargen_stream(int, servtab_t *);
350static void FAST_FUNC chargen_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000351#endif
352
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000353struct builtin {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000354 /* NB: not necessarily NUL terminated */
355 char bi_service7[7]; /* internally provided service name */
356 uint8_t bi_fork; /* 1 if stream fn should run in child */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200357 void (*bi_stream_fn)(int, servtab_t *) FAST_FUNC;
358 void (*bi_dgram_fn)(int, servtab_t *) FAST_FUNC;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000359};
360
Bernhard Reutner-Fischera4acf662006-04-10 12:26:47 +0000361static const struct builtin builtins[] = {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000362#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000363 { "echo", 1, echo_stream, echo_dg },
Glenn L McGrath06e95652003-02-09 06:51:14 +0000364#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000365#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000366 { "discard", 1, discard_stream, discard_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_CHARGEN
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000369 { "chargen", 1, chargen_stream, chargen_dg },
Glenn L McGrath06e95652003-02-09 06:51:14 +0000370#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000371#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000372 { "time", 0, machtime_stream, machtime_dg },
373#endif
374#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000375 { "daytime", 0, daytime_stream, daytime_dg },
376#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000377};
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000378#endif /* INETD_BUILTINS_ENABLED */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000379
Denis Vlasenko512a5452007-09-24 10:41:30 +0000380struct globals {
381 rlim_t rlim_ofile_cur;
382 struct rlimit rlim_ofile;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000383 servtab_t *serv_list;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000384 int global_queuelen;
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200385 int maxsock; /* max fd# in allsock, -1: unknown */
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000386 /* whenever maxsock grows, prev_maxsock is set to new maxsock,
387 * but if maxsock is set to -1, prev_maxsock is not changed */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000388 int prev_maxsock;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000389 unsigned max_concurrency;
390 smallint alarm_armed;
391 uid_t real_uid; /* user ID who ran us */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000392 const char *config_filename;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000393 parser_t *parser;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000394 char *default_local_hostname;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000395#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000396 char *end_ring;
397 char *ring_pos;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000398 char ring[128];
399#endif
400 fd_set allsock;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000401 /* Used in next_line(), and as scratch read buffer */
402 char line[256]; /* _at least_ 256, see LINE_SIZE */
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100403} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200404#define G (*(struct globals*)bb_common_bufsiz1)
Denis Vlasenko512a5452007-09-24 10:41:30 +0000405enum { LINE_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line) };
Denis Vlasenko512a5452007-09-24 10:41:30 +0000406#define rlim_ofile_cur (G.rlim_ofile_cur )
407#define rlim_ofile (G.rlim_ofile )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000408#define serv_list (G.serv_list )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000409#define global_queuelen (G.global_queuelen)
Denis Vlasenko512a5452007-09-24 10:41:30 +0000410#define maxsock (G.maxsock )
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000411#define prev_maxsock (G.prev_maxsock )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000412#define max_concurrency (G.max_concurrency)
413#define alarm_armed (G.alarm_armed )
414#define real_uid (G.real_uid )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000415#define config_filename (G.config_filename)
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000416#define parser (G.parser )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000417#define default_local_hostname (G.default_local_hostname)
418#define first_ps_byte (G.first_ps_byte )
419#define last_ps_byte (G.last_ps_byte )
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000420#define end_ring (G.end_ring )
421#define ring_pos (G.ring_pos )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000422#define ring (G.ring )
423#define allsock (G.allsock )
424#define line (G.line )
425#define INIT_G() do { \
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200426 setup_common_bufsiz(); \
Denys Vlasenko7b85ec32015-10-13 17:17:34 +0200427 BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
Denis Vlasenko512a5452007-09-24 10:41:30 +0000428 rlim_ofile_cur = OPEN_MAX; \
429 global_queuelen = 128; \
430 config_filename = "/etc/inetd.conf"; \
431} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000432
Denys Vlasenko223b9412011-09-11 16:48:21 +0200433#if 1
434# define dbg(...) ((void)0)
435#else
436# define dbg(...) \
437do { \
438 int dbg_fd = open("inetd_debug.log", O_WRONLY | O_CREAT | O_APPEND, 0666); \
439 if (dbg_fd >= 0) { \
440 fdprintf(dbg_fd, "%d: ", getpid()); \
441 fdprintf(dbg_fd, __VA_ARGS__); \
442 close(dbg_fd); \
443 } \
444} while (0)
445#endif
446
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000447static void maybe_close(int fd)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000448{
Denys Vlasenko223b9412011-09-11 16:48:21 +0200449 if (fd >= 0) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000450 close(fd);
Denys Vlasenko223b9412011-09-11 16:48:21 +0200451 dbg("closed fd:%d\n", fd);
452 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000453}
454
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000455// TODO: move to libbb?
456static len_and_sockaddr *xzalloc_lsa(int family)
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000457{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000458 len_and_sockaddr *lsa;
459 int sz;
460
461 sz = sizeof(struct sockaddr_in);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000462 if (family == AF_UNIX)
463 sz = sizeof(struct sockaddr_un);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000464#if ENABLE_FEATURE_IPV6
465 if (family == AF_INET6)
466 sz = sizeof(struct sockaddr_in6);
467#endif
468 lsa = xzalloc(LSA_LEN_SIZE + sz);
469 lsa->len = sz;
470 lsa->u.sa.sa_family = family;
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000471 return lsa;
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000472}
473
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000474static void rearm_alarm(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000475{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000476 if (!alarm_armed) {
477 alarm_armed = 1;
478 alarm(RETRYTIME);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000479 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000480}
481
482static void block_CHLD_HUP_ALRM(sigset_t *m)
483{
484 sigemptyset(m);
485 sigaddset(m, SIGCHLD);
486 sigaddset(m, SIGHUP);
487 sigaddset(m, SIGALRM);
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000488 sigprocmask(SIG_BLOCK, m, m); /* old sigmask is stored in m */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000489}
490
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000491static void restore_sigmask(sigset_t *m)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000492{
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000493 sigprocmask(SIG_SETMASK, m, NULL);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000494}
Glenn L McGrath53766c42004-01-18 08:58:06 +0000495
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000496#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000497static void register_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000498{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000499 int n;
500 struct sockaddr_in ir_sin;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000501 socklen_t size;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000502
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000503 size = sizeof(ir_sin);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000504 if (getsockname(sep->se_fd, (struct sockaddr *) &ir_sin, &size) < 0) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000505 bb_perror_msg("getsockname");
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000506 return;
507 }
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000508
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000509 for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) {
510 pmap_unset(sep->se_rpcprog, n);
511 if (!pmap_set(sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port)))
512 bb_perror_msg("%s %s: pmap_set(%u,%u,%u,%u)",
513 sep->se_service, sep->se_proto,
514 sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port));
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000515 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000516}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000517
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000518static void unregister_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000519{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000520 int n;
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000521
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000522 for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000523 if (!pmap_unset(sep->se_rpcprog, n))
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000524 bb_perror_msg("pmap_unset(%u,%u)", sep->se_rpcprog, n);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000525 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000526}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000527#endif /* FEATURE_INETD_RPC */
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000528
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000529static void bump_nofile(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000530{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000531 enum { FD_CHUNK = 32 };
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000532 struct rlimit rl;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000533
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000534 /* Never fails under Linux (except if you pass it bad arguments) */
535 getrlimit(RLIMIT_NOFILE, &rl);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000536 rl.rlim_cur = MIN(rl.rlim_max, rl.rlim_cur + FD_CHUNK);
537 rl.rlim_cur = MIN(FD_SETSIZE, rl.rlim_cur + FD_CHUNK);
538 if (rl.rlim_cur <= rlim_ofile_cur) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000539 bb_error_msg("can't extend file limit, max = %d",
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000540 (int) rl.rlim_cur);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000541 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000542 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000543
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000544 if (setrlimit(RLIMIT_NOFILE, &rl) < 0) {
545 bb_perror_msg("setrlimit");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000546 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000547 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000548
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000549 rlim_ofile_cur = rl.rlim_cur;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000550}
551
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000552static void remove_fd_from_set(int fd)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000553{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000554 if (fd >= 0) {
555 FD_CLR(fd, &allsock);
Denys Vlasenko223b9412011-09-11 16:48:21 +0200556 dbg("stopped listening on fd:%d\n", fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000557 maxsock = -1;
Denys Vlasenko223b9412011-09-11 16:48:21 +0200558 dbg("maxsock:%d\n", maxsock);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000559 }
560}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000561
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000562static void add_fd_to_set(int fd)
563{
564 if (fd >= 0) {
565 FD_SET(fd, &allsock);
Denys Vlasenko223b9412011-09-11 16:48:21 +0200566 dbg("started listening on fd:%d\n", fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000567 if (maxsock >= 0 && fd > maxsock) {
568 prev_maxsock = maxsock = fd;
Denys Vlasenko223b9412011-09-11 16:48:21 +0200569 dbg("maxsock:%d\n", maxsock);
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000570 if ((rlim_t)fd > rlim_ofile_cur - FD_MARGIN)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000571 bump_nofile();
572 }
573 }
574}
575
576static void recalculate_maxsock(void)
577{
578 int fd = 0;
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000579
580 /* We may have no services, in this case maxsock should still be >= 0
581 * (code elsewhere is not happy with maxsock == -1) */
582 maxsock = 0;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000583 while (fd <= prev_maxsock) {
584 if (FD_ISSET(fd, &allsock))
585 maxsock = fd;
586 fd++;
587 }
Denys Vlasenko223b9412011-09-11 16:48:21 +0200588 dbg("recalculated maxsock:%d\n", maxsock);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000589 prev_maxsock = maxsock;
590 if ((rlim_t)maxsock > rlim_ofile_cur - FD_MARGIN)
591 bump_nofile();
592}
593
594static void prepare_socket_fd(servtab_t *sep)
595{
596 int r, fd;
597
598 fd = socket(sep->se_family, sep->se_socktype, 0);
599 if (fd < 0) {
600 bb_perror_msg("socket");
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000601 return;
602 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000603 setsockopt_reuseaddr(fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000604
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000605#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000606 if (is_rpc_service(sep)) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000607 struct passwd *pwd;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000608
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000609 /* zero out the port for all RPC services; let bind()
610 * find one. */
Denys Vlasenkoca183112011-04-07 17:52:20 +0200611 set_nport(&sep->se_lsa->u.sa, 0);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000612
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000613 /* for RPC services, attempt to use a reserved port
614 * if they are going to be running as root. */
615 if (real_uid == 0 && sep->se_family == AF_INET
616 && (pwd = getpwnam(sep->se_user)) != NULL
617 && pwd->pw_uid == 0
618 ) {
619 r = bindresvport(fd, &sep->se_lsa->u.sin);
620 } else {
621 r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
622 }
623 if (r == 0) {
624 int saveerrno = errno;
625 /* update lsa with port# */
626 getsockname(fd, &sep->se_lsa->u.sa, &sep->se_lsa->len);
627 errno = saveerrno;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000628 }
629 } else
Glenn L McGrath53766c42004-01-18 08:58:06 +0000630#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000631 {
632 if (sep->se_family == AF_UNIX) {
633 struct sockaddr_un *sun;
634 sun = (struct sockaddr_un*)&(sep->se_lsa->u.sa);
635 unlink(sun->sun_path);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000636 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000637 r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
638 }
639 if (r < 0) {
640 bb_perror_msg("%s/%s: bind",
641 sep->se_service, sep->se_proto);
642 close(fd);
643 rearm_alarm();
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000644 return;
Glenn L McGrath53766c42004-01-18 08:58:06 +0000645 }
Denys Vlasenko223b9412011-09-11 16:48:21 +0200646
647 if (sep->se_socktype == SOCK_STREAM) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000648 listen(fd, global_queuelen);
Denys Vlasenko223b9412011-09-11 16:48:21 +0200649 dbg("new sep->se_fd:%d (stream)\n", fd);
650 } else {
651 dbg("new sep->se_fd:%d (!stream)\n", fd);
652 }
Glenn L McGrath53766c42004-01-18 08:58:06 +0000653
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000654 add_fd_to_set(fd);
655 sep->se_fd = fd;
656}
657
658static int reopen_config_file(void)
659{
660 free(default_local_hostname);
661 default_local_hostname = xstrdup("*");
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000662 if (parser != NULL)
663 config_close(parser);
664 parser = config_open(config_filename);
665 return (parser != NULL);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000666}
667
668static void close_config_file(void)
669{
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000670 if (parser) {
671 config_close(parser);
672 parser = NULL;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000673 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000674}
675
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000676static void free_servtab_strings(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000677{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000678 int i;
679
680 free(cp->se_local_hostname);
681 free(cp->se_service);
682 free(cp->se_proto);
683 free(cp->se_user);
684 free(cp->se_group);
685 free(cp->se_lsa); /* not a string in fact */
686 free(cp->se_program);
687 for (i = 0; i < MAXARGV; i++)
688 free(cp->se_argv[i]);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000689}
690
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000691static servtab_t *new_servtab(void)
692{
693 servtab_t *newtab = xzalloc(sizeof(servtab_t));
694 newtab->se_fd = -1; /* paranoia */
695 return newtab;
696}
697
698static servtab_t *dup_servtab(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000699{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000700 servtab_t *newtab;
701 int argc;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000702
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000703 newtab = new_servtab();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000704 *newtab = *sep; /* struct copy */
705 /* deep-copying strings */
706 newtab->se_service = xstrdup(newtab->se_service);
707 newtab->se_proto = xstrdup(newtab->se_proto);
708 newtab->se_user = xstrdup(newtab->se_user);
709 newtab->se_group = xstrdup(newtab->se_group);
710 newtab->se_program = xstrdup(newtab->se_program);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000711 for (argc = 0; argc <= MAXARGV; argc++)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000712 newtab->se_argv[argc] = xstrdup(newtab->se_argv[argc]);
713 /* NB: se_fd, se_hostaddr and se_next are always
714 * overwrittend by callers, so we don't bother resetting them
715 * to NULL/0/-1 etc */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000716
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000717 return newtab;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000718}
719
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000720/* gcc generates much more code if this is inlined */
Denys Vlasenko2ec4f442015-03-03 13:10:30 +0100721static NOINLINE servtab_t *parse_one_line(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000722{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000723 int argc;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000724 char *token[6+MAXARGV];
725 char *p, *arg;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000726 char *hostdelim;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000727 servtab_t *sep;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000728 servtab_t *nsep;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000729 new:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000730 sep = new_servtab();
Denis Vlasenko13858992006-10-08 12:49:22 +0000731 more:
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000732 argc = config_read(parser, token, 6+MAXARGV, 1, "# \t", PARSE_NORMAL);
733 if (!argc) {
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000734 free(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000735 return NULL;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000736 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000737
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000738 /* [host:]service socktype proto wait user[:group] prog [args] */
739 /* Check for "host:...." line */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000740 arg = token[0];
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000741 hostdelim = strrchr(arg, ':');
742 if (hostdelim) {
743 *hostdelim = '\0';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000744 sep->se_local_hostname = xstrdup(arg);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000745 arg = hostdelim + 1;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000746 if (*arg == '\0' && argc == 1) {
747 /* Line has just "host:", change the
748 * default host for the following lines. */
749 free(default_local_hostname);
750 default_local_hostname = sep->se_local_hostname;
Denys Vlasenko2ec4f442015-03-03 13:10:30 +0100751 /*sep->se_local_hostname = NULL; - redundant */
752 /* (we'll overwrite this field anyway) */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000753 goto more;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000754 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000755 } else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000756 sep->se_local_hostname = xstrdup(default_local_hostname);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000757
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000758 /* service socktype proto wait user[:group] prog [args] */
759 sep->se_service = xstrdup(arg);
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000760
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000761 /* socktype proto wait user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000762 if (argc < 6) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000763 parse_err:
764 bb_error_msg("parse error on line %u, line is ignored",
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000765 parser->lineno);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000766 /* Just "goto more" can make sep to carry over e.g.
767 * "rpc"-ness (by having se_rpcver_lo != 0).
768 * We will be more paranoid: */
Denys Vlasenko2ec4f442015-03-03 13:10:30 +0100769 free_servtab_strings(sep);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000770 free(sep);
771 goto new;
772 }
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000773
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000774 {
Denis Vlasenkoeb4e5ec2009-04-22 23:25:48 +0000775 static const int8_t SOCK_xxx[] ALIGN1 = {
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000776 -1,
777 SOCK_STREAM, SOCK_DGRAM, SOCK_RDM,
778 SOCK_SEQPACKET, SOCK_RAW
779 };
780 sep->se_socktype = SOCK_xxx[1 + index_in_strings(
781 "stream""\0" "dgram""\0" "rdm""\0"
782 "seqpacket""\0" "raw""\0"
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000783 , token[1])];
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000784 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000785
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000786 /* {unix,[rpc/]{tcp,udp}[6]} wait user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000787 sep->se_proto = arg = xstrdup(token[2]);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000788 if (strcmp(arg, "unix") == 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000789 sep->se_family = AF_UNIX;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000790 } else {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000791 char *six;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000792 sep->se_family = AF_INET;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000793 six = last_char_is(arg, '6');
794 if (six) {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000795#if ENABLE_FEATURE_IPV6
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000796 *six = '\0';
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000797 sep->se_family = AF_INET6;
798#else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000799 bb_error_msg("%s: no support for IPv6", sep->se_proto);
800 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000801#endif
802 }
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100803 if (is_prefixed_with(arg, "rpc/")) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000804#if ENABLE_FEATURE_INETD_RPC
805 unsigned n;
806 arg += 4;
807 p = strchr(sep->se_service, '/');
808 if (p == NULL) {
809 bb_error_msg("no rpc version: '%s'", sep->se_service);
810 goto parse_err;
811 }
812 *p++ = '\0';
813 n = bb_strtou(p, &p, 10);
814 if (n > INT_MAX) {
815 bad_ver_spec:
816 bb_error_msg("bad rpc version");
817 goto parse_err;
818 }
819 sep->se_rpcver_lo = sep->se_rpcver_hi = n;
820 if (*p == '-') {
821 p++;
822 n = bb_strtou(p, &p, 10);
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000823 if (n > INT_MAX || (int)n < sep->se_rpcver_lo)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000824 goto bad_ver_spec;
825 sep->se_rpcver_hi = n;
826 }
827 if (*p != '\0')
828 goto bad_ver_spec;
829#else
830 bb_error_msg("no support for rpc services");
831 goto parse_err;
832#endif
833 }
834 /* we don't really need getprotobyname()! */
835 if (strcmp(arg, "tcp") == 0)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000836 sep->se_proto_no = IPPROTO_TCP; /* = 6 */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000837 if (strcmp(arg, "udp") == 0)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000838 sep->se_proto_no = IPPROTO_UDP; /* = 17 */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000839 if (six)
840 *six = '6';
841 if (!sep->se_proto_no) /* not tcp/udp?? */
842 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000843 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000844
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000845 /* [no]wait[.max] user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000846 arg = token[3];
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000847 sep->se_max = max_concurrency;
848 p = strchr(arg, '.');
849 if (p) {
850 *p++ = '\0';
851 sep->se_max = bb_strtou(p, NULL, 10);
852 if (errno)
853 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000854 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000855 sep->se_wait = (arg[0] != 'n' || arg[1] != 'o');
856 if (!sep->se_wait) /* "no" seen */
857 arg += 2;
858 if (strcmp(arg, "wait") != 0)
859 goto parse_err;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000860
861 /* user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000862 sep->se_user = xstrdup(token[4]);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000863 arg = strchr(sep->se_user, '.');
864 if (arg == NULL)
865 arg = strchr(sep->se_user, ':');
866 if (arg) {
867 *arg++ = '\0';
868 sep->se_group = xstrdup(arg);
869 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000870
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000871 /* prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000872 sep->se_program = xstrdup(token[5]);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000873#ifdef INETD_BUILTINS_ENABLED
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000874 if (strcmp(sep->se_program, "internal") == 0
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000875 && strlen(sep->se_service) <= 7
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000876 && (sep->se_socktype == SOCK_STREAM
877 || sep->se_socktype == SOCK_DGRAM)
878 ) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000879 unsigned i;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000880 for (i = 0; i < ARRAY_SIZE(builtins); i++)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000881 if (strncmp(builtins[i].bi_service7, sep->se_service, 7) == 0)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000882 goto found_bi;
883 bb_error_msg("unknown internal service %s", sep->se_service);
884 goto parse_err;
885 found_bi:
886 sep->se_builtin = &builtins[i];
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000887 /* stream builtins must be "nowait", dgram must be "wait" */
888 if (sep->se_wait != (sep->se_socktype == SOCK_DGRAM))
889 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000890 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000891#endif
892 argc = 0;
Denys Vlasenko2ec4f442015-03-03 13:10:30 +0100893 while (argc < MAXARGV && (arg = token[6+argc]) != NULL)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000894 sep->se_argv[argc++] = xstrdup(arg);
Mike Frysingera945f612010-11-22 04:57:37 +0100895 /* Some inetd.conf files have no argv's, not even argv[0].
896 * Fix them up.
897 * (Technically, programs can be execed with argv[0] = NULL,
898 * but many programs do not like that at all) */
899 if (argc == 0)
900 sep->se_argv[0] = xstrdup(sep->se_program);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000901
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000902 /* catch mixups. "<service> stream udp ..." == wtf */
903 if (sep->se_socktype == SOCK_STREAM) {
904 if (sep->se_proto_no == IPPROTO_UDP)
905 goto parse_err;
906 }
907 if (sep->se_socktype == SOCK_DGRAM) {
908 if (sep->se_proto_no == IPPROTO_TCP)
909 goto parse_err;
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000910 }
911
Denys Vlasenko066e76b2016-03-30 16:20:28 +0200912 //bb_error_msg(
913 // "ENTRY[%s][%s][%s][%d][%d][%d][%d][%d][%s][%s][%s]",
914 // sep->se_local_hostname, sep->se_service, sep->se_proto, sep->se_wait, sep->se_proto_no,
915 // 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 +0000916
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000917 /* check if the hostname specifier is a comma separated list
918 * of hostnames. we'll make new entries for each address. */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000919 while ((hostdelim = strrchr(sep->se_local_hostname, ',')) != NULL) {
920 nsep = dup_servtab(sep);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000921 /* NUL terminate the hostname field of the existing entry,
922 * and make a dup for the new entry. */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000923 *hostdelim++ = '\0';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000924 nsep->se_local_hostname = xstrdup(hostdelim);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000925 nsep->se_next = sep->se_next;
926 sep->se_next = nsep;
927 }
928
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000929 /* was doing it here: */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000930 /* DNS resolution, create copies for each IP address */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000931 /* IPv6-ization destroyed it :( */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000932
933 return sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000934}
935
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000936static servtab_t *insert_in_servlist(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000937{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000938 servtab_t *sep;
939 sigset_t omask;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000940
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000941 sep = new_servtab();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000942 *sep = *cp; /* struct copy */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000943 sep->se_fd = -1;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000944#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000945 sep->se_rpcprog = -1;
946#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000947 block_CHLD_HUP_ALRM(&omask);
948 sep->se_next = serv_list;
949 serv_list = sep;
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000950 restore_sigmask(&omask);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000951 return sep;
952}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000953
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000954static int same_serv_addr_proto(servtab_t *old, servtab_t *new)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000955{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000956 if (strcmp(old->se_local_hostname, new->se_local_hostname) != 0)
957 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000958 if (strcmp(old->se_service, new->se_service) != 0)
959 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000960 if (strcmp(old->se_proto, new->se_proto) != 0)
961 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000962 return 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000963}
964
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000965static void reread_config_file(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000966{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000967 servtab_t *sep, *cp, **sepp;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000968 len_and_sockaddr *lsa;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000969 sigset_t omask;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000970 unsigned n;
971 uint16_t port;
Denis Vlasenkof54e62a2008-07-22 20:57:28 +0000972 int save_errno = errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000973
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000974 if (!reopen_config_file())
Denis Vlasenkof54e62a2008-07-22 20:57:28 +0000975 goto ret;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000976 for (sep = serv_list; sep; sep = sep->se_next)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000977 sep->se_checked = 0;
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000978
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000979 goto first_line;
980 while (1) {
981 if (cp == NULL) {
982 first_line:
983 cp = parse_one_line();
984 if (cp == NULL)
985 break;
986 }
987 for (sep = serv_list; sep; sep = sep->se_next)
988 if (same_serv_addr_proto(sep, cp))
989 goto equal_servtab;
990 /* not an "equal" servtab */
991 sep = insert_in_servlist(cp);
992 goto after_check;
993 equal_servtab:
994 {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000995 int i;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000996
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000997 block_CHLD_HUP_ALRM(&omask);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000998#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000999 if (is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001000 unregister_rpc(sep);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001001 sep->se_rpcver_lo = cp->se_rpcver_lo;
1002 sep->se_rpcver_hi = cp->se_rpcver_hi;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001003#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001004 if (cp->se_wait == 0) {
1005 /* New config says "nowait". If old one
1006 * was "wait", we currently may be waiting
1007 * for a child (and not accepting connects).
1008 * Stop waiting, start listening again.
1009 * (if it's not true, this op is harmless) */
1010 add_fd_to_set(sep->se_fd);
1011 }
1012 sep->se_wait = cp->se_wait;
1013 sep->se_max = cp->se_max;
1014 /* string fields need more love - we don't want to leak them */
1015#define SWAP(type, a, b) do { type c = (type)a; a = (type)b; b = (type)c; } while (0)
1016 SWAP(char*, sep->se_user, cp->se_user);
1017 SWAP(char*, sep->se_group, cp->se_group);
1018 SWAP(char*, sep->se_program, cp->se_program);
1019 for (i = 0; i < MAXARGV; i++)
1020 SWAP(char*, sep->se_argv[i], cp->se_argv[i]);
1021#undef SWAP
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001022 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001023 free_servtab_strings(cp);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001024 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001025 after_check:
1026 /* cp->string_fields are consumed by insert_in_servlist()
1027 * or freed at this point, cp itself is not yet freed. */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001028 sep->se_checked = 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001029
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001030 /* create new len_and_sockaddr */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001031 switch (sep->se_family) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001032 struct sockaddr_un *sun;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001033 case AF_UNIX:
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001034 lsa = xzalloc_lsa(AF_UNIX);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001035 sun = (struct sockaddr_un*)&lsa->u.sa;
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001036 safe_strncpy(sun->sun_path, sep->se_service, sizeof(sun->sun_path));
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001037 break;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001038
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001039 default: /* case AF_INET, case AF_INET6 */
1040 n = bb_strtou(sep->se_service, NULL, 10);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001041#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001042 if (is_rpc_service(sep)) {
1043 sep->se_rpcprog = n;
1044 if (errno) { /* se_service is not numeric */
1045 struct rpcent *rp = getrpcbyname(sep->se_service);
1046 if (rp == NULL) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001047 bb_error_msg("%s: unknown rpc service", sep->se_service);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001048 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001049 }
1050 sep->se_rpcprog = rp->r_number;
1051 }
1052 if (sep->se_fd == -1)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001053 prepare_socket_fd(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001054 if (sep->se_fd != -1)
1055 register_rpc(sep);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001056 goto next_cp;
1057 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001058#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001059 /* what port to listen on? */
1060 port = htons(n);
1061 if (errno || n > 0xffff) { /* se_service is not numeric */
1062 char protoname[4];
1063 struct servent *sp;
1064 /* can result only in "tcp" or "udp": */
1065 safe_strncpy(protoname, sep->se_proto, 4);
1066 sp = getservbyname(sep->se_service, protoname);
1067 if (sp == NULL) {
1068 bb_error_msg("%s/%s: unknown service",
1069 sep->se_service, sep->se_proto);
1070 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001071 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001072 port = sp->s_port;
1073 }
1074 if (LONE_CHAR(sep->se_local_hostname, '*')) {
1075 lsa = xzalloc_lsa(sep->se_family);
Denys Vlasenkoca183112011-04-07 17:52:20 +02001076 set_nport(&lsa->u.sa, port);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001077 } else {
1078 lsa = host_and_af2sockaddr(sep->se_local_hostname,
1079 ntohs(port), sep->se_family);
1080 if (!lsa) {
1081 bb_error_msg("%s/%s: unknown host '%s'",
1082 sep->se_service, sep->se_proto,
1083 sep->se_local_hostname);
1084 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001085 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001086 }
1087 break;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001088 } /* end of "switch (sep->se_family)" */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001089
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001090 /* did lsa change? Then close/open */
1091 if (sep->se_lsa == NULL
1092 || lsa->len != sep->se_lsa->len
1093 || memcmp(&lsa->u.sa, &sep->se_lsa->u.sa, lsa->len) != 0
1094 ) {
1095 remove_fd_from_set(sep->se_fd);
1096 maybe_close(sep->se_fd);
1097 free(sep->se_lsa);
1098 sep->se_lsa = lsa;
1099 sep->se_fd = -1;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001100 } else {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001101 free(lsa);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001102 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001103 if (sep->se_fd == -1)
1104 prepare_socket_fd(sep);
1105 next_cp:
1106 sep = cp->se_next;
1107 free(cp);
1108 cp = sep;
1109 } /* end of "while (1) parse lines" */
1110 close_config_file();
1111
1112 /* Purge anything not looked at above - these are stale entries,
1113 * new config file doesnt have them. */
1114 block_CHLD_HUP_ALRM(&omask);
1115 sepp = &serv_list;
Denys Vlasenko223b9412011-09-11 16:48:21 +02001116 while ((sep = *sepp) != NULL) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001117 if (sep->se_checked) {
1118 sepp = &sep->se_next;
1119 continue;
1120 }
1121 *sepp = sep->se_next;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001122 remove_fd_from_set(sep->se_fd);
1123 maybe_close(sep->se_fd);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001124#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001125 if (is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001126 unregister_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001127#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001128 if (sep->se_family == AF_UNIX)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001129 unlink(sep->se_service);
1130 free_servtab_strings(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001131 free(sep);
1132 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001133 restore_sigmask(&omask);
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001134 ret:
1135 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001136}
1137
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001138static void reap_child(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001139{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001140 pid_t pid;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001141 int status;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001142 servtab_t *sep;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001143 int save_errno = errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001144
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001145 for (;;) {
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001146 pid = wait_any_nohang(&status);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001147 if (pid <= 0)
1148 break;
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001149 for (sep = serv_list; sep; sep = sep->se_next) {
1150 if (sep->se_wait != pid)
1151 continue;
1152 /* One of our "wait" services */
1153 if (WIFEXITED(status) && WEXITSTATUS(status))
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001154 bb_error_msg("%s: exit status %u",
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001155 sep->se_program, WEXITSTATUS(status));
1156 else if (WIFSIGNALED(status))
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001157 bb_error_msg("%s: exit signal %u",
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001158 sep->se_program, WTERMSIG(status));
1159 sep->se_wait = 1;
1160 add_fd_to_set(sep->se_fd);
1161 break;
1162 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001163 }
1164 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001165}
1166
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001167static void retry_network_setup(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001168{
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001169 int save_errno = errno;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001170 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001171
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001172 alarm_armed = 0;
1173 for (sep = serv_list; sep; sep = sep->se_next) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001174 if (sep->se_fd == -1) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001175 prepare_socket_fd(sep);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001176#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001177 if (sep->se_fd != -1 && is_rpc_service(sep))
1178 register_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001179#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001180 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001181 }
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001182 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001183}
1184
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001185static void clean_up_and_exit(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001186{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001187 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001188
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001189 /* XXX signal race walking sep list */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001190 for (sep = serv_list; sep; sep = sep->se_next) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001191 if (sep->se_fd == -1)
1192 continue;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001193
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001194 switch (sep->se_family) {
1195 case AF_UNIX:
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001196 unlink(sep->se_service);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001197 break;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001198 default: /* case AF_INET, AF_INET6 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001199#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001200 if (sep->se_wait == 1 && is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001201 unregister_rpc(sep); /* XXX signal race */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001202#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001203 break;
1204 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001205 if (ENABLE_FEATURE_CLEAN_UP)
1206 close(sep->se_fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001207 }
Anthony G. Basile12677ac2012-12-10 14:49:39 -05001208 remove_pidfile(CONFIG_PID_FILE_PATH "/inetd.pid");
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001209 exit(EXIT_SUCCESS);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001210}
1211
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001212int inetd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001213int inetd_main(int argc UNUSED_PARAM, char **argv)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001214{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001215 struct sigaction sa, saved_pipe_handler;
1216 servtab_t *sep, *sep2;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001217 struct passwd *pwd;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001218 struct group *grp = grp; /* for compiler */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001219 int opt;
1220 pid_t pid;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001221 sigset_t omask;
Denis Vlasenko512a5452007-09-24 10:41:30 +00001222
1223 INIT_G();
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001224
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001225 real_uid = getuid();
1226 if (real_uid != 0) /* run by non-root user */
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001227 config_filename = NULL;
Denis Vlasenko5a142022007-03-26 13:20:54 +00001228
Denys Vlasenko237bedd2016-07-06 21:58:02 +02001229 /* -q N, -R N */
1230 opt = getopt32(argv, "R:+feq:+", &max_concurrency, &global_queuelen);
Denis Vlasenko5a142022007-03-26 13:20:54 +00001231 argv += optind;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001232 //argc -= optind;
1233 if (argv[0])
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001234 config_filename = argv[0];
1235 if (config_filename == NULL)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001236 bb_error_msg_and_die("non-root must specify config file");
Denis Vlasenko5a142022007-03-26 13:20:54 +00001237 if (!(opt & 2))
1238 bb_daemonize_or_rexec(0, argv - optind);
1239 else
1240 bb_sanitize_stdio();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001241 if (!(opt & 4)) {
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001242 /* LOG_NDELAY: connect to syslog daemon NOW.
1243 * Otherwise, we may open syslog socket
1244 * in vforked child, making opened fds and syslog()
1245 * internal state inconsistent.
1246 * This was observed to leak file descriptors. */
1247 openlog(applet_name, LOG_PID | LOG_NDELAY, LOG_DAEMON);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001248 logmode = LOGMODE_SYSLOG;
1249 }
Eric Andersen35e643b2003-07-28 07:40:39 +00001250
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001251 if (real_uid == 0) {
1252 /* run by root, ensure groups vector gets trashed */
Denis Vlasenko7a431b32007-01-14 01:29:06 +00001253 gid_t gid = getgid();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001254 setgroups(1, &gid);
1255 }
1256
Anthony G. Basile12677ac2012-12-10 14:49:39 -05001257 write_pidfile(CONFIG_PID_FILE_PATH "/inetd.pid");
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001258
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001259 /* never fails under Linux (except if you pass it bad arguments) */
1260 getrlimit(RLIMIT_NOFILE, &rlim_ofile);
1261 rlim_ofile_cur = rlim_ofile.rlim_cur;
1262 if (rlim_ofile_cur == RLIM_INFINITY) /* ! */
1263 rlim_ofile_cur = OPEN_MAX;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001264
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001265 memset(&sa, 0, sizeof(sa));
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001266 /*sigemptyset(&sa.sa_mask); - memset did it */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001267 sigaddset(&sa.sa_mask, SIGALRM);
1268 sigaddset(&sa.sa_mask, SIGCHLD);
1269 sigaddset(&sa.sa_mask, SIGHUP);
Denys Vlasenkob1ab2832011-05-12 23:05:27 +02001270//FIXME: explain why no SA_RESTART
1271//FIXME: retry_network_setup is unsafe to run in signal handler (many reasons)!
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001272 sa.sa_handler = retry_network_setup;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001273 sigaction_set(SIGALRM, &sa);
Denys Vlasenkob1ab2832011-05-12 23:05:27 +02001274//FIXME: reread_config_file is unsafe to run in signal handler(many reasons)!
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001275 sa.sa_handler = reread_config_file;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001276 sigaction_set(SIGHUP, &sa);
Denys Vlasenkob1ab2832011-05-12 23:05:27 +02001277//FIXME: reap_child is unsafe to run in signal handler (uses stdio)!
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001278 sa.sa_handler = reap_child;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001279 sigaction_set(SIGCHLD, &sa);
Denys Vlasenkob1ab2832011-05-12 23:05:27 +02001280//FIXME: clean_up_and_exit is unsafe to run in signal handler (uses stdio)!
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001281 sa.sa_handler = clean_up_and_exit;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001282 sigaction_set(SIGTERM, &sa);
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(SIGINT, &sa);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001285 sa.sa_handler = SIG_IGN;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001286 sigaction(SIGPIPE, &sa, &saved_pipe_handler);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001287
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001288 reread_config_file(SIGHUP); /* load config from file */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001289
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001290 for (;;) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001291 int ready_fd_cnt;
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001292 int ctrl, accepted_fd, new_udp_fd;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001293 fd_set readable;
1294
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001295 if (maxsock < 0)
1296 recalculate_maxsock();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001297
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001298 readable = allsock; /* struct copy */
1299 /* if there are no fds to wait on, we will block
Denis Vlasenko4cb576e2008-11-05 11:36:22 +00001300 * until signal wakes us up (maxsock == 0, but readable
1301 * never contains fds 0 and 1...) */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001302 ready_fd_cnt = select(maxsock + 1, &readable, NULL, NULL, NULL);
1303 if (ready_fd_cnt < 0) {
1304 if (errno != EINTR) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001305 bb_perror_msg("select");
1306 sleep(1);
1307 }
Glenn L McGrath82d42db2004-02-18 13:12:53 +00001308 continue;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001309 }
Denys Vlasenko223b9412011-09-11 16:48:21 +02001310 dbg("ready_fd_cnt:%d\n", ready_fd_cnt);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001311
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001312 for (sep = serv_list; ready_fd_cnt && sep; sep = sep->se_next) {
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001313 if (sep->se_fd == -1 || !FD_ISSET(sep->se_fd, &readable))
1314 continue;
1315
Denys Vlasenko223b9412011-09-11 16:48:21 +02001316 dbg("ready fd:%d\n", sep->se_fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001317 ready_fd_cnt--;
1318 ctrl = sep->se_fd;
1319 accepted_fd = -1;
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001320 new_udp_fd = -1;
1321 if (!sep->se_wait) {
1322 if (sep->se_socktype == SOCK_STREAM) {
1323 ctrl = accepted_fd = accept(sep->se_fd, NULL, NULL);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001324 dbg("accepted_fd:%d\n", accepted_fd);
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001325 if (ctrl < 0) {
1326 if (errno != EINTR)
1327 bb_perror_msg("accept (for %s)", sep->se_service);
1328 continue;
1329 }
1330 }
1331 /* "nowait" udp */
1332 if (sep->se_socktype == SOCK_DGRAM
1333 && sep->se_family != AF_UNIX
1334 ) {
1335/* How udp "nowait" works:
1336 * child peeks at (received and buffered by kernel) UDP packet,
1337 * performs connect() on the socket so that it is linked only
1338 * to this peer. But this also affects parent, because descriptors
1339 * are shared after fork() a-la dup(). When parent performs
1340 * select(), it will see this descriptor connected to the peer (!)
1341 * and still readable, will act on it and mess things up
1342 * (can create many copies of same child, etc).
1343 * Parent must create and use new socket instead. */
1344 new_udp_fd = socket(sep->se_family, SOCK_DGRAM, 0);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001345 dbg("new_udp_fd:%d\n", new_udp_fd);
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001346 if (new_udp_fd < 0) { /* error: eat packet, forget about it */
1347 udp_err:
1348 recv(sep->se_fd, line, LINE_SIZE, MSG_DONTWAIT);
1349 continue;
1350 }
1351 setsockopt_reuseaddr(new_udp_fd);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001352 /* TODO: better do bind after fork in parent,
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001353 * so that we don't have two wildcard bound sockets
1354 * even for a brief moment? */
1355 if (bind(new_udp_fd, &sep->se_lsa->u.sa, sep->se_lsa->len) < 0) {
Denys Vlasenko223b9412011-09-11 16:48:21 +02001356 dbg("bind(new_udp_fd) failed\n");
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001357 close(new_udp_fd);
1358 goto udp_err;
1359 }
Denys Vlasenko223b9412011-09-11 16:48:21 +02001360 dbg("bind(new_udp_fd) succeeded\n");
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001361 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001362 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001363
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001364 block_CHLD_HUP_ALRM(&omask);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001365 pid = 0;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001366#ifdef INETD_BUILTINS_ENABLED
1367 /* do we need to fork? */
1368 if (sep->se_builtin == NULL
1369 || (sep->se_socktype == SOCK_STREAM
1370 && sep->se_builtin->bi_fork))
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001371#endif
1372 {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001373 if (sep->se_max != 0) {
1374 if (++sep->se_count == 1)
1375 sep->se_time = monotonic_sec();
1376 else if (sep->se_count >= sep->se_max) {
1377 unsigned now = monotonic_sec();
1378 /* did we accumulate se_max connects too quickly? */
1379 if (now - sep->se_time <= CNT_INTERVAL) {
1380 bb_error_msg("%s/%s: too many connections, pausing",
1381 sep->se_service, sep->se_proto);
1382 remove_fd_from_set(sep->se_fd);
1383 close(sep->se_fd);
1384 sep->se_fd = -1;
1385 sep->se_count = 0;
1386 rearm_alarm(); /* will revive it in RETRYTIME sec */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001387 restore_sigmask(&omask);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001388 maybe_close(new_udp_fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001389 maybe_close(accepted_fd);
1390 continue; /* -> check next fd in fd set */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001391 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001392 sep->se_count = 0;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001393 }
1394 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001395 /* on NOMMU, streamed chargen
1396 * builtin wouldn't work, but it is
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001397 * not allowed on NOMMU (ifdefed out) */
1398#ifdef INETD_BUILTINS_ENABLED
1399 if (BB_MMU && sep->se_builtin)
1400 pid = fork();
1401 else
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001402#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001403 pid = vfork();
1404
1405 if (pid < 0) { /* fork error */
Pascal Bellard926031b2010-07-04 15:32:38 +02001406 bb_perror_msg("vfork"+1);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001407 sleep(1);
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001408 restore_sigmask(&omask);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001409 maybe_close(new_udp_fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001410 maybe_close(accepted_fd);
1411 continue; /* -> check next fd in fd set */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001412 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001413 if (pid == 0)
1414 pid--; /* -1: "we did fork and we are child" */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001415 }
Denys Vlasenko223b9412011-09-11 16:48:21 +02001416 /* if pid == 0 here, we didn't fork */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001417
1418 if (pid > 0) { /* parent */
1419 if (sep->se_wait) {
Denys Vlasenko223b9412011-09-11 16:48:21 +02001420 /* wait: we passed socket to child,
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001421 * will wait for child to terminate */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001422 sep->se_wait = pid;
1423 remove_fd_from_set(sep->se_fd);
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001424 }
1425 if (new_udp_fd >= 0) {
1426 /* udp nowait: child connected the socket,
1427 * we created and will use new, unconnected one */
1428 xmove_fd(new_udp_fd, sep->se_fd);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001429 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 +00001430 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001431 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001432 maybe_close(accepted_fd);
1433 continue; /* -> check next fd in fd set */
1434 }
1435
Denys Vlasenko223b9412011-09-11 16:48:21 +02001436 /* we are either child or didn't fork at all */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001437#ifdef INETD_BUILTINS_ENABLED
1438 if (sep->se_builtin) {
Denys Vlasenko223b9412011-09-11 16:48:21 +02001439 if (pid) { /* "pid" is -1: we did fork */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001440 close(sep->se_fd); /* listening socket */
Denys Vlasenko223b9412011-09-11 16:48:21 +02001441 dbg("closed sep->se_fd:%d\n", sep->se_fd);
Denis Vlasenkoa19e6492009-03-11 14:40:00 +00001442 logmode = LOGMODE_NONE; /* make xwrite etc silent */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001443 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001444 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001445 if (sep->se_socktype == SOCK_STREAM)
1446 sep->se_builtin->bi_stream_fn(ctrl, sep);
1447 else
1448 sep->se_builtin->bi_dgram_fn(ctrl, sep);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001449 if (pid) /* we did fork */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001450 _exit(EXIT_FAILURE);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001451 maybe_close(accepted_fd);
1452 continue; /* -> check next fd in fd set */
1453 }
1454#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001455 /* child */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001456 setsid();
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001457 /* "nowait" udp */
1458 if (new_udp_fd >= 0) {
Denys Vlasenko223b9412011-09-11 16:48:21 +02001459 len_and_sockaddr *lsa;
1460 int r;
1461
1462 close(new_udp_fd);
1463 dbg("closed new_udp_fd:%d\n", new_udp_fd);
1464 lsa = xzalloc_lsa(sep->se_family);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001465 /* peek at the packet and remember peer addr */
Denys Vlasenko223b9412011-09-11 16:48:21 +02001466 r = recvfrom(ctrl, NULL, 0, MSG_PEEK|MSG_DONTWAIT,
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001467 &lsa->u.sa, &lsa->len);
Denis Vlasenkoc6938402008-03-24 02:18:03 +00001468 if (r < 0)
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001469 goto do_exit1;
1470 /* make this socket "connected" to peer addr:
1471 * only packets from this peer will be recv'ed,
1472 * and bare write()/send() will work on it */
1473 connect(ctrl, &lsa->u.sa, lsa->len);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001474 dbg("connected ctrl:%d to remote peer\n", ctrl);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001475 free(lsa);
1476 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001477 /* prepare env and exec program */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001478 pwd = getpwnam(sep->se_user);
1479 if (pwd == NULL) {
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001480 bb_error_msg("%s: no such %s", sep->se_user, "user");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001481 goto do_exit1;
1482 }
1483 if (sep->se_group && (grp = getgrnam(sep->se_group)) == NULL) {
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001484 bb_error_msg("%s: no such %s", sep->se_group, "group");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001485 goto do_exit1;
1486 }
1487 if (real_uid != 0 && real_uid != pwd->pw_uid) {
1488 /* a user running private inetd */
1489 bb_error_msg("non-root must run services as himself");
1490 goto do_exit1;
1491 }
Denys Vlasenko585541e2011-09-15 18:27:05 +02001492 if (pwd->pw_uid != 0) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001493 if (sep->se_group)
1494 pwd->pw_gid = grp->gr_gid;
Denis Vlasenko92305822008-03-20 15:12:58 +00001495 /* initgroups, setgid, setuid: */
1496 change_identity(pwd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001497 } else if (sep->se_group) {
1498 xsetgid(grp->gr_gid);
1499 setgroups(1, &grp->gr_gid);
1500 }
1501 if (rlim_ofile.rlim_cur != rlim_ofile_cur)
1502 if (setrlimit(RLIMIT_NOFILE, &rlim_ofile) < 0)
1503 bb_perror_msg("setrlimit");
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001504
Denys Vlasenko2cc70912009-09-04 03:48:40 +02001505 /* closelog(); - WRONG. we are after vfork,
1506 * this may confuse syslog() internal state.
1507 * Let's hope libc sets syslog fd to CLOEXEC...
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001508 */
Denys Vlasenko0f952c22009-06-05 15:35:36 +02001509 xmove_fd(ctrl, STDIN_FILENO);
1510 xdup2(STDIN_FILENO, STDOUT_FILENO);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001511 dbg("moved ctrl:%d to fd 0,1[,2]\n", ctrl);
Denys Vlasenko0f952c22009-06-05 15:35:36 +02001512 /* manpages of inetd I managed to find either say
1513 * that stderr is also redirected to the network,
1514 * or do not talk about redirection at all (!) */
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001515 if (!sep->se_wait) /* only for usual "tcp nowait" */
1516 xdup2(STDIN_FILENO, STDERR_FILENO);
1517 /* NB: among others, this loop closes listening sockets
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001518 * for nowait stream children */
1519 for (sep2 = serv_list; sep2; sep2 = sep2->se_next)
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001520 if (sep2->se_fd != ctrl)
1521 maybe_close(sep2->se_fd);
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001522 sigaction_set(SIGPIPE, &saved_pipe_handler);
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001523 restore_sigmask(&omask);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001524 dbg("execing:'%s'\n", sep->se_program);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001525 BB_EXECVP(sep->se_program, sep->se_argv);
Denys Vlasenko31c3dad2010-06-27 16:57:55 +02001526 bb_perror_msg("can't execute '%s'", sep->se_program);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001527 do_exit1:
1528 /* eat packet in udp case */
1529 if (sep->se_socktype != SOCK_STREAM)
1530 recv(0, line, LINE_SIZE, MSG_DONTWAIT);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001531 _exit(EXIT_FAILURE);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001532 } /* for (sep = servtab...) */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +00001533 } /* for (;;) */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001534}
Glenn L McGrath06e95652003-02-09 06:51:14 +00001535
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001536#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO \
1537 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
1538# if !BB_MMU
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001539static const char *const cat_args[] = { "cat", NULL };
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001540# endif
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001541#endif
1542
Glenn L McGrath06e95652003-02-09 06:51:14 +00001543/*
1544 * Internet services provided internally by inetd:
1545 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001546#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001547/* Echo service -- echo data back. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001548/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001549static void FAST_FUNC echo_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001550{
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001551# if BB_MMU
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001552 while (1) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001553 ssize_t sz = safe_read(s, line, LINE_SIZE);
1554 if (sz <= 0)
1555 break;
1556 xwrite(s, line, sz);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001557 }
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001558# else
Denis Vlasenko85c24712008-03-17 09:04:04 +00001559 /* We are after vfork here! */
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001560 /* move network socket to stdin/stdout */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001561 xmove_fd(s, STDIN_FILENO);
1562 xdup2(STDIN_FILENO, STDOUT_FILENO);
1563 /* no error messages please... */
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001564 close(STDERR_FILENO);
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001565 xopen(bb_dev_null, O_WRONLY);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001566 BB_EXECVP("cat", (char**)cat_args);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001567 /* on failure we return to main, which does exit(EXIT_FAILURE) */
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001568# endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001569}
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001570static void FAST_FUNC echo_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001571{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001572 enum { BUFSIZE = 12*1024 }; /* for jumbo sized packets! :) */
1573 char *buf = xmalloc(BUFSIZE); /* too big for stack */
1574 int sz;
1575 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001576
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001577 lsa->len = sep->se_lsa->len;
1578 /* dgram builtins are non-forking - DONT BLOCK! */
1579 sz = recvfrom(s, buf, BUFSIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len);
1580 if (sz > 0)
1581 sendto(s, buf, sz, 0, &lsa->u.sa, lsa->len);
1582 free(buf);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001583}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001584#endif /* FEATURE_INETD_SUPPORT_BUILTIN_ECHO */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001585
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001586
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001587#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenko4cb576e2008-11-05 11:36:22 +00001588/* Discard service -- ignore data. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001589/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001590static void FAST_FUNC discard_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001591{
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001592# if BB_MMU
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001593 while (safe_read(s, line, LINE_SIZE) > 0)
1594 continue;
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001595# else
Denis Vlasenko85c24712008-03-17 09:04:04 +00001596 /* We are after vfork here! */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001597 /* move network socket to stdin */
1598 xmove_fd(s, STDIN_FILENO);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001599 /* discard output */
1600 close(STDOUT_FILENO);
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001601 xopen(bb_dev_null, O_WRONLY);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001602 /* no error messages please... */
1603 xdup2(STDOUT_FILENO, STDERR_FILENO);
1604 BB_EXECVP("cat", (char**)cat_args);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001605 /* on failure we return to main, which does exit(EXIT_FAILURE) */
Denys Vlasenkod4e4fdb2017-07-03 21:31:16 +02001606# endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001607}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001608/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001609static void FAST_FUNC discard_dg(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001610{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001611 /* dgram builtins are non-forking - DONT BLOCK! */
1612 recv(s, line, LINE_SIZE, MSG_DONTWAIT);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001613}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001614#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DISCARD */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001615
1616
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001617#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Glenn L McGrath06e95652003-02-09 06:51:14 +00001618#define LINESIZ 72
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001619static void init_ring(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001620{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001621 int i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001622
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001623 end_ring = ring;
Denys Vlasenko8684cbb2009-11-18 11:34:43 +01001624 for (i = ' '; i < 127; i++)
1625 *end_ring++ = i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001626}
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001627/* Character generator. MMU arches only. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001628/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001629static void FAST_FUNC chargen_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001630{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001631 char *rs;
1632 int len;
1633 char text[LINESIZ + 2];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001634
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001635 if (!end_ring) {
1636 init_ring();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001637 rs = ring;
1638 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001639
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001640 text[LINESIZ] = '\r';
1641 text[LINESIZ + 1] = '\n';
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001642 rs = ring;
1643 for (;;) {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001644 len = end_ring - rs;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001645 if (len >= LINESIZ)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001646 memmove(text, rs, LINESIZ);
1647 else {
1648 memmove(text, rs, len);
1649 memmove(text + len, ring, LINESIZ - len);
1650 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001651 if (++rs == end_ring)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001652 rs = ring;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001653 xwrite(s, text, sizeof(text));
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001654 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001655}
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001656/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001657static void FAST_FUNC chargen_dg(int s, servtab_t *sep)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001658{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001659 int len;
1660 char text[LINESIZ + 2];
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001661 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1662
1663 /* Eat UDP packet which started it all */
1664 /* dgram builtins are non-forking - DONT BLOCK! */
1665 lsa->len = sep->se_lsa->len;
1666 if (recvfrom(s, text, sizeof(text), MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1667 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001668
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001669 if (!end_ring) {
1670 init_ring();
1671 ring_pos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001672 }
1673
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001674 len = end_ring - ring_pos;
Denis Vlasenko512a5452007-09-24 10:41:30 +00001675 if (len >= LINESIZ)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001676 memmove(text, ring_pos, LINESIZ);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001677 else {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001678 memmove(text, ring_pos, len);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001679 memmove(text + len, ring, LINESIZ - len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001680 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001681 if (++ring_pos == end_ring)
1682 ring_pos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001683 text[LINESIZ] = '\r';
1684 text[LINESIZ + 1] = '\n';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001685 sendto(s, text, sizeof(text), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001686}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001687#endif /* FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001688
1689
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001690#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001691/*
1692 * Return a machine readable date and time, in the form of the
1693 * number of seconds since midnight, Jan 1, 1900. Since gettimeofday
1694 * returns the number of seconds since midnight, Jan 1, 1970,
1695 * we must add 2208988800 seconds to this figure to make up for
1696 * some seventy years Bell Labs was asleep.
1697 */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001698static uint32_t machtime(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001699{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001700 struct timeval tv;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001701
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001702 gettimeofday(&tv, NULL);
Denys Vlasenko179e88b2017-01-20 16:03:48 +01001703 return htonl((uint32_t)(tv.tv_sec + 2208988800U));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001704}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001705/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001706static void FAST_FUNC machtime_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001707{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001708 uint32_t result;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001709
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001710 result = machtime();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001711 full_write(s, &result, sizeof(result));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001712}
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001713static void FAST_FUNC machtime_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001714{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001715 uint32_t result;
1716 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001717
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001718 lsa->len = sep->se_lsa->len;
1719 if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001720 return;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001721
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001722 result = machtime();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001723 sendto(s, &result, sizeof(result), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001724}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001725#endif /* FEATURE_INETD_SUPPORT_BUILTIN_TIME */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001726
1727
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001728#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001729/* Return human-readable time of day */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001730/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001731static void FAST_FUNC daytime_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001732{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001733 time_t t;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001734
Denys Vlasenko54e95852015-02-18 13:47:27 +01001735 time(&t);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001736 fdprintf(s, "%.24s\r\n", ctime(&t));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001737}
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001738static void FAST_FUNC daytime_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001739{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001740 time_t t;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001741 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1742
1743 lsa->len = sep->se_lsa->len;
1744 if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1745 return;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001746
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001747 t = time(NULL);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001748 sprintf(line, "%.24s\r\n", ctime(&t));
1749 sendto(s, line, strlen(line), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001750}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001751#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME */