blob: b3a00cfa52816142129499cd81f15132b59a524b [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 Vlasenkoec17d432006-09-23 15:18:38 +0000225 char *se_hostaddr; /* host address to listen on */
226 char *se_service; /* name of service */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000227 char *se_proto; /* protocol used */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000228#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000229 int se_rpcprog; /* rpc program number */
230 int se_rpcversl; /* rpc program lowest version */
231 int se_rpcversh; /* rpc program highest version */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000232#define isrpcservice(sep) ((sep)->se_rpcversl != 0)
233#else
234#define isrpcservice(sep) 0
235#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000236 pid_t se_wait; /* single threaded server */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000237 socktype_t se_socktype; /* type of socket to use */
238 family_t se_family; /* address family */
239 smallint se_checked; /* looked at during merge */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000240 char *se_user; /* user name to run as */
241 char *se_group; /* group name to run as */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000242#ifdef INETD_FEATURE_ENABLED
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000243 const struct builtin *se_bi; /* if built-in, description */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000244#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000245 char *se_server; /* server program */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000246#define MAXARGV 20
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000247 char *se_argv[MAXARGV + 1]; /* program arguments */
248 int se_fd; /* open descriptor */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +0000249 union {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000250 struct sockaddr se_un_ctrladdr;
251 struct sockaddr_in se_un_ctrladdr_in;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000252#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000253 struct sockaddr_in6 se_un_ctrladdr_in6;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000254#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000255 struct sockaddr_un se_un_ctrladdr_un;
256 } se_un; /* bound address */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000257#define se_ctrladdr se_un.se_un_ctrladdr
258#define se_ctrladdr_in se_un.se_un_ctrladdr_in
259#define se_ctrladdr_in6 se_un.se_un_ctrladdr_in6
260#define se_ctrladdr_un se_un.se_un_ctrladdr_un
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000261 int se_ctrladdr_size;
262 int se_max; /* max # of instances of this service */
263 int se_count; /* number started since se_time */
264 struct timeval se_time; /* start of se_count */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000265 struct servtab_t *se_next;
Glenn L McGrath03a06432004-02-18 13:19:58 +0000266} servtab_t;
267
Glenn L McGrathff6ec8a2004-01-17 02:47:45 +0000268#ifdef INETD_FEATURE_ENABLED
Denis Vlasenkoc1876d72006-09-23 15:58:01 +0000269struct builtin {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000270 const char *bi_service; /* internally provided service name */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000271 socktype_t bi_socktype; /* type of socket supported */
272 uint8_t bi_fork; /* 1 if should fork before call */
273// Commented since it is always 0
274// uint8_t bi_wait; /* 1 if should wait for child */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000275 void (*bi_fn) (int, servtab_t *);
Glenn L McGrathff6ec8a2004-01-17 02:47:45 +0000276};
Glenn L McGrath06e95652003-02-09 06:51:14 +0000277
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000278 /* Echo received data */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000279#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000280static void echo_stream(int, servtab_t *);
281static void echo_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000282#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000283 /* Internet /dev/null */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000284#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000285static void discard_stream(int, servtab_t *);
286static void discard_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000287#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000288 /* Return 32 bit time since 1900 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000289#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000290static void machtime_stream(int, servtab_t *);
291static void machtime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000292#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000293 /* Return human-readable time */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000294#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000295static void daytime_stream(int, servtab_t *);
296static void daytime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000297#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000298 /* Familiar character generator */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000299#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000300static void chargen_stream(int, servtab_t *);
301static void chargen_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000302#endif
303
Bernhard Reutner-Fischera4acf662006-04-10 12:26:47 +0000304static const struct builtin builtins[] = {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000305#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000306 /* Echo received data */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000307 {"echo", SOCK_STREAM, 1, echo_stream,},
308 {"echo", SOCK_DGRAM, 0, echo_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000309#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000310#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000311 /* Internet /dev/null */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000312 {"discard", SOCK_STREAM, 1, discard_stream,},
313 {"discard", SOCK_DGRAM, 0, discard_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000314#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000315#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000316 /* Return 32 bit time since 1900 */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000317 {"time", SOCK_STREAM, 0, machtime_stream,},
318 {"time", SOCK_DGRAM, 0, machtime_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000319#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000320#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000321 /* Return human-readable time */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000322 {"daytime", SOCK_STREAM, 0, daytime_stream,},
323 {"daytime", SOCK_DGRAM, 0, daytime_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000324#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000325#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000326 /* Familiar character generator */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000327 {"chargen", SOCK_STREAM, 1, chargen_stream,},
328 {"chargen", SOCK_DGRAM, 0, chargen_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000329#endif
Denis Vlasenko512a5452007-09-24 10:41:30 +0000330 { /* zero filled */ }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000331};
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000332#endif /* INETD_FEATURE_ENABLED */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000333
Denis Vlasenko512a5452007-09-24 10:41:30 +0000334struct globals {
335 rlim_t rlim_ofile_cur;
336 struct rlimit rlim_ofile;
337 servtab_t *servtab;
338 int global_queuelen;
339 int nsock;
340 int maxsock;
341 int toomany;
342 int timingout;
343 struct servent *sp;
344 uid_t uid;
345 const char *config_filename;
346 FILE *fconfig;
347 char *defhost;
348#ifdef INETD_SETPROCTITLE
349 char **Argv;
350 char *LastArg;
351#endif
352#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
353 char *endring;
354 char *ringpos;
355 char ring[128];
356#endif
357 fd_set allsock;
358 /* Used only in nextline() */
359 char line[80]; /* at least 80, see LINE_SIZE */
360};
361#define G (*(struct globals*)&bb_common_bufsiz1)
362enum { LINE_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line) };
363struct BUG_G_too_big {
364 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
365};
366#define rlim_ofile_cur (G.rlim_ofile_cur )
367#define rlim_ofile (G.rlim_ofile )
368#define servtab (G.servtab )
369#define global_queuelen (G.global_queuelen)
370#define nsock (G.nsock )
371#define maxsock (G.maxsock )
372#define toomany (G.toomany )
373#define timingout (G.timingout )
374#define sp (G.sp )
375#define uid (G.uid )
376#define config_filename (G.config_filename)
377#define fconfig (G.fconfig )
378#define defhost (G.defhost )
379#define Argv (G.Argv )
380#define LastArg (G.LastArg )
381#define endring (G.endring )
382#define ringpos (G.ringpos )
383#define ring (G.ring )
384#define allsock (G.allsock )
385#define line (G.line )
386#define INIT_G() do { \
387 rlim_ofile_cur = OPEN_MAX; \
388 global_queuelen = 128; \
389 config_filename = "/etc/inetd.conf"; \
390} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000391
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000392/* xstrdup(NULL) returns NULL, but this one
393 * will return newly-allocated "" if called with NULL arg
394 * TODO: audit whether this makes any real difference
395 */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000396static char *xxstrdup(char *cp)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000397{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000398 return xstrdup(cp ? cp : "");
Glenn L McGrath06e95652003-02-09 06:51:14 +0000399}
400
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000401static int setconfig(void)
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000402{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000403 free(defhost);
404 defhost = xstrdup("*");
405 if (fconfig != NULL) {
406 fseek(fconfig, 0L, SEEK_SET);
407 return 1;
408 }
Denis Vlasenko55f30b02007-03-24 22:42:29 +0000409 fconfig = fopen(config_filename, "r");
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000410 return (fconfig != NULL);
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000411}
412
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000413static void endconfig(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000414{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000415 if (fconfig) {
416 (void) fclose(fconfig);
417 fconfig = NULL;
418 }
419 free(defhost);
420 defhost = 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000421}
Glenn L McGrath53766c42004-01-18 08:58:06 +0000422
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000423#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000424static void register_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000425{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000426 int n;
427 struct sockaddr_in ir_sin;
428 struct protoent *pp;
429 socklen_t size;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000430
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000431 if ((pp = getprotobyname(sep->se_proto + 4)) == NULL) {
432 bb_perror_msg("%s: getproto", sep->se_proto);
433 return;
434 }
435 size = sizeof ir_sin;
436 if (getsockname(sep->se_fd, (struct sockaddr *) &ir_sin, &size) < 0) {
437 bb_perror_msg("%s/%s: getsockname",
438 sep->se_service, sep->se_proto);
439 return;
440 }
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000441
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000442 for (n = sep->se_rpcversl; n <= sep->se_rpcversh; n++) {
443 (void) pmap_unset(sep->se_rpcprog, n);
444 if (!pmap_set(sep->se_rpcprog, n, pp->p_proto, ntohs(ir_sin.sin_port)))
445 bb_perror_msg("%s %s: pmap_set: %u %u %u %u",
446 sep->se_service, sep->se_proto,
447 sep->se_rpcprog, n, pp->p_proto, ntohs(ir_sin.sin_port));
448 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000449}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000450
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000451static void unregister_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000452{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000453 int n;
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000454
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000455 for (n = sep->se_rpcversl; n <= sep->se_rpcversh; n++) {
456 if (!pmap_unset(sep->se_rpcprog, n))
457 bb_error_msg("pmap_unset(%u, %u)", sep->se_rpcprog, n);
458 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000459}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000460#endif /* FEATURE_INETD_RPC */
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000461
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000462static void freeconfig(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000463{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000464 int i;
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000465
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000466 free(cp->se_hostaddr);
467 free(cp->se_service);
468 free(cp->se_proto);
469 free(cp->se_user);
470 free(cp->se_group);
471 free(cp->se_server);
472 for (i = 0; i < MAXARGV; i++)
473 free(cp->se_argv[i]);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000474}
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000475
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000476static int bump_nofile(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000477{
478#define FD_CHUNK 32
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000479
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000480 struct rlimit rl;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000481
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000482 if (getrlimit(RLIMIT_NOFILE, &rl) < 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000483 bb_perror_msg("getrlimit");
484 return -1;
485 }
486 rl.rlim_cur = MIN(rl.rlim_max, rl.rlim_cur + FD_CHUNK);
487 rl.rlim_cur = MIN(FD_SETSIZE, rl.rlim_cur + FD_CHUNK);
488 if (rl.rlim_cur <= rlim_ofile_cur) {
489 bb_error_msg("bump_nofile: cannot extend file limit, max = %d",
490 (int) rl.rlim_cur);
491 return -1;
492 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000493
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000494 if (setrlimit(RLIMIT_NOFILE, &rl) < 0) {
495 bb_perror_msg("setrlimit");
496 return -1;
497 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000498
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000499 rlim_ofile_cur = rl.rlim_cur;
500 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000501}
502
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000503static void setup(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000504{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000505 int r;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000506
Denis Vlasenkoc1876d72006-09-23 15:58:01 +0000507 sep->se_fd = socket(sep->se_family, sep->se_socktype, 0);
508 if (sep->se_fd < 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000509 bb_perror_msg("%s/%s: socket", sep->se_service, sep->se_proto);
510 return;
511 }
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +0000512 setsockopt_reuseaddr(sep->se_fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000513
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000514#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000515 if (isrpcservice(sep)) {
516 struct passwd *pwd;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000517
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000518 /*
519 * for RPC services, attempt to use a reserved port
520 * if they are going to be running as root.
521 *
522 * Also, zero out the port for all RPC services; let bind()
523 * find one.
524 */
525 sep->se_ctrladdr_in.sin_port = 0;
526 if (sep->se_user && (pwd = getpwnam(sep->se_user)) &&
527 pwd->pw_uid == 0 && uid == 0)
528 r = bindresvport(sep->se_fd, &sep->se_ctrladdr_in);
529 else {
530 r = bind(sep->se_fd, &sep->se_ctrladdr, sep->se_ctrladdr_size);
531 if (r == 0) {
532 socklen_t len = sep->se_ctrladdr_size;
533 int saveerrno = errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000534
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000535 /* update se_ctrladdr_in.sin_port */
536 r = getsockname(sep->se_fd, &sep->se_ctrladdr, &len);
537 if (r <= 0)
538 errno = saveerrno;
539 }
540 }
541 } else
Glenn L McGrath53766c42004-01-18 08:58:06 +0000542#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000543 r = bind(sep->se_fd, &sep->se_ctrladdr, sep->se_ctrladdr_size);
544 if (r < 0) {
545 bb_perror_msg("%s/%s (%d): bind",
546 sep->se_service, sep->se_proto, sep->se_ctrladdr.sa_family);
547 close(sep->se_fd);
548 sep->se_fd = -1;
549 if (!timingout) {
550 timingout = 1;
551 alarm(RETRYTIME);
552 }
553 return;
Glenn L McGrath53766c42004-01-18 08:58:06 +0000554 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000555 if (sep->se_socktype == SOCK_STREAM)
556 listen(sep->se_fd, global_queuelen);
Glenn L McGrath53766c42004-01-18 08:58:06 +0000557
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000558 FD_SET(sep->se_fd, &allsock);
559 nsock++;
560 if (sep->se_fd > maxsock) {
561 maxsock = sep->se_fd;
562 if ((rlim_t)maxsock > rlim_ofile_cur - FD_MARGIN)
563 bump_nofile();
564 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000565}
566
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000567static char *nextline(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000568{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000569 char *cp;
570 FILE *fd = fconfig;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000571
Denis Vlasenko512a5452007-09-24 10:41:30 +0000572 if (fgets(line, LINE_SIZE, fd) == NULL)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000573 return NULL;
574 cp = strchr(line, '\n');
575 if (cp)
576 *cp = '\0';
577 return line;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000578}
579
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000580static char *skip(char **cpp) /* int report; */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000581{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000582 char *cp = *cpp;
583 char *start;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000584
585/* erp: */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000586 if (*cpp == NULL) {
587 /* if (report) */
588 /* bb_error_msg("syntax error in inetd config file"); */
589 return NULL;
590 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000591
Denis Vlasenkoce074df2007-03-24 12:07:31 +0000592 again:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000593 while (*cp == ' ' || *cp == '\t')
594 cp++;
595 if (*cp == '\0') {
596 int c;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000597
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000598 c = getc(fconfig);
Denis Vlasenko55f30b02007-03-24 22:42:29 +0000599 ungetc(c, fconfig);
600 if (c == ' ' || c == '\t') {
601 cp = nextline();
602 if (cp)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000603 goto again;
Denis Vlasenko55f30b02007-03-24 22:42:29 +0000604 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000605 *cpp = NULL;
606 /* goto erp; */
607 return NULL;
608 }
609 start = cp;
610 while (*cp && *cp != ' ' && *cp != '\t')
611 cp++;
612 if (*cp != '\0')
613 *cp++ = '\0';
614 /* if ((*cpp = cp) == NULL) */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000615 /* goto erp; */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000616
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000617 *cpp = cp;
618 return start;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000619}
620
621static servtab_t *new_servtab(void)
622{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000623 return xmalloc(sizeof(servtab_t));
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000624}
625
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000626static servtab_t *dupconfig(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000627{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000628 servtab_t *newtab;
629 int argc;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000630
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000631 newtab = new_servtab();
632 memset(newtab, 0, sizeof(servtab_t));
633 newtab->se_service = xstrdup(sep->se_service);
634 newtab->se_socktype = sep->se_socktype;
635 newtab->se_family = sep->se_family;
636 newtab->se_proto = xstrdup(sep->se_proto);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000637#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000638 newtab->se_rpcprog = sep->se_rpcprog;
639 newtab->se_rpcversl = sep->se_rpcversl;
640 newtab->se_rpcversh = sep->se_rpcversh;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000641#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000642 newtab->se_wait = sep->se_wait;
643 newtab->se_user = xstrdup(sep->se_user);
644 newtab->se_group = xstrdup(sep->se_group);
Glenn L McGrathc3b134f2004-01-17 01:26:53 +0000645#ifdef INETD_FEATURE_ENABLED
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000646 newtab->se_bi = sep->se_bi;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000647#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000648 newtab->se_server = xstrdup(sep->se_server);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000649
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000650 for (argc = 0; argc <= MAXARGV; argc++)
651 newtab->se_argv[argc] = xstrdup(sep->se_argv[argc]);
652 newtab->se_max = sep->se_max;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000653
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000654 return newtab;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000655}
656
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000657static servtab_t *getconfigent(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000658{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000659 servtab_t *sep;
660 int argc;
661 char *cp, *arg;
662 char *hostdelim;
663 servtab_t *nsep;
664 servtab_t *psep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000665
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000666 sep = new_servtab();
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000667
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000668 /* memset(sep, 0, sizeof *sep); */
Denis Vlasenko13858992006-10-08 12:49:22 +0000669 more:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000670 /* freeconfig(sep); */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000671
Denis Vlasenko13858992006-10-08 12:49:22 +0000672 while ((cp = nextline()) && *cp == '#') /* skip comment line */;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000673 if (cp == NULL) {
674 /* free(sep); */
675 return NULL;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000676 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000677
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000678 memset((char *) sep, 0, sizeof *sep);
679 arg = skip(&cp);
680 if (arg == NULL) {
681 /* A blank line. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000682 goto more;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000683 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000684
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000685 /* Check for a host name. */
686 hostdelim = strrchr(arg, ':');
687 if (hostdelim) {
688 *hostdelim = '\0';
689 sep->se_hostaddr = xstrdup(arg);
690 arg = hostdelim + 1;
691 /*
692 * If the line is of the form `host:', then just change the
693 * default host for the following lines.
694 */
695 if (*arg == '\0') {
696 arg = skip(&cp);
697 if (cp == NULL) {
698 free(defhost);
699 defhost = sep->se_hostaddr;
700 goto more;
701 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000702 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000703 } else
704 sep->se_hostaddr = xxstrdup(defhost);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000705
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000706 sep->se_service = xxstrdup(arg);
707 arg = skip(&cp);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000708
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000709 if (strcmp(arg, "stream") == 0)
710 sep->se_socktype = SOCK_STREAM;
711 else if (strcmp(arg, "dgram") == 0)
712 sep->se_socktype = SOCK_DGRAM;
713 else if (strcmp(arg, "rdm") == 0)
714 sep->se_socktype = SOCK_RDM;
715 else if (strcmp(arg, "seqpacket") == 0)
716 sep->se_socktype = SOCK_SEQPACKET;
717 else if (strcmp(arg, "raw") == 0)
718 sep->se_socktype = SOCK_RAW;
719 else
720 sep->se_socktype = -1;
721
722 sep->se_proto = xxstrdup(skip(&cp));
723
724 if (strcmp(sep->se_proto, "unix") == 0) {
725 sep->se_family = AF_UNIX;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000726 } else {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000727 sep->se_family = AF_INET;
728 if (sep->se_proto[strlen(sep->se_proto) - 1] == '6')
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000729#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000730 sep->se_family = AF_INET6;
731#else
732 bb_error_msg("%s: IPV6 not supported", sep->se_proto);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000733#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000734 if (strncmp(sep->se_proto, "rpc/", 4) == 0) {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000735#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000736 char *p, *ccp;
737 long l;
738
739 p = strchr(sep->se_service, '/');
740 if (p == 0) {
741 bb_error_msg("%s: no rpc version", sep->se_service);
742 goto more;
743 }
744 *p++ = '\0';
745 l = strtol(p, &ccp, 0);
746 if (ccp == p || l < 0 || l > INT_MAX) {
Denis Vlasenkoce074df2007-03-24 12:07:31 +0000747 badafterall:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000748 bb_error_msg("%s/%s: bad rpc version", sep->se_service, p);
749 goto more;
750 }
751 sep->se_rpcversl = sep->se_rpcversh = l;
752 if (*ccp == '-') {
753 p = ccp + 1;
754 l = strtol(p, &ccp, 0);
755 if (ccp == p || l < 0 || l > INT_MAX || l < sep->se_rpcversl || *ccp)
756 goto badafterall;
757 sep->se_rpcversh = l;
758 } else if (*ccp != '\0')
759 goto badafterall;
760#else
Denis Vlasenko13858992006-10-08 12:49:22 +0000761 bb_error_msg("%s: rpc services not supported", sep->se_service);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000762#endif
763 }
764 }
765 arg = skip(&cp);
766 if (arg == NULL)
767 goto more;
768
769 {
770 char *s = strchr(arg, '.');
771 if (s) {
772 *s++ = '\0';
Denis Vlasenko13858992006-10-08 12:49:22 +0000773 sep->se_max = xatoi(s);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000774 } else
775 sep->se_max = toomany;
776 }
777 sep->se_wait = strcmp(arg, "wait") == 0;
778 /* if ((arg = skip(&cp, 1)) == NULL) */
779 /* goto more; */
780 sep->se_user = xxstrdup(skip(&cp));
781 arg = strchr(sep->se_user, '.');
782 if (arg == NULL)
783 arg = strchr(sep->se_user, ':');
784 if (arg) {
785 *arg++ = '\0';
786 sep->se_group = xstrdup(arg);
787 }
788 /* if ((arg = skip(&cp, 1)) == NULL) */
789 /* goto more; */
790
791 sep->se_server = xxstrdup(skip(&cp));
792 if (strcmp(sep->se_server, "internal") == 0) {
793#ifdef INETD_FEATURE_ENABLED
794 const struct builtin *bi;
795
796 for (bi = builtins; bi->bi_service; bi++)
Denis Vlasenko512a5452007-09-24 10:41:30 +0000797 if (bi->bi_socktype == sep->se_socktype
798 && strcmp(bi->bi_service, sep->se_service) == 0)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000799 break;
800 if (bi->bi_service == 0) {
801 bb_error_msg("internal service %s unknown", sep->se_service);
802 goto more;
803 }
804 sep->se_bi = bi;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000805 sep->se_wait = 0; /* = bi->bi_wait; - always 0 */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000806#else
807 bb_perror_msg("internal service %s unknown", sep->se_service);
808 goto more;
809#endif
810 }
811#ifdef INETD_FEATURE_ENABLED
812 else
813 sep->se_bi = NULL;
814#endif
815 argc = 0;
816 for (arg = skip(&cp); cp; arg = skip(&cp)) {
817 if (argc < MAXARGV)
818 sep->se_argv[argc++] = xxstrdup(arg);
819 }
820 while (argc <= MAXARGV)
821 sep->se_argv[argc++] = NULL;
822
823 /*
824 * Now that we've processed the entire line, check if the hostname
825 * specifier was a comma separated list of hostnames. If so
826 * we'll make new entries for each address.
827 */
828 while ((hostdelim = strrchr(sep->se_hostaddr, ',')) != NULL) {
829 nsep = dupconfig(sep);
830
831 /*
832 * NULL terminate the hostname field of the existing entry,
833 * and make a dup for the new entry.
834 */
835 *hostdelim++ = '\0';
836 nsep->se_hostaddr = xstrdup(hostdelim);
837
838 nsep->se_next = sep->se_next;
839 sep->se_next = nsep;
840 }
841
842 nsep = sep;
843 while (nsep != NULL) {
844 nsep->se_checked = 1;
845 if (nsep->se_family == AF_INET) {
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +0000846 if (LONE_CHAR(nsep->se_hostaddr, '*'))
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000847 nsep->se_ctrladdr_in.sin_addr.s_addr = INADDR_ANY;
848 else if (!inet_aton(nsep->se_hostaddr, &nsep->se_ctrladdr_in.sin_addr)) {
Denis Vlasenko512a5452007-09-24 10:41:30 +0000849 int i;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000850 struct hostent *hp;
851
852 hp = gethostbyname(nsep->se_hostaddr);
Denis Vlasenko512a5452007-09-24 10:41:30 +0000853 if (hp == NULL) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000854 bb_error_msg("%s: unknown host", nsep->se_hostaddr);
855 nsep->se_checked = 0;
856 goto skip;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000857 }
858 if (hp->h_addrtype != AF_INET) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000859 bb_error_msg("%s: address isn't an Internet "
860 "address", nsep->se_hostaddr);
861 nsep->se_checked = 0;
862 goto skip;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000863 }
864 i = 1;
865 memmove(&nsep->se_ctrladdr_in.sin_addr,
866 hp->h_addr_list[0], sizeof(struct in_addr));
867 while (hp->h_addr_list[i] != NULL) {
868 psep = dupconfig(nsep);
869 psep->se_hostaddr = xxstrdup(nsep->se_hostaddr);
870 psep->se_checked = 1;
871 memmove(&psep->se_ctrladdr_in.sin_addr,
872 hp->h_addr_list[i], sizeof(struct in_addr));
873 psep->se_ctrladdr_size = sizeof(psep->se_ctrladdr_in);
874 i++;
875 /* Prepend to list, don't want to look up */
876 /* its hostname again. */
877 psep->se_next = sep;
878 sep = psep;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000879 }
880 }
881 }
882/* XXX BUG?: is this skip: label supposed to remain? */
Denis Vlasenkoce074df2007-03-24 12:07:31 +0000883 skip:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000884 nsep = nsep->se_next;
885 }
886
887 /*
888 * Finally, free any entries which failed the gethostbyname
889 * check.
890 */
891 psep = NULL;
892 nsep = sep;
893 while (nsep != NULL) {
894 servtab_t *tsep;
895
896 if (nsep->se_checked == 0) {
897 tsep = nsep;
898 if (psep == NULL) {
899 sep = nsep->se_next;
900 nsep = sep;
901 } else {
902 nsep = nsep->se_next;
903 psep->se_next = nsep;
904 }
905 freeconfig(tsep);
906 } else {
907 nsep->se_checked = 0;
908 psep = nsep;
909 nsep = nsep->se_next;
910 }
911 }
912
913 return sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000914}
915
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000916#define Block_Using_Signals(m) do { \
917 sigemptyset(&m); \
918 sigaddset(&m, SIGCHLD); \
919 sigaddset(&m, SIGHUP); \
920 sigaddset(&m, SIGALRM); \
921 sigprocmask(SIG_BLOCK, &m, NULL); \
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000922} while (0)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000923
924static servtab_t *enter(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000925{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000926 servtab_t *sep;
927 sigset_t omask;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000928
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000929 sep = new_servtab();
930 *sep = *cp;
931 sep->se_fd = -1;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000932#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000933 sep->se_rpcprog = -1;
934#endif
935 Block_Using_Signals(omask);
936 sep->se_next = servtab;
937 servtab = sep;
938 sigprocmask(SIG_UNBLOCK, &omask, NULL);
939 return sep;
940}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000941
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000942static int matchconf(servtab_t *old, servtab_t *new)
943{
944 if (strcmp(old->se_service, new->se_service) != 0)
945 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000946
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000947 if (strcmp(old->se_hostaddr, new->se_hostaddr) != 0)
948 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000949
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000950 if (strcmp(old->se_proto, new->se_proto) != 0)
951 return 0;
952
953 /*
954 * If the new servtab is bound to a specific address, check that the
955 * old servtab is bound to the same entry. If the new service is not
956 * bound to a specific address then the check of se_hostaddr above
957 * is sufficient.
958 */
959
960 if (old->se_family == AF_INET && new->se_family == AF_INET &&
961 memcmp(&old->se_ctrladdr_in.sin_addr,
962 &new->se_ctrladdr_in.sin_addr,
963 sizeof(new->se_ctrladdr_in.sin_addr)) != 0)
964 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000965
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000966#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000967 if (old->se_family == AF_INET6 && new->se_family == AF_INET6 &&
968 memcmp(&old->se_ctrladdr_in6.sin6_addr,
969 &new->se_ctrladdr_in6.sin6_addr,
970 sizeof(new->se_ctrladdr_in6.sin6_addr)) != 0)
971 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000972#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000973 return 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000974}
975
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000976static void config(int sig ATTRIBUTE_UNUSED)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000977{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000978 servtab_t *sep, *cp, **sepp;
979 sigset_t omask;
980 size_t n;
981 char protoname[10];
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000982
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000983 if (!setconfig()) {
Denis Vlasenko55f30b02007-03-24 22:42:29 +0000984 bb_perror_msg("%s", config_filename);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000985 return;
986 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000987 for (sep = servtab; sep; sep = sep->se_next)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000988 sep->se_checked = 0;
989 cp = getconfigent();
990 while (cp != NULL) {
991 for (sep = servtab; sep; sep = sep->se_next)
992 if (matchconf(sep, cp))
993 break;
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000994
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000995 if (sep != 0) {
996 int i;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000997
Mike Frysinger23fedb32005-10-05 00:50:03 +0000998#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 +0000999
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001000 Block_Using_Signals(omask);
1001 /*
1002 * sep->se_wait may be holding the pid of a daemon
1003 * that we're waiting for. If so, don't overwrite
1004 * it unless the config file explicitly says don't
1005 * wait.
1006 */
1007 if (
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001008#ifdef INETD_FEATURE_ENABLED
Denis Vlasenko13858992006-10-08 12:49:22 +00001009 cp->se_bi == 0 &&
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001010#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001011 (sep->se_wait == 1 || cp->se_wait == 0))
1012 sep->se_wait = cp->se_wait;
1013 SWAP(int, cp->se_max, sep->se_max);
1014 SWAP(char *, sep->se_user, cp->se_user);
1015 SWAP(char *, sep->se_group, cp->se_group);
1016 SWAP(char *, sep->se_server, cp->se_server);
1017 for (i = 0; i < MAXARGV; i++)
1018 SWAP(char *, sep->se_argv[i], cp->se_argv[i]);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001019#undef SWAP
1020
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001021#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001022 if (isrpcservice(sep))
1023 unregister_rpc(sep);
1024 sep->se_rpcversl = cp->se_rpcversl;
1025 sep->se_rpcversh = cp->se_rpcversh;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001026#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001027 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1028 freeconfig(cp);
1029 } else {
1030 sep = enter(cp);
1031 }
1032 sep->se_checked = 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001033
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001034 switch (sep->se_family) {
1035 case AF_UNIX:
1036 if (sep->se_fd != -1)
1037 break;
1038 (void) unlink(sep->se_service);
1039 n = strlen(sep->se_service);
1040 if (n > sizeof sep->se_ctrladdr_un.sun_path - 1)
1041 n = sizeof sep->se_ctrladdr_un.sun_path - 1;
1042 safe_strncpy(sep->se_ctrladdr_un.sun_path, sep->se_service, n + 1);
1043 sep->se_ctrladdr_un.sun_family = AF_UNIX;
1044 sep->se_ctrladdr_size = n + sizeof sep->se_ctrladdr_un.sun_family;
1045 setup(sep);
1046 break;
1047 case AF_INET:
1048 sep->se_ctrladdr_in.sin_family = AF_INET;
1049 /* se_ctrladdr_in was set in getconfigent */
1050 sep->se_ctrladdr_size = sizeof sep->se_ctrladdr_in;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001051
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001052#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001053 if (isrpcservice(sep)) {
1054 struct rpcent *rp;
Denis Vlasenko13858992006-10-08 12:49:22 +00001055 // FIXME: atoi_or_else(str, 0) would be handy here
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001056 sep->se_rpcprog = atoi(sep->se_service);
1057 if (sep->se_rpcprog == 0) {
1058 rp = getrpcbyname(sep->se_service);
1059 if (rp == 0) {
1060 bb_error_msg("%s: unknown rpc service", sep->se_service);
1061 goto serv_unknown;
1062 }
1063 sep->se_rpcprog = rp->r_number;
1064 }
1065 if (sep->se_fd == -1)
1066 setup(sep);
1067 if (sep->se_fd != -1)
1068 register_rpc(sep);
1069 } else
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001070#endif
Denis Vlasenko13858992006-10-08 12:49:22 +00001071 {
Denis Vlasenko28703012006-12-19 20:32:02 +00001072 uint16_t port = htons(atoi(sep->se_service));
Denis Vlasenko13858992006-10-08 12:49:22 +00001073 // FIXME: atoi_or_else(str, 0) would be handy here
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001074 if (!port) {
1075 /*XXX*/ strncpy(protoname, sep->se_proto, sizeof(protoname));
1076 if (isdigit(protoname[strlen(protoname) - 1]))
1077 protoname[strlen(protoname) - 1] = '\0';
1078 sp = getservbyname(sep->se_service, protoname);
1079 if (sp == 0) {
1080 bb_error_msg("%s/%s: unknown service",
1081 sep->se_service, sep->se_proto);
1082 goto serv_unknown;
1083 }
1084 port = sp->s_port;
1085 }
1086 if (port != sep->se_ctrladdr_in.sin_port) {
1087 sep->se_ctrladdr_in.sin_port = port;
1088 if (sep->se_fd != -1) {
1089 FD_CLR(sep->se_fd, &allsock);
1090 nsock--;
1091 (void) close(sep->se_fd);
1092 }
1093 sep->se_fd = -1;
1094 }
1095 if (sep->se_fd == -1)
1096 setup(sep);
1097 }
1098 break;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001099#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001100 case AF_INET6:
1101 sep->se_ctrladdr_in6.sin6_family = AF_INET6;
1102 /* se_ctrladdr_in was set in getconfigent */
1103 sep->se_ctrladdr_size = sizeof sep->se_ctrladdr_in6;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001104
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001105#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001106 if (isrpcservice(sep)) {
1107 struct rpcent *rp;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001108
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001109 sep->se_rpcprog = atoi(sep->se_service);
1110 if (sep->se_rpcprog == 0) {
1111 rp = getrpcbyname(sep->se_service);
1112 if (rp == 0) {
1113 bb_error_msg("%s: unknown rpc service", sep->se_service);
1114 goto serv_unknown;
1115 }
1116 sep->se_rpcprog = rp->r_number;
1117 }
1118 if (sep->se_fd == -1)
1119 setup(sep);
1120 if (sep->se_fd != -1)
1121 register_rpc(sep);
1122 } else
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001123#endif
Denis Vlasenko28703012006-12-19 20:32:02 +00001124 {
1125 uint16_t port = htons(atoi(sep->se_service));
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001126
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001127 if (!port) {
1128 /*XXX*/ strncpy(protoname, sep->se_proto, sizeof(protoname));
1129 if (isdigit(protoname[strlen(protoname) - 1]))
1130 protoname[strlen(protoname) - 1] = '\0';
1131 sp = getservbyname(sep->se_service, protoname);
1132 if (sp == 0) {
1133 bb_error_msg("%s/%s: unknown service",
1134 sep->se_service, sep->se_proto);
1135 goto serv_unknown;
1136 }
1137 port = sp->s_port;
1138 }
1139 if (port != sep->se_ctrladdr_in6.sin6_port) {
1140 sep->se_ctrladdr_in6.sin6_port = port;
1141 if (sep->se_fd != -1) {
1142 FD_CLR(sep->se_fd, &allsock);
1143 nsock--;
1144 (void) close(sep->se_fd);
1145 }
1146 sep->se_fd = -1;
1147 }
1148 if (sep->se_fd == -1)
1149 setup(sep);
1150 }
1151 break;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001152#endif /* FEATURE_IPV6 */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001153 }
Denis Vlasenkoce074df2007-03-24 12:07:31 +00001154 serv_unknown:
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001155 if (cp->se_next != NULL) {
1156 servtab_t *tmp = cp;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001157
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001158 cp = cp->se_next;
1159 free(tmp);
1160 } else {
1161 free(cp);
1162 cp = getconfigent();
1163 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001164 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001165 endconfig();
1166 /*
1167 * Purge anything not looked at above.
1168 */
1169 Block_Using_Signals(omask);
1170 sepp = &servtab;
1171 while ((sep = *sepp)) {
1172 if (sep->se_checked) {
1173 sepp = &sep->se_next;
1174 continue;
1175 }
1176 *sepp = sep->se_next;
1177 if (sep->se_fd != -1) {
1178 FD_CLR(sep->se_fd, &allsock);
1179 nsock--;
1180 (void) close(sep->se_fd);
1181 }
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001182#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001183 if (isrpcservice(sep))
1184 unregister_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001185#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001186 if (sep->se_family == AF_UNIX)
1187 (void) unlink(sep->se_service);
1188 freeconfig(sep);
1189 free(sep);
1190 }
1191 sigprocmask(SIG_UNBLOCK, &omask, NULL);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001192}
1193
1194
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001195static void reapchild(int sig ATTRIBUTE_UNUSED)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001196{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001197 pid_t pid;
1198 int save_errno = errno, status;
1199 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001200
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001201 for (;;) {
1202 pid = wait3(&status, WNOHANG, NULL);
1203 if (pid <= 0)
1204 break;
1205 for (sep = servtab; sep; sep = sep->se_next)
1206 if (sep->se_wait == pid) {
1207 if (WIFEXITED(status) && WEXITSTATUS(status))
1208 bb_error_msg("%s: exit status 0x%x",
1209 sep->se_server, WEXITSTATUS(status));
1210 else if (WIFSIGNALED(status))
1211 bb_error_msg("%s: exit signal 0x%x",
1212 sep->se_server, WTERMSIG(status));
1213 sep->se_wait = 1;
1214 FD_SET(sep->se_fd, &allsock);
1215 nsock++;
1216 }
1217 }
1218 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001219}
1220
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001221static void retry(int sig ATTRIBUTE_UNUSED)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001222{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001223 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001224
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001225 timingout = 0;
1226 for (sep = servtab; sep; sep = sep->se_next) {
1227 if (sep->se_fd == -1) {
1228 switch (sep->se_family) {
1229 case AF_UNIX:
1230 case AF_INET:
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001231#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001232 case AF_INET6:
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001233#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001234 setup(sep);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001235#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001236 if (sep->se_fd != -1 && isrpcservice(sep))
1237 register_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001238#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001239 break;
1240 }
1241 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001242 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001243}
1244
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001245static void goaway(int sig ATTRIBUTE_UNUSED)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001246{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001247 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001248
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001249 /* XXX signal race walking sep list */
1250 for (sep = servtab; sep; sep = sep->se_next) {
1251 if (sep->se_fd == -1)
1252 continue;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001253
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001254 switch (sep->se_family) {
1255 case AF_UNIX:
1256 (void) unlink(sep->se_service);
1257 break;
1258 case AF_INET:
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001259#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001260 case AF_INET6:
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001261#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001262#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001263 if (sep->se_wait == 1 && isrpcservice(sep))
1264 unregister_rpc(sep); /* XXX signal race */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001265#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001266 break;
1267 }
1268 (void) close(sep->se_fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001269 }
Denis Vlasenko10457b92007-03-27 22:01:31 +00001270 remove_pidfile(_PATH_INETDPID);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001271 exit(0);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001272}
1273
1274
1275#ifdef INETD_SETPROCTITLE
Glenn L McGrath06e95652003-02-09 06:51:14 +00001276
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001277static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001278inetd_setproctitle(char *a, int s)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001279{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001280 socklen_t size;
1281 char *cp;
1282 struct sockaddr_in prt_sin;
1283 char buf[80];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001284
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001285 cp = Argv[0];
1286 size = sizeof(prt_sin);
1287 (void) snprintf(buf, sizeof buf, "-%s", a);
1288 if (getpeername(s, (struct sockaddr *) &prt_sin, &size) == 0) {
1289 char *sa = inet_ntoa(prt_sin.sin_addr);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001290
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001291 buf[sizeof(buf) - 1 - strlen(sa) - 3] = '\0';
1292 strcat(buf, " [");
1293 strcat(buf, sa);
1294 strcat(buf, "]");
1295 }
1296 strncpy(cp, buf, LastArg - cp);
1297 cp += strlen(cp);
1298 while (cp < LastArg)
1299 *cp++ = ' ';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001300}
Glenn L McGrath06e95652003-02-09 06:51:14 +00001301#endif
1302
Glenn L McGrath06e95652003-02-09 06:51:14 +00001303
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +00001304int inetd_main(int argc, char **argv);
1305int inetd_main(int argc, char **argv)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001306{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001307 servtab_t *sep;
1308 struct passwd *pwd;
1309 struct group *grp = NULL;
1310 int tmpint;
1311 struct sigaction sa, sapipe;
1312 int opt;
1313 pid_t pid;
1314 char buf[50];
1315 char *stoomany;
1316 sigset_t omask, wait_mask;
Denis Vlasenko512a5452007-09-24 10:41:30 +00001317#ifdef INETD_SETPROCTITLE
1318 char **envp;
1319#endif
1320
1321 INIT_G();
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001322
1323#ifdef INETD_SETPROCTITLE
Denis Vlasenko512a5452007-09-24 10:41:30 +00001324 envp = environ;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001325 Argv = argv;
1326 if (envp == 0 || *envp == 0)
1327 envp = argv;
1328 while (*envp)
1329 envp++;
1330 LastArg = envp[-1] + strlen(envp[-1]);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001331#endif
1332
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001333 uid = getuid();
1334 if (uid != 0)
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001335 config_filename = NULL;
Denis Vlasenko5a142022007-03-26 13:20:54 +00001336
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00001337 opt = getopt32(argv, "R:f", &stoomany);
Denis Vlasenko5a142022007-03-26 13:20:54 +00001338 if (opt & 1)
1339 toomany = xatoi_u(stoomany);
1340 argv += optind;
1341 argc -= optind;
1342 if (argc)
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001343 config_filename = argv[0];
1344 if (config_filename == NULL)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001345 bb_error_msg_and_die("non-root must specify a config file");
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001346
Denis Vlasenko5a142022007-03-26 13:20:54 +00001347 if (!(opt & 2))
1348 bb_daemonize_or_rexec(0, argv - optind);
1349 else
1350 bb_sanitize_stdio();
Denis Vlasenkoffcef2d2007-01-14 02:03:28 +00001351 openlog(applet_name, LOG_PID | LOG_NOWAIT, LOG_DAEMON);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001352 logmode = LOGMODE_SYSLOG;
Eric Andersen35e643b2003-07-28 07:40:39 +00001353
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001354 if (uid == 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001355 /* If run by hand, ensure groups vector gets trashed */
Denis Vlasenko7a431b32007-01-14 01:29:06 +00001356 gid_t gid = getgid();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001357 setgroups(1, &gid);
1358 }
1359
Denis Vlasenko10457b92007-03-27 22:01:31 +00001360 write_pidfile(_PATH_INETDPID);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001361
1362 if (getrlimit(RLIMIT_NOFILE, &rlim_ofile) < 0) {
1363 bb_perror_msg("getrlimit");
1364 } else {
1365 rlim_ofile_cur = rlim_ofile.rlim_cur;
1366 if (rlim_ofile_cur == RLIM_INFINITY) /* ! */
1367 rlim_ofile_cur = OPEN_MAX;
1368 }
1369
1370 memset((char *) &sa, 0, sizeof(sa));
1371 sigemptyset(&sa.sa_mask);
1372 sigaddset(&sa.sa_mask, SIGALRM);
1373 sigaddset(&sa.sa_mask, SIGCHLD);
1374 sigaddset(&sa.sa_mask, SIGHUP);
1375 sa.sa_handler = retry;
1376 sigaction(SIGALRM, &sa, NULL);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001377 config(SIGHUP);
1378 sa.sa_handler = config;
1379 sigaction(SIGHUP, &sa, NULL);
1380 sa.sa_handler = reapchild;
1381 sigaction(SIGCHLD, &sa, NULL);
1382 sa.sa_handler = goaway;
1383 sigaction(SIGTERM, &sa, NULL);
1384 sa.sa_handler = goaway;
1385 sigaction(SIGINT, &sa, NULL);
1386 sa.sa_handler = SIG_IGN;
1387 sigaction(SIGPIPE, &sa, &sapipe);
1388 memset(&wait_mask, 0, sizeof(wait_mask));
1389 {
1390 /* space for daemons to overwrite environment for ps */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001391#define DUMMYSIZE 100
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001392 char dummy[DUMMYSIZE];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001393
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001394 (void) memset(dummy, 'x', DUMMYSIZE - 1);
1395 dummy[DUMMYSIZE - 1] = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001396
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001397 (void) setenv("inetd_dummy", dummy, 1);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001398 }
1399
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001400 for (;;) {
1401 int n, ctrl = -1;
1402 fd_set readable;
1403
1404 if (nsock == 0) {
1405 Block_Using_Signals(omask);
1406 while (nsock == 0)
1407 sigsuspend(&wait_mask);
1408 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1409 }
1410
1411 readable = allsock;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001412 n = select(maxsock + 1, &readable, NULL, NULL, NULL);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001413 if (n <= 0) {
1414 if (n < 0 && errno != EINTR) {
1415 bb_perror_msg("select");
1416 sleep(1);
1417 }
Glenn L McGrath82d42db2004-02-18 13:12:53 +00001418 continue;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001419 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001420
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001421 for (sep = servtab; n && sep; sep = sep->se_next) {
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001422 if (sep->se_fd == -1 || !FD_ISSET(sep->se_fd, &readable))
1423 continue;
1424
1425 n--;
1426 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM) {
1427 ctrl = accept(sep->se_fd, NULL, NULL);
1428 if (ctrl < 0) {
1429 if (errno == EINTR)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001430 continue;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001431 bb_perror_msg("accept (for %s)", sep->se_service);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001432 continue;
1433 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001434 if (sep->se_family == AF_INET && sep->se_socktype == SOCK_STREAM) {
1435 struct sockaddr_in peer;
1436 socklen_t plen = sizeof(peer);
1437
1438 if (getpeername(ctrl, (struct sockaddr *) &peer, &plen) < 0) {
Denis Vlasenkoea620772006-10-14 02:23:43 +00001439 bb_error_msg("cannot getpeername");
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001440 close(ctrl);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001441 continue;
1442 }
1443 if (ntohs(peer.sin_port) == 20) {
1444 /* XXX ftp bounce */
1445 close(ctrl);
1446 continue;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001447 }
1448 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001449 } else
1450 ctrl = sep->se_fd;
1451
1452 Block_Using_Signals(omask);
1453 pid = 0;
1454#ifdef INETD_FEATURE_ENABLED
1455 if (sep->se_bi == 0 || sep->se_bi->bi_fork)
1456#endif
1457 {
1458 if (sep->se_count++ == 0)
1459 (void) gettimeofday(&sep->se_time, NULL);
1460 else if (toomany > 0 && sep->se_count >= sep->se_max) {
1461 struct timeval now;
1462
1463 (void) gettimeofday(&now, NULL);
1464 if (now.tv_sec - sep->se_time.tv_sec > CNT_INTVL) {
1465 sep->se_time = now;
1466 sep->se_count = 1;
1467 } else {
1468 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM)
1469 close(ctrl);
1470 if (sep->se_family == AF_INET &&
1471 ntohs(sep->se_ctrladdr_in.sin_port) >= IPPORT_RESERVED) {
1472 /*
1473 * Cannot close it -- there are
1474 * thieves on the system.
1475 * Simply ignore the connection.
1476 */
1477 --sep->se_count;
1478 continue;
1479 }
1480 bb_error_msg("%s/%s server failing (looping), service terminated",
1481 sep->se_service, sep->se_proto);
1482 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM)
1483 close(ctrl);
1484 FD_CLR(sep->se_fd, &allsock);
1485 (void) close(sep->se_fd);
1486 sep->se_fd = -1;
1487 sep->se_count = 0;
1488 nsock--;
1489 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1490 if (!timingout) {
1491 timingout = 1;
1492 alarm(RETRYTIME);
1493 }
1494 continue;
1495 }
1496 }
1497 pid = fork();
1498 }
1499 if (pid < 0) {
1500 bb_perror_msg("fork");
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001501 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM)
1502 close(ctrl);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001503 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1504 sleep(1);
1505 continue;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001506 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001507 if (pid && sep->se_wait) {
1508 sep->se_wait = pid;
1509 FD_CLR(sep->se_fd, &allsock);
1510 nsock--;
1511 }
1512 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1513 if (pid == 0) {
1514#ifdef INETD_FEATURE_ENABLED
1515 if (sep->se_bi) {
1516 (*sep->se_bi->bi_fn)(ctrl, sep);
1517 } else
1518#endif
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001519 {
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001520 pwd = getpwnam(sep->se_user);
1521 if (pwd == NULL) {
1522 bb_error_msg("getpwnam: %s: no such user", sep->se_user);
1523 goto do_exit1;
1524 }
1525 if (setsid() < 0)
1526 bb_perror_msg("%s: setsid", sep->se_service);
1527 if (sep->se_group && (grp = getgrnam(sep->se_group)) == NULL) {
1528 bb_error_msg("getgrnam: %s: no such group", sep->se_group);
1529 goto do_exit1;
1530 }
1531 if (uid != 0) {
1532 /* a user running private inetd */
1533 if (uid != pwd->pw_uid)
1534 _exit(1);
1535 } else if (pwd->pw_uid) {
1536 if (sep->se_group)
1537 pwd->pw_gid = grp->gr_gid;
1538 xsetgid((gid_t) pwd->pw_gid);
1539 initgroups(pwd->pw_name, pwd->pw_gid);
1540 xsetuid((uid_t) pwd->pw_uid);
1541 } else if (sep->se_group) {
1542 xsetgid(grp->gr_gid);
1543 setgroups(1, &grp->gr_gid);
1544 }
1545 dup2(ctrl, 0);
1546 if (ctrl) close(ctrl);
1547 dup2(0, 1);
1548 dup2(0, 2);
1549 if (rlim_ofile.rlim_cur != rlim_ofile_cur)
1550 if (setrlimit(RLIMIT_NOFILE, &rlim_ofile) < 0)
1551 bb_perror_msg("setrlimit");
1552 closelog();
1553 for (tmpint = rlim_ofile_cur - 1; --tmpint > 2;)
1554 (void) close(tmpint);
1555 sigaction(SIGPIPE, &sapipe, NULL);
1556 execv(sep->se_server, sep->se_argv);
1557 bb_perror_msg("execv %s", sep->se_server);
Denis Vlasenkoce074df2007-03-24 12:07:31 +00001558 do_exit1:
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001559 if (sep->se_socktype != SOCK_STREAM)
1560 recv(0, buf, sizeof(buf), 0);
1561 _exit(1);
1562 }
1563 }
1564 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM)
1565 close(ctrl);
1566 } /* for (sep = servtab...) */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +00001567 } /* for (;;) */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001568}
Glenn L McGrath06e95652003-02-09 06:51:14 +00001569
1570/*
1571 * Internet services provided internally by inetd:
1572 */
1573#define BUFSIZE 4096
1574
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001575#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO || \
1576 ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN || \
1577 ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001578static int dg_badinput(struct sockaddr_in *dg_sin)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001579{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001580 if (ntohs(dg_sin->sin_port) < IPPORT_RESERVED)
1581 return 1;
1582 if (dg_sin->sin_addr.s_addr == htonl(INADDR_BROADCAST))
1583 return 1;
1584 /* XXX compare against broadcast addresses in SIOCGIFCONF list? */
1585 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001586}
1587#endif
1588
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001589#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Glenn L McGrath06e95652003-02-09 06:51:14 +00001590/* Echo service -- echo data back */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001591/* ARGSUSED */
1592static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001593echo_stream(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001594{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001595 char buffer[BUFSIZE];
1596 int i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001597
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001598 inetd_setproctitle(sep->se_service, s);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001599 while (1) {
1600 i = read(s, buffer, sizeof(buffer));
1601 if (i <= 0) break;
1602 /* FIXME: this isnt correct - safe_write()? */
1603 if (write(s, buffer, i) <= 0) break;
1604 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001605 exit(0);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001606}
1607
1608/* Echo service -- echo data back */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001609/* ARGSUSED */
1610static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001611echo_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001612{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001613 char buffer[BUFSIZE];
1614 int i;
1615 socklen_t size;
1616 /* struct sockaddr_storage ss; */
1617 struct sockaddr sa;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001618
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001619 size = sizeof(sa);
1620 i = recvfrom(s, buffer, sizeof(buffer), 0, &sa, &size);
1621 if (i < 0)
1622 return;
1623 if (dg_badinput((struct sockaddr_in *) &sa))
1624 return;
1625 (void) sendto(s, buffer, i, 0, &sa, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001626}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001627#endif /* FEATURE_INETD_SUPPORT_BUILTIN_ECHO */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001628
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001629#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Glenn L McGrath06e95652003-02-09 06:51:14 +00001630/* Discard service -- ignore data */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001631/* ARGSUSED */
1632static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001633discard_stream(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001634{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001635 char buffer[BUFSIZE];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001636
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001637 inetd_setproctitle(sep->se_service, s);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001638 while (1) {
1639 errno = 0;
1640 if (read(s, buffer, sizeof(buffer)) <= 0 && errno != EINTR)
1641 exit(0);
1642 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001643}
1644
1645/* Discard service -- ignore data */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001646/* ARGSUSED */
1647static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001648discard_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001649{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001650 char buffer[BUFSIZE];
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001651
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001652 (void) read(s, buffer, sizeof(buffer));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001653}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001654#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DISCARD */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001655
1656
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001657#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Glenn L McGrath06e95652003-02-09 06:51:14 +00001658#define LINESIZ 72
Glenn L McGrath06e95652003-02-09 06:51:14 +00001659
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001660static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001661initring(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001662{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001663 int i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001664
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001665 endring = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001666 for (i = 0; i <= 128; ++i)
1667 if (isprint(i))
1668 *endring++ = i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001669}
1670
1671/* Character generator */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001672/* ARGSUSED */
1673static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001674chargen_stream(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001675{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001676 char *rs;
1677 int len;
1678 char text[LINESIZ + 2];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001679
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001680 inetd_setproctitle(sep->se_service, s);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001681
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001682 if (!endring) {
1683 initring();
1684 rs = ring;
1685 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001686
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001687 text[LINESIZ] = '\r';
1688 text[LINESIZ + 1] = '\n';
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001689 rs = ring;
1690 for (;;) {
1691 len = endring - rs;
1692 if (len >= LINESIZ)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001693 memmove(text, rs, LINESIZ);
1694 else {
1695 memmove(text, rs, len);
1696 memmove(text + len, ring, LINESIZ - len);
1697 }
1698 if (++rs == endring)
1699 rs = ring;
1700 if (write(s, text, sizeof(text)) != sizeof(text))
1701 break;
1702 }
1703 exit(0);
1704}
1705
1706/* Character generator */
1707/* ARGSUSED */
1708static void
1709chargen_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
1710{
1711 /* struct sockaddr_storage ss; */
1712 struct sockaddr sa;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001713 int len;
1714 char text[LINESIZ + 2];
1715 socklen_t size;
1716
Denis Vlasenko512a5452007-09-24 10:41:30 +00001717 if (!endring) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001718 initring();
Denis Vlasenko512a5452007-09-24 10:41:30 +00001719 ringpos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001720 }
1721
1722 size = sizeof(sa);
1723 if (recvfrom(s, text, sizeof(text), 0, &sa, &size) < 0)
1724 return;
1725 if (dg_badinput((struct sockaddr_in *) &sa))
1726 return;
1727
Denis Vlasenko512a5452007-09-24 10:41:30 +00001728 len = endring - ringpos;
1729 if (len >= LINESIZ)
1730 memmove(text, ringpos, LINESIZ);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001731 else {
Denis Vlasenko512a5452007-09-24 10:41:30 +00001732 memmove(text, ringpos, len);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001733 memmove(text + len, ring, LINESIZ - len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001734 }
Denis Vlasenko512a5452007-09-24 10:41:30 +00001735 if (++ringpos == endring)
1736 ringpos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001737 text[LINESIZ] = '\r';
1738 text[LINESIZ + 1] = '\n';
1739 (void) sendto(s, text, sizeof(text), 0, &sa, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001740}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001741#endif /* FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001742
1743
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001744#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001745/*
1746 * Return a machine readable date and time, in the form of the
1747 * number of seconds since midnight, Jan 1, 1900. Since gettimeofday
1748 * returns the number of seconds since midnight, Jan 1, 1970,
1749 * we must add 2208988800 seconds to this figure to make up for
1750 * some seventy years Bell Labs was asleep.
1751 */
1752
Denis Vlasenko35d4da02007-01-22 14:04:27 +00001753static unsigned machtime(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001754{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001755 struct timeval tv;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001756
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001757 if (gettimeofday(&tv, NULL) < 0) {
1758 fprintf(stderr, "Unable to get time of day\n");
1759 return 0L;
1760 }
Denis Vlasenko35d4da02007-01-22 14:04:27 +00001761 return htonl((unsigned) tv.tv_sec + 2208988800UL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001762}
1763
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001764/* ARGSUSED */
1765static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001766machtime_stream(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001767{
Denis Vlasenko35d4da02007-01-22 14:04:27 +00001768 unsigned result;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001769
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001770 result = machtime();
1771 (void) write(s, (char *) &result, sizeof(result));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001772}
1773
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001774/* ARGSUSED */
1775static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001776machtime_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001777{
Denis Vlasenko35d4da02007-01-22 14:04:27 +00001778 unsigned result;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001779 /* struct sockaddr_storage ss; */
1780 struct sockaddr sa;
1781 struct sockaddr_in *dg_sin;
1782 socklen_t size;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001783
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001784 size = sizeof(sa);
1785 if (recvfrom(s, (char *) &result, sizeof(result), 0, &sa, &size) < 0)
1786 return;
1787 /* if (dg_badinput((struct sockaddr *)&ss)) */
1788 dg_sin = (struct sockaddr_in *) &sa;
1789 if (dg_sin->sin_addr.s_addr == htonl(INADDR_BROADCAST) ||
1790 ntohs(dg_sin->sin_port) < IPPORT_RESERVED / 2)
1791 return;
1792 result = machtime();
1793 (void) sendto(s, (char *) &result, sizeof(result), 0, &sa, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001794}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001795#endif /* FEATURE_INETD_SUPPORT_BUILTIN_TIME */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001796
1797
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001798#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001799/* Return human-readable time of day */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001800/* ARGSUSED */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001801static void daytime_stream(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001802{
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001803 char buffer[32];
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001804 time_t t;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001805
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001806 t = time(NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001807
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001808// fdprintf instead?
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001809 (void) sprintf(buffer, "%.24s\r\n", ctime(&t));
1810 (void) write(s, buffer, strlen(buffer));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001811}
1812
1813/* Return human-readable time of day */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001814/* ARGSUSED */
1815void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001816daytime_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001817{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001818 char buffer[256];
1819 time_t t;
1820 /* struct sockaddr_storage ss; */
1821 struct sockaddr sa;
1822 socklen_t size;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001823
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001824 t = time(NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001825
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001826 size = sizeof(sa);
1827 if (recvfrom(s, buffer, sizeof(buffer), 0, &sa, &size) < 0)
1828 return;
1829 if (dg_badinput((struct sockaddr_in *) &sa))
1830 return;
1831 (void) sprintf(buffer, "%.24s\r\n", ctime(&t));
1832 (void) sendto(s, buffer, strlen(buffer), 0, &sa, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001833}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001834#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME */