final protected function FileTransfer::checkPath

Checks that the path is inside the jail and throws an exception if not.

Parameters

string $path: A path to check against the jail.

Throws

Drupal\Core\FileTransfer\FileTransferException

6 calls to FileTransfer::checkPath()
FileTransfer::chmod in drupal/core/lib/Drupal/Core/FileTransfer/FileTransfer.php
Changes the permissions of the specified $path (file or directory).
FileTransfer::copyDirectory in drupal/core/lib/Drupal/Core/FileTransfer/FileTransfer.php
Copies a directory.
FileTransfer::copyFile in drupal/core/lib/Drupal/Core/FileTransfer/FileTransfer.php
Copies a file.
FileTransfer::createDirectory in drupal/core/lib/Drupal/Core/FileTransfer/FileTransfer.php
Creates a directory.
FileTransfer::removeDirectory in drupal/core/lib/Drupal/Core/FileTransfer/FileTransfer.php
Removes a directory.

... See full list

File

drupal/core/lib/Drupal/Core/FileTransfer/FileTransfer.php, line 216
Definition of Drupal\Core\FileTransfer\FileTransfer.

Class

FileTransfer
Defines the base FileTransfer class.

Namespace

Drupal\Core\FileTransfer

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,
    ));
  }
}