/* * bbftpd/changetodir.c * Copyright (C) 1999, 2000, 2001, 2002 IN2P3, CNRS * bbftp@in2p3.fr * http://doc.in2p3.fr/bbftp * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /**************************************************************************** RETURN: 0 Keep the connection open (does not mean that the directory has been successfully created) -1 Tell the calling program to close the connection changetodir.c v 1.8.0 2000/06/02 - Creation of the routine. v 1.8.10 2000/08/11 - Portage to Linux v 1.9.0 2000/08/18 - Use configure to help portage v 1.9.4 2000/10/16 - Supress %m - Correct typo v 2.0.1 2001/04/23 - Correct indentation v 2.1.0 2001/05/30 - Correct syslog level *****************************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #include extern int msgsock ; extern int recvcontrolto ; int changetodir (int code, int msglen) { char receive_buffer[MAXMESSLEN] ; int savederrno ; char logmessage[256] ; char *currentdir ; #ifndef WORDS_BIGENDIAN msglen = ntohl(msglen) ; #endif if ( msglen > MAXMESSLEN ) { /* ** In order to avoid buffer overflow we reject message to ** big */ syslog(BBFTPD_ERR,"Message to big in changetodir (%d,%d)",msglen,MAXMESSLEN) ; reply(MSG_BAD_NO_RETRY,"Directory too long") ; return -1 ; } /* ** Read the characteristics of the directory */ if ( readmessage(msgsock,receive_buffer,msglen,recvcontrolto) < 0 ) { /* ** Error ... */ return -1 ; } /* ** receive_buffer contains the directory to create */ receive_buffer[msglen] = '\0' ; if ( code == MSG_CHDIR ) { syslog(BBFTPD_DEBUG,"Changing directory to %s",receive_buffer) ; } /* ** We change the directory */ if ( chdir(receive_buffer) < 0 ) { /* ** Depending on errno we are going to tell the client to ** retry or not */ savederrno = errno ; sprintf(logmessage,"Error changing directory %s : %s ",receive_buffer,strerror(errno)) ; syslog(BBFTPD_ERR,"Error changing directory %s : %s",receive_buffer,strerror(errno)) ; /* ** We tell the client not to retry in the following case (even in waiting ** WAITRETRYTIME the problem will not be solved) : ** EACCES : Search permission denied ** ELOOP : To many symbolic links on path ** ENAMETOOLONG: Path argument too long ** ENOTDIR : A component in path is not a directory ** ENOENT : A component of the path prefix does not exist or is a null pathname. */ if ( savederrno == EACCES || savederrno == ELOOP || savederrno == ENAMETOOLONG || savederrno == ENOTDIR || savederrno == ENOENT ) { reply(MSG_BAD_NO_RETRY,logmessage) ; } else { reply(MSG_BAD,logmessage) ; } return 0 ; } else { if ( (currentdir = getcwd(NULL,252) ) == NULL ) { /* ** Unable to get current directory */ sprintf(logmessage,"Unable to get current directory") ; reply(MSG_BAD,logmessage) ; return 0 ; } else { sprintf(logmessage,"%s",currentdir) ; free(currentdir) ; } } reply(MSG_OK,logmessage) ; return 0 ; }