calamares/src/modules/machineid/MachineIdJob.cpp
Adriaan de Groot 1cd9b93a22 REUSE: Giant boilerplate cleanup
- point to main Calamares site in the 'part of' headers instead
  of to github (this is the "this file is part of Calamares"
  opening line for most files).
- remove boilerplate from all source files, CMake modules and completions,
  this is the 3-paragraph summary of the GPL-3.0-or-later, which has
  a meaning entirely covered by the SPDX tag.
2020-08-26 02:28:38 +02:00

151 lines
4.3 KiB
C++

/* === This file is part of Calamares - <https://calamares.io> ===
*
* 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
*
* Calamares is Free Software: see the License-Identifier above.
*
*/
#include "MachineIdJob.h"
#include "Workers.h"
#include "utils/CalamaresUtilsSystem.h"
#include "utils/Logger.h"
#include "utils/Variant.h"
#include "GlobalStorage.h"
#include "JobQueue.h"
#include <QFile>
MachineIdJob::MachineIdJob( QObject* parent )
: Calamares::CppJob( parent )
{
}
MachineIdJob::~MachineIdJob() {}
QString
MachineIdJob::prettyName() const
{
return tr( "Generate machine-id." );
}
Calamares::JobResult
MachineIdJob::exec()
{
QString root;
Calamares::GlobalStorage* gs = Calamares::JobQueue::instance()->globalStorage();
if ( gs && gs->contains( "rootMountPoint" ) )
{
root = gs->value( "rootMountPoint" ).toString();
}
else
{
cWarning() << "No *rootMountPoint* defined.";
return Calamares::JobResult::internalError( tr( "Configuration Error" ),
tr( "No root mount point is set for MachineId." ),
Calamares::JobResult::InvalidConfiguration );
}
QString target_systemd_machineid_file = QStringLiteral( "/etc/machine-id" );
QString target_dbus_machineid_file = QStringLiteral( "/var/lib/dbus/machine-id" );
QString target_entropy_file = QStringLiteral( "/var/lib/urandom/random-seed" );
const CalamaresUtils::System* system = CalamaresUtils::System::instance();
// Clear existing files
if ( m_entropy )
{
system->removeTargetFile( target_entropy_file );
}
if ( m_dbus )
{
system->removeTargetFile( target_dbus_machineid_file );
}
if ( m_systemd )
{
system->removeTargetFile( target_systemd_machineid_file );
}
//Create new files
if ( m_entropy )
{
auto r = MachineId::createEntropy( m_entropy_copy ? MachineId::EntropyGeneration::CopyFromHost
: MachineId::EntropyGeneration::New,
root,
target_entropy_file );
if ( !r )
{
return r;
}
}
if ( m_systemd )
{
auto r = MachineId::createSystemdMachineId( root, target_systemd_machineid_file );
if ( !r )
{
return r;
}
}
if ( m_dbus )
{
if ( !system->createTargetParentDirs( target_dbus_machineid_file ) )
{
cWarning() << "Could not create DBus data-directory.";
}
if ( m_dbus_symlink && QFile::exists( root + target_systemd_machineid_file ) )
{
auto r = MachineId::createDBusLink( root, target_dbus_machineid_file, target_systemd_machineid_file );
if ( !r )
{
return r;
}
}
else
{
auto r = MachineId::createDBusMachineId( root, target_dbus_machineid_file );
if ( !r )
{
return r;
}
}
}
return Calamares::JobResult::ok();
}
void
MachineIdJob::setConfigurationMap( const QVariantMap& map )
{
m_systemd = CalamaresUtils::getBool( map, "systemd", false );
m_dbus = CalamaresUtils::getBool( map, "dbus", false );
if ( map.contains( "dbus-symlink" ) )
{
m_dbus_symlink = CalamaresUtils::getBool( map, "dbus-symlink", false );
}
else if ( map.contains( "symlink" ) )
{
m_dbus_symlink = CalamaresUtils::getBool( map, "symlink", false );
cWarning() << "MachineId: configuration setting *symlink* is deprecated, use *dbus-symlink*.";
}
// else it's still false from the constructor
// ignore it, though, if dbus is false
m_dbus_symlink = m_dbus && m_dbus_symlink;
m_entropy = CalamaresUtils::getBool( map, "entropy", false );
m_entropy_copy = CalamaresUtils::getBool( map, "entropy-copy", false );
}
CALAMARES_PLUGIN_FACTORY_DEFINITION( MachineIdJobFactory, registerPlugin< MachineIdJob >(); )