blob: 6d72e13e8fca498247a8c5a770906305e041aeff [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> */
Glenn L McGrath06e95652003-02-09 06:51:14 +00006/*
7 * Copyright (c) 1983,1991 The Regents of the University of California.
8 * All rights reserved.
9 *
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +000010 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
Glenn L McGrath06e95652003-02-09 06:51:14 +000025 *
Denis Vlasenkof8138d12007-01-11 23:26:13 +000026 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +000027 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
Glenn L McGrath06e95652003-02-09 06:51:14 +000037 */
38
Denis Vlasenkof8138d12007-01-11 23:26:13 +000039/* Inetd - Internet super-server
Glenn L McGrath06e95652003-02-09 06:51:14 +000040 *
41 * This program invokes all internet services as needed.
42 * connection-oriented services are invoked each time a
43 * connection is made, by creating a process. This process
44 * is passed the connection as file descriptor 0 and is
45 * expected to do a getpeername to find out the source host
46 * and port.
47 *
48 * Datagram oriented services are invoked when a datagram
49 * arrives; a process is created and passed a pending message
50 * on file descriptor 0. Datagram servers may either connect
51 * to their peer, freeing up the original socket for inetd
Denis Vlasenkof8138d12007-01-11 23:26:13 +000052 * to receive further messages on, or "take over the socket",
Glenn L McGrath06e95652003-02-09 06:51:14 +000053 * processing all arriving datagrams and, eventually, timing
Denis Vlasenkof8138d12007-01-11 23:26:13 +000054 * out. The first type of server is said to be "multi-threaded";
55 * the second type of server "single-threaded".
Glenn L McGrath06e95652003-02-09 06:51:14 +000056 *
57 * Inetd uses a configuration file which is read at startup
58 * and, possibly, at some later time in response to a hangup signal.
Denis Vlasenkof8138d12007-01-11 23:26:13 +000059 * The configuration file is "free format" with fields given in the
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +000060 * order shown below. Continuation lines for an entry must begin with
Glenn L McGrath06e95652003-02-09 06:51:14 +000061 * a space or tab. All fields must be present in each entry.
62 *
63 * service name must be in /etc/services
64 * socket type stream/dgram/raw/rdm/seqpacket
65 * protocol must be in /etc/protocols
66 * wait/nowait[.max] single-threaded/multi-threaded, max #
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +000067 * user[.group] or user[:group] user/group to run daemon as
Glenn L McGrath06e95652003-02-09 06:51:14 +000068 * server program full path name
69 * server program arguments maximum of MAXARGS (20)
70 *
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +000071 * For RPC services
72 * service name/version must be in /etc/rpc
73 * socket type stream/dgram/raw/rdm/seqpacket
74 * protocol must be in /etc/protocols
75 * wait/nowait[.max] single-threaded/multi-threaded
76 * user[.group] or user[:group] user to run daemon as
77 * server program full path name
78 * server program arguments maximum of MAXARGS (20)
79 *
80 * For non-RPC services, the "service name" can be of the form
81 * hostaddress:servicename, in which case the hostaddress is used
82 * as the host portion of the address to listen on. If hostaddress
83 * consists of a single `*' character, INADDR_ANY is used.
84 *
85 * A line can also consist of just
86 * hostaddress:
87 * where hostaddress is as in the preceding paragraph. Such a line must
88 * have no further fields; the specified hostaddress is remembered and
89 * used for all further lines that have no hostaddress specified,
90 * until the next such line (or EOF). (This is why * is provided to
91 * allow explicit specification of INADDR_ANY.) A line
92 * *:
93 * is implicitly in effect at the beginning of the file.
94 *
95 * The hostaddress specifier may (and often will) contain dots;
96 * the service name must not.
97 *
98 * For RPC services, host-address specifiers are accepted and will
99 * work to some extent; however, because of limitations in the
100 * portmapper interface, it will not work to try to give more than
101 * one line for any given RPC service, even if the host-address
102 * specifiers are different.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000103 *
104 * Comment lines are indicated by a `#' in column 1.
105 */
106
Denis Vlasenkof8138d12007-01-11 23:26:13 +0000107/* inetd rules for passing file descriptors to children
108 * (http://www.freebsd.org/cgi/man.cgi?query=inetd):
109 *
110 * The wait/nowait entry specifies whether the server that is invoked by
111 * inetd will take over the socket associated with the service access point,
112 * and thus whether inetd should wait for the server to exit before listen-
113 * ing for new service requests. Datagram servers must use "wait", as
114 * they are always invoked with the original datagram socket bound to the
115 * specified service address. These servers must read at least one datagram
116 * from the socket before exiting. If a datagram server connects to its
117 * peer, freeing the socket so inetd can receive further messages on the
118 * socket, it is said to be a "multi-threaded" server; it should read one
119 * datagram from the socket and create a new socket connected to the peer.
120 * It should fork, and the parent should then exit to allow inetd to check
121 * for new service requests to spawn new servers. Datagram servers which
122 * process all incoming datagrams on a socket and eventually time out are
123 * said to be "single-threaded". The comsat(8), (biff(1)) and talkd(8)
124 * utilities are both examples of the latter type of datagram server. The
125 * tftpd(8) utility is an example of a multi-threaded datagram server.
126 *
127 * Servers using stream sockets generally are multi-threaded and use the
128 * "nowait" entry. Connection requests for these services are accepted by
129 * inetd, and the server is given only the newly-accepted socket connected
130 * to a client of the service. Most stream-based services operate in this
131 * manner. Stream-based servers that use "wait" are started with the lis-
132 * tening service socket, and must accept at least one connection request
133 * before exiting. Such a server would normally accept and process incoming
134 * connection requests until a timeout.
135 */
136
137/* Here's the scoop concerning the user[.:]group feature:
Glenn L McGrath06e95652003-02-09 06:51:14 +0000138 *
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000139 * 1) set-group-option off.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000140 *
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000141 * a) user = root: NO setuid() or setgid() is done
Glenn L McGrath06e95652003-02-09 06:51:14 +0000142 *
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000143 * b) other: setgid(primary group as found in passwd)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000144 * initgroups(name, primary group)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000145 * setuid()
Glenn L McGrath06e95652003-02-09 06:51:14 +0000146 *
147 * 2) set-group-option on.
148 *
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000149 * a) user = root: setgid(specified group)
150 * NO initgroups()
151 * NO setuid()
Glenn L McGrath06e95652003-02-09 06:51:14 +0000152 *
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000153 * b) other: setgid(specified group)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000154 * initgroups(name, specified group)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000155 * setuid()
Glenn L McGrath06e95652003-02-09 06:51:14 +0000156 */
157
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000158#include "libbb.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +0000159#include <syslog.h>
Rob Landley099ed502006-08-28 09:41:49 +0000160#include <sys/un.h>
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000161
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000162//#define ENABLE_FEATURE_INETD_RPC 1
163//#define ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO 1
164//#define ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD 1
165//#define ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME 1
166//#define ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME 1
167//#define ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN 1
168//#define ENABLE_FEATURE_IPV6 1
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000169
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000170#if ENABLE_FEATURE_INETD_RPC
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000171#include <rpc/rpc.h>
172#include <rpc/pmap_clnt.h>
Glenn L McGrathff6ec8a2004-01-17 02:47:45 +0000173#endif
174
Denis Vlasenko5b340832007-05-17 23:02:14 +0000175extern char **environ;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000176
Glenn L McGrath06e95652003-02-09 06:51:14 +0000177
Denis Vlasenko5b340832007-05-17 23:02:14 +0000178#define _PATH_INETDPID "/var/run/inetd.pid"
179
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000180#define CNT_INTVL 60 /* servers in CNT_INTVL sec. */
181#define RETRYTIME (60*10) /* retry after bind or server fail */
182
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000183#ifndef RLIMIT_NOFILE
184#define RLIMIT_NOFILE RLIMIT_OFILE
185#endif
186
187#ifndef OPEN_MAX
188#define OPEN_MAX 64
189#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000190
191/* Reserve some descriptors, 3 stdio + at least: 1 log, 1 conf. file */
Denis Vlasenkof8138d12007-01-11 23:26:13 +0000192#define FD_MARGIN 8
Glenn L McGrath06e95652003-02-09 06:51:14 +0000193
Glenn L McGrathb1207b32003-02-10 22:31:09 +0000194/* Check unsupporting builtin */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000195#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO || \
196 ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD || \
197 ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME || \
198 ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME || \
199 ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Glenn L McGrathc3b134f2004-01-17 01:26:53 +0000200# define INETD_FEATURE_ENABLED
Glenn L McGrathb1207b32003-02-10 22:31:09 +0000201#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000202
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000203#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO || \
204 ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD || \
205 ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000206# define INETD_SETPROCTITLE
Glenn L McGrath06e95652003-02-09 06:51:14 +0000207#endif
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000208
Denis Vlasenko512a5452007-09-24 10:41:30 +0000209typedef int8_t socktype_t;
210typedef int8_t family_t;
211struct BUG_too_small {
212 char BUG_socktype_t_too_small[(0
213 | SOCK_STREAM
214 | SOCK_DGRAM
215 | SOCK_RDM
216 | SOCK_SEQPACKET
217 | SOCK_RAW) <= 127 ? 1 : -1];
218 char BUG_family_t_too_small[(0
219 | AF_INET
220 | AF_INET6
221 | AF_UNIX) <= 127 ? 1 : -1];
222};
223
224typedef struct servtab_t {
Denis Vlasenko39824072007-09-26 10:46:18 +0000225 /* The most frequently referenced one: */
226 int se_fd; /* open descriptor */
227 /* NB: 'biggest fields last' saves on code size (~250 bytes) */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000228 char *se_hostaddr; /* host address to listen on */
229 char *se_service; /* name of service */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000230 char *se_proto; /* protocol used */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000231#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000232 int se_rpcprog; /* rpc program number */
233 int se_rpcversl; /* rpc program lowest version */
234 int se_rpcversh; /* rpc program highest version */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000235#define isrpcservice(sep) ((sep)->se_rpcversl != 0)
236#else
237#define isrpcservice(sep) 0
238#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000239 pid_t se_wait; /* single threaded server */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000240 socktype_t se_socktype; /* type of socket to use */
241 family_t se_family; /* address family */
242 smallint se_checked; /* looked at during merge */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000243 char *se_user; /* user name to run as */
244 char *se_group; /* group name to run as */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000245#ifdef INETD_FEATURE_ENABLED
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000246 const struct builtin *se_bi; /* if built-in, description */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000247#endif
Denis Vlasenko39824072007-09-26 10:46:18 +0000248 int se_ctrladdr_size;
249 int se_max; /* max # of instances of this service */
250 int se_count; /* number started since se_time */
251 struct servtab_t *se_next;
252 struct timeval se_time; /* start of se_count */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000253 char *se_server; /* server program */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000254#define MAXARGV 20
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000255 char *se_argv[MAXARGV + 1]; /* program arguments */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +0000256 union {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000257 struct sockaddr se_un_ctrladdr;
258 struct sockaddr_in se_un_ctrladdr_in;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000259#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000260 struct sockaddr_in6 se_un_ctrladdr_in6;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000261#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000262 struct sockaddr_un se_un_ctrladdr_un;
263 } se_un; /* bound address */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000264#define se_ctrladdr se_un.se_un_ctrladdr
265#define se_ctrladdr_in se_un.se_un_ctrladdr_in
266#define se_ctrladdr_in6 se_un.se_un_ctrladdr_in6
267#define se_ctrladdr_un se_un.se_un_ctrladdr_un
Glenn L McGrath03a06432004-02-18 13:19:58 +0000268} servtab_t;
269
Glenn L McGrathff6ec8a2004-01-17 02:47:45 +0000270#ifdef INETD_FEATURE_ENABLED
Denis Vlasenkoc1876d72006-09-23 15:58:01 +0000271struct builtin {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000272 const char *bi_service; /* internally provided service name */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000273 socktype_t bi_socktype; /* type of socket supported */
274 uint8_t bi_fork; /* 1 if should fork before call */
275// Commented since it is always 0
276// uint8_t bi_wait; /* 1 if should wait for child */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000277 void (*bi_fn) (int, servtab_t *);
Glenn L McGrathff6ec8a2004-01-17 02:47:45 +0000278};
Glenn L McGrath06e95652003-02-09 06:51:14 +0000279
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000280 /* Echo received data */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000281#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000282static void echo_stream(int, servtab_t *);
283static void echo_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000284#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000285 /* Internet /dev/null */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000286#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000287static void discard_stream(int, servtab_t *);
288static void discard_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000289#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000290 /* Return 32 bit time since 1900 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000291#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000292static void machtime_stream(int, servtab_t *);
293static void machtime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000294#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000295 /* Return human-readable time */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000296#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000297static void daytime_stream(int, servtab_t *);
298static void daytime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000299#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000300 /* Familiar character generator */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000301#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000302static void chargen_stream(int, servtab_t *);
303static void chargen_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000304#endif
305
Bernhard Reutner-Fischera4acf662006-04-10 12:26:47 +0000306static const struct builtin builtins[] = {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000307#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000308 /* Echo received data */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000309 {"echo", SOCK_STREAM, 1, echo_stream,},
310 {"echo", SOCK_DGRAM, 0, echo_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000311#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000312#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000313 /* Internet /dev/null */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000314 {"discard", SOCK_STREAM, 1, discard_stream,},
315 {"discard", SOCK_DGRAM, 0, discard_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000316#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000317#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000318 /* Return 32 bit time since 1900 */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000319 {"time", SOCK_STREAM, 0, machtime_stream,},
320 {"time", SOCK_DGRAM, 0, machtime_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000321#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000322#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000323 /* Return human-readable time */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000324 {"daytime", SOCK_STREAM, 0, daytime_stream,},
325 {"daytime", SOCK_DGRAM, 0, daytime_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000326#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000327#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000328 /* Familiar character generator */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000329 {"chargen", SOCK_STREAM, 1, chargen_stream,},
330 {"chargen", SOCK_DGRAM, 0, chargen_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000331#endif
Denis Vlasenko512a5452007-09-24 10:41:30 +0000332 { /* zero filled */ }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000333};
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000334#endif /* INETD_FEATURE_ENABLED */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000335
Denis Vlasenko512a5452007-09-24 10:41:30 +0000336struct globals {
337 rlim_t rlim_ofile_cur;
338 struct rlimit rlim_ofile;
339 servtab_t *servtab;
340 int global_queuelen;
341 int nsock;
342 int maxsock;
343 int toomany;
344 int timingout;
345 struct servent *sp;
346 uid_t uid;
347 const char *config_filename;
348 FILE *fconfig;
349 char *defhost;
350#ifdef INETD_SETPROCTITLE
351 char **Argv;
352 char *LastArg;
353#endif
354#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
355 char *endring;
356 char *ringpos;
357 char ring[128];
358#endif
359 fd_set allsock;
360 /* Used only in nextline() */
361 char line[80]; /* at least 80, see LINE_SIZE */
362};
363#define G (*(struct globals*)&bb_common_bufsiz1)
364enum { LINE_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line) };
365struct BUG_G_too_big {
366 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
367};
368#define rlim_ofile_cur (G.rlim_ofile_cur )
369#define rlim_ofile (G.rlim_ofile )
370#define servtab (G.servtab )
371#define global_queuelen (G.global_queuelen)
372#define nsock (G.nsock )
373#define maxsock (G.maxsock )
374#define toomany (G.toomany )
375#define timingout (G.timingout )
376#define sp (G.sp )
377#define uid (G.uid )
378#define config_filename (G.config_filename)
379#define fconfig (G.fconfig )
380#define defhost (G.defhost )
381#define Argv (G.Argv )
382#define LastArg (G.LastArg )
383#define endring (G.endring )
384#define ringpos (G.ringpos )
385#define ring (G.ring )
386#define allsock (G.allsock )
387#define line (G.line )
388#define INIT_G() do { \
389 rlim_ofile_cur = OPEN_MAX; \
390 global_queuelen = 128; \
391 config_filename = "/etc/inetd.conf"; \
392} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000393
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000394/* xstrdup(NULL) returns NULL, but this one
395 * will return newly-allocated "" if called with NULL arg
396 * TODO: audit whether this makes any real difference
397 */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000398static char *xxstrdup(char *cp)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000399{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000400 return xstrdup(cp ? cp : "");
Glenn L McGrath06e95652003-02-09 06:51:14 +0000401}
402
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000403static int setconfig(void)
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000404{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000405 free(defhost);
406 defhost = xstrdup("*");
407 if (fconfig != NULL) {
408 fseek(fconfig, 0L, SEEK_SET);
409 return 1;
410 }
Denis Vlasenko55f30b02007-03-24 22:42:29 +0000411 fconfig = fopen(config_filename, "r");
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000412 return (fconfig != NULL);
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000413}
414
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000415static void endconfig(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000416{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000417 if (fconfig) {
418 (void) fclose(fconfig);
419 fconfig = NULL;
420 }
421 free(defhost);
422 defhost = 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000423}
Glenn L McGrath53766c42004-01-18 08:58:06 +0000424
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000425#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000426static void register_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000427{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000428 int n;
429 struct sockaddr_in ir_sin;
430 struct protoent *pp;
431 socklen_t size;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000432
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000433 if ((pp = getprotobyname(sep->se_proto + 4)) == NULL) {
434 bb_perror_msg("%s: getproto", sep->se_proto);
435 return;
436 }
437 size = sizeof ir_sin;
438 if (getsockname(sep->se_fd, (struct sockaddr *) &ir_sin, &size) < 0) {
439 bb_perror_msg("%s/%s: getsockname",
440 sep->se_service, sep->se_proto);
441 return;
442 }
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000443
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000444 for (n = sep->se_rpcversl; n <= sep->se_rpcversh; n++) {
445 (void) pmap_unset(sep->se_rpcprog, n);
446 if (!pmap_set(sep->se_rpcprog, n, pp->p_proto, ntohs(ir_sin.sin_port)))
447 bb_perror_msg("%s %s: pmap_set: %u %u %u %u",
448 sep->se_service, sep->se_proto,
449 sep->se_rpcprog, n, pp->p_proto, ntohs(ir_sin.sin_port));
450 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000451}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000452
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000453static void unregister_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000454{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000455 int n;
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000456
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000457 for (n = sep->se_rpcversl; n <= sep->se_rpcversh; n++) {
458 if (!pmap_unset(sep->se_rpcprog, n))
459 bb_error_msg("pmap_unset(%u, %u)", sep->se_rpcprog, n);
460 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000461}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000462#endif /* FEATURE_INETD_RPC */
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000463
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000464static void freeconfig(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000465{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000466 int i;
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000467
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000468 free(cp->se_hostaddr);
469 free(cp->se_service);
470 free(cp->se_proto);
471 free(cp->se_user);
472 free(cp->se_group);
473 free(cp->se_server);
474 for (i = 0; i < MAXARGV; i++)
475 free(cp->se_argv[i]);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000476}
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000477
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000478static int bump_nofile(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000479{
480#define FD_CHUNK 32
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000481
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000482 struct rlimit rl;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000483
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000484 if (getrlimit(RLIMIT_NOFILE, &rl) < 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000485 bb_perror_msg("getrlimit");
486 return -1;
487 }
488 rl.rlim_cur = MIN(rl.rlim_max, rl.rlim_cur + FD_CHUNK);
489 rl.rlim_cur = MIN(FD_SETSIZE, rl.rlim_cur + FD_CHUNK);
490 if (rl.rlim_cur <= rlim_ofile_cur) {
491 bb_error_msg("bump_nofile: cannot extend file limit, max = %d",
492 (int) rl.rlim_cur);
493 return -1;
494 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000495
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000496 if (setrlimit(RLIMIT_NOFILE, &rl) < 0) {
497 bb_perror_msg("setrlimit");
498 return -1;
499 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000500
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000501 rlim_ofile_cur = rl.rlim_cur;
502 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000503}
504
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000505static void setup(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000506{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000507 int r;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000508
Denis Vlasenkoc1876d72006-09-23 15:58:01 +0000509 sep->se_fd = socket(sep->se_family, sep->se_socktype, 0);
510 if (sep->se_fd < 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000511 bb_perror_msg("%s/%s: socket", sep->se_service, sep->se_proto);
512 return;
513 }
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +0000514 setsockopt_reuseaddr(sep->se_fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000515
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000516#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000517 if (isrpcservice(sep)) {
518 struct passwd *pwd;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000519
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000520 /*
521 * for RPC services, attempt to use a reserved port
522 * if they are going to be running as root.
523 *
524 * Also, zero out the port for all RPC services; let bind()
525 * find one.
526 */
527 sep->se_ctrladdr_in.sin_port = 0;
528 if (sep->se_user && (pwd = getpwnam(sep->se_user)) &&
529 pwd->pw_uid == 0 && uid == 0)
530 r = bindresvport(sep->se_fd, &sep->se_ctrladdr_in);
531 else {
532 r = bind(sep->se_fd, &sep->se_ctrladdr, sep->se_ctrladdr_size);
533 if (r == 0) {
534 socklen_t len = sep->se_ctrladdr_size;
535 int saveerrno = errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000536
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000537 /* update se_ctrladdr_in.sin_port */
538 r = getsockname(sep->se_fd, &sep->se_ctrladdr, &len);
539 if (r <= 0)
540 errno = saveerrno;
541 }
542 }
543 } else
Glenn L McGrath53766c42004-01-18 08:58:06 +0000544#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000545 r = bind(sep->se_fd, &sep->se_ctrladdr, sep->se_ctrladdr_size);
546 if (r < 0) {
547 bb_perror_msg("%s/%s (%d): bind",
548 sep->se_service, sep->se_proto, sep->se_ctrladdr.sa_family);
549 close(sep->se_fd);
550 sep->se_fd = -1;
551 if (!timingout) {
552 timingout = 1;
553 alarm(RETRYTIME);
554 }
555 return;
Glenn L McGrath53766c42004-01-18 08:58:06 +0000556 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000557 if (sep->se_socktype == SOCK_STREAM)
558 listen(sep->se_fd, global_queuelen);
Glenn L McGrath53766c42004-01-18 08:58:06 +0000559
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000560 FD_SET(sep->se_fd, &allsock);
561 nsock++;
562 if (sep->se_fd > maxsock) {
563 maxsock = sep->se_fd;
564 if ((rlim_t)maxsock > rlim_ofile_cur - FD_MARGIN)
565 bump_nofile();
566 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000567}
568
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000569static char *nextline(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000570{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000571 char *cp;
572 FILE *fd = fconfig;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000573
Denis Vlasenko512a5452007-09-24 10:41:30 +0000574 if (fgets(line, LINE_SIZE, fd) == NULL)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000575 return NULL;
576 cp = strchr(line, '\n');
577 if (cp)
578 *cp = '\0';
579 return line;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000580}
581
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000582static char *skip(char **cpp) /* int report; */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000583{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000584 char *cp = *cpp;
585 char *start;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000586
587/* erp: */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000588 if (*cpp == NULL) {
589 /* if (report) */
590 /* bb_error_msg("syntax error in inetd config file"); */
591 return NULL;
592 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000593
Denis Vlasenkoce074df2007-03-24 12:07:31 +0000594 again:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000595 while (*cp == ' ' || *cp == '\t')
596 cp++;
597 if (*cp == '\0') {
598 int c;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000599
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000600 c = getc(fconfig);
Denis Vlasenko55f30b02007-03-24 22:42:29 +0000601 ungetc(c, fconfig);
602 if (c == ' ' || c == '\t') {
603 cp = nextline();
604 if (cp)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000605 goto again;
Denis Vlasenko55f30b02007-03-24 22:42:29 +0000606 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000607 *cpp = NULL;
608 /* goto erp; */
609 return NULL;
610 }
611 start = cp;
612 while (*cp && *cp != ' ' && *cp != '\t')
613 cp++;
614 if (*cp != '\0')
615 *cp++ = '\0';
616 /* if ((*cpp = cp) == NULL) */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000617 /* goto erp; */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000618
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000619 *cpp = cp;
620 return start;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000621}
622
623static servtab_t *new_servtab(void)
624{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000625 return xmalloc(sizeof(servtab_t));
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000626}
627
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000628static servtab_t *dupconfig(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000629{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000630 servtab_t *newtab;
631 int argc;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000632
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000633 newtab = new_servtab();
634 memset(newtab, 0, sizeof(servtab_t));
635 newtab->se_service = xstrdup(sep->se_service);
636 newtab->se_socktype = sep->se_socktype;
637 newtab->se_family = sep->se_family;
638 newtab->se_proto = xstrdup(sep->se_proto);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000639#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000640 newtab->se_rpcprog = sep->se_rpcprog;
641 newtab->se_rpcversl = sep->se_rpcversl;
642 newtab->se_rpcversh = sep->se_rpcversh;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000643#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000644 newtab->se_wait = sep->se_wait;
645 newtab->se_user = xstrdup(sep->se_user);
646 newtab->se_group = xstrdup(sep->se_group);
Glenn L McGrathc3b134f2004-01-17 01:26:53 +0000647#ifdef INETD_FEATURE_ENABLED
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000648 newtab->se_bi = sep->se_bi;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000649#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000650 newtab->se_server = xstrdup(sep->se_server);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000651
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000652 for (argc = 0; argc <= MAXARGV; argc++)
653 newtab->se_argv[argc] = xstrdup(sep->se_argv[argc]);
654 newtab->se_max = sep->se_max;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000655
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000656 return newtab;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000657}
658
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000659static servtab_t *getconfigent(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000660{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000661 servtab_t *sep;
662 int argc;
663 char *cp, *arg;
664 char *hostdelim;
665 servtab_t *nsep;
666 servtab_t *psep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000667
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000668 sep = new_servtab();
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000669
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000670 /* memset(sep, 0, sizeof *sep); */
Denis Vlasenko13858992006-10-08 12:49:22 +0000671 more:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000672 /* freeconfig(sep); */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000673
Denis Vlasenko13858992006-10-08 12:49:22 +0000674 while ((cp = nextline()) && *cp == '#') /* skip comment line */;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000675 if (cp == NULL) {
676 /* free(sep); */
677 return NULL;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000678 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000679
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000680 memset((char *) sep, 0, sizeof *sep);
681 arg = skip(&cp);
682 if (arg == NULL) {
683 /* A blank line. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000684 goto more;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000685 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000686
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000687 /* Check for a host name. */
688 hostdelim = strrchr(arg, ':');
689 if (hostdelim) {
690 *hostdelim = '\0';
691 sep->se_hostaddr = xstrdup(arg);
692 arg = hostdelim + 1;
693 /*
694 * If the line is of the form `host:', then just change the
695 * default host for the following lines.
696 */
697 if (*arg == '\0') {
698 arg = skip(&cp);
699 if (cp == NULL) {
700 free(defhost);
701 defhost = sep->se_hostaddr;
702 goto more;
703 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000704 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000705 } else
706 sep->se_hostaddr = xxstrdup(defhost);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000707
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000708 sep->se_service = xxstrdup(arg);
709 arg = skip(&cp);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000710
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000711 if (strcmp(arg, "stream") == 0)
712 sep->se_socktype = SOCK_STREAM;
713 else if (strcmp(arg, "dgram") == 0)
714 sep->se_socktype = SOCK_DGRAM;
715 else if (strcmp(arg, "rdm") == 0)
716 sep->se_socktype = SOCK_RDM;
717 else if (strcmp(arg, "seqpacket") == 0)
718 sep->se_socktype = SOCK_SEQPACKET;
719 else if (strcmp(arg, "raw") == 0)
720 sep->se_socktype = SOCK_RAW;
721 else
722 sep->se_socktype = -1;
723
724 sep->se_proto = xxstrdup(skip(&cp));
725
726 if (strcmp(sep->se_proto, "unix") == 0) {
727 sep->se_family = AF_UNIX;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000728 } else {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000729 sep->se_family = AF_INET;
730 if (sep->se_proto[strlen(sep->se_proto) - 1] == '6')
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000731#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000732 sep->se_family = AF_INET6;
733#else
734 bb_error_msg("%s: IPV6 not supported", sep->se_proto);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000735#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000736 if (strncmp(sep->se_proto, "rpc/", 4) == 0) {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000737#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000738 char *p, *ccp;
739 long l;
740
741 p = strchr(sep->se_service, '/');
742 if (p == 0) {
743 bb_error_msg("%s: no rpc version", sep->se_service);
744 goto more;
745 }
746 *p++ = '\0';
747 l = strtol(p, &ccp, 0);
748 if (ccp == p || l < 0 || l > INT_MAX) {
Denis Vlasenkoce074df2007-03-24 12:07:31 +0000749 badafterall:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000750 bb_error_msg("%s/%s: bad rpc version", sep->se_service, p);
751 goto more;
752 }
753 sep->se_rpcversl = sep->se_rpcversh = l;
754 if (*ccp == '-') {
755 p = ccp + 1;
756 l = strtol(p, &ccp, 0);
757 if (ccp == p || l < 0 || l > INT_MAX || l < sep->se_rpcversl || *ccp)
758 goto badafterall;
759 sep->se_rpcversh = l;
760 } else if (*ccp != '\0')
761 goto badafterall;
762#else
Denis Vlasenko13858992006-10-08 12:49:22 +0000763 bb_error_msg("%s: rpc services not supported", sep->se_service);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000764#endif
765 }
766 }
767 arg = skip(&cp);
768 if (arg == NULL)
769 goto more;
770
771 {
772 char *s = strchr(arg, '.');
773 if (s) {
774 *s++ = '\0';
Denis Vlasenko13858992006-10-08 12:49:22 +0000775 sep->se_max = xatoi(s);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000776 } else
777 sep->se_max = toomany;
778 }
779 sep->se_wait = strcmp(arg, "wait") == 0;
780 /* if ((arg = skip(&cp, 1)) == NULL) */
781 /* goto more; */
782 sep->se_user = xxstrdup(skip(&cp));
783 arg = strchr(sep->se_user, '.');
784 if (arg == NULL)
785 arg = strchr(sep->se_user, ':');
786 if (arg) {
787 *arg++ = '\0';
788 sep->se_group = xstrdup(arg);
789 }
790 /* if ((arg = skip(&cp, 1)) == NULL) */
791 /* goto more; */
792
793 sep->se_server = xxstrdup(skip(&cp));
794 if (strcmp(sep->se_server, "internal") == 0) {
795#ifdef INETD_FEATURE_ENABLED
796 const struct builtin *bi;
797
798 for (bi = builtins; bi->bi_service; bi++)
Denis Vlasenko512a5452007-09-24 10:41:30 +0000799 if (bi->bi_socktype == sep->se_socktype
800 && strcmp(bi->bi_service, sep->se_service) == 0)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000801 break;
802 if (bi->bi_service == 0) {
803 bb_error_msg("internal service %s unknown", sep->se_service);
804 goto more;
805 }
806 sep->se_bi = bi;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000807 sep->se_wait = 0; /* = bi->bi_wait; - always 0 */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000808#else
809 bb_perror_msg("internal service %s unknown", sep->se_service);
810 goto more;
811#endif
812 }
813#ifdef INETD_FEATURE_ENABLED
814 else
815 sep->se_bi = NULL;
816#endif
817 argc = 0;
818 for (arg = skip(&cp); cp; arg = skip(&cp)) {
819 if (argc < MAXARGV)
820 sep->se_argv[argc++] = xxstrdup(arg);
821 }
822 while (argc <= MAXARGV)
823 sep->se_argv[argc++] = NULL;
824
825 /*
826 * Now that we've processed the entire line, check if the hostname
827 * specifier was a comma separated list of hostnames. If so
828 * we'll make new entries for each address.
829 */
830 while ((hostdelim = strrchr(sep->se_hostaddr, ',')) != NULL) {
831 nsep = dupconfig(sep);
832
833 /*
834 * NULL terminate the hostname field of the existing entry,
835 * and make a dup for the new entry.
836 */
837 *hostdelim++ = '\0';
838 nsep->se_hostaddr = xstrdup(hostdelim);
839
840 nsep->se_next = sep->se_next;
841 sep->se_next = nsep;
842 }
843
844 nsep = sep;
845 while (nsep != NULL) {
846 nsep->se_checked = 1;
847 if (nsep->se_family == AF_INET) {
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +0000848 if (LONE_CHAR(nsep->se_hostaddr, '*'))
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000849 nsep->se_ctrladdr_in.sin_addr.s_addr = INADDR_ANY;
850 else if (!inet_aton(nsep->se_hostaddr, &nsep->se_ctrladdr_in.sin_addr)) {
Denis Vlasenko512a5452007-09-24 10:41:30 +0000851 int i;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000852 struct hostent *hp;
853
854 hp = gethostbyname(nsep->se_hostaddr);
Denis Vlasenko512a5452007-09-24 10:41:30 +0000855 if (hp == NULL) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000856 bb_error_msg("%s: unknown host", nsep->se_hostaddr);
857 nsep->se_checked = 0;
858 goto skip;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000859 }
860 if (hp->h_addrtype != AF_INET) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000861 bb_error_msg("%s: address isn't an Internet "
862 "address", nsep->se_hostaddr);
863 nsep->se_checked = 0;
864 goto skip;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000865 }
866 i = 1;
867 memmove(&nsep->se_ctrladdr_in.sin_addr,
868 hp->h_addr_list[0], sizeof(struct in_addr));
869 while (hp->h_addr_list[i] != NULL) {
870 psep = dupconfig(nsep);
871 psep->se_hostaddr = xxstrdup(nsep->se_hostaddr);
872 psep->se_checked = 1;
873 memmove(&psep->se_ctrladdr_in.sin_addr,
874 hp->h_addr_list[i], sizeof(struct in_addr));
875 psep->se_ctrladdr_size = sizeof(psep->se_ctrladdr_in);
876 i++;
877 /* Prepend to list, don't want to look up */
878 /* its hostname again. */
879 psep->se_next = sep;
880 sep = psep;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000881 }
882 }
883 }
884/* XXX BUG?: is this skip: label supposed to remain? */
Denis Vlasenkoce074df2007-03-24 12:07:31 +0000885 skip:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000886 nsep = nsep->se_next;
887 }
888
889 /*
890 * Finally, free any entries which failed the gethostbyname
891 * check.
892 */
893 psep = NULL;
894 nsep = sep;
895 while (nsep != NULL) {
896 servtab_t *tsep;
897
898 if (nsep->se_checked == 0) {
899 tsep = nsep;
900 if (psep == NULL) {
901 sep = nsep->se_next;
902 nsep = sep;
903 } else {
904 nsep = nsep->se_next;
905 psep->se_next = nsep;
906 }
907 freeconfig(tsep);
908 } else {
909 nsep->se_checked = 0;
910 psep = nsep;
911 nsep = nsep->se_next;
912 }
913 }
914
915 return sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000916}
917
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000918#define Block_Using_Signals(m) do { \
919 sigemptyset(&m); \
920 sigaddset(&m, SIGCHLD); \
921 sigaddset(&m, SIGHUP); \
922 sigaddset(&m, SIGALRM); \
923 sigprocmask(SIG_BLOCK, &m, NULL); \
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000924} while (0)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000925
926static servtab_t *enter(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000927{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000928 servtab_t *sep;
929 sigset_t omask;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000930
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000931 sep = new_servtab();
932 *sep = *cp;
933 sep->se_fd = -1;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000934#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000935 sep->se_rpcprog = -1;
936#endif
937 Block_Using_Signals(omask);
938 sep->se_next = servtab;
939 servtab = sep;
940 sigprocmask(SIG_UNBLOCK, &omask, NULL);
941 return sep;
942}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000943
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000944static int matchconf(servtab_t *old, servtab_t *new)
945{
946 if (strcmp(old->se_service, new->se_service) != 0)
947 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000948
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000949 if (strcmp(old->se_hostaddr, new->se_hostaddr) != 0)
950 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000951
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000952 if (strcmp(old->se_proto, new->se_proto) != 0)
953 return 0;
954
955 /*
956 * If the new servtab is bound to a specific address, check that the
957 * old servtab is bound to the same entry. If the new service is not
958 * bound to a specific address then the check of se_hostaddr above
959 * is sufficient.
960 */
961
962 if (old->se_family == AF_INET && new->se_family == AF_INET &&
963 memcmp(&old->se_ctrladdr_in.sin_addr,
964 &new->se_ctrladdr_in.sin_addr,
965 sizeof(new->se_ctrladdr_in.sin_addr)) != 0)
966 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000967
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000968#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000969 if (old->se_family == AF_INET6 && new->se_family == AF_INET6 &&
970 memcmp(&old->se_ctrladdr_in6.sin6_addr,
971 &new->se_ctrladdr_in6.sin6_addr,
972 sizeof(new->se_ctrladdr_in6.sin6_addr)) != 0)
973 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000974#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000975 return 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000976}
977
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000978static void config(int sig ATTRIBUTE_UNUSED)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000979{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000980 servtab_t *sep, *cp, **sepp;
981 sigset_t omask;
982 size_t n;
983 char protoname[10];
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000984
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000985 if (!setconfig()) {
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000986 bb_simple_perror_msg(config_filename);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000987 return;
988 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000989 for (sep = servtab; sep; sep = sep->se_next)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000990 sep->se_checked = 0;
991 cp = getconfigent();
992 while (cp != NULL) {
993 for (sep = servtab; sep; sep = sep->se_next)
994 if (matchconf(sep, cp))
995 break;
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000996
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000997 if (sep != 0) {
998 int i;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000999
Mike Frysinger23fedb32005-10-05 00:50:03 +00001000#define SWAP(type, a, b) do {type c=(type)a; a=(type)b; b=(type)c;} while (0)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001001
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001002 Block_Using_Signals(omask);
1003 /*
1004 * sep->se_wait may be holding the pid of a daemon
1005 * that we're waiting for. If so, don't overwrite
1006 * it unless the config file explicitly says don't
1007 * wait.
1008 */
1009 if (
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001010#ifdef INETD_FEATURE_ENABLED
Denis Vlasenko13858992006-10-08 12:49:22 +00001011 cp->se_bi == 0 &&
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001012#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001013 (sep->se_wait == 1 || cp->se_wait == 0))
1014 sep->se_wait = cp->se_wait;
1015 SWAP(int, cp->se_max, sep->se_max);
1016 SWAP(char *, sep->se_user, cp->se_user);
1017 SWAP(char *, sep->se_group, cp->se_group);
1018 SWAP(char *, sep->se_server, cp->se_server);
1019 for (i = 0; i < MAXARGV; i++)
1020 SWAP(char *, sep->se_argv[i], cp->se_argv[i]);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001021#undef SWAP
1022
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001023#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001024 if (isrpcservice(sep))
1025 unregister_rpc(sep);
1026 sep->se_rpcversl = cp->se_rpcversl;
1027 sep->se_rpcversh = cp->se_rpcversh;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001028#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001029 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1030 freeconfig(cp);
1031 } else {
1032 sep = enter(cp);
1033 }
1034 sep->se_checked = 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001035
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001036 switch (sep->se_family) {
1037 case AF_UNIX:
1038 if (sep->se_fd != -1)
1039 break;
1040 (void) unlink(sep->se_service);
1041 n = strlen(sep->se_service);
1042 if (n > sizeof sep->se_ctrladdr_un.sun_path - 1)
1043 n = sizeof sep->se_ctrladdr_un.sun_path - 1;
1044 safe_strncpy(sep->se_ctrladdr_un.sun_path, sep->se_service, n + 1);
1045 sep->se_ctrladdr_un.sun_family = AF_UNIX;
1046 sep->se_ctrladdr_size = n + sizeof sep->se_ctrladdr_un.sun_family;
1047 setup(sep);
1048 break;
1049 case AF_INET:
1050 sep->se_ctrladdr_in.sin_family = AF_INET;
1051 /* se_ctrladdr_in was set in getconfigent */
1052 sep->se_ctrladdr_size = sizeof sep->se_ctrladdr_in;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001053
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001054#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001055 if (isrpcservice(sep)) {
1056 struct rpcent *rp;
Denis Vlasenko13858992006-10-08 12:49:22 +00001057 // FIXME: atoi_or_else(str, 0) would be handy here
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001058 sep->se_rpcprog = atoi(sep->se_service);
1059 if (sep->se_rpcprog == 0) {
1060 rp = getrpcbyname(sep->se_service);
1061 if (rp == 0) {
1062 bb_error_msg("%s: unknown rpc service", sep->se_service);
1063 goto serv_unknown;
1064 }
1065 sep->se_rpcprog = rp->r_number;
1066 }
1067 if (sep->se_fd == -1)
1068 setup(sep);
1069 if (sep->se_fd != -1)
1070 register_rpc(sep);
1071 } else
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001072#endif
Denis Vlasenko13858992006-10-08 12:49:22 +00001073 {
Denis Vlasenko28703012006-12-19 20:32:02 +00001074 uint16_t port = htons(atoi(sep->se_service));
Denis Vlasenko13858992006-10-08 12:49:22 +00001075 // FIXME: atoi_or_else(str, 0) would be handy here
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001076 if (!port) {
1077 /*XXX*/ strncpy(protoname, sep->se_proto, sizeof(protoname));
1078 if (isdigit(protoname[strlen(protoname) - 1]))
1079 protoname[strlen(protoname) - 1] = '\0';
1080 sp = getservbyname(sep->se_service, protoname);
1081 if (sp == 0) {
1082 bb_error_msg("%s/%s: unknown service",
1083 sep->se_service, sep->se_proto);
1084 goto serv_unknown;
1085 }
1086 port = sp->s_port;
1087 }
1088 if (port != sep->se_ctrladdr_in.sin_port) {
1089 sep->se_ctrladdr_in.sin_port = port;
1090 if (sep->se_fd != -1) {
1091 FD_CLR(sep->se_fd, &allsock);
1092 nsock--;
1093 (void) close(sep->se_fd);
1094 }
1095 sep->se_fd = -1;
1096 }
1097 if (sep->se_fd == -1)
1098 setup(sep);
1099 }
1100 break;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001101#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001102 case AF_INET6:
1103 sep->se_ctrladdr_in6.sin6_family = AF_INET6;
1104 /* se_ctrladdr_in was set in getconfigent */
1105 sep->se_ctrladdr_size = sizeof sep->se_ctrladdr_in6;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001106
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001107#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001108 if (isrpcservice(sep)) {
1109 struct rpcent *rp;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001110
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001111 sep->se_rpcprog = atoi(sep->se_service);
1112 if (sep->se_rpcprog == 0) {
1113 rp = getrpcbyname(sep->se_service);
1114 if (rp == 0) {
1115 bb_error_msg("%s: unknown rpc service", sep->se_service);
1116 goto serv_unknown;
1117 }
1118 sep->se_rpcprog = rp->r_number;
1119 }
1120 if (sep->se_fd == -1)
1121 setup(sep);
1122 if (sep->se_fd != -1)
1123 register_rpc(sep);
1124 } else
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001125#endif
Denis Vlasenko28703012006-12-19 20:32:02 +00001126 {
1127 uint16_t port = htons(atoi(sep->se_service));
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001128
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001129 if (!port) {
1130 /*XXX*/ strncpy(protoname, sep->se_proto, sizeof(protoname));
1131 if (isdigit(protoname[strlen(protoname) - 1]))
1132 protoname[strlen(protoname) - 1] = '\0';
1133 sp = getservbyname(sep->se_service, protoname);
1134 if (sp == 0) {
1135 bb_error_msg("%s/%s: unknown service",
1136 sep->se_service, sep->se_proto);
1137 goto serv_unknown;
1138 }
1139 port = sp->s_port;
1140 }
1141 if (port != sep->se_ctrladdr_in6.sin6_port) {
1142 sep->se_ctrladdr_in6.sin6_port = port;
1143 if (sep->se_fd != -1) {
1144 FD_CLR(sep->se_fd, &allsock);
1145 nsock--;
1146 (void) close(sep->se_fd);
1147 }
1148 sep->se_fd = -1;
1149 }
1150 if (sep->se_fd == -1)
1151 setup(sep);
1152 }
1153 break;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001154#endif /* FEATURE_IPV6 */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001155 }
Denis Vlasenkoce074df2007-03-24 12:07:31 +00001156 serv_unknown:
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001157 if (cp->se_next != NULL) {
1158 servtab_t *tmp = cp;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001159
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001160 cp = cp->se_next;
1161 free(tmp);
1162 } else {
1163 free(cp);
1164 cp = getconfigent();
1165 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001166 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001167 endconfig();
1168 /*
1169 * Purge anything not looked at above.
1170 */
1171 Block_Using_Signals(omask);
1172 sepp = &servtab;
1173 while ((sep = *sepp)) {
1174 if (sep->se_checked) {
1175 sepp = &sep->se_next;
1176 continue;
1177 }
1178 *sepp = sep->se_next;
1179 if (sep->se_fd != -1) {
1180 FD_CLR(sep->se_fd, &allsock);
1181 nsock--;
1182 (void) close(sep->se_fd);
1183 }
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001184#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001185 if (isrpcservice(sep))
1186 unregister_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001187#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001188 if (sep->se_family == AF_UNIX)
1189 (void) unlink(sep->se_service);
1190 freeconfig(sep);
1191 free(sep);
1192 }
1193 sigprocmask(SIG_UNBLOCK, &omask, NULL);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001194}
1195
1196
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001197static void reapchild(int sig ATTRIBUTE_UNUSED)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001198{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001199 pid_t pid;
1200 int save_errno = errno, status;
1201 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001202
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001203 for (;;) {
1204 pid = wait3(&status, WNOHANG, NULL);
1205 if (pid <= 0)
1206 break;
1207 for (sep = servtab; sep; sep = sep->se_next)
1208 if (sep->se_wait == pid) {
1209 if (WIFEXITED(status) && WEXITSTATUS(status))
1210 bb_error_msg("%s: exit status 0x%x",
1211 sep->se_server, WEXITSTATUS(status));
1212 else if (WIFSIGNALED(status))
1213 bb_error_msg("%s: exit signal 0x%x",
1214 sep->se_server, WTERMSIG(status));
1215 sep->se_wait = 1;
1216 FD_SET(sep->se_fd, &allsock);
1217 nsock++;
1218 }
1219 }
1220 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001221}
1222
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001223static void retry(int sig ATTRIBUTE_UNUSED)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001224{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001225 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001226
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001227 timingout = 0;
1228 for (sep = servtab; sep; sep = sep->se_next) {
1229 if (sep->se_fd == -1) {
1230 switch (sep->se_family) {
1231 case AF_UNIX:
1232 case AF_INET:
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001233#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001234 case AF_INET6:
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001235#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001236 setup(sep);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001237#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001238 if (sep->se_fd != -1 && isrpcservice(sep))
1239 register_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001240#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001241 break;
1242 }
1243 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001244 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001245}
1246
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001247static void goaway(int sig ATTRIBUTE_UNUSED)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001248{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001249 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001250
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001251 /* XXX signal race walking sep list */
1252 for (sep = servtab; sep; sep = sep->se_next) {
1253 if (sep->se_fd == -1)
1254 continue;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001255
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001256 switch (sep->se_family) {
1257 case AF_UNIX:
1258 (void) unlink(sep->se_service);
1259 break;
1260 case AF_INET:
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001261#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001262 case AF_INET6:
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001263#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001264#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001265 if (sep->se_wait == 1 && isrpcservice(sep))
1266 unregister_rpc(sep); /* XXX signal race */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001267#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001268 break;
1269 }
1270 (void) close(sep->se_fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001271 }
Denis Vlasenko10457b92007-03-27 22:01:31 +00001272 remove_pidfile(_PATH_INETDPID);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001273 exit(0);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001274}
1275
1276
1277#ifdef INETD_SETPROCTITLE
Glenn L McGrath06e95652003-02-09 06:51:14 +00001278
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001279static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001280inetd_setproctitle(char *a, int s)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001281{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001282 socklen_t size;
1283 char *cp;
1284 struct sockaddr_in prt_sin;
1285 char buf[80];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001286
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001287 cp = Argv[0];
1288 size = sizeof(prt_sin);
1289 (void) snprintf(buf, sizeof buf, "-%s", a);
1290 if (getpeername(s, (struct sockaddr *) &prt_sin, &size) == 0) {
1291 char *sa = inet_ntoa(prt_sin.sin_addr);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001292
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001293 buf[sizeof(buf) - 1 - strlen(sa) - 3] = '\0';
1294 strcat(buf, " [");
1295 strcat(buf, sa);
1296 strcat(buf, "]");
1297 }
1298 strncpy(cp, buf, LastArg - cp);
1299 cp += strlen(cp);
1300 while (cp < LastArg)
1301 *cp++ = ' ';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001302}
Glenn L McGrath06e95652003-02-09 06:51:14 +00001303#endif
1304
Glenn L McGrath06e95652003-02-09 06:51:14 +00001305
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +00001306int inetd_main(int argc, char **argv);
1307int inetd_main(int argc, char **argv)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001308{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001309 servtab_t *sep;
1310 struct passwd *pwd;
1311 struct group *grp = NULL;
1312 int tmpint;
1313 struct sigaction sa, sapipe;
1314 int opt;
1315 pid_t pid;
1316 char buf[50];
1317 char *stoomany;
1318 sigset_t omask, wait_mask;
Denis Vlasenko512a5452007-09-24 10:41:30 +00001319#ifdef INETD_SETPROCTITLE
1320 char **envp;
1321#endif
1322
1323 INIT_G();
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001324
1325#ifdef INETD_SETPROCTITLE
Denis Vlasenko512a5452007-09-24 10:41:30 +00001326 envp = environ;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001327 Argv = argv;
1328 if (envp == 0 || *envp == 0)
1329 envp = argv;
1330 while (*envp)
1331 envp++;
1332 LastArg = envp[-1] + strlen(envp[-1]);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001333#endif
1334
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001335 uid = getuid();
1336 if (uid != 0)
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001337 config_filename = NULL;
Denis Vlasenko5a142022007-03-26 13:20:54 +00001338
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00001339 opt = getopt32(argv, "R:f", &stoomany);
Denis Vlasenko5a142022007-03-26 13:20:54 +00001340 if (opt & 1)
1341 toomany = xatoi_u(stoomany);
1342 argv += optind;
1343 argc -= optind;
1344 if (argc)
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001345 config_filename = argv[0];
1346 if (config_filename == NULL)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001347 bb_error_msg_and_die("non-root must specify a config file");
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001348
Denis Vlasenko5a142022007-03-26 13:20:54 +00001349 if (!(opt & 2))
1350 bb_daemonize_or_rexec(0, argv - optind);
1351 else
1352 bb_sanitize_stdio();
Denis Vlasenkoffcef2d2007-01-14 02:03:28 +00001353 openlog(applet_name, LOG_PID | LOG_NOWAIT, LOG_DAEMON);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001354 logmode = LOGMODE_SYSLOG;
Eric Andersen35e643b2003-07-28 07:40:39 +00001355
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001356 if (uid == 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001357 /* If run by hand, ensure groups vector gets trashed */
Denis Vlasenko7a431b32007-01-14 01:29:06 +00001358 gid_t gid = getgid();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001359 setgroups(1, &gid);
1360 }
1361
Denis Vlasenko10457b92007-03-27 22:01:31 +00001362 write_pidfile(_PATH_INETDPID);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001363
1364 if (getrlimit(RLIMIT_NOFILE, &rlim_ofile) < 0) {
1365 bb_perror_msg("getrlimit");
1366 } else {
1367 rlim_ofile_cur = rlim_ofile.rlim_cur;
1368 if (rlim_ofile_cur == RLIM_INFINITY) /* ! */
1369 rlim_ofile_cur = OPEN_MAX;
1370 }
1371
1372 memset((char *) &sa, 0, sizeof(sa));
1373 sigemptyset(&sa.sa_mask);
1374 sigaddset(&sa.sa_mask, SIGALRM);
1375 sigaddset(&sa.sa_mask, SIGCHLD);
1376 sigaddset(&sa.sa_mask, SIGHUP);
1377 sa.sa_handler = retry;
1378 sigaction(SIGALRM, &sa, NULL);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001379 config(SIGHUP);
1380 sa.sa_handler = config;
1381 sigaction(SIGHUP, &sa, NULL);
1382 sa.sa_handler = reapchild;
1383 sigaction(SIGCHLD, &sa, NULL);
1384 sa.sa_handler = goaway;
1385 sigaction(SIGTERM, &sa, NULL);
1386 sa.sa_handler = goaway;
1387 sigaction(SIGINT, &sa, NULL);
1388 sa.sa_handler = SIG_IGN;
1389 sigaction(SIGPIPE, &sa, &sapipe);
1390 memset(&wait_mask, 0, sizeof(wait_mask));
1391 {
1392 /* space for daemons to overwrite environment for ps */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001393#define DUMMYSIZE 100
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001394 char dummy[DUMMYSIZE];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001395
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001396 (void) memset(dummy, 'x', DUMMYSIZE - 1);
1397 dummy[DUMMYSIZE - 1] = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001398
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001399 (void) setenv("inetd_dummy", dummy, 1);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001400 }
1401
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001402 for (;;) {
1403 int n, ctrl = -1;
1404 fd_set readable;
1405
1406 if (nsock == 0) {
1407 Block_Using_Signals(omask);
1408 while (nsock == 0)
1409 sigsuspend(&wait_mask);
1410 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1411 }
1412
1413 readable = allsock;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001414 n = select(maxsock + 1, &readable, NULL, NULL, NULL);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001415 if (n <= 0) {
1416 if (n < 0 && errno != EINTR) {
1417 bb_perror_msg("select");
1418 sleep(1);
1419 }
Glenn L McGrath82d42db2004-02-18 13:12:53 +00001420 continue;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001421 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001422
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001423 for (sep = servtab; n && sep; sep = sep->se_next) {
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001424 if (sep->se_fd == -1 || !FD_ISSET(sep->se_fd, &readable))
1425 continue;
1426
1427 n--;
1428 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM) {
1429 ctrl = accept(sep->se_fd, NULL, NULL);
1430 if (ctrl < 0) {
1431 if (errno == EINTR)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001432 continue;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001433 bb_perror_msg("accept (for %s)", sep->se_service);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001434 continue;
1435 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001436 if (sep->se_family == AF_INET && sep->se_socktype == SOCK_STREAM) {
1437 struct sockaddr_in peer;
1438 socklen_t plen = sizeof(peer);
1439
1440 if (getpeername(ctrl, (struct sockaddr *) &peer, &plen) < 0) {
Denis Vlasenkoea620772006-10-14 02:23:43 +00001441 bb_error_msg("cannot getpeername");
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001442 close(ctrl);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001443 continue;
1444 }
1445 if (ntohs(peer.sin_port) == 20) {
1446 /* XXX ftp bounce */
1447 close(ctrl);
1448 continue;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001449 }
1450 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001451 } else
1452 ctrl = sep->se_fd;
1453
1454 Block_Using_Signals(omask);
1455 pid = 0;
1456#ifdef INETD_FEATURE_ENABLED
1457 if (sep->se_bi == 0 || sep->se_bi->bi_fork)
1458#endif
1459 {
1460 if (sep->se_count++ == 0)
1461 (void) gettimeofday(&sep->se_time, NULL);
1462 else if (toomany > 0 && sep->se_count >= sep->se_max) {
1463 struct timeval now;
1464
1465 (void) gettimeofday(&now, NULL);
1466 if (now.tv_sec - sep->se_time.tv_sec > CNT_INTVL) {
1467 sep->se_time = now;
1468 sep->se_count = 1;
1469 } else {
1470 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM)
1471 close(ctrl);
1472 if (sep->se_family == AF_INET &&
1473 ntohs(sep->se_ctrladdr_in.sin_port) >= IPPORT_RESERVED) {
1474 /*
1475 * Cannot close it -- there are
1476 * thieves on the system.
1477 * Simply ignore the connection.
1478 */
1479 --sep->se_count;
1480 continue;
1481 }
1482 bb_error_msg("%s/%s server failing (looping), service terminated",
1483 sep->se_service, sep->se_proto);
1484 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM)
1485 close(ctrl);
1486 FD_CLR(sep->se_fd, &allsock);
1487 (void) close(sep->se_fd);
1488 sep->se_fd = -1;
1489 sep->se_count = 0;
1490 nsock--;
1491 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1492 if (!timingout) {
1493 timingout = 1;
1494 alarm(RETRYTIME);
1495 }
1496 continue;
1497 }
1498 }
1499 pid = fork();
1500 }
1501 if (pid < 0) {
1502 bb_perror_msg("fork");
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001503 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM)
1504 close(ctrl);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001505 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1506 sleep(1);
1507 continue;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001508 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001509 if (pid && sep->se_wait) {
1510 sep->se_wait = pid;
1511 FD_CLR(sep->se_fd, &allsock);
1512 nsock--;
1513 }
1514 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1515 if (pid == 0) {
1516#ifdef INETD_FEATURE_ENABLED
1517 if (sep->se_bi) {
1518 (*sep->se_bi->bi_fn)(ctrl, sep);
1519 } else
1520#endif
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001521 {
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001522 pwd = getpwnam(sep->se_user);
1523 if (pwd == NULL) {
1524 bb_error_msg("getpwnam: %s: no such user", sep->se_user);
1525 goto do_exit1;
1526 }
1527 if (setsid() < 0)
1528 bb_perror_msg("%s: setsid", sep->se_service);
1529 if (sep->se_group && (grp = getgrnam(sep->se_group)) == NULL) {
1530 bb_error_msg("getgrnam: %s: no such group", sep->se_group);
1531 goto do_exit1;
1532 }
1533 if (uid != 0) {
1534 /* a user running private inetd */
1535 if (uid != pwd->pw_uid)
1536 _exit(1);
1537 } else if (pwd->pw_uid) {
1538 if (sep->se_group)
1539 pwd->pw_gid = grp->gr_gid;
1540 xsetgid((gid_t) pwd->pw_gid);
1541 initgroups(pwd->pw_name, pwd->pw_gid);
1542 xsetuid((uid_t) pwd->pw_uid);
1543 } else if (sep->se_group) {
1544 xsetgid(grp->gr_gid);
1545 setgroups(1, &grp->gr_gid);
1546 }
1547 dup2(ctrl, 0);
1548 if (ctrl) close(ctrl);
1549 dup2(0, 1);
1550 dup2(0, 2);
1551 if (rlim_ofile.rlim_cur != rlim_ofile_cur)
1552 if (setrlimit(RLIMIT_NOFILE, &rlim_ofile) < 0)
1553 bb_perror_msg("setrlimit");
1554 closelog();
1555 for (tmpint = rlim_ofile_cur - 1; --tmpint > 2;)
1556 (void) close(tmpint);
1557 sigaction(SIGPIPE, &sapipe, NULL);
1558 execv(sep->se_server, sep->se_argv);
1559 bb_perror_msg("execv %s", sep->se_server);
Denis Vlasenkoce074df2007-03-24 12:07:31 +00001560 do_exit1:
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001561 if (sep->se_socktype != SOCK_STREAM)
1562 recv(0, buf, sizeof(buf), 0);
1563 _exit(1);
1564 }
1565 }
1566 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM)
1567 close(ctrl);
1568 } /* for (sep = servtab...) */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +00001569 } /* for (;;) */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001570}
Glenn L McGrath06e95652003-02-09 06:51:14 +00001571
1572/*
1573 * Internet services provided internally by inetd:
1574 */
1575#define BUFSIZE 4096
1576
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001577#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO || \
1578 ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN || \
1579 ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001580static int dg_badinput(struct sockaddr_in *dg_sin)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001581{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001582 if (ntohs(dg_sin->sin_port) < IPPORT_RESERVED)
1583 return 1;
1584 if (dg_sin->sin_addr.s_addr == htonl(INADDR_BROADCAST))
1585 return 1;
1586 /* XXX compare against broadcast addresses in SIOCGIFCONF list? */
1587 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001588}
1589#endif
1590
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001591#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Glenn L McGrath06e95652003-02-09 06:51:14 +00001592/* Echo service -- echo data back */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001593/* ARGSUSED */
1594static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001595echo_stream(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001596{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001597 char buffer[BUFSIZE];
1598 int i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001599
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001600 inetd_setproctitle(sep->se_service, s);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001601 while (1) {
1602 i = read(s, buffer, sizeof(buffer));
1603 if (i <= 0) break;
1604 /* FIXME: this isnt correct - safe_write()? */
1605 if (write(s, buffer, i) <= 0) break;
1606 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001607 exit(0);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001608}
1609
1610/* Echo service -- echo data back */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001611/* ARGSUSED */
1612static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001613echo_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001614{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001615 char buffer[BUFSIZE];
1616 int i;
1617 socklen_t size;
1618 /* struct sockaddr_storage ss; */
1619 struct sockaddr sa;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001620
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001621 size = sizeof(sa);
1622 i = recvfrom(s, buffer, sizeof(buffer), 0, &sa, &size);
1623 if (i < 0)
1624 return;
1625 if (dg_badinput((struct sockaddr_in *) &sa))
1626 return;
1627 (void) sendto(s, buffer, i, 0, &sa, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001628}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001629#endif /* FEATURE_INETD_SUPPORT_BUILTIN_ECHO */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001630
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001631#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Glenn L McGrath06e95652003-02-09 06:51:14 +00001632/* Discard service -- ignore data */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001633/* ARGSUSED */
1634static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001635discard_stream(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001636{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001637 char buffer[BUFSIZE];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001638
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001639 inetd_setproctitle(sep->se_service, s);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001640 while (1) {
1641 errno = 0;
1642 if (read(s, buffer, sizeof(buffer)) <= 0 && errno != EINTR)
1643 exit(0);
1644 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001645}
1646
1647/* Discard service -- ignore data */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001648/* ARGSUSED */
1649static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001650discard_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001651{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001652 char buffer[BUFSIZE];
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001653
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001654 (void) read(s, buffer, sizeof(buffer));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001655}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001656#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DISCARD */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001657
1658
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001659#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Glenn L McGrath06e95652003-02-09 06:51:14 +00001660#define LINESIZ 72
Glenn L McGrath06e95652003-02-09 06:51:14 +00001661
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001662static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001663initring(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001664{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001665 int i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001666
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001667 endring = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001668 for (i = 0; i <= 128; ++i)
1669 if (isprint(i))
1670 *endring++ = i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001671}
1672
1673/* Character generator */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001674/* ARGSUSED */
1675static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001676chargen_stream(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001677{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001678 char *rs;
1679 int len;
1680 char text[LINESIZ + 2];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001681
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001682 inetd_setproctitle(sep->se_service, s);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001683
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001684 if (!endring) {
1685 initring();
1686 rs = ring;
1687 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001688
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001689 text[LINESIZ] = '\r';
1690 text[LINESIZ + 1] = '\n';
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001691 rs = ring;
1692 for (;;) {
1693 len = endring - rs;
1694 if (len >= LINESIZ)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001695 memmove(text, rs, LINESIZ);
1696 else {
1697 memmove(text, rs, len);
1698 memmove(text + len, ring, LINESIZ - len);
1699 }
1700 if (++rs == endring)
1701 rs = ring;
1702 if (write(s, text, sizeof(text)) != sizeof(text))
1703 break;
1704 }
1705 exit(0);
1706}
1707
1708/* Character generator */
1709/* ARGSUSED */
1710static void
1711chargen_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
1712{
1713 /* struct sockaddr_storage ss; */
1714 struct sockaddr sa;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001715 int len;
1716 char text[LINESIZ + 2];
1717 socklen_t size;
1718
Denis Vlasenko512a5452007-09-24 10:41:30 +00001719 if (!endring) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001720 initring();
Denis Vlasenko512a5452007-09-24 10:41:30 +00001721 ringpos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001722 }
1723
1724 size = sizeof(sa);
1725 if (recvfrom(s, text, sizeof(text), 0, &sa, &size) < 0)
1726 return;
1727 if (dg_badinput((struct sockaddr_in *) &sa))
1728 return;
1729
Denis Vlasenko512a5452007-09-24 10:41:30 +00001730 len = endring - ringpos;
1731 if (len >= LINESIZ)
1732 memmove(text, ringpos, LINESIZ);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001733 else {
Denis Vlasenko512a5452007-09-24 10:41:30 +00001734 memmove(text, ringpos, len);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001735 memmove(text + len, ring, LINESIZ - len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001736 }
Denis Vlasenko512a5452007-09-24 10:41:30 +00001737 if (++ringpos == endring)
1738 ringpos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001739 text[LINESIZ] = '\r';
1740 text[LINESIZ + 1] = '\n';
1741 (void) sendto(s, text, sizeof(text), 0, &sa, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001742}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001743#endif /* FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001744
1745
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001746#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001747/*
1748 * Return a machine readable date and time, in the form of the
1749 * number of seconds since midnight, Jan 1, 1900. Since gettimeofday
1750 * returns the number of seconds since midnight, Jan 1, 1970,
1751 * we must add 2208988800 seconds to this figure to make up for
1752 * some seventy years Bell Labs was asleep.
1753 */
1754
Denis Vlasenko35d4da02007-01-22 14:04:27 +00001755static unsigned machtime(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001756{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001757 struct timeval tv;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001758
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001759 if (gettimeofday(&tv, NULL) < 0) {
1760 fprintf(stderr, "Unable to get time of day\n");
1761 return 0L;
1762 }
Denis Vlasenko35d4da02007-01-22 14:04:27 +00001763 return htonl((unsigned) tv.tv_sec + 2208988800UL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001764}
1765
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001766/* ARGSUSED */
1767static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001768machtime_stream(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001769{
Denis Vlasenko35d4da02007-01-22 14:04:27 +00001770 unsigned result;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001771
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001772 result = machtime();
1773 (void) write(s, (char *) &result, sizeof(result));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001774}
1775
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001776/* ARGSUSED */
1777static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001778machtime_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001779{
Denis Vlasenko35d4da02007-01-22 14:04:27 +00001780 unsigned result;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001781 /* struct sockaddr_storage ss; */
1782 struct sockaddr sa;
1783 struct sockaddr_in *dg_sin;
1784 socklen_t size;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001785
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001786 size = sizeof(sa);
1787 if (recvfrom(s, (char *) &result, sizeof(result), 0, &sa, &size) < 0)
1788 return;
1789 /* if (dg_badinput((struct sockaddr *)&ss)) */
1790 dg_sin = (struct sockaddr_in *) &sa;
1791 if (dg_sin->sin_addr.s_addr == htonl(INADDR_BROADCAST) ||
1792 ntohs(dg_sin->sin_port) < IPPORT_RESERVED / 2)
1793 return;
1794 result = machtime();
1795 (void) sendto(s, (char *) &result, sizeof(result), 0, &sa, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001796}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001797#endif /* FEATURE_INETD_SUPPORT_BUILTIN_TIME */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001798
1799
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001800#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001801/* Return human-readable time of day */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001802/* ARGSUSED */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001803static void daytime_stream(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001804{
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001805 char buffer[32];
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001806 time_t t;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001807
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001808 t = time(NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001809
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001810// fdprintf instead?
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001811 (void) sprintf(buffer, "%.24s\r\n", ctime(&t));
1812 (void) write(s, buffer, strlen(buffer));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001813}
1814
1815/* Return human-readable time of day */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001816/* ARGSUSED */
1817void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001818daytime_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001819{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001820 char buffer[256];
1821 time_t t;
1822 /* struct sockaddr_storage ss; */
1823 struct sockaddr sa;
1824 socklen_t size;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001825
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001826 t = time(NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001827
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001828 size = sizeof(sa);
1829 if (recvfrom(s, buffer, sizeof(buffer), 0, &sa, &size) < 0)
1830 return;
1831 if (dg_badinput((struct sockaddr_in *) &sa))
1832 return;
1833 (void) sprintf(buffer, "%.24s\r\n", ctime(&t));
1834 (void) sendto(s, buffer, strlen(buffer), 0, &sa, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001835}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001836#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME */