123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Andreas Fischer <bantu@owncloud.com>
- * @author Bart Visscher <bartv@thisnet.nl>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author hkjolhede <hkjolhede@gmail.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Jörn Friedrich Dreyer <jfd@butonic.de>
- * @author Lennart Rosam <lennart.rosam@medien-systempartner.de>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Robin McCorkell <robin@mccorkell.me.uk>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Ross Nicoll <jrn@jrn.me.uk>
- * @author SA <stephen@mthosting.net>
- * @author Senorsen <senorsen.zhang@gmail.com>
- * @author Vincent Petry <vincent@nextcloud.com>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OCA\Files_External\Lib\Storage;
- use Icewind\Streams\IteratorDirectory;
- use Icewind\Streams\RetryWrapper;
- use phpseclib\Net\SFTP\Stream;
- /**
- * Uses phpseclib's Net\SFTP class and the Net\SFTP\Stream stream wrapper to
- * provide access to SFTP servers.
- */
- class SFTP extends \OC\Files\Storage\Common {
- private $host;
- private $user;
- private $root;
- private $port = 22;
- private $auth = [];
- /**
- * @var \phpseclib\Net\SFTP
- */
- protected $client;
- /**
- * @param string $host protocol://server:port
- * @return array [$server, $port]
- */
- private function splitHost($host) {
- $input = $host;
- if (strpos($host, '://') === false) {
- // add a protocol to fix parse_url behavior with ipv6
- $host = 'http://' . $host;
- }
- $parsed = parse_url($host);
- if (is_array($parsed) && isset($parsed['port'])) {
- return [$parsed['host'], $parsed['port']];
- } elseif (is_array($parsed)) {
- return [$parsed['host'], 22];
- } else {
- return [$input, 22];
- }
- }
- /**
- * {@inheritdoc}
- */
- public function __construct($params) {
- // Register sftp://
- Stream::register();
- $parsedHost = $this->splitHost($params['host']);
- $this->host = $parsedHost[0];
- $this->port = $parsedHost[1];
- if (!isset($params['user'])) {
- throw new \UnexpectedValueException('no authentication parameters specified');
- }
- $this->user = $params['user'];
- if (isset($params['public_key_auth'])) {
- $this->auth[] = $params['public_key_auth'];
- }
- if (isset($params['password']) && $params['password'] !== '') {
- $this->auth[] = $params['password'];
- }
- if ($this->auth === []) {
- throw new \UnexpectedValueException('no authentication parameters specified');
- }
- $this->root
- = isset($params['root']) ? $this->cleanPath($params['root']) : '/';
- $this->root = '/' . ltrim($this->root, '/');
- $this->root = rtrim($this->root, '/') . '/';
- }
- /**
- * Returns the connection.
- *
- * @return \phpseclib\Net\SFTP connected client instance
- * @throws \Exception when the connection failed
- */
- public function getConnection() {
- if (!is_null($this->client)) {
- return $this->client;
- }
- $hostKeys = $this->readHostKeys();
- $this->client = new \phpseclib\Net\SFTP($this->host, $this->port);
- // The SSH Host Key MUST be verified before login().
- $currentHostKey = $this->client->getServerPublicHostKey();
- if (array_key_exists($this->host, $hostKeys)) {
- if ($hostKeys[$this->host] !== $currentHostKey) {
- throw new \Exception('Host public key does not match known key');
- }
- } else {
- $hostKeys[$this->host] = $currentHostKey;
- $this->writeHostKeys($hostKeys);
- }
- $login = false;
- foreach ($this->auth as $auth) {
- /** @psalm-suppress TooManyArguments */
- $login = $this->client->login($this->user, $auth);
- if ($login === true) {
- break;
- }
- }
- if ($login === false) {
- throw new \Exception('Login failed');
- }
- return $this->client;
- }
- /**
- * {@inheritdoc}
- */
- public function test() {
- if (
- !isset($this->host)
- || !isset($this->user)
- ) {
- return false;
- }
- return $this->getConnection()->nlist() !== false;
- }
- /**
- * {@inheritdoc}
- */
- public function getId() {
- $id = 'sftp::' . $this->user . '@' . $this->host;
- if ($this->port !== 22) {
- $id .= ':' . $this->port;
- }
- // note: this will double the root slash,
- // we should not change it to keep compatible with
- // old storage ids
- $id .= '/' . $this->root;
- return $id;
- }
- /**
- * @return string
- */
- public function getHost() {
- return $this->host;
- }
- /**
- * @return string
- */
- public function getRoot() {
- return $this->root;
- }
- /**
- * @return mixed
- */
- public function getUser() {
- return $this->user;
- }
- /**
- * @param string $path
- * @return string
- */
- private function absPath($path) {
- return $this->root . $this->cleanPath($path);
- }
- /**
- * @return string|false
- */
- private function hostKeysPath() {
- try {
- $storage_view = \OCP\Files::getStorage('files_external');
- if ($storage_view) {
- return \OC::$server->getConfig()->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data') .
- $storage_view->getAbsolutePath('') .
- 'ssh_hostKeys';
- }
- } catch (\Exception $e) {
- }
- return false;
- }
- /**
- * @param $keys
- * @return bool
- */
- protected function writeHostKeys($keys) {
- try {
- $keyPath = $this->hostKeysPath();
- if ($keyPath && file_exists($keyPath)) {
- $fp = fopen($keyPath, 'w');
- foreach ($keys as $host => $key) {
- fwrite($fp, $host . '::' . $key . "\n");
- }
- fclose($fp);
- return true;
- }
- } catch (\Exception $e) {
- }
- return false;
- }
- /**
- * @return array
- */
- protected function readHostKeys() {
- try {
- $keyPath = $this->hostKeysPath();
- if (file_exists($keyPath)) {
- $hosts = [];
- $keys = [];
- $lines = file($keyPath, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
- if ($lines) {
- foreach ($lines as $line) {
- $hostKeyArray = explode("::", $line, 2);
- if (count($hostKeyArray) === 2) {
- $hosts[] = $hostKeyArray[0];
- $keys[] = $hostKeyArray[1];
- }
- }
- return array_combine($hosts, $keys);
- }
- }
- } catch (\Exception $e) {
- }
- return [];
- }
- /**
- * {@inheritdoc}
- */
- public function mkdir($path) {
- try {
- return $this->getConnection()->mkdir($this->absPath($path));
- } catch (\Exception $e) {
- return false;
- }
- }
- /**
- * {@inheritdoc}
- */
- public function rmdir($path) {
- try {
- $result = $this->getConnection()->delete($this->absPath($path), true);
- // workaround: stray stat cache entry when deleting empty folders
- // see https://github.com/phpseclib/phpseclib/issues/706
- $this->getConnection()->clearStatCache();
- return $result;
- } catch (\Exception $e) {
- return false;
- }
- }
- /**
- * {@inheritdoc}
- */
- public function opendir($path) {
- try {
- $list = $this->getConnection()->nlist($this->absPath($path));
- if ($list === false) {
- return false;
- }
- $id = md5('sftp:' . $path);
- $dirStream = [];
- foreach ($list as $file) {
- if ($file !== '.' && $file !== '..') {
- $dirStream[] = $file;
- }
- }
- return IteratorDirectory::wrap($dirStream);
- } catch (\Exception $e) {
- return false;
- }
- }
- /**
- * {@inheritdoc}
- */
- public function filetype($path) {
- try {
- $stat = $this->getConnection()->stat($this->absPath($path));
- if (!is_array($stat) || !array_key_exists('type', $stat)) {
- return false;
- }
- if ((int) $stat['type'] === NET_SFTP_TYPE_REGULAR) {
- return 'file';
- }
- if ((int) $stat['type'] === NET_SFTP_TYPE_DIRECTORY) {
- return 'dir';
- }
- } catch (\Exception $e) {
- }
- return false;
- }
- /**
- * {@inheritdoc}
- */
- public function file_exists($path) {
- try {
- return $this->getConnection()->stat($this->absPath($path)) !== false;
- } catch (\Exception $e) {
- return false;
- }
- }
- /**
- * {@inheritdoc}
- */
- public function unlink($path) {
- try {
- return $this->getConnection()->delete($this->absPath($path), true);
- } catch (\Exception $e) {
- return false;
- }
- }
- /**
- * {@inheritdoc}
- */
- public function fopen($path, $mode) {
- try {
- $absPath = $this->absPath($path);
- switch ($mode) {
- case 'r':
- case 'rb':
- if (!$this->file_exists($path)) {
- return false;
- }
- SFTPReadStream::register();
- $context = stream_context_create(['sftp' => ['session' => $this->getConnection()]]);
- $handle = fopen('sftpread://' . trim($absPath, '/'), 'r', false, $context);
- return RetryWrapper::wrap($handle);
- case 'w':
- case 'wb':
- SFTPWriteStream::register();
- $context = stream_context_create(['sftp' => ['session' => $this->getConnection()]]);
- return fopen('sftpwrite://' . trim($absPath, '/'), 'w', false, $context);
- case 'a':
- case 'ab':
- case 'r+':
- case 'w+':
- case 'wb+':
- case 'a+':
- case 'x':
- case 'x+':
- case 'c':
- case 'c+':
- $context = stream_context_create(['sftp' => ['session' => $this->getConnection()]]);
- $handle = fopen($this->constructUrl($path), $mode, false, $context);
- return RetryWrapper::wrap($handle);
- }
- } catch (\Exception $e) {
- }
- return false;
- }
- /**
- * {@inheritdoc}
- */
- public function touch($path, $mtime = null) {
- try {
- if (!is_null($mtime)) {
- return false;
- }
- if (!$this->file_exists($path)) {
- $this->getConnection()->put($this->absPath($path), '');
- } else {
- return false;
- }
- } catch (\Exception $e) {
- return false;
- }
- return true;
- }
- /**
- * @param string $path
- * @param string $target
- * @throws \Exception
- */
- public function getFile($path, $target) {
- $this->getConnection()->get($path, $target);
- }
- /**
- * {@inheritdoc}
- */
- public function rename($source, $target) {
- try {
- if ($this->file_exists($target)) {
- $this->unlink($target);
- }
- return $this->getConnection()->rename(
- $this->absPath($source),
- $this->absPath($target)
- );
- } catch (\Exception $e) {
- return false;
- }
- }
- /**
- * {@inheritdoc}
- */
- public function stat($path) {
- try {
- $stat = $this->getConnection()->stat($this->absPath($path));
- $mtime = $stat ? $stat['mtime'] : -1;
- $size = $stat ? $stat['size'] : 0;
- return ['mtime' => $mtime, 'size' => $size, 'ctime' => -1];
- } catch (\Exception $e) {
- return false;
- }
- }
- /**
- * @param string $path
- * @return string
- */
- public function constructUrl($path) {
- // Do not pass the password here. We want to use the Net_SFTP object
- // supplied via stream context or fail. We only supply username and
- // hostname because this might show up in logs (they are not used).
- $url = 'sftp://' . urlencode($this->user) . '@' . $this->host . ':' . $this->port . $this->root . $path;
- return $url;
- }
- }
|