2012-08-16 22:18:18 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Robin Appelman
|
2012-12-12 21:39:43 +04:00
|
|
|
* @copyright 2012 Sam Tuke <samtuke@owncloud.com>, 2011 Robin Appelman
|
|
|
|
* <icewind1991@gmail.com>
|
2012-08-16 22:18:18 +04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library 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 along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* transparently encrypted filestream
|
|
|
|
*
|
|
|
|
* you can use it as wrapper around an existing stream by setting CryptStream::$sourceStreams['foo']=array('path'=>$path,'stream'=>$stream)
|
2012-12-12 21:39:43 +04:00
|
|
|
* and then fopen('crypt://streams/foo');
|
2012-08-16 22:18:18 +04:00
|
|
|
*/
|
|
|
|
|
2012-10-17 19:35:19 +04:00
|
|
|
namespace OCA\Encryption;
|
2012-08-16 22:18:18 +04:00
|
|
|
|
2012-10-10 21:40:59 +04:00
|
|
|
/**
|
|
|
|
* @brief Provides 'crypt://' stream wrapper protocol.
|
2012-11-16 22:31:37 +04:00
|
|
|
* @note We use a stream wrapper because it is the most secure way to handle
|
|
|
|
* decrypted content transfers. There is no safe way to decrypt the entire file
|
|
|
|
* somewhere on the server, so we have to encrypt and decrypt blocks on the fly.
|
|
|
|
* @note Paths used with this protocol MUST BE RELATIVE. Use URLs like:
|
|
|
|
* crypt://filename, or crypt://subdirectory/filename, NOT
|
2012-12-12 21:39:43 +04:00
|
|
|
* crypt:///home/user/owncloud/data. Otherwise keyfiles will be put in
|
2012-11-16 22:31:37 +04:00
|
|
|
* [owncloud]/data/user/files_encryption/keyfiles/home/user/owncloud/data and
|
2012-12-12 21:39:43 +04:00
|
|
|
* will not be accessible to other methods.
|
2012-11-16 22:31:37 +04:00
|
|
|
* @note Data read and written must always be 8192 bytes long, as this is the
|
|
|
|
* buffer size used internally by PHP. The encryption process makes the input
|
|
|
|
* data longer, and input is chunked into smaller pieces in order to result in
|
|
|
|
* a 8192 encrypted block size.
|
2013-04-16 20:29:22 +04:00
|
|
|
* @note When files are deleted via webdav, or when they are updated and the
|
|
|
|
* previous version deleted, this is handled by OC\Files\View, and thus the
|
|
|
|
* encryption proxies are used and keyfiles deleted.
|
2012-10-10 21:40:59 +04:00
|
|
|
*/
|
2012-08-16 22:18:18 +04:00
|
|
|
class Stream {
|
|
|
|
|
|
|
|
public static $sourceStreams = array();
|
2012-09-11 16:40:45 +04:00
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
// TODO: make all below properties private again once unit testing is
|
|
|
|
// configured correctly
|
2013-04-12 16:30:02 +04:00
|
|
|
public $rawPath; // The raw path relative to the data dir
|
2013-04-12 16:13:38 +04:00
|
|
|
public $relPath; // rel path to users file dir
|
2012-11-16 22:31:37 +04:00
|
|
|
private $userId;
|
2012-09-11 16:40:45 +04:00
|
|
|
private $handle; // Resource returned by fopen
|
2012-08-16 22:18:18 +04:00
|
|
|
private $path;
|
|
|
|
private $readBuffer; // For streams that dont support seeking
|
|
|
|
private $meta = array(); // Header / meta for source stream
|
|
|
|
private $count;
|
|
|
|
private $writeCache;
|
2012-09-11 16:40:45 +04:00
|
|
|
public $size;
|
2012-12-11 19:10:56 +04:00
|
|
|
private $publicKey;
|
2012-08-23 19:43:10 +04:00
|
|
|
private $keyfile;
|
2012-12-11 19:10:56 +04:00
|
|
|
private $encKeyfile;
|
2013-01-05 21:12:23 +04:00
|
|
|
private static $view; // a fsview object set to user dir
|
|
|
|
private $rootView; // a fsview object set to '/'
|
2012-08-16 22:18:18 +04:00
|
|
|
|
|
|
|
public function stream_open( $path, $mode, $options, &$opened_path ) {
|
2012-11-14 17:58:57 +04:00
|
|
|
|
2013-03-09 22:18:34 +04:00
|
|
|
$this->userId = \OCP\User::getUser();
|
2012-08-16 22:18:18 +04:00
|
|
|
|
2013-03-09 22:18:34 +04:00
|
|
|
if ( ! isset( $this->rootView ) ) {
|
2013-01-05 21:12:23 +04:00
|
|
|
|
2013-03-09 22:18:34 +04:00
|
|
|
$this->rootView = new \OC_FilesystemView( '/' );
|
2013-01-05 21:12:23 +04:00
|
|
|
|
|
|
|
}
|
2013-03-04 20:58:56 +04:00
|
|
|
|
2013-04-12 16:30:02 +04:00
|
|
|
// Strip identifier text from path, this gives us the path relative to data/<user>/files
|
|
|
|
$this->relPath = str_replace( 'crypt://', '', $path );
|
2012-08-23 19:43:10 +04:00
|
|
|
|
2013-04-12 16:30:02 +04:00
|
|
|
// rawPath is relative to the data directory
|
|
|
|
$this->rawPath = $this->userId . '/files/' . $this->relPath;
|
2012-11-16 22:31:37 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
if (
|
2013-03-09 22:18:34 +04:00
|
|
|
dirname( $this->rawPath ) == 'streams'
|
|
|
|
and isset( self::$sourceStreams[basename( $this->rawPath )] )
|
2012-08-16 22:18:18 +04:00
|
|
|
) {
|
2012-09-11 16:40:45 +04:00
|
|
|
|
|
|
|
// Is this just for unit testing purposes?
|
2012-08-16 22:18:18 +04:00
|
|
|
|
2013-03-09 22:18:34 +04:00
|
|
|
$this->handle = self::$sourceStreams[basename( $this->rawPath )]['stream'];
|
2012-08-16 22:18:18 +04:00
|
|
|
|
2013-03-09 22:18:34 +04:00
|
|
|
$this->path = self::$sourceStreams[basename( $this->rawPath )]['path'];
|
2012-08-16 22:18:18 +04:00
|
|
|
|
2013-03-09 22:18:34 +04:00
|
|
|
$this->size = self::$sourceStreams[basename( $this->rawPath )]['size'];
|
2012-08-16 22:18:18 +04:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2013-04-22 06:40:49 +04:00
|
|
|
// Disable fileproxies so we can get the file size and open the source file without recursive encryption
|
|
|
|
\OC_FileProxy::$enabled = false;
|
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
if (
|
|
|
|
$mode == 'w'
|
|
|
|
or $mode == 'w+'
|
|
|
|
or $mode == 'wb'
|
|
|
|
or $mode == 'wb+'
|
|
|
|
) {
|
|
|
|
|
2013-03-09 22:18:34 +04:00
|
|
|
// We're writing a new file so start write counter with 0 bytes
|
2012-08-16 22:18:18 +04:00
|
|
|
$this->size = 0;
|
|
|
|
|
|
|
|
} else {
|
2012-10-17 19:35:19 +04:00
|
|
|
|
2013-04-12 16:13:38 +04:00
|
|
|
$this->size = $this->rootView->filesize( $this->rawPath, $mode );
|
2012-10-17 19:35:19 +04:00
|
|
|
|
2013-03-09 22:18:34 +04:00
|
|
|
//$this->size = filesize( $this->rawPath );
|
2012-09-11 16:40:45 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
|
|
|
|
2013-03-09 22:18:34 +04:00
|
|
|
//$this->handle = fopen( $this->rawPath, $mode );
|
2012-09-11 16:40:45 +04:00
|
|
|
|
2013-04-12 16:13:38 +04:00
|
|
|
$this->handle = $this->rootView->fopen( $this->rawPath, $mode );
|
2012-10-17 19:35:19 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
\OC_FileProxy::$enabled = true;
|
|
|
|
|
2013-03-09 22:18:34 +04:00
|
|
|
if ( ! is_resource( $this->handle ) ) {
|
2012-08-16 22:18:18 +04:00
|
|
|
|
2013-04-12 16:13:38 +04:00
|
|
|
\OCP\Util::writeLog( 'files_encryption', 'failed to open file "' . $this->rawPath . '"', \OCP\Util::ERROR );
|
2012-08-16 22:18:18 +04:00
|
|
|
|
2013-03-09 22:18:34 +04:00
|
|
|
} else {
|
|
|
|
|
|
|
|
$this->meta = stream_get_meta_data( $this->handle );
|
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-09-11 16:40:45 +04:00
|
|
|
return is_resource( $this->handle );
|
2012-08-16 22:18:18 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-09-11 16:40:45 +04:00
|
|
|
public function stream_seek( $offset, $whence = SEEK_SET ) {
|
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
$this->flush();
|
2012-09-11 16:40:45 +04:00
|
|
|
|
|
|
|
fseek( $this->handle, $offset, $whence );
|
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function stream_tell() {
|
2012-09-11 16:40:45 +04:00
|
|
|
return ftell($this->handle);
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
|
|
|
|
2012-08-23 19:43:10 +04:00
|
|
|
public function stream_read( $count ) {
|
2012-09-11 16:40:45 +04:00
|
|
|
|
2012-08-23 19:43:10 +04:00
|
|
|
$this->writeCache = '';
|
|
|
|
|
|
|
|
if ( $count != 8192 ) {
|
2012-10-16 18:02:51 +04:00
|
|
|
|
2012-08-23 19:43:10 +04:00
|
|
|
// $count will always be 8192 https://bugs.php.net/bug.php?id=21641
|
|
|
|
// This makes this function a lot simpler, but will break this class if the above 'bug' gets 'fixed'
|
2013-02-09 21:01:38 +04:00
|
|
|
\OCP\Util::writeLog( 'files_encryption', 'PHP "bug" 21641 no longer holds, decryption system requires refactoring', \OCP\Util::FATAL );
|
2012-08-23 19:43:10 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
die();
|
2012-08-23 19:43:10 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
2012-08-23 19:43:10 +04:00
|
|
|
|
2012-09-11 16:40:45 +04:00
|
|
|
// $pos = ftell( $this->handle );
|
|
|
|
//
|
2012-10-17 19:35:19 +04:00
|
|
|
// Get the data from the file handle
|
|
|
|
$data = fread( $this->handle, 8192 );
|
2013-04-16 20:29:22 +04:00
|
|
|
|
|
|
|
$result = '';
|
2013-01-06 22:38:35 +04:00
|
|
|
|
2012-11-16 22:31:37 +04:00
|
|
|
if ( strlen( $data ) ) {
|
2012-09-11 16:40:45 +04:00
|
|
|
|
2013-04-16 20:29:22 +04:00
|
|
|
if ( ! $this->getKey() ) {
|
|
|
|
|
|
|
|
// Error! We don't have a key to decrypt the file with
|
|
|
|
throw new \Exception( 'Encryption key not found for "' . $this->rawPath . '" during attempted read via stream' );
|
2012-09-11 16:40:45 +04:00
|
|
|
|
2013-04-16 20:29:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Decrypt data
|
|
|
|
$result = Crypt::symmetricDecryptFileContent( $data, $this->plainKey );
|
2012-09-11 16:40:45 +04:00
|
|
|
|
2012-11-16 22:31:37 +04:00
|
|
|
}
|
2012-08-23 19:43:10 +04:00
|
|
|
|
2012-09-11 16:40:45 +04:00
|
|
|
// $length = $this->size - $pos;
|
|
|
|
//
|
|
|
|
// if ( $length < 8192 ) {
|
|
|
|
//
|
|
|
|
// $result = substr( $result, 0, $length );
|
|
|
|
//
|
|
|
|
// }
|
2012-08-23 19:43:10 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
return $result;
|
2012-08-23 19:43:10 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-10-16 18:02:51 +04:00
|
|
|
/**
|
2013-02-09 21:01:38 +04:00
|
|
|
* @brief Encrypt and pad data ready for writing to disk
|
2012-10-16 18:02:51 +04:00
|
|
|
* @param string $plainData data to be encrypted
|
|
|
|
* @param string $key key to use for encryption
|
|
|
|
* @return encrypted data on success, false on failure
|
|
|
|
*/
|
|
|
|
public function preWriteEncrypt( $plainData, $key ) {
|
|
|
|
|
|
|
|
// Encrypt data to 'catfile', which includes IV
|
2012-10-17 19:35:19 +04:00
|
|
|
if ( $encrypted = Crypt::symmetricEncryptFileContent( $plainData, $key ) ) {
|
2012-10-16 18:02:51 +04:00
|
|
|
|
2012-10-17 19:35:19 +04:00
|
|
|
return $encrypted;
|
2012-10-16 18:02:51 +04:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-08-23 19:43:10 +04:00
|
|
|
/**
|
2013-04-17 19:20:37 +04:00
|
|
|
* @brief Fetch the plain encryption key for the file and set it as plainKey property
|
2012-09-11 16:40:45 +04:00
|
|
|
* @param bool $generate if true, a new key will be generated if none can be found
|
2012-10-16 18:02:51 +04:00
|
|
|
* @return bool true on key found and set, false on key not found and new key generated and set
|
2012-08-23 19:43:10 +04:00
|
|
|
*/
|
2012-12-11 19:10:56 +04:00
|
|
|
public function getKey() {
|
2012-08-23 19:43:10 +04:00
|
|
|
|
2013-04-16 20:29:22 +04:00
|
|
|
// Check if key is already set
|
|
|
|
if ( isset( $this->plainKey ) && isset( $this->encKeyfile ) ) {
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
2012-10-10 21:40:59 +04:00
|
|
|
|
2013-04-16 20:29:22 +04:00
|
|
|
// Avoid problems with .part file extensions
|
|
|
|
$this->relPath = Keymanager::fixPartialFilePath( $this->relPath );
|
2013-04-22 06:40:49 +04:00
|
|
|
|
|
|
|
// Fetch and decrypt keyfile
|
|
|
|
// Fetch existing keyfile
|
|
|
|
$this->encKeyfile = Keymanager::getFileKey( $this->rootView, $this->userId, $this->relPath );
|
|
|
|
|
2013-04-16 20:29:22 +04:00
|
|
|
// If a keyfile already exists
|
2013-04-22 06:40:49 +04:00
|
|
|
if ( $this->encKeyfile ) {
|
2013-04-16 16:50:20 +04:00
|
|
|
$this->setUserProperty();
|
2012-12-11 19:10:56 +04:00
|
|
|
|
2013-04-10 19:37:03 +04:00
|
|
|
$session = new Session( $this->rootView );
|
2012-12-11 19:10:56 +04:00
|
|
|
|
2013-01-02 23:29:22 +04:00
|
|
|
$privateKey = $session->getPrivateKey( $this->userId );
|
|
|
|
|
2013-04-16 16:50:20 +04:00
|
|
|
$shareKey = Keymanager::getShareKey( $this->rootView, $this->userId, $this->relPath );
|
|
|
|
|
2013-04-16 20:29:22 +04:00
|
|
|
$this->plainKey = Crypt::multiKeyDecrypt( $this->encKeyfile, $shareKey, $privateKey );
|
|
|
|
|
2013-04-17 19:20:37 +04:00
|
|
|
// trigger_error( '$this->relPath = '.$this->relPath );
|
|
|
|
// trigger_error( '$this->userId = '.$this->userId);
|
|
|
|
// trigger_error( '$this->encKeyfile = '.$this->encKeyfile );
|
|
|
|
// trigger_error( '$this->plainKey1 = '.var_export($this->plainKey, 1));
|
2012-08-23 19:43:10 +04:00
|
|
|
|
2012-10-16 18:02:51 +04:00
|
|
|
return true;
|
|
|
|
|
2012-08-23 19:43:10 +04:00
|
|
|
} else {
|
2013-04-16 20:29:22 +04:00
|
|
|
|
2012-12-11 19:10:56 +04:00
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-04-16 16:50:20 +04:00
|
|
|
public function setUserProperty() {
|
2012-12-11 19:10:56 +04:00
|
|
|
|
|
|
|
// Only get the user again if it isn't already set
|
|
|
|
if ( empty( $this->userId ) ) {
|
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
// TODO: Move this user call out of here - it belongs
|
|
|
|
// elsewhere
|
2012-12-11 19:10:56 +04:00
|
|
|
$this->userId = \OCP\User::getUser();
|
|
|
|
|
2012-08-23 19:43:10 +04:00
|
|
|
}
|
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
// TODO: Add a method for getting the user in case OCP\User::
|
|
|
|
// getUser() doesn't work (can that scenario ever occur?)
|
2012-12-11 19:10:56 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-10-16 18:02:51 +04:00
|
|
|
* @brief Handle plain data from the stream, and write it in 8192 byte blocks
|
2012-10-10 21:40:59 +04:00
|
|
|
* @param string $data data to be written to disk
|
|
|
|
* @note the data will be written to the path stored in the stream handle, set in stream_open()
|
2012-10-16 18:02:51 +04:00
|
|
|
* @note $data is only ever be a maximum of 8192 bytes long. This is set by PHP internally. stream_write() is called multiple times in a loop on data larger than 8192 bytes
|
|
|
|
* @note Because the encryption process used increases the length of $data, a writeCache is used to carry over data which would not fit in the required block size
|
|
|
|
* @note Padding is added to each encrypted block to ensure that the resulting block is exactly 8192 bytes. This is removed during stream_read
|
|
|
|
* @note PHP automatically updates the file pointer after writing data to reflect it's length. There is generally no need to update the poitner manually using fseek
|
2012-08-16 22:18:18 +04:00
|
|
|
*/
|
|
|
|
public function stream_write( $data ) {
|
2013-01-02 23:29:22 +04:00
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
// Disable the file proxies so that encryption is not
|
|
|
|
// automatically attempted when the file is written to disk -
|
|
|
|
// we are handling that separately here and we don't want to
|
|
|
|
// get into an infinite loop
|
2012-08-23 19:43:10 +04:00
|
|
|
\OC_FileProxy::$enabled = false;
|
|
|
|
|
2012-10-16 18:02:51 +04:00
|
|
|
// Get the length of the unencrypted data that we are handling
|
2012-08-16 22:18:18 +04:00
|
|
|
$length = strlen( $data );
|
2012-10-10 21:40:59 +04:00
|
|
|
|
2012-10-16 18:02:51 +04:00
|
|
|
// So far this round, no data has been written
|
2012-08-16 22:18:18 +04:00
|
|
|
$written = 0;
|
2012-10-16 18:02:51 +04:00
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
// Find out where we are up to in the writing of data to the
|
|
|
|
// file
|
2012-10-10 21:40:59 +04:00
|
|
|
$pointer = ftell( $this->handle );
|
|
|
|
|
2012-12-11 19:10:56 +04:00
|
|
|
// Make sure the userId is set
|
2013-04-16 20:29:22 +04:00
|
|
|
$this->setUserProperty();
|
2012-08-16 22:18:18 +04:00
|
|
|
|
2012-10-16 18:02:51 +04:00
|
|
|
// Get / generate the keyfile for the file we're handling
|
2013-01-14 23:07:28 +04:00
|
|
|
// If we're writing a new file (not overwriting an existing
|
|
|
|
// one), save the newly generated keyfile
|
2012-10-16 18:02:51 +04:00
|
|
|
if ( ! $this->getKey() ) {
|
2012-12-11 19:10:56 +04:00
|
|
|
|
2013-04-16 20:29:22 +04:00
|
|
|
$this->plainKey = Crypt::generateKey();
|
2012-12-11 19:10:56 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
2013-04-16 20:29:22 +04:00
|
|
|
|
2013-04-17 19:20:37 +04:00
|
|
|
// Fetch user's public key
|
|
|
|
$this->publicKey = Keymanager::getPublicKey( $this->rootView, $this->userId );
|
|
|
|
|
|
|
|
// Check if OC sharing api is enabled
|
|
|
|
$sharingEnabled = \OCP\Share::isEnabled();
|
|
|
|
|
|
|
|
$util = new Util( $this->rootView, $this->userId );
|
|
|
|
|
|
|
|
// Get all users sharing the file
|
|
|
|
$uniqueUserIds = $util->getSharingUsersArray( $sharingEnabled, $this->relPath );
|
2013-04-22 06:40:49 +04:00
|
|
|
|
|
|
|
// allways add current user
|
|
|
|
$uniqueUserIds[] = $this->userId;
|
|
|
|
array_unique( $uniqueUserIds );
|
|
|
|
|
2013-04-17 19:20:37 +04:00
|
|
|
// Fetch public keys for all sharing users
|
|
|
|
$publicKeys = Keymanager::getPublicKeys( $this->rootView, $uniqueUserIds );
|
2013-04-22 06:40:49 +04:00
|
|
|
|
|
|
|
// Encrypt enc key for all sharing users
|
2013-04-17 19:20:37 +04:00
|
|
|
$this->encKeyfiles = Crypt::multiKeyEncrypt( $this->plainKey, $publicKeys );
|
|
|
|
|
|
|
|
$view = new \OC_FilesystemView( '/' );
|
|
|
|
|
|
|
|
// Save the new encrypted file key
|
|
|
|
Keymanager::setFileKey( $this->rootView, $this->relPath, $this->userId, $this->encKeyfiles['data'] );
|
|
|
|
|
|
|
|
// Save the sharekeys
|
|
|
|
Keymanager::setShareKeys( $view, $this->relPath, $this->encKeyfiles['keys'] );
|
|
|
|
|
|
|
|
// trigger_error( "\$this->encKeyfiles['data'] = ".$this->encKeyfiles['data'] );
|
|
|
|
// trigger_error( '$this->relPath = '.$this->relPath );
|
|
|
|
// trigger_error( '$this->userId = '.$this->userId);
|
|
|
|
// trigger_error( '$this->encKeyfile = '.var_export($this->encKeyfiles, 1) );
|
2013-04-16 20:29:22 +04:00
|
|
|
// trigger_error( '$this->plainKey2 = '.var_export($this->plainKey, 1));
|
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
// If extra data is left over from the last round, make sure it
|
|
|
|
// is integrated into the next 6126 / 8192 block
|
2012-10-16 18:02:51 +04:00
|
|
|
if ( $this->writeCache ) {
|
|
|
|
|
|
|
|
// Concat writeCache to start of $data
|
|
|
|
$data = $this->writeCache . $data;
|
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
// Clear the write cache, ready for resuse - it has been
|
|
|
|
// flushed and its old contents processed
|
2012-10-16 18:02:51 +04:00
|
|
|
$this->writeCache = '';
|
|
|
|
|
|
|
|
}
|
2012-09-11 16:40:45 +04:00
|
|
|
//
|
2012-08-23 22:19:39 +04:00
|
|
|
// // Make sure we always start on a block start
|
2013-01-24 22:37:34 +04:00
|
|
|
if ( 0 != ( $pointer % 8192 ) ) {
|
2013-02-05 21:28:26 +04:00
|
|
|
// if the current position of
|
2013-01-24 22:37:34 +04:00
|
|
|
// file indicator is not aligned to a 8192 byte block, fix it
|
|
|
|
// so that it is
|
2012-10-10 21:40:59 +04:00
|
|
|
|
|
|
|
// fseek( $this->handle, - ( $pointer % 8192 ), SEEK_CUR );
|
|
|
|
//
|
|
|
|
// $pointer = ftell( $this->handle );
|
2012-08-23 22:19:39 +04:00
|
|
|
//
|
2012-10-10 21:40:59 +04:00
|
|
|
// $unencryptedNewBlock = fread( $this->handle, 8192 );
|
|
|
|
//
|
2012-09-11 16:40:45 +04:00
|
|
|
// fseek( $this->handle, - ( $currentPos % 8192 ), SEEK_CUR );
|
2012-08-23 22:19:39 +04:00
|
|
|
//
|
2013-04-16 20:29:22 +04:00
|
|
|
// $block = Crypt::symmetricDecryptFileContent( $unencryptedNewBlock, $this->plainKey );
|
2012-08-23 22:19:39 +04:00
|
|
|
//
|
|
|
|
// $x = substr( $block, 0, $currentPos % 8192 );
|
|
|
|
//
|
|
|
|
// $data = $x . $data;
|
|
|
|
//
|
2012-09-11 16:40:45 +04:00
|
|
|
// fseek( $this->handle, - ( $currentPos % 8192 ), SEEK_CUR );
|
2012-08-23 22:19:39 +04:00
|
|
|
//
|
2012-10-10 21:40:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// $currentPos = ftell( $this->handle );
|
2012-09-11 16:40:45 +04:00
|
|
|
|
2012-10-10 21:40:59 +04:00
|
|
|
// // While there still remains somed data to be processed & written
|
|
|
|
while( strlen( $data ) > 0 ) {
|
2013-04-17 19:20:37 +04:00
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
// // Remaining length for this iteration, not of the
|
|
|
|
// // entire file (may be greater than 8192 bytes)
|
2012-09-11 16:40:45 +04:00
|
|
|
// $remainingLength = strlen( $data );
|
|
|
|
//
|
2013-01-24 22:37:34 +04:00
|
|
|
// // If data remaining to be written is less than the
|
|
|
|
// // size of 1 6126 byte block
|
2012-10-16 18:02:51 +04:00
|
|
|
if ( strlen( $data ) < 6126 ) {
|
2013-04-17 19:20:37 +04:00
|
|
|
|
2012-10-16 18:02:51 +04:00
|
|
|
// Set writeCache to contents of $data
|
2013-01-24 22:37:34 +04:00
|
|
|
// The writeCache will be carried over to the
|
|
|
|
// next write round, and added to the start of
|
|
|
|
// $data to ensure that written blocks are
|
|
|
|
// always the correct length. If there is still
|
|
|
|
// data in writeCache after the writing round
|
|
|
|
// has finished, then the data will be written
|
|
|
|
// to disk by $this->flush().
|
2012-10-16 18:02:51 +04:00
|
|
|
$this->writeCache = $data;
|
|
|
|
|
|
|
|
// Clear $data ready for next round
|
|
|
|
$data = '';
|
2012-08-23 22:19:39 +04:00
|
|
|
//
|
2012-10-16 18:02:51 +04:00
|
|
|
} else {
|
2012-08-23 22:19:39 +04:00
|
|
|
|
2012-10-10 21:40:59 +04:00
|
|
|
// Read the chunk from the start of $data
|
|
|
|
$chunk = substr( $data, 0, 6126 );
|
|
|
|
|
2013-04-16 20:29:22 +04:00
|
|
|
$encrypted = $this->preWriteEncrypt( $chunk, $this->plainKey );
|
2012-10-10 21:40:59 +04:00
|
|
|
|
2013-04-22 06:40:49 +04:00
|
|
|
//trigger_error("\$encrypted = $encrypted");
|
2013-04-17 19:20:37 +04:00
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
// Write the data chunk to disk. This will be
|
2013-02-09 21:01:38 +04:00
|
|
|
// attended to the last data chunk if the file
|
2013-01-24 22:37:34 +04:00
|
|
|
// being handled totals more than 6126 bytes
|
2012-10-16 18:02:51 +04:00
|
|
|
fwrite( $this->handle, $encrypted );
|
2012-10-10 21:40:59 +04:00
|
|
|
|
2012-10-16 18:02:51 +04:00
|
|
|
$writtenLen = strlen( $encrypted );
|
2012-10-10 21:40:59 +04:00
|
|
|
//fseek( $this->handle, $writtenLen, SEEK_CUR );
|
2012-08-16 22:18:18 +04:00
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
// Remove the chunk we just processed from
|
|
|
|
// $data, leaving only unprocessed data in $data
|
|
|
|
// var, for handling on the next round
|
2012-10-10 21:40:59 +04:00
|
|
|
$data = substr( $data, 6126 );
|
2012-08-16 22:18:18 +04:00
|
|
|
|
2012-10-16 18:02:51 +04:00
|
|
|
}
|
|
|
|
|
2012-10-10 21:40:59 +04:00
|
|
|
}
|
2013-04-17 19:20:37 +04:00
|
|
|
|
2012-10-10 21:40:59 +04:00
|
|
|
$this->size = max( $this->size, $pointer + $length );
|
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
return $length;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
public function stream_set_option( $option, $arg1, $arg2 ) {
|
2012-08-16 22:18:18 +04:00
|
|
|
switch($option) {
|
|
|
|
case STREAM_OPTION_BLOCKING:
|
2013-01-24 22:37:34 +04:00
|
|
|
stream_set_blocking( $this->handle, $arg1 );
|
2012-08-16 22:18:18 +04:00
|
|
|
break;
|
|
|
|
case STREAM_OPTION_READ_TIMEOUT:
|
2013-01-24 22:37:34 +04:00
|
|
|
stream_set_timeout( $this->handle, $arg1, $arg2 );
|
2012-08-16 22:18:18 +04:00
|
|
|
break;
|
|
|
|
case STREAM_OPTION_WRITE_BUFFER:
|
2013-01-24 22:37:34 +04:00
|
|
|
stream_set_write_buffer( $this->handle, $arg1, $arg2 );
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function stream_stat() {
|
2012-09-11 16:40:45 +04:00
|
|
|
return fstat($this->handle);
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
public function stream_lock( $mode ) {
|
|
|
|
flock( $this->handle, $mode );
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function stream_flush() {
|
2012-09-11 16:40:45 +04:00
|
|
|
|
2013-01-24 22:37:34 +04:00
|
|
|
return fflush( $this->handle );
|
|
|
|
// Not a typo: http://php.net/manual/en/function.fflush.php
|
2012-09-11 16:40:45 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function stream_eof() {
|
2012-09-11 16:40:45 +04:00
|
|
|
return feof($this->handle);
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
private function flush() {
|
2012-09-11 16:40:45 +04:00
|
|
|
|
|
|
|
if ( $this->writeCache ) {
|
|
|
|
|
|
|
|
// Set keyfile property for file in question
|
|
|
|
$this->getKey();
|
|
|
|
|
2013-04-16 20:29:22 +04:00
|
|
|
$encrypted = $this->preWriteEncrypt( $this->writeCache, $this->plainKey );
|
2012-09-11 16:40:45 +04:00
|
|
|
|
|
|
|
fwrite( $this->handle, $encrypted );
|
|
|
|
|
|
|
|
$this->writeCache = '';
|
2013-04-17 19:20:37 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
2012-09-11 16:40:45 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function stream_close() {
|
2012-08-23 19:43:10 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
$this->flush();
|
2013-04-17 19:20:37 +04:00
|
|
|
|
2013-01-06 22:38:35 +04:00
|
|
|
if (
|
|
|
|
$this->meta['mode']!='r'
|
|
|
|
and $this->meta['mode']!='rb'
|
|
|
|
) {
|
2013-04-17 19:20:37 +04:00
|
|
|
|
2013-04-19 00:34:22 +04:00
|
|
|
\OC\Files\Filesystem::putFileInfo( $this->relPath, array( 'encrypted' => true, 'size' => $this->size ), '' );
|
2012-08-23 19:43:10 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
2013-04-17 19:20:37 +04:00
|
|
|
|
2013-01-06 22:38:35 +04:00
|
|
|
return fclose( $this->handle );
|
2012-08-23 19:43:10 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|
2012-08-23 19:43:10 +04:00
|
|
|
|
2012-08-16 22:18:18 +04:00
|
|
|
}
|