blob: f80b51052b040a92aea3963f3fee5bcd7722e942 [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 */
156
Rob Landleyd921b2e2006-08-03 15:41:12 +0000157#include <syslog.h>
Rob Landley099ed502006-08-28 09:41:49 +0000158#include <sys/un.h>
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000159
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000160#include "libbb.h"
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000161
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000162#if ENABLE_FEATURE_INETD_RPC
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000163#include <rpc/rpc.h>
164#include <rpc/pmap_clnt.h>
Glenn L McGrathff6ec8a2004-01-17 02:47:45 +0000165#endif
166
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000167#if !BB_MMU
168/* stream version of chargen is forking but not execing,
169 * can't do that (easily) on NOMMU */
170#undef ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
171#define ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN 0
172#endif
173
Denis Vlasenko5b340832007-05-17 23:02:14 +0000174#define _PATH_INETDPID "/var/run/inetd.pid"
175
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000176#define CNT_INTERVAL 60 /* servers in CNT_INTERVAL sec. */
177#define RETRYTIME 60 /* retry after bind or server fail */
178
179// TODO: explain, or get rid of setrlimit games
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000180
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000181#ifndef RLIMIT_NOFILE
182#define RLIMIT_NOFILE RLIMIT_OFILE
183#endif
184
185#ifndef OPEN_MAX
186#define OPEN_MAX 64
187#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000188
189/* Reserve some descriptors, 3 stdio + at least: 1 log, 1 conf. file */
Denis Vlasenkof8138d12007-01-11 23:26:13 +0000190#define FD_MARGIN 8
Glenn L McGrath06e95652003-02-09 06:51:14 +0000191
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000192#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD \
193 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO \
194 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN \
195 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME \
196 || ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
197# define INETD_BUILTINS_ENABLED
Glenn L McGrath06e95652003-02-09 06:51:14 +0000198#endif
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000199
Denis Vlasenko512a5452007-09-24 10:41:30 +0000200typedef struct servtab_t {
Denis Vlasenko39824072007-09-26 10:46:18 +0000201 /* The most frequently referenced one: */
202 int se_fd; /* open descriptor */
203 /* NB: 'biggest fields last' saves on code size (~250 bytes) */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000204 /* [addr:]service socktype proto wait user[:group] prog [args] */
205 char *se_local_hostname; /* addr to listen on */
206 char *se_service; /* "80" or "www" or "mount/2[-3]" */
207 /* socktype is in se_socktype */ /* "stream" "dgram" "raw" "rdm" "seqpacket" */
208 char *se_proto; /* "unix" or "[rpc/]tcp[6]" */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000209#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000210 int se_rpcprog; /* rpc program number */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000211 int se_rpcver_lo; /* rpc program lowest version */
212 int se_rpcver_hi; /* rpc program highest version */
213#define is_rpc_service(sep) ((sep)->se_rpcver_lo != 0)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000214#else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000215#define is_rpc_service(sep) 0
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000216#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000217 pid_t se_wait; /* 0:"nowait", 1:"wait", >1:"wait" */
218 /* and waiting for this pid */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000219 socktype_t se_socktype; /* SOCK_STREAM/DGRAM/RDM/... */
220 family_t se_family; /* AF_UNIX/INET[6] */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000221 /* se_proto_no is used by RPC code only... hmm */
222 smallint se_proto_no; /* IPPROTO_TCP/UDP, n/a for AF_UNIX */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000223 smallint se_checked; /* looked at during merge */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000224 unsigned se_max; /* allowed instances per minute */
225 unsigned se_count; /* number started since se_time */
226 unsigned se_time; /* whem we started counting */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000227 char *se_user; /* user name to run as */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000228 char *se_group; /* group name to run as, can be NULL */
229#ifdef INETD_BUILTINS_ENABLED
230 const struct builtin *se_builtin; /* if built-in, description */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000231#endif
Denis Vlasenko39824072007-09-26 10:46:18 +0000232 struct servtab_t *se_next;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000233 len_and_sockaddr *se_lsa;
234 char *se_program; /* server program */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000235#define MAXARGV 20
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000236 char *se_argv[MAXARGV + 1]; /* program arguments */
Glenn L McGrath03a06432004-02-18 13:19:58 +0000237} servtab_t;
238
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000239#ifdef INETD_BUILTINS_ENABLED
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000240/* Echo received data */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000241#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000242static void echo_stream(int, servtab_t *);
243static void echo_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000244#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000245/* Internet /dev/null */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000246#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000247static void discard_stream(int, servtab_t *);
248static void discard_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000249#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000250/* Return 32 bit time since 1900 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000251#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000252static void machtime_stream(int, servtab_t *);
253static void machtime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000254#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000255/* Return human-readable time */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000256#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000257static void daytime_stream(int, servtab_t *);
258static void daytime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000259#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000260/* Familiar character generator */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000261#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000262static void chargen_stream(int, servtab_t *);
263static void chargen_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000264#endif
265
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000266struct builtin {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000267 /* NB: not necessarily NUL terminated */
268 char bi_service7[7]; /* internally provided service name */
269 uint8_t bi_fork; /* 1 if stream fn should run in child */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000270 void (*bi_stream_fn)(int, servtab_t *);
271 void (*bi_dgram_fn)(int, servtab_t *);
272};
273
Bernhard Reutner-Fischera4acf662006-04-10 12:26:47 +0000274static const struct builtin builtins[] = {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000275#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000276 { "echo", 1, echo_stream, echo_dg },
Glenn L McGrath06e95652003-02-09 06:51:14 +0000277#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000278#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000279 { "discard", 1, discard_stream, discard_dg },
Glenn L McGrath06e95652003-02-09 06:51:14 +0000280#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000281#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000282 { "chargen", 1, chargen_stream, chargen_dg },
Glenn L McGrath06e95652003-02-09 06:51:14 +0000283#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000284#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000285 { "time", 0, machtime_stream, machtime_dg },
286#endif
287#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000288 { "daytime", 0, daytime_stream, daytime_dg },
289#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000290};
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000291#endif /* INETD_BUILTINS_ENABLED */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000292
Denis Vlasenko512a5452007-09-24 10:41:30 +0000293struct globals {
294 rlim_t rlim_ofile_cur;
295 struct rlimit rlim_ofile;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000296 servtab_t *serv_list;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000297 int global_queuelen;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000298 int prev_maxsock;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000299 int maxsock;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000300 unsigned max_concurrency;
301 smallint alarm_armed;
302 uid_t real_uid; /* user ID who ran us */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000303 const char *config_filename;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000304 parser_t *parser;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000305 char *default_local_hostname;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000306#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000307 char *end_ring;
308 char *ring_pos;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000309 char ring[128];
310#endif
311 fd_set allsock;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000312 /* Used in next_line(), and as scratch read buffer */
313 char line[256]; /* _at least_ 256, see LINE_SIZE */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000314};
315#define G (*(struct globals*)&bb_common_bufsiz1)
316enum { LINE_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line) };
317struct BUG_G_too_big {
318 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
319};
320#define rlim_ofile_cur (G.rlim_ofile_cur )
321#define rlim_ofile (G.rlim_ofile )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000322#define serv_list (G.serv_list )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000323#define global_queuelen (G.global_queuelen)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000324#define prev_maxsock (G.prev_maxsock )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000325#define maxsock (G.maxsock )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000326#define max_concurrency (G.max_concurrency)
327#define alarm_armed (G.alarm_armed )
328#define real_uid (G.real_uid )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000329#define config_filename (G.config_filename)
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000330#define parser (G.parser )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000331#define default_local_hostname (G.default_local_hostname)
332#define first_ps_byte (G.first_ps_byte )
333#define last_ps_byte (G.last_ps_byte )
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000334#define end_ring (G.end_ring )
335#define ring_pos (G.ring_pos )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000336#define ring (G.ring )
337#define allsock (G.allsock )
338#define line (G.line )
339#define INIT_G() do { \
340 rlim_ofile_cur = OPEN_MAX; \
341 global_queuelen = 128; \
342 config_filename = "/etc/inetd.conf"; \
343} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000344
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000345static void maybe_close(int fd)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000346{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000347 if (fd >= 0)
348 close(fd);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000349}
350
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000351// TODO: move to libbb?
352static len_and_sockaddr *xzalloc_lsa(int family)
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000353{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000354 len_and_sockaddr *lsa;
355 int sz;
356
357 sz = sizeof(struct sockaddr_in);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000358 if (family == AF_UNIX)
359 sz = sizeof(struct sockaddr_un);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000360#if ENABLE_FEATURE_IPV6
361 if (family == AF_INET6)
362 sz = sizeof(struct sockaddr_in6);
363#endif
364 lsa = xzalloc(LSA_LEN_SIZE + sz);
365 lsa->len = sz;
366 lsa->u.sa.sa_family = family;
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000367 return lsa;
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000368}
369
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000370static void rearm_alarm(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000371{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000372 if (!alarm_armed) {
373 alarm_armed = 1;
374 alarm(RETRYTIME);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000375 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000376}
377
378static void block_CHLD_HUP_ALRM(sigset_t *m)
379{
380 sigemptyset(m);
381 sigaddset(m, SIGCHLD);
382 sigaddset(m, SIGHUP);
383 sigaddset(m, SIGALRM);
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000384 sigprocmask(SIG_BLOCK, m, m); /* old sigmask is stored in m */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000385}
386
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000387static void restore_sigmask(sigset_t *m)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000388{
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000389 sigprocmask(SIG_SETMASK, m, NULL);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000390}
Glenn L McGrath53766c42004-01-18 08:58:06 +0000391
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000392#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000393static void register_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000394{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000395 int n;
396 struct sockaddr_in ir_sin;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000397 socklen_t size;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000398
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000399 size = sizeof(ir_sin);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000400 if (getsockname(sep->se_fd, (struct sockaddr *) &ir_sin, &size) < 0) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000401 bb_perror_msg("getsockname");
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000402 return;
403 }
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000404
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000405 for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) {
406 pmap_unset(sep->se_rpcprog, n);
407 if (!pmap_set(sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port)))
408 bb_perror_msg("%s %s: pmap_set(%u,%u,%u,%u)",
409 sep->se_service, sep->se_proto,
410 sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port));
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000411 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000412}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000413
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000414static void unregister_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000415{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000416 int n;
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000417
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000418 for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000419 if (!pmap_unset(sep->se_rpcprog, n))
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000420 bb_perror_msg("pmap_unset(%u,%u)", sep->se_rpcprog, n);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000421 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000422}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000423#endif /* FEATURE_INETD_RPC */
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000424
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000425static void bump_nofile(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000426{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000427 enum { FD_CHUNK = 32 };
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000428 struct rlimit rl;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000429
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000430 /* Never fails under Linux (except if you pass it bad arguments) */
431 getrlimit(RLIMIT_NOFILE, &rl);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000432 rl.rlim_cur = MIN(rl.rlim_max, rl.rlim_cur + FD_CHUNK);
433 rl.rlim_cur = MIN(FD_SETSIZE, rl.rlim_cur + FD_CHUNK);
434 if (rl.rlim_cur <= rlim_ofile_cur) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000435 bb_error_msg("can't extend file limit, max = %d",
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000436 (int) rl.rlim_cur);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000437 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000438 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000439
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000440 if (setrlimit(RLIMIT_NOFILE, &rl) < 0) {
441 bb_perror_msg("setrlimit");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000442 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000443 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000444
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000445 rlim_ofile_cur = rl.rlim_cur;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000446}
447
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000448static void remove_fd_from_set(int fd)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000449{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000450 if (fd >= 0) {
451 FD_CLR(fd, &allsock);
452 maxsock = -1;
453 }
454}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000455
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000456static void add_fd_to_set(int fd)
457{
458 if (fd >= 0) {
459 FD_SET(fd, &allsock);
460 if (maxsock >= 0 && fd > maxsock) {
461 prev_maxsock = maxsock = fd;
462 if ((rlim_t)maxsock > rlim_ofile_cur - FD_MARGIN)
463 bump_nofile();
464 }
465 }
466}
467
468static void recalculate_maxsock(void)
469{
470 int fd = 0;
471 while (fd <= prev_maxsock) {
472 if (FD_ISSET(fd, &allsock))
473 maxsock = fd;
474 fd++;
475 }
476 prev_maxsock = maxsock;
477 if ((rlim_t)maxsock > rlim_ofile_cur - FD_MARGIN)
478 bump_nofile();
479}
480
481static void prepare_socket_fd(servtab_t *sep)
482{
483 int r, fd;
484
485 fd = socket(sep->se_family, sep->se_socktype, 0);
486 if (fd < 0) {
487 bb_perror_msg("socket");
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000488 return;
489 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000490 setsockopt_reuseaddr(fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000491
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000492#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000493 if (is_rpc_service(sep)) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000494 struct passwd *pwd;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000495
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000496 /* zero out the port for all RPC services; let bind()
497 * find one. */
498 set_nport(sep->se_lsa, 0);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000499
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000500 /* for RPC services, attempt to use a reserved port
501 * if they are going to be running as root. */
502 if (real_uid == 0 && sep->se_family == AF_INET
503 && (pwd = getpwnam(sep->se_user)) != NULL
504 && pwd->pw_uid == 0
505 ) {
506 r = bindresvport(fd, &sep->se_lsa->u.sin);
507 } else {
508 r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
509 }
510 if (r == 0) {
511 int saveerrno = errno;
512 /* update lsa with port# */
513 getsockname(fd, &sep->se_lsa->u.sa, &sep->se_lsa->len);
514 errno = saveerrno;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000515 }
516 } else
Glenn L McGrath53766c42004-01-18 08:58:06 +0000517#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000518 {
519 if (sep->se_family == AF_UNIX) {
520 struct sockaddr_un *sun;
521 sun = (struct sockaddr_un*)&(sep->se_lsa->u.sa);
522 unlink(sun->sun_path);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000523 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000524 r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
525 }
526 if (r < 0) {
527 bb_perror_msg("%s/%s: bind",
528 sep->se_service, sep->se_proto);
529 close(fd);
530 rearm_alarm();
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000531 return;
Glenn L McGrath53766c42004-01-18 08:58:06 +0000532 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000533 if (sep->se_socktype == SOCK_STREAM)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000534 listen(fd, global_queuelen);
Glenn L McGrath53766c42004-01-18 08:58:06 +0000535
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000536 add_fd_to_set(fd);
537 sep->se_fd = fd;
538}
539
540static int reopen_config_file(void)
541{
542 free(default_local_hostname);
543 default_local_hostname = xstrdup("*");
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000544 if (parser != NULL)
545 config_close(parser);
546 parser = config_open(config_filename);
547 return (parser != NULL);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000548}
549
550static void close_config_file(void)
551{
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000552 if (parser) {
553 config_close(parser);
554 parser = NULL;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000555 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000556}
557
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000558static void free_servtab_strings(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000559{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000560 int i;
561
562 free(cp->se_local_hostname);
563 free(cp->se_service);
564 free(cp->se_proto);
565 free(cp->se_user);
566 free(cp->se_group);
567 free(cp->se_lsa); /* not a string in fact */
568 free(cp->se_program);
569 for (i = 0; i < MAXARGV; i++)
570 free(cp->se_argv[i]);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000571}
572
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000573static servtab_t *new_servtab(void)
574{
575 servtab_t *newtab = xzalloc(sizeof(servtab_t));
576 newtab->se_fd = -1; /* paranoia */
577 return newtab;
578}
579
580static servtab_t *dup_servtab(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000581{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000582 servtab_t *newtab;
583 int argc;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000584
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000585 newtab = new_servtab();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000586 *newtab = *sep; /* struct copy */
587 /* deep-copying strings */
588 newtab->se_service = xstrdup(newtab->se_service);
589 newtab->se_proto = xstrdup(newtab->se_proto);
590 newtab->se_user = xstrdup(newtab->se_user);
591 newtab->se_group = xstrdup(newtab->se_group);
592 newtab->se_program = xstrdup(newtab->se_program);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000593 for (argc = 0; argc <= MAXARGV; argc++)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000594 newtab->se_argv[argc] = xstrdup(newtab->se_argv[argc]);
595 /* NB: se_fd, se_hostaddr and se_next are always
596 * overwrittend by callers, so we don't bother resetting them
597 * to NULL/0/-1 etc */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000598
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000599 return newtab;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000600}
601
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000602/* gcc generates much more code if this is inlined */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000603static servtab_t *parse_one_line(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000604{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000605 int argc;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000606 char *token[6+MAXARGV];
607 char *p, *arg;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000608 char *hostdelim;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000609 servtab_t *sep;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000610 servtab_t *nsep;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000611 new:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000612 sep = new_servtab();
Denis Vlasenko13858992006-10-08 12:49:22 +0000613 more:
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000614 argc = config_read(parser, token, 6+MAXARGV, 1, "# \t", PARSE_NORMAL);
615 if (!argc) {
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000616 free(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000617 return NULL;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000618 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000619
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000620 /* [host:]service socktype proto wait user[:group] prog [args] */
621 /* Check for "host:...." line */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000622 arg = token[0];
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000623 hostdelim = strrchr(arg, ':');
624 if (hostdelim) {
625 *hostdelim = '\0';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000626 sep->se_local_hostname = xstrdup(arg);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000627 arg = hostdelim + 1;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000628 if (*arg == '\0' && argc == 1) {
629 /* Line has just "host:", change the
630 * default host for the following lines. */
631 free(default_local_hostname);
632 default_local_hostname = sep->se_local_hostname;
633 goto more;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000634 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000635 } else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000636 sep->se_local_hostname = xstrdup(default_local_hostname);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000637
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000638 /* service socktype proto wait user[:group] prog [args] */
639 sep->se_service = xstrdup(arg);
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000640
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000641 /* socktype proto wait user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000642 if (argc < 6) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000643 parse_err:
644 bb_error_msg("parse error on line %u, line is ignored",
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000645 parser->lineno);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000646 free_servtab_strings(sep);
647 /* Just "goto more" can make sep to carry over e.g.
648 * "rpc"-ness (by having se_rpcver_lo != 0).
649 * We will be more paranoid: */
650 free(sep);
651 goto new;
652 }
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000653
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000654 {
655 static int8_t SOCK_xxx[] ALIGN1 = {
656 -1,
657 SOCK_STREAM, SOCK_DGRAM, SOCK_RDM,
658 SOCK_SEQPACKET, SOCK_RAW
659 };
660 sep->se_socktype = SOCK_xxx[1 + index_in_strings(
661 "stream""\0" "dgram""\0" "rdm""\0"
662 "seqpacket""\0" "raw""\0"
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000663 , token[1])];
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000664 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000665
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000666 /* {unix,[rpc/]{tcp,udp}[6]} wait user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000667 sep->se_proto = arg = xstrdup(token[2]);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000668 if (strcmp(arg, "unix") == 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000669 sep->se_family = AF_UNIX;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000670 } else {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000671 char *six;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000672 sep->se_family = AF_INET;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000673 six = last_char_is(arg, '6');
674 if (six) {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000675#if ENABLE_FEATURE_IPV6
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000676 *six = '\0';
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000677 sep->se_family = AF_INET6;
678#else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000679 bb_error_msg("%s: no support for IPv6", sep->se_proto);
680 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000681#endif
682 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000683 if (strncmp(arg, "rpc/", 4) == 0) {
684#if ENABLE_FEATURE_INETD_RPC
685 unsigned n;
686 arg += 4;
687 p = strchr(sep->se_service, '/');
688 if (p == NULL) {
689 bb_error_msg("no rpc version: '%s'", sep->se_service);
690 goto parse_err;
691 }
692 *p++ = '\0';
693 n = bb_strtou(p, &p, 10);
694 if (n > INT_MAX) {
695 bad_ver_spec:
696 bb_error_msg("bad rpc version");
697 goto parse_err;
698 }
699 sep->se_rpcver_lo = sep->se_rpcver_hi = n;
700 if (*p == '-') {
701 p++;
702 n = bb_strtou(p, &p, 10);
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000703 if (n > INT_MAX || (int)n < sep->se_rpcver_lo)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000704 goto bad_ver_spec;
705 sep->se_rpcver_hi = n;
706 }
707 if (*p != '\0')
708 goto bad_ver_spec;
709#else
710 bb_error_msg("no support for rpc services");
711 goto parse_err;
712#endif
713 }
714 /* we don't really need getprotobyname()! */
715 if (strcmp(arg, "tcp") == 0)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000716 sep->se_proto_no = IPPROTO_TCP; /* = 6 */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000717 if (strcmp(arg, "udp") == 0)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000718 sep->se_proto_no = IPPROTO_UDP; /* = 17 */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000719 if (six)
720 *six = '6';
721 if (!sep->se_proto_no) /* not tcp/udp?? */
722 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000723 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000724
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000725 /* [no]wait[.max] user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000726 arg = token[3];
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000727 sep->se_max = max_concurrency;
728 p = strchr(arg, '.');
729 if (p) {
730 *p++ = '\0';
731 sep->se_max = bb_strtou(p, NULL, 10);
732 if (errno)
733 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000734 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000735 sep->se_wait = (arg[0] != 'n' || arg[1] != 'o');
736 if (!sep->se_wait) /* "no" seen */
737 arg += 2;
738 if (strcmp(arg, "wait") != 0)
739 goto parse_err;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000740
741 /* user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000742 sep->se_user = xstrdup(token[4]);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000743 arg = strchr(sep->se_user, '.');
744 if (arg == NULL)
745 arg = strchr(sep->se_user, ':');
746 if (arg) {
747 *arg++ = '\0';
748 sep->se_group = xstrdup(arg);
749 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000750
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000751 /* prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000752 sep->se_program = xstrdup(token[5]);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000753#ifdef INETD_BUILTINS_ENABLED
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000754 if (strcmp(sep->se_program, "internal") == 0
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000755 && strlen(sep->se_service) <= 7
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000756 && (sep->se_socktype == SOCK_STREAM
757 || sep->se_socktype == SOCK_DGRAM)
758 ) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000759 unsigned i;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000760 for (i = 0; i < ARRAY_SIZE(builtins); i++)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000761 if (strncmp(builtins[i].bi_service7, sep->se_service, 7) == 0)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000762 goto found_bi;
763 bb_error_msg("unknown internal service %s", sep->se_service);
764 goto parse_err;
765 found_bi:
766 sep->se_builtin = &builtins[i];
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000767 /* stream builtins must be "nowait", dgram must be "wait" */
768 if (sep->se_wait != (sep->se_socktype == SOCK_DGRAM))
769 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000770 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000771#endif
772 argc = 0;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000773 while ((arg = token[6+argc]) != NULL && argc < MAXARGV)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000774 sep->se_argv[argc++] = xstrdup(arg);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000775
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000776 /* catch mixups. "<service> stream udp ..." == wtf */
777 if (sep->se_socktype == SOCK_STREAM) {
778 if (sep->se_proto_no == IPPROTO_UDP)
779 goto parse_err;
780 }
781 if (sep->se_socktype == SOCK_DGRAM) {
782 if (sep->se_proto_no == IPPROTO_TCP)
783 goto parse_err;
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000784 }
785
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000786// bb_info_msg(
787// "ENTRY[%s][%s][%s][%d][%d][%d][%d][%d][%s][%s][%s]",
788// sep->se_local_hostname, sep->se_service, sep->se_proto, sep->se_wait, sep->se_proto_no,
789// sep->se_max, sep->se_count, sep->se_time, sep->se_user, sep->se_group, sep->se_program);
790
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000791 /* check if the hostname specifier is a comma separated list
792 * of hostnames. we'll make new entries for each address. */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000793 while ((hostdelim = strrchr(sep->se_local_hostname, ',')) != NULL) {
794 nsep = dup_servtab(sep);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000795 /* NUL terminate the hostname field of the existing entry,
796 * and make a dup for the new entry. */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000797 *hostdelim++ = '\0';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000798 nsep->se_local_hostname = xstrdup(hostdelim);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000799 nsep->se_next = sep->se_next;
800 sep->se_next = nsep;
801 }
802
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000803 /* was doing it here: */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000804 /* DNS resolution, create copies for each IP address */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000805 /* IPv6-ization destroyed it :( */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000806
807 return sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000808}
809
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000810static servtab_t *insert_in_servlist(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000811{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000812 servtab_t *sep;
813 sigset_t omask;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000814
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000815 sep = new_servtab();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000816 *sep = *cp; /* struct copy */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000817 sep->se_fd = -1;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000818#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000819 sep->se_rpcprog = -1;
820#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000821 block_CHLD_HUP_ALRM(&omask);
822 sep->se_next = serv_list;
823 serv_list = sep;
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000824 restore_sigmask(&omask);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000825 return sep;
826}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000827
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000828static int same_serv_addr_proto(servtab_t *old, servtab_t *new)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000829{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000830 if (strcmp(old->se_local_hostname, new->se_local_hostname) != 0)
831 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000832 if (strcmp(old->se_service, new->se_service) != 0)
833 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000834 if (strcmp(old->se_proto, new->se_proto) != 0)
835 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000836 return 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000837}
838
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000839static void reread_config_file(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000840{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000841 servtab_t *sep, *cp, **sepp;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000842 len_and_sockaddr *lsa;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000843 sigset_t omask;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000844 unsigned n;
845 uint16_t port;
Denis Vlasenkof54e62a2008-07-22 20:57:28 +0000846 int save_errno = errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000847
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000848 if (!reopen_config_file())
Denis Vlasenkof54e62a2008-07-22 20:57:28 +0000849 goto ret;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000850 for (sep = serv_list; sep; sep = sep->se_next)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000851 sep->se_checked = 0;
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000852
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000853 goto first_line;
854 while (1) {
855 if (cp == NULL) {
856 first_line:
857 cp = parse_one_line();
858 if (cp == NULL)
859 break;
860 }
861 for (sep = serv_list; sep; sep = sep->se_next)
862 if (same_serv_addr_proto(sep, cp))
863 goto equal_servtab;
864 /* not an "equal" servtab */
865 sep = insert_in_servlist(cp);
866 goto after_check;
867 equal_servtab:
868 {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000869 int i;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000870
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000871 block_CHLD_HUP_ALRM(&omask);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000872#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000873 if (is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000874 unregister_rpc(sep);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000875 sep->se_rpcver_lo = cp->se_rpcver_lo;
876 sep->se_rpcver_hi = cp->se_rpcver_hi;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000877#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000878 if (cp->se_wait == 0) {
879 /* New config says "nowait". If old one
880 * was "wait", we currently may be waiting
881 * for a child (and not accepting connects).
882 * Stop waiting, start listening again.
883 * (if it's not true, this op is harmless) */
884 add_fd_to_set(sep->se_fd);
885 }
886 sep->se_wait = cp->se_wait;
887 sep->se_max = cp->se_max;
888 /* string fields need more love - we don't want to leak them */
889#define SWAP(type, a, b) do { type c = (type)a; a = (type)b; b = (type)c; } while (0)
890 SWAP(char*, sep->se_user, cp->se_user);
891 SWAP(char*, sep->se_group, cp->se_group);
892 SWAP(char*, sep->se_program, cp->se_program);
893 for (i = 0; i < MAXARGV; i++)
894 SWAP(char*, sep->se_argv[i], cp->se_argv[i]);
895#undef SWAP
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000896 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000897 free_servtab_strings(cp);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000898 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000899 after_check:
900 /* cp->string_fields are consumed by insert_in_servlist()
901 * or freed at this point, cp itself is not yet freed. */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000902 sep->se_checked = 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000903
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000904 /* create new len_and_sockaddr */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000905 switch (sep->se_family) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000906 struct sockaddr_un *sun;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000907 case AF_UNIX:
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000908 lsa = xzalloc_lsa(AF_UNIX);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000909 sun = (struct sockaddr_un*)&lsa->u.sa;
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000910 safe_strncpy(sun->sun_path, sep->se_service, sizeof(sun->sun_path));
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000911 break;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000912
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000913 default: /* case AF_INET, case AF_INET6 */
914 n = bb_strtou(sep->se_service, NULL, 10);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000915#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000916 if (is_rpc_service(sep)) {
917 sep->se_rpcprog = n;
918 if (errno) { /* se_service is not numeric */
919 struct rpcent *rp = getrpcbyname(sep->se_service);
920 if (rp == NULL) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000921 bb_error_msg("%s: unknown rpc service", sep->se_service);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000922 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000923 }
924 sep->se_rpcprog = rp->r_number;
925 }
926 if (sep->se_fd == -1)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000927 prepare_socket_fd(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000928 if (sep->se_fd != -1)
929 register_rpc(sep);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000930 goto next_cp;
931 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000932#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000933 /* what port to listen on? */
934 port = htons(n);
935 if (errno || n > 0xffff) { /* se_service is not numeric */
936 char protoname[4];
937 struct servent *sp;
938 /* can result only in "tcp" or "udp": */
939 safe_strncpy(protoname, sep->se_proto, 4);
940 sp = getservbyname(sep->se_service, protoname);
941 if (sp == NULL) {
942 bb_error_msg("%s/%s: unknown service",
943 sep->se_service, sep->se_proto);
944 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000945 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000946 port = sp->s_port;
947 }
948 if (LONE_CHAR(sep->se_local_hostname, '*')) {
949 lsa = xzalloc_lsa(sep->se_family);
950 set_nport(lsa, port);
951 } else {
952 lsa = host_and_af2sockaddr(sep->se_local_hostname,
953 ntohs(port), sep->se_family);
954 if (!lsa) {
955 bb_error_msg("%s/%s: unknown host '%s'",
956 sep->se_service, sep->se_proto,
957 sep->se_local_hostname);
958 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000959 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000960 }
961 break;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000962 } /* end of "switch (sep->se_family)" */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000963
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000964 /* did lsa change? Then close/open */
965 if (sep->se_lsa == NULL
966 || lsa->len != sep->se_lsa->len
967 || memcmp(&lsa->u.sa, &sep->se_lsa->u.sa, lsa->len) != 0
968 ) {
969 remove_fd_from_set(sep->se_fd);
970 maybe_close(sep->se_fd);
971 free(sep->se_lsa);
972 sep->se_lsa = lsa;
973 sep->se_fd = -1;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000974 } else {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000975 free(lsa);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000976 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000977 if (sep->se_fd == -1)
978 prepare_socket_fd(sep);
979 next_cp:
980 sep = cp->se_next;
981 free(cp);
982 cp = sep;
983 } /* end of "while (1) parse lines" */
984 close_config_file();
985
986 /* Purge anything not looked at above - these are stale entries,
987 * new config file doesnt have them. */
988 block_CHLD_HUP_ALRM(&omask);
989 sepp = &serv_list;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000990 while ((sep = *sepp)) {
991 if (sep->se_checked) {
992 sepp = &sep->se_next;
993 continue;
994 }
995 *sepp = sep->se_next;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000996 remove_fd_from_set(sep->se_fd);
997 maybe_close(sep->se_fd);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000998#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000999 if (is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001000 unregister_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001001#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001002 if (sep->se_family == AF_UNIX)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001003 unlink(sep->se_service);
1004 free_servtab_strings(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001005 free(sep);
1006 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001007 restore_sigmask(&omask);
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001008 ret:
1009 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001010}
1011
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001012static void reap_child(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001013{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001014 pid_t pid;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001015 int status;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001016 servtab_t *sep;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001017 int save_errno = errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001018
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001019 for (;;) {
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001020 pid = wait_any_nohang(&status);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001021 if (pid <= 0)
1022 break;
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001023 for (sep = serv_list; sep; sep = sep->se_next) {
1024 if (sep->se_wait != pid)
1025 continue;
1026 /* One of our "wait" services */
1027 if (WIFEXITED(status) && WEXITSTATUS(status))
1028 bb_error_msg("%s: exit status 0x%x",
1029 sep->se_program, WEXITSTATUS(status));
1030 else if (WIFSIGNALED(status))
1031 bb_error_msg("%s: exit signal 0x%x",
1032 sep->se_program, WTERMSIG(status));
1033 sep->se_wait = 1;
1034 add_fd_to_set(sep->se_fd);
1035 break;
1036 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001037 }
1038 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001039}
1040
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001041static void retry_network_setup(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001042{
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001043 int save_errno = errno;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001044 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001045
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001046 alarm_armed = 0;
1047 for (sep = serv_list; sep; sep = sep->se_next) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001048 if (sep->se_fd == -1) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001049 prepare_socket_fd(sep);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001050#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001051 if (sep->se_fd != -1 && is_rpc_service(sep))
1052 register_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001053#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001054 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001055 }
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001056 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001057}
1058
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001059static void clean_up_and_exit(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001060{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001061 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001062
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001063 /* XXX signal race walking sep list */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001064 for (sep = serv_list; sep; sep = sep->se_next) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001065 if (sep->se_fd == -1)
1066 continue;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001067
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001068 switch (sep->se_family) {
1069 case AF_UNIX:
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001070 unlink(sep->se_service);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001071 break;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001072 default: /* case AF_INET, AF_INET6 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001073#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001074 if (sep->se_wait == 1 && is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001075 unregister_rpc(sep); /* XXX signal race */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001076#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001077 break;
1078 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001079 if (ENABLE_FEATURE_CLEAN_UP)
1080 close(sep->se_fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001081 }
Denis Vlasenko10457b92007-03-27 22:01:31 +00001082 remove_pidfile(_PATH_INETDPID);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001083 exit(EXIT_SUCCESS);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001084}
1085
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001086int inetd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001087int inetd_main(int argc UNUSED_PARAM, char **argv)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001088{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001089 struct sigaction sa, saved_pipe_handler;
1090 servtab_t *sep, *sep2;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001091 struct passwd *pwd;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001092 struct group *grp = grp; /* for compiler */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001093 int opt;
1094 pid_t pid;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001095 sigset_t omask;
Denis Vlasenko512a5452007-09-24 10:41:30 +00001096
1097 INIT_G();
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001098
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001099 real_uid = getuid();
1100 if (real_uid != 0) /* run by non-root user */
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001101 config_filename = NULL;
Denis Vlasenko5a142022007-03-26 13:20:54 +00001102
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001103 opt_complementary = "R+:q+"; /* -q N, -R N */
1104 opt = getopt32(argv, "R:feq:", &max_concurrency, &global_queuelen);
Denis Vlasenko5a142022007-03-26 13:20:54 +00001105 argv += optind;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001106 //argc -= optind;
1107 if (argv[0])
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001108 config_filename = argv[0];
1109 if (config_filename == NULL)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001110 bb_error_msg_and_die("non-root must specify config file");
Denis Vlasenko5a142022007-03-26 13:20:54 +00001111 if (!(opt & 2))
1112 bb_daemonize_or_rexec(0, argv - optind);
1113 else
1114 bb_sanitize_stdio();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001115 if (!(opt & 4)) {
1116 openlog(applet_name, LOG_PID | LOG_NOWAIT, LOG_DAEMON);
1117 logmode = LOGMODE_SYSLOG;
1118 }
Eric Andersen35e643b2003-07-28 07:40:39 +00001119
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001120 if (real_uid == 0) {
1121 /* run by root, ensure groups vector gets trashed */
Denis Vlasenko7a431b32007-01-14 01:29:06 +00001122 gid_t gid = getgid();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001123 setgroups(1, &gid);
1124 }
1125
Denis Vlasenko10457b92007-03-27 22:01:31 +00001126 write_pidfile(_PATH_INETDPID);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001127
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001128 /* never fails under Linux (except if you pass it bad arguments) */
1129 getrlimit(RLIMIT_NOFILE, &rlim_ofile);
1130 rlim_ofile_cur = rlim_ofile.rlim_cur;
1131 if (rlim_ofile_cur == RLIM_INFINITY) /* ! */
1132 rlim_ofile_cur = OPEN_MAX;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001133
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001134 memset(&sa, 0, sizeof(sa));
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001135 /*sigemptyset(&sa.sa_mask); - memset did it */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001136 sigaddset(&sa.sa_mask, SIGALRM);
1137 sigaddset(&sa.sa_mask, SIGCHLD);
1138 sigaddset(&sa.sa_mask, SIGHUP);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001139 sa.sa_handler = retry_network_setup;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001140 sigaction_set(SIGALRM, &sa);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001141 sa.sa_handler = reread_config_file;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001142 sigaction_set(SIGHUP, &sa);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001143 sa.sa_handler = reap_child;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001144 sigaction_set(SIGCHLD, &sa);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001145 sa.sa_handler = clean_up_and_exit;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001146 sigaction_set(SIGTERM, &sa);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001147 sa.sa_handler = clean_up_and_exit;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001148 sigaction_set(SIGINT, &sa);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001149 sa.sa_handler = SIG_IGN;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001150 sigaction(SIGPIPE, &sa, &saved_pipe_handler);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001151
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001152 reread_config_file(SIGHUP); /* load config from file */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001153
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001154 for (;;) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001155 int ready_fd_cnt;
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001156 int ctrl, accepted_fd, new_udp_fd;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001157 fd_set readable;
1158
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001159 if (maxsock < 0)
1160 recalculate_maxsock();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001161
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001162 readable = allsock; /* struct copy */
1163 /* if there are no fds to wait on, we will block
1164 * until signal wakes us up */
1165 ready_fd_cnt = select(maxsock + 1, &readable, NULL, NULL, NULL);
1166 if (ready_fd_cnt < 0) {
1167 if (errno != EINTR) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001168 bb_perror_msg("select");
1169 sleep(1);
1170 }
Glenn L McGrath82d42db2004-02-18 13:12:53 +00001171 continue;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001172 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001173
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001174 for (sep = serv_list; ready_fd_cnt && sep; sep = sep->se_next) {
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001175 if (sep->se_fd == -1 || !FD_ISSET(sep->se_fd, &readable))
1176 continue;
1177
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001178 ready_fd_cnt--;
1179 ctrl = sep->se_fd;
1180 accepted_fd = -1;
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001181 new_udp_fd = -1;
1182 if (!sep->se_wait) {
1183 if (sep->se_socktype == SOCK_STREAM) {
1184 ctrl = accepted_fd = accept(sep->se_fd, NULL, NULL);
1185 if (ctrl < 0) {
1186 if (errno != EINTR)
1187 bb_perror_msg("accept (for %s)", sep->se_service);
1188 continue;
1189 }
1190 }
1191 /* "nowait" udp */
1192 if (sep->se_socktype == SOCK_DGRAM
1193 && sep->se_family != AF_UNIX
1194 ) {
1195/* How udp "nowait" works:
1196 * child peeks at (received and buffered by kernel) UDP packet,
1197 * performs connect() on the socket so that it is linked only
1198 * to this peer. But this also affects parent, because descriptors
1199 * are shared after fork() a-la dup(). When parent performs
1200 * select(), it will see this descriptor connected to the peer (!)
1201 * and still readable, will act on it and mess things up
1202 * (can create many copies of same child, etc).
1203 * Parent must create and use new socket instead. */
1204 new_udp_fd = socket(sep->se_family, SOCK_DGRAM, 0);
1205 if (new_udp_fd < 0) { /* error: eat packet, forget about it */
1206 udp_err:
1207 recv(sep->se_fd, line, LINE_SIZE, MSG_DONTWAIT);
1208 continue;
1209 }
1210 setsockopt_reuseaddr(new_udp_fd);
1211 /* TODO: better do bind after vfork in parent,
1212 * so that we don't have two wildcard bound sockets
1213 * even for a brief moment? */
1214 if (bind(new_udp_fd, &sep->se_lsa->u.sa, sep->se_lsa->len) < 0) {
1215 close(new_udp_fd);
1216 goto udp_err;
1217 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001218 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001219 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001220
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001221 block_CHLD_HUP_ALRM(&omask);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001222 pid = 0;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001223#ifdef INETD_BUILTINS_ENABLED
1224 /* do we need to fork? */
1225 if (sep->se_builtin == NULL
1226 || (sep->se_socktype == SOCK_STREAM
1227 && sep->se_builtin->bi_fork))
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001228#endif
1229 {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001230 if (sep->se_max != 0) {
1231 if (++sep->se_count == 1)
1232 sep->se_time = monotonic_sec();
1233 else if (sep->se_count >= sep->se_max) {
1234 unsigned now = monotonic_sec();
1235 /* did we accumulate se_max connects too quickly? */
1236 if (now - sep->se_time <= CNT_INTERVAL) {
1237 bb_error_msg("%s/%s: too many connections, pausing",
1238 sep->se_service, sep->se_proto);
1239 remove_fd_from_set(sep->se_fd);
1240 close(sep->se_fd);
1241 sep->se_fd = -1;
1242 sep->se_count = 0;
1243 rearm_alarm(); /* will revive it in RETRYTIME sec */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001244 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001245 maybe_close(accepted_fd);
1246 continue; /* -> check next fd in fd set */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001247 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001248 sep->se_count = 0;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001249 }
1250 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001251 /* on NOMMU, streamed chargen
1252 * builtin wouldn't work, but it is
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001253 * not allowed on NOMMU (ifdefed out) */
1254#ifdef INETD_BUILTINS_ENABLED
1255 if (BB_MMU && sep->se_builtin)
1256 pid = fork();
1257 else
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001258#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001259 pid = vfork();
1260
1261 if (pid < 0) { /* fork error */
Denis Vlasenko82604e92008-07-01 15:59:42 +00001262 bb_perror_msg("fork");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001263 sleep(1);
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001264 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001265 maybe_close(accepted_fd);
1266 continue; /* -> check next fd in fd set */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001267 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001268 if (pid == 0)
1269 pid--; /* -1: "we did fork and we are child" */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001270 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001271 /* if pid == 0 here, we never forked */
1272
1273 if (pid > 0) { /* parent */
1274 if (sep->se_wait) {
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001275 /* tcp wait: we passed listening socket to child,
1276 * will wait for child to terminate */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001277 sep->se_wait = pid;
1278 remove_fd_from_set(sep->se_fd);
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001279 }
1280 if (new_udp_fd >= 0) {
1281 /* udp nowait: child connected the socket,
1282 * we created and will use new, unconnected one */
1283 xmove_fd(new_udp_fd, sep->se_fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001284 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001285 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001286 maybe_close(accepted_fd);
1287 continue; /* -> check next fd in fd set */
1288 }
1289
Denis Vlasenko85c24712008-03-17 09:04:04 +00001290 /* we are either child or didn't vfork at all */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001291#ifdef INETD_BUILTINS_ENABLED
1292 if (sep->se_builtin) {
Denis Vlasenko85c24712008-03-17 09:04:04 +00001293 if (pid) { /* "pid" is -1: we did vfork */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001294 close(sep->se_fd); /* listening socket */
1295 logmode = 0; /* make xwrite etc silent */
1296 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001297 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001298 if (sep->se_socktype == SOCK_STREAM)
1299 sep->se_builtin->bi_stream_fn(ctrl, sep);
1300 else
1301 sep->se_builtin->bi_dgram_fn(ctrl, sep);
Denis Vlasenko85c24712008-03-17 09:04:04 +00001302 if (pid) /* we did vfork */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001303 _exit(EXIT_FAILURE);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001304 maybe_close(accepted_fd);
1305 continue; /* -> check next fd in fd set */
1306 }
1307#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001308 /* child */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001309 setsid();
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001310 /* "nowait" udp */
1311 if (new_udp_fd >= 0) {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001312 len_and_sockaddr *lsa = xzalloc_lsa(sep->se_family);
1313 /* peek at the packet and remember peer addr */
1314 int r = recvfrom(ctrl, NULL, 0, MSG_PEEK|MSG_DONTWAIT,
1315 &lsa->u.sa, &lsa->len);
Denis Vlasenkoc6938402008-03-24 02:18:03 +00001316 if (r < 0)
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001317 goto do_exit1;
1318 /* make this socket "connected" to peer addr:
1319 * only packets from this peer will be recv'ed,
1320 * and bare write()/send() will work on it */
1321 connect(ctrl, &lsa->u.sa, lsa->len);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001322 free(lsa);
1323 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001324 /* prepare env and exec program */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001325 pwd = getpwnam(sep->se_user);
1326 if (pwd == NULL) {
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001327 bb_error_msg("%s: no such %s", sep->se_user, "user");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001328 goto do_exit1;
1329 }
1330 if (sep->se_group && (grp = getgrnam(sep->se_group)) == NULL) {
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001331 bb_error_msg("%s: no such %s", sep->se_group, "group");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001332 goto do_exit1;
1333 }
1334 if (real_uid != 0 && real_uid != pwd->pw_uid) {
1335 /* a user running private inetd */
1336 bb_error_msg("non-root must run services as himself");
1337 goto do_exit1;
1338 }
1339 if (pwd->pw_uid) {
1340 if (sep->se_group)
1341 pwd->pw_gid = grp->gr_gid;
Denis Vlasenko92305822008-03-20 15:12:58 +00001342 /* initgroups, setgid, setuid: */
1343 change_identity(pwd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001344 } else if (sep->se_group) {
1345 xsetgid(grp->gr_gid);
1346 setgroups(1, &grp->gr_gid);
1347 }
1348 if (rlim_ofile.rlim_cur != rlim_ofile_cur)
1349 if (setrlimit(RLIMIT_NOFILE, &rlim_ofile) < 0)
1350 bb_perror_msg("setrlimit");
1351 closelog();
1352 xmove_fd(ctrl, 0);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001353 xdup2(0, 1);
1354 xdup2(0, 2);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001355 /* NB: among others, this loop closes listening socket
1356 * for nowait stream children */
1357 for (sep2 = serv_list; sep2; sep2 = sep2->se_next)
1358 maybe_close(sep2->se_fd);
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001359 sigaction_set(SIGPIPE, &saved_pipe_handler);
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001360 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001361 BB_EXECVP(sep->se_program, sep->se_argv);
1362 bb_perror_msg("exec %s", sep->se_program);
1363 do_exit1:
1364 /* eat packet in udp case */
1365 if (sep->se_socktype != SOCK_STREAM)
1366 recv(0, line, LINE_SIZE, MSG_DONTWAIT);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001367 _exit(EXIT_FAILURE);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001368 } /* for (sep = servtab...) */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +00001369 } /* for (;;) */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001370}
Glenn L McGrath06e95652003-02-09 06:51:14 +00001371
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001372#if !BB_MMU
1373static const char *const cat_args[] = { "cat", NULL };
1374#endif
1375
Glenn L McGrath06e95652003-02-09 06:51:14 +00001376/*
1377 * Internet services provided internally by inetd:
1378 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001379#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001380/* Echo service -- echo data back. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001381/* ARGSUSED */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001382static void echo_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001383{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001384#if BB_MMU
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001385 while (1) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001386 ssize_t sz = safe_read(s, line, LINE_SIZE);
1387 if (sz <= 0)
1388 break;
1389 xwrite(s, line, sz);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001390 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001391#else
Denis Vlasenko85c24712008-03-17 09:04:04 +00001392 /* We are after vfork here! */
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001393 /* move network socket to stdin/stdout */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001394 xmove_fd(s, STDIN_FILENO);
1395 xdup2(STDIN_FILENO, STDOUT_FILENO);
1396 /* no error messages please... */
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001397 close(STDERR_FILENO);
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001398 xopen(bb_dev_null, O_WRONLY);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001399 BB_EXECVP("cat", (char**)cat_args);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001400 /* on failure we return to main, which does exit(EXIT_FAILURE) */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001401#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001402}
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001403static void echo_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001404{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001405 enum { BUFSIZE = 12*1024 }; /* for jumbo sized packets! :) */
1406 char *buf = xmalloc(BUFSIZE); /* too big for stack */
1407 int sz;
1408 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001409
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001410 lsa->len = sep->se_lsa->len;
1411 /* dgram builtins are non-forking - DONT BLOCK! */
1412 sz = recvfrom(s, buf, BUFSIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len);
1413 if (sz > 0)
1414 sendto(s, buf, sz, 0, &lsa->u.sa, lsa->len);
1415 free(buf);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001416}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001417#endif /* FEATURE_INETD_SUPPORT_BUILTIN_ECHO */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001418
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001419
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001420#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001421/* Discard service -- ignore data. MMU arches only. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001422/* ARGSUSED */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001423static void discard_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001424{
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001425#if BB_MMU
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001426 while (safe_read(s, line, LINE_SIZE) > 0)
1427 continue;
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001428#else
Denis Vlasenko85c24712008-03-17 09:04:04 +00001429 /* We are after vfork here! */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001430 /* move network socket to stdin */
1431 xmove_fd(s, STDIN_FILENO);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001432 /* discard output */
1433 close(STDOUT_FILENO);
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001434 xopen(bb_dev_null, O_WRONLY);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001435 /* no error messages please... */
1436 xdup2(STDOUT_FILENO, STDERR_FILENO);
1437 BB_EXECVP("cat", (char**)cat_args);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001438 /* on failure we return to main, which does exit(EXIT_FAILURE) */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001439#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001440}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001441/* ARGSUSED */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001442static void discard_dg(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001443{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001444 /* dgram builtins are non-forking - DONT BLOCK! */
1445 recv(s, line, LINE_SIZE, MSG_DONTWAIT);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001446}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001447#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DISCARD */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001448
1449
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001450#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Glenn L McGrath06e95652003-02-09 06:51:14 +00001451#define LINESIZ 72
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001452static void init_ring(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001453{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001454 int i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001455
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001456 end_ring = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001457 for (i = 0; i <= 128; ++i)
1458 if (isprint(i))
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001459 *end_ring++ = i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001460}
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001461/* Character generator. MMU arches only. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001462/* ARGSUSED */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001463static void chargen_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001464{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001465 char *rs;
1466 int len;
1467 char text[LINESIZ + 2];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001468
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001469 if (!end_ring) {
1470 init_ring();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001471 rs = ring;
1472 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001473
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001474 text[LINESIZ] = '\r';
1475 text[LINESIZ + 1] = '\n';
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001476 rs = ring;
1477 for (;;) {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001478 len = end_ring - rs;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001479 if (len >= LINESIZ)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001480 memmove(text, rs, LINESIZ);
1481 else {
1482 memmove(text, rs, len);
1483 memmove(text + len, ring, LINESIZ - len);
1484 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001485 if (++rs == end_ring)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001486 rs = ring;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001487 xwrite(s, text, sizeof(text));
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001488 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001489}
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001490/* ARGSUSED */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001491static void chargen_dg(int s, servtab_t *sep)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001492{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001493 int len;
1494 char text[LINESIZ + 2];
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001495 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1496
1497 /* Eat UDP packet which started it all */
1498 /* dgram builtins are non-forking - DONT BLOCK! */
1499 lsa->len = sep->se_lsa->len;
1500 if (recvfrom(s, text, sizeof(text), MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1501 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001502
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001503 if (!end_ring) {
1504 init_ring();
1505 ring_pos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001506 }
1507
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001508 len = end_ring - ring_pos;
Denis Vlasenko512a5452007-09-24 10:41:30 +00001509 if (len >= LINESIZ)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001510 memmove(text, ring_pos, LINESIZ);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001511 else {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001512 memmove(text, ring_pos, len);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001513 memmove(text + len, ring, LINESIZ - len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001514 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001515 if (++ring_pos == end_ring)
1516 ring_pos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001517 text[LINESIZ] = '\r';
1518 text[LINESIZ + 1] = '\n';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001519 sendto(s, text, sizeof(text), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001520}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001521#endif /* FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001522
1523
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001524#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001525/*
1526 * Return a machine readable date and time, in the form of the
1527 * number of seconds since midnight, Jan 1, 1900. Since gettimeofday
1528 * returns the number of seconds since midnight, Jan 1, 1970,
1529 * we must add 2208988800 seconds to this figure to make up for
1530 * some seventy years Bell Labs was asleep.
1531 */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001532static uint32_t machtime(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001533{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001534 struct timeval tv;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001535
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001536 gettimeofday(&tv, NULL);
1537 return htonl((uint32_t)(tv.tv_sec + 2208988800));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001538}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001539/* ARGSUSED */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001540static void machtime_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001541{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001542 uint32_t result;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001543
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001544 result = machtime();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001545 full_write(s, &result, sizeof(result));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001546}
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001547static void machtime_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001548{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001549 uint32_t result;
1550 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001551
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001552 lsa->len = sep->se_lsa->len;
1553 if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001554 return;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001555
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001556 result = machtime();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001557 sendto(s, &result, sizeof(result), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001558}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001559#endif /* FEATURE_INETD_SUPPORT_BUILTIN_TIME */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001560
1561
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001562#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001563/* Return human-readable time of day */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001564/* ARGSUSED */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001565static void daytime_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001566{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001567 time_t t;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001568
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001569 t = time(NULL);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001570 fdprintf(s, "%.24s\r\n", ctime(&t));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001571}
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001572static void daytime_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001573{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001574 time_t t;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001575 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1576
1577 lsa->len = sep->se_lsa->len;
1578 if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1579 return;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001580
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001581 t = time(NULL);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001582 sprintf(line, "%.24s\r\n", ctime(&t));
1583 sendto(s, line, strlen(line), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001584}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001585#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME */