2015-05-15 16:34:17 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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 General Public License
|
|
|
|
* for more details.
|
|
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "filesystem.h"
|
2015-11-23 14:09:25 +03:00
|
|
|
#include "checksums.h"
|
2015-05-15 16:34:17 +03:00
|
|
|
#include "syncfileitem.h"
|
|
|
|
#include "propagatorjobs.h"
|
2015-10-01 16:00:33 +03:00
|
|
|
#include "account.h"
|
2015-05-15 16:34:17 +03:00
|
|
|
|
2015-05-22 15:43:47 +03:00
|
|
|
#include <qtconcurrentrun.h>
|
2015-05-15 16:34:17 +03:00
|
|
|
|
2015-12-08 12:59:42 +03:00
|
|
|
/** \file checksums.cpp
|
|
|
|
*
|
|
|
|
* \brief Computing and validating file checksums
|
|
|
|
*
|
|
|
|
* Overview
|
|
|
|
* --------
|
|
|
|
*
|
|
|
|
* Checksums are used in two distinct ways during synchronization:
|
|
|
|
*
|
|
|
|
* - to guard uploads and downloads against data corruption
|
|
|
|
* (transmission checksum)
|
|
|
|
* - to quickly check whether the content of a file has changed
|
|
|
|
* to avoid redundant uploads (content checksum)
|
|
|
|
*
|
|
|
|
* In principle both are independent and different checksumming
|
|
|
|
* algorithms can be used. To avoid redundant computations, it can
|
|
|
|
* make sense to use the same checksum algorithm though.
|
|
|
|
*
|
|
|
|
* Transmission Checksums
|
|
|
|
* ----------------------
|
|
|
|
*
|
|
|
|
* The usage of transmission checksums is currently optional and needs
|
|
|
|
* to be explicitly enabled by adding 'transmissionChecksum=TYPE' to
|
|
|
|
* the '[General]' section of the config file.
|
|
|
|
*
|
|
|
|
* When enabled, the checksum will be calculated on upload and sent to
|
|
|
|
* the server in the OC-Checksum header with the format 'TYPE:CHECKSUM'.
|
|
|
|
*
|
|
|
|
* On download, the header with the same name is read and if the
|
|
|
|
* received data does not have the expected checksum, the download is
|
|
|
|
* rejected.
|
|
|
|
*
|
|
|
|
* Transmission checksums guard a specific sync action and are not stored
|
|
|
|
* in the database.
|
|
|
|
*
|
|
|
|
* Content Checksums
|
|
|
|
* -----------------
|
|
|
|
*
|
|
|
|
* Sometimes the metadata of a local file changes while the content stays
|
|
|
|
* unchanged. Content checksums allow the sync client to avoid uploading
|
|
|
|
* the same data again by comparing the file's actual checksum to the
|
|
|
|
* checksum stored in the database.
|
|
|
|
*
|
|
|
|
* Content checksums are not sent to the server.
|
|
|
|
*
|
|
|
|
* Checksum Algorithms
|
|
|
|
* -------------------
|
|
|
|
*
|
|
|
|
* - Adler32 (requires zlib)
|
|
|
|
* - MD5
|
|
|
|
* - SHA1
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-05-15 16:34:17 +03:00
|
|
|
namespace OCC {
|
|
|
|
|
2015-10-14 16:03:40 +03:00
|
|
|
QByteArray makeChecksumHeader(const QByteArray& checksumType, const QByteArray& checksum)
|
|
|
|
{
|
|
|
|
QByteArray header = checksumType;
|
|
|
|
header.append(':');
|
|
|
|
header.append(checksum);
|
|
|
|
return header;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool parseChecksumHeader(const QByteArray& header, QByteArray* type, QByteArray* checksum)
|
|
|
|
{
|
|
|
|
if (header.isEmpty()) {
|
|
|
|
type->clear();
|
|
|
|
checksum->clear();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto idx = header.indexOf(':');
|
|
|
|
if (idx < 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*type = header.left(idx);
|
|
|
|
*checksum = header.mid(idx + 1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-10-15 10:39:49 +03:00
|
|
|
bool uploadChecksumEnabled()
|
|
|
|
{
|
|
|
|
static bool enabled = qgetenv("OWNCLOUD_DISABLE_CHECKSUM_UPLOAD").isEmpty();
|
|
|
|
return enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool downloadChecksumEnabled()
|
|
|
|
{
|
|
|
|
static bool enabled = qgetenv("OWNCLOUD_DISABLE_CHECKSUM_DOWNLOAD").isEmpty();
|
|
|
|
return enabled;
|
|
|
|
}
|
|
|
|
|
2015-10-14 16:03:40 +03:00
|
|
|
ComputeChecksum::ComputeChecksum(QObject* parent)
|
|
|
|
: QObject(parent)
|
2015-05-15 16:34:17 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-10-14 16:03:40 +03:00
|
|
|
void ComputeChecksum::setChecksumType(const QByteArray& type)
|
2015-05-15 16:34:17 +03:00
|
|
|
{
|
|
|
|
_checksumType = type;
|
|
|
|
}
|
|
|
|
|
2015-10-14 16:03:40 +03:00
|
|
|
QByteArray ComputeChecksum::checksumType() const
|
2015-05-15 16:34:17 +03:00
|
|
|
{
|
2015-10-01 16:00:33 +03:00
|
|
|
return _checksumType;
|
2015-05-21 15:30:21 +03:00
|
|
|
}
|
|
|
|
|
2015-10-14 16:03:40 +03:00
|
|
|
void ComputeChecksum::start(const QString& filePath)
|
2015-05-21 15:30:21 +03:00
|
|
|
{
|
2015-10-14 16:03:40 +03:00
|
|
|
// Calculate the checksum in a different thread first.
|
|
|
|
connect( &_watcher, SIGNAL(finished()),
|
|
|
|
this, SLOT(slotCalculationDone()),
|
|
|
|
Qt::UniqueConnection );
|
2015-11-23 13:53:06 +03:00
|
|
|
_watcher.setFuture(QtConcurrent::run(ComputeChecksum::computeNow, filePath, checksumType()));
|
|
|
|
}
|
2015-10-14 16:03:40 +03:00
|
|
|
|
2015-11-23 13:53:06 +03:00
|
|
|
QByteArray ComputeChecksum::computeNow(const QString& filePath, const QByteArray& checksumType)
|
|
|
|
{
|
|
|
|
if( checksumType == checkSumMD5C ) {
|
|
|
|
return FileSystem::calcMd5(filePath);
|
|
|
|
} else if( checksumType == checkSumSHA1C ) {
|
|
|
|
return FileSystem::calcSha1(filePath);
|
2015-10-14 16:03:40 +03:00
|
|
|
}
|
2015-05-15 16:34:17 +03:00
|
|
|
#ifdef ZLIB_FOUND
|
2015-11-23 13:53:06 +03:00
|
|
|
else if( checksumType == checkSumAdlerC) {
|
|
|
|
return FileSystem::calcAdler32(filePath);
|
2015-10-14 16:03:40 +03:00
|
|
|
}
|
2015-05-15 16:34:17 +03:00
|
|
|
#endif
|
2015-11-23 13:53:06 +03:00
|
|
|
// for an unknown checksum or no checksum, we're done right now
|
|
|
|
if( !checksumType.isEmpty() ) {
|
|
|
|
qDebug() << "Unknown checksum type:" << checksumType;
|
2015-05-15 16:34:17 +03:00
|
|
|
}
|
2015-11-23 13:53:06 +03:00
|
|
|
return QByteArray();
|
2015-05-15 16:34:17 +03:00
|
|
|
}
|
|
|
|
|
2015-10-14 16:03:40 +03:00
|
|
|
void ComputeChecksum::slotCalculationDone()
|
2015-05-15 16:34:17 +03:00
|
|
|
{
|
|
|
|
QByteArray checksum = _watcher.future().result();
|
2015-11-23 13:53:06 +03:00
|
|
|
if (!checksum.isNull()) {
|
|
|
|
emit done(_checksumType, checksum);
|
|
|
|
} else {
|
|
|
|
emit done(QByteArray(), QByteArray());
|
|
|
|
}
|
2015-10-14 16:03:40 +03:00
|
|
|
}
|
2015-05-15 16:34:17 +03:00
|
|
|
|
|
|
|
|
2015-10-14 16:03:40 +03:00
|
|
|
ValidateChecksumHeader::ValidateChecksumHeader(QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
{
|
2015-05-15 16:34:17 +03:00
|
|
|
}
|
|
|
|
|
2015-10-14 16:03:40 +03:00
|
|
|
void ValidateChecksumHeader::start(const QString& filePath, const QByteArray& checksumHeader)
|
2015-05-15 16:34:17 +03:00
|
|
|
{
|
2015-10-14 16:03:40 +03:00
|
|
|
// If the incoming header is empty no validation can happen. Just continue.
|
2015-10-14 14:41:51 +03:00
|
|
|
if( checksumHeader.isEmpty() ) {
|
2015-10-28 13:00:03 +03:00
|
|
|
emit validated(QByteArray(), QByteArray());
|
2015-05-15 16:34:17 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-10-14 16:03:40 +03:00
|
|
|
if( !parseChecksumHeader(checksumHeader, &_expectedChecksumType, &_expectedChecksum) ) {
|
2015-05-15 16:34:17 +03:00
|
|
|
qDebug() << "Checksum header malformed:" << checksumHeader;
|
2015-05-19 17:49:22 +03:00
|
|
|
emit validationFailed(tr("The checksum header is malformed."));
|
|
|
|
return;
|
2015-05-15 16:34:17 +03:00
|
|
|
}
|
2015-10-14 16:03:40 +03:00
|
|
|
|
|
|
|
auto calculator = new ComputeChecksum(this);
|
|
|
|
calculator->setChecksumType(_expectedChecksumType);
|
|
|
|
connect(calculator, SIGNAL(done(QByteArray,QByteArray)),
|
|
|
|
SLOT(slotChecksumCalculated(QByteArray,QByteArray)));
|
|
|
|
calculator->start(filePath);
|
2015-05-15 16:34:17 +03:00
|
|
|
}
|
|
|
|
|
2015-10-14 16:03:40 +03:00
|
|
|
void ValidateChecksumHeader::slotChecksumCalculated(const QByteArray& checksumType,
|
|
|
|
const QByteArray& checksum)
|
2015-05-15 16:34:17 +03:00
|
|
|
{
|
2015-10-14 16:03:40 +03:00
|
|
|
if( checksumType != _expectedChecksumType ) {
|
|
|
|
emit validationFailed(tr("The checksum header contained an unknown checksum type '%1'").arg(
|
|
|
|
QString::fromLatin1(_expectedChecksumType)));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if( checksum != _expectedChecksum ) {
|
2015-05-19 17:49:22 +03:00
|
|
|
emit validationFailed(tr("The downloaded file does not match the checksum, it will be resumed."));
|
2015-10-14 16:03:40 +03:00
|
|
|
return;
|
2015-05-15 16:34:17 +03:00
|
|
|
}
|
2015-10-28 13:00:03 +03:00
|
|
|
emit validated(checksumType, checksum);
|
2015-05-15 16:34:17 +03:00
|
|
|
}
|
|
|
|
|
2015-11-23 13:53:06 +03:00
|
|
|
CSyncChecksumHook::CSyncChecksumHook(SyncJournalDb *journal)
|
|
|
|
: _journal(journal)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-11-23 15:44:49 +03:00
|
|
|
const char* CSyncChecksumHook::hook(const char* path, uint32_t checksumTypeId, void *this_obj)
|
2015-11-23 13:53:06 +03:00
|
|
|
{
|
|
|
|
CSyncChecksumHook* checksumHook = static_cast<CSyncChecksumHook*>(this_obj);
|
2015-11-23 15:44:49 +03:00
|
|
|
QByteArray checksum = checksumHook->compute(QString::fromUtf8(path), checksumTypeId);
|
|
|
|
if (checksum.isNull()) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* result = (char*)malloc(checksum.size() + 1);
|
|
|
|
memcpy(result, checksum.constData(), checksum.size());
|
|
|
|
result[checksum.size()] = 0;
|
|
|
|
return result;
|
2015-11-23 13:53:06 +03:00
|
|
|
}
|
|
|
|
|
2015-11-23 15:44:49 +03:00
|
|
|
QByteArray CSyncChecksumHook::compute(const QString& path, int checksumTypeId)
|
2015-11-23 13:53:06 +03:00
|
|
|
{
|
|
|
|
QByteArray checksumType = _journal->getChecksumType(checksumTypeId);
|
|
|
|
if (checksumType.isEmpty()) {
|
|
|
|
qDebug() << "Checksum type" << checksumTypeId << "not found";
|
2015-11-23 15:44:49 +03:00
|
|
|
return QByteArray();
|
2015-11-23 13:53:06 +03:00
|
|
|
}
|
|
|
|
|
2015-11-23 15:44:49 +03:00
|
|
|
QByteArray checksum = ComputeChecksum::computeNow(path, checksumType);
|
|
|
|
if (checksum.isNull()) {
|
2015-11-23 13:53:06 +03:00
|
|
|
qDebug() << "Failed to compute checksum" << checksumType << "for" << path;
|
2015-11-23 15:44:49 +03:00
|
|
|
return QByteArray();
|
2015-11-23 13:53:06 +03:00
|
|
|
}
|
2015-11-23 15:44:49 +03:00
|
|
|
|
|
|
|
return checksum;
|
2015-11-23 13:53:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-15 16:34:17 +03:00
|
|
|
}
|