]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/includes/class-wp-filesystem-ssh2.php
WordPress 4.4
[autoinstalls/wordpress.git] / wp-admin / includes / class-wp-filesystem-ssh2.php
index 0de635481a694154fce816c8662b00bddc0c02c1..42eab59c7953d3eea076a1e41dbc7bdb14aad09c 100644 (file)
  */
 class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
 
  */
 class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
 
+       /**
+        * @access public
+        */
        public $link = false;
        public $link = false;
+
        /**
        /**
+        * @access public
         * @var resource
         */
        public $sftp_link;
        public $keys = false;
 
         * @var resource
         */
        public $sftp_link;
        public $keys = false;
 
-       public function __construct($opt='') {
+       /**
+        * @access public
+        *
+        * @param array $opt
+        */
+       public function __construct( $opt = '' ) {
                $this->method = 'ssh2';
                $this->errors = new WP_Error();
 
                $this->method = 'ssh2';
                $this->errors = new WP_Error();
 
@@ -89,9 +99,13 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
                } else {
                        $this->options['password'] = $opt['password'];
                }
                } else {
                        $this->options['password'] = $opt['password'];
                }
-
        }
 
        }
 
+       /**
+        * @access public
+        *
+        * @return bool
+        */
        public function connect() {
                if ( ! $this->keys ) {
                        $this->link = @ssh2_connect($this->options['hostname'], $this->options['port']);
        public function connect() {
                if ( ! $this->keys ) {
                        $this->link = @ssh2_connect($this->options['hostname'], $this->options['port']);
@@ -100,39 +114,91 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
                }
 
                if ( ! $this->link ) {
                }
 
                if ( ! $this->link ) {
-                       $this->errors->add('connect', sprintf(__('Failed to connect to SSH2 Server %1$s:%2$s'), $this->options['hostname'], $this->options['port']));
+                       $this->errors->add( 'connect',
+                               /* translators: %s: hostname:port */
+                               sprintf( __( 'Failed to connect to SSH2 Server %s' ),
+                                       $this->options['hostname'] . ':' . $this->options['port']
+                               )
+                       );
                        return false;
                }
 
                if ( !$this->keys ) {
                        if ( ! @ssh2_auth_password($this->link, $this->options['username'], $this->options['password']) ) {
                        return false;
                }
 
                if ( !$this->keys ) {
                        if ( ! @ssh2_auth_password($this->link, $this->options['username'], $this->options['password']) ) {
-                               $this->errors->add('auth', sprintf(__('Username/Password incorrect for %s'), $this->options['username']));
+                               $this->errors->add( 'auth',
+                                       /* translators: %s: username */
+                                       sprintf( __( 'Username/Password incorrect for %s' ),
+                                               $this->options['username']
+                                       )
+                               );
                                return false;
                        }
                } else {
                        if ( ! @ssh2_auth_pubkey_file($this->link, $this->options['username'], $this->options['public_key'], $this->options['private_key'], $this->options['password'] ) ) {
                                return false;
                        }
                } else {
                        if ( ! @ssh2_auth_pubkey_file($this->link, $this->options['username'], $this->options['public_key'], $this->options['private_key'], $this->options['password'] ) ) {
-                               $this->errors->add('auth', sprintf(__('Public and Private keys incorrect for %s'), $this->options['username']));
+                               $this->errors->add( 'auth',
+                                       /* translators: %s: username */
+                                       sprintf( __( 'Public and Private keys incorrect for %s' ),
+                                               $this->options['username']
+                                       )
+                               );
                                return false;
                        }
                }
 
                                return false;
                        }
                }
 
-               $this->sftp_link = ssh2_sftp($this->link);
+               $this->sftp_link = ssh2_sftp( $this->link );
+               if ( ! $this->sftp_link ) {
+                       $this->errors->add( 'connect',
+                               /* translators: %s: hostname:port */
+                               sprintf( __( 'Failed to initialize a SFTP subsystem session with the SSH2 Server %s' ),
+                                       $this->options['hostname'] . ':' . $this->options['port']
+                               )
+                       );
+                       return false;
+               }
 
                return true;
        }
 
        /**
 
                return true;
        }
 
        /**
+        * Gets the ssh2.sftp PHP stream wrapper path to open for the given file.
+        *
+        * This method also works around a PHP bug where the root directory (/) cannot
+        * be opened by PHP functions, causing a false failure. In order to work around
+        * this, the path is converted to /./ which is semantically the same as /
+        * See https://bugs.php.net/bug.php?id=64169 for more details.
+        *
+        * @access public
+        *
+        * @since 4.4.0
+        *
+        * @param string $path The File/Directory path on the remote server to return
+        * @return string The ssh2.sftp:// wrapped path to use.
+        */
+       public function sftp_path( $path ) {
+               if ( '/' === $path ) {
+                       $path = '/./';
+               }
+               return 'ssh2.sftp://' . $this->sftp_link . '/' . ltrim( $path, '/' );
+       }
+
+       /**
+        * @access public
+        * 
         * @param string $command
         * @param bool $returnbool
         * @return bool|string
         */
         * @param string $command
         * @param bool $returnbool
         * @return bool|string
         */
-       public function run_command( $command, $returnbool = false) {
-
+       public function run_command( $command, $returnbool = false ) {
                if ( ! $this->link )
                        return false;
 
                if ( ! ($stream = ssh2_exec($this->link, $command)) ) {
                if ( ! $this->link )
                        return false;
 
                if ( ! ($stream = ssh2_exec($this->link, $command)) ) {
-                       $this->errors->add('command', sprintf(__('Unable to perform command: %s'), $command));
+                       $this->errors->add( 'command',
+                               /* translators: %s: command */
+                               sprintf( __( 'Unable to perform command: %s'),
+                                       $command
+                               )
+                       );
                } else {
                        stream_set_blocking( $stream, true );
                        stream_set_timeout( $stream, FS_TIMEOUT );
                } else {
                        stream_set_blocking( $stream, true );
                        stream_set_timeout( $stream, FS_TIMEOUT );
@@ -148,31 +214,35 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $file
         * @return string|false
         */
        public function get_contents( $file ) {
         * @param string $file
         * @return string|false
         */
        public function get_contents( $file ) {
-               $file = ltrim($file, '/');
-               return file_get_contents('ssh2.sftp://' . $this->sftp_link . '/' . $file);
+               return file_get_contents( $this->sftp_path( $file ) );
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $file
         * @return array
         */
        public function get_contents_array($file) {
         * @param string $file
         * @return array
         */
        public function get_contents_array($file) {
-               $file = ltrim($file, '/');
-               return file('ssh2.sftp://' . $this->sftp_link . '/' . $file);
+               return file( $this->sftp_path( $file ) );
        }
 
        /**
        }
 
        /**
-        * @param string $file
-        * @param string $contents
+        * @access public
+        *
+        * @param string   $file
+        * @param string   $contents
         * @param bool|int $mode
         * @return bool
         */
        public function put_contents($file, $contents, $mode = false ) {
         * @param bool|int $mode
         * @return bool
         */
        public function put_contents($file, $contents, $mode = false ) {
-               $ret = file_put_contents( 'ssh2.sftp://' . $this->sftp_link . '/' . ltrim( $file, '/' ), $contents );
+               $ret = file_put_contents( $this->sftp_path( $file ), $contents );
 
                if ( $ret !== strlen( $contents ) )
                        return false;
 
                if ( $ret !== strlen( $contents ) )
                        return false;
@@ -182,8 +252,13 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
                return true;
        }
 
                return true;
        }
 
+       /**
+        * @access public
+        *
+        * @return bool
+        */
        public function cwd() {
        public function cwd() {
-               $cwd = $this->run_command('pwd');
+               $cwd = ssh2_sftp_realpath( $this->sftp_link, '.' );
                if ( $cwd ) {
                        $cwd = trailingslashit( trim( $cwd ) );
                }
                if ( $cwd ) {
                        $cwd = trailingslashit( trim( $cwd ) );
                }
@@ -191,6 +266,8 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $dir
         * @return bool|string
         */
         * @param string $dir
         * @return bool|string
         */
@@ -199,9 +276,13 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $file
         * @param string $group
         * @param string $file
         * @param string $group
-        * @param bool $recursive
+        * @param bool   $recursive
+        *
+        * @return bool
         */
        public function chgrp($file, $group, $recursive = false ) {
                if ( ! $this->exists($file) )
         */
        public function chgrp($file, $group, $recursive = false ) {
                if ( ! $this->exists($file) )
@@ -212,9 +293,11 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $file
         * @param string $file
-        * @param int $mode
-        * @param bool $recursive
+        * @param int    $mode
+        * @param bool   $recursive
         * @return bool|string
         */
        public function chmod($file, $mode = false, $recursive = false) {
         * @return bool|string
         */
        public function chmod($file, $mode = false, $recursive = false) {
@@ -238,7 +321,7 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
        /**
         * Change the ownership of a file / folder.
         *
        /**
         * Change the ownership of a file / folder.
         *
-        * @since Unknown
+        * @access public
         *
         * @param string     $file    Path to the file.
         * @param string|int $owner   A user name or number.
         *
         * @param string     $file    Path to the file.
         * @param string|int $owner   A user name or number.
@@ -254,11 +337,13 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $file
         * @return string|false
         */
        public function owner($file) {
         * @param string $file
         * @return string|false
         */
        public function owner($file) {
-               $owneruid = @fileowner('ssh2.sftp://' . $this->sftp_link . '/' . ltrim($file, '/'));
+               $owneruid = @fileowner( $this->sftp_path( $file ) );
                if ( ! $owneruid )
                        return false;
                if ( ! function_exists('posix_getpwuid') )
                if ( ! $owneruid )
                        return false;
                if ( ! function_exists('posix_getpwuid') )
@@ -266,20 +351,25 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
                $ownerarray = posix_getpwuid($owneruid);
                return $ownerarray['name'];
        }
                $ownerarray = posix_getpwuid($owneruid);
                return $ownerarray['name'];
        }
+
        /**
        /**
+        * @access public
+        *
         * @param string $file
         * @return string
         */
        public function getchmod($file) {
         * @param string $file
         * @return string
         */
        public function getchmod($file) {
-               return substr( decoct( @fileperms( 'ssh2.sftp://' . $this->sftp_link . '/' . ltrim( $file, '/' ) ) ), -3 );
+               return substr( decoct( @fileperms( $this->sftp_path( $file ) ) ), -3 );
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $file
         * @return string|false
         */
        public function group($file) {
         * @param string $file
         * @return string|false
         */
        public function group($file) {
-               $gid = @filegroup('ssh2.sftp://' . $this->sftp_link . '/' . ltrim($file, '/'));
+               $gid = @filegroup( $this->sftp_path( $file ) );
                if ( ! $gid )
                        return false;
                if ( ! function_exists('posix_getgrgid') )
                if ( ! $gid )
                        return false;
                if ( ! function_exists('posix_getgrgid') )
@@ -289,9 +379,11 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
        }
 
        /**
        }
 
        /**
-        * @param string $source
-        * @param string $destination
-        * @param bool $overwrite
+        * @access public
+        *
+        * @param string   $source
+        * @param string   $destination
+        * @param bool     $overwrite
         * @param int|bool $mode
         * @return bool
         */
         * @param int|bool $mode
         * @return bool
         */
@@ -305,9 +397,11 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $source
         * @param string $destination
         * @param string $source
         * @param string $destination
-        * @param bool $overwrite
+        * @param bool   $overwrite
         * @return bool
         */
        public function move($source, $destination, $overwrite = false) {
         * @return bool
         */
        public function move($source, $destination, $overwrite = false) {
@@ -315,8 +409,10 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
        }
 
        /**
        }
 
        /**
-        * @param string $file
-        * @param bool $recursive
+        * @access public
+        *
+        * @param string      $file
+        * @param bool        $recursive
         * @param string|bool $type
         * @return bool
         */
         * @param string|bool $type
         * @return bool
         */
@@ -335,86 +431,104 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $file
         * @return bool
         */
        public function exists($file) {
         * @param string $file
         * @return bool
         */
        public function exists($file) {
-               $file = ltrim($file, '/');
-               return file_exists('ssh2.sftp://' . $this->sftp_link . '/' . $file);
+               return file_exists( $this->sftp_path( $file ) );
        }
        }
+
        /**
        /**
+        * @access public
+        *
         * @param string $file
         * @return bool
         */
        public function is_file($file) {
         * @param string $file
         * @return bool
         */
        public function is_file($file) {
-               $file = ltrim($file, '/');
-               return is_file('ssh2.sftp://' . $this->sftp_link . '/' . $file);
+               return is_file( $this->sftp_path( $file ) );
        }
        }
+
        /**
        /**
+        * @access public
+        *
         * @param string $path
         * @return bool
         */
        public function is_dir($path) {
         * @param string $path
         * @return bool
         */
        public function is_dir($path) {
-               $path = ltrim($path, '/');
-               return is_dir('ssh2.sftp://' . $this->sftp_link . '/' . $path);
+               return is_dir( $this->sftp_path( $path ) );
        }
        }
+
        /**
        /**
+        * @access public
+        *
         * @param string $file
         * @return bool
         */
        public function is_readable($file) {
         * @param string $file
         * @return bool
         */
        public function is_readable($file) {
-               $file = ltrim($file, '/');
-               return is_readable('ssh2.sftp://' . $this->sftp_link . '/' . $file);
+               return is_readable( $this->sftp_path( $file ) );
        }
        }
+
        /**
        /**
+        * @access public
+        *
         * @param string $file
         * @return bool
         */
        public function is_writable($file) {
         * @param string $file
         * @return bool
         */
        public function is_writable($file) {
-               $file = ltrim($file, '/');
-               return is_writable('ssh2.sftp://' . $this->sftp_link . '/' . $file);
+               // PHP will base it's writable checks on system_user === file_owner, not ssh_user === file_owner
+               return true;
        }
        }
+
        /**
        /**
+        * @access public
+        *
         * @param string $file
         * @return int
         */
        public function atime($file) {
         * @param string $file
         * @return int
         */
        public function atime($file) {
-               $file = ltrim($file, '/');
-               return fileatime('ssh2.sftp://' . $this->sftp_link . '/' . $file);
+               return fileatime( $this->sftp_path( $file ) );
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $file
         * @return int
         */
        public function mtime($file) {
         * @param string $file
         * @return int
         */
        public function mtime($file) {
-               $file = ltrim($file, '/');
-               return filemtime('ssh2.sftp://' . $this->sftp_link . '/' . $file);
+               return filemtime( $this->sftp_path( $file ) );
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $file
         * @return int
         */
        public function size($file) {
         * @param string $file
         * @return int
         */
        public function size($file) {
-               $file = ltrim($file, '/');
-               return filesize('ssh2.sftp://' . $this->sftp_link . '/' . $file);
+               return filesize( $this->sftp_path( $file ) );
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $file
         * @param string $file
-        * @param int $time
-        * @param int $atime
+        * @param int    $time
+        * @param int    $atime
         */
        public function touch($file, $time = 0, $atime = 0) {
                //Not implemented.
        }
 
        /**
         */
        public function touch($file, $time = 0, $atime = 0) {
                //Not implemented.
        }
 
        /**
+        * @access public
+        *
         * @param string $path
         * @param string $path
-        * @param mixed $chmod
-        * @param mixed $chown
-        * @param mixed $chgrp
+        * @param mixed  $chmod
+        * @param mixed  $chown
+        * @param mixed  $chgrp
         * @return bool
         */
        public function mkdir($path, $chmod = false, $chown = false, $chgrp = false) {
         * @return bool
         */
        public function mkdir($path, $chmod = false, $chown = false, $chgrp = false) {
@@ -434,8 +548,10 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $path
         * @param string $path
-        * @param bool $recursive
+        * @param bool   $recursive
         * @return bool
         */
        public function rmdir($path, $recursive = false) {
         * @return bool
         */
        public function rmdir($path, $recursive = false) {
@@ -443,9 +559,11 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
        }
 
        /**
        }
 
        /**
+        * @access public
+        *
         * @param string $path
         * @param string $path
-        * @param bool $include_hidden
-        * @param bool $recursive
+        * @param bool   $include_hidden
+        * @param bool   $recursive
         * @return bool|array
         */
        public function dirlist($path, $include_hidden = true, $recursive = false) {
         * @return bool|array
         */
        public function dirlist($path, $include_hidden = true, $recursive = false) {
@@ -460,7 +578,7 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
                        return false;
 
                $ret = array();
                        return false;
 
                $ret = array();
-               $dir = @dir('ssh2.sftp://' . $this->sftp_link .'/' . ltrim($path, '/') );
+               $dir = @dir( $this->sftp_path( $path ) );
 
                if ( ! $dir )
                        return false;
 
                if ( ! $dir )
                        return false;