final protected function FileTransfer::checkPath in Drupal 7
Checks that the path is inside the jail and throws an exception if not.
Parameters
$path: A path to check against the jail.
6 calls to FileTransfer::checkPath()
- FileTransfer::chmod in includes/
filetransfer/ filetransfer.inc - FileTransfer::copyDirectory in includes/
filetransfer/ filetransfer.inc - Copies a directory.
- FileTransfer::copyFile in includes/
filetransfer/ filetransfer.inc - Copies a file.
- FileTransfer::createDirectory in includes/
filetransfer/ filetransfer.inc - Creates a directory.
- FileTransfer::removeDirectory in includes/
filetransfer/ filetransfer.inc - Removes a directory.
File
- includes/
filetransfer/ filetransfer.inc, line 157
Class
Code
protected final function checkPath($path) {
$full_jail = $this->chroot . $this->jail;
$full_path = drupal_realpath(substr($this->chroot . $path, 0, strlen($full_jail)));
$full_path = $this
->fixRemotePath($full_path, FALSE);
if ($full_jail !== $full_path) {
throw new FileTransferException('@directory is outside of the @jail', NULL, array(
'@directory' => $path,
'@jail' => $this->jail,
));
}
}