ftpd.c revision 1.1 1 1.1 cgd /*
2 1.1 cgd * Copyright (c) 1985, 1988, 1990 Regents of the University of California.
3 1.1 cgd * All rights reserved.
4 1.1 cgd *
5 1.1 cgd * Redistribution and use in source and binary forms, with or without
6 1.1 cgd * modification, are permitted provided that the following conditions
7 1.1 cgd * are met:
8 1.1 cgd * 1. Redistributions of source code must retain the above copyright
9 1.1 cgd * notice, this list of conditions and the following disclaimer.
10 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer in the
12 1.1 cgd * documentation and/or other materials provided with the distribution.
13 1.1 cgd * 3. All advertising materials mentioning features or use of this software
14 1.1 cgd * must display the following acknowledgement:
15 1.1 cgd * This product includes software developed by the University of
16 1.1 cgd * California, Berkeley and its contributors.
17 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
18 1.1 cgd * may be used to endorse or promote products derived from this software
19 1.1 cgd * without specific prior written permission.
20 1.1 cgd *
21 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.1 cgd * SUCH DAMAGE.
32 1.1 cgd */
33 1.1 cgd
34 1.1 cgd #ifndef lint
35 1.1 cgd char copyright[] =
36 1.1 cgd "@(#) Copyright (c) 1985, 1988, 1990 Regents of the University of California.\n\
37 1.1 cgd All rights reserved.\n";
38 1.1 cgd #endif /* not lint */
39 1.1 cgd
40 1.1 cgd #ifndef lint
41 1.1 cgd static char sccsid[] = "@(#)ftpd.c 5.40 (Berkeley) 7/2/91";
42 1.1 cgd #endif /* not lint */
43 1.1 cgd
44 1.1 cgd /*
45 1.1 cgd * FTP server.
46 1.1 cgd */
47 1.1 cgd #include <sys/param.h>
48 1.1 cgd #include <sys/stat.h>
49 1.1 cgd #include <sys/ioctl.h>
50 1.1 cgd #include <sys/socket.h>
51 1.1 cgd #include <sys/wait.h>
52 1.1 cgd
53 1.1 cgd #include <netinet/in.h>
54 1.1 cgd #include <netinet/in_systm.h>
55 1.1 cgd #include <netinet/ip.h>
56 1.1 cgd
57 1.1 cgd #define FTP_NAMES
58 1.1 cgd #include <arpa/ftp.h>
59 1.1 cgd #include <arpa/inet.h>
60 1.1 cgd #include <arpa/telnet.h>
61 1.1 cgd
62 1.1 cgd #include <signal.h>
63 1.1 cgd #include <dirent.h>
64 1.1 cgd #include <fcntl.h>
65 1.1 cgd #include <time.h>
66 1.1 cgd #include <pwd.h>
67 1.1 cgd #include <setjmp.h>
68 1.1 cgd #include <netdb.h>
69 1.1 cgd #include <errno.h>
70 1.1 cgd #include <syslog.h>
71 1.1 cgd #include <varargs.h>
72 1.1 cgd #include <unistd.h>
73 1.1 cgd #include <stdio.h>
74 1.1 cgd #include <ctype.h>
75 1.1 cgd #include <stdlib.h>
76 1.1 cgd #include <string.h>
77 1.1 cgd #include "pathnames.h"
78 1.1 cgd
79 1.1 cgd /*
80 1.1 cgd * File containing login names
81 1.1 cgd * NOT to be used on this machine.
82 1.1 cgd * Commonly used to disallow uucp.
83 1.1 cgd */
84 1.1 cgd extern int errno;
85 1.1 cgd extern char *crypt();
86 1.1 cgd extern char version[];
87 1.1 cgd extern char *home; /* pointer to home directory for glob */
88 1.1 cgd extern FILE *ftpd_popen(), *fopen(), *freopen();
89 1.1 cgd extern int ftpd_pclose(), fclose();
90 1.1 cgd extern char *getline();
91 1.1 cgd extern char cbuf[];
92 1.1 cgd extern off_t restart_point;
93 1.1 cgd
94 1.1 cgd struct sockaddr_in ctrl_addr;
95 1.1 cgd struct sockaddr_in data_source;
96 1.1 cgd struct sockaddr_in data_dest;
97 1.1 cgd struct sockaddr_in his_addr;
98 1.1 cgd struct sockaddr_in pasv_addr;
99 1.1 cgd
100 1.1 cgd int data;
101 1.1 cgd jmp_buf errcatch, urgcatch;
102 1.1 cgd int logged_in;
103 1.1 cgd struct passwd *pw;
104 1.1 cgd int debug;
105 1.1 cgd int timeout = 900; /* timeout after 15 minutes of inactivity */
106 1.1 cgd int maxtimeout = 7200;/* don't allow idle time to be set beyond 2 hours */
107 1.1 cgd int logging;
108 1.1 cgd int guest;
109 1.1 cgd int type;
110 1.1 cgd int form;
111 1.1 cgd int stru; /* avoid C keyword */
112 1.1 cgd int mode;
113 1.1 cgd int usedefault = 1; /* for data transfers */
114 1.1 cgd int pdata = -1; /* for passive mode */
115 1.1 cgd int transflag;
116 1.1 cgd off_t file_size;
117 1.1 cgd off_t byte_count;
118 1.1 cgd #if !defined(CMASK) || CMASK == 0
119 1.1 cgd #undef CMASK
120 1.1 cgd #define CMASK 027
121 1.1 cgd #endif
122 1.1 cgd int defumask = CMASK; /* default umask value */
123 1.1 cgd char tmpline[7];
124 1.1 cgd char hostname[MAXHOSTNAMELEN];
125 1.1 cgd char remotehost[MAXHOSTNAMELEN];
126 1.1 cgd
127 1.1 cgd /*
128 1.1 cgd * Timeout intervals for retrying connections
129 1.1 cgd * to hosts that don't accept PORT cmds. This
130 1.1 cgd * is a kludge, but given the problems with TCP...
131 1.1 cgd */
132 1.1 cgd #define SWAITMAX 90 /* wait at most 90 seconds */
133 1.1 cgd #define SWAITINT 5 /* interval between retries */
134 1.1 cgd
135 1.1 cgd int swaitmax = SWAITMAX;
136 1.1 cgd int swaitint = SWAITINT;
137 1.1 cgd
138 1.1 cgd void lostconn(), myoob();
139 1.1 cgd FILE *getdatasock(), *dataconn();
140 1.1 cgd
141 1.1 cgd #ifdef SETPROCTITLE
142 1.1 cgd char **Argv = NULL; /* pointer to argument vector */
143 1.1 cgd char *LastArgv = NULL; /* end of argv */
144 1.1 cgd char proctitle[BUFSIZ]; /* initial part of title */
145 1.1 cgd #endif /* SETPROCTITLE */
146 1.1 cgd
147 1.1 cgd main(argc, argv, envp)
148 1.1 cgd int argc;
149 1.1 cgd char *argv[];
150 1.1 cgd char **envp;
151 1.1 cgd {
152 1.1 cgd int addrlen, on = 1, tos;
153 1.1 cgd char *cp;
154 1.1 cgd
155 1.1 cgd /*
156 1.1 cgd * LOG_NDELAY sets up the logging connection immediately,
157 1.1 cgd * necessary for anonymous ftp's that chroot and can't do it later.
158 1.1 cgd */
159 1.1 cgd openlog("ftpd", LOG_PID | LOG_NDELAY, LOG_DAEMON);
160 1.1 cgd addrlen = sizeof (his_addr);
161 1.1 cgd if (getpeername(0, (struct sockaddr *)&his_addr, &addrlen) < 0) {
162 1.1 cgd syslog(LOG_ERR, "getpeername (%s): %m",argv[0]);
163 1.1 cgd exit(1);
164 1.1 cgd }
165 1.1 cgd addrlen = sizeof (ctrl_addr);
166 1.1 cgd if (getsockname(0, (struct sockaddr *)&ctrl_addr, &addrlen) < 0) {
167 1.1 cgd syslog(LOG_ERR, "getsockname (%s): %m",argv[0]);
168 1.1 cgd exit(1);
169 1.1 cgd }
170 1.1 cgd #ifdef IP_TOS
171 1.1 cgd tos = IPTOS_LOWDELAY;
172 1.1 cgd if (setsockopt(0, IPPROTO_IP, IP_TOS, (char *)&tos, sizeof(int)) < 0)
173 1.1 cgd syslog(LOG_WARNING, "setsockopt (IP_TOS): %m");
174 1.1 cgd #endif
175 1.1 cgd data_source.sin_port = htons(ntohs(ctrl_addr.sin_port) - 1);
176 1.1 cgd debug = 0;
177 1.1 cgd #ifdef SETPROCTITLE
178 1.1 cgd /*
179 1.1 cgd * Save start and extent of argv for setproctitle.
180 1.1 cgd */
181 1.1 cgd Argv = argv;
182 1.1 cgd while (*envp)
183 1.1 cgd envp++;
184 1.1 cgd LastArgv = envp[-1] + strlen(envp[-1]);
185 1.1 cgd #endif /* SETPROCTITLE */
186 1.1 cgd
187 1.1 cgd argc--, argv++;
188 1.1 cgd while (argc > 0 && *argv[0] == '-') {
189 1.1 cgd for (cp = &argv[0][1]; *cp; cp++) switch (*cp) {
190 1.1 cgd
191 1.1 cgd case 'v':
192 1.1 cgd debug = 1;
193 1.1 cgd break;
194 1.1 cgd
195 1.1 cgd case 'd':
196 1.1 cgd debug = 1;
197 1.1 cgd break;
198 1.1 cgd
199 1.1 cgd case 'l':
200 1.1 cgd logging = 1;
201 1.1 cgd break;
202 1.1 cgd
203 1.1 cgd case 't':
204 1.1 cgd timeout = atoi(++cp);
205 1.1 cgd if (maxtimeout < timeout)
206 1.1 cgd maxtimeout = timeout;
207 1.1 cgd goto nextopt;
208 1.1 cgd
209 1.1 cgd case 'T':
210 1.1 cgd maxtimeout = atoi(++cp);
211 1.1 cgd if (timeout > maxtimeout)
212 1.1 cgd timeout = maxtimeout;
213 1.1 cgd goto nextopt;
214 1.1 cgd
215 1.1 cgd case 'u':
216 1.1 cgd {
217 1.1 cgd int val = 0;
218 1.1 cgd
219 1.1 cgd while (*++cp && *cp >= '0' && *cp <= '9')
220 1.1 cgd val = val*8 + *cp - '0';
221 1.1 cgd if (*cp)
222 1.1 cgd fprintf(stderr, "ftpd: Bad value for -u\n");
223 1.1 cgd else
224 1.1 cgd defumask = val;
225 1.1 cgd goto nextopt;
226 1.1 cgd }
227 1.1 cgd
228 1.1 cgd default:
229 1.1 cgd fprintf(stderr, "ftpd: Unknown flag -%c ignored.\n",
230 1.1 cgd *cp);
231 1.1 cgd break;
232 1.1 cgd }
233 1.1 cgd nextopt:
234 1.1 cgd argc--, argv++;
235 1.1 cgd }
236 1.1 cgd (void) freopen(_PATH_DEVNULL, "w", stderr);
237 1.1 cgd (void) signal(SIGPIPE, lostconn);
238 1.1 cgd (void) signal(SIGCHLD, SIG_IGN);
239 1.1 cgd if ((int)signal(SIGURG, myoob) < 0)
240 1.1 cgd syslog(LOG_ERR, "signal: %m");
241 1.1 cgd
242 1.1 cgd /* Try to handle urgent data inline */
243 1.1 cgd #ifdef SO_OOBINLINE
244 1.1 cgd if (setsockopt(0, SOL_SOCKET, SO_OOBINLINE, (char *)&on, sizeof(on)) < 0)
245 1.1 cgd syslog(LOG_ERR, "setsockopt: %m");
246 1.1 cgd #endif
247 1.1 cgd
248 1.1 cgd #ifdef F_SETOWN
249 1.1 cgd if (fcntl(fileno(stdin), F_SETOWN, getpid()) == -1)
250 1.1 cgd syslog(LOG_ERR, "fcntl F_SETOWN: %m");
251 1.1 cgd #endif
252 1.1 cgd dolog(&his_addr);
253 1.1 cgd /*
254 1.1 cgd * Set up default state
255 1.1 cgd */
256 1.1 cgd data = -1;
257 1.1 cgd type = TYPE_A;
258 1.1 cgd form = FORM_N;
259 1.1 cgd stru = STRU_F;
260 1.1 cgd mode = MODE_S;
261 1.1 cgd tmpline[0] = '\0';
262 1.1 cgd (void) gethostname(hostname, sizeof (hostname));
263 1.1 cgd reply(220, "%s FTP server (%s) ready.", hostname, version);
264 1.1 cgd (void) setjmp(errcatch);
265 1.1 cgd for (;;)
266 1.1 cgd (void) yyparse();
267 1.1 cgd /* NOTREACHED */
268 1.1 cgd }
269 1.1 cgd
270 1.1 cgd void
271 1.1 cgd lostconn()
272 1.1 cgd {
273 1.1 cgd if (debug)
274 1.1 cgd syslog(LOG_DEBUG, "lost connection");
275 1.1 cgd dologout(-1);
276 1.1 cgd }
277 1.1 cgd
278 1.1 cgd static char ttyline[20];
279 1.1 cgd
280 1.1 cgd /*
281 1.1 cgd * Helper function for sgetpwnam().
282 1.1 cgd */
283 1.1 cgd char *
284 1.1 cgd sgetsave(s)
285 1.1 cgd char *s;
286 1.1 cgd {
287 1.1 cgd char *new = malloc((unsigned) strlen(s) + 1);
288 1.1 cgd
289 1.1 cgd if (new == NULL) {
290 1.1 cgd perror_reply(421, "Local resource failure: malloc");
291 1.1 cgd dologout(1);
292 1.1 cgd /* NOTREACHED */
293 1.1 cgd }
294 1.1 cgd (void) strcpy(new, s);
295 1.1 cgd return (new);
296 1.1 cgd }
297 1.1 cgd
298 1.1 cgd /*
299 1.1 cgd * Save the result of a getpwnam. Used for USER command, since
300 1.1 cgd * the data returned must not be clobbered by any other command
301 1.1 cgd * (e.g., globbing).
302 1.1 cgd */
303 1.1 cgd struct passwd *
304 1.1 cgd sgetpwnam(name)
305 1.1 cgd char *name;
306 1.1 cgd {
307 1.1 cgd static struct passwd save;
308 1.1 cgd register struct passwd *p;
309 1.1 cgd char *sgetsave();
310 1.1 cgd
311 1.1 cgd if ((p = getpwnam(name)) == NULL)
312 1.1 cgd return (p);
313 1.1 cgd if (save.pw_name) {
314 1.1 cgd free(save.pw_name);
315 1.1 cgd free(save.pw_passwd);
316 1.1 cgd free(save.pw_gecos);
317 1.1 cgd free(save.pw_dir);
318 1.1 cgd free(save.pw_shell);
319 1.1 cgd }
320 1.1 cgd save = *p;
321 1.1 cgd save.pw_name = sgetsave(p->pw_name);
322 1.1 cgd save.pw_passwd = sgetsave(p->pw_passwd);
323 1.1 cgd save.pw_gecos = sgetsave(p->pw_gecos);
324 1.1 cgd save.pw_dir = sgetsave(p->pw_dir);
325 1.1 cgd save.pw_shell = sgetsave(p->pw_shell);
326 1.1 cgd return (&save);
327 1.1 cgd }
328 1.1 cgd
329 1.1 cgd int login_attempts; /* number of failed login attempts */
330 1.1 cgd int askpasswd; /* had user command, ask for passwd */
331 1.1 cgd
332 1.1 cgd /*
333 1.1 cgd * USER command.
334 1.1 cgd * Sets global passwd pointer pw if named account exists and is acceptable;
335 1.1 cgd * sets askpasswd if a PASS command is expected. If logged in previously,
336 1.1 cgd * need to reset state. If name is "ftp" or "anonymous", the name is not in
337 1.1 cgd * _PATH_FTPUSERS, and ftp account exists, set guest and pw, then just return.
338 1.1 cgd * If account doesn't exist, ask for passwd anyway. Otherwise, check user
339 1.1 cgd * requesting login privileges. Disallow anyone who does not have a standard
340 1.1 cgd * shell as returned by getusershell(). Disallow anyone mentioned in the file
341 1.1 cgd * _PATH_FTPUSERS to allow people such as root and uucp to be avoided.
342 1.1 cgd */
343 1.1 cgd user(name)
344 1.1 cgd char *name;
345 1.1 cgd {
346 1.1 cgd register char *cp;
347 1.1 cgd char *shell;
348 1.1 cgd char *getusershell();
349 1.1 cgd
350 1.1 cgd if (logged_in) {
351 1.1 cgd if (guest) {
352 1.1 cgd reply(530, "Can't change user from guest login.");
353 1.1 cgd return;
354 1.1 cgd }
355 1.1 cgd end_login();
356 1.1 cgd }
357 1.1 cgd
358 1.1 cgd guest = 0;
359 1.1 cgd if (strcmp(name, "ftp") == 0 || strcmp(name, "anonymous") == 0) {
360 1.1 cgd if (checkuser("ftp") || checkuser("anonymous"))
361 1.1 cgd reply(530, "User %s access denied.", name);
362 1.1 cgd else if ((pw = sgetpwnam("ftp")) != NULL) {
363 1.1 cgd guest = 1;
364 1.1 cgd askpasswd = 1;
365 1.1 cgd reply(331, "Guest login ok, send ident as password.");
366 1.1 cgd } else
367 1.1 cgd reply(530, "User %s unknown.", name);
368 1.1 cgd return;
369 1.1 cgd }
370 1.1 cgd if (pw = sgetpwnam(name)) {
371 1.1 cgd if ((shell = pw->pw_shell) == NULL || *shell == 0)
372 1.1 cgd shell = _PATH_BSHELL;
373 1.1 cgd while ((cp = getusershell()) != NULL)
374 1.1 cgd if (strcmp(cp, shell) == 0)
375 1.1 cgd break;
376 1.1 cgd endusershell();
377 1.1 cgd if (cp == NULL || checkuser(name)) {
378 1.1 cgd reply(530, "User %s access denied.", name);
379 1.1 cgd if (logging)
380 1.1 cgd syslog(LOG_NOTICE,
381 1.1 cgd "FTP LOGIN REFUSED FROM %s, %s",
382 1.1 cgd remotehost, name);
383 1.1 cgd pw = (struct passwd *) NULL;
384 1.1 cgd return;
385 1.1 cgd }
386 1.1 cgd }
387 1.1 cgd reply(331, "Password required for %s.", name);
388 1.1 cgd askpasswd = 1;
389 1.1 cgd /*
390 1.1 cgd * Delay before reading passwd after first failed
391 1.1 cgd * attempt to slow down passwd-guessing programs.
392 1.1 cgd */
393 1.1 cgd if (login_attempts)
394 1.1 cgd sleep((unsigned) login_attempts);
395 1.1 cgd }
396 1.1 cgd
397 1.1 cgd /*
398 1.1 cgd * Check if a user is in the file _PATH_FTPUSERS
399 1.1 cgd */
400 1.1 cgd checkuser(name)
401 1.1 cgd char *name;
402 1.1 cgd {
403 1.1 cgd register FILE *fd;
404 1.1 cgd register char *p;
405 1.1 cgd char line[BUFSIZ];
406 1.1 cgd
407 1.1 cgd if ((fd = fopen(_PATH_FTPUSERS, "r")) != NULL) {
408 1.1 cgd while (fgets(line, sizeof(line), fd) != NULL)
409 1.1 cgd if ((p = index(line, '\n')) != NULL) {
410 1.1 cgd *p = '\0';
411 1.1 cgd if (line[0] == '#')
412 1.1 cgd continue;
413 1.1 cgd if (strcmp(line, name) == 0)
414 1.1 cgd return (1);
415 1.1 cgd }
416 1.1 cgd (void) fclose(fd);
417 1.1 cgd }
418 1.1 cgd return (0);
419 1.1 cgd }
420 1.1 cgd
421 1.1 cgd /*
422 1.1 cgd * Terminate login as previous user, if any, resetting state;
423 1.1 cgd * used when USER command is given or login fails.
424 1.1 cgd */
425 1.1 cgd end_login()
426 1.1 cgd {
427 1.1 cgd
428 1.1 cgd (void) seteuid((uid_t)0);
429 1.1 cgd if (logged_in)
430 1.1 cgd logwtmp(ttyline, "", "");
431 1.1 cgd pw = NULL;
432 1.1 cgd logged_in = 0;
433 1.1 cgd guest = 0;
434 1.1 cgd }
435 1.1 cgd
436 1.1 cgd pass(passwd)
437 1.1 cgd char *passwd;
438 1.1 cgd {
439 1.1 cgd char *xpasswd, *salt;
440 1.1 cgd
441 1.1 cgd if (logged_in || askpasswd == 0) {
442 1.1 cgd reply(503, "Login with USER first.");
443 1.1 cgd return;
444 1.1 cgd }
445 1.1 cgd askpasswd = 0;
446 1.1 cgd if (!guest) { /* "ftp" is only account allowed no password */
447 1.1 cgd if (pw == NULL)
448 1.1 cgd salt = "xx";
449 1.1 cgd else
450 1.1 cgd salt = pw->pw_passwd;
451 1.1 cgd #ifdef DES
452 1.1 cgd xpasswd = crypt(passwd, salt);
453 1.1 cgd #else
454 1.1 cgd xpasswd = passwd;
455 1.1 cgd #endif
456 1.1 cgd /* The strcmp does not catch null passwords! */
457 1.1 cgd if (pw == NULL || *pw->pw_passwd == '\0' ||
458 1.1 cgd strcmp(xpasswd, pw->pw_passwd)) {
459 1.1 cgd reply(530, "Login incorrect.");
460 1.1 cgd pw = NULL;
461 1.1 cgd if (login_attempts++ >= 5) {
462 1.1 cgd syslog(LOG_NOTICE,
463 1.1 cgd "repeated login failures from %s",
464 1.1 cgd remotehost);
465 1.1 cgd exit(0);
466 1.1 cgd }
467 1.1 cgd return;
468 1.1 cgd }
469 1.1 cgd }
470 1.1 cgd login_attempts = 0; /* this time successful */
471 1.1 cgd (void) setegid((gid_t)pw->pw_gid);
472 1.1 cgd (void) initgroups(pw->pw_name, pw->pw_gid);
473 1.1 cgd
474 1.1 cgd /* open wtmp before chroot */
475 1.1 cgd (void)sprintf(ttyline, "ftp%d", getpid());
476 1.1 cgd logwtmp(ttyline, pw->pw_name, remotehost);
477 1.1 cgd logged_in = 1;
478 1.1 cgd
479 1.1 cgd if (guest) {
480 1.1 cgd /*
481 1.1 cgd * We MUST do a chdir() after the chroot. Otherwise
482 1.1 cgd * the old current directory will be accessible as "."
483 1.1 cgd * outside the new root!
484 1.1 cgd */
485 1.1 cgd if (chroot(pw->pw_dir) < 0 || chdir("/") < 0) {
486 1.1 cgd reply(550, "Can't set guest privileges.");
487 1.1 cgd goto bad;
488 1.1 cgd }
489 1.1 cgd } else if (chdir(pw->pw_dir) < 0) {
490 1.1 cgd if (chdir("/") < 0) {
491 1.1 cgd reply(530, "User %s: can't change directory to %s.",
492 1.1 cgd pw->pw_name, pw->pw_dir);
493 1.1 cgd goto bad;
494 1.1 cgd } else
495 1.1 cgd lreply(230, "No directory! Logging in with home=/");
496 1.1 cgd }
497 1.1 cgd if (seteuid((uid_t)pw->pw_uid) < 0) {
498 1.1 cgd reply(550, "Can't set uid.");
499 1.1 cgd goto bad;
500 1.1 cgd }
501 1.1 cgd if (guest) {
502 1.1 cgd reply(230, "Guest login ok, access restrictions apply.");
503 1.1 cgd #ifdef SETPROCTITLE
504 1.1 cgd sprintf(proctitle, "%s: anonymous/%.*s", remotehost,
505 1.1 cgd sizeof(proctitle) - sizeof(remotehost) -
506 1.1 cgd sizeof(": anonymous/"), passwd);
507 1.1 cgd setproctitle(proctitle);
508 1.1 cgd #endif /* SETPROCTITLE */
509 1.1 cgd if (logging)
510 1.1 cgd syslog(LOG_INFO, "ANONYMOUS FTP LOGIN FROM %s, %s",
511 1.1 cgd remotehost, passwd);
512 1.1 cgd } else {
513 1.1 cgd reply(230, "User %s logged in.", pw->pw_name);
514 1.1 cgd #ifdef SETPROCTITLE
515 1.1 cgd sprintf(proctitle, "%s: %s", remotehost, pw->pw_name);
516 1.1 cgd setproctitle(proctitle);
517 1.1 cgd #endif /* SETPROCTITLE */
518 1.1 cgd if (logging)
519 1.1 cgd syslog(LOG_INFO, "FTP LOGIN FROM %s, %s",
520 1.1 cgd remotehost, pw->pw_name);
521 1.1 cgd }
522 1.1 cgd home = pw->pw_dir; /* home dir for globbing */
523 1.1 cgd (void) umask(defumask);
524 1.1 cgd return;
525 1.1 cgd bad:
526 1.1 cgd /* Forget all about it... */
527 1.1 cgd end_login();
528 1.1 cgd }
529 1.1 cgd
530 1.1 cgd retrieve(cmd, name)
531 1.1 cgd char *cmd, *name;
532 1.1 cgd {
533 1.1 cgd FILE *fin, *dout;
534 1.1 cgd struct stat st;
535 1.1 cgd int (*closefunc)();
536 1.1 cgd
537 1.1 cgd if (cmd == 0) {
538 1.1 cgd fin = fopen(name, "r"), closefunc = fclose;
539 1.1 cgd st.st_size = 0;
540 1.1 cgd } else {
541 1.1 cgd char line[BUFSIZ];
542 1.1 cgd
543 1.1 cgd (void) sprintf(line, cmd, name), name = line;
544 1.1 cgd fin = ftpd_popen(line, "r"), closefunc = ftpd_pclose;
545 1.1 cgd st.st_size = -1;
546 1.1 cgd st.st_blksize = BUFSIZ;
547 1.1 cgd }
548 1.1 cgd if (fin == NULL) {
549 1.1 cgd if (errno != 0)
550 1.1 cgd perror_reply(550, name);
551 1.1 cgd return;
552 1.1 cgd }
553 1.1 cgd if (cmd == 0 &&
554 1.1 cgd (fstat(fileno(fin), &st) < 0 || (st.st_mode&S_IFMT) != S_IFREG)) {
555 1.1 cgd reply(550, "%s: not a plain file.", name);
556 1.1 cgd goto done;
557 1.1 cgd }
558 1.1 cgd if (restart_point) {
559 1.1 cgd if (type == TYPE_A) {
560 1.1 cgd register int i, n, c;
561 1.1 cgd
562 1.1 cgd n = restart_point;
563 1.1 cgd i = 0;
564 1.1 cgd while (i++ < n) {
565 1.1 cgd if ((c=getc(fin)) == EOF) {
566 1.1 cgd perror_reply(550, name);
567 1.1 cgd goto done;
568 1.1 cgd }
569 1.1 cgd if (c == '\n')
570 1.1 cgd i++;
571 1.1 cgd }
572 1.1 cgd } else if (lseek(fileno(fin), restart_point, L_SET) < 0) {
573 1.1 cgd perror_reply(550, name);
574 1.1 cgd goto done;
575 1.1 cgd }
576 1.1 cgd }
577 1.1 cgd dout = dataconn(name, st.st_size, "w");
578 1.1 cgd if (dout == NULL)
579 1.1 cgd goto done;
580 1.1 cgd send_data(fin, dout, st.st_blksize);
581 1.1 cgd (void) fclose(dout);
582 1.1 cgd data = -1;
583 1.1 cgd pdata = -1;
584 1.1 cgd done:
585 1.1 cgd (*closefunc)(fin);
586 1.1 cgd }
587 1.1 cgd
588 1.1 cgd store(name, mode, unique)
589 1.1 cgd char *name, *mode;
590 1.1 cgd int unique;
591 1.1 cgd {
592 1.1 cgd FILE *fout, *din;
593 1.1 cgd struct stat st;
594 1.1 cgd int (*closefunc)();
595 1.1 cgd char *gunique();
596 1.1 cgd
597 1.1 cgd if (unique && stat(name, &st) == 0 &&
598 1.1 cgd (name = gunique(name)) == NULL)
599 1.1 cgd return;
600 1.1 cgd
601 1.1 cgd if (restart_point)
602 1.1 cgd mode = "r+w";
603 1.1 cgd fout = fopen(name, mode);
604 1.1 cgd closefunc = fclose;
605 1.1 cgd if (fout == NULL) {
606 1.1 cgd perror_reply(553, name);
607 1.1 cgd return;
608 1.1 cgd }
609 1.1 cgd if (restart_point) {
610 1.1 cgd if (type == TYPE_A) {
611 1.1 cgd register int i, n, c;
612 1.1 cgd
613 1.1 cgd n = restart_point;
614 1.1 cgd i = 0;
615 1.1 cgd while (i++ < n) {
616 1.1 cgd if ((c=getc(fout)) == EOF) {
617 1.1 cgd perror_reply(550, name);
618 1.1 cgd goto done;
619 1.1 cgd }
620 1.1 cgd if (c == '\n')
621 1.1 cgd i++;
622 1.1 cgd }
623 1.1 cgd /*
624 1.1 cgd * We must do this seek to "current" position
625 1.1 cgd * because we are changing from reading to
626 1.1 cgd * writing.
627 1.1 cgd */
628 1.1 cgd if (fseek(fout, 0L, L_INCR) < 0) {
629 1.1 cgd perror_reply(550, name);
630 1.1 cgd goto done;
631 1.1 cgd }
632 1.1 cgd } else if (lseek(fileno(fout), restart_point, L_SET) < 0) {
633 1.1 cgd perror_reply(550, name);
634 1.1 cgd goto done;
635 1.1 cgd }
636 1.1 cgd }
637 1.1 cgd din = dataconn(name, (off_t)-1, "r");
638 1.1 cgd if (din == NULL)
639 1.1 cgd goto done;
640 1.1 cgd if (receive_data(din, fout) == 0) {
641 1.1 cgd if (unique)
642 1.1 cgd reply(226, "Transfer complete (unique file name:%s).",
643 1.1 cgd name);
644 1.1 cgd else
645 1.1 cgd reply(226, "Transfer complete.");
646 1.1 cgd }
647 1.1 cgd (void) fclose(din);
648 1.1 cgd data = -1;
649 1.1 cgd pdata = -1;
650 1.1 cgd done:
651 1.1 cgd (*closefunc)(fout);
652 1.1 cgd }
653 1.1 cgd
654 1.1 cgd FILE *
655 1.1 cgd getdatasock(mode)
656 1.1 cgd char *mode;
657 1.1 cgd {
658 1.1 cgd int s, on = 1, tries;
659 1.1 cgd
660 1.1 cgd if (data >= 0)
661 1.1 cgd return (fdopen(data, mode));
662 1.1 cgd (void) seteuid((uid_t)0);
663 1.1 cgd s = socket(AF_INET, SOCK_STREAM, 0);
664 1.1 cgd if (s < 0)
665 1.1 cgd goto bad;
666 1.1 cgd if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
667 1.1 cgd (char *) &on, sizeof (on)) < 0)
668 1.1 cgd goto bad;
669 1.1 cgd /* anchor socket to avoid multi-homing problems */
670 1.1 cgd data_source.sin_family = AF_INET;
671 1.1 cgd data_source.sin_addr = ctrl_addr.sin_addr;
672 1.1 cgd for (tries = 1; ; tries++) {
673 1.1 cgd if (bind(s, (struct sockaddr *)&data_source,
674 1.1 cgd sizeof (data_source)) >= 0)
675 1.1 cgd break;
676 1.1 cgd if (errno != EADDRINUSE || tries > 10)
677 1.1 cgd goto bad;
678 1.1 cgd sleep(tries);
679 1.1 cgd }
680 1.1 cgd (void) seteuid((uid_t)pw->pw_uid);
681 1.1 cgd #ifdef IP_TOS
682 1.1 cgd on = IPTOS_THROUGHPUT;
683 1.1 cgd if (setsockopt(s, IPPROTO_IP, IP_TOS, (char *)&on, sizeof(int)) < 0)
684 1.1 cgd syslog(LOG_WARNING, "setsockopt (IP_TOS): %m");
685 1.1 cgd #endif
686 1.1 cgd return (fdopen(s, mode));
687 1.1 cgd bad:
688 1.1 cgd (void) seteuid((uid_t)pw->pw_uid);
689 1.1 cgd (void) close(s);
690 1.1 cgd return (NULL);
691 1.1 cgd }
692 1.1 cgd
693 1.1 cgd FILE *
694 1.1 cgd dataconn(name, size, mode)
695 1.1 cgd char *name;
696 1.1 cgd off_t size;
697 1.1 cgd char *mode;
698 1.1 cgd {
699 1.1 cgd char sizebuf[32];
700 1.1 cgd FILE *file;
701 1.1 cgd int retry = 0, tos;
702 1.1 cgd
703 1.1 cgd file_size = size;
704 1.1 cgd byte_count = 0;
705 1.1 cgd if (size != (off_t) -1)
706 1.1 cgd (void) sprintf (sizebuf, " (%ld bytes)", size);
707 1.1 cgd else
708 1.1 cgd (void) strcpy(sizebuf, "");
709 1.1 cgd if (pdata >= 0) {
710 1.1 cgd struct sockaddr_in from;
711 1.1 cgd int s, fromlen = sizeof(from);
712 1.1 cgd
713 1.1 cgd s = accept(pdata, (struct sockaddr *)&from, &fromlen);
714 1.1 cgd if (s < 0) {
715 1.1 cgd reply(425, "Can't open data connection.");
716 1.1 cgd (void) close(pdata);
717 1.1 cgd pdata = -1;
718 1.1 cgd return(NULL);
719 1.1 cgd }
720 1.1 cgd (void) close(pdata);
721 1.1 cgd pdata = s;
722 1.1 cgd #ifdef IP_TOS
723 1.1 cgd tos = IPTOS_LOWDELAY;
724 1.1 cgd (void) setsockopt(s, IPPROTO_IP, IP_TOS, (char *)&tos,
725 1.1 cgd sizeof(int));
726 1.1 cgd #endif
727 1.1 cgd reply(150, "Opening %s mode data connection for %s%s.",
728 1.1 cgd type == TYPE_A ? "ASCII" : "BINARY", name, sizebuf);
729 1.1 cgd return(fdopen(pdata, mode));
730 1.1 cgd }
731 1.1 cgd if (data >= 0) {
732 1.1 cgd reply(125, "Using existing data connection for %s%s.",
733 1.1 cgd name, sizebuf);
734 1.1 cgd usedefault = 1;
735 1.1 cgd return (fdopen(data, mode));
736 1.1 cgd }
737 1.1 cgd if (usedefault)
738 1.1 cgd data_dest = his_addr;
739 1.1 cgd usedefault = 1;
740 1.1 cgd file = getdatasock(mode);
741 1.1 cgd if (file == NULL) {
742 1.1 cgd reply(425, "Can't create data socket (%s,%d): %s.",
743 1.1 cgd inet_ntoa(data_source.sin_addr),
744 1.1 cgd ntohs(data_source.sin_port), strerror(errno));
745 1.1 cgd return (NULL);
746 1.1 cgd }
747 1.1 cgd data = fileno(file);
748 1.1 cgd while (connect(data, (struct sockaddr *)&data_dest,
749 1.1 cgd sizeof (data_dest)) < 0) {
750 1.1 cgd if (errno == EADDRINUSE && retry < swaitmax) {
751 1.1 cgd sleep((unsigned) swaitint);
752 1.1 cgd retry += swaitint;
753 1.1 cgd continue;
754 1.1 cgd }
755 1.1 cgd perror_reply(425, "Can't build data connection");
756 1.1 cgd (void) fclose(file);
757 1.1 cgd data = -1;
758 1.1 cgd return (NULL);
759 1.1 cgd }
760 1.1 cgd reply(150, "Opening %s mode data connection for %s%s.",
761 1.1 cgd type == TYPE_A ? "ASCII" : "BINARY", name, sizebuf);
762 1.1 cgd return (file);
763 1.1 cgd }
764 1.1 cgd
765 1.1 cgd /*
766 1.1 cgd * Tranfer the contents of "instr" to
767 1.1 cgd * "outstr" peer using the appropriate
768 1.1 cgd * encapsulation of the data subject
769 1.1 cgd * to Mode, Structure, and Type.
770 1.1 cgd *
771 1.1 cgd * NB: Form isn't handled.
772 1.1 cgd */
773 1.1 cgd send_data(instr, outstr, blksize)
774 1.1 cgd FILE *instr, *outstr;
775 1.1 cgd off_t blksize;
776 1.1 cgd {
777 1.1 cgd register int c, cnt;
778 1.1 cgd register char *buf;
779 1.1 cgd int netfd, filefd;
780 1.1 cgd
781 1.1 cgd transflag++;
782 1.1 cgd if (setjmp(urgcatch)) {
783 1.1 cgd transflag = 0;
784 1.1 cgd return;
785 1.1 cgd }
786 1.1 cgd switch (type) {
787 1.1 cgd
788 1.1 cgd case TYPE_A:
789 1.1 cgd while ((c = getc(instr)) != EOF) {
790 1.1 cgd byte_count++;
791 1.1 cgd if (c == '\n') {
792 1.1 cgd if (ferror(outstr))
793 1.1 cgd goto data_err;
794 1.1 cgd (void) putc('\r', outstr);
795 1.1 cgd }
796 1.1 cgd (void) putc(c, outstr);
797 1.1 cgd }
798 1.1 cgd fflush(outstr);
799 1.1 cgd transflag = 0;
800 1.1 cgd if (ferror(instr))
801 1.1 cgd goto file_err;
802 1.1 cgd if (ferror(outstr))
803 1.1 cgd goto data_err;
804 1.1 cgd reply(226, "Transfer complete.");
805 1.1 cgd return;
806 1.1 cgd
807 1.1 cgd case TYPE_I:
808 1.1 cgd case TYPE_L:
809 1.1 cgd if ((buf = malloc((u_int)blksize)) == NULL) {
810 1.1 cgd transflag = 0;
811 1.1 cgd perror_reply(451, "Local resource failure: malloc");
812 1.1 cgd return;
813 1.1 cgd }
814 1.1 cgd netfd = fileno(outstr);
815 1.1 cgd filefd = fileno(instr);
816 1.1 cgd while ((cnt = read(filefd, buf, (u_int)blksize)) > 0 &&
817 1.1 cgd write(netfd, buf, cnt) == cnt)
818 1.1 cgd byte_count += cnt;
819 1.1 cgd transflag = 0;
820 1.1 cgd (void)free(buf);
821 1.1 cgd if (cnt != 0) {
822 1.1 cgd if (cnt < 0)
823 1.1 cgd goto file_err;
824 1.1 cgd goto data_err;
825 1.1 cgd }
826 1.1 cgd reply(226, "Transfer complete.");
827 1.1 cgd return;
828 1.1 cgd default:
829 1.1 cgd transflag = 0;
830 1.1 cgd reply(550, "Unimplemented TYPE %d in send_data", type);
831 1.1 cgd return;
832 1.1 cgd }
833 1.1 cgd
834 1.1 cgd data_err:
835 1.1 cgd transflag = 0;
836 1.1 cgd perror_reply(426, "Data connection");
837 1.1 cgd return;
838 1.1 cgd
839 1.1 cgd file_err:
840 1.1 cgd transflag = 0;
841 1.1 cgd perror_reply(551, "Error on input file");
842 1.1 cgd }
843 1.1 cgd
844 1.1 cgd /*
845 1.1 cgd * Transfer data from peer to
846 1.1 cgd * "outstr" using the appropriate
847 1.1 cgd * encapulation of the data subject
848 1.1 cgd * to Mode, Structure, and Type.
849 1.1 cgd *
850 1.1 cgd * N.B.: Form isn't handled.
851 1.1 cgd */
852 1.1 cgd receive_data(instr, outstr)
853 1.1 cgd FILE *instr, *outstr;
854 1.1 cgd {
855 1.1 cgd register int c;
856 1.1 cgd int cnt, bare_lfs = 0;
857 1.1 cgd char buf[BUFSIZ];
858 1.1 cgd
859 1.1 cgd transflag++;
860 1.1 cgd if (setjmp(urgcatch)) {
861 1.1 cgd transflag = 0;
862 1.1 cgd return (-1);
863 1.1 cgd }
864 1.1 cgd switch (type) {
865 1.1 cgd
866 1.1 cgd case TYPE_I:
867 1.1 cgd case TYPE_L:
868 1.1 cgd while ((cnt = read(fileno(instr), buf, sizeof buf)) > 0) {
869 1.1 cgd if (write(fileno(outstr), buf, cnt) != cnt)
870 1.1 cgd goto file_err;
871 1.1 cgd byte_count += cnt;
872 1.1 cgd }
873 1.1 cgd if (cnt < 0)
874 1.1 cgd goto data_err;
875 1.1 cgd transflag = 0;
876 1.1 cgd return (0);
877 1.1 cgd
878 1.1 cgd case TYPE_E:
879 1.1 cgd reply(553, "TYPE E not implemented.");
880 1.1 cgd transflag = 0;
881 1.1 cgd return (-1);
882 1.1 cgd
883 1.1 cgd case TYPE_A:
884 1.1 cgd while ((c = getc(instr)) != EOF) {
885 1.1 cgd byte_count++;
886 1.1 cgd if (c == '\n')
887 1.1 cgd bare_lfs++;
888 1.1 cgd while (c == '\r') {
889 1.1 cgd if (ferror(outstr))
890 1.1 cgd goto data_err;
891 1.1 cgd if ((c = getc(instr)) != '\n') {
892 1.1 cgd (void) putc ('\r', outstr);
893 1.1 cgd if (c == '\0' || c == EOF)
894 1.1 cgd goto contin2;
895 1.1 cgd }
896 1.1 cgd }
897 1.1 cgd (void) putc(c, outstr);
898 1.1 cgd contin2: ;
899 1.1 cgd }
900 1.1 cgd fflush(outstr);
901 1.1 cgd if (ferror(instr))
902 1.1 cgd goto data_err;
903 1.1 cgd if (ferror(outstr))
904 1.1 cgd goto file_err;
905 1.1 cgd transflag = 0;
906 1.1 cgd if (bare_lfs) {
907 1.1 cgd lreply(230, "WARNING! %d bare linefeeds received in ASCII mode", bare_lfs);
908 1.1 cgd printf(" File may not have transferred correctly.\r\n");
909 1.1 cgd }
910 1.1 cgd return (0);
911 1.1 cgd default:
912 1.1 cgd reply(550, "Unimplemented TYPE %d in receive_data", type);
913 1.1 cgd transflag = 0;
914 1.1 cgd return (-1);
915 1.1 cgd }
916 1.1 cgd
917 1.1 cgd data_err:
918 1.1 cgd transflag = 0;
919 1.1 cgd perror_reply(426, "Data Connection");
920 1.1 cgd return (-1);
921 1.1 cgd
922 1.1 cgd file_err:
923 1.1 cgd transflag = 0;
924 1.1 cgd perror_reply(452, "Error writing file");
925 1.1 cgd return (-1);
926 1.1 cgd }
927 1.1 cgd
928 1.1 cgd statfilecmd(filename)
929 1.1 cgd char *filename;
930 1.1 cgd {
931 1.1 cgd char line[BUFSIZ];
932 1.1 cgd FILE *fin;
933 1.1 cgd int c;
934 1.1 cgd
935 1.1 cgd (void) sprintf(line, "/bin/ls -lgA %s", filename);
936 1.1 cgd fin = ftpd_popen(line, "r");
937 1.1 cgd lreply(211, "status of %s:", filename);
938 1.1 cgd while ((c = getc(fin)) != EOF) {
939 1.1 cgd if (c == '\n') {
940 1.1 cgd if (ferror(stdout)){
941 1.1 cgd perror_reply(421, "control connection");
942 1.1 cgd (void) ftpd_pclose(fin);
943 1.1 cgd dologout(1);
944 1.1 cgd /* NOTREACHED */
945 1.1 cgd }
946 1.1 cgd if (ferror(fin)) {
947 1.1 cgd perror_reply(551, filename);
948 1.1 cgd (void) ftpd_pclose(fin);
949 1.1 cgd return;
950 1.1 cgd }
951 1.1 cgd (void) putc('\r', stdout);
952 1.1 cgd }
953 1.1 cgd (void) putc(c, stdout);
954 1.1 cgd }
955 1.1 cgd (void) ftpd_pclose(fin);
956 1.1 cgd reply(211, "End of Status");
957 1.1 cgd }
958 1.1 cgd
959 1.1 cgd statcmd()
960 1.1 cgd {
961 1.1 cgd struct sockaddr_in *sin;
962 1.1 cgd u_char *a, *p;
963 1.1 cgd
964 1.1 cgd lreply(211, "%s FTP server status:", hostname, version);
965 1.1 cgd printf(" %s\r\n", version);
966 1.1 cgd printf(" Connected to %s", remotehost);
967 1.1 cgd if (!isdigit(remotehost[0]))
968 1.1 cgd printf(" (%s)", inet_ntoa(his_addr.sin_addr));
969 1.1 cgd printf("\r\n");
970 1.1 cgd if (logged_in) {
971 1.1 cgd if (guest)
972 1.1 cgd printf(" Logged in anonymously\r\n");
973 1.1 cgd else
974 1.1 cgd printf(" Logged in as %s\r\n", pw->pw_name);
975 1.1 cgd } else if (askpasswd)
976 1.1 cgd printf(" Waiting for password\r\n");
977 1.1 cgd else
978 1.1 cgd printf(" Waiting for user name\r\n");
979 1.1 cgd printf(" TYPE: %s", typenames[type]);
980 1.1 cgd if (type == TYPE_A || type == TYPE_E)
981 1.1 cgd printf(", FORM: %s", formnames[form]);
982 1.1 cgd if (type == TYPE_L)
983 1.1 cgd #if NBBY == 8
984 1.1 cgd printf(" %d", NBBY);
985 1.1 cgd #else
986 1.1 cgd printf(" %d", bytesize); /* need definition! */
987 1.1 cgd #endif
988 1.1 cgd printf("; STRUcture: %s; transfer MODE: %s\r\n",
989 1.1 cgd strunames[stru], modenames[mode]);
990 1.1 cgd if (data != -1)
991 1.1 cgd printf(" Data connection open\r\n");
992 1.1 cgd else if (pdata != -1) {
993 1.1 cgd printf(" in Passive mode");
994 1.1 cgd sin = &pasv_addr;
995 1.1 cgd goto printaddr;
996 1.1 cgd } else if (usedefault == 0) {
997 1.1 cgd printf(" PORT");
998 1.1 cgd sin = &data_dest;
999 1.1 cgd printaddr:
1000 1.1 cgd a = (u_char *) &sin->sin_addr;
1001 1.1 cgd p = (u_char *) &sin->sin_port;
1002 1.1 cgd #define UC(b) (((int) b) & 0xff)
1003 1.1 cgd printf(" (%d,%d,%d,%d,%d,%d)\r\n", UC(a[0]),
1004 1.1 cgd UC(a[1]), UC(a[2]), UC(a[3]), UC(p[0]), UC(p[1]));
1005 1.1 cgd #undef UC
1006 1.1 cgd } else
1007 1.1 cgd printf(" No data connection\r\n");
1008 1.1 cgd reply(211, "End of status");
1009 1.1 cgd }
1010 1.1 cgd
1011 1.1 cgd fatal(s)
1012 1.1 cgd char *s;
1013 1.1 cgd {
1014 1.1 cgd reply(451, "Error in server: %s\n", s);
1015 1.1 cgd reply(221, "Closing connection due to server error.");
1016 1.1 cgd dologout(0);
1017 1.1 cgd /* NOTREACHED */
1018 1.1 cgd }
1019 1.1 cgd
1020 1.1 cgd /* VARARGS2 */
1021 1.1 cgd reply(n, fmt, p0, p1, p2, p3, p4, p5)
1022 1.1 cgd int n;
1023 1.1 cgd char *fmt;
1024 1.1 cgd {
1025 1.1 cgd printf("%d ", n);
1026 1.1 cgd printf(fmt, p0, p1, p2, p3, p4, p5);
1027 1.1 cgd printf("\r\n");
1028 1.1 cgd (void)fflush(stdout);
1029 1.1 cgd if (debug) {
1030 1.1 cgd syslog(LOG_DEBUG, "<--- %d ", n);
1031 1.1 cgd syslog(LOG_DEBUG, fmt, p0, p1, p2, p3, p4, p5);
1032 1.1 cgd }
1033 1.1 cgd }
1034 1.1 cgd
1035 1.1 cgd /* VARARGS2 */
1036 1.1 cgd lreply(n, fmt, p0, p1, p2, p3, p4, p5)
1037 1.1 cgd int n;
1038 1.1 cgd char *fmt;
1039 1.1 cgd {
1040 1.1 cgd printf("%d- ", n);
1041 1.1 cgd printf(fmt, p0, p1, p2, p3, p4, p5);
1042 1.1 cgd printf("\r\n");
1043 1.1 cgd (void)fflush(stdout);
1044 1.1 cgd if (debug) {
1045 1.1 cgd syslog(LOG_DEBUG, "<--- %d- ", n);
1046 1.1 cgd syslog(LOG_DEBUG, fmt, p0, p1, p2, p3, p4, p5);
1047 1.1 cgd }
1048 1.1 cgd }
1049 1.1 cgd
1050 1.1 cgd ack(s)
1051 1.1 cgd char *s;
1052 1.1 cgd {
1053 1.1 cgd reply(250, "%s command successful.", s);
1054 1.1 cgd }
1055 1.1 cgd
1056 1.1 cgd nack(s)
1057 1.1 cgd char *s;
1058 1.1 cgd {
1059 1.1 cgd reply(502, "%s command not implemented.", s);
1060 1.1 cgd }
1061 1.1 cgd
1062 1.1 cgd /* ARGSUSED */
1063 1.1 cgd yyerror(s)
1064 1.1 cgd char *s;
1065 1.1 cgd {
1066 1.1 cgd char *cp;
1067 1.1 cgd
1068 1.1 cgd if (cp = index(cbuf,'\n'))
1069 1.1 cgd *cp = '\0';
1070 1.1 cgd reply(500, "'%s': command not understood.", cbuf);
1071 1.1 cgd }
1072 1.1 cgd
1073 1.1 cgd delete(name)
1074 1.1 cgd char *name;
1075 1.1 cgd {
1076 1.1 cgd struct stat st;
1077 1.1 cgd
1078 1.1 cgd if (stat(name, &st) < 0) {
1079 1.1 cgd perror_reply(550, name);
1080 1.1 cgd return;
1081 1.1 cgd }
1082 1.1 cgd if ((st.st_mode&S_IFMT) == S_IFDIR) {
1083 1.1 cgd if (rmdir(name) < 0) {
1084 1.1 cgd perror_reply(550, name);
1085 1.1 cgd return;
1086 1.1 cgd }
1087 1.1 cgd goto done;
1088 1.1 cgd }
1089 1.1 cgd if (unlink(name) < 0) {
1090 1.1 cgd perror_reply(550, name);
1091 1.1 cgd return;
1092 1.1 cgd }
1093 1.1 cgd done:
1094 1.1 cgd ack("DELE");
1095 1.1 cgd }
1096 1.1 cgd
1097 1.1 cgd cwd(path)
1098 1.1 cgd char *path;
1099 1.1 cgd {
1100 1.1 cgd if (chdir(path) < 0)
1101 1.1 cgd perror_reply(550, path);
1102 1.1 cgd else
1103 1.1 cgd ack("CWD");
1104 1.1 cgd }
1105 1.1 cgd
1106 1.1 cgd makedir(name)
1107 1.1 cgd char *name;
1108 1.1 cgd {
1109 1.1 cgd if (mkdir(name, 0777) < 0)
1110 1.1 cgd perror_reply(550, name);
1111 1.1 cgd else
1112 1.1 cgd reply(257, "MKD command successful.");
1113 1.1 cgd }
1114 1.1 cgd
1115 1.1 cgd removedir(name)
1116 1.1 cgd char *name;
1117 1.1 cgd {
1118 1.1 cgd if (rmdir(name) < 0)
1119 1.1 cgd perror_reply(550, name);
1120 1.1 cgd else
1121 1.1 cgd ack("RMD");
1122 1.1 cgd }
1123 1.1 cgd
1124 1.1 cgd pwd()
1125 1.1 cgd {
1126 1.1 cgd char path[MAXPATHLEN + 1];
1127 1.1 cgd extern char *getwd();
1128 1.1 cgd
1129 1.1 cgd if (getwd(path) == (char *)NULL)
1130 1.1 cgd reply(550, "%s.", path);
1131 1.1 cgd else
1132 1.1 cgd reply(257, "\"%s\" is current directory.", path);
1133 1.1 cgd }
1134 1.1 cgd
1135 1.1 cgd char *
1136 1.1 cgd renamefrom(name)
1137 1.1 cgd char *name;
1138 1.1 cgd {
1139 1.1 cgd struct stat st;
1140 1.1 cgd
1141 1.1 cgd if (stat(name, &st) < 0) {
1142 1.1 cgd perror_reply(550, name);
1143 1.1 cgd return ((char *)0);
1144 1.1 cgd }
1145 1.1 cgd reply(350, "File exists, ready for destination name");
1146 1.1 cgd return (name);
1147 1.1 cgd }
1148 1.1 cgd
1149 1.1 cgd renamecmd(from, to)
1150 1.1 cgd char *from, *to;
1151 1.1 cgd {
1152 1.1 cgd if (rename(from, to) < 0)
1153 1.1 cgd perror_reply(550, "rename");
1154 1.1 cgd else
1155 1.1 cgd ack("RNTO");
1156 1.1 cgd }
1157 1.1 cgd
1158 1.1 cgd dolog(sin)
1159 1.1 cgd struct sockaddr_in *sin;
1160 1.1 cgd {
1161 1.1 cgd struct hostent *hp = gethostbyaddr((char *)&sin->sin_addr,
1162 1.1 cgd sizeof (struct in_addr), AF_INET);
1163 1.1 cgd time_t t, time();
1164 1.1 cgd extern char *ctime();
1165 1.1 cgd
1166 1.1 cgd if (hp)
1167 1.1 cgd (void) strncpy(remotehost, hp->h_name, sizeof (remotehost));
1168 1.1 cgd else
1169 1.1 cgd (void) strncpy(remotehost, inet_ntoa(sin->sin_addr),
1170 1.1 cgd sizeof (remotehost));
1171 1.1 cgd #ifdef SETPROCTITLE
1172 1.1 cgd sprintf(proctitle, "%s: connected", remotehost);
1173 1.1 cgd setproctitle(proctitle);
1174 1.1 cgd #endif /* SETPROCTITLE */
1175 1.1 cgd
1176 1.1 cgd if (logging) {
1177 1.1 cgd t = time((time_t *) 0);
1178 1.1 cgd syslog(LOG_INFO, "connection from %s at %s",
1179 1.1 cgd remotehost, ctime(&t));
1180 1.1 cgd }
1181 1.1 cgd }
1182 1.1 cgd
1183 1.1 cgd /*
1184 1.1 cgd * Record logout in wtmp file
1185 1.1 cgd * and exit with supplied status.
1186 1.1 cgd */
1187 1.1 cgd dologout(status)
1188 1.1 cgd int status;
1189 1.1 cgd {
1190 1.1 cgd if (logged_in) {
1191 1.1 cgd (void) seteuid((uid_t)0);
1192 1.1 cgd logwtmp(ttyline, "", "");
1193 1.1 cgd }
1194 1.1 cgd /* beware of flushing buffers after a SIGPIPE */
1195 1.1 cgd _exit(status);
1196 1.1 cgd }
1197 1.1 cgd
1198 1.1 cgd void
1199 1.1 cgd myoob()
1200 1.1 cgd {
1201 1.1 cgd char *cp;
1202 1.1 cgd
1203 1.1 cgd /* only process if transfer occurring */
1204 1.1 cgd if (!transflag)
1205 1.1 cgd return;
1206 1.1 cgd cp = tmpline;
1207 1.1 cgd if (getline(cp, 7, stdin) == NULL) {
1208 1.1 cgd reply(221, "You could at least say goodbye.");
1209 1.1 cgd dologout(0);
1210 1.1 cgd }
1211 1.1 cgd upper(cp);
1212 1.1 cgd if (strcmp(cp, "ABOR\r\n") == 0) {
1213 1.1 cgd tmpline[0] = '\0';
1214 1.1 cgd reply(426, "Transfer aborted. Data connection closed.");
1215 1.1 cgd reply(226, "Abort successful");
1216 1.1 cgd longjmp(urgcatch, 1);
1217 1.1 cgd }
1218 1.1 cgd if (strcmp(cp, "STAT\r\n") == 0) {
1219 1.1 cgd if (file_size != (off_t) -1)
1220 1.1 cgd reply(213, "Status: %lu of %lu bytes transferred",
1221 1.1 cgd byte_count, file_size);
1222 1.1 cgd else
1223 1.1 cgd reply(213, "Status: %lu bytes transferred", byte_count);
1224 1.1 cgd }
1225 1.1 cgd }
1226 1.1 cgd
1227 1.1 cgd /*
1228 1.1 cgd * Note: a response of 425 is not mentioned as a possible response to
1229 1.1 cgd * the PASV command in RFC959. However, it has been blessed as
1230 1.1 cgd * a legitimate response by Jon Postel in a telephone conversation
1231 1.1 cgd * with Rick Adams on 25 Jan 89.
1232 1.1 cgd */
1233 1.1 cgd passive()
1234 1.1 cgd {
1235 1.1 cgd int len;
1236 1.1 cgd register char *p, *a;
1237 1.1 cgd
1238 1.1 cgd pdata = socket(AF_INET, SOCK_STREAM, 0);
1239 1.1 cgd if (pdata < 0) {
1240 1.1 cgd perror_reply(425, "Can't open passive connection");
1241 1.1 cgd return;
1242 1.1 cgd }
1243 1.1 cgd pasv_addr = ctrl_addr;
1244 1.1 cgd pasv_addr.sin_port = 0;
1245 1.1 cgd (void) seteuid((uid_t)0);
1246 1.1 cgd if (bind(pdata, (struct sockaddr *)&pasv_addr, sizeof(pasv_addr)) < 0) {
1247 1.1 cgd (void) seteuid((uid_t)pw->pw_uid);
1248 1.1 cgd goto pasv_error;
1249 1.1 cgd }
1250 1.1 cgd (void) seteuid((uid_t)pw->pw_uid);
1251 1.1 cgd len = sizeof(pasv_addr);
1252 1.1 cgd if (getsockname(pdata, (struct sockaddr *) &pasv_addr, &len) < 0)
1253 1.1 cgd goto pasv_error;
1254 1.1 cgd if (listen(pdata, 1) < 0)
1255 1.1 cgd goto pasv_error;
1256 1.1 cgd a = (char *) &pasv_addr.sin_addr;
1257 1.1 cgd p = (char *) &pasv_addr.sin_port;
1258 1.1 cgd
1259 1.1 cgd #define UC(b) (((int) b) & 0xff)
1260 1.1 cgd
1261 1.1 cgd reply(227, "Entering Passive Mode (%d,%d,%d,%d,%d,%d)", UC(a[0]),
1262 1.1 cgd UC(a[1]), UC(a[2]), UC(a[3]), UC(p[0]), UC(p[1]));
1263 1.1 cgd return;
1264 1.1 cgd
1265 1.1 cgd pasv_error:
1266 1.1 cgd (void) close(pdata);
1267 1.1 cgd pdata = -1;
1268 1.1 cgd perror_reply(425, "Can't open passive connection");
1269 1.1 cgd return;
1270 1.1 cgd }
1271 1.1 cgd
1272 1.1 cgd /*
1273 1.1 cgd * Generate unique name for file with basename "local".
1274 1.1 cgd * The file named "local" is already known to exist.
1275 1.1 cgd * Generates failure reply on error.
1276 1.1 cgd */
1277 1.1 cgd char *
1278 1.1 cgd gunique(local)
1279 1.1 cgd char *local;
1280 1.1 cgd {
1281 1.1 cgd static char new[MAXPATHLEN];
1282 1.1 cgd struct stat st;
1283 1.1 cgd char *cp = rindex(local, '/');
1284 1.1 cgd int count = 0;
1285 1.1 cgd
1286 1.1 cgd if (cp)
1287 1.1 cgd *cp = '\0';
1288 1.1 cgd if (stat(cp ? local : ".", &st) < 0) {
1289 1.1 cgd perror_reply(553, cp ? local : ".");
1290 1.1 cgd return((char *) 0);
1291 1.1 cgd }
1292 1.1 cgd if (cp)
1293 1.1 cgd *cp = '/';
1294 1.1 cgd (void) strcpy(new, local);
1295 1.1 cgd cp = new + strlen(new);
1296 1.1 cgd *cp++ = '.';
1297 1.1 cgd for (count = 1; count < 100; count++) {
1298 1.1 cgd (void) sprintf(cp, "%d", count);
1299 1.1 cgd if (stat(new, &st) < 0)
1300 1.1 cgd return(new);
1301 1.1 cgd }
1302 1.1 cgd reply(452, "Unique file name cannot be created.");
1303 1.1 cgd return((char *) 0);
1304 1.1 cgd }
1305 1.1 cgd
1306 1.1 cgd /*
1307 1.1 cgd * Format and send reply containing system error number.
1308 1.1 cgd */
1309 1.1 cgd perror_reply(code, string)
1310 1.1 cgd int code;
1311 1.1 cgd char *string;
1312 1.1 cgd {
1313 1.1 cgd reply(code, "%s: %s.", string, strerror(errno));
1314 1.1 cgd }
1315 1.1 cgd
1316 1.1 cgd static char *onefile[] = {
1317 1.1 cgd "",
1318 1.1 cgd 0
1319 1.1 cgd };
1320 1.1 cgd
1321 1.1 cgd send_file_list(whichfiles)
1322 1.1 cgd char *whichfiles;
1323 1.1 cgd {
1324 1.1 cgd struct stat st;
1325 1.1 cgd DIR *dirp = NULL;
1326 1.1 cgd struct dirent *dir;
1327 1.1 cgd FILE *dout = NULL;
1328 1.1 cgd register char **dirlist, *dirname;
1329 1.1 cgd int simple = 0;
1330 1.1 cgd char *strpbrk();
1331 1.1 cgd
1332 1.1 cgd if (strpbrk(whichfiles, "~{[*?") != NULL) {
1333 1.1 cgd extern char **ftpglob(), *globerr;
1334 1.1 cgd
1335 1.1 cgd globerr = NULL;
1336 1.1 cgd dirlist = ftpglob(whichfiles);
1337 1.1 cgd if (globerr != NULL) {
1338 1.1 cgd reply(550, globerr);
1339 1.1 cgd return;
1340 1.1 cgd } else if (dirlist == NULL) {
1341 1.1 cgd errno = ENOENT;
1342 1.1 cgd perror_reply(550, whichfiles);
1343 1.1 cgd return;
1344 1.1 cgd }
1345 1.1 cgd } else {
1346 1.1 cgd onefile[0] = whichfiles;
1347 1.1 cgd dirlist = onefile;
1348 1.1 cgd simple = 1;
1349 1.1 cgd }
1350 1.1 cgd
1351 1.1 cgd if (setjmp(urgcatch)) {
1352 1.1 cgd transflag = 0;
1353 1.1 cgd return;
1354 1.1 cgd }
1355 1.1 cgd while (dirname = *dirlist++) {
1356 1.1 cgd if (stat(dirname, &st) < 0) {
1357 1.1 cgd /*
1358 1.1 cgd * If user typed "ls -l", etc, and the client
1359 1.1 cgd * used NLST, do what the user meant.
1360 1.1 cgd */
1361 1.1 cgd if (dirname[0] == '-' && *dirlist == NULL &&
1362 1.1 cgd transflag == 0) {
1363 1.1 cgd retrieve("/bin/ls %s", dirname);
1364 1.1 cgd return;
1365 1.1 cgd }
1366 1.1 cgd perror_reply(550, whichfiles);
1367 1.1 cgd if (dout != NULL) {
1368 1.1 cgd (void) fclose(dout);
1369 1.1 cgd transflag = 0;
1370 1.1 cgd data = -1;
1371 1.1 cgd pdata = -1;
1372 1.1 cgd }
1373 1.1 cgd return;
1374 1.1 cgd }
1375 1.1 cgd
1376 1.1 cgd if ((st.st_mode&S_IFMT) == S_IFREG) {
1377 1.1 cgd if (dout == NULL) {
1378 1.1 cgd dout = dataconn("file list", (off_t)-1, "w");
1379 1.1 cgd if (dout == NULL)
1380 1.1 cgd return;
1381 1.1 cgd transflag++;
1382 1.1 cgd }
1383 1.1 cgd fprintf(dout, "%s%s\n", dirname,
1384 1.1 cgd type == TYPE_A ? "\r" : "");
1385 1.1 cgd byte_count += strlen(dirname) + 1;
1386 1.1 cgd continue;
1387 1.1 cgd } else if ((st.st_mode&S_IFMT) != S_IFDIR)
1388 1.1 cgd continue;
1389 1.1 cgd
1390 1.1 cgd if ((dirp = opendir(dirname)) == NULL)
1391 1.1 cgd continue;
1392 1.1 cgd
1393 1.1 cgd while ((dir = readdir(dirp)) != NULL) {
1394 1.1 cgd char nbuf[MAXPATHLEN];
1395 1.1 cgd
1396 1.1 cgd if (dir->d_name[0] == '.' && dir->d_namlen == 1)
1397 1.1 cgd continue;
1398 1.1 cgd if (dir->d_name[0] == '.' && dir->d_name[1] == '.' &&
1399 1.1 cgd dir->d_namlen == 2)
1400 1.1 cgd continue;
1401 1.1 cgd
1402 1.1 cgd sprintf(nbuf, "%s/%s", dirname, dir->d_name);
1403 1.1 cgd
1404 1.1 cgd /*
1405 1.1 cgd * We have to do a stat to insure it's
1406 1.1 cgd * not a directory or special file.
1407 1.1 cgd */
1408 1.1 cgd if (simple || (stat(nbuf, &st) == 0 &&
1409 1.1 cgd (st.st_mode&S_IFMT) == S_IFREG)) {
1410 1.1 cgd if (dout == NULL) {
1411 1.1 cgd dout = dataconn("file list", (off_t)-1,
1412 1.1 cgd "w");
1413 1.1 cgd if (dout == NULL)
1414 1.1 cgd return;
1415 1.1 cgd transflag++;
1416 1.1 cgd }
1417 1.1 cgd if (nbuf[0] == '.' && nbuf[1] == '/')
1418 1.1 cgd fprintf(dout, "%s%s\n", &nbuf[2],
1419 1.1 cgd type == TYPE_A ? "\r" : "");
1420 1.1 cgd else
1421 1.1 cgd fprintf(dout, "%s%s\n", nbuf,
1422 1.1 cgd type == TYPE_A ? "\r" : "");
1423 1.1 cgd byte_count += strlen(nbuf) + 1;
1424 1.1 cgd }
1425 1.1 cgd }
1426 1.1 cgd (void) closedir(dirp);
1427 1.1 cgd }
1428 1.1 cgd
1429 1.1 cgd if (dout == NULL)
1430 1.1 cgd reply(550, "No files found.");
1431 1.1 cgd else if (ferror(dout) != 0)
1432 1.1 cgd perror_reply(550, "Data connection");
1433 1.1 cgd else
1434 1.1 cgd reply(226, "Transfer complete.");
1435 1.1 cgd
1436 1.1 cgd transflag = 0;
1437 1.1 cgd if (dout != NULL)
1438 1.1 cgd (void) fclose(dout);
1439 1.1 cgd data = -1;
1440 1.1 cgd pdata = -1;
1441 1.1 cgd }
1442 1.1 cgd
1443 1.1 cgd #ifdef SETPROCTITLE
1444 1.1 cgd /*
1445 1.1 cgd * clobber argv so ps will show what we're doing.
1446 1.1 cgd * (stolen from sendmail)
1447 1.1 cgd * warning, since this is usually started from inetd.conf, it
1448 1.1 cgd * often doesn't have much of an environment or arglist to overwrite.
1449 1.1 cgd */
1450 1.1 cgd
1451 1.1 cgd /*VARARGS1*/
1452 1.1 cgd setproctitle(fmt, a, b, c)
1453 1.1 cgd char *fmt;
1454 1.1 cgd {
1455 1.1 cgd register char *p, *bp, ch;
1456 1.1 cgd register int i;
1457 1.1 cgd char buf[BUFSIZ];
1458 1.1 cgd
1459 1.1 cgd (void) sprintf(buf, fmt, a, b, c);
1460 1.1 cgd
1461 1.1 cgd /* make ps print our process name */
1462 1.1 cgd p = Argv[0];
1463 1.1 cgd *p++ = '-';
1464 1.1 cgd
1465 1.1 cgd i = strlen(buf);
1466 1.1 cgd if (i > LastArgv - p - 2) {
1467 1.1 cgd i = LastArgv - p - 2;
1468 1.1 cgd buf[i] = '\0';
1469 1.1 cgd }
1470 1.1 cgd bp = buf;
1471 1.1 cgd while (ch = *bp++)
1472 1.1 cgd if (ch != '\n' && ch != '\r')
1473 1.1 cgd *p++ = ch;
1474 1.1 cgd while (p < LastArgv)
1475 1.1 cgd *p++ = ' ';
1476 1.1 cgd }
1477 1.1 cgd #endif /* SETPROCTITLE */
1478