2020-08-25 16:05:56 +02:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
2019-10-03 12:32:47 +02:00
|
|
|
*
|
2020-08-22 01:19:58 +02:00
|
|
|
* SPDX-FileCopyrightText: 2014 Kevin Kofler <kevin.kofler@chello.at>
|
|
|
|
* SPDX-FileCopyrightText: 2016 Philip Müller <philm@manjaro.org>
|
|
|
|
* SPDX-FileCopyrightText: 2017 Alf Gaida <agaida@siduction.org>
|
|
|
|
* SPDX-FileCopyrightText: 2019-2020 Adriaan de Groot <groot@kde.org>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2019-10-03 12:32:47 +02:00
|
|
|
*
|
2020-08-25 16:05:56 +02:00
|
|
|
* Calamares is Free Software: see the License-Identifier above.
|
2019-10-03 12:32:47 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Workers.h"
|
|
|
|
|
|
|
|
#include "utils/CalamaresUtilsSystem.h"
|
2020-01-30 10:16:15 +01:00
|
|
|
#include "utils/Entropy.h"
|
2019-10-03 12:32:47 +02:00
|
|
|
#include "utils/Logger.h"
|
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
|
2020-02-17 11:51:56 +01:00
|
|
|
/// @brief Returns a recommended size for the entropy pool (in bytes)
|
|
|
|
STATICTEST int
|
|
|
|
getUrandomPoolSize()
|
|
|
|
{
|
|
|
|
QFile f( "/proc/sys/kernel/random/poolsize" );
|
|
|
|
constexpr const int minimumPoolSize = 512;
|
|
|
|
int poolSize = minimumPoolSize;
|
|
|
|
|
|
|
|
if ( f.exists() && f.open( QIODevice::ReadOnly | QIODevice::Text ) )
|
|
|
|
{
|
|
|
|
QByteArray v = f.read( 16 );
|
|
|
|
if ( v.length() > 2 )
|
|
|
|
{
|
|
|
|
if ( v.endsWith( '\n' ) )
|
|
|
|
{
|
|
|
|
v.chop( 1 );
|
|
|
|
}
|
|
|
|
bool ok = false;
|
|
|
|
poolSize = v.toInt( &ok );
|
|
|
|
if ( !ok )
|
|
|
|
{
|
|
|
|
poolSize = minimumPoolSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ( poolSize >= minimumPoolSize ) ? poolSize : minimumPoolSize;
|
|
|
|
}
|
|
|
|
|
2019-10-03 12:32:47 +02:00
|
|
|
namespace MachineId
|
|
|
|
{
|
|
|
|
|
2019-10-04 17:43:48 +02:00
|
|
|
static inline bool
|
|
|
|
isAbsolutePath( const QString& fileName )
|
|
|
|
{
|
|
|
|
return fileName.startsWith( '/' );
|
|
|
|
}
|
|
|
|
|
2019-10-03 12:32:47 +02:00
|
|
|
Calamares::JobResult
|
|
|
|
copyFile( const QString& rootMountPoint, const QString& fileName )
|
|
|
|
{
|
2019-10-04 17:43:48 +02:00
|
|
|
if ( !isAbsolutePath( fileName ) )
|
|
|
|
{
|
|
|
|
return Calamares::JobResult::internalError(
|
|
|
|
QObject::tr( "File not found" ),
|
|
|
|
QObject::tr( "Path <pre>%1</pre> must be an absolute path." ).arg( fileName ),
|
|
|
|
0 );
|
|
|
|
}
|
|
|
|
|
2019-10-03 12:32:47 +02:00
|
|
|
QFile f( fileName );
|
|
|
|
if ( !f.exists() )
|
|
|
|
{
|
|
|
|
return Calamares::JobResult::error( QObject::tr( "File not found" ), fileName );
|
|
|
|
}
|
|
|
|
if ( !f.copy( rootMountPoint + fileName ) )
|
|
|
|
{
|
|
|
|
return Calamares::JobResult::error( QObject::tr( "File not found" ), rootMountPoint + fileName );
|
|
|
|
}
|
|
|
|
return Calamares::JobResult::ok();
|
|
|
|
}
|
|
|
|
|
|
|
|
Calamares::JobResult
|
|
|
|
createNewEntropy( int poolSize, const QString& rootMountPoint, const QString& fileName )
|
|
|
|
{
|
2020-01-30 10:16:15 +01:00
|
|
|
QFile entropyFile( rootMountPoint + fileName );
|
|
|
|
if ( entropyFile.exists() )
|
2019-10-03 12:32:47 +02:00
|
|
|
{
|
2020-01-30 10:16:15 +01:00
|
|
|
cWarning() << "Entropy file" << ( rootMountPoint + fileName ) << "already exists.";
|
|
|
|
return Calamares::JobResult::ok(); // .. anyway
|
|
|
|
}
|
|
|
|
if ( !entropyFile.open( QIODevice::WriteOnly ) )
|
|
|
|
{
|
|
|
|
return Calamares::JobResult::error(
|
|
|
|
QObject::tr( "File not found" ),
|
|
|
|
QObject::tr( "Could not create new random file <pre>%1</pre>." ).arg( fileName ) );
|
|
|
|
}
|
2019-10-03 12:32:47 +02:00
|
|
|
|
2020-01-30 10:16:15 +01:00
|
|
|
QByteArray data;
|
|
|
|
CalamaresUtils::EntropySource source = CalamaresUtils::getEntropy( poolSize, data );
|
|
|
|
entropyFile.write( data );
|
|
|
|
entropyFile.close();
|
|
|
|
if ( entropyFile.size() < data.length() )
|
|
|
|
{
|
|
|
|
cWarning() << "Entropy file is" << entropyFile.size() << "bytes, random data was" << data.length();
|
2019-10-03 12:32:47 +02:00
|
|
|
}
|
2020-01-30 10:16:15 +01:00
|
|
|
if ( data.length() < poolSize )
|
|
|
|
{
|
|
|
|
cWarning() << "Entropy data is" << data.length() << "bytes, rather than poolSize" << poolSize;
|
|
|
|
}
|
|
|
|
if ( source != CalamaresUtils::EntropySource::URandom )
|
|
|
|
{
|
|
|
|
cWarning() << "Entropy data for pool is low-quality.";
|
|
|
|
}
|
|
|
|
return Calamares::JobResult::ok();
|
2019-10-03 12:32:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Calamares::JobResult
|
|
|
|
createEntropy( const EntropyGeneration kind, const QString& rootMountPoint, const QString& fileName )
|
|
|
|
{
|
|
|
|
if ( kind == EntropyGeneration::CopyFromHost )
|
|
|
|
{
|
|
|
|
if ( QFile::exists( fileName ) )
|
|
|
|
{
|
|
|
|
auto r = copyFile( rootMountPoint, fileName );
|
|
|
|
if ( r )
|
|
|
|
{
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cWarning() << "Could not copy" << fileName << "for entropy, generating new.";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cWarning() << "Host system entropy does not exist at" << fileName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int poolSize = getUrandomPoolSize();
|
|
|
|
return createNewEntropy( poolSize, rootMountPoint, fileName );
|
|
|
|
}
|
|
|
|
|
2019-10-04 14:57:05 +02:00
|
|
|
static Calamares::JobResult
|
|
|
|
runCmd( const QStringList& cmd )
|
2019-10-03 12:32:47 +02:00
|
|
|
{
|
2019-10-04 13:48:24 +02:00
|
|
|
auto r = CalamaresUtils::System::instance()->targetEnvCommand( cmd );
|
|
|
|
if ( r.getExitCode() )
|
|
|
|
{
|
|
|
|
return r.explainProcess( cmd, std::chrono::seconds( 0 ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
return Calamares::JobResult::ok();
|
2019-10-03 12:32:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Calamares::JobResult
|
2019-10-04 14:57:05 +02:00
|
|
|
createSystemdMachineId( const QString& rootMountPoint, const QString& fileName )
|
|
|
|
{
|
|
|
|
Q_UNUSED( rootMountPoint )
|
|
|
|
Q_UNUSED( fileName )
|
|
|
|
return runCmd( QStringList { QStringLiteral( "systemd-machine-id-setup" ) } );
|
|
|
|
}
|
|
|
|
|
|
|
|
Calamares::JobResult
|
|
|
|
createDBusMachineId( const QString& rootMountPoint, const QString& fileName )
|
|
|
|
{
|
|
|
|
Q_UNUSED( rootMountPoint )
|
|
|
|
Q_UNUSED( fileName )
|
|
|
|
return runCmd( QStringList { QStringLiteral( "dbus-uuidgen" ), QStringLiteral( "--ensure" ) } );
|
|
|
|
}
|
|
|
|
|
|
|
|
Calamares::JobResult
|
|
|
|
createDBusLink( const QString& rootMountPoint, const QString& fileName, const QString& systemdFileName )
|
2019-10-03 12:32:47 +02:00
|
|
|
{
|
2019-11-28 23:31:50 +01:00
|
|
|
Q_UNUSED( rootMountPoint )
|
2020-02-07 20:31:15 +01:00
|
|
|
return runCmd( QStringList { QStringLiteral( "ln" ), QStringLiteral( "-sf" ), systemdFileName, fileName } );
|
2019-10-03 12:32:47 +02:00
|
|
|
}
|
|
|
|
|
2019-10-03 13:32:48 +02:00
|
|
|
} // namespace MachineId
|