/* Copyright 2009 David Revell This file is part of SwiFTP. SwiFTP 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 3 of the License, or (at your option) any later version. SwiFTP 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 SwiFTP. If not, see <http://www.gnu.org/licenses/>. */ package org.swiftp; import java.io.File; import android.util.Log; public class CmdRNFR extends FtpCmd implements Runnable { protected String input; public CmdRNFR(SessionThread sessionThread, String input) { super(sessionThread, CmdRNFR.class.toString()); this.input = input; } public void run() { String param = getParameter(input); String errString = null; File file = null; mainblock: { file = inputPathToChrootedFile(sessionThread.getWorkingDir(), param); if(violatesChroot(file)) { errString = "550 Invalid name or chroot violation\r\n"; break mainblock; } if(!file.exists()) { errString = "450 Cannot rename nonexistent file\r\n"; } } if(errString != null) { sessionThread.writeString(errString); myLog.l(Log.INFO, "RNFR failed: " + errString.trim()); sessionThread.setRenameFrom(null); } else { sessionThread.writeString("350 Filename noted, now send RNTO\r\n"); sessionThread.setRenameFrom(file); } } }