2017-12-20 14:39:09 +01:00
|
|
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
2014-10-27 16:53:57 +01:00
|
|
|
*
|
2015-06-13 02:22:03 +02:00
|
|
|
* Copyright 2014, Rohan Garg <rohan@kde.org>
|
|
|
|
* Copyright 2015, Teo Mrnjavac <teo@kde.org>
|
2018-06-15 11:59:11 +02:00
|
|
|
* Copyright 2018, Adriaan de Groot <groot@kde.org>
|
2014-10-27 16:53:57 +01:00
|
|
|
*
|
2015-06-13 02:22:03 +02:00
|
|
|
* Calamares 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2014-10-27 16:53:57 +01:00
|
|
|
*
|
2015-06-13 02:22:03 +02:00
|
|
|
* Calamares 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.
|
2014-10-27 16:53:57 +01:00
|
|
|
*
|
2015-06-13 02:22:03 +02:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
2014-10-21 18:59:02 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SetHostNameJob.h"
|
|
|
|
|
|
|
|
#include "GlobalStorage.h"
|
|
|
|
#include "JobQueue.h"
|
2020-02-14 12:31:53 +01:00
|
|
|
#include "utils/CalamaresUtilsSystem.h"
|
2019-10-21 17:21:33 +02:00
|
|
|
#include "utils/Logger.h"
|
2014-10-21 18:59:02 +02:00
|
|
|
|
|
|
|
#include <QDir>
|
2019-10-21 17:21:33 +02:00
|
|
|
#include <QFile>
|
2020-02-17 10:57:41 +01:00
|
|
|
#include <QtDBus/QDBusConnection>
|
|
|
|
#include <QtDBus/QDBusInterface>
|
|
|
|
#include <QtDBus/QDBusReply>
|
2014-10-21 18:59:02 +02:00
|
|
|
|
2020-02-17 15:24:44 +01:00
|
|
|
SetHostNameJob::SetHostNameJob( const QString& hostname, Actions a )
|
2014-10-21 18:59:02 +02:00
|
|
|
: Calamares::Job()
|
2014-10-27 16:53:57 +01:00
|
|
|
, m_hostname( hostname )
|
2020-02-17 15:24:44 +01:00
|
|
|
, m_actions( a )
|
2014-10-21 18:59:02 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-10-21 17:21:33 +02:00
|
|
|
QString
|
|
|
|
SetHostNameJob::prettyName() const
|
2014-10-21 18:59:02 +02:00
|
|
|
{
|
2014-10-27 16:53:57 +01:00
|
|
|
return tr( "Set hostname %1" ).arg( m_hostname );
|
2014-10-21 18:59:02 +02:00
|
|
|
}
|
|
|
|
|
2015-06-13 02:22:03 +02:00
|
|
|
|
|
|
|
QString
|
|
|
|
SetHostNameJob::prettyDescription() const
|
|
|
|
{
|
|
|
|
return tr( "Set hostname <strong>%1</strong>." ).arg( m_hostname );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QString
|
|
|
|
SetHostNameJob::prettyStatusMessage() const
|
|
|
|
{
|
|
|
|
return tr( "Setting hostname %1." ).arg( m_hostname );
|
|
|
|
}
|
|
|
|
|
2020-02-17 18:10:46 +01:00
|
|
|
STATICTEST bool
|
2020-02-17 10:42:54 +01:00
|
|
|
setFileHostname( const QString& hostname )
|
|
|
|
{
|
|
|
|
return !( CalamaresUtils::System::instance()
|
|
|
|
->createTargetFile( QStringLiteral( "/etc/hostname" ), ( hostname + '\n' ).toUtf8() )
|
|
|
|
.failed() );
|
|
|
|
}
|
|
|
|
|
2020-02-17 18:10:46 +01:00
|
|
|
STATICTEST bool
|
2020-02-17 10:42:54 +01:00
|
|
|
writeFileEtcHosts( const QString& hostname )
|
|
|
|
{
|
|
|
|
// The actual hostname gets substituted in at %1
|
|
|
|
static const char etc_hosts[] = R"(# Host addresses
|
|
|
|
127.0.0.1 localhost
|
|
|
|
127.0.1.1 %1
|
|
|
|
::1 localhost ip6-localhost ip6-loopback
|
|
|
|
ff02::1 ip6-allnodes
|
|
|
|
ff02::2 ip6-allrouters
|
|
|
|
)";
|
|
|
|
|
|
|
|
return !( CalamaresUtils::System::instance()
|
|
|
|
->createTargetFile( QStringLiteral( "/etc/hosts" ), QString( etc_hosts ).arg( hostname ).toUtf8() )
|
|
|
|
.failed() );
|
|
|
|
}
|
|
|
|
|
2020-02-18 10:16:19 +01:00
|
|
|
STATICTEST bool
|
2020-02-17 10:57:41 +01:00
|
|
|
setSystemdHostname( const QString& hostname )
|
|
|
|
{
|
|
|
|
QDBusInterface hostnamed( "org.freedesktop.hostname1",
|
|
|
|
"/org/freedesktop/hostname1",
|
|
|
|
"org.freedesktop.hostname1",
|
|
|
|
QDBusConnection::systemBus() );
|
2020-02-18 10:16:19 +01:00
|
|
|
if ( !hostnamed.isValid() )
|
|
|
|
{
|
|
|
|
cWarning() << "Interface" << hostnamed.interface() << "is not valid.";
|
|
|
|
return false;
|
|
|
|
}
|
2020-02-17 10:57:41 +01:00
|
|
|
|
2020-02-18 10:16:19 +01:00
|
|
|
bool success = true;
|
2020-02-17 10:57:41 +01:00
|
|
|
// Static, writes /etc/hostname
|
|
|
|
{
|
|
|
|
QDBusReply< uint > r = hostnamed.call( "SetStaticHostname", hostname, false );
|
|
|
|
if ( !r.isValid() )
|
|
|
|
{
|
|
|
|
cWarning() << "Could not set hostname through org.freedesktop.hostname1.SetStaticHostname." << r.error();
|
2020-02-18 10:16:19 +01:00
|
|
|
success = false;
|
2020-02-17 10:57:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Dynamic, updates kernel
|
|
|
|
{
|
|
|
|
QDBusReply< uint > r = hostnamed.call( "SetHostname", hostname, false );
|
|
|
|
if ( !r.isValid() )
|
|
|
|
{
|
|
|
|
cWarning() << "Could not set hostname through org.freedesktop.hostname1.SetHostname." << r.error();
|
2020-02-18 10:16:19 +01:00
|
|
|
success = false;
|
2020-02-17 10:57:41 +01:00
|
|
|
}
|
|
|
|
}
|
2020-02-18 10:16:19 +01:00
|
|
|
|
|
|
|
return success;
|
2020-02-17 10:57:41 +01:00
|
|
|
}
|
|
|
|
|
2020-02-17 10:42:54 +01:00
|
|
|
|
2019-10-21 17:21:33 +02:00
|
|
|
Calamares::JobResult
|
|
|
|
SetHostNameJob::exec()
|
2014-10-21 18:59:02 +02:00
|
|
|
{
|
|
|
|
Calamares::GlobalStorage* gs = Calamares::JobQueue::instance()->globalStorage();
|
2014-10-27 16:53:57 +01:00
|
|
|
|
2014-10-21 18:59:02 +02:00
|
|
|
if ( !gs || !gs->contains( "rootMountPoint" ) )
|
|
|
|
{
|
2018-03-28 15:31:45 +02:00
|
|
|
cError() << "No rootMountPoint in global storage";
|
2014-10-21 18:59:02 +02:00
|
|
|
return Calamares::JobResult::error( tr( "Internal Error" ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
QString destDir = gs->value( "rootMountPoint" ).toString();
|
|
|
|
if ( !QDir( destDir ).exists() )
|
|
|
|
{
|
2018-03-28 15:31:45 +02:00
|
|
|
cError() << "rootMountPoint points to a dir which does not exist";
|
2014-10-21 18:59:02 +02:00
|
|
|
return Calamares::JobResult::error( tr( "Internal Error" ) );
|
|
|
|
}
|
|
|
|
|
2020-02-17 15:24:44 +01:00
|
|
|
if ( m_actions & Action::EtcHostname )
|
2014-10-21 18:59:02 +02:00
|
|
|
{
|
2020-02-17 15:24:44 +01:00
|
|
|
if ( !setFileHostname( m_hostname ) )
|
|
|
|
{
|
|
|
|
cError() << "Can't write to hostname file";
|
|
|
|
return Calamares::JobResult::error( tr( "Cannot write hostname to target system" ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-17 16:46:06 +01:00
|
|
|
if ( m_actions & Action::WriteEtcHosts )
|
2020-02-17 15:24:44 +01:00
|
|
|
{
|
|
|
|
if ( !writeFileEtcHosts( m_hostname ) )
|
|
|
|
{
|
|
|
|
cError() << "Can't write to hosts file";
|
|
|
|
return Calamares::JobResult::error( tr( "Cannot write hostname to target system" ) );
|
|
|
|
}
|
2014-10-21 18:59:02 +02:00
|
|
|
}
|
2020-02-14 12:31:53 +01:00
|
|
|
|
2020-02-17 15:24:44 +01:00
|
|
|
if ( m_actions & Action::SystemdHostname )
|
2014-11-07 15:18:45 +01:00
|
|
|
{
|
2020-02-17 15:24:44 +01:00
|
|
|
// Does its own logging
|
|
|
|
setSystemdHostname( m_hostname );
|
2014-11-07 15:18:45 +01:00
|
|
|
}
|
|
|
|
|
2014-10-21 18:59:02 +02:00
|
|
|
return Calamares::JobResult::ok();
|
|
|
|
}
|