1999-07-22 14:11:26 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1983, 1991, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1999-08-28 01:35:59 +00:00
|
|
|
* $FreeBSD$
|
1999-07-22 14:11:26 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/socket.h>
|
2001-06-16 18:54:54 +00:00
|
|
|
#include <sys/un.h>
|
2002-08-07 17:03:14 +00:00
|
|
|
#include <sys/queue.h>
|
1999-07-22 14:11:26 +00:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#define BUFSIZE 8192
|
|
|
|
#define LINESIZ 72
|
|
|
|
|
|
|
|
#define NORM_TYPE 0
|
|
|
|
#define MUX_TYPE 1
|
|
|
|
#define MUXPLUS_TYPE 2
|
2000-01-25 14:52:10 +00:00
|
|
|
#define FAITH_TYPE 4
|
1999-07-22 14:11:26 +00:00
|
|
|
#define ISMUX(sep) (((sep)->se_type == MUX_TYPE) || \
|
|
|
|
((sep)->se_type == MUXPLUS_TYPE))
|
|
|
|
#define ISMUXPLUS(sep) ((sep)->se_type == MUXPLUS_TYPE)
|
|
|
|
|
2002-08-07 17:03:14 +00:00
|
|
|
struct procinfo {
|
|
|
|
LIST_ENTRY(procinfo) pr_link;
|
|
|
|
pid_t pr_pid; /* child pid */
|
|
|
|
struct conninfo *pr_conn;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct conninfo {
|
|
|
|
LIST_ENTRY(conninfo) co_link;
|
|
|
|
struct sockaddr_storage co_addr; /* source address */
|
|
|
|
int co_numchild; /* current number of children */
|
|
|
|
struct procinfo **co_proc; /* array of child proc entry */
|
|
|
|
};
|
|
|
|
|
|
|
|
#define PERIPSIZE 256
|
|
|
|
|
1999-07-22 14:11:26 +00:00
|
|
|
struct servtab {
|
|
|
|
char *se_service; /* name of service */
|
|
|
|
int se_socktype; /* type of socket to use */
|
2000-01-25 14:52:10 +00:00
|
|
|
int se_family; /* address family */
|
1999-07-22 14:11:26 +00:00
|
|
|
char *se_proto; /* protocol used */
|
|
|
|
int se_maxchild; /* max number of children */
|
|
|
|
int se_maxcpm; /* max connects per IP per minute */
|
|
|
|
int se_numchild; /* current number of children */
|
|
|
|
pid_t *se_pids; /* array of child pids */
|
|
|
|
char *se_user; /* user name to run as */
|
|
|
|
char *se_group; /* group name to run as */
|
|
|
|
#ifdef LOGIN_CAP
|
|
|
|
char *se_class; /* login class name to run with */
|
|
|
|
#endif
|
|
|
|
struct biltin *se_bi; /* if built-in, description */
|
|
|
|
char *se_server; /* server program */
|
|
|
|
char *se_server_name; /* server program without path */
|
|
|
|
#define MAXARGV 20
|
|
|
|
char *se_argv[MAXARGV+1]; /* program arguments */
|
2000-01-25 14:52:10 +00:00
|
|
|
#ifdef IPSEC
|
2000-10-24 18:47:57 +00:00
|
|
|
char *se_policy; /* IPsec policy string */
|
2000-01-25 14:52:10 +00:00
|
|
|
#endif
|
1999-07-22 14:11:26 +00:00
|
|
|
int se_fd; /* open descriptor */
|
2000-01-25 14:52:10 +00:00
|
|
|
union { /* bound address */
|
|
|
|
struct sockaddr se_un_ctrladdr;
|
|
|
|
struct sockaddr_in se_un_ctrladdr4;
|
|
|
|
struct sockaddr_in6 se_un_ctrladdr6;
|
2001-06-16 18:54:54 +00:00
|
|
|
struct sockaddr_un se_un_ctrladdr_un;
|
2000-01-25 14:52:10 +00:00
|
|
|
} se_un;
|
|
|
|
#define se_ctrladdr se_un.se_un_ctrladdr
|
|
|
|
#define se_ctrladdr4 se_un.se_un_ctrladdr4
|
|
|
|
#define se_ctrladdr6 se_un.se_un_ctrladdr6
|
2001-06-16 18:54:54 +00:00
|
|
|
#define se_ctrladdr_un se_un.se_un_ctrladdr_un
|
2001-01-22 23:19:30 +00:00
|
|
|
socklen_t se_ctrladdr_size;
|
2001-06-16 18:54:54 +00:00
|
|
|
uid_t se_sockuid; /* Owner for unix domain socket */
|
|
|
|
gid_t se_sockgid; /* Group for unix domain socket */
|
|
|
|
mode_t se_sockmode; /* Mode for unix domain socket */
|
1999-07-22 14:11:26 +00:00
|
|
|
u_char se_type; /* type: normal, mux, or mux+ */
|
|
|
|
u_char se_checked; /* looked at during merge */
|
|
|
|
u_char se_accept; /* i.e., wait/nowait mode */
|
|
|
|
u_char se_rpc; /* ==1 if RPC service */
|
|
|
|
int se_rpc_prog; /* RPC program number */
|
|
|
|
u_int se_rpc_lowvers; /* RPC low version */
|
|
|
|
u_int se_rpc_highvers; /* RPC high version */
|
|
|
|
int se_count; /* number started since se_time */
|
2012-06-04 18:02:09 +00:00
|
|
|
struct timespec se_time; /* start of se_count */
|
1999-07-22 14:11:26 +00:00
|
|
|
struct servtab *se_next;
|
2000-01-25 14:52:10 +00:00
|
|
|
struct se_flags {
|
|
|
|
u_int se_nomapped : 1;
|
|
|
|
u_int se_reset : 1;
|
|
|
|
} se_flags;
|
2002-08-07 17:03:14 +00:00
|
|
|
int se_maxperip; /* max number of children per src */
|
|
|
|
LIST_HEAD(, conninfo) se_conn[PERIPSIZE];
|
1999-07-22 14:11:26 +00:00
|
|
|
};
|
|
|
|
|
2000-01-25 14:52:10 +00:00
|
|
|
#define se_nomapped se_flags.se_nomapped
|
|
|
|
#define se_reset se_flags.se_reset
|
|
|
|
|
2002-06-21 11:42:37 +00:00
|
|
|
int check_loop(const struct sockaddr *, const struct servtab *sep);
|
|
|
|
int getvalue(const char *, int *, const char *);
|
|
|
|
char *newstr(const char *);
|
|
|
|
void inetd_setproctitle(const char *, int);
|
|
|
|
void print_service(const char *, const struct servtab *);
|
|
|
|
char *sskip(char **);
|
|
|
|
char *skip(char **);
|
|
|
|
struct servtab *tcpmux(int);
|
1999-07-22 14:11:26 +00:00
|
|
|
|
2001-06-24 09:20:07 +00:00
|
|
|
extern int debug;
|
|
|
|
extern struct servtab *servtab;
|
|
|
|
|
2002-06-21 11:42:37 +00:00
|
|
|
typedef void (bi_fn_t)(int, struct servtab *);
|
1999-07-22 14:11:26 +00:00
|
|
|
|
|
|
|
struct biltin {
|
2001-06-24 09:20:07 +00:00
|
|
|
const char *bi_service; /* internally provided service name */
|
1999-07-22 14:11:26 +00:00
|
|
|
int bi_socktype; /* type of socket supported */
|
|
|
|
short bi_fork; /* 1 if should fork before call */
|
|
|
|
int bi_maxchild; /* max number of children, -1=default */
|
2001-06-24 09:20:07 +00:00
|
|
|
bi_fn_t *bi_fn; /* function which performs it */
|
1999-07-22 14:11:26 +00:00
|
|
|
};
|