fingerd.c revision 50476
1/*
2 * Copyright (c) 1983, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 *    must display the following acknowledgement:
15 *	This product includes software developed by the University of
16 *	California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 *    may be used to endorse or promote products derived from this software
19 *    without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34#ifndef lint
35static const char copyright[] =
36"@(#) Copyright (c) 1983, 1993\n\
37	The Regents of the University of California.  All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)fingerd.c	8.1 (Berkeley) 6/4/93";
43#endif
44static const char rcsid[] =
45  "$FreeBSD: head/libexec/fingerd/fingerd.c 50476 1999-08-28 00:22:10Z peter $";
46#endif /* not lint */
47
48#include <sys/param.h>
49#include <sys/socket.h>
50#include <netinet/in.h>
51#include <netinet/tcp.h>
52#include <arpa/inet.h>
53#include <errno.h>
54
55#include <unistd.h>
56#include <syslog.h>
57#include <netdb.h>
58#include <stdio.h>
59#include <stdlib.h>
60#include <strings.h>
61#include "pathnames.h"
62
63void logerr __P((const char *, ...));
64
65int
66main(argc, argv)
67	int argc;
68	char *argv[];
69{
70	register FILE *fp;
71	register int ch;
72	register char *lp;
73	struct sockaddr_in sin;
74	int p[2], logging, secure, sval;
75#define	ENTRIES	50
76	char **ap, *av[ENTRIES + 1], **comp, line[1024], *prog;
77	char rhost[MAXHOSTNAMELEN];
78
79	prog = _PATH_FINGER;
80	logging = secure = 0;
81	openlog("fingerd", LOG_PID | LOG_CONS, LOG_DAEMON);
82	opterr = 0;
83	while ((ch = getopt(argc, argv, "slp:")) != -1)
84		switch (ch) {
85		case 'l':
86			logging = 1;
87			break;
88		case 'p':
89			prog = optarg;
90			break;
91		case 's':
92			secure = 1;
93			break;
94		case '?':
95		default:
96			logerr("illegal option -- %c", optopt);
97		}
98
99	/*
100	 * Enable server-side Transaction TCP.
101	 */
102	{
103#if	!defined(__alpha__) /* XXX FIXME */
104		int one = 1;
105		if (setsockopt(STDOUT_FILENO, IPPROTO_TCP, TCP_NOPUSH, &one,
106			       sizeof one) < 0) {
107			logerr("setsockopt(TCP_NOPUSH) failed: %m");
108		}
109#endif
110	}
111
112	if (!fgets(line, sizeof(line), stdin))
113		exit(1);
114
115	if (logging) {
116		char *t;
117		char *end;
118
119		end = memchr(line, 0, sizeof(line));
120		if (end == NULL) {
121			t = malloc(sizeof(line) + 1);
122			memcpy(t, line, sizeof(line));
123			t[sizeof(line)] = 0;
124		} else {
125			t = strdup(line);
126		}
127		for (end = t; *end; end++)
128			if (*end == '\n' || *end == '\r')
129				*end = ' ';
130		sval = sizeof(sin);
131		if (getpeername(0, (struct sockaddr *)&sin, &sval) < 0)
132			logerr("getpeername: %s", strerror(errno));
133		realhostname(rhost, sizeof rhost - 1, &sin.sin_addr);
134		rhost[sizeof(rhost) - 1] = '\0';
135		syslog(LOG_NOTICE, "query from %s: `%s'", rhost, t);
136	}
137
138	comp = &av[1];
139	av[2] = "--";
140	for (lp = line, ap = &av[3];;) {
141		*ap = strtok(lp, " \t\r\n");
142		if (!*ap) {
143			if (secure && ap == &av[3]) {
144				puts("must provide username\r\n");
145				exit(1);
146			}
147			break;
148		}
149		if (secure && strchr(*ap, '@')) {
150			puts("forwarding service denied\r\n");
151			exit(1);
152		}
153
154		/* RFC742: "/[Ww]" == "-l" */
155		if ((*ap)[0] == '/' && ((*ap)[1] == 'W' || (*ap)[1] == 'w')) {
156			av[1] = "-l";
157			comp = &av[0];
158		}
159		else if (++ap == av + ENTRIES)
160			break;
161		lp = NULL;
162	}
163
164	if (lp = strrchr(prog, '/'))
165		*comp = ++lp;
166	else
167		*comp = prog;
168	if (pipe(p) < 0)
169		logerr("pipe: %s", strerror(errno));
170
171	switch(vfork()) {
172	case 0:
173		(void)close(p[0]);
174		if (p[1] != 1) {
175			(void)dup2(p[1], 1);
176			(void)close(p[1]);
177		}
178		execv(prog, comp);
179		logerr("execv: %s: %s", prog, strerror(errno));
180		_exit(1);
181	case -1:
182		logerr("fork: %s", strerror(errno));
183	}
184	(void)close(p[1]);
185	if (!(fp = fdopen(p[0], "r")))
186		logerr("fdopen: %s", strerror(errno));
187	while ((ch = getc(fp)) != EOF) {
188		if (ch == '\n')
189			putchar('\r');
190		putchar(ch);
191	}
192	exit(0);
193}
194
195#if __STDC__
196#include <stdarg.h>
197#else
198#include <varargs.h>
199#endif
200
201void
202#if __STDC__
203logerr(const char *fmt, ...)
204#else
205logerr(fmt, va_alist)
206	char *fmt;
207        va_dcl
208#endif
209{
210	va_list ap;
211#if __STDC__
212	va_start(ap, fmt);
213#else
214	va_start(ap);
215#endif
216	(void)vsyslog(LOG_ERR, fmt, ap);
217	va_end(ap);
218	exit(1);
219	/* NOTREACHED */
220}
221