blob: ec087f2d9f02b304386a8a4b4ed553fbbdcd9641 [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áš Pecka271d5602021-04-13 21:35:34 +020011#include "system/IETFInterfaces.h"
Tomáš Peckaf976c5b2021-01-23 21:19:52 +010012#include "system/IETFSystem.h"
Tomáš Pecka7226bcf2021-04-26 21:12:26 +020013#include "system/LED.h"
Tomáš Pecka625b7a12021-01-23 20:55:51 +010014#include "utils/exceptions.h"
Tomáš Pecka5c19e722021-02-15 20:41:29 +010015#include "utils/exec.h"
Tomáš Pecka625b7a12021-01-23 20:55:51 +010016#include "utils/journal.h"
Václav Kubernát6018f082021-02-11 01:32:18 +010017#include "utils/log.h"
Tomáš Pecka625b7a12021-01-23 20:55:51 +010018#include "utils/log-init.h"
19
Tomáš Pecka625b7a12021-01-23 20:55:51 +010020static const char usage[] =
21 R"(Sysrepo-powered system management.
22
23Usage:
24 veliad-system
Tomáš Pecka625b7a12021-01-23 20:55:51 +010025 [--sysrepo-log-level=<Level>]
26 [--system-log-level=<Level>]
27 veliad-system (-h | --help)
28 veliad-system --version
29
30Options:
31 -h --help Show this screen.
32 --version Show version.
Václav Kubernát5f57dec2021-02-11 02:02:46 +010033 --sysrepo-log-level=<N> Log level for the sysrepo library [default: 2]
Tomáš Pecka625b7a12021-01-23 20:55:51 +010034 --system-log-level=<N> Log level for the system stuff [default: 3]
Tomáš Pecka625b7a12021-01-23 20:55:51 +010035 (0 -> critical, 1 -> error, 2 -> warning, 3 -> info,
36 4 -> debug, 5 -> trace)
Tomáš Pecka625b7a12021-01-23 20:55:51 +010037)";
38
39DBUS_EVENTLOOP_INIT
40
41int main(int argc, char* argv[])
42{
43 std::shared_ptr<spdlog::sinks::sink> loggingSink;
44 if (velia::utils::isJournaldActive()) {
45 loggingSink = velia::utils::create_journald_sink();
46 } else {
47 loggingSink = std::make_shared<spdlog::sinks::ansicolor_stderr_sink_mt>();
48 }
49
50 auto args = docopt::docopt(usage, {argv + 1, argv + argc}, true, "veliad-system " VELIA_VERSION, true);
51
52 velia::utils::initLogs(loggingSink);
53 spdlog::set_level(spdlog::level::info);
54
55 try {
Tomáš Pecka625b7a12021-01-23 20:55:51 +010056 spdlog::get("sysrepo")->set_level(parseLogLevel("Sysrepo library", args["--sysrepo-log-level"]));
Tomáš Pecka1935f192021-03-08 19:40:06 +010057 spdlog::get("system")->set_level(parseLogLevel("System logging", args["--system-log-level"]));
Tomáš Pecka625b7a12021-01-23 20:55:51 +010058
Tomáš Pecka625b7a12021-01-23 20:55:51 +010059 auto srConn = std::make_shared<sysrepo::Connection>();
60 auto srSess = std::make_shared<sysrepo::Session>(srConn);
61
62 DBUS_EVENTLOOP_START
63
64 // initialize ietf-system
Tomáš Peckaf976c5b2021-01-23 21:19:52 +010065 auto sysrepoIETFSystem = velia::system::IETFSystem(srSess, "/etc/os-release");
Tomáš Peckad51d4cb2021-02-03 14:15:49 +010066
67 auto dbusConnection = sdbus::createConnection(); // second connection for RAUC (for calling methods).
68 dbusConnection->enterEventLoopAsync();
Tomáš Pecka5c19e722021-02-15 20:41:29 +010069
70 // initialize czechlight-system:networking
Tomáš Peckaa936ee72021-02-15 21:37:10 +010071 const std::filesystem::path runtimeNetworkDirectory("/run/systemd/network"), persistentNetworkDirectory("/cfg/network/");
Tomáš Pecka5c19e722021-02-15 20:41:29 +010072 std::filesystem::create_directories(runtimeNetworkDirectory);
Tomáš Peckaa936ee72021-02-15 21:37:10 +010073 std::filesystem::create_directories(persistentNetworkDirectory);
74
75 auto srSessStartup = std::make_shared<sysrepo::Session>(srConn, SR_DS_STARTUP);
Tomáš Pecka04a11352021-02-22 12:56:38 +010076 auto sysrepoNetworkStartup = velia::system::Network(srSessStartup, persistentNetworkDirectory, [](const auto&) {});
Jan Kundrátef2b3802021-02-18 09:57:05 +010077 auto sysrepoNetworkRunning = velia::system::Network(srSess, runtimeNetworkDirectory, [](const auto& reconfiguredInterfaces) {
Tomáš Pecka5c19e722021-02-15 20:41:29 +010078 auto log = spdlog::get("system");
79
80 /* Bring all the updated interfaces down (they will later be brought up by executing `networkctl reload`).
81 *
82 * This is required when transitioning from bridge to DHCP configuration. systemd-networkd apparently does not reset many
83 * interface properties when reconfiguring the interface into new "bridge-less" configuration (the interface stays in the
84 * bridge and it also does not obtain link local address).
85 *
86 * This doesn't seem to be required when transitioning from DHCP to bridge configuration. It's just a "precaution" because
87 * there might be hidden some caveats that I am unable to see now (some leftover setting). Bringing the interface
88 * down seems to reset the interface (and it is something we can afford in the interface reconfiguration process).
89 */
90 for (const auto& interfaceName : reconfiguredInterfaces) {
91 velia::utils::execAndWait(log, NETWORKCTL_EXECUTABLE, {"down", interfaceName}, "");
92 }
93
94 velia::utils::execAndWait(log, NETWORKCTL_EXECUTABLE, {"reload"}, "");
95 });
96
Tomáš Pecka271d5602021-04-13 21:35:34 +020097 // implements ietf-interfaces and ietf-routing
98 auto sysrepoIETFInterfaces = std::make_shared<velia::system::IETFInterfaces>(srSess);
99
Tomáš Peckad51d4cb2021-02-03 14:15:49 +0100100 auto sysrepoFirmware = velia::system::Firmware(srConn, *g_dbusConnection, *dbusConnection);
Tomáš Pecka625b7a12021-01-23 20:55:51 +0100101
Václav Kubernátbabbab92021-01-27 09:25:05 +0100102 auto srSess2 = std::make_shared<sysrepo::Session>(srConn);
103 auto authentication = velia::system::Authentication(srSess2, REAL_ETC_PASSWD_FILE, REAL_ETC_SHADOW_FILE, AUTHORIZED_KEYS_FORMAT, velia::system::impl::changePassword);
104
Tomáš Pecka7226bcf2021-04-26 21:12:26 +0200105 auto leds = velia::system::LED(srConn, "/sys/class/leds");
106
Tomáš Pecka625b7a12021-01-23 20:55:51 +0100107 DBUS_EVENTLOOP_END
108 return 0;
109 } catch (std::exception& e) {
110 velia::utils::fatalException(spdlog::get("main"), e, "main");
111 }
112}