BSD 4_3_Reno release
[unix-history] / usr / src / libexec / ftpd / ftpd.c
index 9ef6bef..1c5f751 100644 (file)
@@ -1,18 +1,31 @@
 /*
 /*
- * Copyright (c) 1985 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * Copyright (c) 1985, 1988, 1990 Regents of the University of California.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted provided
+ * that: (1) source distributions retain this entire copyright notice and
+ * comment, and (2) distributions including binaries display the following
+ * acknowledgement:  ``This product includes software developed by the
+ * University of California, Berkeley and its contributors'' in the
+ * documentation or other materials provided with the distribution and in
+ * all advertising materials mentioning features or use of this software.
+ * Neither the name of the University nor the names of its contributors may
+ * be used to endorse or promote products derived from this software without
+ * specific prior written permission.
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  */
 
 #ifndef lint
 char copyright[] =
  */
 
 #ifndef lint
 char copyright[] =
-"@(#) Copyright (c) 1985 Regents of the University of California.\n\
+"@(#) Copyright (c) 1985, 1988, 1990 Regents of the University of California.\n\
  All rights reserved.\n";
  All rights reserved.\n";
-#endif not lint
+#endif /* not lint */
 
 #ifndef lint
 
 #ifndef lint
-static char sccsid[] = "@(#)ftpd.c     5.5 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)ftpd.c     5.37 (Berkeley) 6/27/90";
+#endif /* not lint */
 
 /*
  * FTP server.
 
 /*
  * FTP server.
@@ -23,43 +36,49 @@ static char sccsid[] = "@(#)ftpd.c  5.5 (Berkeley) %G%";
 #include <sys/socket.h>
 #include <sys/file.h>
 #include <sys/wait.h>
 #include <sys/socket.h>
 #include <sys/file.h>
 #include <sys/wait.h>
+#include <sys/dir.h>
 
 #include <netinet/in.h>
 
 #include <netinet/in.h>
+#include <netinet/in_systm.h>
+#include <netinet/ip.h>
 
 
+#define        FTP_NAMES
 #include <arpa/ftp.h>
 #include <arpa/inet.h>
 #include <arpa/telnet.h>
 
 #include <arpa/ftp.h>
 #include <arpa/inet.h>
 #include <arpa/telnet.h>
 
+#include <ctype.h>
 #include <stdio.h>
 #include <signal.h>
 #include <pwd.h>
 #include <setjmp.h>
 #include <netdb.h>
 #include <errno.h>
 #include <stdio.h>
 #include <signal.h>
 #include <pwd.h>
 #include <setjmp.h>
 #include <netdb.h>
 #include <errno.h>
-#include <strings.h>
+#include <string.h>
 #include <syslog.h>
 #include <syslog.h>
+#include <varargs.h>
+#include "pathnames.h"
 
 /*
  * File containing login names
  * NOT to be used on this machine.
  * Commonly used to disallow uucp.
  */
 
 /*
  * File containing login names
  * NOT to be used on this machine.
  * Commonly used to disallow uucp.
  */
-#define        FTPUSERS        "/etc/ftpusers"
-
 extern int errno;
 extern int errno;
-extern char *sys_errlist[];
 extern char *crypt();
 extern char version[];
 extern char *home;             /* pointer to home directory for glob */
 extern char *crypt();
 extern char version[];
 extern char *home;             /* pointer to home directory for glob */
-extern FILE *popen(), *fopen(), *freopen();
-extern int  pclose(), fclose();
+extern FILE *ftpd_popen(), *fopen(), *freopen();
+extern int  ftpd_pclose(), fclose();
 extern char *getline();
 extern char cbuf[];
 extern char *getline();
 extern char cbuf[];
+extern off_t restart_point;
 
 struct sockaddr_in ctrl_addr;
 struct sockaddr_in data_source;
 struct sockaddr_in data_dest;
 struct sockaddr_in his_addr;
 
 struct sockaddr_in ctrl_addr;
 struct sockaddr_in data_source;
 struct sockaddr_in data_dest;
 struct sockaddr_in his_addr;
+struct sockaddr_in pasv_addr;
 
 int    data;
 jmp_buf        errcatch, urgcatch;
 
 int    data;
 jmp_buf        errcatch, urgcatch;
@@ -67,20 +86,26 @@ int logged_in;
 struct passwd *pw;
 int    debug;
 int    timeout = 900;    /* timeout after 15 minutes of inactivity */
 struct passwd *pw;
 int    debug;
 int    timeout = 900;    /* timeout after 15 minutes of inactivity */
+int    maxtimeout = 7200;/* don't allow idle time to be set beyond 2 hours */
 int    logging;
 int    guest;
 int    logging;
 int    guest;
-int    wtmp;
 int    type;
 int    form;
 int    stru;                   /* avoid C keyword */
 int    mode;
 int    usedefault = 1;         /* for data transfers */
 int    type;
 int    form;
 int    stru;                   /* avoid C keyword */
 int    mode;
 int    usedefault = 1;         /* for data transfers */
-int    pdata;                  /* for passive mode */
-int    unique;
+int    pdata = -1;             /* for passive mode */
 int    transflag;
 int    transflag;
+off_t  file_size;
+off_t  byte_count;
+#if !defined(CMASK) || CMASK == 0
+#undef CMASK
+#define CMASK 027
+#endif
+int    defumask = CMASK;               /* default umask value */
 char   tmpline[7];
 char   tmpline[7];
-char   hostname[32];
-char   remotehost[32];
+char   hostname[MAXHOSTNAMELEN];
+char   remotehost[MAXHOSTNAMELEN];
 
 /*
  * Timeout intervals for retrying connections
 
 /*
  * Timeout intervals for retrying connections
@@ -97,27 +122,48 @@ int        lostconn();
 int    myoob();
 FILE   *getdatasock(), *dataconn();
 
 int    myoob();
 FILE   *getdatasock(), *dataconn();
 
-main(argc, argv)
+#ifdef SETPROCTITLE
+char   **Argv = NULL;          /* pointer to argument vector */
+char   *LastArgv = NULL;       /* end of argv */
+char   proctitle[BUFSIZ];      /* initial part of title */
+#endif /* SETPROCTITLE */
+
+main(argc, argv, envp)
        int argc;
        char *argv[];
        int argc;
        char *argv[];
+       char **envp;
 {
 {
-       int addrlen;
-       long pgid;
+       int addrlen, on = 1, tos;
        char *cp;
 
        addrlen = sizeof (his_addr);
        char *cp;
 
        addrlen = sizeof (his_addr);
-       if (getpeername(0, &his_addr, &addrlen) < 0) {
+       if (getpeername(0, (struct sockaddr *)&his_addr, &addrlen) < 0) {
                syslog(LOG_ERR, "getpeername (%s): %m",argv[0]);
                exit(1);
        }
        addrlen = sizeof (ctrl_addr);
                syslog(LOG_ERR, "getpeername (%s): %m",argv[0]);
                exit(1);
        }
        addrlen = sizeof (ctrl_addr);
-       if (getsockname(0, (char *) &ctrl_addr, &addrlen) < 0) {
+       if (getsockname(0, (struct sockaddr *)&ctrl_addr, &addrlen) < 0) {
                syslog(LOG_ERR, "getsockname (%s): %m",argv[0]);
                exit(1);
        }
                syslog(LOG_ERR, "getsockname (%s): %m",argv[0]);
                exit(1);
        }
+#ifdef IP_TOS
+       tos = IPTOS_LOWDELAY;
+       if (setsockopt(0, IPPROTO_IP, IP_TOS, (char *)&tos, sizeof(int)) < 0)
+               syslog(LOG_WARNING, "setsockopt (IP_TOS): %m");
+#endif
        data_source.sin_port = htons(ntohs(ctrl_addr.sin_port) - 1);
        debug = 0;
        openlog("ftpd", LOG_PID, LOG_DAEMON);
        data_source.sin_port = htons(ntohs(ctrl_addr.sin_port) - 1);
        debug = 0;
        openlog("ftpd", LOG_PID, LOG_DAEMON);
+#ifdef SETPROCTITLE
+       /*
+        *  Save start and extent of argv for setproctitle.
+        */
+       Argv = argv;
+       while (*envp)
+               envp++;
+       LastArgv = envp[-1] + strlen(envp[-1]);
+#endif /* SETPROCTITLE */
+
        argc--, argv++;
        while (argc > 0 && *argv[0] == '-') {
                for (cp = &argv[0][1]; *cp; cp++) switch (*cp) {
        argc--, argv++;
        while (argc > 0 && *argv[0] == '-') {
                for (cp = &argv[0][1]; *cp; cp++) switch (*cp) {
@@ -136,8 +182,28 @@ main(argc, argv)
 
                case 't':
                        timeout = atoi(++cp);
 
                case 't':
                        timeout = atoi(++cp);
+                       if (maxtimeout < timeout)
+                               maxtimeout = timeout;
                        goto nextopt;
                        goto nextopt;
-                       break;
+
+               case 'T':
+                       maxtimeout = atoi(++cp);
+                       if (timeout > maxtimeout)
+                               timeout = maxtimeout;
+                       goto nextopt;
+
+               case 'u':
+                   {
+                       int val = 0;
+
+                       while (*++cp && *cp >= '0' && *cp <= '9')
+                               val = val*8 + *cp - '0';
+                       if (*cp)
+                               fprintf(stderr, "ftpd: Bad value for -u\n");
+                       else
+                               defumask = val;
+                       goto nextopt;
+                   }
 
                default:
                        fprintf(stderr, "ftpd: Unknown flag -%c ignored.\n",
 
                default:
                        fprintf(stderr, "ftpd: Unknown flag -%c ignored.\n",
@@ -147,21 +213,26 @@ main(argc, argv)
 nextopt:
                argc--, argv++;
        }
 nextopt:
                argc--, argv++;
        }
+       (void) freopen(_PATH_DEVNULL, "w", stderr);
        (void) signal(SIGPIPE, lostconn);
        (void) signal(SIGCHLD, SIG_IGN);
        (void) signal(SIGPIPE, lostconn);
        (void) signal(SIGCHLD, SIG_IGN);
-       if (signal(SIGURG, myoob) < 0) {
+       if ((int)signal(SIGURG, myoob) < 0)
                syslog(LOG_ERR, "signal: %m");
                syslog(LOG_ERR, "signal: %m");
-       }
-       pgid = getpid();
-       if (ioctl(fileno(stdin), (int) SIOCSPGRP, (char *) &pgid) < 0) {
-               syslog(LOG_ERR, "ioctl: %m");
-       }
+
+       /* Try to handle urgent data inline */
+#ifdef SO_OOBINLINE
+       if (setsockopt(0, SOL_SOCKET, SO_OOBINLINE, (char *)&on, sizeof(on)) < 0)
+               syslog(LOG_ERR, "setsockopt: %m");
+#endif
+
+#ifdef F_SETOWN
+       if (fcntl(fileno(stdin), F_SETOWN, getpid()) == -1)
+               syslog(LOG_ERR, "fcntl F_SETOWN: %m");
+#endif
        dolog(&his_addr);
        dolog(&his_addr);
-       /* do telnet option negotiation here */
        /*
         * Set up default state
         */
        /*
         * Set up default state
         */
-       logged_in = 0;
        data = -1;
        type = TYPE_A;
        form = FORM_N;
        data = -1;
        type = TYPE_A;
        form = FORM_N;
@@ -169,12 +240,11 @@ nextopt:
        mode = MODE_S;
        tmpline[0] = '\0';
        (void) gethostname(hostname, sizeof (hostname));
        mode = MODE_S;
        tmpline[0] = '\0';
        (void) gethostname(hostname, sizeof (hostname));
-       reply(220, "%s FTP server (%s) ready.",
-               hostname, version);
-       for (;;) {
-               (void) setjmp(errcatch);
+       reply(220, "%s FTP server (%s) ready.", hostname, version);
+       (void) setjmp(errcatch);
+       for (;;)
                (void) yyparse();
                (void) yyparse();
-       }
+       /* NOTREACHED */
 }
 
 lostconn()
 }
 
 lostconn()
@@ -185,79 +255,253 @@ lostconn()
        dologout(-1);
 }
 
        dologout(-1);
 }
 
+static char ttyline[20];
+
+/*
+ * Helper function for sgetpwnam().
+ */
+char *
+sgetsave(s)
+       char *s;
+{
+       char *malloc();
+       char *new = malloc((unsigned) strlen(s) + 1);
+
+       if (new == NULL) {
+               perror_reply(421, "Local resource failure: malloc");
+               dologout(1);
+               /* NOTREACHED */
+       }
+       (void) strcpy(new, s);
+       return (new);
+}
+
+/*
+ * Save the result of a getpwnam.  Used for USER command, since
+ * the data returned must not be clobbered by any other command
+ * (e.g., globbing).
+ */
+struct passwd *
+sgetpwnam(name)
+       char *name;
+{
+       static struct passwd save;
+       register struct passwd *p;
+       char *sgetsave();
+
+       if ((p = getpwnam(name)) == NULL)
+               return (p);
+       if (save.pw_name) {
+               free(save.pw_name);
+               free(save.pw_passwd);
+               free(save.pw_gecos);
+               free(save.pw_dir);
+               free(save.pw_shell);
+       }
+       save = *p;
+       save.pw_name = sgetsave(p->pw_name);
+       save.pw_passwd = sgetsave(p->pw_passwd);
+       save.pw_gecos = sgetsave(p->pw_gecos);
+       save.pw_dir = sgetsave(p->pw_dir);
+       save.pw_shell = sgetsave(p->pw_shell);
+       return (&save);
+}
+
+int login_attempts;            /* number of failed login attempts */
+int askpasswd;                 /* had user command, ask for passwd */
+
+/*
+ * USER command.
+ * Sets global passwd pointer pw if named account exists and is acceptable;
+ * sets askpasswd if a PASS command is expected.  If logged in previously,
+ * need to reset state.  If name is "ftp" or "anonymous", the name is not in
+ * _PATH_FTPUSERS, and ftp account exists, set guest and pw, then just return.
+ * If account doesn't exist, ask for passwd anyway.  Otherwise, check user
+ * requesting login privileges.  Disallow anyone who does not have a standard
+ * shell as returned by getusershell().  Disallow anyone mentioned in the file
+ * _PATH_FTPUSERS to allow people such as root and uucp to be avoided.
+ */
+user(name)
+       char *name;
+{
+       register char *cp;
+       char *shell;
+       char *getusershell();
+
+       if (logged_in) {
+               if (guest) {
+                       reply(530, "Can't change user from guest login.");
+                       return;
+               }
+               end_login();
+       }
+
+       guest = 0;
+       if (strcmp(name, "ftp") == 0 || strcmp(name, "anonymous") == 0) {
+               if (checkuser("ftp") || checkuser("anonymous"))
+                       reply(530, "User %s access denied.", name);
+               else if ((pw = sgetpwnam("ftp")) != NULL) {
+                       guest = 1;
+                       askpasswd = 1;
+                       reply(331, "Guest login ok, send ident as password.");
+               } else
+                       reply(530, "User %s unknown.", name);
+               return;
+       }
+       if (pw = sgetpwnam(name)) {
+               if ((shell = pw->pw_shell) == NULL || *shell == 0)
+                       shell = _PATH_BSHELL;
+               while ((cp = getusershell()) != NULL)
+                       if (strcmp(cp, shell) == 0)
+                               break;
+               endusershell();
+               if (cp == NULL || checkuser(name)) {
+                       reply(530, "User %s access denied.", name);
+                       if (logging)
+                               syslog(LOG_NOTICE,
+                                   "FTP LOGIN REFUSED FROM %s, %s",
+                                   remotehost, name);
+                       pw = (struct passwd *) NULL;
+                       return;
+               }
+       }
+       reply(331, "Password required for %s.", name);
+       askpasswd = 1;
+       /*
+        * Delay before reading passwd after first failed
+        * attempt to slow down passwd-guessing programs.
+        */
+       if (login_attempts)
+               sleep((unsigned) login_attempts);
+}
+
+/*
+ * Check if a user is in the file _PATH_FTPUSERS
+ */
+checkuser(name)
+       char *name;
+{
+       register FILE *fd;
+       register char *p;
+       char line[BUFSIZ];
+
+       if ((fd = fopen(_PATH_FTPUSERS, "r")) != NULL) {
+               while (fgets(line, sizeof(line), fd) != NULL)
+                       if ((p = index(line, '\n')) != NULL) {
+                               *p = '\0';
+                               if (line[0] == '#')
+                                       continue;
+                               if (strcmp(line, name) == 0)
+                                       return (1);
+                       }
+               (void) fclose(fd);
+       }
+       return (0);
+}
+
+/*
+ * Terminate login as previous user, if any, resetting state;
+ * used when USER command is given or login fails.
+ */
+end_login()
+{
+
+       (void) seteuid((uid_t)0);
+       if (logged_in)
+               logwtmp(ttyline, "", "");
+       pw = NULL;
+       logged_in = 0;
+       guest = 0;
+}
+
 pass(passwd)
        char *passwd;
 {
 pass(passwd)
        char *passwd;
 {
-       char *xpasswd, *savestr();
-       static struct passwd save;
+       char *xpasswd, *salt;
 
 
-       if (logged_in || pw == NULL) {
+       if (logged_in || askpasswd == 0) {
                reply(503, "Login with USER first.");
                return;
        }
                reply(503, "Login with USER first.");
                return;
        }
+       askpasswd = 0;
        if (!guest) {           /* "ftp" is only account allowed no password */
        if (!guest) {           /* "ftp" is only account allowed no password */
-               xpasswd = crypt(passwd, pw->pw_passwd);
+               if (pw == NULL)
+                       salt = "xx";
+               else
+                       salt = pw->pw_passwd;
+               xpasswd = crypt(passwd, salt);
                /* The strcmp does not catch null passwords! */
                /* The strcmp does not catch null passwords! */
-               if (*pw->pw_passwd == '\0' || strcmp(xpasswd, pw->pw_passwd)) {
+               if (pw == NULL || *pw->pw_passwd == '\0' ||
+                   strcmp(xpasswd, pw->pw_passwd)) {
                        reply(530, "Login incorrect.");
                        pw = NULL;
                        reply(530, "Login incorrect.");
                        pw = NULL;
+                       if (login_attempts++ >= 5) {
+                               syslog(LOG_NOTICE,
+                                   "repeated login failures from %s",
+                                   remotehost);
+                               exit(0);
+                       }
                        return;
                }
        }
                        return;
                }
        }
-       setegid(pw->pw_gid);
-       initgroups(pw->pw_name, pw->pw_gid);
-       if (chdir(pw->pw_dir)) {
-               reply(530, "User %s: can't change directory to %s.",
-                       pw->pw_name, pw->pw_dir);
-               goto bad;
-       }
+       login_attempts = 0;             /* this time successful */
+       (void) setegid((gid_t)pw->pw_gid);
+       (void) initgroups(pw->pw_name, pw->pw_gid);
 
 
-       /* grab wtmp before chroot */
-       wtmp = open("/usr/adm/wtmp", O_WRONLY|O_APPEND);
-       if (guest && chroot(pw->pw_dir) < 0) {
-               reply(550, "Can't set guest privileges.");
-               if (wtmp >= 0) {
-                       (void) close(wtmp);
-                       wtmp = -1;
+       /* open wtmp before chroot */
+       (void)sprintf(ttyline, "ftp%d", getpid());
+       logwtmp(ttyline, pw->pw_name, remotehost);
+       logged_in = 1;
+
+       if (guest) {
+               /*
+                * We MUST do a chdir() after the chroot. Otherwise
+                * the old current directory will be accessible as "."
+                * outside the new root!
+                */
+               if (chroot(pw->pw_dir) < 0 || chdir("/") < 0) {
+                       reply(550, "Can't set guest privileges.");
+                       goto bad;
                }
                }
+       } else if (chdir(pw->pw_dir) < 0) {
+               if (chdir("/") < 0) {
+                       reply(530, "User %s: can't change directory to %s.",
+                           pw->pw_name, pw->pw_dir);
+                       goto bad;
+               } else
+                       lreply(230, "No directory! Logging in with home=/");
+       }
+       if (seteuid((uid_t)pw->pw_uid) < 0) {
+               reply(550, "Can't set uid.");
                goto bad;
        }
                goto bad;
        }
-       if (!guest)
-               reply(230, "User %s logged in.", pw->pw_name);
-       else
+       if (guest) {
                reply(230, "Guest login ok, access restrictions apply.");
                reply(230, "Guest login ok, access restrictions apply.");
-       logged_in = 1;
-       dologin(pw);
-       seteuid(pw->pw_uid);
-       /*
-        * Save everything so globbing doesn't
-        * clobber the fields.
-        */
-       save = *pw;
-       save.pw_name = savestr(pw->pw_name);
-       save.pw_passwd = savestr(pw->pw_passwd);
-       save.pw_comment = savestr(pw->pw_comment);
-       save.pw_gecos = savestr(pw->pw_gecos);
-       save.pw_dir = savestr(pw->pw_dir);
-       save.pw_shell = savestr(pw->pw_shell);
-       pw = &save;
+#ifdef SETPROCTITLE
+               sprintf(proctitle, "%s: anonymous/%.*s", remotehost,
+                   sizeof(proctitle) - sizeof(remotehost) -
+                   sizeof(": anonymous/"), passwd);
+               setproctitle(proctitle);
+#endif /* SETPROCTITLE */
+               if (logging)
+                       syslog(LOG_INFO, "ANONYMOUS FTP LOGIN FROM %s, %s",
+                           remotehost, passwd);
+       } else {
+               reply(230, "User %s logged in.", pw->pw_name);
+#ifdef SETPROCTITLE
+               sprintf(proctitle, "%s: %s", remotehost, pw->pw_name);
+               setproctitle(proctitle);
+#endif /* SETPROCTITLE */
+               if (logging)
+                       syslog(LOG_INFO, "FTP LOGIN FROM %s, %s",
+                           remotehost, pw->pw_name);
+       }
        home = pw->pw_dir;              /* home dir for globbing */
        home = pw->pw_dir;              /* home dir for globbing */
+       (void) umask(defumask);
        return;
 bad:
        return;
 bad:
-       seteuid(0);
-       pw = NULL;
-}
-
-char *
-savestr(s)
-       char *s;
-{
-       char *malloc();
-       char *new = malloc((unsigned) strlen(s) + 1);
-       
-       if (new != NULL)
-               (void) strcpy(new, s);
-       return (new);
+       /* Forget all about it... */
+       end_login();
 }
 
 retrieve(cmd, name)
 }
 
 retrieve(cmd, name)
@@ -265,42 +509,52 @@ retrieve(cmd, name)
 {
        FILE *fin, *dout;
        struct stat st;
 {
        FILE *fin, *dout;
        struct stat st;
-       int (*closefunc)(), tmp;
+       int (*closefunc)();
 
        if (cmd == 0) {
 
        if (cmd == 0) {
-#ifdef notdef
-               /* no remote command execution -- it's a security hole */
-               if (*name == '|')
-                       fin = popen(name + 1, "r"), closefunc = pclose;
-               else
-#endif
-                       fin = fopen(name, "r"), closefunc = fclose;
+               fin = fopen(name, "r"), closefunc = fclose;
+               st.st_size = 0;
        } else {
                char line[BUFSIZ];
 
                (void) sprintf(line, cmd, name), name = line;
        } else {
                char line[BUFSIZ];
 
                (void) sprintf(line, cmd, name), name = line;
-               fin = popen(line, "r"), closefunc = pclose;
+               fin = ftpd_popen(line, "r"), closefunc = ftpd_pclose;
+               st.st_size = -1;
+               st.st_blksize = BUFSIZ;
        }
        if (fin == NULL) {
                if (errno != 0)
        }
        if (fin == NULL) {
                if (errno != 0)
-                       reply(550, "%s: %s.", name, sys_errlist[errno]);
+                       perror_reply(550, name);
                return;
        }
                return;
        }
-       st.st_size = 0;
        if (cmd == 0 &&
        if (cmd == 0 &&
-           (stat(name, &st) < 0 || (st.st_mode&S_IFMT) != S_IFREG)) {
+           (fstat(fileno(fin), &st) < 0 || (st.st_mode&S_IFMT) != S_IFREG)) {
                reply(550, "%s: not a plain file.", name);
                goto done;
        }
                reply(550, "%s: not a plain file.", name);
                goto done;
        }
+       if (restart_point) {
+               if (type == TYPE_A) {
+                       register int i, n, c;
+
+                       n = restart_point;
+                       i = 0;
+                       while (i++ < n) {
+                               if ((c=getc(fin)) == EOF) {
+                                       perror_reply(550, name);
+                                       goto done;
+                               }
+                               if (c == '\n')
+                                       i++;
+                       }       
+               } else if (lseek(fileno(fin), restart_point, L_SET) < 0) {
+                       perror_reply(550, name);
+                       goto done;
+               }
+       }
        dout = dataconn(name, st.st_size, "w");
        if (dout == NULL)
                goto done;
        dout = dataconn(name, st.st_size, "w");
        if (dout == NULL)
                goto done;
-       if ((tmp = send_data(fin, dout)) > 0 || ferror(dout) > 0) {
-               reply(550, "%s: %s.", name, sys_errlist[errno]);
-       }
-       else if (tmp == 0) {
-               reply(226, "Transfer complete.");
-       }
+       send_data(fin, dout, st.st_blksize);
        (void) fclose(dout);
        data = -1;
        pdata = -1;
        (void) fclose(dout);
        data = -1;
        pdata = -1;
@@ -308,56 +562,69 @@ done:
        (*closefunc)(fin);
 }
 
        (*closefunc)(fin);
 }
 
-store(name, mode)
+store(name, mode, unique)
        char *name, *mode;
        char *name, *mode;
+       int unique;
 {
        FILE *fout, *din;
 {
        FILE *fout, *din;
-       int (*closefunc)(), dochown = 0, tmp;
-       char *gunique(), *local;
+       struct stat st;
+       int (*closefunc)();
+       char *gunique();
 
 
-#ifdef notdef
-       /* no remote command execution -- it's a security hole */
-       if (name[0] == '|')
-               fout = popen(&name[1], "w"), closefunc = pclose;
-       else
-#endif
-       {
-               struct stat st;
+       if (unique && stat(name, &st) == 0 &&
+           (name = gunique(name)) == NULL)
+               return;
 
 
-               local = name;
-               if (stat(name, &st) < 0) {
-                       dochown++;
-               }
-               else if (unique) {
-                       if ((local = gunique(name)) == NULL) {
-                               return;
-                       }
-                       dochown++;
-               }
-               fout = fopen(local, mode), closefunc = fclose;
-       }
+       if (restart_point)
+               mode = "r+w";
+       fout = fopen(name, mode);
+       closefunc = fclose;
        if (fout == NULL) {
        if (fout == NULL) {
-               reply(553, "%s: %s.", local, sys_errlist[errno]);
+               perror_reply(553, name);
                return;
        }
                return;
        }
-       din = dataconn(local, (off_t)-1, "r");
+       if (restart_point) {
+               if (type == TYPE_A) {
+                       register int i, n, c;
+
+                       n = restart_point;
+                       i = 0;
+                       while (i++ < n) {
+                               if ((c=getc(fout)) == EOF) {
+                                       perror_reply(550, name);
+                                       goto done;
+                               }
+                               if (c == '\n')
+                                       i++;
+                       }       
+                       /*
+                        * We must do this seek to "current" position
+                        * because we are changing from reading to
+                        * writing.
+                        */
+                       if (fseek(fout, 0L, L_INCR) < 0) {
+                               perror_reply(550, name);
+                               goto done;
+                       }
+               } else if (lseek(fileno(fout), restart_point, L_SET) < 0) {
+                       perror_reply(550, name);
+                       goto done;
+               }
+       }
+       din = dataconn(name, (off_t)-1, "r");
        if (din == NULL)
                goto done;
        if (din == NULL)
                goto done;
-       if ((tmp = receive_data(din, fout)) > 0 || ferror(fout) > 0) {
-               reply(552, "%s: %s.", local, sys_errlist[errno]);
-       }
-       else if (tmp == 0 && !unique) {
-               reply(226, "Transfer complete.");
-       }
-       else if (tmp == 0 && unique) {
-               reply(226, "Transfer complete (unique file name:%s).", local);
+       if (receive_data(din, fout) == 0) {
+               if (unique)
+                       reply(226, "Transfer complete (unique file name:%s).",
+                           name);
+               else
+                       reply(226, "Transfer complete.");
        }
        (void) fclose(din);
        data = -1;
        pdata = -1;
 done:
        }
        (void) fclose(din);
        data = -1;
        pdata = -1;
 done:
-       if (dochown)
-               (void) chown(local, pw->pw_uid, -1);
        (*closefunc)(fout);
 }
 
        (*closefunc)(fout);
 }
 
@@ -365,25 +632,37 @@ FILE *
 getdatasock(mode)
        char *mode;
 {
 getdatasock(mode)
        char *mode;
 {
-       int s, on = 1;
+       int s, on = 1, tries;
 
        if (data >= 0)
                return (fdopen(data, mode));
        s = socket(AF_INET, SOCK_STREAM, 0);
        if (s < 0)
                return (NULL);
 
        if (data >= 0)
                return (fdopen(data, mode));
        s = socket(AF_INET, SOCK_STREAM, 0);
        if (s < 0)
                return (NULL);
-       seteuid(0);
-       if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char *) &on, sizeof (on)) < 0)
+       (void) seteuid((uid_t)0);
+       if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
+           (char *) &on, sizeof (on)) < 0)
                goto bad;
        /* anchor socket to avoid multi-homing problems */
        data_source.sin_family = AF_INET;
        data_source.sin_addr = ctrl_addr.sin_addr;
                goto bad;
        /* anchor socket to avoid multi-homing problems */
        data_source.sin_family = AF_INET;
        data_source.sin_addr = ctrl_addr.sin_addr;
-       if (bind(s, &data_source, sizeof (data_source)) < 0)
-               goto bad;
-       seteuid(pw->pw_uid);
+       for (tries = 1; ; tries++) {
+               if (bind(s, (struct sockaddr *)&data_source,
+                   sizeof (data_source)) >= 0)
+                       break;
+               if (errno != EADDRINUSE || tries > 10)
+                       goto bad;
+               sleep(tries);
+       }
+       (void) seteuid((uid_t)pw->pw_uid);
+#ifdef IP_TOS
+       on = IPTOS_THROUGHPUT;
+       if (setsockopt(s, IPPROTO_IP, IP_TOS, (char *)&on, sizeof(int)) < 0)
+               syslog(LOG_WARNING, "setsockopt (IP_TOS): %m");
+#endif
        return (fdopen(s, mode));
 bad:
        return (fdopen(s, mode));
 bad:
-       seteuid(pw->pw_uid);
+       (void) seteuid((uid_t)pw->pw_uid);
        (void) close(s);
        return (NULL);
 }
        (void) close(s);
        return (NULL);
 }
@@ -396,17 +675,19 @@ dataconn(name, size, mode)
 {
        char sizebuf[32];
        FILE *file;
 {
        char sizebuf[32];
        FILE *file;
-       int retry = 0;
+       int retry = 0, tos;
 
 
-       if (size >= 0)
+       file_size = size;
+       byte_count = 0;
+       if (size != (off_t) -1)
                (void) sprintf (sizebuf, " (%ld bytes)", size);
        else
                (void) strcpy(sizebuf, "");
                (void) sprintf (sizebuf, " (%ld bytes)", size);
        else
                (void) strcpy(sizebuf, "");
-       if (pdata > 0) {
+       if (pdata >= 0) {
                struct sockaddr_in from;
                int s, fromlen = sizeof(from);
 
                struct sockaddr_in from;
                int s, fromlen = sizeof(from);
 
-               s = accept(pdata, &from, &fromlen);
+               s = accept(pdata, (struct sockaddr *)&from, &fromlen);
                if (s < 0) {
                        reply(425, "Can't open data connection.");
                        (void) close(pdata);
                if (s < 0) {
                        reply(425, "Can't open data connection.");
                        (void) close(pdata);
@@ -415,9 +696,13 @@ dataconn(name, size, mode)
                }
                (void) close(pdata);
                pdata = s;
                }
                (void) close(pdata);
                pdata = s;
-               reply(150, "Openning data connection for %s (%s,%d)%s.",
-                    name, inet_ntoa(from.sin_addr),
-                    ntohs(from.sin_port), sizebuf);
+#ifdef IP_TOS
+               tos = IPTOS_LOWDELAY;
+               (void) setsockopt(s, IPPROTO_IP, IP_TOS, (char *)&tos,
+                   sizeof(int));
+#endif
+               reply(150, "Opening %s mode data connection for %s%s.",
+                    type == TYPE_A ? "ASCII" : "BINARY", name, sizebuf);
                return(fdopen(pdata, mode));
        }
        if (data >= 0) {
                return(fdopen(pdata, mode));
        }
        if (data >= 0) {
@@ -433,87 +718,104 @@ dataconn(name, size, mode)
        if (file == NULL) {
                reply(425, "Can't create data socket (%s,%d): %s.",
                    inet_ntoa(data_source.sin_addr),
        if (file == NULL) {
                reply(425, "Can't create data socket (%s,%d): %s.",
                    inet_ntoa(data_source.sin_addr),
-                   ntohs(data_source.sin_port),
-                   sys_errlist[errno]);
+                   ntohs(data_source.sin_port), strerror(errno));
                return (NULL);
        }
                return (NULL);
        }
-       reply(150, "Opening data connection for %s (%s,%d)%s.",
-           name, inet_ntoa(data_dest.sin_addr),
-           ntohs(data_dest.sin_port), sizebuf);
        data = fileno(file);
        data = fileno(file);
-       while (connect(data, &data_dest, sizeof (data_dest)) < 0) {
+       while (connect(data, (struct sockaddr *)&data_dest,
+           sizeof (data_dest)) < 0) {
                if (errno == EADDRINUSE && retry < swaitmax) {
                        sleep((unsigned) swaitint);
                        retry += swaitint;
                        continue;
                }
                if (errno == EADDRINUSE && retry < swaitmax) {
                        sleep((unsigned) swaitint);
                        retry += swaitint;
                        continue;
                }
-               reply(425, "Can't build data connection: %s.",
-                   sys_errlist[errno]);
+               perror_reply(425, "Can't build data connection");
                (void) fclose(file);
                data = -1;
                return (NULL);
        }
                (void) fclose(file);
                data = -1;
                return (NULL);
        }
+       reply(150, "Opening %s mode data connection for %s%s.",
+            type == TYPE_A ? "ASCII" : "BINARY", name, sizebuf);
        return (file);
 }
 
 /*
  * Tranfer the contents of "instr" to
  * "outstr" peer using the appropriate
        return (file);
 }
 
 /*
  * Tranfer the contents of "instr" to
  * "outstr" peer using the appropriate
- * encapulation of the date subject
+ * encapsulation of the data subject
  * to Mode, Structure, and Type.
  *
  * NB: Form isn't handled.
  */
  * to Mode, Structure, and Type.
  *
  * NB: Form isn't handled.
  */
-send_data(instr, outstr)
+send_data(instr, outstr, blksize)
        FILE *instr, *outstr;
        FILE *instr, *outstr;
+       off_t blksize;
 {
 {
-       register int c;
-       int netfd, filefd, cnt;
-       char buf[BUFSIZ];
+       register int c, cnt;
+       register char *buf;
+       int netfd, filefd;
 
        transflag++;
        if (setjmp(urgcatch)) {
                transflag = 0;
 
        transflag++;
        if (setjmp(urgcatch)) {
                transflag = 0;
-               return(-1);
+               return;
        }
        switch (type) {
 
        case TYPE_A:
                while ((c = getc(instr)) != EOF) {
        }
        switch (type) {
 
        case TYPE_A:
                while ((c = getc(instr)) != EOF) {
+                       byte_count++;
                        if (c == '\n') {
                        if (c == '\n') {
-                               if (ferror (outstr)) {
-                                       transflag = 0;
-                                       return (1);
-                               }
-                               putc('\r', outstr);
+                               if (ferror(outstr))
+                                       goto data_err;
+                               (void) putc('\r', outstr);
                        }
                        }
-                       putc(c, outstr);
-               /*      if (c == '\r')                  */
-               /*              putc ('\0', outstr);    */
+                       (void) putc(c, outstr);
                }
                }
+               fflush(outstr);
                transflag = 0;
                transflag = 0;
-               if (ferror (instr) || ferror (outstr)) {
-                       return (1);
-               }
-               return (0);
-               
+               if (ferror(instr))
+                       goto file_err;
+               if (ferror(outstr))
+                       goto data_err;
+               reply(226, "Transfer complete.");
+               return;
+
        case TYPE_I:
        case TYPE_L:
        case TYPE_I:
        case TYPE_L:
+               if ((buf = malloc((u_int)blksize)) == NULL) {
+                       transflag = 0;
+                       perror_reply(451, "Local resource failure: malloc");
+                       return;
+               }
                netfd = fileno(outstr);
                filefd = fileno(instr);
                netfd = fileno(outstr);
                filefd = fileno(instr);
-
-               while ((cnt = read(filefd, buf, sizeof (buf))) > 0) {
-                       if (write(netfd, buf, cnt) < 0) {
-                               transflag = 0;
-                               return (1);
-                       }
+               while ((cnt = read(filefd, buf, (u_int)blksize)) > 0 &&
+                   write(netfd, buf, cnt) == cnt)
+                       byte_count += cnt;
+               transflag = 0;
+               (void)free(buf);
+               if (cnt != 0) {
+                       if (cnt < 0)
+                               goto file_err;
+                       goto data_err;
                }
                }
+               reply(226, "Transfer complete.");
+               return;
+       default:
                transflag = 0;
                transflag = 0;
-               return (cnt < 0);
+               reply(550, "Unimplemented TYPE %d in send_data", type);
+               return;
        }
        }
-       reply(550, "Unimplemented TYPE %d in send_data", type);
+
+data_err:
        transflag = 0;
        transflag = 0;
-       return (-1);
+       perror_reply(426, "Data connection");
+       return;
+
+file_err:
+       transflag = 0;
+       perror_reply(551, "Error on input file");
 }
 
 /*
 }
 
 /*
@@ -528,27 +830,27 @@ receive_data(instr, outstr)
        FILE *instr, *outstr;
 {
        register int c;
        FILE *instr, *outstr;
 {
        register int c;
-       int cnt;
+       int cnt, bare_lfs = 0;
        char buf[BUFSIZ];
 
        char buf[BUFSIZ];
 
-
        transflag++;
        if (setjmp(urgcatch)) {
                transflag = 0;
        transflag++;
        if (setjmp(urgcatch)) {
                transflag = 0;
-               return(-1);
+               return (-1);
        }
        switch (type) {
 
        case TYPE_I:
        case TYPE_L:
                while ((cnt = read(fileno(instr), buf, sizeof buf)) > 0) {
        }
        switch (type) {
 
        case TYPE_I:
        case TYPE_L:
                while ((cnt = read(fileno(instr), buf, sizeof buf)) > 0) {
-                       if (write(fileno(outstr), buf, cnt) < 0) {
-                               transflag = 0;
-                               return (1);
-                       }
+                       if (write(fileno(outstr), buf, cnt) != cnt)
+                               goto file_err;
+                       byte_count += cnt;
                }
                }
+               if (cnt < 0)
+                       goto data_err;
                transflag = 0;
                transflag = 0;
-               return (cnt < 0);
+               return (0);
 
        case TYPE_E:
                reply(553, "TYPE E not implemented.");
 
        case TYPE_E:
                reply(553, "TYPE E not implemented.");
@@ -557,26 +859,130 @@ receive_data(instr, outstr)
 
        case TYPE_A:
                while ((c = getc(instr)) != EOF) {
 
        case TYPE_A:
                while ((c = getc(instr)) != EOF) {
-                       if (c == '\r') {
-                               if (ferror (outstr)) {
-                                       transflag = 0;
-                                       return (1);
+                       byte_count++;
+                       if (c == '\n')
+                               bare_lfs++;
+                       while (c == '\r') {
+                               if (ferror(outstr))
+                                       goto data_err;
+                               if ((c = getc(instr)) != '\n') {
+                                       (void) putc ('\r', outstr);
+                                       if (c == '\0' || c == EOF)
+                                               goto contin2;
                                }
                                }
-                               if ((c = getc(instr)) != '\n')
-                                       putc ('\r', outstr);
-                       /*      if (c == '\0')                  */
-                       /*              continue;               */
                        }
                        }
-                       putc (c, outstr);
+                       (void) putc(c, outstr);
+       contin2:        ;
                }
                }
+               fflush(outstr);
+               if (ferror(instr))
+                       goto data_err;
+               if (ferror(outstr))
+                       goto file_err;
                transflag = 0;
                transflag = 0;
-               if (ferror (instr) || ferror (outstr))
-                       return (1);
+               if (bare_lfs) {
+                       lreply(230, "WARNING! %d bare linefeeds received in ASCII mode", bare_lfs);
+                       printf("   File may not have transferred correctly.\r\n");
+               }
                return (0);
                return (0);
+       default:
+               reply(550, "Unimplemented TYPE %d in receive_data", type);
+               transflag = 0;
+               return (-1);
        }
        }
+
+data_err:
+       transflag = 0;
+       perror_reply(426, "Data Connection");
+       return (-1);
+
+file_err:
        transflag = 0;
        transflag = 0;
-       fatal("Unknown type in receive_data.");
-       /*NOTREACHED*/
+       perror_reply(452, "Error writing file");
+       return (-1);
+}
+
+statfilecmd(filename)
+       char *filename;
+{
+       char line[BUFSIZ];
+       FILE *fin;
+       int c;
+
+       (void) sprintf(line, "/bin/ls -lgA %s", filename);
+       fin = ftpd_popen(line, "r");
+       lreply(211, "status of %s:", filename);
+       while ((c = getc(fin)) != EOF) {
+               if (c == '\n') {
+                       if (ferror(stdout)){
+                               perror_reply(421, "control connection");
+                               (void) ftpd_pclose(fin);
+                               dologout(1);
+                               /* NOTREACHED */
+                       }
+                       if (ferror(fin)) {
+                               perror_reply(551, filename);
+                               (void) ftpd_pclose(fin);
+                               return;
+                       }
+                       (void) putc('\r', stdout);
+               }
+               (void) putc(c, stdout);
+       }
+       (void) ftpd_pclose(fin);
+       reply(211, "End of Status");
+}
+
+statcmd()
+{
+       struct sockaddr_in *sin;
+       u_char *a, *p;
+
+       lreply(211, "%s FTP server status:", hostname, version);
+       printf("     %s\r\n", version);
+       printf("     Connected to %s", remotehost);
+       if (!isdigit(remotehost[0]))
+               printf(" (%s)", inet_ntoa(his_addr.sin_addr));
+       printf("\r\n");
+       if (logged_in) {
+               if (guest)
+                       printf("     Logged in anonymously\r\n");
+               else
+                       printf("     Logged in as %s\r\n", pw->pw_name);
+       } else if (askpasswd)
+               printf("     Waiting for password\r\n");
+       else
+               printf("     Waiting for user name\r\n");
+       printf("     TYPE: %s", typenames[type]);
+       if (type == TYPE_A || type == TYPE_E)
+               printf(", FORM: %s", formnames[form]);
+       if (type == TYPE_L)
+#if NBBY == 8
+               printf(" %d", NBBY);
+#else
+               printf(" %d", bytesize);        /* need definition! */
+#endif
+       printf("; STRUcture: %s; transfer MODE: %s\r\n",
+           strunames[stru], modenames[mode]);
+       if (data != -1)
+               printf("     Data connection open\r\n");
+       else if (pdata != -1) {
+               printf("     in Passive mode");
+               sin = &pasv_addr;
+               goto printaddr;
+       } else if (usedefault == 0) {
+               printf("     PORT");
+               sin = &data_dest;
+printaddr:
+               a = (u_char *) &sin->sin_addr;
+               p = (u_char *) &sin->sin_port;
+#define UC(b) (((int) b) & 0xff)
+               printf(" (%d,%d,%d,%d,%d,%d)\r\n", UC(a[0]),
+                       UC(a[1]), UC(a[2]), UC(a[3]), UC(p[0]), UC(p[1]));
+#undef UC
+       } else
+               printf("     No data connection\r\n");
+       reply(211, "End of status");
 }
 
 fatal(s)
 }
 
 fatal(s)
@@ -585,36 +991,36 @@ fatal(s)
        reply(451, "Error in server: %s\n", s);
        reply(221, "Closing connection due to server error.");
        dologout(0);
        reply(451, "Error in server: %s\n", s);
        reply(221, "Closing connection due to server error.");
        dologout(0);
+       /* NOTREACHED */
 }
 
 }
 
-/*VARARGS2*/
-reply(n, s, args)
+/* VARARGS2 */
+reply(n, fmt, p0, p1, p2, p3, p4, p5)
        int n;
        int n;
-       char *s;
+       char *fmt;
 {
 {
-
        printf("%d ", n);
        printf("%d ", n);
-       _doprnt(s, &args, stdout);
+       printf(fmt, p0, p1, p2, p3, p4, p5);
        printf("\r\n");
        printf("\r\n");
-       (void) fflush(stdout);
+       (void)fflush(stdout);
        if (debug) {
                syslog(LOG_DEBUG, "<--- %d ", n);
        if (debug) {
                syslog(LOG_DEBUG, "<--- %d ", n);
-               syslog(LOG_DEBUG, s, &args);
-       }
+               syslog(LOG_DEBUG, fmt, p0, p1, p2, p3, p4, p5);
+}
 }
 
 }
 
-/*VARARGS2*/
-lreply(n, s, args)
+/* VARARGS2 */
+lreply(n, fmt, p0, p1, p2, p3, p4, p5)
        int n;
        int n;
-       char *s;
+       char *fmt;
 {
 {
-       printf("%d-", n);
-       _doprnt(s, &args, stdout);
+       printf("%d- ", n);
+       printf(fmt, p0, p1, p2, p3, p4, p5);
        printf("\r\n");
        printf("\r\n");
-       (void) fflush(stdout);
+       (void)fflush(stdout);
        if (debug) {
                syslog(LOG_DEBUG, "<--- %d- ", n);
        if (debug) {
                syslog(LOG_DEBUG, "<--- %d- ", n);
-               syslog(LOG_DEBUG, s, &args);
+               syslog(LOG_DEBUG, fmt, p0, p1, p2, p3, p4, p5);
        }
 }
 
        }
 }
 
@@ -630,14 +1036,15 @@ nack(s)
        reply(502, "%s command not implemented.", s);
 }
 
        reply(502, "%s command not implemented.", s);
 }
 
+/* ARGSUSED */
 yyerror(s)
        char *s;
 {
        char *cp;
 
 yyerror(s)
        char *s;
 {
        char *cp;
 
-       cp = index(cbuf,'\n');
-       *cp = '\0';
-       reply(500, "'%s': command not understood.",cbuf);
+       if (cp = index(cbuf,'\n'))
+               *cp = '\0';
+       reply(500, "'%s': command not understood.", cbuf);
 }
 
 delete(name)
 }
 
 delete(name)
@@ -646,18 +1053,18 @@ delete(name)
        struct stat st;
 
        if (stat(name, &st) < 0) {
        struct stat st;
 
        if (stat(name, &st) < 0) {
-               reply(550, "%s: %s.", name, sys_errlist[errno]);
+               perror_reply(550, name);
                return;
        }
        if ((st.st_mode&S_IFMT) == S_IFDIR) {
                if (rmdir(name) < 0) {
                return;
        }
        if ((st.st_mode&S_IFMT) == S_IFDIR) {
                if (rmdir(name) < 0) {
-                       reply(550, "%s: %s.", name, sys_errlist[errno]);
+                       perror_reply(550, name);
                        return;
                }
                goto done;
        }
        if (unlink(name) < 0) {
                        return;
                }
                goto done;
        }
        if (unlink(name) < 0) {
-               reply(550, "%s: %s.", name, sys_errlist[errno]);
+               perror_reply(550, name);
                return;
        }
 done:
                return;
        }
 done:
@@ -667,49 +1074,39 @@ done:
 cwd(path)
        char *path;
 {
 cwd(path)
        char *path;
 {
-
-       if (chdir(path) < 0) {
-               reply(550, "%s: %s.", path, sys_errlist[errno]);
-               return;
-       }
-       ack("CWD");
+       if (chdir(path) < 0)
+               perror_reply(550, path);
+       else
+               ack("CWD");
 }
 
 makedir(name)
        char *name;
 {
 }
 
 makedir(name)
        char *name;
 {
-       struct stat st;
-       int dochown = stat(name, &st) < 0;
-       
-       if (mkdir(name, 0777) < 0) {
-               reply(550, "%s: %s.", name, sys_errlist[errno]);
-               return;
-       }
-       if (dochown)
-               (void) chown(name, pw->pw_uid, -1);
-       reply(257, "MKD command successful.");
+       if (mkdir(name, 0777) < 0)
+               perror_reply(550, name);
+       else
+               reply(257, "MKD command successful.");
 }
 
 removedir(name)
        char *name;
 {
 }
 
 removedir(name)
        char *name;
 {
-
-       if (rmdir(name) < 0) {
-               reply(550, "%s: %s.", name, sys_errlist[errno]);
-               return;
-       }
-       ack("RMD");
+       if (rmdir(name) < 0)
+               perror_reply(550, name);
+       else
+               ack("RMD");
 }
 
 pwd()
 {
        char path[MAXPATHLEN + 1];
 }
 
 pwd()
 {
        char path[MAXPATHLEN + 1];
+       extern char *getwd();
 
 
-       if (getwd(path) == NULL) {
+       if (getwd(path) == (char *)NULL)
                reply(550, "%s.", path);
                reply(550, "%s.", path);
-               return;
-       }
-       reply(257, "\"%s\" is current directory.", path);
+       else
+               reply(257, "\"%s\" is current directory.", path);
 }
 
 char *
 }
 
 char *
@@ -719,7 +1116,7 @@ renamefrom(name)
        struct stat st;
 
        if (stat(name, &st) < 0) {
        struct stat st;
 
        if (stat(name, &st) < 0) {
-               reply(550, "%s: %s.", name, sys_errlist[errno]);
+               perror_reply(550, name);
                return ((char *)0);
        }
        reply(350, "File exists, ready for destination name");
                return ((char *)0);
        }
        reply(350, "File exists, ready for destination name");
@@ -729,59 +1126,34 @@ renamefrom(name)
 renamecmd(from, to)
        char *from, *to;
 {
 renamecmd(from, to)
        char *from, *to;
 {
-
-       if (rename(from, to) < 0) {
-               reply(550, "rename: %s.", sys_errlist[errno]);
-               return;
-       }
-       ack("RNTO");
+       if (rename(from, to) < 0)
+               perror_reply(550, "rename");
+       else
+               ack("RNTO");
 }
 
 dolog(sin)
        struct sockaddr_in *sin;
 {
 }
 
 dolog(sin)
        struct sockaddr_in *sin;
 {
-       struct hostent *hp = gethostbyaddr(&sin->sin_addr,
+       struct hostent *hp = gethostbyaddr((char *)&sin->sin_addr,
                sizeof (struct in_addr), AF_INET);
                sizeof (struct in_addr), AF_INET);
-       time_t t;
+       time_t t, time();
        extern char *ctime();
 
        extern char *ctime();
 
-       if (hp) {
+       if (hp)
                (void) strncpy(remotehost, hp->h_name, sizeof (remotehost));
                (void) strncpy(remotehost, hp->h_name, sizeof (remotehost));
-               endhostent();
-       } else
+       else
                (void) strncpy(remotehost, inet_ntoa(sin->sin_addr),
                    sizeof (remotehost));
                (void) strncpy(remotehost, inet_ntoa(sin->sin_addr),
                    sizeof (remotehost));
-       if (!logging)
-               return;
-       t = time((time_t *) 0);
-       syslog(LOG_INFO,"FTPD: connection from %s at %s", remotehost, ctime(&t));
-}
-
-#include <utmp.h>
-
-#define        SCPYN(a, b)     (void) strncpy(a, b, sizeof (a))
-struct utmp utmp;
-
-/*
- * Record login in wtmp file.
- */
-dologin(pw)
-       struct passwd *pw;
-{
-       char line[32];
-
-       if (wtmp >= 0) {
-               /* hack, but must be unique and no tty line */
-               (void) sprintf(line, "ftp%d", getpid());
-               SCPYN(utmp.ut_line, line);
-               SCPYN(utmp.ut_name, pw->pw_name);
-               SCPYN(utmp.ut_host, remotehost);
-               utmp.ut_time = (long) time((time_t *) 0);
-               (void) write(wtmp, (char *)&utmp, sizeof (utmp));
-               if (!guest) {           /* anon must hang on */
-                       (void) close(wtmp);
-                       wtmp = -1;
-               }
+#ifdef SETPROCTITLE
+       sprintf(proctitle, "%s: connected", remotehost);
+       setproctitle(proctitle);
+#endif /* SETPROCTITLE */
+
+       if (logging) {
+               t = time((time_t *) 0);
+               syslog(LOG_INFO, "connection from %s at %s",
+                   remotehost, ctime(&t));
        }
 }
 
        }
 }
 
@@ -792,306 +1164,290 @@ dologin(pw)
 dologout(status)
        int status;
 {
 dologout(status)
        int status;
 {
-
        if (logged_in) {
        if (logged_in) {
-               (void) seteuid(0);
-               if (wtmp < 0)
-                       wtmp = open("/usr/adm/wtmp", O_WRONLY|O_APPEND);
-               if (wtmp >= 0) {
-                       SCPYN(utmp.ut_name, "");
-                       SCPYN(utmp.ut_host, "");
-                       utmp.ut_time = (long) time((time_t *) 0);
-                       (void) write(wtmp, (char *)&utmp, sizeof (utmp));
-                       (void) close(wtmp);
-               }
+               (void) seteuid((uid_t)0);
+               logwtmp(ttyline, "", "");
        }
        /* beware of flushing buffers after a SIGPIPE */
        _exit(status);
 }
 
        }
        /* beware of flushing buffers after a SIGPIPE */
        _exit(status);
 }
 
-/*
- * Special version of popen which avoids
- * call to shell.  This insures noone may 
- * create a pipe to a hidden program as a side
- * effect of a list or dir command.
- */
-#define        tst(a,b)        (*mode == 'r'? (b) : (a))
-#define        RDR     0
-#define        WTR     1
-static int popen_pid[5];
-
-static char *
-nextarg(cpp)
-       char *cpp;
-{
-       register char *cp = cpp;
-
-       if (cp == 0)
-               return (cp);
-       while (*cp && *cp != ' ' && *cp != '\t')
-               cp++;
-       if (*cp == ' ' || *cp == '\t') {
-               *cp++ = '\0';
-               while (*cp == ' ' || *cp == '\t')
-                       cp++;
-       }
-       if (cp == cpp)
-               return ((char *)0);
-       return (cp);
-}
-
-FILE *
-popen(cmd, mode)
-       char *cmd, *mode;
-{
-       int p[2], ac, gac;
-       register myside, hisside, pid;
-       char *av[20], *gav[512];
-       register char *cp;
-
-       if (pipe(p) < 0)
-               return (NULL);
-       cp = cmd, ac = 0;
-       /* break up string into pieces */
-       do {
-               av[ac++] = cp;
-               cp = nextarg(cp);
-       } while (cp && *cp && ac < 20);
-       av[ac] = (char *)0;
-       gav[0] = av[0];
-       /* glob each piece */
-       for (gac = ac = 1; av[ac] != NULL; ac++) {
-               char **pop;
-               extern char **glob(), **copyblk();
-
-               pop = glob(av[ac]);
-               if (pop == (char **)NULL) {     /* globbing failed */
-                       char *vv[2];
-
-                       vv[0] = av[ac];
-                       vv[1] = 0;
-                       pop = copyblk(vv);
-               }
-               av[ac] = (char *)pop;           /* save to free later */
-               while (*pop && gac < 512)
-                       gav[gac++] = *pop++;
-       }
-       gav[gac] = (char *)0;
-       myside = tst(p[WTR], p[RDR]);
-       hisside = tst(p[RDR], p[WTR]);
-       if ((pid = fork()) == 0) {
-               /* myside and hisside reverse roles in child */
-               (void) close(myside);
-               (void) dup2(hisside, tst(0, 1));
-               (void) close(hisside);
-               execv(gav[0], gav);
-               _exit(1);
-       }
-       for (ac = 1; av[ac] != NULL; ac++)
-               blkfree((char **)av[ac]);
-       if (pid == -1)
-               return (NULL);
-       popen_pid[myside] = pid;
-       (void) close(hisside);
-       return (fdopen(myside, mode));
-}
-
-pclose(ptr)
-       FILE *ptr;
-{
-       register f, r, (*hstat)(), (*istat)(), (*qstat)();
-       int status;
-
-       f = fileno(ptr);
-       (void) fclose(ptr);
-       istat = signal(SIGINT, SIG_IGN);
-       qstat = signal(SIGQUIT, SIG_IGN);
-       hstat = signal(SIGHUP, SIG_IGN);
-       while ((r = wait(&status)) != popen_pid[f] && r != -1)
-               ;
-       if (r == -1)
-               status = -1;
-       (void) signal(SIGINT, istat);
-       (void) signal(SIGQUIT, qstat);
-       (void) signal(SIGHUP, hstat);
-       return (status);
-}
-
-/*
- * Check user requesting login priviledges.
- * Disallow anyone mentioned in the file FTPUSERS
- * to allow people such as uucp to be avoided.
- */
-checkuser(name)
-       register char *name;
-{
-       char line[BUFSIZ], *index();
-       FILE *fd;
-       int found = 0;
-
-       fd = fopen(FTPUSERS, "r");
-       if (fd == NULL)
-               return (1);
-       while (fgets(line, sizeof (line), fd) != NULL) {
-               register char *cp = index(line, '\n');
-
-               if (cp)
-                       *cp = '\0';
-               if (strcmp(line, name) == 0) {
-                       found++;
-                       break;
-               }
-       }
-       (void) fclose(fd);
-       return (!found);
-}
-
 myoob()
 {
 myoob()
 {
-       int aflag = 0, atmark;
-       char c, *cp;
+       char *cp;
 
 
-       if (!transflag) {
-               for (;;) {
-                       if (ioctl(fileno(stdin), (int) SIOCATMARK, (char *) &atmark) < 0) {
-                               syslog(LOG_ERR, "ioctl: %m");
-                               break;
-                       }
-                       if (atmark)
-                               break;
-                       (void) read(fileno(stdin), &c, 1);
-               }
-               (void) recv(fileno(stdin), &c, 1, MSG_OOB);
-               (void) read(fileno(stdin), &c, 1);
-               return;
-       }
-       for (;;) {
-               if (ioctl(fileno(stdin), (int) SIOCATMARK, (char *) &atmark) < 0) {
-                       syslog(LOG_ERR, "ioctl: %m");
-                       break;
-               }
-               if (atmark)
-                       break;
-               (void) read(fileno(stdin), &c, 1);
-               if (c == IAC || c == IP)
-                       aflag++;
-       }
-       (void) recv(fileno(stdin), &c, 1, MSG_OOB);
-       if (c == IAC)
-               aflag++;
-       (void) read(fileno(stdin), &c, 1);
-       if (c == DM)
-               aflag++;
-       if (aflag != 4)
+       /* only process if transfer occurring */
+       if (!transflag)
                return;
        cp = tmpline;
                return;
        cp = tmpline;
-       (void) getline(cp, 7, stdin);
+       if (getline(cp, 7, stdin) == NULL) {
+               reply(221, "You could at least say goodbye.");
+               dologout(0);
+       }
        upper(cp);
        upper(cp);
-       if (strcmp(cp, "ABOR\r\n"))
-               return;
-       tmpline[0] = '\0';
-       reply(426,"Transfer aborted. Data connection closed.");
-       reply(226,"Abort successful");
-       longjmp(urgcatch, 1);
+       if (strcmp(cp, "ABOR\r\n") == 0) {
+               tmpline[0] = '\0';
+               reply(426, "Transfer aborted. Data connection closed.");
+               reply(226, "Abort successful");
+               longjmp(urgcatch, 1);
+       }
+       if (strcmp(cp, "STAT\r\n") == 0) {
+               if (file_size != (off_t) -1)
+                       reply(213, "Status: %lu of %lu bytes transferred",
+                           byte_count, file_size);
+               else
+                       reply(213, "Status: %lu bytes transferred", byte_count);
+       }
 }
 
 /*
 }
 
 /*
- * Note: The 530 reply codes could be 4xx codes, except nothing is
- * given in the state tables except 421 which implies an exit.  (RFC959)
+ * Note: a response of 425 is not mentioned as a possible response to
+ *     the PASV command in RFC959. However, it has been blessed as
+ *     a legitimate response by Jon Postel in a telephone conversation
+ *     with Rick Adams on 25 Jan 89.
  */
 passive()
 {
        int len;
  */
 passive()
 {
        int len;
-       struct sockaddr_in tmp;
        register char *p, *a;
 
        pdata = socket(AF_INET, SOCK_STREAM, 0);
        if (pdata < 0) {
        register char *p, *a;
 
        pdata = socket(AF_INET, SOCK_STREAM, 0);
        if (pdata < 0) {
-               reply(530, "Can't open passive connection");
+               perror_reply(425, "Can't open passive connection");
                return;
        }
                return;
        }
-       tmp = ctrl_addr;
-       tmp.sin_port = 0;
-       seteuid(0);
-       if (bind(pdata, (struct sockaddr *) &tmp, sizeof(tmp)) < 0) {
-               seteuid(pw->pw_uid);
-               (void) close(pdata);
-               pdata = -1;
-               reply(530, "Can't open passive connection");
-               return;
-       }
-       seteuid(pw->pw_uid);
-       len = sizeof(tmp);
-       if (getsockname(pdata, (char *) &tmp, &len) < 0) {
-               (void) close(pdata);
-               pdata = -1;
-               reply(530, "Can't open passive connection");
-               return;
+       pasv_addr = ctrl_addr;
+       pasv_addr.sin_port = 0;
+       (void) seteuid((uid_t)0);
+       if (bind(pdata, (struct sockaddr *)&pasv_addr, sizeof(pasv_addr)) < 0) {
+               (void) seteuid((uid_t)pw->pw_uid);
+               goto pasv_error;
        }
        }
-       if (listen(pdata, 1) < 0) {
-               (void) close(pdata);
-               pdata = -1;
-               reply(530, "Can't open passive connection");
-               return;
-       }
-       a = (char *) &tmp.sin_addr;
-       p = (char *) &tmp.sin_port;
+       (void) seteuid((uid_t)pw->pw_uid);
+       len = sizeof(pasv_addr);
+       if (getsockname(pdata, (struct sockaddr *) &pasv_addr, &len) < 0)
+               goto pasv_error;
+       if (listen(pdata, 1) < 0)
+               goto pasv_error;
+       a = (char *) &pasv_addr.sin_addr;
+       p = (char *) &pasv_addr.sin_port;
 
 #define UC(b) (((int) b) & 0xff)
 
        reply(227, "Entering Passive Mode (%d,%d,%d,%d,%d,%d)", UC(a[0]),
                UC(a[1]), UC(a[2]), UC(a[3]), UC(p[0]), UC(p[1]));
 
 #define UC(b) (((int) b) & 0xff)
 
        reply(227, "Entering Passive Mode (%d,%d,%d,%d,%d,%d)", UC(a[0]),
                UC(a[1]), UC(a[2]), UC(a[3]), UC(p[0]), UC(p[1]));
+       return;
+
+pasv_error:
+       (void) close(pdata);
+       pdata = -1;
+       perror_reply(425, "Can't open passive connection");
+       return;
 }
 
 }
 
+/*
+ * Generate unique name for file with basename "local".
+ * The file named "local" is already known to exist.
+ * Generates failure reply on error.
+ */
 char *
 gunique(local)
        char *local;
 {
        static char new[MAXPATHLEN];
 char *
 gunique(local)
        char *local;
 {
        static char new[MAXPATHLEN];
+       struct stat st;
        char *cp = rindex(local, '/');
        char *cp = rindex(local, '/');
-       int d, count=0;
-       char ext = '1';
+       int count = 0;
 
 
-       if (cp) {
+       if (cp)
                *cp = '\0';
                *cp = '\0';
-       }
-       d = access(cp ? local : ".", 2);
-       if (cp) {
-               *cp = '/';
-       }
-       if (d < 0) {
-               syslog(LOG_ERR, "%s: %m", local);
+       if (stat(cp ? local : ".", &st) < 0) {
+               perror_reply(553, cp ? local : ".");
                return((char *) 0);
        }
                return((char *) 0);
        }
+       if (cp)
+               *cp = '/';
        (void) strcpy(new, local);
        cp = new + strlen(new);
        *cp++ = '.';
        (void) strcpy(new, local);
        cp = new + strlen(new);
        *cp++ = '.';
-       while (!d) {
-               if (++count == 100) {
-                       reply(452, "Unique file name not cannot be created.");
-                       return((char *) 0);
-               }
-               *cp++ = ext;
-               *cp = '\0';
-               if (ext == '9') {
-                       ext = '0';
-               }
-               else {
-                       ext++;
-               }
-               if ((d = access(new, 0)) < 0) {
-                       break;
-               }
-               if (ext != '0') {
-                       cp--;
+       for (count = 1; count < 100; count++) {
+               (void) sprintf(cp, "%d", count);
+               if (stat(new, &st) < 0)
+                       return(new);
+       }
+       reply(452, "Unique file name cannot be created.");
+       return((char *) 0);
+}
+
+/*
+ * Format and send reply containing system error number.
+ */
+perror_reply(code, string)
+       int code;
+       char *string;
+{
+       reply(code, "%s: %s.", string, strerror(errno));
+}
+
+static char *onefile[] = {
+       "",
+       0
+};
+
+send_file_list(whichfiles)
+       char *whichfiles;
+{
+       struct stat st;
+       DIR *dirp = NULL;
+       struct direct *dir;
+       FILE *dout = NULL;
+       register char **dirlist, *dirname;
+       int simple = 0;
+       char *strpbrk();
+
+       if (strpbrk(whichfiles, "~{[*?") != NULL) {
+               extern char **glob(), *globerr;
+
+               globerr = NULL;
+               dirlist = glob(whichfiles);
+               if (globerr != NULL) {
+                       reply(550, globerr);
+                       return;
+               } else if (dirlist == NULL) {
+                       errno = ENOENT;
+                       perror_reply(550, whichfiles);
+                       return;
                }
                }
-               else if (*(cp - 2) == '.') {
-                       *(cp - 1) = '1';
+       } else {
+               onefile[0] = whichfiles;
+               dirlist = onefile;
+               simple = 1;
+       }
+
+       if (setjmp(urgcatch)) {
+               transflag = 0;
+               return;
+       }
+       while (dirname = *dirlist++) {
+               if (stat(dirname, &st) < 0) {
+                       /*
+                        * If user typed "ls -l", etc, and the client
+                        * used NLST, do what the user meant.
+                        */
+                       if (dirname[0] == '-' && *dirlist == NULL &&
+                           transflag == 0) {
+                               retrieve("/bin/ls %s", dirname);
+                               return;
+                       }
+                       perror_reply(550, whichfiles);
+                       if (dout != NULL) {
+                               (void) fclose(dout);
+                               transflag = 0;
+                               data = -1;
+                               pdata = -1;
+                       }
+                       return;
                }
                }
-               else {
-                       *(cp - 2) = *(cp - 2) + 1;
-                       cp--;
+
+               if ((st.st_mode&S_IFMT) == S_IFREG) {
+                       if (dout == NULL) {
+                               dout = dataconn("file list", (off_t)-1, "w");
+                               if (dout == NULL)
+                                       return;
+                               transflag++;
+                       }
+                       fprintf(dout, "%s%s\n", dirname,
+                               type == TYPE_A ? "\r" : "");
+                       byte_count += strlen(dirname) + 1;
+                       continue;
+               } else if ((st.st_mode&S_IFMT) != S_IFDIR)
+                       continue;
+
+               if ((dirp = opendir(dirname)) == NULL)
+                       continue;
+
+               while ((dir = readdir(dirp)) != NULL) {
+                       char nbuf[MAXPATHLEN];
+
+                       if (dir->d_name[0] == '.' && dir->d_namlen == 1)
+                               continue;
+                       if (dir->d_name[0] == '.' && dir->d_name[1] == '.' &&
+                           dir->d_namlen == 2)
+                               continue;
+
+                       sprintf(nbuf, "%s/%s", dirname, dir->d_name);
+
+                       /*
+                        * We have to do a stat to insure it's
+                        * not a directory or special file.
+                        */
+                       if (simple || (stat(nbuf, &st) == 0 &&
+                           (st.st_mode&S_IFMT) == S_IFREG)) {
+                               if (dout == NULL) {
+                                       dout = dataconn("file list", (off_t)-1,
+                                               "w");
+                                       if (dout == NULL)
+                                               return;
+                                       transflag++;
+                               }
+                               if (nbuf[0] == '.' && nbuf[1] == '/')
+                                       fprintf(dout, "%s%s\n", &nbuf[2],
+                                               type == TYPE_A ? "\r" : "");
+                               else
+                                       fprintf(dout, "%s%s\n", nbuf,
+                                               type == TYPE_A ? "\r" : "");
+                               byte_count += strlen(nbuf) + 1;
+                       }
                }
                }
+               (void) closedir(dirp);
+       }
+
+       if (dout == NULL)
+               reply(550, "No files found.");
+       else if (ferror(dout) != 0)
+               perror_reply(550, "Data connection");
+       else
+               reply(226, "Transfer complete.");
+
+       transflag = 0;
+       if (dout != NULL)
+               (void) fclose(dout);
+       data = -1;
+       pdata = -1;
+}
+
+#ifdef SETPROCTITLE
+/*
+ * clobber argv so ps will show what we're doing.
+ * (stolen from sendmail)
+ * warning, since this is usually started from inetd.conf, it
+ * often doesn't have much of an environment or arglist to overwrite.
+ */
+
+/*VARARGS1*/
+setproctitle(fmt, a, b, c)
+char *fmt;
+{
+       register char *p, *bp, ch;
+       register int i;
+       char buf[BUFSIZ];
+
+       (void) sprintf(buf, fmt, a, b, c);
+
+       /* make ps print our process name */
+       p = Argv[0];
+       *p++ = '-';
+
+       i = strlen(buf);
+       if (i > LastArgv - p - 2) {
+               i = LastArgv - p - 2;
+               buf[i] = '\0';
        }
        }
-       return(new);
+       bp = buf;
+       while (ch = *bp++)
+               if (ch != '\n' && ch != '\r')
+                       *p++ = ch;
+       while (p < LastArgv)
+               *p++ = ' ';
 }
 }
+#endif /* SETPROCTITLE */