blob: 4d0ab2e0d300d859c8fe0023a329eeb15ca610f9 [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
157//config: bool "inetd"
158//config: default y
159//config: select FEATURE_SYSLOG
160//config: help
161//config: Internet superserver daemon
162//config:
163//config:config FEATURE_INETD_SUPPORT_BUILTIN_ECHO
164//config: bool "Support echo service"
165//config: default y
166//config: depends on INETD
167//config: help
168//config: Echo received data internal inetd service
169//config:
170//config:config FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
171//config: bool "Support discard service"
172//config: default y
173//config: depends on INETD
174//config: help
175//config: Internet /dev/null internal inetd service
176//config:
177//config:config FEATURE_INETD_SUPPORT_BUILTIN_TIME
178//config: bool "Support time service"
179//config: default y
180//config: depends on INETD
181//config: help
182//config: Return 32 bit time since 1900 internal inetd service
183//config:
184//config:config FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
185//config: bool "Support daytime service"
186//config: default y
187//config: depends on INETD
188//config: help
189//config: Return human-readable time internal inetd service
190//config:
191//config:config FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
192//config: bool "Support chargen service"
193//config: default y
194//config: depends on INETD
195//config: help
196//config: Familiar character generator internal inetd service
197//config:
198//config:config FEATURE_INETD_RPC
199//config: bool "Support RPC services"
200//config: default n # very rarely used, and needs Sun RPC support in libc
201//config: depends on INETD
202//config: select FEATURE_HAVE_RPC
203//config: help
204//config: Support Sun-RPC based services
205
206//applet:IF_INETD(APPLET(inetd, BB_DIR_USR_SBIN, BB_SUID_DROP))
207
208//kbuild:lib-$(CONFIG_INETD) += inetd.o
Glenn L McGrath06e95652003-02-09 06:51:14 +0000209
Pere Orga5bc8c002011-04-11 03:29:49 +0200210//usage:#define inetd_trivial_usage
211//usage: "[-fe] [-q N] [-R N] [CONFFILE]"
212//usage:#define inetd_full_usage "\n\n"
213//usage: "Listen for network connections and launch programs\n"
Pere Orga5bc8c002011-04-11 03:29:49 +0200214//usage: "\n -f Run in foreground"
215//usage: "\n -e Log to stderr"
Denys Vlasenko66426762011-06-05 03:58:28 +0200216//usage: "\n -q N Socket listen queue (default: 128)"
Pere Orga5bc8c002011-04-11 03:29:49 +0200217//usage: "\n -R N Pause services after N connects/min"
218//usage: "\n (default: 0 - disabled)"
219
Rob Landleyd921b2e2006-08-03 15:41:12 +0000220#include <syslog.h>
Mike Frysingerc5fe9f72012-07-05 23:19:09 -0400221#include <sys/resource.h> /* setrlimit */
Tias Guns64f763b2012-06-10 14:19:01 +0200222#include <sys/socket.h> /* un.h may need this */
Rob Landley099ed502006-08-28 09:41:49 +0000223#include <sys/un.h>
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000224
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000225#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200226#include "common_bufsiz.h"
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000227
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000228#if ENABLE_FEATURE_INETD_RPC
Bernhard Reutner-Fischer901a53b2011-06-15 09:38:43 +0200229# if defined(__UCLIBC__) && ! defined(__UCLIBC_HAS_RPC__)
230# error "You need to build uClibc with UCLIBC_HAS_RPC for NFS support"
231# endif
232# include <rpc/rpc.h>
233# include <rpc/pmap_clnt.h>
Glenn L McGrathff6ec8a2004-01-17 02:47:45 +0000234#endif
235
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000236#if !BB_MMU
237/* stream version of chargen is forking but not execing,
238 * can't do that (easily) on NOMMU */
239#undef ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
240#define ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN 0
241#endif
242
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000243#define CNT_INTERVAL 60 /* servers in CNT_INTERVAL sec. */
244#define RETRYTIME 60 /* retry after bind or server fail */
245
246// TODO: explain, or get rid of setrlimit games
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000247
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000248#ifndef RLIMIT_NOFILE
249#define RLIMIT_NOFILE RLIMIT_OFILE
250#endif
251
252#ifndef OPEN_MAX
253#define OPEN_MAX 64
254#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000255
256/* Reserve some descriptors, 3 stdio + at least: 1 log, 1 conf. file */
Denis Vlasenkof8138d12007-01-11 23:26:13 +0000257#define FD_MARGIN 8
Glenn L McGrath06e95652003-02-09 06:51:14 +0000258
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000259#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD \
260 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO \
261 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN \
262 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME \
263 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
264# define INETD_BUILTINS_ENABLED
Glenn L McGrath06e95652003-02-09 06:51:14 +0000265#endif
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000266
Denis Vlasenko512a5452007-09-24 10:41:30 +0000267typedef struct servtab_t {
Denis Vlasenko39824072007-09-26 10:46:18 +0000268 /* The most frequently referenced one: */
269 int se_fd; /* open descriptor */
270 /* NB: 'biggest fields last' saves on code size (~250 bytes) */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000271 /* [addr:]service socktype proto wait user[:group] prog [args] */
272 char *se_local_hostname; /* addr to listen on */
273 char *se_service; /* "80" or "www" or "mount/2[-3]" */
274 /* socktype is in se_socktype */ /* "stream" "dgram" "raw" "rdm" "seqpacket" */
275 char *se_proto; /* "unix" or "[rpc/]tcp[6]" */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000276#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000277 int se_rpcprog; /* rpc program number */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000278 int se_rpcver_lo; /* rpc program lowest version */
279 int se_rpcver_hi; /* rpc program highest version */
280#define is_rpc_service(sep) ((sep)->se_rpcver_lo != 0)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000281#else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000282#define is_rpc_service(sep) 0
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000283#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000284 pid_t se_wait; /* 0:"nowait", 1:"wait", >1:"wait" */
285 /* and waiting for this pid */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000286 socktype_t se_socktype; /* SOCK_STREAM/DGRAM/RDM/... */
287 family_t se_family; /* AF_UNIX/INET[6] */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000288 /* se_proto_no is used by RPC code only... hmm */
289 smallint se_proto_no; /* IPPROTO_TCP/UDP, n/a for AF_UNIX */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000290 smallint se_checked; /* looked at during merge */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000291 unsigned se_max; /* allowed instances per minute */
292 unsigned se_count; /* number started since se_time */
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000293 unsigned se_time; /* when we started counting */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000294 char *se_user; /* user name to run as */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000295 char *se_group; /* group name to run as, can be NULL */
296#ifdef INETD_BUILTINS_ENABLED
297 const struct builtin *se_builtin; /* if built-in, description */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000298#endif
Denis Vlasenko39824072007-09-26 10:46:18 +0000299 struct servtab_t *se_next;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000300 len_and_sockaddr *se_lsa;
301 char *se_program; /* server program */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000302#define MAXARGV 20
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000303 char *se_argv[MAXARGV + 1]; /* program arguments */
Glenn L McGrath03a06432004-02-18 13:19:58 +0000304} servtab_t;
305
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000306#ifdef INETD_BUILTINS_ENABLED
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000307/* Echo received data */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000308#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200309static void FAST_FUNC echo_stream(int, servtab_t *);
310static void FAST_FUNC echo_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000311#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000312/* Internet /dev/null */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000313#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200314static void FAST_FUNC discard_stream(int, servtab_t *);
315static void FAST_FUNC discard_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000316#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000317/* Return 32 bit time since 1900 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000318#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200319static void FAST_FUNC machtime_stream(int, servtab_t *);
320static void FAST_FUNC machtime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000321#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000322/* Return human-readable time */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000323#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200324static void FAST_FUNC daytime_stream(int, servtab_t *);
325static void FAST_FUNC daytime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000326#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000327/* Familiar character generator */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000328#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200329static void FAST_FUNC chargen_stream(int, servtab_t *);
330static void FAST_FUNC chargen_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000331#endif
332
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000333struct builtin {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000334 /* NB: not necessarily NUL terminated */
335 char bi_service7[7]; /* internally provided service name */
336 uint8_t bi_fork; /* 1 if stream fn should run in child */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200337 void (*bi_stream_fn)(int, servtab_t *) FAST_FUNC;
338 void (*bi_dgram_fn)(int, servtab_t *) FAST_FUNC;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000339};
340
Bernhard Reutner-Fischera4acf662006-04-10 12:26:47 +0000341static const struct builtin builtins[] = {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000342#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000343 { "echo", 1, echo_stream, echo_dg },
Glenn L McGrath06e95652003-02-09 06:51:14 +0000344#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000345#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000346 { "discard", 1, discard_stream, discard_dg },
Glenn L McGrath06e95652003-02-09 06:51:14 +0000347#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000348#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000349 { "chargen", 1, chargen_stream, chargen_dg },
Glenn L McGrath06e95652003-02-09 06:51:14 +0000350#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000351#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000352 { "time", 0, machtime_stream, machtime_dg },
353#endif
354#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000355 { "daytime", 0, daytime_stream, daytime_dg },
356#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000357};
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000358#endif /* INETD_BUILTINS_ENABLED */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000359
Denis Vlasenko512a5452007-09-24 10:41:30 +0000360struct globals {
361 rlim_t rlim_ofile_cur;
362 struct rlimit rlim_ofile;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000363 servtab_t *serv_list;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000364 int global_queuelen;
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200365 int maxsock; /* max fd# in allsock, -1: unknown */
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000366 /* whenever maxsock grows, prev_maxsock is set to new maxsock,
367 * but if maxsock is set to -1, prev_maxsock is not changed */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000368 int prev_maxsock;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000369 unsigned max_concurrency;
370 smallint alarm_armed;
371 uid_t real_uid; /* user ID who ran us */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000372 const char *config_filename;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000373 parser_t *parser;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000374 char *default_local_hostname;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000375#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000376 char *end_ring;
377 char *ring_pos;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000378 char ring[128];
379#endif
380 fd_set allsock;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000381 /* Used in next_line(), and as scratch read buffer */
382 char line[256]; /* _at least_ 256, see LINE_SIZE */
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100383} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200384#define G (*(struct globals*)bb_common_bufsiz1)
Denis Vlasenko512a5452007-09-24 10:41:30 +0000385enum { LINE_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line) };
Denis Vlasenko512a5452007-09-24 10:41:30 +0000386#define rlim_ofile_cur (G.rlim_ofile_cur )
387#define rlim_ofile (G.rlim_ofile )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000388#define serv_list (G.serv_list )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000389#define global_queuelen (G.global_queuelen)
Denis Vlasenko512a5452007-09-24 10:41:30 +0000390#define maxsock (G.maxsock )
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000391#define prev_maxsock (G.prev_maxsock )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000392#define max_concurrency (G.max_concurrency)
393#define alarm_armed (G.alarm_armed )
394#define real_uid (G.real_uid )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000395#define config_filename (G.config_filename)
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000396#define parser (G.parser )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000397#define default_local_hostname (G.default_local_hostname)
398#define first_ps_byte (G.first_ps_byte )
399#define last_ps_byte (G.last_ps_byte )
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000400#define end_ring (G.end_ring )
401#define ring_pos (G.ring_pos )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000402#define ring (G.ring )
403#define allsock (G.allsock )
404#define line (G.line )
405#define INIT_G() do { \
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200406 setup_common_bufsiz(); \
Denys Vlasenko7b85ec32015-10-13 17:17:34 +0200407 BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
Denis Vlasenko512a5452007-09-24 10:41:30 +0000408 rlim_ofile_cur = OPEN_MAX; \
409 global_queuelen = 128; \
410 config_filename = "/etc/inetd.conf"; \
411} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000412
Denys Vlasenko223b9412011-09-11 16:48:21 +0200413#if 1
414# define dbg(...) ((void)0)
415#else
416# define dbg(...) \
417do { \
418 int dbg_fd = open("inetd_debug.log", O_WRONLY | O_CREAT | O_APPEND, 0666); \
419 if (dbg_fd >= 0) { \
420 fdprintf(dbg_fd, "%d: ", getpid()); \
421 fdprintf(dbg_fd, __VA_ARGS__); \
422 close(dbg_fd); \
423 } \
424} while (0)
425#endif
426
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000427static void maybe_close(int fd)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000428{
Denys Vlasenko223b9412011-09-11 16:48:21 +0200429 if (fd >= 0) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000430 close(fd);
Denys Vlasenko223b9412011-09-11 16:48:21 +0200431 dbg("closed fd:%d\n", fd);
432 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000433}
434
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000435// TODO: move to libbb?
436static len_and_sockaddr *xzalloc_lsa(int family)
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000437{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000438 len_and_sockaddr *lsa;
439 int sz;
440
441 sz = sizeof(struct sockaddr_in);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000442 if (family == AF_UNIX)
443 sz = sizeof(struct sockaddr_un);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000444#if ENABLE_FEATURE_IPV6
445 if (family == AF_INET6)
446 sz = sizeof(struct sockaddr_in6);
447#endif
448 lsa = xzalloc(LSA_LEN_SIZE + sz);
449 lsa->len = sz;
450 lsa->u.sa.sa_family = family;
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000451 return lsa;
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000452}
453
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000454static void rearm_alarm(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000455{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000456 if (!alarm_armed) {
457 alarm_armed = 1;
458 alarm(RETRYTIME);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000459 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000460}
461
462static void block_CHLD_HUP_ALRM(sigset_t *m)
463{
464 sigemptyset(m);
465 sigaddset(m, SIGCHLD);
466 sigaddset(m, SIGHUP);
467 sigaddset(m, SIGALRM);
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000468 sigprocmask(SIG_BLOCK, m, m); /* old sigmask is stored in m */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000469}
470
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000471static void restore_sigmask(sigset_t *m)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000472{
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000473 sigprocmask(SIG_SETMASK, m, NULL);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000474}
Glenn L McGrath53766c42004-01-18 08:58:06 +0000475
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000476#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000477static void register_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000478{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000479 int n;
480 struct sockaddr_in ir_sin;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000481 socklen_t size;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000482
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000483 size = sizeof(ir_sin);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000484 if (getsockname(sep->se_fd, (struct sockaddr *) &ir_sin, &size) < 0) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000485 bb_perror_msg("getsockname");
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000486 return;
487 }
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000488
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000489 for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) {
490 pmap_unset(sep->se_rpcprog, n);
491 if (!pmap_set(sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port)))
492 bb_perror_msg("%s %s: pmap_set(%u,%u,%u,%u)",
493 sep->se_service, sep->se_proto,
494 sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port));
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000495 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000496}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000497
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000498static void unregister_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000499{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000500 int n;
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000501
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000502 for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000503 if (!pmap_unset(sep->se_rpcprog, n))
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000504 bb_perror_msg("pmap_unset(%u,%u)", sep->se_rpcprog, n);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000505 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000506}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000507#endif /* FEATURE_INETD_RPC */
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000508
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000509static void bump_nofile(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000510{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000511 enum { FD_CHUNK = 32 };
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000512 struct rlimit rl;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000513
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000514 /* Never fails under Linux (except if you pass it bad arguments) */
515 getrlimit(RLIMIT_NOFILE, &rl);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000516 rl.rlim_cur = MIN(rl.rlim_max, rl.rlim_cur + FD_CHUNK);
517 rl.rlim_cur = MIN(FD_SETSIZE, rl.rlim_cur + FD_CHUNK);
518 if (rl.rlim_cur <= rlim_ofile_cur) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000519 bb_error_msg("can't extend file limit, max = %d",
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000520 (int) rl.rlim_cur);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000521 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000522 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000523
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000524 if (setrlimit(RLIMIT_NOFILE, &rl) < 0) {
525 bb_perror_msg("setrlimit");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000526 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000527 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000528
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000529 rlim_ofile_cur = rl.rlim_cur;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000530}
531
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000532static void remove_fd_from_set(int fd)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000533{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000534 if (fd >= 0) {
535 FD_CLR(fd, &allsock);
Denys Vlasenko223b9412011-09-11 16:48:21 +0200536 dbg("stopped listening on fd:%d\n", fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000537 maxsock = -1;
Denys Vlasenko223b9412011-09-11 16:48:21 +0200538 dbg("maxsock:%d\n", maxsock);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000539 }
540}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000541
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000542static void add_fd_to_set(int fd)
543{
544 if (fd >= 0) {
545 FD_SET(fd, &allsock);
Denys Vlasenko223b9412011-09-11 16:48:21 +0200546 dbg("started listening on fd:%d\n", fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000547 if (maxsock >= 0 && fd > maxsock) {
548 prev_maxsock = maxsock = fd;
Denys Vlasenko223b9412011-09-11 16:48:21 +0200549 dbg("maxsock:%d\n", maxsock);
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000550 if ((rlim_t)fd > rlim_ofile_cur - FD_MARGIN)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000551 bump_nofile();
552 }
553 }
554}
555
556static void recalculate_maxsock(void)
557{
558 int fd = 0;
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000559
560 /* We may have no services, in this case maxsock should still be >= 0
561 * (code elsewhere is not happy with maxsock == -1) */
562 maxsock = 0;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000563 while (fd <= prev_maxsock) {
564 if (FD_ISSET(fd, &allsock))
565 maxsock = fd;
566 fd++;
567 }
Denys Vlasenko223b9412011-09-11 16:48:21 +0200568 dbg("recalculated maxsock:%d\n", maxsock);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000569 prev_maxsock = maxsock;
570 if ((rlim_t)maxsock > rlim_ofile_cur - FD_MARGIN)
571 bump_nofile();
572}
573
574static void prepare_socket_fd(servtab_t *sep)
575{
576 int r, fd;
577
578 fd = socket(sep->se_family, sep->se_socktype, 0);
579 if (fd < 0) {
580 bb_perror_msg("socket");
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000581 return;
582 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000583 setsockopt_reuseaddr(fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000584
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000585#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000586 if (is_rpc_service(sep)) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000587 struct passwd *pwd;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000588
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000589 /* zero out the port for all RPC services; let bind()
590 * find one. */
Denys Vlasenkoca183112011-04-07 17:52:20 +0200591 set_nport(&sep->se_lsa->u.sa, 0);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000592
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000593 /* for RPC services, attempt to use a reserved port
594 * if they are going to be running as root. */
595 if (real_uid == 0 && sep->se_family == AF_INET
596 && (pwd = getpwnam(sep->se_user)) != NULL
597 && pwd->pw_uid == 0
598 ) {
599 r = bindresvport(fd, &sep->se_lsa->u.sin);
600 } else {
601 r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
602 }
603 if (r == 0) {
604 int saveerrno = errno;
605 /* update lsa with port# */
606 getsockname(fd, &sep->se_lsa->u.sa, &sep->se_lsa->len);
607 errno = saveerrno;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000608 }
609 } else
Glenn L McGrath53766c42004-01-18 08:58:06 +0000610#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000611 {
612 if (sep->se_family == AF_UNIX) {
613 struct sockaddr_un *sun;
614 sun = (struct sockaddr_un*)&(sep->se_lsa->u.sa);
615 unlink(sun->sun_path);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000616 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000617 r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
618 }
619 if (r < 0) {
620 bb_perror_msg("%s/%s: bind",
621 sep->se_service, sep->se_proto);
622 close(fd);
623 rearm_alarm();
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000624 return;
Glenn L McGrath53766c42004-01-18 08:58:06 +0000625 }
Denys Vlasenko223b9412011-09-11 16:48:21 +0200626
627 if (sep->se_socktype == SOCK_STREAM) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000628 listen(fd, global_queuelen);
Denys Vlasenko223b9412011-09-11 16:48:21 +0200629 dbg("new sep->se_fd:%d (stream)\n", fd);
630 } else {
631 dbg("new sep->se_fd:%d (!stream)\n", fd);
632 }
Glenn L McGrath53766c42004-01-18 08:58:06 +0000633
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000634 add_fd_to_set(fd);
635 sep->se_fd = fd;
636}
637
638static int reopen_config_file(void)
639{
640 free(default_local_hostname);
641 default_local_hostname = xstrdup("*");
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000642 if (parser != NULL)
643 config_close(parser);
644 parser = config_open(config_filename);
645 return (parser != NULL);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000646}
647
648static void close_config_file(void)
649{
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000650 if (parser) {
651 config_close(parser);
652 parser = NULL;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000653 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000654}
655
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000656static void free_servtab_strings(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000657{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000658 int i;
659
660 free(cp->se_local_hostname);
661 free(cp->se_service);
662 free(cp->se_proto);
663 free(cp->se_user);
664 free(cp->se_group);
665 free(cp->se_lsa); /* not a string in fact */
666 free(cp->se_program);
667 for (i = 0; i < MAXARGV; i++)
668 free(cp->se_argv[i]);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000669}
670
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000671static servtab_t *new_servtab(void)
672{
673 servtab_t *newtab = xzalloc(sizeof(servtab_t));
674 newtab->se_fd = -1; /* paranoia */
675 return newtab;
676}
677
678static servtab_t *dup_servtab(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000679{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000680 servtab_t *newtab;
681 int argc;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000682
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000683 newtab = new_servtab();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000684 *newtab = *sep; /* struct copy */
685 /* deep-copying strings */
686 newtab->se_service = xstrdup(newtab->se_service);
687 newtab->se_proto = xstrdup(newtab->se_proto);
688 newtab->se_user = xstrdup(newtab->se_user);
689 newtab->se_group = xstrdup(newtab->se_group);
690 newtab->se_program = xstrdup(newtab->se_program);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000691 for (argc = 0; argc <= MAXARGV; argc++)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000692 newtab->se_argv[argc] = xstrdup(newtab->se_argv[argc]);
693 /* NB: se_fd, se_hostaddr and se_next are always
694 * overwrittend by callers, so we don't bother resetting them
695 * to NULL/0/-1 etc */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000696
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000697 return newtab;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000698}
699
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000700/* gcc generates much more code if this is inlined */
Denys Vlasenko2ec4f442015-03-03 13:10:30 +0100701static NOINLINE servtab_t *parse_one_line(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000702{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000703 int argc;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000704 char *token[6+MAXARGV];
705 char *p, *arg;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000706 char *hostdelim;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000707 servtab_t *sep;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000708 servtab_t *nsep;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000709 new:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000710 sep = new_servtab();
Denis Vlasenko13858992006-10-08 12:49:22 +0000711 more:
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000712 argc = config_read(parser, token, 6+MAXARGV, 1, "# \t", PARSE_NORMAL);
713 if (!argc) {
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000714 free(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000715 return NULL;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000716 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000717
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000718 /* [host:]service socktype proto wait user[:group] prog [args] */
719 /* Check for "host:...." line */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000720 arg = token[0];
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000721 hostdelim = strrchr(arg, ':');
722 if (hostdelim) {
723 *hostdelim = '\0';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000724 sep->se_local_hostname = xstrdup(arg);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000725 arg = hostdelim + 1;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000726 if (*arg == '\0' && argc == 1) {
727 /* Line has just "host:", change the
728 * default host for the following lines. */
729 free(default_local_hostname);
730 default_local_hostname = sep->se_local_hostname;
Denys Vlasenko2ec4f442015-03-03 13:10:30 +0100731 /*sep->se_local_hostname = NULL; - redundant */
732 /* (we'll overwrite this field anyway) */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000733 goto more;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000734 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000735 } else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000736 sep->se_local_hostname = xstrdup(default_local_hostname);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000737
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000738 /* service socktype proto wait user[:group] prog [args] */
739 sep->se_service = xstrdup(arg);
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000740
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000741 /* socktype proto wait user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000742 if (argc < 6) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000743 parse_err:
744 bb_error_msg("parse error on line %u, line is ignored",
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000745 parser->lineno);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000746 /* Just "goto more" can make sep to carry over e.g.
747 * "rpc"-ness (by having se_rpcver_lo != 0).
748 * We will be more paranoid: */
Denys Vlasenko2ec4f442015-03-03 13:10:30 +0100749 free_servtab_strings(sep);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000750 free(sep);
751 goto new;
752 }
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000753
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000754 {
Denis Vlasenkoeb4e5ec2009-04-22 23:25:48 +0000755 static const int8_t SOCK_xxx[] ALIGN1 = {
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000756 -1,
757 SOCK_STREAM, SOCK_DGRAM, SOCK_RDM,
758 SOCK_SEQPACKET, SOCK_RAW
759 };
760 sep->se_socktype = SOCK_xxx[1 + index_in_strings(
761 "stream""\0" "dgram""\0" "rdm""\0"
762 "seqpacket""\0" "raw""\0"
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000763 , token[1])];
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000764 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000765
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000766 /* {unix,[rpc/]{tcp,udp}[6]} wait user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000767 sep->se_proto = arg = xstrdup(token[2]);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000768 if (strcmp(arg, "unix") == 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000769 sep->se_family = AF_UNIX;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000770 } else {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000771 char *six;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000772 sep->se_family = AF_INET;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000773 six = last_char_is(arg, '6');
774 if (six) {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000775#if ENABLE_FEATURE_IPV6
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000776 *six = '\0';
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000777 sep->se_family = AF_INET6;
778#else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000779 bb_error_msg("%s: no support for IPv6", sep->se_proto);
780 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000781#endif
782 }
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100783 if (is_prefixed_with(arg, "rpc/")) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000784#if ENABLE_FEATURE_INETD_RPC
785 unsigned n;
786 arg += 4;
787 p = strchr(sep->se_service, '/');
788 if (p == NULL) {
789 bb_error_msg("no rpc version: '%s'", sep->se_service);
790 goto parse_err;
791 }
792 *p++ = '\0';
793 n = bb_strtou(p, &p, 10);
794 if (n > INT_MAX) {
795 bad_ver_spec:
796 bb_error_msg("bad rpc version");
797 goto parse_err;
798 }
799 sep->se_rpcver_lo = sep->se_rpcver_hi = n;
800 if (*p == '-') {
801 p++;
802 n = bb_strtou(p, &p, 10);
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000803 if (n > INT_MAX || (int)n < sep->se_rpcver_lo)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000804 goto bad_ver_spec;
805 sep->se_rpcver_hi = n;
806 }
807 if (*p != '\0')
808 goto bad_ver_spec;
809#else
810 bb_error_msg("no support for rpc services");
811 goto parse_err;
812#endif
813 }
814 /* we don't really need getprotobyname()! */
815 if (strcmp(arg, "tcp") == 0)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000816 sep->se_proto_no = IPPROTO_TCP; /* = 6 */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000817 if (strcmp(arg, "udp") == 0)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000818 sep->se_proto_no = IPPROTO_UDP; /* = 17 */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000819 if (six)
820 *six = '6';
821 if (!sep->se_proto_no) /* not tcp/udp?? */
822 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000823 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000824
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000825 /* [no]wait[.max] user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000826 arg = token[3];
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000827 sep->se_max = max_concurrency;
828 p = strchr(arg, '.');
829 if (p) {
830 *p++ = '\0';
831 sep->se_max = bb_strtou(p, NULL, 10);
832 if (errno)
833 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000834 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000835 sep->se_wait = (arg[0] != 'n' || arg[1] != 'o');
836 if (!sep->se_wait) /* "no" seen */
837 arg += 2;
838 if (strcmp(arg, "wait") != 0)
839 goto parse_err;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000840
841 /* user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000842 sep->se_user = xstrdup(token[4]);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000843 arg = strchr(sep->se_user, '.');
844 if (arg == NULL)
845 arg = strchr(sep->se_user, ':');
846 if (arg) {
847 *arg++ = '\0';
848 sep->se_group = xstrdup(arg);
849 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000850
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000851 /* prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000852 sep->se_program = xstrdup(token[5]);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000853#ifdef INETD_BUILTINS_ENABLED
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000854 if (strcmp(sep->se_program, "internal") == 0
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000855 && strlen(sep->se_service) <= 7
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000856 && (sep->se_socktype == SOCK_STREAM
857 || sep->se_socktype == SOCK_DGRAM)
858 ) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000859 unsigned i;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000860 for (i = 0; i < ARRAY_SIZE(builtins); i++)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000861 if (strncmp(builtins[i].bi_service7, sep->se_service, 7) == 0)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000862 goto found_bi;
863 bb_error_msg("unknown internal service %s", sep->se_service);
864 goto parse_err;
865 found_bi:
866 sep->se_builtin = &builtins[i];
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000867 /* stream builtins must be "nowait", dgram must be "wait" */
868 if (sep->se_wait != (sep->se_socktype == SOCK_DGRAM))
869 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000870 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000871#endif
872 argc = 0;
Denys Vlasenko2ec4f442015-03-03 13:10:30 +0100873 while (argc < MAXARGV && (arg = token[6+argc]) != NULL)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000874 sep->se_argv[argc++] = xstrdup(arg);
Mike Frysingera945f612010-11-22 04:57:37 +0100875 /* Some inetd.conf files have no argv's, not even argv[0].
876 * Fix them up.
877 * (Technically, programs can be execed with argv[0] = NULL,
878 * but many programs do not like that at all) */
879 if (argc == 0)
880 sep->se_argv[0] = xstrdup(sep->se_program);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000881
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000882 /* catch mixups. "<service> stream udp ..." == wtf */
883 if (sep->se_socktype == SOCK_STREAM) {
884 if (sep->se_proto_no == IPPROTO_UDP)
885 goto parse_err;
886 }
887 if (sep->se_socktype == SOCK_DGRAM) {
888 if (sep->se_proto_no == IPPROTO_TCP)
889 goto parse_err;
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000890 }
891
Denys Vlasenko066e76b2016-03-30 16:20:28 +0200892 //bb_error_msg(
893 // "ENTRY[%s][%s][%s][%d][%d][%d][%d][%d][%s][%s][%s]",
894 // sep->se_local_hostname, sep->se_service, sep->se_proto, sep->se_wait, sep->se_proto_no,
895 // 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 +0000896
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000897 /* check if the hostname specifier is a comma separated list
898 * of hostnames. we'll make new entries for each address. */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000899 while ((hostdelim = strrchr(sep->se_local_hostname, ',')) != NULL) {
900 nsep = dup_servtab(sep);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000901 /* NUL terminate the hostname field of the existing entry,
902 * and make a dup for the new entry. */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000903 *hostdelim++ = '\0';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000904 nsep->se_local_hostname = xstrdup(hostdelim);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000905 nsep->se_next = sep->se_next;
906 sep->se_next = nsep;
907 }
908
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000909 /* was doing it here: */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000910 /* DNS resolution, create copies for each IP address */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000911 /* IPv6-ization destroyed it :( */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000912
913 return sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000914}
915
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000916static servtab_t *insert_in_servlist(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000917{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000918 servtab_t *sep;
919 sigset_t omask;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000920
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000921 sep = new_servtab();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000922 *sep = *cp; /* struct copy */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000923 sep->se_fd = -1;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000924#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000925 sep->se_rpcprog = -1;
926#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000927 block_CHLD_HUP_ALRM(&omask);
928 sep->se_next = serv_list;
929 serv_list = sep;
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000930 restore_sigmask(&omask);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000931 return sep;
932}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000933
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000934static int same_serv_addr_proto(servtab_t *old, servtab_t *new)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000935{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000936 if (strcmp(old->se_local_hostname, new->se_local_hostname) != 0)
937 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000938 if (strcmp(old->se_service, new->se_service) != 0)
939 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000940 if (strcmp(old->se_proto, new->se_proto) != 0)
941 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000942 return 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000943}
944
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000945static void reread_config_file(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000946{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000947 servtab_t *sep, *cp, **sepp;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000948 len_and_sockaddr *lsa;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000949 sigset_t omask;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000950 unsigned n;
951 uint16_t port;
Denis Vlasenkof54e62a2008-07-22 20:57:28 +0000952 int save_errno = errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000953
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000954 if (!reopen_config_file())
Denis Vlasenkof54e62a2008-07-22 20:57:28 +0000955 goto ret;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000956 for (sep = serv_list; sep; sep = sep->se_next)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000957 sep->se_checked = 0;
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000958
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000959 goto first_line;
960 while (1) {
961 if (cp == NULL) {
962 first_line:
963 cp = parse_one_line();
964 if (cp == NULL)
965 break;
966 }
967 for (sep = serv_list; sep; sep = sep->se_next)
968 if (same_serv_addr_proto(sep, cp))
969 goto equal_servtab;
970 /* not an "equal" servtab */
971 sep = insert_in_servlist(cp);
972 goto after_check;
973 equal_servtab:
974 {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000975 int i;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000976
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000977 block_CHLD_HUP_ALRM(&omask);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000978#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000979 if (is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000980 unregister_rpc(sep);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000981 sep->se_rpcver_lo = cp->se_rpcver_lo;
982 sep->se_rpcver_hi = cp->se_rpcver_hi;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000983#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000984 if (cp->se_wait == 0) {
985 /* New config says "nowait". If old one
986 * was "wait", we currently may be waiting
987 * for a child (and not accepting connects).
988 * Stop waiting, start listening again.
989 * (if it's not true, this op is harmless) */
990 add_fd_to_set(sep->se_fd);
991 }
992 sep->se_wait = cp->se_wait;
993 sep->se_max = cp->se_max;
994 /* string fields need more love - we don't want to leak them */
995#define SWAP(type, a, b) do { type c = (type)a; a = (type)b; b = (type)c; } while (0)
996 SWAP(char*, sep->se_user, cp->se_user);
997 SWAP(char*, sep->se_group, cp->se_group);
998 SWAP(char*, sep->se_program, cp->se_program);
999 for (i = 0; i < MAXARGV; i++)
1000 SWAP(char*, sep->se_argv[i], cp->se_argv[i]);
1001#undef SWAP
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001002 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001003 free_servtab_strings(cp);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001004 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001005 after_check:
1006 /* cp->string_fields are consumed by insert_in_servlist()
1007 * or freed at this point, cp itself is not yet freed. */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001008 sep->se_checked = 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001009
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001010 /* create new len_and_sockaddr */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001011 switch (sep->se_family) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001012 struct sockaddr_un *sun;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001013 case AF_UNIX:
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001014 lsa = xzalloc_lsa(AF_UNIX);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001015 sun = (struct sockaddr_un*)&lsa->u.sa;
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001016 safe_strncpy(sun->sun_path, sep->se_service, sizeof(sun->sun_path));
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001017 break;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001018
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001019 default: /* case AF_INET, case AF_INET6 */
1020 n = bb_strtou(sep->se_service, NULL, 10);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001021#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001022 if (is_rpc_service(sep)) {
1023 sep->se_rpcprog = n;
1024 if (errno) { /* se_service is not numeric */
1025 struct rpcent *rp = getrpcbyname(sep->se_service);
1026 if (rp == NULL) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001027 bb_error_msg("%s: unknown rpc service", sep->se_service);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001028 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001029 }
1030 sep->se_rpcprog = rp->r_number;
1031 }
1032 if (sep->se_fd == -1)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001033 prepare_socket_fd(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001034 if (sep->se_fd != -1)
1035 register_rpc(sep);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001036 goto next_cp;
1037 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001038#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001039 /* what port to listen on? */
1040 port = htons(n);
1041 if (errno || n > 0xffff) { /* se_service is not numeric */
1042 char protoname[4];
1043 struct servent *sp;
1044 /* can result only in "tcp" or "udp": */
1045 safe_strncpy(protoname, sep->se_proto, 4);
1046 sp = getservbyname(sep->se_service, protoname);
1047 if (sp == NULL) {
1048 bb_error_msg("%s/%s: unknown service",
1049 sep->se_service, sep->se_proto);
1050 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001051 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001052 port = sp->s_port;
1053 }
1054 if (LONE_CHAR(sep->se_local_hostname, '*')) {
1055 lsa = xzalloc_lsa(sep->se_family);
Denys Vlasenkoca183112011-04-07 17:52:20 +02001056 set_nport(&lsa->u.sa, port);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001057 } else {
1058 lsa = host_and_af2sockaddr(sep->se_local_hostname,
1059 ntohs(port), sep->se_family);
1060 if (!lsa) {
1061 bb_error_msg("%s/%s: unknown host '%s'",
1062 sep->se_service, sep->se_proto,
1063 sep->se_local_hostname);
1064 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001065 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001066 }
1067 break;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001068 } /* end of "switch (sep->se_family)" */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001069
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001070 /* did lsa change? Then close/open */
1071 if (sep->se_lsa == NULL
1072 || lsa->len != sep->se_lsa->len
1073 || memcmp(&lsa->u.sa, &sep->se_lsa->u.sa, lsa->len) != 0
1074 ) {
1075 remove_fd_from_set(sep->se_fd);
1076 maybe_close(sep->se_fd);
1077 free(sep->se_lsa);
1078 sep->se_lsa = lsa;
1079 sep->se_fd = -1;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001080 } else {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001081 free(lsa);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001082 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001083 if (sep->se_fd == -1)
1084 prepare_socket_fd(sep);
1085 next_cp:
1086 sep = cp->se_next;
1087 free(cp);
1088 cp = sep;
1089 } /* end of "while (1) parse lines" */
1090 close_config_file();
1091
1092 /* Purge anything not looked at above - these are stale entries,
1093 * new config file doesnt have them. */
1094 block_CHLD_HUP_ALRM(&omask);
1095 sepp = &serv_list;
Denys Vlasenko223b9412011-09-11 16:48:21 +02001096 while ((sep = *sepp) != NULL) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001097 if (sep->se_checked) {
1098 sepp = &sep->se_next;
1099 continue;
1100 }
1101 *sepp = sep->se_next;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001102 remove_fd_from_set(sep->se_fd);
1103 maybe_close(sep->se_fd);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001104#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001105 if (is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001106 unregister_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001107#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001108 if (sep->se_family == AF_UNIX)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001109 unlink(sep->se_service);
1110 free_servtab_strings(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001111 free(sep);
1112 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001113 restore_sigmask(&omask);
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001114 ret:
1115 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001116}
1117
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001118static void reap_child(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001119{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001120 pid_t pid;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001121 int status;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001122 servtab_t *sep;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001123 int save_errno = errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001124
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001125 for (;;) {
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001126 pid = wait_any_nohang(&status);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001127 if (pid <= 0)
1128 break;
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001129 for (sep = serv_list; sep; sep = sep->se_next) {
1130 if (sep->se_wait != pid)
1131 continue;
1132 /* One of our "wait" services */
1133 if (WIFEXITED(status) && WEXITSTATUS(status))
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001134 bb_error_msg("%s: exit status %u",
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001135 sep->se_program, WEXITSTATUS(status));
1136 else if (WIFSIGNALED(status))
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001137 bb_error_msg("%s: exit signal %u",
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001138 sep->se_program, WTERMSIG(status));
1139 sep->se_wait = 1;
1140 add_fd_to_set(sep->se_fd);
1141 break;
1142 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001143 }
1144 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001145}
1146
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001147static void retry_network_setup(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001148{
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001149 int save_errno = errno;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001150 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001151
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001152 alarm_armed = 0;
1153 for (sep = serv_list; sep; sep = sep->se_next) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001154 if (sep->se_fd == -1) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001155 prepare_socket_fd(sep);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001156#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001157 if (sep->se_fd != -1 && is_rpc_service(sep))
1158 register_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001159#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001160 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001161 }
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001162 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001163}
1164
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001165static void clean_up_and_exit(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001166{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001167 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001168
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001169 /* XXX signal race walking sep list */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001170 for (sep = serv_list; sep; sep = sep->se_next) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001171 if (sep->se_fd == -1)
1172 continue;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001173
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001174 switch (sep->se_family) {
1175 case AF_UNIX:
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001176 unlink(sep->se_service);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001177 break;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001178 default: /* case AF_INET, AF_INET6 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001179#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001180 if (sep->se_wait == 1 && is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001181 unregister_rpc(sep); /* XXX signal race */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001182#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001183 break;
1184 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001185 if (ENABLE_FEATURE_CLEAN_UP)
1186 close(sep->se_fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001187 }
Anthony G. Basile12677ac2012-12-10 14:49:39 -05001188 remove_pidfile(CONFIG_PID_FILE_PATH "/inetd.pid");
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001189 exit(EXIT_SUCCESS);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001190}
1191
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001192int inetd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001193int inetd_main(int argc UNUSED_PARAM, char **argv)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001194{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001195 struct sigaction sa, saved_pipe_handler;
1196 servtab_t *sep, *sep2;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001197 struct passwd *pwd;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001198 struct group *grp = grp; /* for compiler */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001199 int opt;
1200 pid_t pid;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001201 sigset_t omask;
Denis Vlasenko512a5452007-09-24 10:41:30 +00001202
1203 INIT_G();
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001204
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001205 real_uid = getuid();
1206 if (real_uid != 0) /* run by non-root user */
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001207 config_filename = NULL;
Denis Vlasenko5a142022007-03-26 13:20:54 +00001208
Denys Vlasenko237bedd2016-07-06 21:58:02 +02001209 /* -q N, -R N */
1210 opt = getopt32(argv, "R:+feq:+", &max_concurrency, &global_queuelen);
Denis Vlasenko5a142022007-03-26 13:20:54 +00001211 argv += optind;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001212 //argc -= optind;
1213 if (argv[0])
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001214 config_filename = argv[0];
1215 if (config_filename == NULL)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001216 bb_error_msg_and_die("non-root must specify config file");
Denis Vlasenko5a142022007-03-26 13:20:54 +00001217 if (!(opt & 2))
1218 bb_daemonize_or_rexec(0, argv - optind);
1219 else
1220 bb_sanitize_stdio();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001221 if (!(opt & 4)) {
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001222 /* LOG_NDELAY: connect to syslog daemon NOW.
1223 * Otherwise, we may open syslog socket
1224 * in vforked child, making opened fds and syslog()
1225 * internal state inconsistent.
1226 * This was observed to leak file descriptors. */
1227 openlog(applet_name, LOG_PID | LOG_NDELAY, LOG_DAEMON);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001228 logmode = LOGMODE_SYSLOG;
1229 }
Eric Andersen35e643b2003-07-28 07:40:39 +00001230
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001231 if (real_uid == 0) {
1232 /* run by root, ensure groups vector gets trashed */
Denis Vlasenko7a431b32007-01-14 01:29:06 +00001233 gid_t gid = getgid();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001234 setgroups(1, &gid);
1235 }
1236
Anthony G. Basile12677ac2012-12-10 14:49:39 -05001237 write_pidfile(CONFIG_PID_FILE_PATH "/inetd.pid");
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001238
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001239 /* never fails under Linux (except if you pass it bad arguments) */
1240 getrlimit(RLIMIT_NOFILE, &rlim_ofile);
1241 rlim_ofile_cur = rlim_ofile.rlim_cur;
1242 if (rlim_ofile_cur == RLIM_INFINITY) /* ! */
1243 rlim_ofile_cur = OPEN_MAX;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001244
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001245 memset(&sa, 0, sizeof(sa));
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001246 /*sigemptyset(&sa.sa_mask); - memset did it */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001247 sigaddset(&sa.sa_mask, SIGALRM);
1248 sigaddset(&sa.sa_mask, SIGCHLD);
1249 sigaddset(&sa.sa_mask, SIGHUP);
Denys Vlasenkob1ab2832011-05-12 23:05:27 +02001250//FIXME: explain why no SA_RESTART
1251//FIXME: retry_network_setup is unsafe to run in signal handler (many reasons)!
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001252 sa.sa_handler = retry_network_setup;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001253 sigaction_set(SIGALRM, &sa);
Denys Vlasenkob1ab2832011-05-12 23:05:27 +02001254//FIXME: reread_config_file is unsafe to run in signal handler(many reasons)!
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001255 sa.sa_handler = reread_config_file;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001256 sigaction_set(SIGHUP, &sa);
Denys Vlasenkob1ab2832011-05-12 23:05:27 +02001257//FIXME: reap_child is unsafe to run in signal handler (uses stdio)!
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001258 sa.sa_handler = reap_child;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001259 sigaction_set(SIGCHLD, &sa);
Denys Vlasenkob1ab2832011-05-12 23:05:27 +02001260//FIXME: clean_up_and_exit is unsafe to run in signal handler (uses stdio)!
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001261 sa.sa_handler = clean_up_and_exit;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001262 sigaction_set(SIGTERM, &sa);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001263 sa.sa_handler = clean_up_and_exit;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001264 sigaction_set(SIGINT, &sa);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001265 sa.sa_handler = SIG_IGN;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001266 sigaction(SIGPIPE, &sa, &saved_pipe_handler);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001267
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001268 reread_config_file(SIGHUP); /* load config from file */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001269
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001270 for (;;) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001271 int ready_fd_cnt;
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001272 int ctrl, accepted_fd, new_udp_fd;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001273 fd_set readable;
1274
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001275 if (maxsock < 0)
1276 recalculate_maxsock();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001277
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001278 readable = allsock; /* struct copy */
1279 /* if there are no fds to wait on, we will block
Denis Vlasenko4cb576e2008-11-05 11:36:22 +00001280 * until signal wakes us up (maxsock == 0, but readable
1281 * never contains fds 0 and 1...) */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001282 ready_fd_cnt = select(maxsock + 1, &readable, NULL, NULL, NULL);
1283 if (ready_fd_cnt < 0) {
1284 if (errno != EINTR) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001285 bb_perror_msg("select");
1286 sleep(1);
1287 }
Glenn L McGrath82d42db2004-02-18 13:12:53 +00001288 continue;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001289 }
Denys Vlasenko223b9412011-09-11 16:48:21 +02001290 dbg("ready_fd_cnt:%d\n", ready_fd_cnt);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001291
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001292 for (sep = serv_list; ready_fd_cnt && sep; sep = sep->se_next) {
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001293 if (sep->se_fd == -1 || !FD_ISSET(sep->se_fd, &readable))
1294 continue;
1295
Denys Vlasenko223b9412011-09-11 16:48:21 +02001296 dbg("ready fd:%d\n", sep->se_fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001297 ready_fd_cnt--;
1298 ctrl = sep->se_fd;
1299 accepted_fd = -1;
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001300 new_udp_fd = -1;
1301 if (!sep->se_wait) {
1302 if (sep->se_socktype == SOCK_STREAM) {
1303 ctrl = accepted_fd = accept(sep->se_fd, NULL, NULL);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001304 dbg("accepted_fd:%d\n", accepted_fd);
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001305 if (ctrl < 0) {
1306 if (errno != EINTR)
1307 bb_perror_msg("accept (for %s)", sep->se_service);
1308 continue;
1309 }
1310 }
1311 /* "nowait" udp */
1312 if (sep->se_socktype == SOCK_DGRAM
1313 && sep->se_family != AF_UNIX
1314 ) {
1315/* How udp "nowait" works:
1316 * child peeks at (received and buffered by kernel) UDP packet,
1317 * performs connect() on the socket so that it is linked only
1318 * to this peer. But this also affects parent, because descriptors
1319 * are shared after fork() a-la dup(). When parent performs
1320 * select(), it will see this descriptor connected to the peer (!)
1321 * and still readable, will act on it and mess things up
1322 * (can create many copies of same child, etc).
1323 * Parent must create and use new socket instead. */
1324 new_udp_fd = socket(sep->se_family, SOCK_DGRAM, 0);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001325 dbg("new_udp_fd:%d\n", new_udp_fd);
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001326 if (new_udp_fd < 0) { /* error: eat packet, forget about it */
1327 udp_err:
1328 recv(sep->se_fd, line, LINE_SIZE, MSG_DONTWAIT);
1329 continue;
1330 }
1331 setsockopt_reuseaddr(new_udp_fd);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001332 /* TODO: better do bind after fork in parent,
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001333 * so that we don't have two wildcard bound sockets
1334 * even for a brief moment? */
1335 if (bind(new_udp_fd, &sep->se_lsa->u.sa, sep->se_lsa->len) < 0) {
Denys Vlasenko223b9412011-09-11 16:48:21 +02001336 dbg("bind(new_udp_fd) failed\n");
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001337 close(new_udp_fd);
1338 goto udp_err;
1339 }
Denys Vlasenko223b9412011-09-11 16:48:21 +02001340 dbg("bind(new_udp_fd) succeeded\n");
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001341 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001342 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001343
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001344 block_CHLD_HUP_ALRM(&omask);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001345 pid = 0;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001346#ifdef INETD_BUILTINS_ENABLED
1347 /* do we need to fork? */
1348 if (sep->se_builtin == NULL
1349 || (sep->se_socktype == SOCK_STREAM
1350 && sep->se_builtin->bi_fork))
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001351#endif
1352 {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001353 if (sep->se_max != 0) {
1354 if (++sep->se_count == 1)
1355 sep->se_time = monotonic_sec();
1356 else if (sep->se_count >= sep->se_max) {
1357 unsigned now = monotonic_sec();
1358 /* did we accumulate se_max connects too quickly? */
1359 if (now - sep->se_time <= CNT_INTERVAL) {
1360 bb_error_msg("%s/%s: too many connections, pausing",
1361 sep->se_service, sep->se_proto);
1362 remove_fd_from_set(sep->se_fd);
1363 close(sep->se_fd);
1364 sep->se_fd = -1;
1365 sep->se_count = 0;
1366 rearm_alarm(); /* will revive it in RETRYTIME sec */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001367 restore_sigmask(&omask);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001368 maybe_close(new_udp_fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001369 maybe_close(accepted_fd);
1370 continue; /* -> check next fd in fd set */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001371 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001372 sep->se_count = 0;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001373 }
1374 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001375 /* on NOMMU, streamed chargen
1376 * builtin wouldn't work, but it is
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001377 * not allowed on NOMMU (ifdefed out) */
1378#ifdef INETD_BUILTINS_ENABLED
1379 if (BB_MMU && sep->se_builtin)
1380 pid = fork();
1381 else
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001382#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001383 pid = vfork();
1384
1385 if (pid < 0) { /* fork error */
Pascal Bellard926031b2010-07-04 15:32:38 +02001386 bb_perror_msg("vfork"+1);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001387 sleep(1);
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001388 restore_sigmask(&omask);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001389 maybe_close(new_udp_fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001390 maybe_close(accepted_fd);
1391 continue; /* -> check next fd in fd set */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001392 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001393 if (pid == 0)
1394 pid--; /* -1: "we did fork and we are child" */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001395 }
Denys Vlasenko223b9412011-09-11 16:48:21 +02001396 /* if pid == 0 here, we didn't fork */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001397
1398 if (pid > 0) { /* parent */
1399 if (sep->se_wait) {
Denys Vlasenko223b9412011-09-11 16:48:21 +02001400 /* wait: we passed socket to child,
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001401 * will wait for child to terminate */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001402 sep->se_wait = pid;
1403 remove_fd_from_set(sep->se_fd);
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001404 }
1405 if (new_udp_fd >= 0) {
1406 /* udp nowait: child connected the socket,
1407 * we created and will use new, unconnected one */
1408 xmove_fd(new_udp_fd, sep->se_fd);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001409 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 +00001410 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001411 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001412 maybe_close(accepted_fd);
1413 continue; /* -> check next fd in fd set */
1414 }
1415
Denys Vlasenko223b9412011-09-11 16:48:21 +02001416 /* we are either child or didn't fork at all */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001417#ifdef INETD_BUILTINS_ENABLED
1418 if (sep->se_builtin) {
Denys Vlasenko223b9412011-09-11 16:48:21 +02001419 if (pid) { /* "pid" is -1: we did fork */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001420 close(sep->se_fd); /* listening socket */
Denys Vlasenko223b9412011-09-11 16:48:21 +02001421 dbg("closed sep->se_fd:%d\n", sep->se_fd);
Denis Vlasenkoa19e6492009-03-11 14:40:00 +00001422 logmode = LOGMODE_NONE; /* make xwrite etc silent */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001423 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001424 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001425 if (sep->se_socktype == SOCK_STREAM)
1426 sep->se_builtin->bi_stream_fn(ctrl, sep);
1427 else
1428 sep->se_builtin->bi_dgram_fn(ctrl, sep);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001429 if (pid) /* we did fork */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001430 _exit(EXIT_FAILURE);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001431 maybe_close(accepted_fd);
1432 continue; /* -> check next fd in fd set */
1433 }
1434#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001435 /* child */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001436 setsid();
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001437 /* "nowait" udp */
1438 if (new_udp_fd >= 0) {
Denys Vlasenko223b9412011-09-11 16:48:21 +02001439 len_and_sockaddr *lsa;
1440 int r;
1441
1442 close(new_udp_fd);
1443 dbg("closed new_udp_fd:%d\n", new_udp_fd);
1444 lsa = xzalloc_lsa(sep->se_family);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001445 /* peek at the packet and remember peer addr */
Denys Vlasenko223b9412011-09-11 16:48:21 +02001446 r = recvfrom(ctrl, NULL, 0, MSG_PEEK|MSG_DONTWAIT,
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001447 &lsa->u.sa, &lsa->len);
Denis Vlasenkoc6938402008-03-24 02:18:03 +00001448 if (r < 0)
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001449 goto do_exit1;
1450 /* make this socket "connected" to peer addr:
1451 * only packets from this peer will be recv'ed,
1452 * and bare write()/send() will work on it */
1453 connect(ctrl, &lsa->u.sa, lsa->len);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001454 dbg("connected ctrl:%d to remote peer\n", ctrl);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001455 free(lsa);
1456 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001457 /* prepare env and exec program */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001458 pwd = getpwnam(sep->se_user);
1459 if (pwd == NULL) {
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001460 bb_error_msg("%s: no such %s", sep->se_user, "user");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001461 goto do_exit1;
1462 }
1463 if (sep->se_group && (grp = getgrnam(sep->se_group)) == NULL) {
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001464 bb_error_msg("%s: no such %s", sep->se_group, "group");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001465 goto do_exit1;
1466 }
1467 if (real_uid != 0 && real_uid != pwd->pw_uid) {
1468 /* a user running private inetd */
1469 bb_error_msg("non-root must run services as himself");
1470 goto do_exit1;
1471 }
Denys Vlasenko585541e2011-09-15 18:27:05 +02001472 if (pwd->pw_uid != 0) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001473 if (sep->se_group)
1474 pwd->pw_gid = grp->gr_gid;
Denis Vlasenko92305822008-03-20 15:12:58 +00001475 /* initgroups, setgid, setuid: */
1476 change_identity(pwd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001477 } else if (sep->se_group) {
1478 xsetgid(grp->gr_gid);
1479 setgroups(1, &grp->gr_gid);
1480 }
1481 if (rlim_ofile.rlim_cur != rlim_ofile_cur)
1482 if (setrlimit(RLIMIT_NOFILE, &rlim_ofile) < 0)
1483 bb_perror_msg("setrlimit");
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001484
Denys Vlasenko2cc70912009-09-04 03:48:40 +02001485 /* closelog(); - WRONG. we are after vfork,
1486 * this may confuse syslog() internal state.
1487 * Let's hope libc sets syslog fd to CLOEXEC...
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001488 */
Denys Vlasenko0f952c22009-06-05 15:35:36 +02001489 xmove_fd(ctrl, STDIN_FILENO);
1490 xdup2(STDIN_FILENO, STDOUT_FILENO);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001491 dbg("moved ctrl:%d to fd 0,1[,2]\n", ctrl);
Denys Vlasenko0f952c22009-06-05 15:35:36 +02001492 /* manpages of inetd I managed to find either say
1493 * that stderr is also redirected to the network,
1494 * or do not talk about redirection at all (!) */
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001495 if (!sep->se_wait) /* only for usual "tcp nowait" */
1496 xdup2(STDIN_FILENO, STDERR_FILENO);
1497 /* NB: among others, this loop closes listening sockets
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001498 * for nowait stream children */
1499 for (sep2 = serv_list; sep2; sep2 = sep2->se_next)
Denys Vlasenkocfc21632009-09-04 02:19:46 +02001500 if (sep2->se_fd != ctrl)
1501 maybe_close(sep2->se_fd);
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001502 sigaction_set(SIGPIPE, &saved_pipe_handler);
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001503 restore_sigmask(&omask);
Denys Vlasenko223b9412011-09-11 16:48:21 +02001504 dbg("execing:'%s'\n", sep->se_program);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001505 BB_EXECVP(sep->se_program, sep->se_argv);
Denys Vlasenko31c3dad2010-06-27 16:57:55 +02001506 bb_perror_msg("can't execute '%s'", sep->se_program);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001507 do_exit1:
1508 /* eat packet in udp case */
1509 if (sep->se_socktype != SOCK_STREAM)
1510 recv(0, line, LINE_SIZE, MSG_DONTWAIT);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001511 _exit(EXIT_FAILURE);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001512 } /* for (sep = servtab...) */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +00001513 } /* for (;;) */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001514}
Glenn L McGrath06e95652003-02-09 06:51:14 +00001515
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001516#if !BB_MMU
1517static const char *const cat_args[] = { "cat", NULL };
1518#endif
1519
Glenn L McGrath06e95652003-02-09 06:51:14 +00001520/*
1521 * Internet services provided internally by inetd:
1522 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001523#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001524/* Echo service -- echo data back. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001525/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001526static void FAST_FUNC echo_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001527{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001528#if BB_MMU
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001529 while (1) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001530 ssize_t sz = safe_read(s, line, LINE_SIZE);
1531 if (sz <= 0)
1532 break;
1533 xwrite(s, line, sz);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001534 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001535#else
Denis Vlasenko85c24712008-03-17 09:04:04 +00001536 /* We are after vfork here! */
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001537 /* move network socket to stdin/stdout */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001538 xmove_fd(s, STDIN_FILENO);
1539 xdup2(STDIN_FILENO, STDOUT_FILENO);
1540 /* no error messages please... */
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001541 close(STDERR_FILENO);
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001542 xopen(bb_dev_null, O_WRONLY);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001543 BB_EXECVP("cat", (char**)cat_args);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001544 /* on failure we return to main, which does exit(EXIT_FAILURE) */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001545#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001546}
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001547static void FAST_FUNC echo_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001548{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001549 enum { BUFSIZE = 12*1024 }; /* for jumbo sized packets! :) */
1550 char *buf = xmalloc(BUFSIZE); /* too big for stack */
1551 int sz;
1552 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001553
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001554 lsa->len = sep->se_lsa->len;
1555 /* dgram builtins are non-forking - DONT BLOCK! */
1556 sz = recvfrom(s, buf, BUFSIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len);
1557 if (sz > 0)
1558 sendto(s, buf, sz, 0, &lsa->u.sa, lsa->len);
1559 free(buf);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001560}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001561#endif /* FEATURE_INETD_SUPPORT_BUILTIN_ECHO */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001562
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001563
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001564#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenko4cb576e2008-11-05 11:36:22 +00001565/* Discard service -- ignore data. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001566/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001567static void FAST_FUNC discard_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001568{
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001569#if BB_MMU
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001570 while (safe_read(s, line, LINE_SIZE) > 0)
1571 continue;
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001572#else
Denis Vlasenko85c24712008-03-17 09:04:04 +00001573 /* We are after vfork here! */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001574 /* move network socket to stdin */
1575 xmove_fd(s, STDIN_FILENO);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001576 /* discard output */
1577 close(STDOUT_FILENO);
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001578 xopen(bb_dev_null, O_WRONLY);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001579 /* no error messages please... */
1580 xdup2(STDOUT_FILENO, STDERR_FILENO);
1581 BB_EXECVP("cat", (char**)cat_args);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001582 /* on failure we return to main, which does exit(EXIT_FAILURE) */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001583#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001584}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001585/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001586static void FAST_FUNC discard_dg(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001587{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001588 /* dgram builtins are non-forking - DONT BLOCK! */
1589 recv(s, line, LINE_SIZE, MSG_DONTWAIT);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001590}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001591#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DISCARD */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001592
1593
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001594#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Glenn L McGrath06e95652003-02-09 06:51:14 +00001595#define LINESIZ 72
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001596static void init_ring(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001597{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001598 int i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001599
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001600 end_ring = ring;
Denys Vlasenko8684cbb2009-11-18 11:34:43 +01001601 for (i = ' '; i < 127; i++)
1602 *end_ring++ = i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001603}
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001604/* Character generator. MMU arches only. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001605/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001606static void FAST_FUNC chargen_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001607{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001608 char *rs;
1609 int len;
1610 char text[LINESIZ + 2];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001611
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001612 if (!end_ring) {
1613 init_ring();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001614 rs = ring;
1615 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001616
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001617 text[LINESIZ] = '\r';
1618 text[LINESIZ + 1] = '\n';
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001619 rs = ring;
1620 for (;;) {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001621 len = end_ring - rs;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001622 if (len >= LINESIZ)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001623 memmove(text, rs, LINESIZ);
1624 else {
1625 memmove(text, rs, len);
1626 memmove(text + len, ring, LINESIZ - len);
1627 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001628 if (++rs == end_ring)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001629 rs = ring;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001630 xwrite(s, text, sizeof(text));
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001631 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001632}
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001633/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001634static void FAST_FUNC chargen_dg(int s, servtab_t *sep)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001635{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001636 int len;
1637 char text[LINESIZ + 2];
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001638 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1639
1640 /* Eat UDP packet which started it all */
1641 /* dgram builtins are non-forking - DONT BLOCK! */
1642 lsa->len = sep->se_lsa->len;
1643 if (recvfrom(s, text, sizeof(text), MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1644 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001645
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001646 if (!end_ring) {
1647 init_ring();
1648 ring_pos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001649 }
1650
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001651 len = end_ring - ring_pos;
Denis Vlasenko512a5452007-09-24 10:41:30 +00001652 if (len >= LINESIZ)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001653 memmove(text, ring_pos, LINESIZ);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001654 else {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001655 memmove(text, ring_pos, len);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001656 memmove(text + len, ring, LINESIZ - len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001657 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001658 if (++ring_pos == end_ring)
1659 ring_pos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001660 text[LINESIZ] = '\r';
1661 text[LINESIZ + 1] = '\n';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001662 sendto(s, text, sizeof(text), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001663}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001664#endif /* FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001665
1666
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001667#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001668/*
1669 * Return a machine readable date and time, in the form of the
1670 * number of seconds since midnight, Jan 1, 1900. Since gettimeofday
1671 * returns the number of seconds since midnight, Jan 1, 1970,
1672 * we must add 2208988800 seconds to this figure to make up for
1673 * some seventy years Bell Labs was asleep.
1674 */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001675static uint32_t machtime(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001676{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001677 struct timeval tv;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001678
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001679 gettimeofday(&tv, NULL);
1680 return htonl((uint32_t)(tv.tv_sec + 2208988800));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001681}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001682/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001683static void FAST_FUNC machtime_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001684{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001685 uint32_t result;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001686
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001687 result = machtime();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001688 full_write(s, &result, sizeof(result));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001689}
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001690static void FAST_FUNC machtime_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001691{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001692 uint32_t result;
1693 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001694
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001695 lsa->len = sep->se_lsa->len;
1696 if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001697 return;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001698
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001699 result = machtime();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001700 sendto(s, &result, sizeof(result), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001701}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001702#endif /* FEATURE_INETD_SUPPORT_BUILTIN_TIME */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001703
1704
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001705#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001706/* Return human-readable time of day */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001707/* ARGSUSED */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001708static void FAST_FUNC daytime_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001709{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001710 time_t t;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001711
Denys Vlasenko54e95852015-02-18 13:47:27 +01001712 time(&t);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001713 fdprintf(s, "%.24s\r\n", ctime(&t));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001714}
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001715static void FAST_FUNC daytime_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001716{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001717 time_t t;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001718 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1719
1720 lsa->len = sep->se_lsa->len;
1721 if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1722 return;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001723
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001724 t = time(NULL);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001725 sprintf(line, "%.24s\r\n", ctime(&t));
1726 sendto(s, line, strlen(line), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001727}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001728#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME */