ClickHouse/src/IO/WriteBufferFromEncryptedFile.cpp

66 lines
1.6 KiB
C++
Raw Normal View History

#include <IO/WriteBufferFromEncryptedFile.h>
#if USE_SSL
#include <Common/MemoryTracker.h>
namespace DB
{
WriteBufferFromEncryptedFile::WriteBufferFromEncryptedFile(
size_t buffer_size_,
std::unique_ptr<WriteBufferFromFileBase> out_,
const String & key_,
const FileEncryption::Header & header_,
size_t old_file_size)
2021-11-10 22:58:56 +00:00
: WriteBufferDecorator<WriteBufferFromFileBase>(std::move(out_), buffer_size_, nullptr, 0)
, header(header_)
, flush_header(!old_file_size)
, encryptor(header.algorithm, key_, header.init_vector)
{
encryptor.setOffset(old_file_size);
}
WriteBufferFromEncryptedFile::~WriteBufferFromEncryptedFile()
{
2021-11-10 22:58:56 +00:00
if (finalized)
return;
2021-11-10 22:58:56 +00:00
MemoryTracker::LockExceptionInThread lock(VariableContext::Global);
finalizeImpl();
}
2021-11-10 22:58:56 +00:00
void WriteBufferFromEncryptedFile::finalizeBeforeNestedFinalize()
{
/// If buffer has pending data - write it.
next();
/// Note that if there is no data to write an empty file will be written, even without the initialization vector
/// (see nextImpl(): it writes the initialization vector only if there is some data ready to write).
/// That's fine because DiskEncrypted allows files without initialization vectors when they're empty.
}
void WriteBufferFromEncryptedFile::sync()
{
/// If buffer has pending data - write it.
next();
out->sync();
}
void WriteBufferFromEncryptedFile::nextImpl()
{
if (!offset())
return;
if (flush_header)
{
header.write(*out);
flush_header = false;
}
encryptor.encrypt(working_buffer.begin(), offset(), *out);
}
}
#endif