2 * Copyright (c) 1985, 1988, 1990, 1992, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #include "ftpd_locl.h"
43 static char version
[] = "Version 6.00";
45 extern off_t restart_point
;
48 struct sockaddr_storage ctrl_addr_ss
;
49 struct sockaddr
*ctrl_addr
= (struct sockaddr
*)&ctrl_addr_ss
;
51 struct sockaddr_storage data_source_ss
;
52 struct sockaddr
*data_source
= (struct sockaddr
*)&data_source_ss
;
54 struct sockaddr_storage data_dest_ss
;
55 struct sockaddr
*data_dest
= (struct sockaddr
*)&data_dest_ss
;
57 struct sockaddr_storage his_addr_ss
;
58 struct sockaddr
*his_addr
= (struct sockaddr
*)&his_addr_ss
;
60 struct sockaddr_storage pasv_addr_ss
;
61 struct sockaddr
*pasv_addr
= (struct sockaddr
*)&pasv_addr_ss
;
67 int ftpd_timeout
= 900; /* timeout after 15 minutes of inactivity */
68 int maxtimeout
= 7200;/* don't allow idle time to be set beyond 2 hours */
69 int restricted_data_ports
= 1;
75 int stru
; /* avoid C keyword */
77 int usedefault
= 1; /* for data transfers */
78 int pdata
= -1; /* for passive mode */
79 int allow_insecure_oob
= 1;
84 #if !defined(CMASK) || CMASK == 0
88 int defumask
= CMASK
; /* default umask value */
89 int guest_umask
= 0777; /* Paranoia for anonymous users */
91 char hostname
[MaxHostNameLen
];
92 char remotehost
[MaxHostNameLen
];
93 static char ttyline
[20];
96 #define AUTH_PLAIN (1 << 0) /* allow sending passwords */
97 #define AUTH_OTP (1 << 1) /* passwords are one-time */
98 #define AUTH_FTP (1 << 2) /* allow anonymous login */
100 static int auth_level
= 0; /* Only allow kerberos login by default */
103 * Timeout intervals for retrying connections
104 * to hosts that don't accept PORT cmds. This
105 * is a kludge, but given the problems with TCP...
107 #define SWAITMAX 90 /* wait at most 90 seconds */
108 #define SWAITINT 5 /* interval between retries */
110 int swaitmax
= SWAITMAX
;
111 int swaitint
= SWAITINT
;
113 #ifdef HAVE_SETPROCTITLE
114 char proctitle
[BUFSIZ
]; /* initial part of title */
115 #endif /* HAVE_SETPROCTITLE */
117 #define LOGCMD(cmd, file) \
119 syslog(LOG_INFO,"%s %s%s", cmd, \
120 *(file) == '/' ? "" : curdir(), file);
121 #define LOGCMD2(cmd, file1, file2) \
123 syslog(LOG_INFO,"%s %s%s %s%s", cmd, \
124 *(file1) == '/' ? "" : curdir(), file1, \
125 *(file2) == '/' ? "" : curdir(), file2);
126 #define LOGBYTES(cmd, file, cnt) \
128 if (cnt == (off_t)-1) \
129 syslog(LOG_INFO,"%s %s%s", cmd, \
130 *(file) == '/' ? "" : curdir(), file); \
132 syslog(LOG_INFO, "%s %s%s = %ld bytes", \
133 cmd, (*(file) == '/') ? "" : curdir(), file, (long)cnt); \
136 static void ack (char *);
137 static void myoob (int);
138 static int handleoobcmd(void);
139 static int checkuser (char *, char *);
140 static int checkaccess (char *);
141 static FILE *dataconn (const char *, off_t
, const char *);
142 static void dolog (struct sockaddr
*, int);
143 static void end_login (void);
144 static FILE *getdatasock (const char *, int);
145 static char *gunique (char *);
146 static RETSIGTYPE
lostconn (int);
147 static int receive_data (FILE *, FILE *);
148 static void send_data (FILE *, FILE *);
149 static struct passwd
* sgetpwnam (char *);
154 static char path
[MaxPathLen
+1]; /* path + '/' + '\0' */
156 if (getcwd(path
, sizeof(path
)-1) == NULL
)
158 if (path
[1] != '\0') /* special case for root dir. */
159 strlcat(path
, "/", sizeof(path
));
160 /* For guest account, skip / since it's chrooted */
161 return (guest
? path
+1 : path
);
165 #define LINE_MAX 1024
169 parse_auth_level(char *str
)
175 for(p
= strtok_r(str
, ",", &foo
);
177 p
= strtok_r(NULL
, ",", &foo
)) {
178 if(strcmp(p
, "user") == 0)
181 else if(strcmp(p
, "otp") == 0)
182 ret
|= AUTH_PLAIN
|AUTH_OTP
;
184 else if(strcmp(p
, "ftp") == 0 ||
185 strcmp(p
, "safe") == 0)
187 else if(strcmp(p
, "plain") == 0)
189 else if(strcmp(p
, "none") == 0)
190 ret
|= AUTH_PLAIN
|AUTH_FTP
;
192 warnx("bad value for -a: `%s'", p
);
198 * Print usage and die.
201 static int interactive_flag
;
202 static char *guest_umask_string
;
203 static char *port_string
;
204 static char *umask_string
;
205 static char *auth_string
;
207 int use_builtin_ls
= -1;
209 static int help_flag
;
210 static int version_flag
;
212 static const char *good_chars
= "+-=_,.";
214 struct getargs args
[] = {
215 { NULL
, 'a', arg_string
, &auth_string
, "required authentication" },
216 { NULL
, 'i', arg_flag
, &interactive_flag
, "don't assume stdin is a socket" },
217 { NULL
, 'p', arg_string
, &port_string
, "what port to listen to" },
218 { NULL
, 'g', arg_string
, &guest_umask_string
, "umask for guest logins" },
219 { NULL
, 'l', arg_counter
, &logging
, "log more stuff", "" },
220 { NULL
, 't', arg_integer
, &ftpd_timeout
, "initial timeout" },
221 { NULL
, 'T', arg_integer
, &maxtimeout
, "max timeout" },
222 { NULL
, 'u', arg_string
, &umask_string
, "umask for user logins" },
223 { NULL
, 'U', arg_negative_flag
, &restricted_data_ports
, "don't use high data ports" },
224 { NULL
, 'd', arg_flag
, &debug
, "enable debugging" },
225 { NULL
, 'v', arg_flag
, &debug
, "enable debugging" },
226 { "builtin-ls", 'B', arg_flag
, &use_builtin_ls
, "use built-in ls to list files" },
227 { "good-chars", 0, arg_string
, &good_chars
, "allowed anonymous upload filename chars" },
228 { "insecure-oob", 'I', arg_negative_flag
, &allow_insecure_oob
, "don't allow insecure OOB ABOR/STAT" },
230 { "gss-bindings", 0, arg_flag
, &ftp_do_gss_bindings
, "Require GSS-API bindings", NULL
},
232 { "version", 0, arg_flag
, &version_flag
},
233 { "help", 'h', arg_flag
, &help_flag
}
236 static int num_args
= sizeof(args
) / sizeof(args
[0]);
241 arg_printusage(args
, num_args
, NULL
, "");
245 /* output contents of a file */
247 show_file(const char *file
, int code
)
252 f
= fopen(file
, "r");
255 while(fgets(buf
, sizeof(buf
), f
)){
256 buf
[strcspn(buf
, "\r\n")] = '\0';
257 lreply(code
, "%s", buf
);
264 main(int argc
, char **argv
)
266 socklen_t his_addr_len
, ctrl_addr_len
;
273 setprogname (argv
[0]);
275 if(getarg(args
, num_args
, argc
, argv
, &optind
))
287 auth_level
= parse_auth_level(auth_string
);
292 if(guest_umask_string
) {
293 val
= strtol(guest_umask_string
, &p
, 8);
294 if (*p
!= '\0' || val
< 0)
295 warnx("bad value for -g");
300 val
= strtol(umask_string
, &p
, 8);
301 if (*p
!= '\0' || val
< 0)
302 warnx("bad value for -u");
307 sp
= getservbyname("ftp", "tcp");
313 sp
= getservbyname(port_string
, "tcp");
317 if(isdigit((unsigned char)port_string
[0]))
318 port
= htons(atoi(port_string
));
320 warnx("bad value for -p");
323 if (maxtimeout
< ftpd_timeout
)
324 maxtimeout
= ftpd_timeout
;
327 if (ftpd_timeout
> maxtimeout
)
328 ftpd_timeout
= maxtimeout
;
332 mini_inetd(port
, NULL
);
335 * LOG_NDELAY sets up the logging connection immediately,
336 * necessary for anonymous ftp's that chroot and can't do it later.
338 openlog("ftpd", LOG_PID
| LOG_NDELAY
, LOG_FTP
);
339 his_addr_len
= sizeof(his_addr_ss
);
340 if (getpeername(STDIN_FILENO
, his_addr
, &his_addr_len
) < 0) {
341 syslog(LOG_ERR
, "getpeername (%s): %m",argv
[0]);
344 ctrl_addr_len
= sizeof(ctrl_addr_ss
);
345 if (getsockname(STDIN_FILENO
, ctrl_addr
, &ctrl_addr_len
) < 0) {
346 syslog(LOG_ERR
, "getsockname (%s): %m",argv
[0]);
350 if (ctrl_addr
->sa_family
== AF_INET
)
351 socket_set_tos(STDIN_FILENO
, IP_TOS
);
353 data_source
->sa_family
= ctrl_addr
->sa_family
;
354 socket_set_port (data_source
,
355 htons(ntohs(socket_get_port(ctrl_addr
)) - 1));
357 /* set this here so it can be put in wtmp */
358 snprintf(ttyline
, sizeof(ttyline
), "ftp%u", (unsigned)getpid());
361 /* freopen(_PATH_DEVNULL, "w", stderr); */
362 signal(SIGPIPE
, lostconn
);
363 signal(SIGCHLD
, SIG_IGN
);
365 if (signal(SIGURG
, myoob
) == SIG_ERR
)
366 syslog(LOG_ERR
, "signal: %m");
369 /* Try to handle urgent data inline */
370 #if defined(SO_OOBINLINE) && defined(HAVE_SETSOCKOPT)
371 if (setsockopt(0, SOL_SOCKET
, SO_OOBINLINE
, (void *)&on
,
373 syslog(LOG_ERR
, "setsockopt: %m");
377 if (fcntl(fileno(stdin
), F_SETOWN
, getpid()) == -1)
378 syslog(LOG_ERR
, "fcntl F_SETOWN: %m");
380 dolog(his_addr
, his_addr_len
);
382 * Set up default state
391 /* If logins are disabled, print out the message. */
392 if(show_file(_PATH_NOLOGIN
, 530) == 0) {
393 reply(530, "System not available.");
396 show_file(_PATH_FTPWELCOME
, 220);
397 /* reply(220,) must follow */
398 gethostname(hostname
, sizeof(hostname
));
400 reply(220, "%s FTP server (%s"
404 ") ready.", hostname
, version
420 syslog(LOG_DEBUG
, "lost connection");
425 * Helper function for sgetpwnam().
430 char *new = strdup(s
);
433 perror_reply(421, "Local resource failure: malloc");
441 * Save the result of a getpwnam. Used for USER command, since
442 * the data returned must not be clobbered by any other command
445 static struct passwd
*
446 sgetpwnam(char *name
)
448 static struct passwd save
;
451 if ((p
= k_getpwnam(name
)) == NULL
)
455 free(save
.pw_passwd
);
461 save
.pw_name
= sgetsave(p
->pw_name
);
462 save
.pw_passwd
= sgetsave(p
->pw_passwd
);
463 save
.pw_gecos
= sgetsave(p
->pw_gecos
);
464 save
.pw_dir
= sgetsave(p
->pw_dir
);
465 save
.pw_shell
= sgetsave(p
->pw_shell
);
469 static int login_attempts
; /* number of failed login attempts */
470 static int askpasswd
; /* had user command, ask for passwd */
471 static char curname
[10]; /* current USER name */
478 * Sets global passwd pointer pw if named account exists and is acceptable;
479 * sets askpasswd if a PASS command is expected. If logged in previously,
480 * need to reset state. If name is "ftp" or "anonymous", the name is not in
481 * _PATH_FTPUSERS, and ftp account exists, set guest and pw, then just return.
482 * If account doesn't exist, ask for passwd anyway. Otherwise, check user
483 * requesting login privileges. Disallow anyone who does not have a standard
484 * shell as returned by getusershell(). Disallow anyone mentioned in the file
485 * _PATH_FTPUSERS to allow people such as root and uucp to be avoided.
492 if(auth_level
== 0 && !sec_complete
){
493 reply(530, "No login allowed without authorization.");
499 reply(530, "Can't change user from guest login.");
501 } else if (dochroot
) {
502 reply(530, "Can't change user from chroot user.");
509 if (strcmp(name
, "ftp") == 0 || strcmp(name
, "anonymous") == 0) {
510 if ((auth_level
& AUTH_FTP
) == 0 ||
511 checkaccess("ftp") ||
512 checkaccess("anonymous"))
513 reply(530, "User %s access denied.", name
);
514 else if ((pw
= sgetpwnam("ftp")) != NULL
) {
516 defumask
= guest_umask
; /* paranoia for incoming */
518 reply(331, "Guest login ok, type your name as password.");
520 reply(530, "User %s unknown.", name
);
521 if (!askpasswd
&& logging
) {
524 if (inet_ntop (his_addr
->sa_family
,
525 socket_get_address(his_addr
),
526 data_addr
, sizeof(data_addr
)) == NULL
)
527 strlcpy (data_addr
, "unknown address",
531 "ANONYMOUS FTP LOGIN REFUSED FROM %s(%s)",
532 remotehost
, data_addr
);
536 if((auth_level
& AUTH_PLAIN
) == 0 && !sec_complete
){
537 reply(530, "Only authorized and anonymous login allowed.");
540 if ((pw
= sgetpwnam(name
))) {
541 if ((shell
= pw
->pw_shell
) == NULL
|| *shell
== 0)
542 shell
= _PATH_BSHELL
;
543 while ((cp
= getusershell()) != NULL
)
544 if (strcmp(cp
, shell
) == 0)
548 if (cp
== NULL
|| checkaccess(name
)) {
549 reply(530, "User %s access denied.", name
);
553 if (inet_ntop (his_addr
->sa_family
,
554 socket_get_address(his_addr
),
556 sizeof(data_addr
)) == NULL
)
562 "FTP LOGIN REFUSED FROM %s(%s), %s",
567 pw
= (struct passwd
*) NULL
;
572 strlcpy(curname
, name
, sizeof(curname
));
574 if(sec_userok(name
) == 0) {
578 reply(530, "User %s access denied.", name
);
583 if (otp_challenge(&otp_ctx
, name
, ss
, sizeof(ss
)) == 0) {
584 reply(331, "Password %s for %s required.",
589 if ((auth_level
& AUTH_OTP
) == 0) {
590 reply(331, "Password required for %s.", name
);
596 if ((s
= otp_error (&otp_ctx
)) != NULL
)
597 lreply(530, "OTP: %s", s
);
600 "Only authorized, anonymous"
609 * Delay before reading passwd after first failed
610 * attempt to slow down passwd-guessing programs.
613 sleep(login_attempts
);
617 * Check if a user is in the file "fname"
620 checkuser(char *fname
, char *name
)
624 char *p
, line
[BUFSIZ
];
626 if ((fd
= fopen(fname
, "r")) != NULL
) {
627 while (fgets(line
, sizeof(line
), fd
) != NULL
)
628 if ((p
= strchr(line
, '\n')) != NULL
) {
632 if (strcmp(line
, name
) == 0) {
644 * Determine whether a user has access, based on information in
645 * _PATH_FTPUSERS. The users are listed one per line, with `allow'
646 * or `deny' after the username. If anything other than `allow', or
647 * just nothing, is given after the username, `deny' is assumed.
649 * If the user is not found in the file, but the pseudo-user `*' is,
650 * the permission is taken from that line.
652 * This preserves the old semantics where if a user was listed in the
653 * file he was denied, otherwise he was allowed.
655 * Return 1 if the user is denied, or 0 if he is allowed. */
658 match(const char *pattern
, const char *string
)
660 return fnmatch(pattern
, string
, FNM_NOESCAPE
);
664 checkaccess(char *name
)
667 #define NOT_ALLOWED 1
669 int allowed
= ALLOWED
;
670 char *user
, *perm
, line
[BUFSIZ
];
673 fd
= fopen(_PATH_FTPUSERS
, "r");
678 while (fgets(line
, sizeof(line
), fd
) != NULL
) {
680 user
= strtok_r(line
, " \t\n", &foo
);
681 if (user
== NULL
|| user
[0] == '#')
683 perm
= strtok_r(NULL
, " \t\n", &foo
);
684 if (match(user
, name
) == 0){
685 if(perm
&& strcmp(perm
, "allow") == 0)
688 allowed
= NOT_ALLOWED
;
699 int do_login(int code
, char *passwd
)
701 login_attempts
= 0; /* this time successful */
702 if (setegid((gid_t
)pw
->pw_gid
) < 0) {
703 reply(550, "Can't set gid.");
706 initgroups(pw
->pw_name
, pw
->pw_gid
);
712 /* open wtmp before chroot */
713 ftpd_logwtmp(ttyline
, pw
->pw_name
, remotehost
);
716 dochroot
= checkuser(_PATH_FTPCHROOT
, pw
->pw_name
);
719 * We MUST do a chdir() after the chroot. Otherwise
720 * the old current directory will be accessible as "."
721 * outside the new root!
723 if (chroot(pw
->pw_dir
) < 0 || chdir("/") < 0) {
724 reply(550, "Can't set guest privileges.");
727 } else if (dochroot
) {
728 if (chroot(pw
->pw_dir
) < 0 || chdir("/") < 0) {
729 reply(550, "Can't change root.");
732 } else if (chdir(pw
->pw_dir
) < 0) {
733 if (chdir("/") < 0) {
734 reply(530, "User %s: can't change directory to %s.",
735 pw
->pw_name
, pw
->pw_dir
);
738 lreply(code
, "No directory! Logging in with home=/");
740 if (seteuid((uid_t
)pw
->pw_uid
) < 0) {
741 reply(550, "Can't set uid.");
745 if(use_builtin_ls
== -1) {
747 /* if /bin/ls exist and is a regular file, use it, otherwise
749 if(stat("/bin/ls", &st
) == 0 &&
757 * Display a login message, if it exists.
758 * N.B. reply(code,) must follow the message.
760 show_file(_PATH_FTPLOGINMESG
, code
);
761 if(show_file(_PATH_ISSUE_NET
, code
) != 0)
762 show_file(_PATH_ISSUE
, code
);
764 reply(code
, "Guest login ok, access restrictions apply.");
765 #ifdef HAVE_SETPROCTITLE
766 snprintf (proctitle
, sizeof(proctitle
),
770 setproctitle("%s", proctitle
);
771 #endif /* HAVE_SETPROCTITLE */
775 if (inet_ntop (his_addr
->sa_family
,
776 socket_get_address(his_addr
),
777 data_addr
, sizeof(data_addr
)) == NULL
)
778 strlcpy (data_addr
, "unknown address",
781 syslog(LOG_INFO
, "ANONYMOUS FTP LOGIN FROM %s(%s), %s",
787 reply(code
, "User %s logged in.", pw
->pw_name
);
788 #ifdef HAVE_SETPROCTITLE
789 snprintf(proctitle
, sizeof(proctitle
), "%s: %s", remotehost
, pw
->pw_name
);
790 setproctitle("%s", proctitle
);
791 #endif /* HAVE_SETPROCTITLE */
795 if (inet_ntop (his_addr
->sa_family
,
796 socket_get_address(his_addr
),
797 data_addr
, sizeof(data_addr
)) == NULL
)
798 strlcpy (data_addr
, "unknown address",
801 syslog(LOG_INFO
, "FTP LOGIN FROM %s(%s) as %s",
812 * Terminate login as previous user, if any, resetting state;
813 * used when USER command is given or login fails.
819 if (seteuid((uid_t
)0) < 0)
820 fatal("Failed to seteuid");
822 ftpd_logwtmp(ttyline
, "", "");
831 krb5_verify(struct passwd
*pwd
, char *passwd
)
833 krb5_context context
;
835 krb5_principal princ
;
838 ret
= krb5_init_context(&context
);
842 ret
= krb5_parse_name(context
, pwd
->pw_name
, &princ
);
844 krb5_free_context(context
);
847 ret
= krb5_cc_new_unique(context
, "MEMORY", NULL
, &id
);
849 krb5_free_principal(context
, princ
);
850 krb5_free_context(context
);
853 ret
= krb5_verify_user(context
,
859 krb5_free_principal(context
, princ
);
861 krb5_afslog_uid_home(context
, id
,NULL
, NULL
,pwd
->pw_uid
, pwd
->pw_dir
);
863 krb5_cc_destroy(context
, id
);
864 krb5_free_context (context
);
876 /* some clients insists on sending a password */
877 if (logged_in
&& askpasswd
== 0){
878 reply(230, "Password not necessary");
882 if (logged_in
|| askpasswd
== 0) {
883 reply(503, "Login with USER first.");
888 if (!guest
) { /* "ftp" is only account allowed no password */
890 rval
= 1; /* failure below */
892 else if (otp_verify_user (&otp_ctx
, passwd
) == 0) {
896 else if((auth_level
& AUTH_OTP
) == 0) {
898 rval
= krb5_verify(pw
, passwd
);
901 rval
= unix_verify_user(pw
->pw_name
, passwd
);
905 if ((s
= otp_error(&otp_ctx
)) != NULL
)
906 lreply(530, "OTP: %s", s
);
909 memset (passwd
, 0, strlen(passwd
));
912 * If rval == 1, the user failed the authentication
913 * check above. If rval == 0, either Kerberos or
914 * local authentication succeeded.
919 if (inet_ntop (his_addr
->sa_family
,
920 socket_get_address(his_addr
),
921 data_addr
, sizeof(data_addr
)) == NULL
)
922 strlcpy (data_addr
, "unknown address",
925 reply(530, "Login incorrect.");
928 "FTP LOGIN FAILED FROM %s(%s), %s",
933 if (login_attempts
++ >= 5) {
935 "repeated login failures from %s(%s)",
943 if(!do_login(230, passwd
))
946 /* Forget all about it... */
951 retrieve(const char *cmd
, char *name
)
953 FILE *fin
= NULL
, *dout
;
955 int (*closefunc
) (FILE *);
960 fin
= fopen(name
, "r");
964 int save_errno
= errno
;
970 {".tar", "/bin/gtar cPf - %s", NULL
},
971 {".tar.gz", "/bin/gtar zcPf - %s", NULL
},
972 {".tar.Z", "/bin/gtar ZcPf - %s", NULL
},
973 {".gz", "/bin/gzip -c -- %s", "/bin/gzip -c -d -- %s"},
974 {".Z", "/bin/compress -c -- %s", "/bin/uncompress -c -- %s"},
978 for(p
= cmds
; p
->ext
; p
++){
979 char *tail
= name
+ strlen(name
) - strlen(p
->ext
);
982 if(strcmp(tail
, p
->ext
) == 0 &&
984 access(name
, R_OK
) == 0){
985 snprintf (line
, sizeof(line
), p
->cmd
, name
);
990 if (p
->rev_cmd
!= NULL
) {
994 ret
= asprintf(&ext
, "%s%s", name
, p
->ext
);
996 if (access(ext
, R_OK
) == 0) {
997 snprintf (line
, sizeof(line
),
1008 fin
= ftpd_popen(line
, "r", 0, 0);
1009 closefunc
= ftpd_pclose
;
1016 snprintf(line
, sizeof(line
), cmd
, name
);
1018 fin
= ftpd_popen(line
, "r", 1, 0);
1019 closefunc
= ftpd_pclose
;
1024 perror_reply(550, name
);
1026 LOGCMD("get", name
);
1033 if(fstat(fileno(fin
), &st
) < 0 || !S_ISREG(st
.st_mode
)) {
1034 reply(550, "%s: not a plain file.", name
);
1038 if (restart_point
) {
1039 if (type
== TYPE_A
) {
1046 if ((c
=getc(fin
)) == EOF
) {
1047 perror_reply(550, name
);
1053 } else if (lseek(fileno(fin
), restart_point
, SEEK_SET
) < 0) {
1054 perror_reply(550, name
);
1058 dout
= dataconn(name
, st
.st_size
, "w");
1061 set_buffer_size(fileno(dout
), 0);
1062 send_data(fin
, dout
);
1068 LOGBYTES("get", name
, byte_count
);
1072 /* filename sanity check */
1075 filename_check(char *filename
)
1079 p
= strrchr(filename
, '/');
1085 if(isalnum((unsigned char)*p
)){
1087 while(*p
&& (isalnum((unsigned char)*p
) || strchr(good_chars
, (unsigned char)*p
)))
1092 lreply(553, "\"%s\" is not an acceptable filename.", filename
);
1093 lreply(553, "The filename must start with an alphanumeric "
1094 "character and must only");
1095 reply(553, "consist of alphanumeric characters or any of the following: %s",
1101 do_store(char *name
, char *mode
, int unique
)
1105 int (*closefunc
) (FILE *);
1107 if(guest
&& filename_check(name
))
1111 if (stat(name
, &st
) == 0) {
1112 if ((uname
= gunique(name
)) == NULL
)
1116 LOGCMD(*mode
== 'w' ? "put" : "append", name
);
1121 fout
= fopen(name
, mode
);
1124 perror_reply(553, name
);
1125 LOGCMD(*mode
== 'w' ? "put" : "append", name
);
1129 if (restart_point
) {
1130 if (type
== TYPE_A
) {
1137 if ((c
=getc(fout
)) == EOF
) {
1138 perror_reply(550, name
);
1145 * We must do this seek to "current" position
1146 * because we are changing from reading to
1149 if (fseek(fout
, 0L, SEEK_CUR
) < 0) {
1150 perror_reply(550, name
);
1153 } else if (lseek(fileno(fout
), restart_point
, SEEK_SET
) < 0) {
1154 perror_reply(550, name
);
1158 din
= dataconn(name
, (off_t
)-1, "r");
1161 set_buffer_size(fileno(din
), 1);
1162 if (receive_data(din
, fout
) == 0) {
1163 if((*closefunc
)(fout
) < 0)
1164 perror_reply(552, name
);
1167 reply(226, "Transfer complete (unique file name:%s).",
1170 reply(226, "Transfer complete.");
1178 LOGBYTES(*mode
== 'w' ? "put" : "append", name
, byte_count
);
1182 getdatasock(const char *mode
, int domain
)
1187 return (fdopen(data
, mode
));
1189 fatal("Failed to seteuid");
1190 s
= socket(domain
, SOCK_STREAM
, 0);
1193 socket_set_reuseaddr (s
, 1);
1194 /* anchor socket to avoid multi-homing problems */
1195 socket_set_address_and_port (data_source
,
1196 socket_get_address (ctrl_addr
),
1197 socket_get_port (data_source
));
1199 for (tries
= 1; ; tries
++) {
1200 if (bind(s
, data_source
,
1201 socket_sockaddr_size (data_source
)) >= 0)
1203 if (errno
!= EADDRINUSE
|| tries
> 10)
1207 if (seteuid(pw
->pw_uid
) < 0)
1208 fatal("Failed to seteuid");
1209 #ifdef IPTOS_THROUGHPUT
1210 socket_set_tos (s
, IPTOS_THROUGHPUT
);
1212 return (fdopen(s
, mode
));
1214 /* Return the real value of errno (close may change it) */
1216 if (seteuid((uid_t
)pw
->pw_uid
) < 0)
1217 fatal("Failed to seteuid");
1224 accept_with_timeout(int socket
,
1225 struct sockaddr
*address
,
1226 socklen_t
*address_len
,
1227 struct timeval
*timeout
)
1232 FD_SET(socket
, &rfd
);
1233 ret
= select(socket
+ 1, &rfd
, NULL
, NULL
, timeout
);
1240 return accept(socket
, address
, address_len
);
1244 dataconn(const char *name
, off_t size
, const char *mode
)
1248 int domain
, retry
= 0;
1253 snprintf(sizebuf
, sizeof(sizebuf
), " (%ld bytes)", (long)size
);
1257 struct sockaddr_storage from_ss
;
1258 struct sockaddr
*from
= (struct sockaddr
*)&from_ss
;
1259 struct timeval timeout
;
1261 socklen_t fromlen
= sizeof(from_ss
);
1263 timeout
.tv_sec
= 15;
1264 timeout
.tv_usec
= 0;
1265 s
= accept_with_timeout(pdata
, from
, &fromlen
, &timeout
);
1267 reply(425, "Can't open data connection.");
1274 #if defined(IP_TOS) && defined(HAVE_SETSOCKOPT)
1275 if (from
->sa_family
== AF_INET
)
1276 socket_set_tos(s
, IPTOS_THROUGHPUT
);
1278 reply(150, "Opening %s mode data connection for '%s'%s.",
1279 type
== TYPE_A
? "ASCII" : "BINARY", name
, sizebuf
);
1280 return (fdopen(pdata
, mode
));
1283 reply(125, "Using existing data connection for '%s'%s.",
1286 return (fdopen(data
, mode
));
1289 data_dest
= his_addr
;
1292 * Default to using the same socket type as the ctrl address,
1293 * unless we know the type of the data address.
1295 domain
= data_dest
->sa_family
;
1296 if (domain
== PF_UNSPEC
)
1297 domain
= ctrl_addr
->sa_family
;
1299 file
= getdatasock(mode
, domain
);
1301 char data_addr
[256];
1303 if (inet_ntop (data_source
->sa_family
,
1304 socket_get_address(data_source
),
1305 data_addr
, sizeof(data_addr
)) == NULL
)
1306 strlcpy (data_addr
, "unknown address",
1309 reply(425, "Can't create data socket (%s,%d): %s.",
1311 socket_get_port (data_source
),
1315 data
= fileno(file
);
1316 while (connect(data
, data_dest
,
1317 socket_sockaddr_size(data_dest
)) < 0) {
1318 if (errno
== EADDRINUSE
&& retry
< swaitmax
) {
1323 perror_reply(425, "Can't build data connection");
1328 reply(150, "Opening %s mode data connection for '%s'%s.",
1329 type
== TYPE_A
? "ASCII" : "BINARY", name
, sizebuf
);
1334 * Tranfer the contents of "instr" to "outstr" peer using the appropriate
1335 * encapsulation of the data subject * to Mode, Structure, and Type.
1337 * NB: Form isn't handled.
1340 send_data(FILE *instr
, FILE *outstr
)
1342 int c
, cnt
, filefd
, netfd
;
1344 static size_t bufsize
;
1350 while ((c
= getc(instr
)) != EOF
) {
1351 if (urgflag
&& handleoobcmd())
1355 sec_putc('\r', outstr
);
1356 sec_putc(c
, outstr
);
1365 reply(226, "Transfer complete.");
1370 #if 0 /* XXX handle urg flag */
1371 #if defined(HAVE_MMAP) && !defined(NO_MMAP)
1373 #define MAP_FAILED (-1)
1378 int in
= fileno(instr
);
1379 if(fstat(in
, &st
) == 0 && S_ISREG(st
.st_mode
)
1380 && st
.st_size
> 0) {
1382 * mmap zero bytes has potential of loosing, don't do it.
1384 chunk
= mmap(0, st
.st_size
, PROT_READ
,
1386 if((void *)chunk
!= (void *)MAP_FAILED
) {
1387 cnt
= st
.st_size
- restart_point
;
1388 sec_write(fileno(outstr
), chunk
+ restart_point
, cnt
);
1389 if (munmap(chunk
, st
.st_size
) < 0)
1403 netfd
= fileno(outstr
);
1404 filefd
= fileno(instr
);
1405 buf
= alloc_buffer (buf
, &bufsize
,
1406 fstat(filefd
, &st
) >= 0 ? &st
: NULL
);
1410 perror_reply(451, "Local resource failure: malloc");
1413 while ((cnt
= read(filefd
, buf
, bufsize
)) > 0 &&
1414 sec_write(netfd
, buf
, cnt
) == cnt
) {
1416 if (urgflag
&& handleoobcmd())
1419 sec_fflush(outstr
); /* to end an encrypted stream */
1428 reply(226, "Transfer complete.");
1433 reply(550, "Unimplemented TYPE %d in send_data", type
);
1440 perror_reply(426, "Data connection");
1446 perror_reply(551, "Error on input file");
1450 * Transfer data from peer to "outstr" using the appropriate encapulation of
1451 * the data subject to Mode, Structure, and Type.
1453 * N.B.: Form isn't handled.
1456 receive_data(FILE *instr
, FILE *outstr
)
1458 int cnt
, bare_lfs
= 0;
1460 static size_t bufsize
;
1465 buf
= alloc_buffer (buf
, &bufsize
,
1466 fstat(fileno(outstr
), &st
) >= 0 ? &st
: NULL
);
1470 perror_reply(451, "Local resource failure: malloc");
1478 while ((cnt
= sec_read(fileno(instr
), buf
, bufsize
)) > 0) {
1479 if (write(fileno(outstr
), buf
, cnt
) != cnt
)
1482 if (urgflag
&& handleoobcmd())
1492 reply(553, "TYPE E not implemented.");
1501 while ((cnt
= sec_read(fileno(instr
),
1503 bufsize
- cr_flag
)) > 0){
1504 if (urgflag
&& handleoobcmd())
1509 for(p
= buf
, q
= buf
; p
< buf
+ cnt
;) {
1513 if(p
== buf
+ cnt
- 1){
1517 }else if(p
[1] == '\n'){
1525 fwrite(buf
, q
- buf
, 1, outstr
);
1539 lreply(226, "WARNING! %d bare linefeeds received in ASCII mode\r\n"
1540 " File may not have transferred correctly.\r\n",
1546 reply(550, "Unimplemented TYPE %d in receive_data", type
);
1555 perror_reply(426, "Data Connection");
1561 perror_reply(452, "Error writing file");
1566 statfilecmd(char *filename
)
1570 char line
[LINE_MAX
];
1572 snprintf(line
, sizeof(line
), "/bin/ls -la -- %s", filename
);
1573 fin
= ftpd_popen(line
, "r", 1, 0);
1574 lreply(211, "status of %s:", filename
);
1575 while ((c
= getc(fin
)) != EOF
) {
1577 if (ferror(stdout
)){
1578 perror_reply(421, "control connection");
1584 perror_reply(551, filename
);
1593 reply(211, "End of Status");
1600 struct sockaddr_in
*sin
;
1603 lreply(211, "%s FTP server (%s) status:", hostname
, version
);
1604 printf(" %s\r\n", version
);
1605 printf(" Connected to %s", remotehost
);
1606 if (!isdigit((unsigned char)remotehost
[0]))
1607 printf(" (%s)", inet_ntoa(his_addr
.sin_addr
));
1611 printf(" Logged in anonymously\r\n");
1613 printf(" Logged in as %s\r\n", pw
->pw_name
);
1614 } else if (askpasswd
)
1615 printf(" Waiting for password\r\n");
1617 printf(" Waiting for user name\r\n");
1618 printf(" TYPE: %s", typenames
[type
]);
1619 if (type
== TYPE_A
|| type
== TYPE_E
)
1620 printf(", FORM: %s", formnames
[form
]);
1623 printf(" %d", NBBY
);
1625 printf(" %d", bytesize
); /* need definition! */
1627 printf("; STRUcture: %s; transfer MODE: %s\r\n",
1628 strunames
[stru
], modenames
[mode
]);
1630 printf(" Data connection open\r\n");
1631 else if (pdata
!= -1) {
1632 printf(" in Passive mode");
1635 } else if (usedefault
== 0) {
1639 a
= (u_char
*) &sin
->sin_addr
;
1640 p
= (u_char
*) &sin
->sin_port
;
1641 #define UC(b) (((int) b) & 0xff)
1642 printf(" (%d,%d,%d,%d,%d,%d)\r\n", UC(a
[0]),
1643 UC(a
[1]), UC(a
[2]), UC(a
[3]), UC(p
[0]), UC(p
[1]));
1646 printf(" No data connection\r\n");
1648 reply(211, "End of status");
1655 reply(451, "Error in server: %s\n", s
);
1656 reply(221, "Closing connection due to server error.");
1662 int_reply(int, char *, const char *, va_list)
1664 __attribute__ ((format (printf
, 3, 0)))
1669 int_reply(int n
, char *c
, const char *fmt
, va_list ap
)
1675 snprintf(p
, sizeof(buf
), "%d%s", n
, c
);
1678 vsnprintf(p
, sizeof(buf
) - strlen(p
), fmt
, ap
);
1680 snprintf(p
, sizeof(buf
) - strlen(p
), "\r\n");
1682 sec_fprintf(stdout
, "%s", buf
);
1685 syslog(LOG_DEBUG
, "<--- %s- ", buf
);
1689 reply(int n
, const char *fmt
, ...)
1693 int_reply(n
, " ", fmt
, ap
);
1694 delete_ftp_command();
1699 lreply(int n
, const char *fmt
, ...)
1703 int_reply(n
, "-", fmt
, ap
);
1708 nreply(const char *fmt
, ...)
1712 int_reply(0, NULL
, fmt
, ap
);
1720 reply(250, "%s command successful.", s
);
1727 reply(502, "%s command not implemented.", s
);
1731 do_delete(char *name
)
1735 LOGCMD("delete", name
);
1736 if (stat(name
, &st
) < 0) {
1737 perror_reply(550, name
);
1740 if (S_ISDIR(st
.st_mode
)) {
1741 if (rmdir(name
) < 0) {
1742 perror_reply(550, name
);
1747 if (unlink(name
) < 0) {
1748 perror_reply(550, name
);
1756 cwd(const char *path
)
1759 if (chdir(path
) < 0)
1760 perror_reply(550, path
);
1769 LOGCMD("mkdir", name
);
1770 if(guest
&& filename_check(name
))
1772 if (mkdir(name
, 0777) < 0)
1773 perror_reply(550, name
);
1776 chmod(name
, 0700); /* guest has umask 777 */
1777 reply(257, "MKD command successful.");
1782 removedir(char *name
)
1785 LOGCMD("rmdir", name
);
1786 if (rmdir(name
) < 0)
1787 perror_reply(550, name
);
1795 char path
[MaxPathLen
];
1798 /* SunOS has a broken getcwd that does popen(pwd) (!!!), this
1799 * failes miserably when running chroot
1801 ret
= getcwd(path
, sizeof(path
));
1803 reply(550, "%s.", strerror(errno
));
1805 reply(257, "\"%s\" is current directory.", path
);
1809 renamefrom(char *name
)
1813 if (stat(name
, &st
) < 0) {
1814 perror_reply(550, name
);
1817 reply(350, "File exists, ready for destination name");
1822 renamecmd(char *from
, char *to
)
1825 LOGCMD2("rename", from
, to
);
1826 if(guest
&& filename_check(to
))
1828 if (rename(from
, to
) < 0)
1829 perror_reply(550, "rename");
1835 dolog(struct sockaddr
*sa
, int len
)
1837 getnameinfo_verified (sa
, len
, remotehost
, sizeof(remotehost
),
1839 #ifdef HAVE_SETPROCTITLE
1840 snprintf(proctitle
, sizeof(proctitle
), "%s: connected", remotehost
);
1841 setproctitle("%s", proctitle
);
1842 #endif /* HAVE_SETPROCTITLE */
1845 char data_addr
[256];
1847 if (inet_ntop (his_addr
->sa_family
,
1848 socket_get_address(his_addr
),
1849 data_addr
, sizeof(data_addr
)) == NULL
)
1850 strlcpy (data_addr
, "unknown address",
1854 syslog(LOG_INFO
, "connection from %s(%s)",
1861 * Record logout in wtmp file
1862 * and exit with supplied status.
1865 dologout(int status
)
1873 seteuid((uid_t
)0); /* No need to check, we call exit() below */
1874 ftpd_logwtmp(ttyline
, "", "");
1876 /* beware of flushing buffers after a SIGPIPE */
1888 reply(426, "Transfer aborted. Data connection closed.");
1889 reply(226, "Abort successful");
1902 while(isspace(*(unsigned char *)p
))
1912 /* only process if transfer occurring */
1919 if (ftpd_getline(cp
, sizeof(tmpline
)) == NULL
) {
1920 reply(221, "You could at least say goodbye.");
1924 if (strncasecmp("MIC", cp
, 3) == 0) {
1925 mec(mec_space(cp
+ 3), prot_safe
);
1926 } else if (strncasecmp("CONF", cp
, 4) == 0) {
1927 mec(mec_space(cp
+ 4), prot_confidential
);
1928 } else if (strncasecmp("ENC", cp
, 3) == 0) {
1929 mec(mec_space(cp
+ 3), prot_private
);
1930 } else if (!allow_insecure_oob
) {
1931 reply(533, "Command protection level denied "
1932 "for paranoid reasons.");
1936 if (secure_command())
1939 if (strcasecmp(cp
, "ABOR\r\n") == 0) {
1941 } else if (strcasecmp(cp
, "STAT\r\n") == 0) {
1942 if (file_size
!= (off_t
) -1)
1943 reply(213, "Status: %ld of %ld bytes transferred",
1947 reply(213, "Status: %ld bytes transferred",
1951 return (transflag
== 0);
1955 * Note: a response of 425 is not mentioned as a possible response to
1956 * the PASV command in RFC959. However, it has been blessed as
1957 * a legitimate response by Jon Postel in a telephone conversation
1958 * with Rick Adams on 25 Jan 89.
1965 struct sockaddr_in
*sin
;
1967 if (ctrl_addr
->sa_family
!= AF_INET
) {
1969 "You cannot do PASV with something that's not IPv4");
1976 pdata
= socket(ctrl_addr
->sa_family
, SOCK_STREAM
, 0);
1978 perror_reply(425, "Can't open passive connection");
1981 pasv_addr
->sa_family
= ctrl_addr
->sa_family
;
1982 socket_set_address_and_port (pasv_addr
,
1983 socket_get_address (ctrl_addr
),
1985 socket_set_portrange(pdata
, restricted_data_ports
,
1986 pasv_addr
->sa_family
);
1988 fatal("Failed to seteuid");
1989 if (bind(pdata
, pasv_addr
, socket_sockaddr_size (pasv_addr
)) < 0) {
1990 if (seteuid(pw
->pw_uid
) < 0)
1991 fatal("Failed to seteuid");
1994 if (seteuid(pw
->pw_uid
) < 0)
1995 fatal("Failed to seteuid");
1996 len
= sizeof(pasv_addr_ss
);
1997 if (getsockname(pdata
, pasv_addr
, &len
) < 0)
1999 if (listen(pdata
, 1) < 0)
2001 sin
= (struct sockaddr_in
*)pasv_addr
;
2002 a
= (char *) &sin
->sin_addr
;
2003 p
= (char *) &sin
->sin_port
;
2005 #define UC(b) (((int) b) & 0xff)
2007 reply(227, "Entering Passive Mode (%d,%d,%d,%d,%d,%d)", UC(a
[0]),
2008 UC(a
[1]), UC(a
[2]), UC(a
[3]), UC(p
[0]), UC(p
[1]));
2014 perror_reply(425, "Can't open passive connection");
2023 pdata
= socket(ctrl_addr
->sa_family
, SOCK_STREAM
, 0);
2025 perror_reply(425, "Can't open passive connection");
2028 pasv_addr
->sa_family
= ctrl_addr
->sa_family
;
2029 socket_set_address_and_port (pasv_addr
,
2030 socket_get_address (ctrl_addr
),
2032 socket_set_portrange(pdata
, restricted_data_ports
,
2033 pasv_addr
->sa_family
);
2035 fatal("Failed to seteuid");
2036 if (bind(pdata
, pasv_addr
, socket_sockaddr_size (pasv_addr
)) < 0) {
2037 if (seteuid(pw
->pw_uid
))
2038 fatal("Failed to seteuid");
2041 if (seteuid(pw
->pw_uid
) < 0)
2042 fatal("Failed to seteuid");
2043 len
= sizeof(pasv_addr_ss
);
2044 if (getsockname(pdata
, pasv_addr
, &len
) < 0)
2046 if (listen(pdata
, 1) < 0)
2049 reply(229, "Entering Extended Passive Mode (|||%d|)",
2050 ntohs(socket_get_port (pasv_addr
)));
2056 perror_reply(425, "Can't open passive connection");
2077 reply(500, "Bad syntax in EPRT");
2080 af
= strtol (str
, &end
, 0);
2081 if (af
== 0 || *end
!= sep
) {
2082 reply(500, "Bad syntax in EPRT");
2089 data_dest
->sa_family
= AF_INET6
;
2093 data_dest
->sa_family
= AF_INET
;
2096 reply(522, "Network protocol %d not supported, use (1"
2103 end
= strchr (str
, sep
);
2105 reply(500, "Bad syntax in EPRT");
2109 ret
= inet_pton (data_dest
->sa_family
, str
,
2110 socket_get_address (data_dest
));
2113 reply(500, "Bad address syntax in EPRT");
2117 port
= strtol (str
, &end
, 0);
2118 if (port
== 0 || *end
!= sep
) {
2119 reply(500, "Bad port syntax in EPRT");
2122 if (port
< IPPORT_RESERVED
) {
2123 reply(500, "Bad port in invalid range in EPRT");
2126 socket_set_port (data_dest
, htons(port
));
2129 (data_dest
->sa_family
!= his_addr
->sa_family
||
2130 memcmp(socket_get_address(data_dest
), socket_get_address(his_addr
), socket_sockaddr_size(data_dest
)) != 0))
2132 reply(500, "Bad address in EPRT");
2134 reply(200, "EPRT command successful.");
2138 * Generate unique name for file with basename "local".
2139 * The file named "local" is already known to exist.
2140 * Generates failure reply on error.
2143 gunique(char *local
)
2145 static char new[MaxPathLen
];
2150 cp
= strrchr(local
, '/');
2153 if (stat(cp
? local
: ".", &st
) < 0) {
2154 perror_reply(553, cp
? local
: ".");
2159 for (count
= 1; count
< 100; count
++) {
2160 snprintf (new, sizeof(new), "%s.%d", local
, count
);
2161 if (stat(new, &st
) < 0)
2164 reply(452, "Unique file name cannot be created.");
2169 * Format and send reply containing system error number.
2172 perror_reply(int code
, const char *string
)
2174 reply(code
, "%s: %s.", string
, strerror(errno
));
2177 static char *onefile
[] = {
2183 list_file(char *file
)
2185 if(use_builtin_ls
) {
2187 dout
= dataconn(file
, -1, "w");
2190 set_buffer_size(fileno(dout
), 0);
2191 if(builtin_ls(dout
, file
) == 0)
2192 reply(226, "Transfer complete.");
2194 reply(451, "Requested action aborted. Local error in processing.");
2200 const char *cmd
= "/bin/ls -lA %s";
2202 const char *cmd
= "/bin/ls -la %s";
2204 retrieve(cmd
, file
);
2209 send_file_list(char *whichf
)
2215 char **dirlist
, *dirname
;
2219 char buf
[MaxPathLen
];
2221 if (strpbrk(whichf
, "~{[*?") != NULL
) {
2222 int flags
= GLOB_BRACE
|GLOB_NOCHECK
|GLOB_QUOTE
|GLOB_TILDE
|
2230 memset(&gl
, 0, sizeof(gl
));
2232 if (glob(whichf
, flags
, 0, &gl
)) {
2233 reply(550, "not found");
2235 } else if (gl
.gl_pathc
== 0) {
2237 perror_reply(550, whichf
);
2240 dirlist
= gl
.gl_pathv
;
2242 onefile
[0] = whichf
;
2247 while ((dirname
= *dirlist
++)) {
2249 if (urgflag
&& handleoobcmd())
2252 if (stat(dirname
, &st
) < 0) {
2254 * If user typed "ls -l", etc, and the client
2255 * used NLST, do what the user meant.
2257 if (dirname
[0] == '-' && *dirlist
== NULL
&&
2262 perror_reply(550, whichf
);
2266 if (S_ISREG(st
.st_mode
)) {
2268 dout
= dataconn("file list", (off_t
)-1, "w");
2273 snprintf(buf
, sizeof(buf
), "%s%s\n", dirname
,
2274 type
== TYPE_A
? "\r" : "");
2275 sec_write(fileno(dout
), buf
, strlen(buf
));
2276 byte_count
+= strlen(dirname
) + 1;
2278 } else if (!S_ISDIR(st
.st_mode
))
2281 if ((dirp
= opendir(dirname
)) == NULL
)
2284 while ((dir
= readdir(dirp
)) != NULL
) {
2285 char nbuf
[MaxPathLen
];
2287 if (urgflag
&& handleoobcmd())
2290 if (!strcmp(dir
->d_name
, "."))
2292 if (!strcmp(dir
->d_name
, ".."))
2295 snprintf(nbuf
, sizeof(nbuf
), "%s/%s", dirname
, dir
->d_name
);
2298 * We have to do a stat to insure it's
2299 * not a directory or special file.
2301 if (simple
|| (stat(nbuf
, &st
) == 0 &&
2302 S_ISREG(st
.st_mode
))) {
2304 dout
= dataconn("file list", (off_t
)-1, "w");
2309 if(strncmp(nbuf
, "./", 2) == 0)
2310 snprintf(buf
, sizeof(buf
), "%s%s\n", nbuf
+2,
2311 type
== TYPE_A
? "\r" : "");
2313 snprintf(buf
, sizeof(buf
), "%s%s\n", nbuf
,
2314 type
== TYPE_A
? "\r" : "");
2315 sec_write(fileno(dout
), buf
, strlen(buf
));
2316 byte_count
+= strlen(nbuf
) + 1;
2322 reply(550, "No files found.");
2323 else if (ferror(dout
) != 0)
2324 perror_reply(550, "Data connection");
2326 reply(226, "Transfer complete.");
2331 sec_write(fileno(dout
), buf
, 0); /* XXX flush */
2348 snprintf(line
, sizeof(line
),
2349 "/bin/locate -d %s -- %s",
2350 ftp_rooted("/etc/locatedb"),
2352 f
= ftpd_popen(line
, "r", 1, 1);
2354 perror_reply(550, "/bin/locate");
2357 lreply(200, "Output from find.");
2358 while(fgets(line
, sizeof(line
), f
)){
2359 if(line
[strlen(line
)-1] == '\n')
2360 line
[strlen(line
)-1] = 0;