Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 1 | #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" |
Václav Kubernát | babbab9 | 2021-01-27 09:25:05 +0100 | [diff] [blame] | 7 | #include "system/Authentication.h" |
Tomáš Pecka | 08d59cd | 2021-05-24 15:33:07 +0200 | [diff] [blame] | 8 | #include "system/Firmware.h" |
Tomáš Pecka | 271d560 | 2021-04-13 21:35:34 +0200 | [diff] [blame] | 9 | #include "system/IETFInterfaces.h" |
Tomáš Pecka | 08d59cd | 2021-05-24 15:33:07 +0200 | [diff] [blame] | 10 | #include "system/IETFInterfacesConfig.h" |
Tomáš Pecka | f976c5b | 2021-01-23 21:19:52 +0100 | [diff] [blame] | 11 | #include "system/IETFSystem.h" |
Tomáš Pecka | 7226bcf | 2021-04-26 21:12:26 +0200 | [diff] [blame] | 12 | #include "system/LED.h" |
Tomáš Pecka | 08d59cd | 2021-05-24 15:33:07 +0200 | [diff] [blame] | 13 | #include "system_vars.h" |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 14 | #include "utils/exceptions.h" |
Tomáš Pecka | 5c19e72 | 2021-02-15 20:41:29 +0100 | [diff] [blame] | 15 | #include "utils/exec.h" |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 16 | #include "utils/journal.h" |
| 17 | #include "utils/log-init.h" |
Tomáš Pecka | 4178470 | 2021-05-26 13:57:32 +0200 | [diff] [blame] | 18 | #include "utils/sysrepo.h" |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 19 | |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 20 | static const char usage[] = |
| 21 | R"(Sysrepo-powered system management. |
| 22 | |
| 23 | Usage: |
| 24 | veliad-system |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 25 | [--sysrepo-log-level=<Level>] |
| 26 | [--system-log-level=<Level>] |
| 27 | veliad-system (-h | --help) |
| 28 | veliad-system --version |
| 29 | |
| 30 | Options: |
| 31 | -h --help Show this screen. |
| 32 | --version Show version. |
Václav Kubernát | 5f57dec | 2021-02-11 02:02:46 +0100 | [diff] [blame] | 33 | --sysrepo-log-level=<N> Log level for the sysrepo library [default: 2] |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 34 | --system-log-level=<N> Log level for the system stuff [default: 3] |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 35 | (0 -> critical, 1 -> error, 2 -> warning, 3 -> info, |
| 36 | 4 -> debug, 5 -> trace) |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 37 | )"; |
| 38 | |
| 39 | DBUS_EVENTLOOP_INIT |
| 40 | |
| 41 | int 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); |
Tomáš Pecka | 4178470 | 2021-05-26 13:57:32 +0200 | [diff] [blame] | 53 | velia::utils::initLogsSysrepo(); |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 54 | spdlog::set_level(spdlog::level::info); |
| 55 | |
| 56 | try { |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 57 | spdlog::get("sysrepo")->set_level(parseLogLevel("Sysrepo library", args["--sysrepo-log-level"])); |
Tomáš Pecka | 1935f19 | 2021-03-08 19:40:06 +0100 | [diff] [blame] | 58 | spdlog::get("system")->set_level(parseLogLevel("System logging", args["--system-log-level"])); |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 59 | |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 60 | auto srConn = std::make_shared<sysrepo::Connection>(); |
| 61 | auto srSess = std::make_shared<sysrepo::Session>(srConn); |
| 62 | |
| 63 | DBUS_EVENTLOOP_START |
| 64 | |
| 65 | // initialize ietf-system |
Tomáš Pecka | 79344c8 | 2021-09-16 18:25:59 +0200 | [diff] [blame^] | 66 | auto sysrepoIETFSystem = velia::system::IETFSystem(srSess, "/etc/os-release", *g_dbusConnection, "org.freedesktop.resolve1"); |
Tomáš Pecka | d51d4cb | 2021-02-03 14:15:49 +0100 | [diff] [blame] | 67 | |
| 68 | auto dbusConnection = sdbus::createConnection(); // second connection for RAUC (for calling methods). |
| 69 | dbusConnection->enterEventLoopAsync(); |
Tomáš Pecka | 5c19e72 | 2021-02-15 20:41:29 +0100 | [diff] [blame] | 70 | |
Tomáš Pecka | 271d560 | 2021-04-13 21:35:34 +0200 | [diff] [blame] | 71 | // implements ietf-interfaces and ietf-routing |
Tomáš Pecka | 08d59cd | 2021-05-24 15:33:07 +0200 | [diff] [blame] | 72 | const std::filesystem::path runtimeNetworkDirectory("/run/systemd/network"), persistentNetworkDirectory("/cfg/network/"); |
| 73 | std::filesystem::create_directories(runtimeNetworkDirectory); |
| 74 | std::filesystem::create_directories(persistentNetworkDirectory); |
| 75 | auto srSessStartup = std::make_shared<sysrepo::Session>(srConn, SR_DS_STARTUP); |
| 76 | std::vector<std::string> managedLinks = {"br0", "eth0", "eth1", "osc", "oscE", "oscW"}; |
| 77 | |
| 78 | auto sysrepoIETFInterfacesOperational = std::make_shared<velia::system::IETFInterfaces>(srSess); |
| 79 | auto sysrepoIETFInterfacesStartup = velia::system::IETFInterfacesConfig(srSessStartup, persistentNetworkDirectory, managedLinks, [](const auto&) {}); |
| 80 | auto sysrepoIETFInterfacesRunning = velia::system::IETFInterfacesConfig(srSess, runtimeNetworkDirectory, managedLinks, [](const auto& reconfiguredInterfaces) { |
| 81 | auto log = spdlog::get("system"); |
| 82 | |
| 83 | /* Bring all the updated interfaces down (they will later be brought up by executing `networkctl reload`). |
| 84 | * |
| 85 | * This is required when transitioning from bridge to DHCP configuration. systemd-networkd apparently does not reset many |
| 86 | * interface properties when reconfiguring the interface into new "bridge-less" configuration (the interface stays in the |
| 87 | * bridge and it also does not obtain link local address). |
| 88 | * |
| 89 | * This doesn't seem to be required when transitioning from DHCP to bridge configuration. It's just a "precaution" because |
| 90 | * there might be hidden some caveats that I am unable to see now (some leftover setting). Bringing the interface |
| 91 | * down seems to reset the interface (and it is something we can afford in the interface reconfiguration process). |
| 92 | */ |
| 93 | for (const auto& interfaceName : reconfiguredInterfaces) { |
| 94 | velia::utils::execAndWait(log, NETWORKCTL_EXECUTABLE, {"down", interfaceName}, ""); |
| 95 | } |
| 96 | |
| 97 | velia::utils::execAndWait(log, NETWORKCTL_EXECUTABLE, {"reload"}, ""); |
| 98 | }); |
Tomáš Pecka | 271d560 | 2021-04-13 21:35:34 +0200 | [diff] [blame] | 99 | |
Tomáš Pecka | d51d4cb | 2021-02-03 14:15:49 +0100 | [diff] [blame] | 100 | auto sysrepoFirmware = velia::system::Firmware(srConn, *g_dbusConnection, *dbusConnection); |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 101 | |
Václav Kubernát | babbab9 | 2021-01-27 09:25:05 +0100 | [diff] [blame] | 102 | 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áš Pecka | 7226bcf | 2021-04-26 21:12:26 +0200 | [diff] [blame] | 105 | auto leds = velia::system::LED(srConn, "/sys/class/leds"); |
| 106 | |
Tomáš Pecka | 625b7a1 | 2021-01-23 20:55:51 +0100 | [diff] [blame] | 107 | DBUS_EVENTLOOP_END |
| 108 | return 0; |
| 109 | } catch (std::exception& e) { |
| 110 | velia::utils::fatalException(spdlog::get("main"), e, "main"); |
| 111 | } |
| 112 | } |