netutils/ftpd: Do not terminate connection if CWD fails

Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
Petro Karashchenko 2022-04-03 14:17:20 +02:00 committed by Xiang Xiao
parent 124c1328a6
commit aaa950faee
2 changed files with 16 additions and 20 deletions

View File

@ -484,7 +484,7 @@ ftpd_account_search_user(FAR struct ftpd_session_s *session,
FAR const char *user) FAR const char *user)
{ {
FAR struct ftpd_account_s *newaccount = NULL; FAR struct ftpd_account_s *newaccount = NULL;
FAR struct ftpd_account_s *account; const FAR struct ftpd_account_s *account;
uint8_t accountflags; uint8_t accountflags;
account = session->head; account = session->head;
@ -1656,24 +1656,20 @@ static int ftpd_changedir(FAR struct ftpd_session_s *session,
ret = stat(abspath, &st); ret = stat(abspath, &st);
if (ret < 0) if (ret < 0)
{ {
ret = -errno;
free(workpath); free(workpath);
free(abspath); free(abspath);
ftpd_response(session->cmd.sd, session->txtimeout, return ftpd_response(session->cmd.sd, session->txtimeout,
g_respfmt2, 550, ' ', rempath, g_respfmt2, 550, ' ', rempath,
": No such file or directory"); ": No such file or directory");
return ret;
} }
if (S_ISDIR(st.st_mode) == 0) if (S_ISDIR(st.st_mode) == 0)
{ {
free(workpath); free(workpath);
free(abspath); free(abspath);
ftpd_response(session->cmd.sd, session->txtimeout, return ftpd_response(session->cmd.sd, session->txtimeout,
g_respfmt2, 550, ' ', rempath, g_respfmt2, 550, ' ', rempath,
": No such file or directory"); ": No such file or directory");
return -ENOTDIR;
} }
free(abspath); free(abspath);

View File

@ -118,8 +118,8 @@ struct ftpd_stream_s
struct ftpd_session_s struct ftpd_session_s
{ {
FAR struct ftpd_server_s *server; const FAR struct ftpd_server_s *server;
FAR struct ftpd_account_s *head; const FAR struct ftpd_account_s *head;
bool loggedin; bool loggedin;
uint8_t flags; /* See TPD_SESSIONFLAG_* definitions */ uint8_t flags; /* See TPD_SESSIONFLAG_* definitions */
int rxtimeout; int rxtimeout;