blob: 72d51010eca5236f4c05a1c70763b158eed108e3 [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 */
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000226 unsigned se_time; /* when 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 Vlasenko4cb576e2008-11-05 11:36:22 +0000298 int maxsock; /* max fd# in allsock, -1: unknown */
299 /* whenever maxsock grows, prev_maxsock is set to new maxsock,
300 * but if maxsock is set to -1, prev_maxsock is not changed */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000301 int prev_maxsock;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000302 unsigned max_concurrency;
303 smallint alarm_armed;
304 uid_t real_uid; /* user ID who ran us */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000305 const char *config_filename;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000306 parser_t *parser;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000307 char *default_local_hostname;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000308#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000309 char *end_ring;
310 char *ring_pos;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000311 char ring[128];
312#endif
313 fd_set allsock;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000314 /* Used in next_line(), and as scratch read buffer */
315 char line[256]; /* _at least_ 256, see LINE_SIZE */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000316};
317#define G (*(struct globals*)&bb_common_bufsiz1)
318enum { LINE_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line) };
319struct BUG_G_too_big {
320 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
321};
322#define rlim_ofile_cur (G.rlim_ofile_cur )
323#define rlim_ofile (G.rlim_ofile )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000324#define serv_list (G.serv_list )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000325#define global_queuelen (G.global_queuelen)
Denis Vlasenko512a5452007-09-24 10:41:30 +0000326#define maxsock (G.maxsock )
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000327#define prev_maxsock (G.prev_maxsock )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000328#define max_concurrency (G.max_concurrency)
329#define alarm_armed (G.alarm_armed )
330#define real_uid (G.real_uid )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000331#define config_filename (G.config_filename)
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000332#define parser (G.parser )
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000333#define default_local_hostname (G.default_local_hostname)
334#define first_ps_byte (G.first_ps_byte )
335#define last_ps_byte (G.last_ps_byte )
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000336#define end_ring (G.end_ring )
337#define ring_pos (G.ring_pos )
Denis Vlasenko512a5452007-09-24 10:41:30 +0000338#define ring (G.ring )
339#define allsock (G.allsock )
340#define line (G.line )
341#define INIT_G() do { \
342 rlim_ofile_cur = OPEN_MAX; \
343 global_queuelen = 128; \
344 config_filename = "/etc/inetd.conf"; \
345} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000346
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000347static void maybe_close(int fd)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000348{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000349 if (fd >= 0)
350 close(fd);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000351}
352
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000353// TODO: move to libbb?
354static len_and_sockaddr *xzalloc_lsa(int family)
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000355{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000356 len_and_sockaddr *lsa;
357 int sz;
358
359 sz = sizeof(struct sockaddr_in);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000360 if (family == AF_UNIX)
361 sz = sizeof(struct sockaddr_un);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000362#if ENABLE_FEATURE_IPV6
363 if (family == AF_INET6)
364 sz = sizeof(struct sockaddr_in6);
365#endif
366 lsa = xzalloc(LSA_LEN_SIZE + sz);
367 lsa->len = sz;
368 lsa->u.sa.sa_family = family;
Denis Vlasenkoc6938402008-03-24 02:18:03 +0000369 return lsa;
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000370}
371
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000372static void rearm_alarm(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000373{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000374 if (!alarm_armed) {
375 alarm_armed = 1;
376 alarm(RETRYTIME);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000377 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000378}
379
380static void block_CHLD_HUP_ALRM(sigset_t *m)
381{
382 sigemptyset(m);
383 sigaddset(m, SIGCHLD);
384 sigaddset(m, SIGHUP);
385 sigaddset(m, SIGALRM);
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000386 sigprocmask(SIG_BLOCK, m, m); /* old sigmask is stored in m */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000387}
388
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000389static void restore_sigmask(sigset_t *m)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000390{
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000391 sigprocmask(SIG_SETMASK, m, NULL);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000392}
Glenn L McGrath53766c42004-01-18 08:58:06 +0000393
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000394#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000395static void register_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000396{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000397 int n;
398 struct sockaddr_in ir_sin;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000399 socklen_t size;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000400
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000401 size = sizeof(ir_sin);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000402 if (getsockname(sep->se_fd, (struct sockaddr *) &ir_sin, &size) < 0) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000403 bb_perror_msg("getsockname");
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000404 return;
405 }
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000406
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000407 for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) {
408 pmap_unset(sep->se_rpcprog, n);
409 if (!pmap_set(sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port)))
410 bb_perror_msg("%s %s: pmap_set(%u,%u,%u,%u)",
411 sep->se_service, sep->se_proto,
412 sep->se_rpcprog, n, sep->se_proto_no, ntohs(ir_sin.sin_port));
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000413 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000414}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000415
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000416static void unregister_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000417{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000418 int n;
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000419
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000420 for (n = sep->se_rpcver_lo; n <= sep->se_rpcver_hi; n++) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000421 if (!pmap_unset(sep->se_rpcprog, n))
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000422 bb_perror_msg("pmap_unset(%u,%u)", sep->se_rpcprog, n);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000423 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000424}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000425#endif /* FEATURE_INETD_RPC */
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000426
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000427static void bump_nofile(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000428{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000429 enum { FD_CHUNK = 32 };
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000430 struct rlimit rl;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000431
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000432 /* Never fails under Linux (except if you pass it bad arguments) */
433 getrlimit(RLIMIT_NOFILE, &rl);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000434 rl.rlim_cur = MIN(rl.rlim_max, rl.rlim_cur + FD_CHUNK);
435 rl.rlim_cur = MIN(FD_SETSIZE, rl.rlim_cur + FD_CHUNK);
436 if (rl.rlim_cur <= rlim_ofile_cur) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000437 bb_error_msg("can't extend file limit, max = %d",
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000438 (int) rl.rlim_cur);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000439 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000440 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000441
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000442 if (setrlimit(RLIMIT_NOFILE, &rl) < 0) {
443 bb_perror_msg("setrlimit");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000444 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000445 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000446
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000447 rlim_ofile_cur = rl.rlim_cur;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000448}
449
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000450static void remove_fd_from_set(int fd)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000451{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000452 if (fd >= 0) {
453 FD_CLR(fd, &allsock);
454 maxsock = -1;
455 }
456}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000457
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000458static void add_fd_to_set(int fd)
459{
460 if (fd >= 0) {
461 FD_SET(fd, &allsock);
462 if (maxsock >= 0 && fd > maxsock) {
463 prev_maxsock = maxsock = fd;
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000464 if ((rlim_t)fd > rlim_ofile_cur - FD_MARGIN)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000465 bump_nofile();
466 }
467 }
468}
469
470static void recalculate_maxsock(void)
471{
472 int fd = 0;
Denis Vlasenko4cb576e2008-11-05 11:36:22 +0000473
474 /* We may have no services, in this case maxsock should still be >= 0
475 * (code elsewhere is not happy with maxsock == -1) */
476 maxsock = 0;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000477 while (fd <= prev_maxsock) {
478 if (FD_ISSET(fd, &allsock))
479 maxsock = fd;
480 fd++;
481 }
482 prev_maxsock = maxsock;
483 if ((rlim_t)maxsock > rlim_ofile_cur - FD_MARGIN)
484 bump_nofile();
485}
486
487static void prepare_socket_fd(servtab_t *sep)
488{
489 int r, fd;
490
491 fd = socket(sep->se_family, sep->se_socktype, 0);
492 if (fd < 0) {
493 bb_perror_msg("socket");
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000494 return;
495 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000496 setsockopt_reuseaddr(fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000497
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000498#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000499 if (is_rpc_service(sep)) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000500 struct passwd *pwd;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000501
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000502 /* zero out the port for all RPC services; let bind()
503 * find one. */
504 set_nport(sep->se_lsa, 0);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000505
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000506 /* for RPC services, attempt to use a reserved port
507 * if they are going to be running as root. */
508 if (real_uid == 0 && sep->se_family == AF_INET
509 && (pwd = getpwnam(sep->se_user)) != NULL
510 && pwd->pw_uid == 0
511 ) {
512 r = bindresvport(fd, &sep->se_lsa->u.sin);
513 } else {
514 r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
515 }
516 if (r == 0) {
517 int saveerrno = errno;
518 /* update lsa with port# */
519 getsockname(fd, &sep->se_lsa->u.sa, &sep->se_lsa->len);
520 errno = saveerrno;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000521 }
522 } else
Glenn L McGrath53766c42004-01-18 08:58:06 +0000523#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000524 {
525 if (sep->se_family == AF_UNIX) {
526 struct sockaddr_un *sun;
527 sun = (struct sockaddr_un*)&(sep->se_lsa->u.sa);
528 unlink(sun->sun_path);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000529 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000530 r = bind(fd, &sep->se_lsa->u.sa, sep->se_lsa->len);
531 }
532 if (r < 0) {
533 bb_perror_msg("%s/%s: bind",
534 sep->se_service, sep->se_proto);
535 close(fd);
536 rearm_alarm();
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000537 return;
Glenn L McGrath53766c42004-01-18 08:58:06 +0000538 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000539 if (sep->se_socktype == SOCK_STREAM)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000540 listen(fd, global_queuelen);
Glenn L McGrath53766c42004-01-18 08:58:06 +0000541
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000542 add_fd_to_set(fd);
543 sep->se_fd = fd;
544}
545
546static int reopen_config_file(void)
547{
548 free(default_local_hostname);
549 default_local_hostname = xstrdup("*");
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000550 if (parser != NULL)
551 config_close(parser);
552 parser = config_open(config_filename);
553 return (parser != NULL);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000554}
555
556static void close_config_file(void)
557{
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000558 if (parser) {
559 config_close(parser);
560 parser = NULL;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000561 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000562}
563
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000564static void free_servtab_strings(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000565{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000566 int i;
567
568 free(cp->se_local_hostname);
569 free(cp->se_service);
570 free(cp->se_proto);
571 free(cp->se_user);
572 free(cp->se_group);
573 free(cp->se_lsa); /* not a string in fact */
574 free(cp->se_program);
575 for (i = 0; i < MAXARGV; i++)
576 free(cp->se_argv[i]);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000577}
578
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000579static servtab_t *new_servtab(void)
580{
581 servtab_t *newtab = xzalloc(sizeof(servtab_t));
582 newtab->se_fd = -1; /* paranoia */
583 return newtab;
584}
585
586static servtab_t *dup_servtab(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000587{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000588 servtab_t *newtab;
589 int argc;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000590
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000591 newtab = new_servtab();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000592 *newtab = *sep; /* struct copy */
593 /* deep-copying strings */
594 newtab->se_service = xstrdup(newtab->se_service);
595 newtab->se_proto = xstrdup(newtab->se_proto);
596 newtab->se_user = xstrdup(newtab->se_user);
597 newtab->se_group = xstrdup(newtab->se_group);
598 newtab->se_program = xstrdup(newtab->se_program);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000599 for (argc = 0; argc <= MAXARGV; argc++)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000600 newtab->se_argv[argc] = xstrdup(newtab->se_argv[argc]);
601 /* NB: se_fd, se_hostaddr and se_next are always
602 * overwrittend by callers, so we don't bother resetting them
603 * to NULL/0/-1 etc */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000604
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000605 return newtab;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000606}
607
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000608/* gcc generates much more code if this is inlined */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000609static servtab_t *parse_one_line(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000610{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000611 int argc;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000612 char *token[6+MAXARGV];
613 char *p, *arg;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000614 char *hostdelim;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000615 servtab_t *sep;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000616 servtab_t *nsep;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000617 new:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000618 sep = new_servtab();
Denis Vlasenko13858992006-10-08 12:49:22 +0000619 more:
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000620 argc = config_read(parser, token, 6+MAXARGV, 1, "# \t", PARSE_NORMAL);
621 if (!argc) {
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000622 free(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000623 return NULL;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000624 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000625
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000626 /* [host:]service socktype proto wait user[:group] prog [args] */
627 /* Check for "host:...." line */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000628 arg = token[0];
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000629 hostdelim = strrchr(arg, ':');
630 if (hostdelim) {
631 *hostdelim = '\0';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000632 sep->se_local_hostname = xstrdup(arg);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000633 arg = hostdelim + 1;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000634 if (*arg == '\0' && argc == 1) {
635 /* Line has just "host:", change the
636 * default host for the following lines. */
637 free(default_local_hostname);
638 default_local_hostname = sep->se_local_hostname;
639 goto more;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000640 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000641 } else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000642 sep->se_local_hostname = xstrdup(default_local_hostname);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000643
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000644 /* service socktype proto wait user[:group] prog [args] */
645 sep->se_service = xstrdup(arg);
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000646
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000647 /* socktype proto wait user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000648 if (argc < 6) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000649 parse_err:
650 bb_error_msg("parse error on line %u, line is ignored",
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000651 parser->lineno);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000652 free_servtab_strings(sep);
653 /* Just "goto more" can make sep to carry over e.g.
654 * "rpc"-ness (by having se_rpcver_lo != 0).
655 * We will be more paranoid: */
656 free(sep);
657 goto new;
658 }
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000659
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000660 {
661 static int8_t SOCK_xxx[] ALIGN1 = {
662 -1,
663 SOCK_STREAM, SOCK_DGRAM, SOCK_RDM,
664 SOCK_SEQPACKET, SOCK_RAW
665 };
666 sep->se_socktype = SOCK_xxx[1 + index_in_strings(
667 "stream""\0" "dgram""\0" "rdm""\0"
668 "seqpacket""\0" "raw""\0"
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000669 , token[1])];
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000670 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000671
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000672 /* {unix,[rpc/]{tcp,udp}[6]} wait user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000673 sep->se_proto = arg = xstrdup(token[2]);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000674 if (strcmp(arg, "unix") == 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000675 sep->se_family = AF_UNIX;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000676 } else {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000677 char *six;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000678 sep->se_family = AF_INET;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000679 six = last_char_is(arg, '6');
680 if (six) {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000681#if ENABLE_FEATURE_IPV6
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000682 *six = '\0';
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000683 sep->se_family = AF_INET6;
684#else
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000685 bb_error_msg("%s: no support for IPv6", sep->se_proto);
686 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000687#endif
688 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000689 if (strncmp(arg, "rpc/", 4) == 0) {
690#if ENABLE_FEATURE_INETD_RPC
691 unsigned n;
692 arg += 4;
693 p = strchr(sep->se_service, '/');
694 if (p == NULL) {
695 bb_error_msg("no rpc version: '%s'", sep->se_service);
696 goto parse_err;
697 }
698 *p++ = '\0';
699 n = bb_strtou(p, &p, 10);
700 if (n > INT_MAX) {
701 bad_ver_spec:
702 bb_error_msg("bad rpc version");
703 goto parse_err;
704 }
705 sep->se_rpcver_lo = sep->se_rpcver_hi = n;
706 if (*p == '-') {
707 p++;
708 n = bb_strtou(p, &p, 10);
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000709 if (n > INT_MAX || (int)n < sep->se_rpcver_lo)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000710 goto bad_ver_spec;
711 sep->se_rpcver_hi = n;
712 }
713 if (*p != '\0')
714 goto bad_ver_spec;
715#else
716 bb_error_msg("no support for rpc services");
717 goto parse_err;
718#endif
719 }
720 /* we don't really need getprotobyname()! */
721 if (strcmp(arg, "tcp") == 0)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000722 sep->se_proto_no = IPPROTO_TCP; /* = 6 */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000723 if (strcmp(arg, "udp") == 0)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000724 sep->se_proto_no = IPPROTO_UDP; /* = 17 */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000725 if (six)
726 *six = '6';
727 if (!sep->se_proto_no) /* not tcp/udp?? */
728 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000729 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000730
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000731 /* [no]wait[.max] user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000732 arg = token[3];
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000733 sep->se_max = max_concurrency;
734 p = strchr(arg, '.');
735 if (p) {
736 *p++ = '\0';
737 sep->se_max = bb_strtou(p, NULL, 10);
738 if (errno)
739 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000740 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000741 sep->se_wait = (arg[0] != 'n' || arg[1] != 'o');
742 if (!sep->se_wait) /* "no" seen */
743 arg += 2;
744 if (strcmp(arg, "wait") != 0)
745 goto parse_err;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000746
747 /* user[:group] prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000748 sep->se_user = xstrdup(token[4]);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000749 arg = strchr(sep->se_user, '.');
750 if (arg == NULL)
751 arg = strchr(sep->se_user, ':');
752 if (arg) {
753 *arg++ = '\0';
754 sep->se_group = xstrdup(arg);
755 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000756
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000757 /* prog [args] */
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000758 sep->se_program = xstrdup(token[5]);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000759#ifdef INETD_BUILTINS_ENABLED
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000760 if (strcmp(sep->se_program, "internal") == 0
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000761 && strlen(sep->se_service) <= 7
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000762 && (sep->se_socktype == SOCK_STREAM
763 || sep->se_socktype == SOCK_DGRAM)
764 ) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000765 unsigned i;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000766 for (i = 0; i < ARRAY_SIZE(builtins); i++)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000767 if (strncmp(builtins[i].bi_service7, sep->se_service, 7) == 0)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000768 goto found_bi;
769 bb_error_msg("unknown internal service %s", sep->se_service);
770 goto parse_err;
771 found_bi:
772 sep->se_builtin = &builtins[i];
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000773 /* stream builtins must be "nowait", dgram must be "wait" */
774 if (sep->se_wait != (sep->se_socktype == SOCK_DGRAM))
775 goto parse_err;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000776 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000777#endif
778 argc = 0;
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000779 while ((arg = token[6+argc]) != NULL && argc < MAXARGV)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000780 sep->se_argv[argc++] = xstrdup(arg);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000781
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000782 /* catch mixups. "<service> stream udp ..." == wtf */
783 if (sep->se_socktype == SOCK_STREAM) {
784 if (sep->se_proto_no == IPPROTO_UDP)
785 goto parse_err;
786 }
787 if (sep->se_socktype == SOCK_DGRAM) {
788 if (sep->se_proto_no == IPPROTO_TCP)
789 goto parse_err;
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000790 }
791
Denis Vlasenkodf6b3ad2008-09-30 01:22:25 +0000792// bb_info_msg(
793// "ENTRY[%s][%s][%s][%d][%d][%d][%d][%d][%s][%s][%s]",
794// sep->se_local_hostname, sep->se_service, sep->se_proto, sep->se_wait, sep->se_proto_no,
795// sep->se_max, sep->se_count, sep->se_time, sep->se_user, sep->se_group, sep->se_program);
796
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000797 /* check if the hostname specifier is a comma separated list
798 * of hostnames. we'll make new entries for each address. */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000799 while ((hostdelim = strrchr(sep->se_local_hostname, ',')) != NULL) {
800 nsep = dup_servtab(sep);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000801 /* NUL terminate the hostname field of the existing entry,
802 * and make a dup for the new entry. */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000803 *hostdelim++ = '\0';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000804 nsep->se_local_hostname = xstrdup(hostdelim);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000805 nsep->se_next = sep->se_next;
806 sep->se_next = nsep;
807 }
808
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000809 /* was doing it here: */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000810 /* DNS resolution, create copies for each IP address */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000811 /* IPv6-ization destroyed it :( */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000812
813 return sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000814}
815
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000816static servtab_t *insert_in_servlist(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000817{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000818 servtab_t *sep;
819 sigset_t omask;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000820
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000821 sep = new_servtab();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000822 *sep = *cp; /* struct copy */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000823 sep->se_fd = -1;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000824#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000825 sep->se_rpcprog = -1;
826#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000827 block_CHLD_HUP_ALRM(&omask);
828 sep->se_next = serv_list;
829 serv_list = sep;
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000830 restore_sigmask(&omask);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000831 return sep;
832}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000833
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000834static int same_serv_addr_proto(servtab_t *old, servtab_t *new)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000835{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000836 if (strcmp(old->se_local_hostname, new->se_local_hostname) != 0)
837 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000838 if (strcmp(old->se_service, new->se_service) != 0)
839 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000840 if (strcmp(old->se_proto, new->se_proto) != 0)
841 return 0;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000842 return 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000843}
844
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000845static void reread_config_file(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000846{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000847 servtab_t *sep, *cp, **sepp;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000848 len_and_sockaddr *lsa;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000849 sigset_t omask;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000850 unsigned n;
851 uint16_t port;
Denis Vlasenkof54e62a2008-07-22 20:57:28 +0000852 int save_errno = errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000853
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000854 if (!reopen_config_file())
Denis Vlasenkof54e62a2008-07-22 20:57:28 +0000855 goto ret;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000856 for (sep = serv_list; sep; sep = sep->se_next)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000857 sep->se_checked = 0;
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000858
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000859 goto first_line;
860 while (1) {
861 if (cp == NULL) {
862 first_line:
863 cp = parse_one_line();
864 if (cp == NULL)
865 break;
866 }
867 for (sep = serv_list; sep; sep = sep->se_next)
868 if (same_serv_addr_proto(sep, cp))
869 goto equal_servtab;
870 /* not an "equal" servtab */
871 sep = insert_in_servlist(cp);
872 goto after_check;
873 equal_servtab:
874 {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000875 int i;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000876
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000877 block_CHLD_HUP_ALRM(&omask);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000878#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000879 if (is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000880 unregister_rpc(sep);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000881 sep->se_rpcver_lo = cp->se_rpcver_lo;
882 sep->se_rpcver_hi = cp->se_rpcver_hi;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000883#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000884 if (cp->se_wait == 0) {
885 /* New config says "nowait". If old one
886 * was "wait", we currently may be waiting
887 * for a child (and not accepting connects).
888 * Stop waiting, start listening again.
889 * (if it's not true, this op is harmless) */
890 add_fd_to_set(sep->se_fd);
891 }
892 sep->se_wait = cp->se_wait;
893 sep->se_max = cp->se_max;
894 /* string fields need more love - we don't want to leak them */
895#define SWAP(type, a, b) do { type c = (type)a; a = (type)b; b = (type)c; } while (0)
896 SWAP(char*, sep->se_user, cp->se_user);
897 SWAP(char*, sep->se_group, cp->se_group);
898 SWAP(char*, sep->se_program, cp->se_program);
899 for (i = 0; i < MAXARGV; i++)
900 SWAP(char*, sep->se_argv[i], cp->se_argv[i]);
901#undef SWAP
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000902 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000903 free_servtab_strings(cp);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000904 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000905 after_check:
906 /* cp->string_fields are consumed by insert_in_servlist()
907 * or freed at this point, cp itself is not yet freed. */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000908 sep->se_checked = 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000909
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000910 /* create new len_and_sockaddr */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000911 switch (sep->se_family) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000912 struct sockaddr_un *sun;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000913 case AF_UNIX:
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000914 lsa = xzalloc_lsa(AF_UNIX);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000915 sun = (struct sockaddr_un*)&lsa->u.sa;
Denis Vlasenko4cf1d082008-03-12 23:13:50 +0000916 safe_strncpy(sun->sun_path, sep->se_service, sizeof(sun->sun_path));
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000917 break;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000918
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000919 default: /* case AF_INET, case AF_INET6 */
920 n = bb_strtou(sep->se_service, NULL, 10);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000921#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000922 if (is_rpc_service(sep)) {
923 sep->se_rpcprog = n;
924 if (errno) { /* se_service is not numeric */
925 struct rpcent *rp = getrpcbyname(sep->se_service);
926 if (rp == NULL) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000927 bb_error_msg("%s: unknown rpc service", sep->se_service);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000928 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000929 }
930 sep->se_rpcprog = rp->r_number;
931 }
932 if (sep->se_fd == -1)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000933 prepare_socket_fd(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000934 if (sep->se_fd != -1)
935 register_rpc(sep);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000936 goto next_cp;
937 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000938#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000939 /* what port to listen on? */
940 port = htons(n);
941 if (errno || n > 0xffff) { /* se_service is not numeric */
942 char protoname[4];
943 struct servent *sp;
944 /* can result only in "tcp" or "udp": */
945 safe_strncpy(protoname, sep->se_proto, 4);
946 sp = getservbyname(sep->se_service, protoname);
947 if (sp == NULL) {
948 bb_error_msg("%s/%s: unknown service",
949 sep->se_service, sep->se_proto);
950 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000951 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000952 port = sp->s_port;
953 }
954 if (LONE_CHAR(sep->se_local_hostname, '*')) {
955 lsa = xzalloc_lsa(sep->se_family);
956 set_nport(lsa, port);
957 } else {
958 lsa = host_and_af2sockaddr(sep->se_local_hostname,
959 ntohs(port), sep->se_family);
960 if (!lsa) {
961 bb_error_msg("%s/%s: unknown host '%s'",
962 sep->se_service, sep->se_proto,
963 sep->se_local_hostname);
964 goto next_cp;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000965 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000966 }
967 break;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000968 } /* end of "switch (sep->se_family)" */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000969
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000970 /* did lsa change? Then close/open */
971 if (sep->se_lsa == NULL
972 || lsa->len != sep->se_lsa->len
973 || memcmp(&lsa->u.sa, &sep->se_lsa->u.sa, lsa->len) != 0
974 ) {
975 remove_fd_from_set(sep->se_fd);
976 maybe_close(sep->se_fd);
977 free(sep->se_lsa);
978 sep->se_lsa = lsa;
979 sep->se_fd = -1;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000980 } else {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000981 free(lsa);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000982 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +0000983 if (sep->se_fd == -1)
984 prepare_socket_fd(sep);
985 next_cp:
986 sep = cp->se_next;
987 free(cp);
988 cp = sep;
989 } /* end of "while (1) parse lines" */
990 close_config_file();
991
992 /* Purge anything not looked at above - these are stale entries,
993 * new config file doesnt have them. */
994 block_CHLD_HUP_ALRM(&omask);
995 sepp = &serv_list;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000996 while ((sep = *sepp)) {
997 if (sep->se_checked) {
998 sepp = &sep->se_next;
999 continue;
1000 }
1001 *sepp = sep->se_next;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001002 remove_fd_from_set(sep->se_fd);
1003 maybe_close(sep->se_fd);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001004#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001005 if (is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001006 unregister_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001007#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001008 if (sep->se_family == AF_UNIX)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001009 unlink(sep->se_service);
1010 free_servtab_strings(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001011 free(sep);
1012 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001013 restore_sigmask(&omask);
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001014 ret:
1015 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001016}
1017
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001018static void reap_child(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001019{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001020 pid_t pid;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001021 int status;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001022 servtab_t *sep;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001023 int save_errno = errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001024
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001025 for (;;) {
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001026 pid = wait_any_nohang(&status);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001027 if (pid <= 0)
1028 break;
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001029 for (sep = serv_list; sep; sep = sep->se_next) {
1030 if (sep->se_wait != pid)
1031 continue;
1032 /* One of our "wait" services */
1033 if (WIFEXITED(status) && WEXITSTATUS(status))
1034 bb_error_msg("%s: exit status 0x%x",
1035 sep->se_program, WEXITSTATUS(status));
1036 else if (WIFSIGNALED(status))
1037 bb_error_msg("%s: exit signal 0x%x",
1038 sep->se_program, WTERMSIG(status));
1039 sep->se_wait = 1;
1040 add_fd_to_set(sep->se_fd);
1041 break;
1042 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001043 }
1044 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001045}
1046
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001047static void retry_network_setup(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001048{
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001049 int save_errno = errno;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001050 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001051
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001052 alarm_armed = 0;
1053 for (sep = serv_list; sep; sep = sep->se_next) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001054 if (sep->se_fd == -1) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001055 prepare_socket_fd(sep);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001056#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001057 if (sep->se_fd != -1 && is_rpc_service(sep))
1058 register_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001059#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001060 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001061 }
Denis Vlasenkof54e62a2008-07-22 20:57:28 +00001062 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001063}
1064
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001065static void clean_up_and_exit(int sig UNUSED_PARAM)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001066{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001067 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001068
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001069 /* XXX signal race walking sep list */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001070 for (sep = serv_list; sep; sep = sep->se_next) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001071 if (sep->se_fd == -1)
1072 continue;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001073
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001074 switch (sep->se_family) {
1075 case AF_UNIX:
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001076 unlink(sep->se_service);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001077 break;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001078 default: /* case AF_INET, AF_INET6 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001079#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001080 if (sep->se_wait == 1 && is_rpc_service(sep))
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001081 unregister_rpc(sep); /* XXX signal race */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001082#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001083 break;
1084 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001085 if (ENABLE_FEATURE_CLEAN_UP)
1086 close(sep->se_fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001087 }
Denis Vlasenko10457b92007-03-27 22:01:31 +00001088 remove_pidfile(_PATH_INETDPID);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001089 exit(EXIT_SUCCESS);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001090}
1091
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001092int inetd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001093int inetd_main(int argc UNUSED_PARAM, char **argv)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001094{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001095 struct sigaction sa, saved_pipe_handler;
1096 servtab_t *sep, *sep2;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001097 struct passwd *pwd;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001098 struct group *grp = grp; /* for compiler */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001099 int opt;
1100 pid_t pid;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001101 sigset_t omask;
Denis Vlasenko512a5452007-09-24 10:41:30 +00001102
1103 INIT_G();
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001104
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001105 real_uid = getuid();
1106 if (real_uid != 0) /* run by non-root user */
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001107 config_filename = NULL;
Denis Vlasenko5a142022007-03-26 13:20:54 +00001108
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001109 opt_complementary = "R+:q+"; /* -q N, -R N */
1110 opt = getopt32(argv, "R:feq:", &max_concurrency, &global_queuelen);
Denis Vlasenko5a142022007-03-26 13:20:54 +00001111 argv += optind;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001112 //argc -= optind;
1113 if (argv[0])
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001114 config_filename = argv[0];
1115 if (config_filename == NULL)
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001116 bb_error_msg_and_die("non-root must specify config file");
Denis Vlasenko5a142022007-03-26 13:20:54 +00001117 if (!(opt & 2))
1118 bb_daemonize_or_rexec(0, argv - optind);
1119 else
1120 bb_sanitize_stdio();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001121 if (!(opt & 4)) {
1122 openlog(applet_name, LOG_PID | LOG_NOWAIT, LOG_DAEMON);
1123 logmode = LOGMODE_SYSLOG;
1124 }
Eric Andersen35e643b2003-07-28 07:40:39 +00001125
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001126 if (real_uid == 0) {
1127 /* run by root, ensure groups vector gets trashed */
Denis Vlasenko7a431b32007-01-14 01:29:06 +00001128 gid_t gid = getgid();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001129 setgroups(1, &gid);
1130 }
1131
Denis Vlasenko10457b92007-03-27 22:01:31 +00001132 write_pidfile(_PATH_INETDPID);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001133
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001134 /* never fails under Linux (except if you pass it bad arguments) */
1135 getrlimit(RLIMIT_NOFILE, &rlim_ofile);
1136 rlim_ofile_cur = rlim_ofile.rlim_cur;
1137 if (rlim_ofile_cur == RLIM_INFINITY) /* ! */
1138 rlim_ofile_cur = OPEN_MAX;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001139
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001140 memset(&sa, 0, sizeof(sa));
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001141 /*sigemptyset(&sa.sa_mask); - memset did it */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001142 sigaddset(&sa.sa_mask, SIGALRM);
1143 sigaddset(&sa.sa_mask, SIGCHLD);
1144 sigaddset(&sa.sa_mask, SIGHUP);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001145 sa.sa_handler = retry_network_setup;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001146 sigaction_set(SIGALRM, &sa);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001147 sa.sa_handler = reread_config_file;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001148 sigaction_set(SIGHUP, &sa);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001149 sa.sa_handler = reap_child;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001150 sigaction_set(SIGCHLD, &sa);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001151 sa.sa_handler = clean_up_and_exit;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001152 sigaction_set(SIGTERM, &sa);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001153 sa.sa_handler = clean_up_and_exit;
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001154 sigaction_set(SIGINT, &sa);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001155 sa.sa_handler = SIG_IGN;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001156 sigaction(SIGPIPE, &sa, &saved_pipe_handler);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001157
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001158 reread_config_file(SIGHUP); /* load config from file */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001159
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001160 for (;;) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001161 int ready_fd_cnt;
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001162 int ctrl, accepted_fd, new_udp_fd;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001163 fd_set readable;
1164
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001165 if (maxsock < 0)
1166 recalculate_maxsock();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001167
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001168 readable = allsock; /* struct copy */
1169 /* if there are no fds to wait on, we will block
Denis Vlasenko4cb576e2008-11-05 11:36:22 +00001170 * until signal wakes us up (maxsock == 0, but readable
1171 * never contains fds 0 and 1...) */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001172 ready_fd_cnt = select(maxsock + 1, &readable, NULL, NULL, NULL);
1173 if (ready_fd_cnt < 0) {
1174 if (errno != EINTR) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001175 bb_perror_msg("select");
1176 sleep(1);
1177 }
Glenn L McGrath82d42db2004-02-18 13:12:53 +00001178 continue;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001179 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001180
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001181 for (sep = serv_list; ready_fd_cnt && sep; sep = sep->se_next) {
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001182 if (sep->se_fd == -1 || !FD_ISSET(sep->se_fd, &readable))
1183 continue;
1184
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001185 ready_fd_cnt--;
1186 ctrl = sep->se_fd;
1187 accepted_fd = -1;
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001188 new_udp_fd = -1;
1189 if (!sep->se_wait) {
1190 if (sep->se_socktype == SOCK_STREAM) {
1191 ctrl = accepted_fd = accept(sep->se_fd, NULL, NULL);
1192 if (ctrl < 0) {
1193 if (errno != EINTR)
1194 bb_perror_msg("accept (for %s)", sep->se_service);
1195 continue;
1196 }
1197 }
1198 /* "nowait" udp */
1199 if (sep->se_socktype == SOCK_DGRAM
1200 && sep->se_family != AF_UNIX
1201 ) {
1202/* How udp "nowait" works:
1203 * child peeks at (received and buffered by kernel) UDP packet,
1204 * performs connect() on the socket so that it is linked only
1205 * to this peer. But this also affects parent, because descriptors
1206 * are shared after fork() a-la dup(). When parent performs
1207 * select(), it will see this descriptor connected to the peer (!)
1208 * and still readable, will act on it and mess things up
1209 * (can create many copies of same child, etc).
1210 * Parent must create and use new socket instead. */
1211 new_udp_fd = socket(sep->se_family, SOCK_DGRAM, 0);
1212 if (new_udp_fd < 0) { /* error: eat packet, forget about it */
1213 udp_err:
1214 recv(sep->se_fd, line, LINE_SIZE, MSG_DONTWAIT);
1215 continue;
1216 }
1217 setsockopt_reuseaddr(new_udp_fd);
1218 /* TODO: better do bind after vfork in parent,
1219 * so that we don't have two wildcard bound sockets
1220 * even for a brief moment? */
1221 if (bind(new_udp_fd, &sep->se_lsa->u.sa, sep->se_lsa->len) < 0) {
1222 close(new_udp_fd);
1223 goto udp_err;
1224 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001225 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001226 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001227
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001228 block_CHLD_HUP_ALRM(&omask);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001229 pid = 0;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001230#ifdef INETD_BUILTINS_ENABLED
1231 /* do we need to fork? */
1232 if (sep->se_builtin == NULL
1233 || (sep->se_socktype == SOCK_STREAM
1234 && sep->se_builtin->bi_fork))
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001235#endif
1236 {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001237 if (sep->se_max != 0) {
1238 if (++sep->se_count == 1)
1239 sep->se_time = monotonic_sec();
1240 else if (sep->se_count >= sep->se_max) {
1241 unsigned now = monotonic_sec();
1242 /* did we accumulate se_max connects too quickly? */
1243 if (now - sep->se_time <= CNT_INTERVAL) {
1244 bb_error_msg("%s/%s: too many connections, pausing",
1245 sep->se_service, sep->se_proto);
1246 remove_fd_from_set(sep->se_fd);
1247 close(sep->se_fd);
1248 sep->se_fd = -1;
1249 sep->se_count = 0;
1250 rearm_alarm(); /* will revive it in RETRYTIME sec */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001251 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001252 maybe_close(accepted_fd);
1253 continue; /* -> check next fd in fd set */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001254 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001255 sep->se_count = 0;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001256 }
1257 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001258 /* on NOMMU, streamed chargen
1259 * builtin wouldn't work, but it is
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001260 * not allowed on NOMMU (ifdefed out) */
1261#ifdef INETD_BUILTINS_ENABLED
1262 if (BB_MMU && sep->se_builtin)
1263 pid = fork();
1264 else
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001265#endif
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001266 pid = vfork();
1267
1268 if (pid < 0) { /* fork error */
Denis Vlasenko82604e92008-07-01 15:59:42 +00001269 bb_perror_msg("fork");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001270 sleep(1);
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001271 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001272 maybe_close(accepted_fd);
1273 continue; /* -> check next fd in fd set */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001274 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001275 if (pid == 0)
1276 pid--; /* -1: "we did fork and we are child" */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001277 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001278 /* if pid == 0 here, we never forked */
1279
1280 if (pid > 0) { /* parent */
1281 if (sep->se_wait) {
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001282 /* tcp wait: we passed listening socket to child,
1283 * will wait for child to terminate */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001284 sep->se_wait = pid;
1285 remove_fd_from_set(sep->se_fd);
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001286 }
1287 if (new_udp_fd >= 0) {
1288 /* udp nowait: child connected the socket,
1289 * we created and will use new, unconnected one */
1290 xmove_fd(new_udp_fd, sep->se_fd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001291 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001292 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001293 maybe_close(accepted_fd);
1294 continue; /* -> check next fd in fd set */
1295 }
1296
Denis Vlasenko85c24712008-03-17 09:04:04 +00001297 /* we are either child or didn't vfork at all */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001298#ifdef INETD_BUILTINS_ENABLED
1299 if (sep->se_builtin) {
Denis Vlasenko85c24712008-03-17 09:04:04 +00001300 if (pid) { /* "pid" is -1: we did vfork */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001301 close(sep->se_fd); /* listening socket */
Denis Vlasenkoa19e6492009-03-11 14:40:00 +00001302 logmode = LOGMODE_NONE; /* make xwrite etc silent */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001303 }
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001304 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001305 if (sep->se_socktype == SOCK_STREAM)
1306 sep->se_builtin->bi_stream_fn(ctrl, sep);
1307 else
1308 sep->se_builtin->bi_dgram_fn(ctrl, sep);
Denis Vlasenko85c24712008-03-17 09:04:04 +00001309 if (pid) /* we did vfork */
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001310 _exit(EXIT_FAILURE);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001311 maybe_close(accepted_fd);
1312 continue; /* -> check next fd in fd set */
1313 }
1314#endif
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001315 /* child */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001316 setsid();
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001317 /* "nowait" udp */
1318 if (new_udp_fd >= 0) {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001319 len_and_sockaddr *lsa = xzalloc_lsa(sep->se_family);
1320 /* peek at the packet and remember peer addr */
1321 int r = recvfrom(ctrl, NULL, 0, MSG_PEEK|MSG_DONTWAIT,
1322 &lsa->u.sa, &lsa->len);
Denis Vlasenkoc6938402008-03-24 02:18:03 +00001323 if (r < 0)
Denis Vlasenkoaefed942008-03-17 08:35:44 +00001324 goto do_exit1;
1325 /* make this socket "connected" to peer addr:
1326 * only packets from this peer will be recv'ed,
1327 * and bare write()/send() will work on it */
1328 connect(ctrl, &lsa->u.sa, lsa->len);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001329 free(lsa);
1330 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001331 /* prepare env and exec program */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001332 pwd = getpwnam(sep->se_user);
1333 if (pwd == NULL) {
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001334 bb_error_msg("%s: no such %s", sep->se_user, "user");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001335 goto do_exit1;
1336 }
1337 if (sep->se_group && (grp = getgrnam(sep->se_group)) == NULL) {
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001338 bb_error_msg("%s: no such %s", sep->se_group, "group");
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001339 goto do_exit1;
1340 }
1341 if (real_uid != 0 && real_uid != pwd->pw_uid) {
1342 /* a user running private inetd */
1343 bb_error_msg("non-root must run services as himself");
1344 goto do_exit1;
1345 }
1346 if (pwd->pw_uid) {
1347 if (sep->se_group)
1348 pwd->pw_gid = grp->gr_gid;
Denis Vlasenko92305822008-03-20 15:12:58 +00001349 /* initgroups, setgid, setuid: */
1350 change_identity(pwd);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001351 } else if (sep->se_group) {
1352 xsetgid(grp->gr_gid);
1353 setgroups(1, &grp->gr_gid);
1354 }
1355 if (rlim_ofile.rlim_cur != rlim_ofile_cur)
1356 if (setrlimit(RLIMIT_NOFILE, &rlim_ofile) < 0)
1357 bb_perror_msg("setrlimit");
1358 closelog();
1359 xmove_fd(ctrl, 0);
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001360 xdup2(0, 1);
1361 xdup2(0, 2);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001362 /* NB: among others, this loop closes listening socket
1363 * for nowait stream children */
1364 for (sep2 = serv_list; sep2; sep2 = sep2->se_next)
1365 maybe_close(sep2->se_fd);
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001366 sigaction_set(SIGPIPE, &saved_pipe_handler);
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001367 restore_sigmask(&omask);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001368 BB_EXECVP(sep->se_program, sep->se_argv);
1369 bb_perror_msg("exec %s", sep->se_program);
1370 do_exit1:
1371 /* eat packet in udp case */
1372 if (sep->se_socktype != SOCK_STREAM)
1373 recv(0, line, LINE_SIZE, MSG_DONTWAIT);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001374 _exit(EXIT_FAILURE);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001375 } /* for (sep = servtab...) */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +00001376 } /* for (;;) */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001377}
Glenn L McGrath06e95652003-02-09 06:51:14 +00001378
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001379#if !BB_MMU
1380static const char *const cat_args[] = { "cat", NULL };
1381#endif
1382
Glenn L McGrath06e95652003-02-09 06:51:14 +00001383/*
1384 * Internet services provided internally by inetd:
1385 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001386#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001387/* Echo service -- echo data back. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001388/* ARGSUSED */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001389static void echo_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001390{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001391#if BB_MMU
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001392 while (1) {
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001393 ssize_t sz = safe_read(s, line, LINE_SIZE);
1394 if (sz <= 0)
1395 break;
1396 xwrite(s, line, sz);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001397 }
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001398#else
Denis Vlasenko85c24712008-03-17 09:04:04 +00001399 /* We are after vfork here! */
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001400 /* move network socket to stdin/stdout */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001401 xmove_fd(s, STDIN_FILENO);
1402 xdup2(STDIN_FILENO, STDOUT_FILENO);
1403 /* no error messages please... */
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001404 close(STDERR_FILENO);
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001405 xopen(bb_dev_null, O_WRONLY);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001406 BB_EXECVP("cat", (char**)cat_args);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001407 /* on failure we return to main, which does exit(EXIT_FAILURE) */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001408#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001409}
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001410static void echo_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001411{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001412 enum { BUFSIZE = 12*1024 }; /* for jumbo sized packets! :) */
1413 char *buf = xmalloc(BUFSIZE); /* too big for stack */
1414 int sz;
1415 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001416
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001417 lsa->len = sep->se_lsa->len;
1418 /* dgram builtins are non-forking - DONT BLOCK! */
1419 sz = recvfrom(s, buf, BUFSIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len);
1420 if (sz > 0)
1421 sendto(s, buf, sz, 0, &lsa->u.sa, lsa->len);
1422 free(buf);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001423}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001424#endif /* FEATURE_INETD_SUPPORT_BUILTIN_ECHO */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001425
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001426
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001427#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenko4cb576e2008-11-05 11:36:22 +00001428/* Discard service -- ignore data. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001429/* ARGSUSED */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001430static void discard_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001431{
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001432#if BB_MMU
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001433 while (safe_read(s, line, LINE_SIZE) > 0)
1434 continue;
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001435#else
Denis Vlasenko85c24712008-03-17 09:04:04 +00001436 /* We are after vfork here! */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001437 /* move network socket to stdin */
1438 xmove_fd(s, STDIN_FILENO);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001439 /* discard output */
1440 close(STDOUT_FILENO);
Bernhard Reutner-Fischer02a1c6a2008-07-17 15:13:31 +00001441 xopen(bb_dev_null, O_WRONLY);
Denis Vlasenko02f12f52008-03-29 16:00:52 +00001442 /* no error messages please... */
1443 xdup2(STDOUT_FILENO, STDERR_FILENO);
1444 BB_EXECVP("cat", (char**)cat_args);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00001445 /* on failure we return to main, which does exit(EXIT_FAILURE) */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001446#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001447}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001448/* ARGSUSED */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001449static void discard_dg(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001450{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001451 /* dgram builtins are non-forking - DONT BLOCK! */
1452 recv(s, line, LINE_SIZE, MSG_DONTWAIT);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001453}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001454#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DISCARD */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001455
1456
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001457#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Glenn L McGrath06e95652003-02-09 06:51:14 +00001458#define LINESIZ 72
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001459static void init_ring(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001460{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001461 int i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001462
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001463 end_ring = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001464 for (i = 0; i <= 128; ++i)
1465 if (isprint(i))
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001466 *end_ring++ = i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001467}
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001468/* Character generator. MMU arches only. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001469/* ARGSUSED */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001470static void chargen_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001471{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001472 char *rs;
1473 int len;
1474 char text[LINESIZ + 2];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001475
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001476 if (!end_ring) {
1477 init_ring();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001478 rs = ring;
1479 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001480
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001481 text[LINESIZ] = '\r';
1482 text[LINESIZ + 1] = '\n';
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001483 rs = ring;
1484 for (;;) {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001485 len = end_ring - rs;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001486 if (len >= LINESIZ)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001487 memmove(text, rs, LINESIZ);
1488 else {
1489 memmove(text, rs, len);
1490 memmove(text + len, ring, LINESIZ - len);
1491 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001492 if (++rs == end_ring)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001493 rs = ring;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001494 xwrite(s, text, sizeof(text));
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001495 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001496}
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001497/* ARGSUSED */
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001498static void chargen_dg(int s, servtab_t *sep)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001499{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001500 int len;
1501 char text[LINESIZ + 2];
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001502 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1503
1504 /* Eat UDP packet which started it all */
1505 /* dgram builtins are non-forking - DONT BLOCK! */
1506 lsa->len = sep->se_lsa->len;
1507 if (recvfrom(s, text, sizeof(text), MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1508 return;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001509
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001510 if (!end_ring) {
1511 init_ring();
1512 ring_pos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001513 }
1514
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001515 len = end_ring - ring_pos;
Denis Vlasenko512a5452007-09-24 10:41:30 +00001516 if (len >= LINESIZ)
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001517 memmove(text, ring_pos, LINESIZ);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001518 else {
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001519 memmove(text, ring_pos, len);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001520 memmove(text + len, ring, LINESIZ - len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001521 }
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001522 if (++ring_pos == end_ring)
1523 ring_pos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001524 text[LINESIZ] = '\r';
1525 text[LINESIZ + 1] = '\n';
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001526 sendto(s, text, sizeof(text), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001527}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001528#endif /* FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001529
1530
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001531#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001532/*
1533 * Return a machine readable date and time, in the form of the
1534 * number of seconds since midnight, Jan 1, 1900. Since gettimeofday
1535 * returns the number of seconds since midnight, Jan 1, 1970,
1536 * we must add 2208988800 seconds to this figure to make up for
1537 * some seventy years Bell Labs was asleep.
1538 */
Denis Vlasenko4cf1d082008-03-12 23:13:50 +00001539static uint32_t machtime(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001540{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001541 struct timeval tv;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001542
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001543 gettimeofday(&tv, NULL);
1544 return htonl((uint32_t)(tv.tv_sec + 2208988800));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001545}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001546/* ARGSUSED */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001547static void machtime_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001548{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001549 uint32_t result;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001550
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001551 result = machtime();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001552 full_write(s, &result, sizeof(result));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001553}
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001554static void machtime_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001555{
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001556 uint32_t result;
1557 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001558
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001559 lsa->len = sep->se_lsa->len;
1560 if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001561 return;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001562
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001563 result = machtime();
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001564 sendto(s, &result, sizeof(result), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001565}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001566#endif /* FEATURE_INETD_SUPPORT_BUILTIN_TIME */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001567
1568
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001569#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001570/* Return human-readable time of day */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001571/* ARGSUSED */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001572static void daytime_stream(int s, servtab_t *sep UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001573{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001574 time_t t;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001575
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001576 t = time(NULL);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001577 fdprintf(s, "%.24s\r\n", ctime(&t));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001578}
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001579static void daytime_dg(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001580{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001581 time_t t;
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001582 len_and_sockaddr *lsa = alloca(LSA_LEN_SIZE + sep->se_lsa->len);
1583
1584 lsa->len = sep->se_lsa->len;
1585 if (recvfrom(s, line, LINE_SIZE, MSG_DONTWAIT, &lsa->u.sa, &lsa->len) < 0)
1586 return;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001587
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001588 t = time(NULL);
Denis Vlasenko4e6d5112008-03-12 22:14:34 +00001589 sprintf(line, "%.24s\r\n", ctime(&t));
1590 sendto(s, line, strlen(line), 0, &lsa->u.sa, lsa->len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001591}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001592#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME */