builtins.c revision 267654
11573Srgrimes/*-
21573Srgrimes * Copyright (c) 1983, 1991, 1993, 1994
31573Srgrimes *	The Regents of the University of California.  All rights reserved.
41573Srgrimes *
51573Srgrimes * Redistribution and use in source and binary forms, with or without
61573Srgrimes * modification, are permitted provided that the following conditions
71573Srgrimes * are met:
81573Srgrimes * 1. Redistributions of source code must retain the above copyright
91573Srgrimes *    notice, this list of conditions and the following disclaimer.
101573Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111573Srgrimes *    notice, this list of conditions and the following disclaimer in the
121573Srgrimes *    documentation and/or other materials provided with the distribution.
13249808Semaste *
141573Srgrimes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
151573Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
161573Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
171573Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
181573Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
191573Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
201573Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
211573Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
221573Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
231573Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
241573Srgrimes * SUCH DAMAGE.
251573Srgrimes */
261573Srgrimes
271573Srgrimes#include <sys/cdefs.h>
281573Srgrimes__FBSDID("$FreeBSD: releng/9.3/usr.sbin/inetd/builtins.c 157820 2006-04-17 19:55:25Z dwmalone $");
291573Srgrimes
301573Srgrimes#include <sys/filio.h>
311573Srgrimes#include <sys/ioccom.h>
321573Srgrimes#include <sys/param.h>
3392986Sobrien#include <sys/stat.h>
3492986Sobrien#include <sys/socket.h>
351573Srgrimes#include <sys/sysctl.h>
3671579Sdeischen#include <sys/ucred.h>
371573Srgrimes#include <sys/uio.h>
381573Srgrimes#include <sys/utsname.h>
391573Srgrimes
401573Srgrimes#include <ctype.h>
41108089Stjr#include <err.h>
421573Srgrimes#include <errno.h>
431573Srgrimes#include <fcntl.h>
4471579Sdeischen#include <limits.h>
45108090Stjr#include <pwd.h>
46108090Stjr#include <signal.h>
471573Srgrimes#include <stdlib.h>
481573Srgrimes#include <string.h>
49249810Semaste#include <sysexits.h>
501573Srgrimes#include <syslog.h>
51108089Stjr#include <unistd.h>
5292889Sobrien
531573Srgrimes#include "inetd.h"
541573Srgrimes
551573Srgrimesvoid		chargen_dg(int, struct servtab *);
5640731Srnordiervoid		chargen_stream(int, struct servtab *);
571573Srgrimesvoid		daytime_dg(int, struct servtab *);
581573Srgrimesvoid		daytime_stream(int, struct servtab *);
591573Srgrimesvoid		discard_dg(int, struct servtab *);
601573Srgrimesvoid		discard_stream(int, struct servtab *);
611573Srgrimesvoid		echo_dg(int, struct servtab *);
621573Srgrimesvoid		echo_stream(int, struct servtab *);
631573Srgrimesstatic int	getline(int, char *, int);
64108089Stjrvoid		iderror(int, int, int, const char *);
65108089Stjrvoid		ident_stream(int, struct servtab *);
661573Srgrimesvoid		initring(void);
671573Srgrimesuint32_t	machtime(void);
681573Srgrimesvoid		machtime_dg(int, struct servtab *);
691573Srgrimesvoid		machtime_stream(int, struct servtab *);
70108090Stjr
71108090Stjrchar ring[128];
72108090Stjrchar *endring;
73108090Stjr
74108090Stjr
751573Srgrimesstruct biltin biltins[] = {
76	/* Echo received data */
77	{ "echo",	SOCK_STREAM,	1, -1,	echo_stream },
78	{ "echo",	SOCK_DGRAM,	0, 1,	echo_dg },
79
80	/* Internet /dev/null */
81	{ "discard",	SOCK_STREAM,	1, -1,	discard_stream },
82	{ "discard",	SOCK_DGRAM,	0, 1,	discard_dg },
83
84	/* Return 32 bit time since 1900 */
85	{ "time",	SOCK_STREAM,	0, -1,	machtime_stream },
86	{ "time",	SOCK_DGRAM,	0, 1,	machtime_dg },
87
88	/* Return human-readable time */
89	{ "daytime",	SOCK_STREAM,	0, -1,	daytime_stream },
90	{ "daytime",	SOCK_DGRAM,	0, 1,	daytime_dg },
91
92	/* Familiar character generator */
93	{ "chargen",	SOCK_STREAM,	1, -1,	chargen_stream },
94	{ "chargen",	SOCK_DGRAM,	0, 1,	chargen_dg },
95
96	{ "tcpmux",	SOCK_STREAM,	1, -1,	(bi_fn_t *)tcpmux },
97
98	{ "auth",	SOCK_STREAM,	1, -1,	ident_stream },
99
100	{ NULL,		0,		0, 0,	NULL }
101};
102
103/*
104 * RFC864 Character Generator Protocol. Generates character data without
105 * any regard for input.
106 */
107
108void
109initring(void)
110{
111	int i;
112
113	endring = ring;
114
115	for (i = 0; i <= 128; ++i)
116		if (isprint(i))
117			*endring++ = i;
118}
119
120/* Character generator
121 * The RFC says that we should send back a random number of
122 * characters chosen from the range 0 to 512. We send LINESIZ+2.
123 */
124/* ARGSUSED */
125void
126chargen_dg(int s, struct servtab *sep)
127{
128	struct sockaddr_storage ss;
129	static char *rs;
130	int len;
131	socklen_t size;
132	char text[LINESIZ+2];
133
134	if (endring == 0) {
135		initring();
136		rs = ring;
137	}
138
139	size = sizeof(ss);
140	if (recvfrom(s, text, sizeof(text), 0,
141		     (struct sockaddr *)&ss, &size) < 0)
142		return;
143
144	if (check_loop((struct sockaddr *)&ss, sep))
145		return;
146
147	if ((len = endring - rs) >= LINESIZ)
148		memmove(text, rs, LINESIZ);
149	else {
150		memmove(text, rs, len);
151		memmove(text + len, ring, LINESIZ - len);
152	}
153	if (++rs == endring)
154		rs = ring;
155	text[LINESIZ] = '\r';
156	text[LINESIZ + 1] = '\n';
157	(void) sendto(s, text, sizeof(text), 0, (struct sockaddr *)&ss, size);
158}
159
160/* Character generator */
161/* ARGSUSED */
162void
163chargen_stream(int s, struct servtab *sep)
164{
165	int len;
166	char *rs, text[LINESIZ+2];
167
168	inetd_setproctitle(sep->se_service, s);
169
170	if (!endring) {
171		initring();
172		rs = ring;
173	}
174
175	text[LINESIZ] = '\r';
176	text[LINESIZ + 1] = '\n';
177	for (rs = ring;;) {
178		if ((len = endring - rs) >= LINESIZ)
179			memmove(text, rs, LINESIZ);
180		else {
181			memmove(text, rs, len);
182			memmove(text + len, ring, LINESIZ - len);
183		}
184		if (++rs == endring)
185			rs = ring;
186		if (write(s, text, sizeof(text)) != sizeof(text))
187			break;
188	}
189	exit(0);
190}
191
192/*
193 * RFC867 Daytime Protocol. Sends the current date and time as an ascii
194 * character string without any regard for input.
195 */
196
197/* Return human-readable time of day */
198/* ARGSUSED */
199void
200daytime_dg(int s, struct servtab *sep)
201{
202	char buffer[256];
203	time_t now;
204	struct sockaddr_storage ss;
205	socklen_t size;
206
207	now = time((time_t *) 0);
208
209	size = sizeof(ss);
210	if (recvfrom(s, buffer, sizeof(buffer), 0,
211		     (struct sockaddr *)&ss, &size) < 0)
212		return;
213
214	if (check_loop((struct sockaddr *)&ss, sep))
215		return;
216
217	(void) sprintf(buffer, "%.24s\r\n", ctime(&now));
218	(void) sendto(s, buffer, strlen(buffer), 0,
219		      (struct sockaddr *)&ss, size);
220}
221
222/* Return human-readable time of day */
223/* ARGSUSED */
224void
225daytime_stream(int s, struct servtab *sep __unused)
226{
227	char buffer[256];
228	time_t now;
229
230	now = time((time_t *) 0);
231
232	(void) sprintf(buffer, "%.24s\r\n", ctime(&now));
233	(void) send(s, buffer, strlen(buffer), MSG_EOF);
234}
235
236/*
237 * RFC863 Discard Protocol. Any data received is thrown away and no response
238 * is sent.
239 */
240
241/* Discard service -- ignore data */
242/* ARGSUSED */
243void
244discard_dg(int s, struct servtab *sep __unused)
245{
246	char buffer[BUFSIZE];
247
248	(void) read(s, buffer, sizeof(buffer));
249}
250
251/* Discard service -- ignore data */
252/* ARGSUSED */
253void
254discard_stream(int s, struct servtab *sep)
255{
256	int ret;
257	char buffer[BUFSIZE];
258
259	inetd_setproctitle(sep->se_service, s);
260	while (1) {
261		while ((ret = read(s, buffer, sizeof(buffer))) > 0)
262			;
263		if (ret == 0 || errno != EINTR)
264			break;
265	}
266	exit(0);
267}
268
269/*
270 * RFC862 Echo Protocol. Any data received is sent back to the sender as
271 * received.
272 */
273
274/* Echo service -- echo data back */
275/* ARGSUSED */
276void
277echo_dg(int s, struct servtab *sep)
278{
279	char buffer[65536]; /* Should be sizeof(max datagram). */
280	int i;
281	socklen_t size;
282	struct sockaddr_storage ss;
283
284	size = sizeof(ss);
285	if ((i = recvfrom(s, buffer, sizeof(buffer), 0,
286			  (struct sockaddr *)&ss, &size)) < 0)
287		return;
288
289	if (check_loop((struct sockaddr *)&ss, sep))
290		return;
291
292	(void) sendto(s, buffer, i, 0, (struct sockaddr *)&ss, size);
293}
294
295/* Echo service -- echo data back */
296/* ARGSUSED */
297void
298echo_stream(int s, struct servtab *sep)
299{
300	char buffer[BUFSIZE];
301	int i;
302
303	inetd_setproctitle(sep->se_service, s);
304	while ((i = read(s, buffer, sizeof(buffer))) > 0 &&
305	    write(s, buffer, i) > 0)
306		;
307	exit(0);
308}
309
310/*
311 * RFC1413 Identification Protocol. Given a TCP port number pair, return a
312 * character string which identifies the owner of that connection on the
313 * server's system. Extended to allow for ~/.fakeid support and ~/.noident
314 * support.
315 */
316
317/* RFC 1413 says the following are the only errors you can return. */
318#define ID_INVALID	"INVALID-PORT"	/* Port number improperly specified. */
319#define ID_NOUSER	"NO-USER"	/* Port not in use/not identifable. */
320#define ID_HIDDEN	"HIDDEN-USER"	/* Hiden at user's request. */
321#define ID_UNKNOWN	"UNKNOWN-ERROR"	/* Everything else. */
322
323/* Generic ident_stream error-sending func */
324/* ARGSUSED */
325void
326iderror(int lport, int fport, int s, const char *er)
327{
328	char *p;
329
330	asprintf(&p, "%d , %d : ERROR : %s\r\n", lport, fport, er);
331	if (p == NULL) {
332		syslog(LOG_ERR, "asprintf: %m");
333		exit(EX_OSERR);
334	}
335	send(s, p, strlen(p), MSG_EOF);
336	free(p);
337
338	exit(0);
339}
340
341/* Ident service (AKA "auth") */
342/* ARGSUSED */
343void
344ident_stream(int s, struct servtab *sep)
345{
346	struct utsname un;
347	struct stat sb;
348	struct sockaddr_in sin4[2];
349#ifdef INET6
350	struct sockaddr_in6 sin6[2];
351#endif
352	struct sockaddr_storage ss[2];
353	struct xucred uc;
354	struct timeval tv = {
355		10,
356		0
357	}, to;
358	struct passwd *pw = NULL;
359	fd_set fdset;
360	char buf[BUFSIZE], *p, **av, *osname = NULL, e;
361	char idbuf[MAXLOGNAME] = ""; /* Big enough to hold uid in decimal. */
362	socklen_t socklen;
363	ssize_t ssize;
364	size_t size, bufsiz;
365	int c, fflag = 0, nflag = 0, rflag = 0, argc = 0;
366	int gflag = 0, iflag = 0, Fflag = 0, getcredfail = 0, onreadlen;
367	u_short lport, fport;
368
369	inetd_setproctitle(sep->se_service, s);
370	/*
371	 * Reset getopt() since we are a fork() but not an exec() from
372	 * a parent which used getopt() already.
373	 */
374	optind = 1;
375	optreset = 1;
376	/*
377	 * Take the internal argument vector and count it out to make an
378	 * argument count for getopt. This can be used for any internal
379	 * service to read arguments and use getopt() easily.
380	 */
381	for (av = sep->se_argv; *av; av++)
382		argc++;
383	if (argc) {
384		int sec, usec;
385		size_t i;
386		u_int32_t rnd32;
387
388		while ((c = getopt(argc, sep->se_argv, "d:fFgino:rt:")) != -1)
389			switch (c) {
390			case 'd':
391				if (!gflag)
392					strlcpy(idbuf, optarg, sizeof(idbuf));
393				break;
394			case 'f':
395				fflag = 1;
396				break;
397			case 'F':
398				fflag = 1;
399				Fflag=1;
400				break;
401			case 'g':
402				gflag = 1;
403				rnd32 = 0;	/* Shush, compiler. */
404				/*
405				 * The number of bits in "rnd32" divided
406				 * by the number of bits needed per iteration
407				 * gives a more optimal way to reload the
408				 * random number only when necessary.
409				 *
410				 * 32 bits from arc4random corresponds to
411				 * about 6 base-36 digits, so we reseed evey 6.
412				 */
413				for (i = 0; i < sizeof(idbuf) - 1; i++) {
414					static const char *const base36 =
415					    "0123456789"
416					    "abcdefghijklmnopqrstuvwxyz";
417					if (i % 6 == 0)
418						rnd32 = arc4random();
419					idbuf[i] = base36[rnd32 % 36];
420					rnd32 /= 36;
421				}
422				idbuf[i] = '\0';
423				break;
424			case 'i':
425				iflag = 1;
426				break;
427			case 'n':
428				nflag = 1;
429				break;
430			case 'o':
431				osname = optarg;
432				break;
433			case 'r':
434				rflag = 1;
435				break;
436			case 't':
437				switch (sscanf(optarg, "%d.%d", &sec, &usec)) {
438				case 2:
439					tv.tv_usec = usec;
440					/* FALLTHROUGH */
441				case 1:
442					tv.tv_sec = sec;
443					break;
444				default:
445					if (debug)
446						warnx("bad -t argument");
447					break;
448				}
449				break;
450			default:
451				break;
452			}
453	}
454	if (osname == NULL) {
455		if (uname(&un) == -1)
456			iderror(0, 0, s, ID_UNKNOWN);
457		osname = un.sysname;
458	}
459
460	/*
461	 * We're going to prepare for and execute reception of a
462	 * packet of data from the user. The data is in the format
463	 * "local_port , foreign_port\r\n" (with local being the
464	 * server's port and foreign being the client's.)
465	 */
466	gettimeofday(&to, NULL);
467	to.tv_sec += tv.tv_sec;
468	to.tv_usec += tv.tv_usec;
469	if (to.tv_usec >= 1000000) {
470		to.tv_usec -= 1000000;
471		to.tv_sec++;
472	}
473
474	size = 0;
475	bufsiz = sizeof(buf) - 1;
476	FD_ZERO(&fdset);
477 	while (bufsiz > 0) {
478		gettimeofday(&tv, NULL);
479		tv.tv_sec = to.tv_sec - tv.tv_sec;
480		tv.tv_usec = to.tv_usec - tv.tv_usec;
481		if (tv.tv_usec < 0) {
482			tv.tv_usec += 1000000;
483			tv.tv_sec--;
484		}
485		if (tv.tv_sec < 0)
486			break;
487		FD_SET(s, &fdset);
488		if (select(s + 1, &fdset, NULL, NULL, &tv) == -1)
489			iderror(0, 0, s, ID_UNKNOWN);
490		if (ioctl(s, FIONREAD, &onreadlen) == -1)
491			iderror(0, 0, s, ID_UNKNOWN);
492		if ((size_t)onreadlen > bufsiz)
493			onreadlen = bufsiz;
494		ssize = read(s, &buf[size], (size_t)onreadlen);
495		if (ssize == -1)
496			iderror(0, 0, s, ID_UNKNOWN);
497		else if (ssize == 0)
498			break;
499		bufsiz -= ssize;
500		size += ssize;
501		if (memchr(&buf[size - ssize], '\n', ssize) != NULL)
502			break;
503 	}
504	buf[size] = '\0';
505	/* Read two characters, and check for a delimiting character */
506	if (sscanf(buf, "%hu , %hu%c", &lport, &fport, &e) != 3 || isdigit(e))
507		iderror(0, 0, s, ID_INVALID);
508
509	/* Send garbage? */
510	if (gflag)
511		goto printit;
512
513	/*
514	 * If not "real" (-r), send a HIDDEN-USER error for everything.
515	 * If -d is used to set a fallback username, this is used to
516	 * override it, and the fallback is returned instead.
517	 */
518	if (!rflag) {
519		if (*idbuf == '\0')
520			iderror(lport, fport, s, ID_HIDDEN);
521		goto printit;
522	}
523
524	/*
525	 * We take the input and construct an array of two sockaddr_ins
526	 * which contain the local address information and foreign
527	 * address information, respectively, used to look up the
528	 * credentials for the socket (which are returned by the
529	 * sysctl "net.inet.tcp.getcred" when we call it.)
530	 */
531	socklen = sizeof(ss[0]);
532	if (getsockname(s, (struct sockaddr *)&ss[0], &socklen) == -1)
533		iderror(lport, fport, s, ID_UNKNOWN);
534	socklen = sizeof(ss[1]);
535	if (getpeername(s, (struct sockaddr *)&ss[1], &socklen) == -1)
536		iderror(lport, fport, s, ID_UNKNOWN);
537	if (ss[0].ss_family != ss[1].ss_family)
538		iderror(lport, fport, s, ID_UNKNOWN);
539	size = sizeof(uc);
540	switch (ss[0].ss_family) {
541	case AF_INET:
542		sin4[0] = *(struct sockaddr_in *)&ss[0];
543		sin4[0].sin_port = htons(lport);
544		sin4[1] = *(struct sockaddr_in *)&ss[1];
545		sin4[1].sin_port = htons(fport);
546		if (sysctlbyname("net.inet.tcp.getcred", &uc, &size, sin4,
547				 sizeof(sin4)) == -1)
548			getcredfail = errno;
549		break;
550#ifdef INET6
551	case AF_INET6:
552		sin6[0] = *(struct sockaddr_in6 *)&ss[0];
553		sin6[0].sin6_port = htons(lport);
554		sin6[1] = *(struct sockaddr_in6 *)&ss[1];
555		sin6[1].sin6_port = htons(fport);
556		if (sysctlbyname("net.inet6.tcp6.getcred", &uc, &size, sin6,
557				 sizeof(sin6)) == -1)
558			getcredfail = errno;
559		break;
560#endif
561	default: /* should not reach here */
562		getcredfail = EAFNOSUPPORT;
563		break;
564	}
565	if (getcredfail != 0 || uc.cr_version != XUCRED_VERSION) {
566		if (*idbuf == '\0')
567			iderror(lport, fport, s,
568			    getcredfail == ENOENT ? ID_NOUSER : ID_UNKNOWN);
569		goto printit;
570	}
571
572	/* Look up the pw to get the username and home directory*/
573	errno = 0;
574	pw = getpwuid(uc.cr_uid);
575	if (pw == NULL)
576		iderror(lport, fport, s, errno == 0 ? ID_NOUSER : ID_UNKNOWN);
577
578	if (iflag)
579		snprintf(idbuf, sizeof(idbuf), "%u", (unsigned)pw->pw_uid);
580	else
581		strlcpy(idbuf, pw->pw_name, sizeof(idbuf));
582
583	/*
584	 * If enabled, we check for a file named ".noident" in the user's
585	 * home directory. If found, we return HIDDEN-USER.
586	 */
587	if (nflag) {
588		if (asprintf(&p, "%s/.noident", pw->pw_dir) == -1)
589			iderror(lport, fport, s, ID_UNKNOWN);
590		if (lstat(p, &sb) == 0) {
591			free(p);
592			iderror(lport, fport, s, ID_HIDDEN);
593		}
594		free(p);
595	}
596
597	/*
598	 * Here, if enabled, we read a user's ".fakeid" file in their
599	 * home directory. It consists of a line containing the name
600	 * they want.
601	 */
602	if (fflag) {
603		int fakeid_fd;
604
605		/*
606		 * Here we set ourself to effectively be the user, so we don't
607		 * open any files we have no permission to open, especially
608		 * symbolic links to sensitive root-owned files or devices.
609		 */
610		if (initgroups(pw->pw_name, pw->pw_gid) == -1)
611			iderror(lport, fport, s, ID_UNKNOWN);
612		if (seteuid(pw->pw_uid) == -1)
613			iderror(lport, fport, s, ID_UNKNOWN);
614		/*
615		 * We can't stat() here since that would be a race
616		 * condition.
617		 * Therefore, we open the file we have permissions to open
618		 * and if it's not a regular file, we close it and end up
619		 * returning the user's real username.
620		 */
621		if (asprintf(&p, "%s/.fakeid", pw->pw_dir) == -1)
622			iderror(lport, fport, s, ID_UNKNOWN);
623		fakeid_fd = open(p, O_RDONLY | O_NONBLOCK);
624		free(p);
625		if (fakeid_fd == -1 || fstat(fakeid_fd, &sb) == -1 ||
626		    !S_ISREG(sb.st_mode))
627			goto fakeid_fail;
628
629		if ((ssize = read(fakeid_fd, buf, sizeof(buf) - 1)) < 0)
630			goto fakeid_fail;
631		buf[ssize] = '\0';
632
633		/*
634		 * Usually, the file will have the desired identity
635		 * in the form "identity\n". Allow for leading white
636		 * space and trailing white space/end of line.
637		 */
638		p = buf;
639		p += strspn(p, " \t");
640		p[strcspn(p, " \t\r\n")] = '\0';
641		if (strlen(p) > MAXLOGNAME - 1) /* Too long (including nul)? */
642			p[MAXLOGNAME - 1] = '\0';
643
644		/*
645		 * If the name is a zero-length string or matches it
646		 * the id or name of another user (unless permitted by -F)
647		 * then it is invalid.
648		 */
649		if (*p == '\0')
650			goto fakeid_fail;
651		if (!Fflag) {
652			if (iflag) {
653				if (p[strspn(p, "0123456789")] == '\0' &&
654				    getpwuid(atoi(p)) != NULL)
655					goto fakeid_fail;
656			} else {
657				if (getpwnam(p) != NULL)
658					goto fakeid_fail;
659			}
660		}
661
662		strlcpy(idbuf, p, sizeof(idbuf));
663
664fakeid_fail:
665		if (fakeid_fd != -1)
666			close(fakeid_fd);
667	}
668
669printit:
670	/* Finally, we make and send the reply. */
671	if (asprintf(&p, "%d , %d : USERID : %s : %s\r\n", lport, fport, osname,
672	    idbuf) == -1) {
673		syslog(LOG_ERR, "asprintf: %m");
674		exit(EX_OSERR);
675	}
676	send(s, p, strlen(p), MSG_EOF);
677	free(p);
678
679	exit(0);
680}
681
682/*
683 * RFC738/868 Time Server.
684 * Return a machine readable date and time, in the form of the
685 * number of seconds since midnight, Jan 1, 1900.  Since gettimeofday
686 * returns the number of seconds since midnight, Jan 1, 1970,
687 * we must add 2208988800 seconds to this figure to make up for
688 * some seventy years Bell Labs was asleep.
689 */
690
691uint32_t
692machtime(void)
693{
694	struct timeval tv;
695
696	if (gettimeofday(&tv, (struct timezone *)NULL) < 0) {
697		if (debug)
698			warnx("unable to get time of day");
699		return (0L);
700	}
701#define	OFFSET ((uint32_t)25567 * 24*60*60)
702	return (htonl((uint32_t)(tv.tv_sec + OFFSET)));
703#undef OFFSET
704}
705
706/* ARGSUSED */
707void
708machtime_dg(int s, struct servtab *sep)
709{
710	uint32_t result;
711	struct sockaddr_storage ss;
712	socklen_t size;
713
714	size = sizeof(ss);
715	if (recvfrom(s, (char *)&result, sizeof(result), 0,
716		     (struct sockaddr *)&ss, &size) < 0)
717		return;
718
719	if (check_loop((struct sockaddr *)&ss, sep))
720		return;
721
722	result = machtime();
723	(void) sendto(s, (char *) &result, sizeof(result), 0,
724		      (struct sockaddr *)&ss, size);
725}
726
727/* ARGSUSED */
728void
729machtime_stream(int s, struct servtab *sep __unused)
730{
731	uint32_t result;
732
733	result = machtime();
734	(void) send(s, (char *) &result, sizeof(result), MSG_EOF);
735}
736
737/*
738 * RFC1078 TCP Port Service Multiplexer (TCPMUX). Service connections to
739 * services based on the service name sent.
740 *
741 *  Based on TCPMUX.C by Mark K. Lottor November 1988
742 *  sri-nic::ps:<mkl>tcpmux.c
743 */
744
745#define MAX_SERV_LEN	(256+2)		/* 2 bytes for \r\n */
746#define strwrite(fd, buf)	(void) write(fd, buf, sizeof(buf)-1)
747
748static int		/* # of characters upto \r,\n or \0 */
749getline(int fd, char *buf, int len)
750{
751	int count = 0, n;
752	struct sigaction sa;
753
754	sa.sa_flags = 0;
755	sigemptyset(&sa.sa_mask);
756	sa.sa_handler = SIG_DFL;
757	sigaction(SIGALRM, &sa, (struct sigaction *)0);
758	do {
759		alarm(10);
760		n = read(fd, buf, len-count);
761		alarm(0);
762		if (n == 0)
763			return (count);
764		if (n < 0)
765			return (-1);
766		while (--n >= 0) {
767			if (*buf == '\r' || *buf == '\n' || *buf == '\0')
768				return (count);
769			count++;
770			buf++;
771		}
772	} while (count < len);
773	return (count);
774}
775
776struct servtab *
777tcpmux(int s)
778{
779	struct servtab *sep;
780	char service[MAX_SERV_LEN+1];
781	int len;
782
783	/* Get requested service name */
784	if ((len = getline(s, service, MAX_SERV_LEN)) < 0) {
785		strwrite(s, "-Error reading service name\r\n");
786		return (NULL);
787	}
788	service[len] = '\0';
789
790	if (debug)
791		warnx("tcpmux: someone wants %s", service);
792
793	/*
794	 * Help is a required command, and lists available services,
795	 * one per line.
796	 */
797	if (!strcasecmp(service, "help")) {
798		for (sep = servtab; sep; sep = sep->se_next) {
799			if (!ISMUX(sep))
800				continue;
801			(void)write(s,sep->se_service,strlen(sep->se_service));
802			strwrite(s, "\r\n");
803		}
804		return (NULL);
805	}
806
807	/* Try matching a service in inetd.conf with the request */
808	for (sep = servtab; sep; sep = sep->se_next) {
809		if (!ISMUX(sep))
810			continue;
811		if (!strcasecmp(service, sep->se_service)) {
812			if (ISMUXPLUS(sep)) {
813				strwrite(s, "+Go\r\n");
814			}
815			return (sep);
816		}
817	}
818	strwrite(s, "-Service not available\r\n");
819	return (NULL);
820}
821