9372 tcpd: this statement may fall through
[unleashed.git] / usr / src / cmd / tcpd / safe_finger.c
blobfcf4a22084d43b15e7376ff63fa0a291cc3f4574
1 /*
2 * safe_finger - finger client wrapper that protects against nasty stuff
3 * from finger servers. Use this program for automatic reverse finger
4 * probes, not the raw finger command.
5 *
6 * Build with: cc -o safe_finger safe_finger.c
7 *
8 * The problem: some programs may react to stuff in the first column. Other
9 * programs may get upset by thrash anywhere on a line. File systems may
10 * fill up as the finger server keeps sending data. Text editors may bomb
11 * out on extremely long lines. The finger server may take forever because
12 * it is somehow wedged. The code below takes care of all this badness.
14 * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
17 /* System libraries */
19 #include <sys/types.h>
20 #include <sys/stat.h>
21 #include <signal.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <ctype.h>
25 #include <pwd.h>
27 extern void exit();
29 /* Local stuff */
31 char path[] = "PATH=/bin:/usr/bin:/usr/ucb:/usr/bsd:/etc:/usr/etc:/usr/sbin";
33 #define TIME_LIMIT 60 /* Do not keep listinging forever */
34 #define INPUT_LENGTH 100000 /* Do not keep listinging forever */
35 #define LINE_LENGTH 128 /* Editors can choke on long lines */
36 #define FINGER_PROGRAM "finger" /* Most, if not all, UNIX systems */
37 #define UNPRIV_NAME "nobody" /* Preferred privilege level */
38 #define UNPRIV_UGID 32767 /* Default uid and gid */
40 void perror_exit(char *text) __NORETURN;
41 int finger_pid;
43 void cleanup(sig)
44 int sig;
46 kill(finger_pid, SIGKILL);
47 exit(0);
50 int
51 main(argc, argv)
52 int argc;
53 char **argv;
55 int c;
56 int line_length = 0;
57 int finger_status;
58 int wait_pid;
59 int input_count = 0;
60 struct passwd *pwd;
63 * First of all, let's don't run with superuser privileges.
65 if (getuid() == 0 || geteuid() == 0) {
66 if ((pwd = getpwnam(UNPRIV_NAME)) && pwd->pw_uid > 0) {
67 setgid(pwd->pw_gid);
68 setuid(pwd->pw_uid);
69 } else {
70 setgid(UNPRIV_UGID);
71 setuid(UNPRIV_UGID);
76 * Redirect our standard input through the raw finger command.
78 if (putenv(path)) {
79 fprintf(stderr, "%s: putenv: out of memory", argv[0]);
80 exit(1);
82 argv[0] = FINGER_PROGRAM;
83 finger_pid = pipe_stdin(argv);
86 * Don't wait forever (Peter Wemm <peter@gecko.DIALix.oz.au>).
88 signal(SIGALRM, cleanup);
89 (void) alarm(TIME_LIMIT);
92 * Main filter loop.
94 while ((c = getchar()) != EOF) {
95 if (input_count++ >= INPUT_LENGTH) { /* don't listen forever */
96 fclose(stdin);
97 printf("\n\n Input truncated to %d bytes...\n", input_count - 1);
98 break;
100 if (c == '\n') { /* good: end of line */
101 putchar(c);
102 line_length = 0;
103 } else {
104 if (line_length >= LINE_LENGTH) { /* force end of line */
105 printf("\\\n");
106 line_length = 0;
108 if (line_length == 0) { /* protect left margin */
109 putchar(' ');
110 line_length++;
112 if (isascii(c) && (isprint(c) || isspace(c))) { /* text */
113 if (c == '\\') {
114 putchar(c);
115 line_length++;
117 putchar(c);
118 line_length++;
119 } else { /* quote all other thash */
120 printf("\\%03o", c & 0377);
121 line_length += 4;
127 * Wait until the finger child process has terminated and account for its
128 * exit status. Which will always be zero on most systems.
130 while ((wait_pid = wait(&finger_status)) != -1 && wait_pid != finger_pid)
131 /* void */ ;
132 return (wait_pid != finger_pid || finger_status != 0);
135 /* perror_exit - report system error text and terminate */
137 void
138 perror_exit(char *text)
140 perror(text);
141 exit(1);
144 /* pipe_stdin - pipe stdin through program (from my ANSI to OLD C converter) */
146 int pipe_stdin(argv)
147 char **argv;
149 int pipefds[2];
150 int pid;
151 int i;
152 struct stat st;
155 * The code that sets up the pipe requires that file descriptors 0,1,2
156 * are already open. All kinds of mysterious things will happen if that
157 * is not the case. The following loops makes sure that descriptors 0,1,2
158 * are set up properly.
161 for (i = 0; i < 3; i++) {
162 if (fstat(i, &st) == -1 && open("/dev/null", 2) != i)
163 perror_exit("open /dev/null");
167 * Set up the pipe that interposes the command into our standard input
168 * stream.
171 if (pipe(pipefds))
172 perror_exit("pipe");
174 switch (pid = fork()) {
175 case -1: /* error */
176 perror_exit("fork");
177 /* NOTREACHED */
178 case 0: /* child */
179 (void) close(pipefds[0]); /* close reading end */
180 (void) close(1); /* connect stdout to pipe */
181 if (dup(pipefds[1]) != 1)
182 perror_exit("dup");
183 (void) close(pipefds[1]); /* close redundant fd */
184 (void) execvp(argv[0], argv);
185 perror_exit(argv[0]);
186 /* NOTREACHED */
187 default: /* parent */
188 (void) close(pipefds[1]); /* close writing end */
189 (void) close(0); /* connect stdin to pipe */
190 if (dup(pipefds[0]) != 0)
191 perror_exit("dup");
192 (void) close(pipefds[0]); /* close redundant fd */
193 return (pid);