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