blob: d643dc6e04651342f8879eb4b5ae53205576bd53 [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 struct servtab_t {
Denis Vlasenko39824072007-09-26 10:46:18 +0000210 /* The most frequently referenced one: */
211 int se_fd; /* open descriptor */
212 /* NB: 'biggest fields last' saves on code size (~250 bytes) */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000213 char *se_hostaddr; /* host address to listen on */
214 char *se_service; /* name of service */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000215 char *se_proto; /* protocol used */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000216#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000217 int se_rpcprog; /* rpc program number */
218 int se_rpcversl; /* rpc program lowest version */
219 int se_rpcversh; /* rpc program highest version */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000220#define isrpcservice(sep) ((sep)->se_rpcversl != 0)
221#else
222#define isrpcservice(sep) 0
223#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000224 pid_t se_wait; /* single threaded server */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000225 socktype_t se_socktype; /* type of socket to use */
226 family_t se_family; /* address family */
227 smallint se_checked; /* looked at during merge */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000228 char *se_user; /* user name to run as */
229 char *se_group; /* group name to run as */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000230#ifdef INETD_FEATURE_ENABLED
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000231 const struct builtin *se_bi; /* if built-in, description */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000232#endif
Denis Vlasenko39824072007-09-26 10:46:18 +0000233 int se_ctrladdr_size;
234 int se_max; /* max # of instances of this service */
235 int se_count; /* number started since se_time */
236 struct servtab_t *se_next;
237 struct timeval se_time; /* start of se_count */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000238 char *se_server; /* server program */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000239#define MAXARGV 20
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000240 char *se_argv[MAXARGV + 1]; /* program arguments */
Denis Vlasenkoc1876d72006-09-23 15:58:01 +0000241 union {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000242 struct sockaddr se_un_ctrladdr;
243 struct sockaddr_in se_un_ctrladdr_in;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000244#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000245 struct sockaddr_in6 se_un_ctrladdr_in6;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000246#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000247 struct sockaddr_un se_un_ctrladdr_un;
248 } se_un; /* bound address */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000249#define se_ctrladdr se_un.se_un_ctrladdr
250#define se_ctrladdr_in se_un.se_un_ctrladdr_in
251#define se_ctrladdr_in6 se_un.se_un_ctrladdr_in6
252#define se_ctrladdr_un se_un.se_un_ctrladdr_un
Glenn L McGrath03a06432004-02-18 13:19:58 +0000253} servtab_t;
254
Glenn L McGrathff6ec8a2004-01-17 02:47:45 +0000255#ifdef INETD_FEATURE_ENABLED
Denis Vlasenkoc1876d72006-09-23 15:58:01 +0000256struct builtin {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000257 const char *bi_service; /* internally provided service name */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000258 socktype_t bi_socktype; /* type of socket supported */
259 uint8_t bi_fork; /* 1 if should fork before call */
260// Commented since it is always 0
261// uint8_t bi_wait; /* 1 if should wait for child */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000262 void (*bi_fn) (int, servtab_t *);
Glenn L McGrathff6ec8a2004-01-17 02:47:45 +0000263};
Glenn L McGrath06e95652003-02-09 06:51:14 +0000264
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000265 /* Echo received data */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000266#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000267static void echo_stream(int, servtab_t *);
268static void echo_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000269#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000270 /* Internet /dev/null */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000271#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000272static void discard_stream(int, servtab_t *);
273static void discard_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000274#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000275 /* Return 32 bit time since 1900 */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000276#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000277static void machtime_stream(int, servtab_t *);
278static void machtime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000279#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000280 /* Return human-readable time */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000281#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000282static void daytime_stream(int, servtab_t *);
283static void daytime_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000284#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000285 /* Familiar character generator */
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000286#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000287static void chargen_stream(int, servtab_t *);
288static void chargen_dg(int, servtab_t *);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000289#endif
290
Bernhard Reutner-Fischera4acf662006-04-10 12:26:47 +0000291static const struct builtin builtins[] = {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000292#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000293 /* Echo received data */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000294 {"echo", SOCK_STREAM, 1, echo_stream,},
295 {"echo", SOCK_DGRAM, 0, echo_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000296#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000297#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000298 /* Internet /dev/null */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000299 {"discard", SOCK_STREAM, 1, discard_stream,},
300 {"discard", SOCK_DGRAM, 0, discard_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000301#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000302#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000303 /* Return 32 bit time since 1900 */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000304 {"time", SOCK_STREAM, 0, machtime_stream,},
305 {"time", SOCK_DGRAM, 0, machtime_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000306#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000307#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000308 /* Return human-readable time */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000309 {"daytime", SOCK_STREAM, 0, daytime_stream,},
310 {"daytime", SOCK_DGRAM, 0, daytime_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_CHARGEN
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000313 /* Familiar character generator */
Denis Vlasenko512a5452007-09-24 10:41:30 +0000314 {"chargen", SOCK_STREAM, 1, chargen_stream,},
315 {"chargen", SOCK_DGRAM, 0, chargen_dg,},
Glenn L McGrath06e95652003-02-09 06:51:14 +0000316#endif
Denis Vlasenko512a5452007-09-24 10:41:30 +0000317 { /* zero filled */ }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000318};
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000319#endif /* INETD_FEATURE_ENABLED */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000320
Denis Vlasenko512a5452007-09-24 10:41:30 +0000321struct globals {
322 rlim_t rlim_ofile_cur;
323 struct rlimit rlim_ofile;
324 servtab_t *servtab;
325 int global_queuelen;
326 int nsock;
327 int maxsock;
328 int toomany;
329 int timingout;
330 struct servent *sp;
331 uid_t uid;
332 const char *config_filename;
333 FILE *fconfig;
334 char *defhost;
335#ifdef INETD_SETPROCTITLE
336 char **Argv;
337 char *LastArg;
338#endif
339#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
340 char *endring;
341 char *ringpos;
342 char ring[128];
343#endif
344 fd_set allsock;
345 /* Used only in nextline() */
346 char line[80]; /* at least 80, see LINE_SIZE */
347};
348#define G (*(struct globals*)&bb_common_bufsiz1)
349enum { LINE_SIZE = COMMON_BUFSIZE - offsetof(struct globals, line) };
350struct BUG_G_too_big {
351 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
352};
353#define rlim_ofile_cur (G.rlim_ofile_cur )
354#define rlim_ofile (G.rlim_ofile )
355#define servtab (G.servtab )
356#define global_queuelen (G.global_queuelen)
357#define nsock (G.nsock )
358#define maxsock (G.maxsock )
359#define toomany (G.toomany )
360#define timingout (G.timingout )
361#define sp (G.sp )
362#define uid (G.uid )
363#define config_filename (G.config_filename)
364#define fconfig (G.fconfig )
365#define defhost (G.defhost )
366#define Argv (G.Argv )
367#define LastArg (G.LastArg )
368#define endring (G.endring )
369#define ringpos (G.ringpos )
370#define ring (G.ring )
371#define allsock (G.allsock )
372#define line (G.line )
373#define INIT_G() do { \
374 rlim_ofile_cur = OPEN_MAX; \
375 global_queuelen = 128; \
376 config_filename = "/etc/inetd.conf"; \
377} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000378
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000379/* xstrdup(NULL) returns NULL, but this one
380 * will return newly-allocated "" if called with NULL arg
381 * TODO: audit whether this makes any real difference
382 */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000383static char *xxstrdup(char *cp)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000384{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000385 return xstrdup(cp ? cp : "");
Glenn L McGrath06e95652003-02-09 06:51:14 +0000386}
387
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000388static int setconfig(void)
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000389{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000390 free(defhost);
391 defhost = xstrdup("*");
392 if (fconfig != NULL) {
393 fseek(fconfig, 0L, SEEK_SET);
394 return 1;
395 }
Denis Vlasenko55f30b02007-03-24 22:42:29 +0000396 fconfig = fopen(config_filename, "r");
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000397 return (fconfig != NULL);
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000398}
399
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000400static void endconfig(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000401{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000402 if (fconfig) {
403 (void) fclose(fconfig);
404 fconfig = NULL;
405 }
406 free(defhost);
407 defhost = 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000408}
Glenn L McGrath53766c42004-01-18 08:58:06 +0000409
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000410#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000411static void register_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000412{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000413 int n;
414 struct sockaddr_in ir_sin;
415 struct protoent *pp;
416 socklen_t size;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000417
Denis Vlasenko1bec1b92007-11-06 02:23:39 +0000418 pp = getprotobyname(sep->se_proto + 4);
419 if (pp == NULL) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000420 bb_perror_msg("%s: getproto", sep->se_proto);
421 return;
422 }
423 size = sizeof ir_sin;
424 if (getsockname(sep->se_fd, (struct sockaddr *) &ir_sin, &size) < 0) {
425 bb_perror_msg("%s/%s: getsockname",
426 sep->se_service, sep->se_proto);
427 return;
428 }
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000429
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000430 for (n = sep->se_rpcversl; n <= sep->se_rpcversh; n++) {
431 (void) pmap_unset(sep->se_rpcprog, n);
432 if (!pmap_set(sep->se_rpcprog, n, pp->p_proto, ntohs(ir_sin.sin_port)))
433 bb_perror_msg("%s %s: pmap_set: %u %u %u %u",
434 sep->se_service, sep->se_proto,
435 sep->se_rpcprog, n, pp->p_proto, ntohs(ir_sin.sin_port));
436 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000437}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000438
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000439static void unregister_rpc(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000440{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000441 int n;
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000442
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000443 for (n = sep->se_rpcversl; n <= sep->se_rpcversh; n++) {
444 if (!pmap_unset(sep->se_rpcprog, n))
445 bb_error_msg("pmap_unset(%u, %u)", sep->se_rpcprog, n);
446 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000447}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000448#endif /* FEATURE_INETD_RPC */
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000449
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000450static void freeconfig(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000451{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000452 int i;
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000453
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000454 free(cp->se_hostaddr);
455 free(cp->se_service);
456 free(cp->se_proto);
457 free(cp->se_user);
458 free(cp->se_group);
459 free(cp->se_server);
460 for (i = 0; i < MAXARGV; i++)
461 free(cp->se_argv[i]);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000462}
Glenn L McGrathdf7d84c2004-02-22 11:25:13 +0000463
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000464static int bump_nofile(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000465{
466#define FD_CHUNK 32
Glenn L McGratheaf5bc02004-01-20 15:32:39 +0000467
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000468 struct rlimit rl;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000469
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000470 if (getrlimit(RLIMIT_NOFILE, &rl) < 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000471 bb_perror_msg("getrlimit");
472 return -1;
473 }
474 rl.rlim_cur = MIN(rl.rlim_max, rl.rlim_cur + FD_CHUNK);
475 rl.rlim_cur = MIN(FD_SETSIZE, rl.rlim_cur + FD_CHUNK);
476 if (rl.rlim_cur <= rlim_ofile_cur) {
477 bb_error_msg("bump_nofile: cannot extend file limit, max = %d",
478 (int) rl.rlim_cur);
479 return -1;
480 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000481
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000482 if (setrlimit(RLIMIT_NOFILE, &rl) < 0) {
483 bb_perror_msg("setrlimit");
484 return -1;
485 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000486
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000487 rlim_ofile_cur = rl.rlim_cur;
488 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000489}
490
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000491static void setup(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000492{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000493 int r;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000494
Denis Vlasenkoc1876d72006-09-23 15:58:01 +0000495 sep->se_fd = socket(sep->se_family, sep->se_socktype, 0);
496 if (sep->se_fd < 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000497 bb_perror_msg("%s/%s: socket", sep->se_service, sep->se_proto);
498 return;
499 }
Denis Vlasenkoa27a11b2007-08-18 14:16:39 +0000500 setsockopt_reuseaddr(sep->se_fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000501
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000502#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000503 if (isrpcservice(sep)) {
504 struct passwd *pwd;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000505
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000506 /*
507 * for RPC services, attempt to use a reserved port
508 * if they are going to be running as root.
509 *
510 * Also, zero out the port for all RPC services; let bind()
511 * find one.
512 */
513 sep->se_ctrladdr_in.sin_port = 0;
514 if (sep->se_user && (pwd = getpwnam(sep->se_user)) &&
515 pwd->pw_uid == 0 && uid == 0)
516 r = bindresvport(sep->se_fd, &sep->se_ctrladdr_in);
517 else {
518 r = bind(sep->se_fd, &sep->se_ctrladdr, sep->se_ctrladdr_size);
519 if (r == 0) {
520 socklen_t len = sep->se_ctrladdr_size;
521 int saveerrno = errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000522
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000523 /* update se_ctrladdr_in.sin_port */
524 r = getsockname(sep->se_fd, &sep->se_ctrladdr, &len);
525 if (r <= 0)
526 errno = saveerrno;
527 }
528 }
529 } else
Glenn L McGrath53766c42004-01-18 08:58:06 +0000530#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000531 r = bind(sep->se_fd, &sep->se_ctrladdr, sep->se_ctrladdr_size);
532 if (r < 0) {
533 bb_perror_msg("%s/%s (%d): bind",
534 sep->se_service, sep->se_proto, sep->se_ctrladdr.sa_family);
535 close(sep->se_fd);
536 sep->se_fd = -1;
537 if (!timingout) {
538 timingout = 1;
539 alarm(RETRYTIME);
540 }
541 return;
Glenn L McGrath53766c42004-01-18 08:58:06 +0000542 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000543 if (sep->se_socktype == SOCK_STREAM)
544 listen(sep->se_fd, global_queuelen);
Glenn L McGrath53766c42004-01-18 08:58:06 +0000545
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000546 FD_SET(sep->se_fd, &allsock);
547 nsock++;
548 if (sep->se_fd > maxsock) {
549 maxsock = sep->se_fd;
550 if ((rlim_t)maxsock > rlim_ofile_cur - FD_MARGIN)
551 bump_nofile();
552 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000553}
554
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000555static char *nextline(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000556{
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000557 if (fgets(line, LINE_SIZE, fconfig) == NULL)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000558 return NULL;
Denis Vlasenkoc03e8722007-12-26 20:56:55 +0000559 *strchrnul(line, '\n') = '\0';
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000560 return line;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000561}
562
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000563static char *skip(char **cpp) /* int report; */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000564{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000565 char *cp = *cpp;
566 char *start;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000567
568/* erp: */
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000569 if (cp == NULL) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000570 /* if (report) */
571 /* bb_error_msg("syntax error in inetd config file"); */
572 return NULL;
573 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000574
Denis Vlasenkoce074df2007-03-24 12:07:31 +0000575 again:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000576 while (*cp == ' ' || *cp == '\t')
577 cp++;
578 if (*cp == '\0') {
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000579 int c = getc(fconfig);
Denis Vlasenko55f30b02007-03-24 22:42:29 +0000580 ungetc(c, fconfig);
581 if (c == ' ' || c == '\t') {
582 cp = nextline();
583 if (cp)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000584 goto again;
Denis Vlasenko55f30b02007-03-24 22:42:29 +0000585 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000586 *cpp = NULL;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000587 return NULL;
588 }
589 start = cp;
590 while (*cp && *cp != ' ' && *cp != '\t')
591 cp++;
592 if (*cp != '\0')
593 *cp++ = '\0';
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000594
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000595 *cpp = cp;
596 return start;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000597}
598
599static servtab_t *new_servtab(void)
600{
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000601 return xzalloc(sizeof(servtab_t));
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000602}
603
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000604static servtab_t *dupconfig(servtab_t *sep)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000605{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000606 servtab_t *newtab;
607 int argc;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000608
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000609 newtab = new_servtab();
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000610 newtab->se_service = xstrdup(sep->se_service);
611 newtab->se_socktype = sep->se_socktype;
612 newtab->se_family = sep->se_family;
613 newtab->se_proto = xstrdup(sep->se_proto);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000614#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000615 newtab->se_rpcprog = sep->se_rpcprog;
616 newtab->se_rpcversl = sep->se_rpcversl;
617 newtab->se_rpcversh = sep->se_rpcversh;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000618#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000619 newtab->se_wait = sep->se_wait;
620 newtab->se_user = xstrdup(sep->se_user);
621 newtab->se_group = xstrdup(sep->se_group);
Glenn L McGrathc3b134f2004-01-17 01:26:53 +0000622#ifdef INETD_FEATURE_ENABLED
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000623 newtab->se_bi = sep->se_bi;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000624#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000625 newtab->se_server = xstrdup(sep->se_server);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000626
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000627 for (argc = 0; argc <= MAXARGV; argc++)
628 newtab->se_argv[argc] = xstrdup(sep->se_argv[argc]);
629 newtab->se_max = sep->se_max;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000630
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000631 return newtab;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000632}
633
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000634static servtab_t *getconfigent(void)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000635{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000636 servtab_t *sep;
637 int argc;
638 char *cp, *arg;
639 char *hostdelim;
640 servtab_t *nsep;
641 servtab_t *psep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000642
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000643 sep = new_servtab();
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000644
Denis Vlasenko13858992006-10-08 12:49:22 +0000645 more:
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000646 while ((cp = nextline()) && *cp == '#')
647 continue; /* skip comment lines */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000648 if (cp == NULL) {
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000649 free(sep);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000650 return NULL;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000651 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000652
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000653 arg = skip(&cp);
654 if (arg == NULL) {
655 /* A blank line. */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000656 goto more;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000657 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000658
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000659 /* Check for a host name. */
660 hostdelim = strrchr(arg, ':');
661 if (hostdelim) {
662 *hostdelim = '\0';
663 sep->se_hostaddr = xstrdup(arg);
664 arg = hostdelim + 1;
665 /*
666 * If the line is of the form `host:', then just change the
667 * default host for the following lines.
668 */
669 if (*arg == '\0') {
670 arg = skip(&cp);
671 if (cp == NULL) {
672 free(defhost);
673 defhost = sep->se_hostaddr;
674 goto more;
675 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000676 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000677 } else
678 sep->se_hostaddr = xxstrdup(defhost);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000679
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000680 sep->se_service = xxstrdup(arg);
681 arg = skip(&cp);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000682
Denis Vlasenko9d1afdb2007-10-30 19:54:39 +0000683 {
684 static int8_t SOCK_xxx[] ALIGN1 = {
685 -1,
686 SOCK_STREAM, SOCK_DGRAM, SOCK_RDM,
687 SOCK_SEQPACKET, SOCK_RAW
688 };
689 sep->se_socktype = SOCK_xxx[1 + index_in_strings(
690 "stream""\0" "dgram""\0" "rdm""\0"
691 "seqpacket""\0" "raw""\0"
692 , arg)];
693 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000694
695 sep->se_proto = xxstrdup(skip(&cp));
696
697 if (strcmp(sep->se_proto, "unix") == 0) {
698 sep->se_family = AF_UNIX;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000699 } else {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000700 sep->se_family = AF_INET;
701 if (sep->se_proto[strlen(sep->se_proto) - 1] == '6')
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000702#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000703 sep->se_family = AF_INET6;
704#else
705 bb_error_msg("%s: IPV6 not supported", sep->se_proto);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000706#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000707 if (strncmp(sep->se_proto, "rpc/", 4) == 0) {
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000708#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000709 char *p, *ccp;
710 long l;
711
712 p = strchr(sep->se_service, '/');
713 if (p == 0) {
714 bb_error_msg("%s: no rpc version", sep->se_service);
715 goto more;
716 }
717 *p++ = '\0';
718 l = strtol(p, &ccp, 0);
719 if (ccp == p || l < 0 || l > INT_MAX) {
Denis Vlasenkoce074df2007-03-24 12:07:31 +0000720 badafterall:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000721 bb_error_msg("%s/%s: bad rpc version", sep->se_service, p);
722 goto more;
723 }
724 sep->se_rpcversl = sep->se_rpcversh = l;
725 if (*ccp == '-') {
726 p = ccp + 1;
727 l = strtol(p, &ccp, 0);
728 if (ccp == p || l < 0 || l > INT_MAX || l < sep->se_rpcversl || *ccp)
729 goto badafterall;
730 sep->se_rpcversh = l;
731 } else if (*ccp != '\0')
732 goto badafterall;
733#else
Denis Vlasenko13858992006-10-08 12:49:22 +0000734 bb_error_msg("%s: rpc services not supported", sep->se_service);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000735#endif
736 }
737 }
738 arg = skip(&cp);
739 if (arg == NULL)
740 goto more;
741
742 {
743 char *s = strchr(arg, '.');
744 if (s) {
745 *s++ = '\0';
Denis Vlasenko13858992006-10-08 12:49:22 +0000746 sep->se_max = xatoi(s);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000747 } else
748 sep->se_max = toomany;
749 }
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000750 sep->se_wait = (strcmp(arg, "wait") == 0);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000751 sep->se_user = xxstrdup(skip(&cp));
752 arg = strchr(sep->se_user, '.');
753 if (arg == NULL)
754 arg = strchr(sep->se_user, ':');
755 if (arg) {
756 *arg++ = '\0';
757 sep->se_group = xstrdup(arg);
758 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000759
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000760 sep->se_server = xxstrdup(skip(&cp));
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000761#ifdef INETD_FEATURE_ENABLED
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000762 /* sep->se_bi = NULL; - done by new_servtab() */
763 if (strcmp(sep->se_server, "internal") == 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000764 const struct builtin *bi;
765
766 for (bi = builtins; bi->bi_service; bi++)
Denis Vlasenko512a5452007-09-24 10:41:30 +0000767 if (bi->bi_socktype == sep->se_socktype
768 && strcmp(bi->bi_service, sep->se_service) == 0)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000769 break;
770 if (bi->bi_service == 0) {
771 bb_error_msg("internal service %s unknown", sep->se_service);
772 goto more;
773 }
774 sep->se_bi = bi;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000775 sep->se_wait = 0; /* = bi->bi_wait; - always 0 */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000776 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000777#endif
778 argc = 0;
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000779 while ((arg = skip(&cp)) != NULL && argc < MAXARGV) {
780 sep->se_argv[argc++] = xxstrdup(arg);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000781 }
Denis Vlasenko6df9e3c2007-11-12 21:21:35 +0000782 /* while (argc <= MAXARGV) */
783 /* sep->se_argv[argc++] = NULL; - done by new_servtab() */
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000784
785 /*
786 * Now that we've processed the entire line, check if the hostname
787 * specifier was a comma separated list of hostnames. If so
788 * we'll make new entries for each address.
789 */
790 while ((hostdelim = strrchr(sep->se_hostaddr, ',')) != NULL) {
791 nsep = dupconfig(sep);
792
793 /*
794 * NULL terminate the hostname field of the existing entry,
795 * and make a dup for the new entry.
796 */
797 *hostdelim++ = '\0';
798 nsep->se_hostaddr = xstrdup(hostdelim);
799
800 nsep->se_next = sep->se_next;
801 sep->se_next = nsep;
802 }
803
804 nsep = sep;
805 while (nsep != NULL) {
806 nsep->se_checked = 1;
807 if (nsep->se_family == AF_INET) {
Denis Vlasenkobf66fbc2006-12-21 13:23:14 +0000808 if (LONE_CHAR(nsep->se_hostaddr, '*'))
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000809 nsep->se_ctrladdr_in.sin_addr.s_addr = INADDR_ANY;
810 else if (!inet_aton(nsep->se_hostaddr, &nsep->se_ctrladdr_in.sin_addr)) {
Denis Vlasenko512a5452007-09-24 10:41:30 +0000811 int i;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000812 struct hostent *hp;
813
814 hp = gethostbyname(nsep->se_hostaddr);
Denis Vlasenko512a5452007-09-24 10:41:30 +0000815 if (hp == NULL) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000816 bb_error_msg("%s: unknown host", nsep->se_hostaddr);
817 nsep->se_checked = 0;
818 goto skip;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000819 }
820 if (hp->h_addrtype != AF_INET) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000821 bb_error_msg("%s: address isn't an Internet "
822 "address", nsep->se_hostaddr);
823 nsep->se_checked = 0;
824 goto skip;
Denis Vlasenko512a5452007-09-24 10:41:30 +0000825 }
826 i = 1;
827 memmove(&nsep->se_ctrladdr_in.sin_addr,
828 hp->h_addr_list[0], sizeof(struct in_addr));
829 while (hp->h_addr_list[i] != NULL) {
830 psep = dupconfig(nsep);
831 psep->se_hostaddr = xxstrdup(nsep->se_hostaddr);
832 psep->se_checked = 1;
833 memmove(&psep->se_ctrladdr_in.sin_addr,
834 hp->h_addr_list[i], sizeof(struct in_addr));
835 psep->se_ctrladdr_size = sizeof(psep->se_ctrladdr_in);
836 i++;
837 /* Prepend to list, don't want to look up */
838 /* its hostname again. */
839 psep->se_next = sep;
840 sep = psep;
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000841 }
842 }
843 }
844/* XXX BUG?: is this skip: label supposed to remain? */
Denis Vlasenkoce074df2007-03-24 12:07:31 +0000845 skip:
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000846 nsep = nsep->se_next;
847 }
848
849 /*
850 * Finally, free any entries which failed the gethostbyname
851 * check.
852 */
853 psep = NULL;
854 nsep = sep;
855 while (nsep != NULL) {
856 servtab_t *tsep;
857
858 if (nsep->se_checked == 0) {
859 tsep = nsep;
860 if (psep == NULL) {
861 sep = nsep->se_next;
862 nsep = sep;
863 } else {
864 nsep = nsep->se_next;
865 psep->se_next = nsep;
866 }
867 freeconfig(tsep);
868 } else {
869 nsep->se_checked = 0;
870 psep = nsep;
871 nsep = nsep->se_next;
872 }
873 }
874
875 return sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000876}
877
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000878#define Block_Using_Signals(m) do { \
879 sigemptyset(&m); \
880 sigaddset(&m, SIGCHLD); \
881 sigaddset(&m, SIGHUP); \
882 sigaddset(&m, SIGALRM); \
883 sigprocmask(SIG_BLOCK, &m, NULL); \
Denis Vlasenkobf0a2012006-12-26 10:42:51 +0000884} while (0)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000885
886static servtab_t *enter(servtab_t *cp)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000887{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000888 servtab_t *sep;
889 sigset_t omask;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000890
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000891 sep = new_servtab();
892 *sep = *cp;
893 sep->se_fd = -1;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000894#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000895 sep->se_rpcprog = -1;
896#endif
897 Block_Using_Signals(omask);
898 sep->se_next = servtab;
899 servtab = sep;
900 sigprocmask(SIG_UNBLOCK, &omask, NULL);
901 return sep;
902}
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000903
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000904static int matchconf(servtab_t *old, servtab_t *new)
905{
906 if (strcmp(old->se_service, new->se_service) != 0)
907 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000908
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000909 if (strcmp(old->se_hostaddr, new->se_hostaddr) != 0)
910 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000911
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000912 if (strcmp(old->se_proto, new->se_proto) != 0)
913 return 0;
914
915 /*
916 * If the new servtab is bound to a specific address, check that the
917 * old servtab is bound to the same entry. If the new service is not
918 * bound to a specific address then the check of se_hostaddr above
919 * is sufficient.
920 */
921
922 if (old->se_family == AF_INET && new->se_family == AF_INET &&
923 memcmp(&old->se_ctrladdr_in.sin_addr,
924 &new->se_ctrladdr_in.sin_addr,
925 sizeof(new->se_ctrladdr_in.sin_addr)) != 0)
926 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000927
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000928#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000929 if (old->se_family == AF_INET6 && new->se_family == AF_INET6 &&
930 memcmp(&old->se_ctrladdr_in6.sin6_addr,
931 &new->se_ctrladdr_in6.sin6_addr,
932 sizeof(new->se_ctrladdr_in6.sin6_addr)) != 0)
933 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000934#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000935 return 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000936}
937
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000938static void config(int sig ATTRIBUTE_UNUSED)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000939{
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000940 servtab_t *sep, *cp, **sepp;
941 sigset_t omask;
942 size_t n;
943 char protoname[10];
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000944
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000945 if (!setconfig()) {
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000946 bb_simple_perror_msg(config_filename);
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000947 return;
948 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000949 for (sep = servtab; sep; sep = sep->se_next)
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000950 sep->se_checked = 0;
951 cp = getconfigent();
952 while (cp != NULL) {
953 for (sep = servtab; sep; sep = sep->se_next)
954 if (matchconf(sep, cp))
955 break;
Bernhard Reutner-Fischerd591a362006-08-20 17:35:13 +0000956
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000957 if (sep != 0) {
958 int i;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000959
Mike Frysinger23fedb32005-10-05 00:50:03 +0000960#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 +0000961
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000962 Block_Using_Signals(omask);
963 /*
964 * sep->se_wait may be holding the pid of a daemon
965 * that we're waiting for. If so, don't overwrite
966 * it unless the config file explicitly says don't
967 * wait.
968 */
969 if (
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000970#ifdef INETD_FEATURE_ENABLED
Denis Vlasenko13858992006-10-08 12:49:22 +0000971 cp->se_bi == 0 &&
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000972#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000973 (sep->se_wait == 1 || cp->se_wait == 0))
974 sep->se_wait = cp->se_wait;
975 SWAP(int, cp->se_max, sep->se_max);
976 SWAP(char *, sep->se_user, cp->se_user);
977 SWAP(char *, sep->se_group, cp->se_group);
978 SWAP(char *, sep->se_server, cp->se_server);
979 for (i = 0; i < MAXARGV; i++)
980 SWAP(char *, sep->se_argv[i], cp->se_argv[i]);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000981#undef SWAP
982
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +0000983#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000984 if (isrpcservice(sep))
985 unregister_rpc(sep);
986 sep->se_rpcversl = cp->se_rpcversl;
987 sep->se_rpcversh = cp->se_rpcversh;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000988#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000989 sigprocmask(SIG_UNBLOCK, &omask, NULL);
990 freeconfig(cp);
991 } else {
992 sep = enter(cp);
993 }
994 sep->se_checked = 1;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +0000995
Denis Vlasenkoec17d432006-09-23 15:18:38 +0000996 switch (sep->se_family) {
997 case AF_UNIX:
998 if (sep->se_fd != -1)
999 break;
1000 (void) unlink(sep->se_service);
1001 n = strlen(sep->se_service);
1002 if (n > sizeof sep->se_ctrladdr_un.sun_path - 1)
1003 n = sizeof sep->se_ctrladdr_un.sun_path - 1;
1004 safe_strncpy(sep->se_ctrladdr_un.sun_path, sep->se_service, n + 1);
1005 sep->se_ctrladdr_un.sun_family = AF_UNIX;
1006 sep->se_ctrladdr_size = n + sizeof sep->se_ctrladdr_un.sun_family;
1007 setup(sep);
1008 break;
1009 case AF_INET:
1010 sep->se_ctrladdr_in.sin_family = AF_INET;
1011 /* se_ctrladdr_in was set in getconfigent */
1012 sep->se_ctrladdr_size = sizeof sep->se_ctrladdr_in;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001013
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001014#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001015 if (isrpcservice(sep)) {
1016 struct rpcent *rp;
Denis Vlasenko13858992006-10-08 12:49:22 +00001017 // FIXME: atoi_or_else(str, 0) would be handy here
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001018 sep->se_rpcprog = atoi(sep->se_service);
1019 if (sep->se_rpcprog == 0) {
1020 rp = getrpcbyname(sep->se_service);
1021 if (rp == 0) {
1022 bb_error_msg("%s: unknown rpc service", sep->se_service);
1023 goto serv_unknown;
1024 }
1025 sep->se_rpcprog = rp->r_number;
1026 }
1027 if (sep->se_fd == -1)
1028 setup(sep);
1029 if (sep->se_fd != -1)
1030 register_rpc(sep);
1031 } else
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001032#endif
Denis Vlasenko13858992006-10-08 12:49:22 +00001033 {
Denis Vlasenko28703012006-12-19 20:32:02 +00001034 uint16_t port = htons(atoi(sep->se_service));
Denis Vlasenko13858992006-10-08 12:49:22 +00001035 // FIXME: atoi_or_else(str, 0) would be handy here
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001036 if (!port) {
1037 /*XXX*/ strncpy(protoname, sep->se_proto, sizeof(protoname));
1038 if (isdigit(protoname[strlen(protoname) - 1]))
1039 protoname[strlen(protoname) - 1] = '\0';
1040 sp = getservbyname(sep->se_service, protoname);
1041 if (sp == 0) {
1042 bb_error_msg("%s/%s: unknown service",
1043 sep->se_service, sep->se_proto);
1044 goto serv_unknown;
1045 }
1046 port = sp->s_port;
1047 }
1048 if (port != sep->se_ctrladdr_in.sin_port) {
1049 sep->se_ctrladdr_in.sin_port = port;
1050 if (sep->se_fd != -1) {
1051 FD_CLR(sep->se_fd, &allsock);
1052 nsock--;
1053 (void) close(sep->se_fd);
1054 }
1055 sep->se_fd = -1;
1056 }
1057 if (sep->se_fd == -1)
1058 setup(sep);
1059 }
1060 break;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001061#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001062 case AF_INET6:
1063 sep->se_ctrladdr_in6.sin6_family = AF_INET6;
1064 /* se_ctrladdr_in was set in getconfigent */
1065 sep->se_ctrladdr_size = sizeof sep->se_ctrladdr_in6;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001066
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001067#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001068 if (isrpcservice(sep)) {
1069 struct rpcent *rp;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001070
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001071 sep->se_rpcprog = atoi(sep->se_service);
1072 if (sep->se_rpcprog == 0) {
1073 rp = getrpcbyname(sep->se_service);
1074 if (rp == 0) {
1075 bb_error_msg("%s: unknown rpc service", sep->se_service);
1076 goto serv_unknown;
1077 }
1078 sep->se_rpcprog = rp->r_number;
1079 }
1080 if (sep->se_fd == -1)
1081 setup(sep);
1082 if (sep->se_fd != -1)
1083 register_rpc(sep);
1084 } else
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001085#endif
Denis Vlasenko28703012006-12-19 20:32:02 +00001086 {
1087 uint16_t port = htons(atoi(sep->se_service));
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001088
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001089 if (!port) {
1090 /*XXX*/ strncpy(protoname, sep->se_proto, sizeof(protoname));
1091 if (isdigit(protoname[strlen(protoname) - 1]))
1092 protoname[strlen(protoname) - 1] = '\0';
1093 sp = getservbyname(sep->se_service, protoname);
1094 if (sp == 0) {
1095 bb_error_msg("%s/%s: unknown service",
1096 sep->se_service, sep->se_proto);
1097 goto serv_unknown;
1098 }
1099 port = sp->s_port;
1100 }
1101 if (port != sep->se_ctrladdr_in6.sin6_port) {
1102 sep->se_ctrladdr_in6.sin6_port = port;
1103 if (sep->se_fd != -1) {
1104 FD_CLR(sep->se_fd, &allsock);
1105 nsock--;
1106 (void) close(sep->se_fd);
1107 }
1108 sep->se_fd = -1;
1109 }
1110 if (sep->se_fd == -1)
1111 setup(sep);
1112 }
1113 break;
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001114#endif /* FEATURE_IPV6 */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001115 }
Denis Vlasenkoce074df2007-03-24 12:07:31 +00001116 serv_unknown:
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001117 if (cp->se_next != NULL) {
1118 servtab_t *tmp = cp;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001119
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001120 cp = cp->se_next;
1121 free(tmp);
1122 } else {
1123 free(cp);
1124 cp = getconfigent();
1125 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001126 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001127 endconfig();
1128 /*
1129 * Purge anything not looked at above.
1130 */
1131 Block_Using_Signals(omask);
1132 sepp = &servtab;
1133 while ((sep = *sepp)) {
1134 if (sep->se_checked) {
1135 sepp = &sep->se_next;
1136 continue;
1137 }
1138 *sepp = sep->se_next;
1139 if (sep->se_fd != -1) {
1140 FD_CLR(sep->se_fd, &allsock);
1141 nsock--;
1142 (void) close(sep->se_fd);
1143 }
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001144#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001145 if (isrpcservice(sep))
1146 unregister_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001147#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001148 if (sep->se_family == AF_UNIX)
1149 (void) unlink(sep->se_service);
1150 freeconfig(sep);
1151 free(sep);
1152 }
1153 sigprocmask(SIG_UNBLOCK, &omask, NULL);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001154}
1155
1156
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001157static void reapchild(int sig ATTRIBUTE_UNUSED)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001158{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001159 pid_t pid;
1160 int save_errno = errno, status;
1161 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001162
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001163 for (;;) {
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001164 pid = wait_any_nohang(&status);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001165 if (pid <= 0)
1166 break;
1167 for (sep = servtab; sep; sep = sep->se_next)
1168 if (sep->se_wait == pid) {
1169 if (WIFEXITED(status) && WEXITSTATUS(status))
1170 bb_error_msg("%s: exit status 0x%x",
1171 sep->se_server, WEXITSTATUS(status));
1172 else if (WIFSIGNALED(status))
1173 bb_error_msg("%s: exit signal 0x%x",
1174 sep->se_server, WTERMSIG(status));
1175 sep->se_wait = 1;
1176 FD_SET(sep->se_fd, &allsock);
1177 nsock++;
1178 }
1179 }
1180 errno = save_errno;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001181}
1182
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001183static void retry(int sig ATTRIBUTE_UNUSED)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001184{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001185 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001186
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001187 timingout = 0;
1188 for (sep = servtab; sep; sep = sep->se_next) {
1189 if (sep->se_fd == -1) {
1190 switch (sep->se_family) {
1191 case AF_UNIX:
1192 case AF_INET:
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001193#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001194 case AF_INET6:
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001195#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001196 setup(sep);
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001197#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001198 if (sep->se_fd != -1 && isrpcservice(sep))
1199 register_rpc(sep);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001200#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001201 break;
1202 }
1203 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001204 }
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001205}
1206
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001207static void goaway(int sig ATTRIBUTE_UNUSED)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001208{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001209 servtab_t *sep;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001210
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001211 /* XXX signal race walking sep list */
1212 for (sep = servtab; sep; sep = sep->se_next) {
1213 if (sep->se_fd == -1)
1214 continue;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001215
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001216 switch (sep->se_family) {
1217 case AF_UNIX:
1218 (void) unlink(sep->se_service);
1219 break;
1220 case AF_INET:
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001221#if ENABLE_FEATURE_IPV6
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001222 case AF_INET6:
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001223#endif
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001224#if ENABLE_FEATURE_INETD_RPC
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001225 if (sep->se_wait == 1 && isrpcservice(sep))
1226 unregister_rpc(sep); /* XXX signal race */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001227#endif
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001228 break;
1229 }
1230 (void) close(sep->se_fd);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001231 }
Denis Vlasenko10457b92007-03-27 22:01:31 +00001232 remove_pidfile(_PATH_INETDPID);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001233 exit(0);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001234}
1235
1236
1237#ifdef INETD_SETPROCTITLE
Glenn L McGrath06e95652003-02-09 06:51:14 +00001238
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001239static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001240inetd_setproctitle(char *a, int s)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001241{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001242 socklen_t size;
1243 char *cp;
1244 struct sockaddr_in prt_sin;
1245 char buf[80];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001246
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001247 cp = Argv[0];
1248 size = sizeof(prt_sin);
1249 (void) snprintf(buf, sizeof buf, "-%s", a);
1250 if (getpeername(s, (struct sockaddr *) &prt_sin, &size) == 0) {
1251 char *sa = inet_ntoa(prt_sin.sin_addr);
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001252
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001253 buf[sizeof(buf) - 1 - strlen(sa) - 3] = '\0';
1254 strcat(buf, " [");
1255 strcat(buf, sa);
1256 strcat(buf, "]");
1257 }
1258 strncpy(cp, buf, LastArg - cp);
1259 cp += strlen(cp);
1260 while (cp < LastArg)
1261 *cp++ = ' ';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001262}
Glenn L McGrath06e95652003-02-09 06:51:14 +00001263#endif
1264
Glenn L McGrath06e95652003-02-09 06:51:14 +00001265
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001266int inetd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +00001267int inetd_main(int argc, char **argv)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001268{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001269 servtab_t *sep;
1270 struct passwd *pwd;
1271 struct group *grp = NULL;
1272 int tmpint;
1273 struct sigaction sa, sapipe;
1274 int opt;
1275 pid_t pid;
1276 char buf[50];
1277 char *stoomany;
1278 sigset_t omask, wait_mask;
Denis Vlasenko512a5452007-09-24 10:41:30 +00001279#ifdef INETD_SETPROCTITLE
1280 char **envp;
1281#endif
1282
1283 INIT_G();
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001284
1285#ifdef INETD_SETPROCTITLE
Denis Vlasenko512a5452007-09-24 10:41:30 +00001286 envp = environ;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001287 Argv = argv;
1288 if (envp == 0 || *envp == 0)
1289 envp = argv;
1290 while (*envp)
1291 envp++;
1292 LastArg = envp[-1] + strlen(envp[-1]);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001293#endif
1294
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001295 uid = getuid();
1296 if (uid != 0)
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001297 config_filename = NULL;
Denis Vlasenko5a142022007-03-26 13:20:54 +00001298
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00001299 opt = getopt32(argv, "R:f", &stoomany);
Denis Vlasenko5a142022007-03-26 13:20:54 +00001300 if (opt & 1)
1301 toomany = xatoi_u(stoomany);
1302 argv += optind;
1303 argc -= optind;
1304 if (argc)
Denis Vlasenko55f30b02007-03-24 22:42:29 +00001305 config_filename = argv[0];
1306 if (config_filename == NULL)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001307 bb_error_msg_and_die("non-root must specify a config file");
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001308
Denis Vlasenko5a142022007-03-26 13:20:54 +00001309 if (!(opt & 2))
1310 bb_daemonize_or_rexec(0, argv - optind);
1311 else
1312 bb_sanitize_stdio();
Denis Vlasenkoffcef2d2007-01-14 02:03:28 +00001313 openlog(applet_name, LOG_PID | LOG_NOWAIT, LOG_DAEMON);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001314 logmode = LOGMODE_SYSLOG;
Eric Andersen35e643b2003-07-28 07:40:39 +00001315
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001316 if (uid == 0) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001317 /* If run by hand, ensure groups vector gets trashed */
Denis Vlasenko7a431b32007-01-14 01:29:06 +00001318 gid_t gid = getgid();
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001319 setgroups(1, &gid);
1320 }
1321
Denis Vlasenko10457b92007-03-27 22:01:31 +00001322 write_pidfile(_PATH_INETDPID);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001323
1324 if (getrlimit(RLIMIT_NOFILE, &rlim_ofile) < 0) {
1325 bb_perror_msg("getrlimit");
1326 } else {
1327 rlim_ofile_cur = rlim_ofile.rlim_cur;
1328 if (rlim_ofile_cur == RLIM_INFINITY) /* ! */
1329 rlim_ofile_cur = OPEN_MAX;
1330 }
1331
1332 memset((char *) &sa, 0, sizeof(sa));
1333 sigemptyset(&sa.sa_mask);
1334 sigaddset(&sa.sa_mask, SIGALRM);
1335 sigaddset(&sa.sa_mask, SIGCHLD);
1336 sigaddset(&sa.sa_mask, SIGHUP);
1337 sa.sa_handler = retry;
1338 sigaction(SIGALRM, &sa, NULL);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001339 config(SIGHUP);
1340 sa.sa_handler = config;
1341 sigaction(SIGHUP, &sa, NULL);
1342 sa.sa_handler = reapchild;
1343 sigaction(SIGCHLD, &sa, NULL);
1344 sa.sa_handler = goaway;
1345 sigaction(SIGTERM, &sa, NULL);
1346 sa.sa_handler = goaway;
1347 sigaction(SIGINT, &sa, NULL);
1348 sa.sa_handler = SIG_IGN;
1349 sigaction(SIGPIPE, &sa, &sapipe);
1350 memset(&wait_mask, 0, sizeof(wait_mask));
1351 {
1352 /* space for daemons to overwrite environment for ps */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001353#define DUMMYSIZE 100
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001354 char dummy[DUMMYSIZE];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001355
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001356 (void) memset(dummy, 'x', DUMMYSIZE - 1);
1357 dummy[DUMMYSIZE - 1] = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001358
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001359 (void) setenv("inetd_dummy", dummy, 1);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001360 }
1361
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001362 for (;;) {
1363 int n, ctrl = -1;
1364 fd_set readable;
1365
1366 if (nsock == 0) {
1367 Block_Using_Signals(omask);
1368 while (nsock == 0)
1369 sigsuspend(&wait_mask);
1370 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1371 }
1372
1373 readable = allsock;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001374 n = select(maxsock + 1, &readable, NULL, NULL, NULL);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001375 if (n <= 0) {
1376 if (n < 0 && errno != EINTR) {
1377 bb_perror_msg("select");
1378 sleep(1);
1379 }
Glenn L McGrath82d42db2004-02-18 13:12:53 +00001380 continue;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001381 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001382
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001383 for (sep = servtab; n && sep; sep = sep->se_next) {
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001384 if (sep->se_fd == -1 || !FD_ISSET(sep->se_fd, &readable))
1385 continue;
1386
1387 n--;
1388 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM) {
1389 ctrl = accept(sep->se_fd, NULL, NULL);
1390 if (ctrl < 0) {
1391 if (errno == EINTR)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001392 continue;
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001393 bb_perror_msg("accept (for %s)", sep->se_service);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001394 continue;
1395 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001396 if (sep->se_family == AF_INET && sep->se_socktype == SOCK_STREAM) {
1397 struct sockaddr_in peer;
1398 socklen_t plen = sizeof(peer);
1399
1400 if (getpeername(ctrl, (struct sockaddr *) &peer, &plen) < 0) {
Denis Vlasenkoea620772006-10-14 02:23:43 +00001401 bb_error_msg("cannot getpeername");
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001402 close(ctrl);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001403 continue;
1404 }
1405 if (ntohs(peer.sin_port) == 20) {
1406 /* XXX ftp bounce */
1407 close(ctrl);
1408 continue;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001409 }
1410 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001411 } else
1412 ctrl = sep->se_fd;
1413
1414 Block_Using_Signals(omask);
1415 pid = 0;
1416#ifdef INETD_FEATURE_ENABLED
1417 if (sep->se_bi == 0 || sep->se_bi->bi_fork)
1418#endif
1419 {
1420 if (sep->se_count++ == 0)
1421 (void) gettimeofday(&sep->se_time, NULL);
1422 else if (toomany > 0 && sep->se_count >= sep->se_max) {
1423 struct timeval now;
1424
1425 (void) gettimeofday(&now, NULL);
1426 if (now.tv_sec - sep->se_time.tv_sec > CNT_INTVL) {
1427 sep->se_time = now;
1428 sep->se_count = 1;
1429 } else {
1430 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM)
1431 close(ctrl);
1432 if (sep->se_family == AF_INET &&
1433 ntohs(sep->se_ctrladdr_in.sin_port) >= IPPORT_RESERVED) {
1434 /*
1435 * Cannot close it -- there are
1436 * thieves on the system.
1437 * Simply ignore the connection.
1438 */
1439 --sep->se_count;
1440 continue;
1441 }
1442 bb_error_msg("%s/%s server failing (looping), service terminated",
1443 sep->se_service, sep->se_proto);
1444 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM)
1445 close(ctrl);
1446 FD_CLR(sep->se_fd, &allsock);
1447 (void) close(sep->se_fd);
1448 sep->se_fd = -1;
1449 sep->se_count = 0;
1450 nsock--;
1451 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1452 if (!timingout) {
1453 timingout = 1;
1454 alarm(RETRYTIME);
1455 }
1456 continue;
1457 }
1458 }
1459 pid = fork();
1460 }
1461 if (pid < 0) {
1462 bb_perror_msg("fork");
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001463 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM)
1464 close(ctrl);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001465 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1466 sleep(1);
1467 continue;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001468 }
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001469 if (pid && sep->se_wait) {
1470 sep->se_wait = pid;
1471 FD_CLR(sep->se_fd, &allsock);
1472 nsock--;
1473 }
1474 sigprocmask(SIG_UNBLOCK, &omask, NULL);
1475 if (pid == 0) {
1476#ifdef INETD_FEATURE_ENABLED
1477 if (sep->se_bi) {
1478 (*sep->se_bi->bi_fn)(ctrl, sep);
1479 } else
1480#endif
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001481 {
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001482 pwd = getpwnam(sep->se_user);
1483 if (pwd == NULL) {
1484 bb_error_msg("getpwnam: %s: no such user", sep->se_user);
1485 goto do_exit1;
1486 }
1487 if (setsid() < 0)
1488 bb_perror_msg("%s: setsid", sep->se_service);
1489 if (sep->se_group && (grp = getgrnam(sep->se_group)) == NULL) {
1490 bb_error_msg("getgrnam: %s: no such group", sep->se_group);
1491 goto do_exit1;
1492 }
1493 if (uid != 0) {
1494 /* a user running private inetd */
1495 if (uid != pwd->pw_uid)
1496 _exit(1);
1497 } else if (pwd->pw_uid) {
1498 if (sep->se_group)
1499 pwd->pw_gid = grp->gr_gid;
1500 xsetgid((gid_t) pwd->pw_gid);
1501 initgroups(pwd->pw_name, pwd->pw_gid);
1502 xsetuid((uid_t) pwd->pw_uid);
1503 } else if (sep->se_group) {
1504 xsetgid(grp->gr_gid);
1505 setgroups(1, &grp->gr_gid);
1506 }
1507 dup2(ctrl, 0);
1508 if (ctrl) close(ctrl);
1509 dup2(0, 1);
1510 dup2(0, 2);
1511 if (rlim_ofile.rlim_cur != rlim_ofile_cur)
1512 if (setrlimit(RLIMIT_NOFILE, &rlim_ofile) < 0)
1513 bb_perror_msg("setrlimit");
1514 closelog();
1515 for (tmpint = rlim_ofile_cur - 1; --tmpint > 2;)
1516 (void) close(tmpint);
1517 sigaction(SIGPIPE, &sapipe, NULL);
1518 execv(sep->se_server, sep->se_argv);
1519 bb_perror_msg("execv %s", sep->se_server);
Denis Vlasenkoce074df2007-03-24 12:07:31 +00001520 do_exit1:
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001521 if (sep->se_socktype != SOCK_STREAM)
1522 recv(0, buf, sizeof(buf), 0);
1523 _exit(1);
1524 }
1525 }
1526 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM)
1527 close(ctrl);
1528 } /* for (sep = servtab...) */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +00001529 } /* for (;;) */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001530}
Glenn L McGrath06e95652003-02-09 06:51:14 +00001531
1532/*
1533 * Internet services provided internally by inetd:
1534 */
1535#define BUFSIZE 4096
1536
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001537#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO || \
1538 ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN || \
1539 ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001540static int dg_badinput(struct sockaddr_in *dg_sin)
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001541{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001542 if (ntohs(dg_sin->sin_port) < IPPORT_RESERVED)
1543 return 1;
1544 if (dg_sin->sin_addr.s_addr == htonl(INADDR_BROADCAST))
1545 return 1;
1546 /* XXX compare against broadcast addresses in SIOCGIFCONF list? */
1547 return 0;
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001548}
1549#endif
1550
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001551#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_ECHO
Glenn L McGrath06e95652003-02-09 06:51:14 +00001552/* Echo service -- echo data back */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001553/* ARGSUSED */
1554static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001555echo_stream(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001556{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001557 char buffer[BUFSIZE];
1558 int i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001559
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001560 inetd_setproctitle(sep->se_service, s);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001561 while (1) {
1562 i = read(s, buffer, sizeof(buffer));
1563 if (i <= 0) break;
1564 /* FIXME: this isnt correct - safe_write()? */
1565 if (write(s, buffer, i) <= 0) break;
1566 }
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001567 exit(0);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001568}
1569
1570/* Echo service -- echo data back */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001571/* ARGSUSED */
1572static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001573echo_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001574{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001575 char buffer[BUFSIZE];
1576 int i;
1577 socklen_t size;
1578 /* struct sockaddr_storage ss; */
1579 struct sockaddr sa;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001580
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001581 size = sizeof(sa);
1582 i = recvfrom(s, buffer, sizeof(buffer), 0, &sa, &size);
1583 if (i < 0)
1584 return;
1585 if (dg_badinput((struct sockaddr_in *) &sa))
1586 return;
1587 (void) sendto(s, buffer, i, 0, &sa, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001588}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001589#endif /* FEATURE_INETD_SUPPORT_BUILTIN_ECHO */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001590
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001591#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD
Glenn L McGrath06e95652003-02-09 06:51:14 +00001592/* Discard service -- ignore data */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001593/* ARGSUSED */
1594static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001595discard_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];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001598
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001599 inetd_setproctitle(sep->se_service, s);
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001600 while (1) {
Denis Vlasenko4f95e5a2007-10-11 10:10:15 +00001601 if (safe_read(s, buffer, sizeof(buffer)) <= 0)
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001602 exit(0);
1603 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001604}
1605
1606/* Discard service -- ignore data */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001607/* ARGSUSED */
1608static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001609discard_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001610{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001611 char buffer[BUFSIZE];
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001612
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001613 (void) read(s, buffer, sizeof(buffer));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001614}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001615#endif /* FEATURE_INETD_SUPPORT_BUILTIN_DISCARD */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001616
1617
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001618#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN
Glenn L McGrath06e95652003-02-09 06:51:14 +00001619#define LINESIZ 72
Glenn L McGrath06e95652003-02-09 06:51:14 +00001620
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001621static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001622initring(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001623{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001624 int i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001625
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001626 endring = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001627 for (i = 0; i <= 128; ++i)
1628 if (isprint(i))
1629 *endring++ = i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001630}
1631
1632/* Character generator */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001633/* ARGSUSED */
1634static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001635chargen_stream(int s, servtab_t *sep)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001636{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001637 char *rs;
1638 int len;
1639 char text[LINESIZ + 2];
Glenn L McGrath06e95652003-02-09 06:51:14 +00001640
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001641 inetd_setproctitle(sep->se_service, s);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001642
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001643 if (!endring) {
1644 initring();
1645 rs = ring;
1646 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001647
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001648 text[LINESIZ] = '\r';
1649 text[LINESIZ + 1] = '\n';
Denis Vlasenkoc1876d72006-09-23 15:58:01 +00001650 rs = ring;
1651 for (;;) {
1652 len = endring - rs;
1653 if (len >= LINESIZ)
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001654 memmove(text, rs, LINESIZ);
1655 else {
1656 memmove(text, rs, len);
1657 memmove(text + len, ring, LINESIZ - len);
1658 }
1659 if (++rs == endring)
1660 rs = ring;
1661 if (write(s, text, sizeof(text)) != sizeof(text))
1662 break;
1663 }
1664 exit(0);
1665}
1666
1667/* Character generator */
1668/* ARGSUSED */
1669static void
1670chargen_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
1671{
1672 /* struct sockaddr_storage ss; */
1673 struct sockaddr sa;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001674 int len;
1675 char text[LINESIZ + 2];
1676 socklen_t size;
1677
Denis Vlasenko512a5452007-09-24 10:41:30 +00001678 if (!endring) {
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001679 initring();
Denis Vlasenko512a5452007-09-24 10:41:30 +00001680 ringpos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001681 }
1682
1683 size = sizeof(sa);
1684 if (recvfrom(s, text, sizeof(text), 0, &sa, &size) < 0)
1685 return;
1686 if (dg_badinput((struct sockaddr_in *) &sa))
1687 return;
1688
Denis Vlasenko512a5452007-09-24 10:41:30 +00001689 len = endring - ringpos;
1690 if (len >= LINESIZ)
1691 memmove(text, ringpos, LINESIZ);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001692 else {
Denis Vlasenko512a5452007-09-24 10:41:30 +00001693 memmove(text, ringpos, len);
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001694 memmove(text + len, ring, LINESIZ - len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001695 }
Denis Vlasenko512a5452007-09-24 10:41:30 +00001696 if (++ringpos == endring)
1697 ringpos = ring;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001698 text[LINESIZ] = '\r';
1699 text[LINESIZ + 1] = '\n';
1700 (void) sendto(s, text, sizeof(text), 0, &sa, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001701}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001702#endif /* FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001703
1704
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001705#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_TIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001706/*
1707 * Return a machine readable date and time, in the form of the
1708 * number of seconds since midnight, Jan 1, 1900. Since gettimeofday
1709 * returns the number of seconds since midnight, Jan 1, 1970,
1710 * we must add 2208988800 seconds to this figure to make up for
1711 * some seventy years Bell Labs was asleep.
1712 */
1713
Denis Vlasenko35d4da02007-01-22 14:04:27 +00001714static unsigned machtime(void)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001715{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001716 struct timeval tv;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001717
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001718 if (gettimeofday(&tv, NULL) < 0) {
1719 fprintf(stderr, "Unable to get time of day\n");
1720 return 0L;
1721 }
Denis Vlasenko35d4da02007-01-22 14:04:27 +00001722 return htonl((unsigned) tv.tv_sec + 2208988800UL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001723}
1724
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001725/* ARGSUSED */
1726static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001727machtime_stream(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001728{
Denis Vlasenko35d4da02007-01-22 14:04:27 +00001729 unsigned result;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001730
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001731 result = machtime();
1732 (void) write(s, (char *) &result, sizeof(result));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001733}
1734
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001735/* ARGSUSED */
1736static void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001737machtime_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001738{
Denis Vlasenko35d4da02007-01-22 14:04:27 +00001739 unsigned result;
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001740 /* struct sockaddr_storage ss; */
1741 struct sockaddr sa;
1742 struct sockaddr_in *dg_sin;
1743 socklen_t size;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001744
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001745 size = sizeof(sa);
1746 if (recvfrom(s, (char *) &result, sizeof(result), 0, &sa, &size) < 0)
1747 return;
1748 /* if (dg_badinput((struct sockaddr *)&ss)) */
1749 dg_sin = (struct sockaddr_in *) &sa;
1750 if (dg_sin->sin_addr.s_addr == htonl(INADDR_BROADCAST) ||
1751 ntohs(dg_sin->sin_port) < IPPORT_RESERVED / 2)
1752 return;
1753 result = machtime();
1754 (void) sendto(s, (char *) &result, sizeof(result), 0, &sa, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001755}
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001756#endif /* FEATURE_INETD_SUPPORT_BUILTIN_TIME */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001757
1758
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001759#if ENABLE_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME
Glenn L McGrath06e95652003-02-09 06:51:14 +00001760/* Return human-readable time of day */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001761/* ARGSUSED */
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001762static void daytime_stream(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001763{
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001764 char buffer[32];
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001765 time_t t;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001766
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001767 t = time(NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001768
Denis Vlasenkod1a6e8d2007-01-14 14:46:18 +00001769// fdprintf instead?
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001770 (void) sprintf(buffer, "%.24s\r\n", ctime(&t));
1771 (void) write(s, buffer, strlen(buffer));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001772}
1773
1774/* Return human-readable time of day */
"Vladimir N. Oleynik"1a2f4d92005-10-03 08:08:58 +00001775/* ARGSUSED */
1776void
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001777daytime_dg(int s, servtab_t *sep ATTRIBUTE_UNUSED)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001778{
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001779 char buffer[256];
1780 time_t t;
1781 /* struct sockaddr_storage ss; */
1782 struct sockaddr sa;
1783 socklen_t size;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001784
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001785 t = time(NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001786
Denis Vlasenkoec17d432006-09-23 15:18:38 +00001787 size = sizeof(sa);
1788 if (recvfrom(s, buffer, sizeof(buffer), 0, &sa, &size) < 0)
1789 return;
1790 if (dg_badinput((struct sockaddr_in *) &sa))
1791 return;
1792 (void) sprintf(buffer, "%.24s\r\n", ctime(&t));
1793 (void) sendto(s, buffer, strlen(buffer), 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_DAYTIME */