expand bitmaps to 256 bits
[unix-history] / usr / src / usr.sbin / inetd / inetd.c
CommitLineData
528b0614 1/*
181cd3a3 2 * Copyright (c) 1983, 1991, 1993, 1994
f4b24d5f 3 * The Regents of the University of California. All rights reserved.
9166e6a5 4 *
32ce521f 5 * %sccs.include.redist.c%
528b0614
DF
6 */
7
8#ifndef lint
f4b24d5f 9static char copyright[] =
181cd3a3 10"@(#) Copyright (c) 1983, 1991, 1993, 1994\n\
f4b24d5f 11 The Regents of the University of California. All rights reserved.\n";
9166e6a5 12#endif /* not lint */
528b0614 13
21ed1185 14#ifndef lint
12360e56 15static char sccsid[] = "@(#)inetd.c 8.4 (Berkeley) %G%";
9166e6a5 16#endif /* not lint */
21ed1185
MK
17
18/*
19 * Inetd - Internet super-server
20 *
6e9dfe5b
AC
21 * This program invokes all internet services as needed. Connection-oriented
22 * services are invoked each time a connection is made, by creating a process.
23 * This process is passed the connection as file descriptor 0 and is expected
24 * to do a getpeername to find out the source host and port.
21ed1185
MK
25 *
26 * Datagram oriented services are invoked when a datagram
27 * arrives; a process is created and passed a pending message
28 * on file descriptor 0. Datagram servers may either connect
29 * to their peer, freeing up the original socket for inetd
30 * to receive further messages on, or ``take over the socket'',
31 * processing all arriving datagrams and, eventually, timing
32 * out. The first type of server is said to be ``multi-threaded'';
33 * the second type of server ``single-threaded''.
34 *
35 * Inetd uses a configuration file which is read at startup
36 * and, possibly, at some later time in response to a hangup signal.
37 * The configuration file is ``free format'' with fields given in the
38 * order shown below. Continuation lines for an entry must being with
39 * a space or tab. All fields must be present in each entry.
40 *
6e9dfe5b
AC
41 * service name must be in /etc/services or must
42 * name a tcpmux service
21ed1185
MK
43 * socket type stream/dgram/raw/rdm/seqpacket
44 * protocol must be in /etc/protocols
45 * wait/nowait single-threaded/multi-threaded
7d5eb6c4 46 * user user to run daemon as
21ed1185 47 * server program full path name
cc4df4a4 48 * server program arguments maximum of MAXARGS (20)
21ed1185 49 *
6e9dfe5b
AC
50 * TCP services without official port numbers are handled with the
51 * RFC1078-based tcpmux internal service. Tcpmux listens on port 1 for
52 * requests. When a connection is made from a foreign host, the service
53 * requested is passed to tcpmux, which looks it up in the servtab list
54 * and returns the proper entry for the service. Tcpmux returns a
55 * negative reply if the service doesn't exist, otherwise the invoked
56 * server is expected to return the positive reply if the service type in
57 * inetd.conf file has the prefix "tcpmux/". If the service type has the
58 * prefix "tcpmux/+", tcpmux will return the positive reply for the
59 * process; this is for compatibility with older server code, and also
60 * allows you to invoke programs that use stdin/stdout without putting any
61 * special server code in them. Services that use tcpmux are "nowait"
62 * because they do not have a well-known port and hence cannot listen
63 * for new requests.
64 *
21ed1185
MK
65 * Comment lines are indicated by a `#' in column 1.
66 */
67#include <sys/param.h>
68#include <sys/stat.h>
69#include <sys/ioctl.h>
70#include <sys/socket.h>
21ed1185 71#include <sys/wait.h>
2a6b82aa
JL
72#include <sys/time.h>
73#include <sys/resource.h>
21ed1185
MK
74
75#include <netinet/in.h>
76#include <arpa/inet.h>
77
78#include <errno.h>
6e9dfe5b 79#include <fcntl.h>
21ed1185 80#include <netdb.h>
7d5eb6c4 81#include <pwd.h>
6e9dfe5b 82#include <signal.h>
567752b5 83#include <stdio.h>
6e9dfe5b 84#include <stdlib.h>
38dde0cd 85#include <string.h>
6e9dfe5b
AC
86#include <syslog.h>
87#include <unistd.h>
88
bd070810 89#include "pathnames.h"
21ed1185 90
fc99bd8d
MK
91#define TOOMANY 40 /* don't start more than TOOMANY */
92#define CNT_INTVL 60 /* servers in CNT_INTVL sec. */
93#define RETRYTIME (60*10) /* retry after bind or server fail */
94
95#define SIGBLOCK (sigmask(SIGCHLD)|sigmask(SIGHUP)|sigmask(SIGALRM))
96
21ed1185 97
21ed1185 98int debug = 0;
5859fc43
MK
99int nsock, maxsock;
100fd_set allsock;
21ed1185 101int options;
fc99bd8d 102int timingout;
6e9dfe5b 103int toomany = TOOMANY;
21ed1185
MK
104struct servent *sp;
105
106struct servtab {
107 char *se_service; /* name of service */
108 int se_socktype; /* type of socket to use */
109 char *se_proto; /* protocol used */
110 short se_wait; /* single threaded server */
111 short se_checked; /* looked at during merge */
7d5eb6c4 112 char *se_user; /* user name to run as */
b1b30605 113 struct biltin *se_bi; /* if built-in, description */
21ed1185 114 char *se_server; /* server program */
cc4df4a4 115#define MAXARGV 20
21ed1185
MK
116 char *se_argv[MAXARGV+1]; /* program arguments */
117 int se_fd; /* open descriptor */
6e9dfe5b 118 int se_type; /* type */
21ed1185 119 struct sockaddr_in se_ctrladdr;/* bound address */
fc99bd8d
MK
120 int se_count; /* number started since se_time */
121 struct timeval se_time; /* start of se_count */
21ed1185
MK
122 struct servtab *se_next;
123} *servtab;
124
6e9dfe5b
AC
125#define NORM_TYPE 0
126#define MUX_TYPE 1
127#define MUXPLUS_TYPE 2
128#define ISMUX(sep) (((sep)->se_type == MUX_TYPE) || \
129 ((sep)->se_type == MUXPLUS_TYPE))
130#define ISMUXPLUS(sep) ((sep)->se_type == MUXPLUS_TYPE)
131
4a00dfd8
JSP
132
133void chargen_dg __P((int, struct servtab *));
134void chargen_stream __P((int, struct servtab *));
135void close_sep __P((struct servtab *));
136void config __P((int));
137void daytime_dg __P((int, struct servtab *));
138void daytime_stream __P((int, struct servtab *));
139void discard_dg __P((int, struct servtab *));
140void discard_stream __P((int, struct servtab *));
141void echo_dg __P((int, struct servtab *));
142void echo_stream __P((int, struct servtab *));
143void endconfig __P((void));
144struct servtab *enter __P((struct servtab *));
145void freeconfig __P((struct servtab *));
146struct servtab *getconfigent __P((void));
147void machtime_dg __P((int, struct servtab *));
148void machtime_stream __P((int, struct servtab *));
149char *newstr __P((char *));
150char *nextline __P((FILE *));
151void print_service __P((char *, struct servtab *));
152void reapchild __P((int));
153void retry __P((int));
154int setconfig __P((void));
155void setup __P((struct servtab *));
156char *sskip __P((char **));
157char *skip __P((char **));
158struct servtab *tcpmux __P((int));
b1b30605
MK
159
160struct biltin {
161 char *bi_service; /* internally provided service name */
162 int bi_socktype; /* type of socket supported */
163 short bi_fork; /* 1 if should fork before call */
164 short bi_wait; /* 1 if should wait for child */
4a00dfd8 165 void (*bi_fn)(); /* function which performs it */
b1b30605
MK
166} biltins[] = {
167 /* Echo received data */
4a00dfd8
JSP
168 { "echo", SOCK_STREAM, 1, 0, echo_stream },
169 { "echo", SOCK_DGRAM, 0, 0, echo_dg },
b1b30605
MK
170
171 /* Internet /dev/null */
4a00dfd8
JSP
172 { "discard", SOCK_STREAM, 1, 0, discard_stream },
173 { "discard", SOCK_DGRAM, 0, 0, discard_dg },
b1b30605
MK
174
175 /* Return 32 bit time since 1970 */
4a00dfd8
JSP
176 { "time", SOCK_STREAM, 0, 0, machtime_stream },
177 { "time", SOCK_DGRAM, 0, 0, machtime_dg },
b1b30605
MK
178
179 /* Return human-readable time */
4a00dfd8
JSP
180 { "daytime", SOCK_STREAM, 0, 0, daytime_stream },
181 { "daytime", SOCK_DGRAM, 0, 0, daytime_dg },
b1b30605
MK
182
183 /* Familiar character generator */
4a00dfd8
JSP
184 { "chargen", SOCK_STREAM, 1, 0, chargen_stream },
185 { "chargen", SOCK_DGRAM, 0, 0, chargen_dg },
6e9dfe5b 186
4a00dfd8 187 { "tcpmux", SOCK_STREAM, 1, 0, (void (*)())tcpmux },
6e9dfe5b 188
4a00dfd8 189 { NULL }
b1b30605
MK
190};
191
192#define NUMINT (sizeof(intab) / sizeof(struct inent))
bd070810 193char *CONFIG = _PATH_INETDCONF;
b1b30605
MK
194char **Argv;
195char *LastArg;
21ed1185 196
4a00dfd8 197int
b1b30605 198main(argc, argv, envp)
21ed1185 199 int argc;
b1b30605 200 char *argv[], *envp[];
21ed1185 201{
4a00dfd8
JSP
202 struct servtab *sep;
203 struct passwd *pwd;
fc99bd8d 204 struct sigvec sv;
4a00dfd8
JSP
205 int tmpint, ch, dofork;
206 pid_t pid;
567752b5 207 char buf[50];
21ed1185 208
b1b30605
MK
209 Argv = argv;
210 if (envp == 0 || *envp == 0)
211 envp = argv;
212 while (*envp)
213 envp++;
214 LastArg = envp[-1] + strlen(envp[-1]);
21ed1185 215
6e9dfe5b
AC
216 openlog("inetd", LOG_PID | LOG_NOWAIT, LOG_DAEMON);
217
218 while ((ch = getopt(argc, argv, "dR:")) != EOF)
567752b5 219 switch(ch) {
21ed1185
MK
220 case 'd':
221 debug = 1;
222 options |= SO_DEBUG;
223 break;
6e9dfe5b
AC
224 case 'R': { /* invocation rate */
225 char *p;
226
227 tmpint = strtol(optarg, &p, 0);
228 if (tmpint < 1 || *p)
229 syslog(LOG_ERR,
230 "-R %s: bad value for service invocation rate",
231 optarg);
232 else
233 toomany = tmpint;
234 break;
235 }
567752b5 236 case '?':
21ed1185 237 default:
6e9dfe5b
AC
238 syslog(LOG_ERR,
239 "usage: inetd [-d] [-R rate] [conf-file]");
567752b5 240 exit(1);
21ed1185 241 }
567752b5
KB
242 argc -= optind;
243 argv += optind;
244
21ed1185
MK
245 if (argc > 0)
246 CONFIG = argv[0];
6e9dfe5b 247 if (debug == 0) {
995785db 248 daemon(0, 0);
6e9dfe5b 249 }
4a00dfd8 250 memset(&sv, 0, sizeof(sv));
fc99bd8d
MK
251 sv.sv_mask = SIGBLOCK;
252 sv.sv_handler = retry;
253 sigvec(SIGALRM, &sv, (struct sigvec *)0);
4a00dfd8 254 config(SIGHUP);
fc99bd8d
MK
255 sv.sv_handler = config;
256 sigvec(SIGHUP, &sv, (struct sigvec *)0);
257 sv.sv_handler = reapchild;
258 sigvec(SIGCHLD, &sv, (struct sigvec *)0);
259
567752b5
KB
260 {
261 /* space for daemons to overwrite environment for ps */
262#define DUMMYSIZE 100
263 char dummy[DUMMYSIZE];
264
265 (void)memset(dummy, 'x', sizeof(DUMMYSIZE) - 1);
266 dummy[DUMMYSIZE - 1] = '\0';
267 (void)setenv("inetd_dummy", dummy, 1);
268 }
269
21ed1185 270 for (;;) {
567752b5 271 int n, ctrl;
fc99bd8d
MK
272 fd_set readable;
273
0ee95e67
MK
274 if (nsock == 0) {
275 (void) sigblock(SIGBLOCK);
276 while (nsock == 0)
92732149
KB
277 sigpause(0L);
278 (void) sigsetmask(0L);
0ee95e67 279 }
fc99bd8d
MK
280 readable = allsock;
281 if ((n = select(maxsock + 1, &readable, (fd_set *)0,
282 (fd_set *)0, (struct timeval *)0)) <= 0) {
283 if (n < 0 && errno != EINTR)
6e9dfe5b 284 syslog(LOG_WARNING, "select: %m");
fc99bd8d
MK
285 sleep(1);
286 continue;
287 }
288 for (sep = servtab; n && sep; sep = sep->se_next)
093d40e3
MK
289 if (sep->se_fd != -1 && FD_ISSET(sep->se_fd, &readable)) {
290 n--;
291 if (debug)
292 fprintf(stderr, "someone wants %s\n",
293 sep->se_service);
12360e56 294 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM) {
093d40e3
MK
295 ctrl = accept(sep->se_fd, (struct sockaddr *)0,
296 (int *)0);
297 if (debug)
298 fprintf(stderr, "accept, ctrl %d\n", ctrl);
299 if (ctrl < 0) {
6e9dfe5b
AC
300 if (errno != EINTR)
301 syslog(LOG_WARNING,
302 "accept (for %s): %m",
303 sep->se_service);
093d40e3
MK
304 continue;
305 }
6e9dfe5b
AC
306 /*
307 * Call tcpmux to find the real service to exec.
308 */
309 if (sep->se_bi &&
4a00dfd8 310 sep->se_bi->bi_fn == (void (*)()) tcpmux) {
6e9dfe5b
AC
311 sep = tcpmux(ctrl);
312 if (sep == NULL) {
313 close(ctrl);
314 continue;
315 }
316 }
093d40e3
MK
317 } else
318 ctrl = sep->se_fd;
319 (void) sigblock(SIGBLOCK);
320 pid = 0;
321 dofork = (sep->se_bi == 0 || sep->se_bi->bi_fork);
322 if (dofork) {
323 if (sep->se_count++ == 0)
324 (void)gettimeofday(&sep->se_time,
325 (struct timezone *)0);
6e9dfe5b 326 else if (sep->se_count >= toomany) {
fc99bd8d
MK
327 struct timeval now;
328
329 (void)gettimeofday(&now, (struct timezone *)0);
330 if (now.tv_sec - sep->se_time.tv_sec >
331 CNT_INTVL) {
332 sep->se_time = now;
333 sep->se_count = 1;
334 } else {
335 syslog(LOG_ERR,
6e9dfe5b 336 "%s/%s server failing (looping), service terminated",
fc99bd8d 337 sep->se_service, sep->se_proto);
6e9dfe5b
AC
338 close_sep(sep);
339 sigsetmask(0L);
fc99bd8d
MK
340 if (!timingout) {
341 timingout = 1;
342 alarm(RETRYTIME);
343 }
6e9dfe5b 344 continue;
fc99bd8d 345 }
093d40e3
MK
346 }
347 pid = fork();
348 }
349 if (pid < 0) {
350 syslog(LOG_ERR, "fork: %m");
12360e56
MK
351 if (!sep->se_wait &&
352 sep->se_socktype == SOCK_STREAM)
093d40e3
MK
353 close(ctrl);
354 sigsetmask(0L);
355 sleep(1);
356 continue;
357 }
358 if (pid && sep->se_wait) {
359 sep->se_wait = pid;
514e253c
KB
360 if (sep->se_fd >= 0) {
361 FD_CLR(sep->se_fd, &allsock);
362 nsock--;
363 }
093d40e3
MK
364 }
365 sigsetmask(0L);
366 if (pid == 0) {
367 if (debug && dofork)
995785db 368 setsid();
6e9dfe5b
AC
369 if (dofork) {
370 if (debug)
371 fprintf(stderr, "+ Closing from %d\n",
372 maxsock);
373 for (tmpint = maxsock; tmpint > 2; tmpint--)
567752b5
KB
374 if (tmpint != ctrl)
375 close(tmpint);
6e9dfe5b 376 }
093d40e3 377 if (sep->se_bi)
b1b30605 378 (*sep->se_bi->bi_fn)(ctrl, sep);
093d40e3
MK
379 else {
380 if (debug)
381 fprintf(stderr, "%d execl %s\n",
382 getpid(), sep->se_server);
b1b30605
MK
383 dup2(ctrl, 0);
384 close(ctrl);
385 dup2(0, 1);
386 dup2(0, 2);
387 if ((pwd = getpwnam(sep->se_user)) == NULL) {
388 syslog(LOG_ERR,
6e9dfe5b
AC
389 "%s/%s: %s: No such user",
390 sep->se_service, sep->se_proto,
391 sep->se_user);
fc99bd8d
MK
392 if (sep->se_socktype != SOCK_STREAM)
393 recv(0, buf, sizeof (buf), 0);
b1b30605
MK
394 _exit(1);
395 }
396 if (pwd->pw_uid) {
6e9dfe5b
AC
397 if (setgid(pwd->pw_gid) < 0) {
398 syslog(LOG_ERR,
399 "%s: can't set gid %d: %m",
400 sep->se_service, pwd->pw_gid);
401 _exit(1);
402 }
403 (void) initgroups(pwd->pw_name,
404 pwd->pw_gid);
405 if (setuid(pwd->pw_uid) < 0) {
406 syslog(LOG_ERR,
407 "%s: can't set uid %d: %m",
408 sep->se_service, pwd->pw_uid);
409 _exit(1);
410 }
b1b30605 411 }
b1b30605
MK
412 execv(sep->se_server, sep->se_argv);
413 if (sep->se_socktype != SOCK_STREAM)
414 recv(0, buf, sizeof (buf), 0);
6e9dfe5b
AC
415 syslog(LOG_ERR,
416 "cannot execute %s: %m", sep->se_server);
b1b30605 417 _exit(1);
093d40e3
MK
418 }
419 }
12360e56 420 if (!sep->se_wait && sep->se_socktype == SOCK_STREAM)
093d40e3 421 close(ctrl);
21ed1185 422 }
21ed1185
MK
423 }
424}
425
664e9651 426void
4a00dfd8
JSP
427reapchild(signo)
428 int signo;
21ed1185 429{
093d40e3 430 int status;
4a00dfd8
JSP
431 pid_t pid;
432 struct servtab *sep;
21ed1185
MK
433
434 for (;;) {
093d40e3 435 pid = wait3(&status, WNOHANG, (struct rusage *)0);
21ed1185
MK
436 if (pid <= 0)
437 break;
438 if (debug)
6e9dfe5b
AC
439 fprintf(stderr, "%d reaped, status %#x\n",
440 pid, status);
21ed1185
MK
441 for (sep = servtab; sep; sep = sep->se_next)
442 if (sep->se_wait == pid) {
093d40e3 443 if (status)
6a3125d9
RC
444 syslog(LOG_WARNING,
445 "%s: exit status 0x%x",
21ed1185
MK
446 sep->se_server, status);
447 if (debug)
448 fprintf(stderr, "restored %s, fd %d\n",
449 sep->se_service, sep->se_fd);
5859fc43
MK
450 FD_SET(sep->se_fd, &allsock);
451 nsock++;
21ed1185
MK
452 sep->se_wait = 1;
453 }
454 }
455}
456
664e9651 457void
4a00dfd8
JSP
458config(signo)
459 int signo;
21ed1185 460{
4a00dfd8 461 struct servtab *sep, *cp, **sepp;
6e9dfe5b 462 struct passwd *pwd;
92732149 463 long omask;
21ed1185
MK
464
465 if (!setconfig()) {
6a3125d9 466 syslog(LOG_ERR, "%s: %m", CONFIG);
21ed1185
MK
467 return;
468 }
469 for (sep = servtab; sep; sep = sep->se_next)
470 sep->se_checked = 0;
471 while (cp = getconfigent()) {
6e9dfe5b
AC
472 if ((pwd = getpwnam(cp->se_user)) == NULL) {
473 syslog(LOG_ERR,
474 "%s/%s: No such user '%s', service ignored",
475 cp->se_service, cp->se_proto, cp->se_user);
476 continue;
477 }
21ed1185
MK
478 for (sep = servtab; sep; sep = sep->se_next)
479 if (strcmp(sep->se_service, cp->se_service) == 0 &&
480 strcmp(sep->se_proto, cp->se_proto) == 0)
481 break;
482 if (sep != 0) {
483 int i;
484
fc99bd8d 485 omask = sigblock(SIGBLOCK);
90aae428
KB
486 /*
487 * sep->se_wait may be holding the pid of a daemon
488 * that we're waiting for. If so, don't overwrite
489 * it unless the config file explicitly says don't
490 * wait.
491 */
492 if (cp->se_bi == 0 &&
493 (sep->se_wait == 1 || cp->se_wait == 0))
fc99bd8d 494 sep->se_wait = cp->se_wait;
21ed1185 495#define SWAP(a, b) { char *c = a; a = b; b = c; }
2a6b82aa
JL
496 if (cp->se_user)
497 SWAP(sep->se_user, cp->se_user);
21ed1185
MK
498 if (cp->se_server)
499 SWAP(sep->se_server, cp->se_server);
500 for (i = 0; i < MAXARGV; i++)
501 SWAP(sep->se_argv[i], cp->se_argv[i]);
502 sigsetmask(omask);
503 freeconfig(cp);
9a0fbd5b
MK
504 if (debug)
505 print_service("REDO", sep);
506 } else {
21ed1185 507 sep = enter(cp);
9a0fbd5b
MK
508 if (debug)
509 print_service("ADD ", sep);
510 }
21ed1185 511 sep->se_checked = 1;
6e9dfe5b
AC
512 if (ISMUX(sep)) {
513 sep->se_fd = -1;
514 continue;
515 }
21ed1185
MK
516 sp = getservbyname(sep->se_service, sep->se_proto);
517 if (sp == 0) {
6a3125d9 518 syslog(LOG_ERR, "%s/%s: unknown service",
21ed1185 519 sep->se_service, sep->se_proto);
6e9dfe5b 520 sep->se_checked = 0;
21ed1185
MK
521 continue;
522 }
fc99bd8d 523 if (sp->s_port != sep->se_ctrladdr.sin_port) {
5003ab23 524 sep->se_ctrladdr.sin_family = AF_INET;
fc99bd8d 525 sep->se_ctrladdr.sin_port = sp->s_port;
6e9dfe5b
AC
526 if (sep->se_fd >= 0)
527 close_sep(sep);
21ed1185 528 }
fc99bd8d
MK
529 if (sep->se_fd == -1)
530 setup(sep);
21ed1185
MK
531 }
532 endconfig();
533 /*
534 * Purge anything not looked at above.
535 */
fc99bd8d 536 omask = sigblock(SIGBLOCK);
21ed1185
MK
537 sepp = &servtab;
538 while (sep = *sepp) {
539 if (sep->se_checked) {
540 sepp = &sep->se_next;
541 continue;
542 }
543 *sepp = sep->se_next;
6e9dfe5b
AC
544 if (sep->se_fd >= 0)
545 close_sep(sep);
9a0fbd5b
MK
546 if (debug)
547 print_service("FREE", sep);
21ed1185
MK
548 freeconfig(sep);
549 free((char *)sep);
550 }
551 (void) sigsetmask(omask);
552}
553
664e9651 554void
4a00dfd8
JSP
555retry(signo)
556 int signo;
fc99bd8d 557{
4a00dfd8 558 struct servtab *sep;
fc99bd8d
MK
559
560 timingout = 0;
561 for (sep = servtab; sep; sep = sep->se_next)
562 if (sep->se_fd == -1)
563 setup(sep);
564}
565
4a00dfd8 566void
fc99bd8d 567setup(sep)
4a00dfd8 568 struct servtab *sep;
fc99bd8d
MK
569{
570 int on = 1;
571
572 if ((sep->se_fd = socket(AF_INET, sep->se_socktype, 0)) < 0) {
6e9dfe5b
AC
573 if (debug)
574 fprintf(stderr, "socket failed on %s/%s: %s\n",
575 sep->se_service, sep->se_proto,
576 strerror(errno));
fc99bd8d
MK
577 syslog(LOG_ERR, "%s/%s: socket: %m",
578 sep->se_service, sep->se_proto);
579 return;
580 }
581#define turnon(fd, opt) \
582setsockopt(fd, SOL_SOCKET, opt, (char *)&on, sizeof (on))
583 if (strcmp(sep->se_proto, "tcp") == 0 && (options & SO_DEBUG) &&
584 turnon(sep->se_fd, SO_DEBUG) < 0)
585 syslog(LOG_ERR, "setsockopt (SO_DEBUG): %m");
586 if (turnon(sep->se_fd, SO_REUSEADDR) < 0)
587 syslog(LOG_ERR, "setsockopt (SO_REUSEADDR): %m");
588#undef turnon
95236f21 589 if (bind(sep->se_fd, (struct sockaddr *)&sep->se_ctrladdr,
fc99bd8d 590 sizeof (sep->se_ctrladdr)) < 0) {
6e9dfe5b
AC
591 if (debug)
592 fprintf(stderr, "bind failed on %s/%s: %s\n",
593 sep->se_service, sep->se_proto,
594 strerror(errno));
fc99bd8d
MK
595 syslog(LOG_ERR, "%s/%s: bind: %m",
596 sep->se_service, sep->se_proto);
597 (void) close(sep->se_fd);
598 sep->se_fd = -1;
599 if (!timingout) {
600 timingout = 1;
601 alarm(RETRYTIME);
602 }
603 return;
604 }
605 if (sep->se_socktype == SOCK_STREAM)
606 listen(sep->se_fd, 10);
607 FD_SET(sep->se_fd, &allsock);
608 nsock++;
609 if (sep->se_fd > maxsock)
610 maxsock = sep->se_fd;
6e9dfe5b
AC
611 if (debug) {
612 fprintf(stderr, "registered %s on %d\n",
613 sep->se_server, sep->se_fd);
614 }
615}
616
617/*
618 * Finish with a service and its socket.
619 */
4a00dfd8 620void
6e9dfe5b 621close_sep(sep)
4a00dfd8 622 struct servtab *sep;
6e9dfe5b
AC
623{
624 if (sep->se_fd >= 0) {
625 nsock--;
626 FD_CLR(sep->se_fd, &allsock);
627 (void) close(sep->se_fd);
628 sep->se_fd = -1;
629 }
630 sep->se_count = 0;
631 /*
632 * Don't keep the pid of this running deamon: when reapchild()
633 * reaps this pid, it would erroneously increment nsock.
634 */
635 if (sep->se_wait > 1)
636 sep->se_wait = 1;
fc99bd8d
MK
637}
638
21ed1185
MK
639struct servtab *
640enter(cp)
641 struct servtab *cp;
642{
4a00dfd8 643 struct servtab *sep;
92732149 644 long omask;
21ed1185
MK
645
646 sep = (struct servtab *)malloc(sizeof (*sep));
647 if (sep == (struct servtab *)0) {
6a3125d9 648 syslog(LOG_ERR, "Out of memory.");
21ed1185
MK
649 exit(-1);
650 }
651 *sep = *cp;
652 sep->se_fd = -1;
fc99bd8d 653 omask = sigblock(SIGBLOCK);
21ed1185
MK
654 sep->se_next = servtab;
655 servtab = sep;
656 sigsetmask(omask);
657 return (sep);
658}
659
660FILE *fconfig = NULL;
661struct servtab serv;
4a00dfd8 662char line[LINE_MAX];
21ed1185 663
4a00dfd8 664int
21ed1185
MK
665setconfig()
666{
667
668 if (fconfig != NULL) {
6e9dfe5b 669 fseek(fconfig, 0L, SEEK_SET);
21ed1185
MK
670 return (1);
671 }
672 fconfig = fopen(CONFIG, "r");
673 return (fconfig != NULL);
674}
675
4a00dfd8 676void
21ed1185
MK
677endconfig()
678{
567752b5
KB
679 if (fconfig) {
680 (void) fclose(fconfig);
681 fconfig = NULL;
682 }
21ed1185
MK
683}
684
685struct servtab *
686getconfigent()
687{
4a00dfd8 688 struct servtab *sep = &serv;
21ed1185 689 int argc;
4a00dfd8 690 char *cp, *arg;
6e9dfe5b
AC
691 static char TCPMUX_TOKEN[] = "tcpmux/";
692#define MUX_LEN (sizeof(TCPMUX_TOKEN)-1)
21ed1185 693
b1b30605 694more:
6e9dfe5b 695 while ((cp = nextline(fconfig)) && (*cp == '#' || *cp == '\0'))
21ed1185
MK
696 ;
697 if (cp == NULL)
698 return ((struct servtab *)0);
6e9dfe5b
AC
699 /*
700 * clear the static buffer, since some fields (se_ctrladdr,
701 * for example) don't get initialized here.
702 */
4a00dfd8 703 memset((caddr_t)sep, 0, sizeof *sep);
21ed1185 704 arg = skip(&cp);
6e9dfe5b
AC
705 if (cp == NULL) {
706 /* got an empty line containing just blanks/tabs. */
707 goto more;
708 }
709 if (strncmp(arg, TCPMUX_TOKEN, MUX_LEN) == 0) {
710 char *c = arg + MUX_LEN;
711 if (*c == '+') {
712 sep->se_type = MUXPLUS_TYPE;
713 c++;
714 } else
715 sep->se_type = MUX_TYPE;
716 sep->se_service = newstr(c);
717 } else {
718 sep->se_service = newstr(arg);
719 sep->se_type = NORM_TYPE;
720 }
721 arg = sskip(&cp);
21ed1185
MK
722 if (strcmp(arg, "stream") == 0)
723 sep->se_socktype = SOCK_STREAM;
724 else if (strcmp(arg, "dgram") == 0)
725 sep->se_socktype = SOCK_DGRAM;
726 else if (strcmp(arg, "rdm") == 0)
727 sep->se_socktype = SOCK_RDM;
728 else if (strcmp(arg, "seqpacket") == 0)
729 sep->se_socktype = SOCK_SEQPACKET;
730 else if (strcmp(arg, "raw") == 0)
731 sep->se_socktype = SOCK_RAW;
732 else
733 sep->se_socktype = -1;
6e9dfe5b
AC
734 sep->se_proto = newstr(sskip(&cp));
735 arg = sskip(&cp);
21ed1185 736 sep->se_wait = strcmp(arg, "wait") == 0;
6e9dfe5b
AC
737 if (ISMUX(sep)) {
738 /*
739 * Silently enforce "nowait" for TCPMUX services since
740 * they don't have an assigned port to listen on.
741 */
742 sep->se_wait = 0;
743
744 if (strcmp(sep->se_proto, "tcp")) {
745 syslog(LOG_ERR,
746 "%s: bad protocol for tcpmux service %s",
747 CONFIG, sep->se_service);
748 goto more;
749 }
750 if (sep->se_socktype != SOCK_STREAM) {
751 syslog(LOG_ERR,
752 "%s: bad socket type for tcpmux service %s",
753 CONFIG, sep->se_service);
754 goto more;
755 }
756 }
757 sep->se_user = newstr(sskip(&cp));
758 sep->se_server = newstr(sskip(&cp));
b1b30605 759 if (strcmp(sep->se_server, "internal") == 0) {
4a00dfd8 760 struct biltin *bi;
b1b30605
MK
761
762 for (bi = biltins; bi->bi_service; bi++)
763 if (bi->bi_socktype == sep->se_socktype &&
764 strcmp(bi->bi_service, sep->se_service) == 0)
765 break;
766 if (bi->bi_service == 0) {
6e9dfe5b 767 syslog(LOG_ERR, "internal service %s unknown",
b1b30605
MK
768 sep->se_service);
769 goto more;
770 }
771 sep->se_bi = bi;
772 sep->se_wait = bi->bi_wait;
9a0fbd5b
MK
773 } else
774 sep->se_bi = NULL;
21ed1185
MK
775 argc = 0;
776 for (arg = skip(&cp); cp; arg = skip(&cp))
777 if (argc < MAXARGV)
95236f21 778 sep->se_argv[argc++] = newstr(arg);
21ed1185
MK
779 while (argc <= MAXARGV)
780 sep->se_argv[argc++] = NULL;
781 return (sep);
782}
783
4a00dfd8 784void
21ed1185 785freeconfig(cp)
4a00dfd8 786 struct servtab *cp;
21ed1185
MK
787{
788 int i;
789
790 if (cp->se_service)
791 free(cp->se_service);
792 if (cp->se_proto)
793 free(cp->se_proto);
2a6b82aa
JL
794 if (cp->se_user)
795 free(cp->se_user);
21ed1185
MK
796 if (cp->se_server)
797 free(cp->se_server);
798 for (i = 0; i < MAXARGV; i++)
799 if (cp->se_argv[i])
800 free(cp->se_argv[i]);
801}
802
6e9dfe5b
AC
803
804/*
805 * Safe skip - if skip returns null, log a syntax error in the
806 * configuration file and exit.
807 */
808char *
809sskip(cpp)
810 char **cpp;
811{
4a00dfd8 812 char *cp;
6e9dfe5b
AC
813
814 cp = skip(cpp);
815 if (cp == NULL) {
816 syslog(LOG_ERR, "%s: syntax error", CONFIG);
817 exit(-1);
818 }
819 return (cp);
820}
821
21ed1185
MK
822char *
823skip(cpp)
824 char **cpp;
825{
4a00dfd8 826 char *cp = *cpp;
21ed1185
MK
827 char *start;
828
829again:
830 while (*cp == ' ' || *cp == '\t')
831 cp++;
832 if (*cp == '\0') {
4650c563 833 int c;
21ed1185
MK
834
835 c = getc(fconfig);
567752b5 836 (void) ungetc(c, fconfig);
21ed1185
MK
837 if (c == ' ' || c == '\t')
838 if (cp = nextline(fconfig))
839 goto again;
840 *cpp = (char *)0;
841 return ((char *)0);
842 }
843 start = cp;
844 while (*cp && *cp != ' ' && *cp != '\t')
845 cp++;
846 if (*cp != '\0')
847 *cp++ = '\0';
848 *cpp = cp;
849 return (start);
850}
851
852char *
853nextline(fd)
854 FILE *fd;
855{
856 char *cp;
857
2a6b82aa 858 if (fgets(line, sizeof (line), fd) == NULL)
21ed1185 859 return ((char *)0);
4a00dfd8 860 cp = strchr(line, '\n');
21ed1185
MK
861 if (cp)
862 *cp = '\0';
863 return (line);
864}
865
866char *
95236f21 867newstr(cp)
21ed1185
MK
868 char *cp;
869{
093d40e3 870 if (cp = strdup(cp ? cp : ""))
4a00dfd8 871 return (cp);
093d40e3 872 syslog(LOG_ERR, "strdup: %m");
95236f21 873 exit(-1);
21ed1185 874}
b1b30605 875
4a00dfd8 876void
b1b30605
MK
877setproctitle(a, s)
878 char *a;
879 int s;
880{
881 int size;
4a00dfd8 882 char *cp;
b1b30605
MK
883 struct sockaddr_in sin;
884 char buf[80];
885
886 cp = Argv[0];
887 size = sizeof(sin);
95236f21 888 if (getpeername(s, (struct sockaddr *)&sin, &size) == 0)
9bd38ba8 889 (void) sprintf(buf, "-%s [%s]", a, inet_ntoa(sin.sin_addr));
b1b30605 890 else
9bd38ba8 891 (void) sprintf(buf, "-%s", a);
b1b30605
MK
892 strncpy(cp, buf, LastArg - cp);
893 cp += strlen(cp);
894 while (cp < LastArg)
895 *cp++ = ' ';
896}
897
898/*
899 * Internet services provided internally by inetd:
900 */
a1fe6118 901#define BUFSIZE 8192
b1b30605
MK
902
903/* ARGSUSED */
4a00dfd8 904void
b1b30605
MK
905echo_stream(s, sep) /* Echo service -- echo data back */
906 int s;
907 struct servtab *sep;
908{
b9c70736 909 char buffer[BUFSIZE];
b1b30605
MK
910 int i;
911
0ee95e67 912 setproctitle(sep->se_service, s);
b1b30605
MK
913 while ((i = read(s, buffer, sizeof(buffer))) > 0 &&
914 write(s, buffer, i) > 0)
915 ;
916 exit(0);
917}
918
919/* ARGSUSED */
4a00dfd8 920void
b1b30605
MK
921echo_dg(s, sep) /* Echo service -- echo data back */
922 int s;
923 struct servtab *sep;
924{
b9c70736 925 char buffer[BUFSIZE];
b1b30605
MK
926 int i, size;
927 struct sockaddr sa;
928
929 size = sizeof(sa);
930 if ((i = recvfrom(s, buffer, sizeof(buffer), 0, &sa, &size)) < 0)
931 return;
932 (void) sendto(s, buffer, i, 0, &sa, sizeof(sa));
933}
934
935/* ARGSUSED */
4a00dfd8 936void
b1b30605
MK
937discard_stream(s, sep) /* Discard service -- ignore data */
938 int s;
939 struct servtab *sep;
940{
a1fe6118 941 int ret;
b9c70736 942 char buffer[BUFSIZE];
b1b30605 943
0ee95e67 944 setproctitle(sep->se_service, s);
b1b30605 945 while (1) {
a1fe6118 946 while ((ret = read(s, buffer, sizeof(buffer))) > 0)
b1b30605 947 ;
a1fe6118 948 if (ret == 0 || errno != EINTR)
b1b30605
MK
949 break;
950 }
951 exit(0);
952}
953
954/* ARGSUSED */
4a00dfd8 955void
b1b30605
MK
956discard_dg(s, sep) /* Discard service -- ignore data */
957 int s;
958 struct servtab *sep;
959{
b9c70736 960 char buffer[BUFSIZE];
b1b30605
MK
961
962 (void) read(s, buffer, sizeof(buffer));
963}
964
965#include <ctype.h>
966#define LINESIZ 72
967char ring[128];
968char *endring;
969
4a00dfd8 970void
b1b30605
MK
971initring()
972{
4a00dfd8 973 int i;
b1b30605
MK
974
975 endring = ring;
976
977 for (i = 0; i <= 128; ++i)
978 if (isprint(i))
979 *endring++ = i;
980}
981
982/* ARGSUSED */
4a00dfd8 983void
b1b30605
MK
984chargen_stream(s, sep) /* Character generator */
985 int s;
986 struct servtab *sep;
987{
92732149 988 int len;
4a00dfd8 989 char *rs, text[LINESIZ+2];
b1b30605 990
0ee95e67 991 setproctitle(sep->se_service, s);
92732149
KB
992
993 if (!endring) {
b1b30605 994 initring();
92732149
KB
995 rs = ring;
996 }
b1b30605 997
92732149
KB
998 text[LINESIZ] = '\r';
999 text[LINESIZ + 1] = '\n';
1000 for (rs = ring;;) {
1001 if ((len = endring - rs) >= LINESIZ)
4a00dfd8 1002 memmove(text, rs, LINESIZ);
92732149 1003 else {
4a00dfd8
JSP
1004 memmove(text, rs, len);
1005 memmove(text + len, ring, LINESIZ - len);
b1b30605 1006 }
92732149
KB
1007 if (++rs == endring)
1008 rs = ring;
1009 if (write(s, text, sizeof(text)) != sizeof(text))
b1b30605
MK
1010 break;
1011 }
1012 exit(0);
1013}
1014
1015/* ARGSUSED */
4a00dfd8 1016void
b1b30605
MK
1017chargen_dg(s, sep) /* Character generator */
1018 int s;
1019 struct servtab *sep;
1020{
b1b30605 1021 struct sockaddr sa;
92732149
KB
1022 static char *rs;
1023 int len, size;
1024 char text[LINESIZ+2];
b1b30605 1025
92732149 1026 if (endring == 0) {
b1b30605 1027 initring();
92732149
KB
1028 rs = ring;
1029 }
b1b30605
MK
1030
1031 size = sizeof(sa);
1032 if (recvfrom(s, text, sizeof(text), 0, &sa, &size) < 0)
1033 return;
b1b30605 1034
92732149 1035 if ((len = endring - rs) >= LINESIZ)
4a00dfd8 1036 memmove(text, rs, LINESIZ);
92732149 1037 else {
4a00dfd8
JSP
1038 memmove(text, rs, len);
1039 memmove(text + len, ring, LINESIZ - len);
92732149
KB
1040 }
1041 if (++rs == endring)
1042 rs = ring;
1043 text[LINESIZ] = '\r';
1044 text[LINESIZ + 1] = '\n';
b1b30605
MK
1045 (void) sendto(s, text, sizeof(text), 0, &sa, sizeof(sa));
1046}
1047
1048/*
1049 * Return a machine readable date and time, in the form of the
1050 * number of seconds since midnight, Jan 1, 1900. Since gettimeofday
1051 * returns the number of seconds since midnight, Jan 1, 1970,
1052 * we must add 2208988800 seconds to this figure to make up for
1053 * some seventy years Bell Labs was asleep.
1054 */
b1b30605
MK
1055
1056long
1057machtime()
1058{
1059 struct timeval tv;
1060
2a6b82aa 1061 if (gettimeofday(&tv, (struct timezone *)0) < 0) {
6e9dfe5b
AC
1062 if (debug)
1063 fprintf(stderr, "Unable to get time of day\n");
2a6b82aa 1064 return (0L);
b1b30605 1065 }
9a61decd
CT
1066#define OFFSET ((u_long)25567 * 24*60*60)
1067 return (htonl((long)(tv.tv_sec + OFFSET)));
1068#undef OFFSET
b1b30605
MK
1069}
1070
1071/* ARGSUSED */
4a00dfd8 1072void
b1b30605
MK
1073machtime_stream(s, sep)
1074 int s;
1075 struct servtab *sep;
1076{
1077 long result;
1078
1079 result = machtime();
1080 (void) write(s, (char *) &result, sizeof(result));
1081}
1082
1083/* ARGSUSED */
4a00dfd8 1084void
b1b30605
MK
1085machtime_dg(s, sep)
1086 int s;
1087 struct servtab *sep;
1088{
1089 long result;
1090 struct sockaddr sa;
1091 int size;
1092
1093 size = sizeof(sa);
2a6b82aa 1094 if (recvfrom(s, (char *)&result, sizeof(result), 0, &sa, &size) < 0)
b1b30605
MK
1095 return;
1096 result = machtime();
1097 (void) sendto(s, (char *) &result, sizeof(result), 0, &sa, sizeof(sa));
1098}
1099
1100/* ARGSUSED */
4a00dfd8 1101void
b1b30605
MK
1102daytime_stream(s, sep) /* Return human-readable time of day */
1103 int s;
1104 struct servtab *sep;
1105{
1106 char buffer[256];
6e9dfe5b 1107 time_t clock;
b1b30605
MK
1108
1109 clock = time((time_t *) 0);
1110
9bd38ba8 1111 (void) sprintf(buffer, "%.24s\r\n", ctime(&clock));
2a6b82aa 1112 (void) write(s, buffer, strlen(buffer));
b1b30605
MK
1113}
1114
1115/* ARGSUSED */
4a00dfd8 1116void
b1b30605
MK
1117daytime_dg(s, sep) /* Return human-readable time of day */
1118 int s;
1119 struct servtab *sep;
1120{
1121 char buffer[256];
6e9dfe5b 1122 time_t clock;
b1b30605
MK
1123 struct sockaddr sa;
1124 int size;
b1b30605
MK
1125
1126 clock = time((time_t *) 0);
1127
1128 size = sizeof(sa);
1129 if (recvfrom(s, buffer, sizeof(buffer), 0, &sa, &size) < 0)
1130 return;
9bd38ba8 1131 (void) sprintf(buffer, "%.24s\r\n", ctime(&clock));
b1b30605
MK
1132 (void) sendto(s, buffer, strlen(buffer), 0, &sa, sizeof(sa));
1133}
9a0fbd5b
MK
1134
1135/*
1136 * print_service:
1137 * Dump relevant information to stderr
1138 */
4a00dfd8 1139void
9a0fbd5b
MK
1140print_service(action, sep)
1141 char *action;
1142 struct servtab *sep;
1143{
1144 fprintf(stderr,
1145 "%s: %s proto=%s, wait=%d, user=%s builtin=%x server=%s\n",
1146 action, sep->se_service, sep->se_proto,
567752b5 1147 sep->se_wait, sep->se_user, (int)sep->se_bi, sep->se_server);
9a0fbd5b 1148}
6e9dfe5b
AC
1149
1150/*
1151 * Based on TCPMUX.C by Mark K. Lottor November 1988
1152 * sri-nic::ps:<mkl>tcpmux.c
1153 */
1154
1155
1156static int /* # of characters upto \r,\n or \0 */
1157getline(fd, buf, len)
1158 int fd;
1159 char *buf;
1160 int len;
1161{
1162 int count = 0, n;
1163
1164 do {
1165 n = read(fd, buf, len-count);
1166 if (n == 0)
4a00dfd8 1167 return (count);
6e9dfe5b
AC
1168 if (n < 0)
1169 return (-1);
1170 while (--n >= 0) {
1171 if (*buf == '\r' || *buf == '\n' || *buf == '\0')
4a00dfd8 1172 return (count);
6e9dfe5b
AC
1173 count++;
1174 buf++;
1175 }
1176 } while (count < len);
1177 return (count);
1178}
1179
1180#define MAX_SERV_LEN (256+2) /* 2 bytes for \r\n */
1181
1182#define strwrite(fd, buf) (void) write(fd, buf, sizeof(buf)-1)
1183
1184struct servtab *
1185tcpmux(s)
1186 int s;
1187{
4a00dfd8 1188 struct servtab *sep;
6e9dfe5b
AC
1189 char service[MAX_SERV_LEN+1];
1190 int len;
1191
1192 /* Get requested service name */
1193 if ((len = getline(s, service, MAX_SERV_LEN)) < 0) {
4a00dfd8
JSP
1194 strwrite(s, "-Error reading service name\r\n");
1195 return (NULL);
6e9dfe5b
AC
1196 }
1197 service[len] = '\0';
1198
1199 if (debug)
4a00dfd8 1200 fprintf(stderr, "tcpmux: someone wants %s\n", service);
6e9dfe5b
AC
1201
1202 /*
1203 * Help is a required command, and lists available services,
1204 * one per line.
1205 */
4a00dfd8
JSP
1206 if (!strcasecmp(service, "help")) {
1207 for (sep = servtab; sep; sep = sep->se_next) {
1208 if (!ISMUX(sep))
1209 continue;
1210 (void)write(s,sep->se_service,strlen(sep->se_service));
1211 strwrite(s, "\r\n");
1212 }
1213 return (NULL);
6e9dfe5b
AC
1214 }
1215
1216 /* Try matching a service in inetd.conf with the request */
1217 for (sep = servtab; sep; sep = sep->se_next) {
4a00dfd8
JSP
1218 if (!ISMUX(sep))
1219 continue;
1220 if (!strcasecmp(service, sep->se_service)) {
1221 if (ISMUXPLUS(sep)) {
1222 strwrite(s, "+Go\r\n");
1223 }
1224 return (sep);
6e9dfe5b 1225 }
6e9dfe5b
AC
1226 }
1227 strwrite(s, "-Service not available\r\n");
4a00dfd8 1228 return (NULL);
6e9dfe5b 1229}