blob: 2f2eda023c42bf2b59780aef1e1bd4a5affde845 [file] [log] [blame]
Tomáš Pecka625b7a12021-01-23 20:55:51 +01001#include <docopt.h>
2#include <spdlog/sinks/ansicolor_sink.h>
3#include <spdlog/spdlog.h>
4#include <sysrepo-cpp/Session.hpp>
5#include "VELIA_VERSION.h"
6#include "main.h"
Tomáš Pecka594a6762021-01-29 11:06:08 +01007#include "system/Firmware.h"
Václav Kubernátbabbab92021-01-27 09:25:05 +01008#include "system/Authentication.h"
Tomáš Pecka5c19e722021-02-15 20:41:29 +01009#include "system/Network.h"
Václav Kubernátbabbab92021-01-27 09:25:05 +010010#include "system_vars.h"
Tomáš Peckaf976c5b2021-01-23 21:19:52 +010011#include "system/IETFSystem.h"
Tomáš Pecka625b7a12021-01-23 20:55:51 +010012#include "utils/exceptions.h"
Tomáš Pecka5c19e722021-02-15 20:41:29 +010013#include "utils/exec.h"
Tomáš Pecka625b7a12021-01-23 20:55:51 +010014#include "utils/journal.h"
15#include "utils/log-init.h"
16
17/** @short Extract log level from a CLI option */
18spdlog::level::level_enum parseLogLevel(const std::string& name, const docopt::value& option)
19{
20 long x;
21 try {
22 x = option.asLong();
23 } catch (std::invalid_argument&) {
24 throw std::runtime_error(name + " log level: expecting integer");
25 }
26 static_assert(spdlog::level::trace < spdlog::level::off, "spdlog::level levels have changed");
27 static_assert(spdlog::level::off == 6, "spdlog::level levels have changed");
28 if (x < 0 || x > 5)
29 throw std::runtime_error(name + " log level invalid or out-of-range");
30
31 return static_cast<spdlog::level::level_enum>(5 - x);
32}
33
34static const char usage[] =
35 R"(Sysrepo-powered system management.
36
37Usage:
38 veliad-system
39 [--log-level=<Level>]
40 [--sysrepo-log-level=<Level>]
41 [--system-log-level=<Level>]
42 veliad-system (-h | --help)
43 veliad-system --version
44
45Options:
46 -h --help Show this screen.
47 --version Show version.
48 --log-level=<N> Log level for everything [default: 3]
49 (0 -> critical, 1 -> error, 2 -> warning, 3 -> info,
50 4 -> debug, 5 -> trace)
51 --sysrepo-log-level=<N> Log level for the sysrepo library [default: 3]
52 --system-log-level=<N> Log level for the system stuff [default: 3]
53)";
54
55DBUS_EVENTLOOP_INIT
56
57int main(int argc, char* argv[])
58{
59 std::shared_ptr<spdlog::sinks::sink> loggingSink;
60 if (velia::utils::isJournaldActive()) {
61 loggingSink = velia::utils::create_journald_sink();
62 } else {
63 loggingSink = std::make_shared<spdlog::sinks::ansicolor_stderr_sink_mt>();
64 }
65
66 auto args = docopt::docopt(usage, {argv + 1, argv + argc}, true, "veliad-system " VELIA_VERSION, true);
67
68 velia::utils::initLogs(loggingSink);
69 spdlog::set_level(spdlog::level::info);
70
71 try {
72 spdlog::set_level(parseLogLevel("Generic", args["--log-level"]));
73 spdlog::get("sysrepo")->set_level(parseLogLevel("Sysrepo library", args["--sysrepo-log-level"]));
74
75 spdlog::get("main")->debug("Opening Sysrepo connection");
76 auto srConn = std::make_shared<sysrepo::Connection>();
77 auto srSess = std::make_shared<sysrepo::Session>(srConn);
78
79 DBUS_EVENTLOOP_START
80
81 // initialize ietf-system
82 spdlog::get("main")->debug("Initializing Sysrepo for system models");
Tomáš Peckaf976c5b2021-01-23 21:19:52 +010083 auto sysrepoIETFSystem = velia::system::IETFSystem(srSess, "/etc/os-release");
Tomáš Peckad51d4cb2021-02-03 14:15:49 +010084
85 auto dbusConnection = sdbus::createConnection(); // second connection for RAUC (for calling methods).
86 dbusConnection->enterEventLoopAsync();
Tomáš Pecka5c19e722021-02-15 20:41:29 +010087
88 // initialize czechlight-system:networking
Tomáš Peckaa936ee72021-02-15 21:37:10 +010089 const std::filesystem::path runtimeNetworkDirectory("/run/systemd/network"), persistentNetworkDirectory("/cfg/network/");
Tomáš Pecka5c19e722021-02-15 20:41:29 +010090 std::filesystem::create_directories(runtimeNetworkDirectory);
Tomáš Peckaa936ee72021-02-15 21:37:10 +010091 std::filesystem::create_directories(persistentNetworkDirectory);
92
93 auto srSessStartup = std::make_shared<sysrepo::Session>(srConn, SR_DS_STARTUP);
94
95 auto sysrepoNetworkStartup = velia::system::Network(srSess, persistentNetworkDirectory, []([[maybe_unused]] const std::vector<std::string>& reconfiguredInterfaces) {});
Tomáš Pecka5c19e722021-02-15 20:41:29 +010096 auto sysrepoNetworkRunning = velia::system::Network(srSess, runtimeNetworkDirectory, [](const std::vector<std::string>& reconfiguredInterfaces) {
97 auto log = spdlog::get("system");
98
99 /* Bring all the updated interfaces down (they will later be brought up by executing `networkctl reload`).
100 *
101 * This is required when transitioning from bridge to DHCP configuration. systemd-networkd apparently does not reset many
102 * interface properties when reconfiguring the interface into new "bridge-less" configuration (the interface stays in the
103 * bridge and it also does not obtain link local address).
104 *
105 * This doesn't seem to be required when transitioning from DHCP to bridge configuration. It's just a "precaution" because
106 * there might be hidden some caveats that I am unable to see now (some leftover setting). Bringing the interface
107 * down seems to reset the interface (and it is something we can afford in the interface reconfiguration process).
108 */
109 for (const auto& interfaceName : reconfiguredInterfaces) {
110 velia::utils::execAndWait(log, NETWORKCTL_EXECUTABLE, {"down", interfaceName}, "");
111 }
112
113 velia::utils::execAndWait(log, NETWORKCTL_EXECUTABLE, {"reload"}, "");
114 });
115
Tomáš Peckad51d4cb2021-02-03 14:15:49 +0100116 auto sysrepoFirmware = velia::system::Firmware(srConn, *g_dbusConnection, *dbusConnection);
Tomáš Pecka625b7a12021-01-23 20:55:51 +0100117
Václav Kubernátbabbab92021-01-27 09:25:05 +0100118 auto srSess2 = std::make_shared<sysrepo::Session>(srConn);
119 auto authentication = velia::system::Authentication(srSess2, REAL_ETC_PASSWD_FILE, REAL_ETC_SHADOW_FILE, AUTHORIZED_KEYS_FORMAT, velia::system::impl::changePassword);
120
Tomáš Pecka625b7a12021-01-23 20:55:51 +0100121 DBUS_EVENTLOOP_END
122 return 0;
123 } catch (std::exception& e) {
124 velia::utils::fatalException(spdlog::get("main"), e, "main");
125 }
126}