Ratan Gupta | a54d8f8 | 2017-09-08 17:05:46 +0530 | [diff] [blame] | 1 | #include "config.h" |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 2 | |
Ratan Gupta | 0f9dc1b | 2017-09-03 17:57:50 +0530 | [diff] [blame] | 3 | #include "network_manager.hpp" |
| 4 | #include "rtnetlink_server.hpp" |
William A. Kennington III | 3a70fa2 | 2018-09-20 18:48:20 -0700 | [diff] [blame] | 5 | #include "types.hpp" |
William A. Kennington III | 95530ec | 2022-08-19 01:44:39 -0700 | [diff] [blame] | 6 | #ifdef SYNC_MAC_FROM_INVENTORY |
| 7 | #include "util.hpp" |
| 8 | #endif |
Ratan Gupta | 0f9dc1b | 2017-09-03 17:57:50 +0530 | [diff] [blame] | 9 | |
William A. Kennington III | 4fd52ae | 2022-09-30 13:49:39 -0700 | [diff] [blame] | 10 | #include <fmt/format.h> |
Ratan Gupta | f665738 | 2017-11-10 17:58:17 +0530 | [diff] [blame] | 11 | #include <linux/netlink.h> |
Ratan Gupta | 0f9dc1b | 2017-09-03 17:57:50 +0530 | [diff] [blame] | 12 | |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 13 | #include <filesystem> |
| 14 | #include <fstream> |
William A. Kennington III | 3a70fa2 | 2018-09-20 18:48:20 -0700 | [diff] [blame] | 15 | #include <functional> |
Ratan Gupta | f665738 | 2017-11-10 17:58:17 +0530 | [diff] [blame] | 16 | #include <memory> |
William A. Kennington III | de433b7 | 2021-05-17 22:59:28 -0700 | [diff] [blame] | 17 | #ifdef SYNC_MAC_FROM_INVENTORY |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 18 | #include <nlohmann/json.hpp> |
William A. Kennington III | de433b7 | 2021-05-17 22:59:28 -0700 | [diff] [blame] | 19 | #endif |
Ratan Gupta | f665738 | 2017-11-10 17:58:17 +0530 | [diff] [blame] | 20 | #include <phosphor-logging/elog-errors.hpp> |
Ratan Gupta | 0f9dc1b | 2017-09-03 17:57:50 +0530 | [diff] [blame] | 21 | #include <phosphor-logging/log.hpp> |
Ratan Gupta | cb7098d | 2017-04-14 17:46:05 +0530 | [diff] [blame] | 22 | #include <sdbusplus/bus.hpp> |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 23 | #include <sdbusplus/bus/match.hpp> |
Ratan Gupta | cb7098d | 2017-04-14 17:46:05 +0530 | [diff] [blame] | 24 | #include <sdbusplus/server/manager.hpp> |
William A. Kennington III | 3a70fa2 | 2018-09-20 18:48:20 -0700 | [diff] [blame] | 25 | #include <sdeventplus/event.hpp> |
William A. Kennington III | 217bb3f | 2022-09-29 13:43:13 -0700 | [diff] [blame] | 26 | #include <sdeventplus/source/signal.hpp> |
| 27 | #include <stdplus/signal.hpp> |
Ratan Gupta | f665738 | 2017-11-10 17:58:17 +0530 | [diff] [blame] | 28 | #include <xyz/openbmc_project/Common/error.hpp> |
Ratan Gupta | 0f9dc1b | 2017-09-03 17:57:50 +0530 | [diff] [blame] | 29 | |
William A. Kennington III | 09095f8 | 2018-09-27 12:05:12 -0700 | [diff] [blame] | 30 | using phosphor::logging::elog; |
| 31 | using phosphor::logging::entry; |
| 32 | using phosphor::logging::level; |
| 33 | using phosphor::logging::log; |
| 34 | using sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 35 | using DbusObjectPath = std::string; |
| 36 | using DbusInterface = std::string; |
| 37 | using PropertyValue = std::string; |
William A. Kennington III | 09095f8 | 2018-09-27 12:05:12 -0700 | [diff] [blame] | 38 | |
William A. Kennington III | 483e777 | 2019-02-12 19:03:15 -0800 | [diff] [blame] | 39 | constexpr char NETWORK_CONF_DIR[] = "/etc/systemd/network"; |
| 40 | |
William A. Kennington III | 5f1eb46 | 2019-02-12 19:47:51 -0800 | [diff] [blame] | 41 | constexpr char DEFAULT_OBJPATH[] = "/xyz/openbmc_project/network"; |
| 42 | |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 43 | constexpr auto firstBootPath = "/var/lib/network/firstBoot_"; |
| 44 | constexpr auto configFile = "/usr/share/network/config.json"; |
| 45 | |
| 46 | constexpr auto invNetworkIntf = |
| 47 | "xyz.openbmc_project.Inventory.Item.NetworkInterface"; |
| 48 | |
Ratan Gupta | 0f9dc1b | 2017-09-03 17:57:50 +0530 | [diff] [blame] | 49 | namespace phosphor |
| 50 | { |
| 51 | namespace network |
| 52 | { |
| 53 | |
William A. Kennington III | 4fd52ae | 2022-09-30 13:49:39 -0700 | [diff] [blame] | 54 | std::unique_ptr<Manager> manager = nullptr; |
William A. Kennington III | c7cf25f | 2021-11-09 16:16:59 -0800 | [diff] [blame] | 55 | std::unique_ptr<Timer> reloadTimer = nullptr; |
Ratan Gupta | a54d8f8 | 2017-09-08 17:05:46 +0530 | [diff] [blame] | 56 | |
William A. Kennington III | 6f39c5e | 2021-05-13 18:39:23 -0700 | [diff] [blame] | 57 | #ifdef SYNC_MAC_FROM_INVENTORY |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 58 | std::unique_ptr<sdbusplus::bus::match_t> EthInterfaceMatch = nullptr; |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 59 | std::vector<std::string> first_boot_status; |
| 60 | |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 61 | bool setInventoryMACOnSystem(sdbusplus::bus_t& bus, |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 62 | const nlohmann::json& configJson, |
| 63 | const std::string& intfname) |
| 64 | { |
| 65 | try |
| 66 | { |
| 67 | auto inventoryMAC = mac_address::getfromInventory(bus, intfname); |
William A. Kennington III | bb0eacc | 2022-10-21 15:22:06 -0700 | [diff] [blame] | 68 | if (inventoryMAC != ether_addr{}) |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 69 | { |
William A. Kennington III | bb0eacc | 2022-10-21 15:22:06 -0700 | [diff] [blame] | 70 | auto macStr = std::to_string(inventoryMAC); |
| 71 | log<level::INFO>("Mac Address in Inventory on ", |
| 72 | entry("Interface : ", intfname.c_str()), |
| 73 | entry("MAC Address :", macStr.c_str())); |
| 74 | manager->setFistBootMACOnInterface( |
| 75 | std::make_pair(intfname.c_str(), std::move(macStr))); |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 76 | first_boot_status.push_back(intfname.c_str()); |
| 77 | bool status = true; |
| 78 | for (const auto& keys : configJson.items()) |
| 79 | { |
| 80 | if (!(std::find(first_boot_status.begin(), |
| 81 | first_boot_status.end(), |
| 82 | keys.key()) != first_boot_status.end())) |
| 83 | { |
| 84 | log<level::INFO>("Interface MAC is NOT set from VPD"), |
| 85 | entry("INTERFACE", keys.key().c_str()); |
| 86 | status = false; |
| 87 | } |
| 88 | } |
| 89 | if (status) |
| 90 | { |
| 91 | log<level::INFO>("Removing the match for ethernet interfaces"); |
William A. Kennington III | 4fd52ae | 2022-09-30 13:49:39 -0700 | [diff] [blame] | 92 | EthInterfaceMatch = nullptr; |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 93 | } |
| 94 | } |
| 95 | else |
| 96 | { |
| 97 | log<level::INFO>("Nothing is present in Inventory"); |
| 98 | return false; |
| 99 | } |
| 100 | } |
| 101 | catch (const std::exception& e) |
| 102 | { |
| 103 | log<level::ERR>("Exception occurred during getting of MAC " |
| 104 | "address from Inventory"); |
| 105 | return false; |
| 106 | } |
| 107 | return true; |
| 108 | } |
| 109 | |
| 110 | // register the macthes to be monitored from inventory manager |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 111 | void registerSignals(sdbusplus::bus_t& bus, const nlohmann::json& configJson) |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 112 | { |
| 113 | log<level::INFO>("Registering the Inventory Signals Matcher"); |
| 114 | |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 115 | static std::unique_ptr<sdbusplus::bus::match_t> MacAddressMatch; |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 116 | |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 117 | auto callback = [&](sdbusplus::message_t& m) { |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 118 | std::map<DbusObjectPath, |
| 119 | std::map<DbusInterface, std::variant<PropertyValue>>> |
| 120 | interfacesProperties; |
| 121 | |
| 122 | sdbusplus::message::object_path objPath; |
| 123 | std::pair<std::string, std::string> ethPair; |
| 124 | m.read(objPath, interfacesProperties); |
| 125 | |
| 126 | for (const auto& pattern : configJson.items()) |
| 127 | { |
| 128 | if (objPath.str.find(pattern.value()) != std::string::npos) |
| 129 | { |
| 130 | for (auto& interface : interfacesProperties) |
| 131 | { |
| 132 | if (interface.first == invNetworkIntf) |
| 133 | { |
| 134 | for (const auto& property : interface.second) |
| 135 | { |
| 136 | if (property.first == "MACAddress") |
| 137 | { |
| 138 | ethPair = std::make_pair( |
| 139 | pattern.key(), |
| 140 | std::get<std::string>(property.second)); |
| 141 | break; |
| 142 | } |
| 143 | } |
| 144 | break; |
| 145 | } |
| 146 | } |
| 147 | if (!(ethPair.first.empty() || ethPair.second.empty())) |
| 148 | { |
| 149 | manager->setFistBootMACOnInterface(ethPair); |
| 150 | } |
| 151 | } |
| 152 | } |
| 153 | }; |
| 154 | |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 155 | MacAddressMatch = std::make_unique<sdbusplus::bus::match_t>( |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 156 | bus, |
| 157 | "interface='org.freedesktop.DBus.ObjectManager',type='signal'," |
| 158 | "member='InterfacesAdded',path='/xyz/openbmc_project/" |
| 159 | "inventory'", |
| 160 | callback); |
| 161 | } |
| 162 | |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 163 | void watchEthernetInterface(sdbusplus::bus_t& bus, |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 164 | const nlohmann::json& configJson) |
| 165 | { |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 166 | auto mycallback = [&](sdbusplus::message_t& m) { |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 167 | std::map<DbusObjectPath, |
| 168 | std::map<DbusInterface, std::variant<PropertyValue>>> |
| 169 | interfacesProperties; |
| 170 | |
| 171 | sdbusplus::message::object_path objPath; |
| 172 | std::pair<std::string, std::string> ethPair; |
| 173 | m.read(objPath, interfacesProperties); |
| 174 | for (const auto& interfaces : interfacesProperties) |
| 175 | { |
| 176 | if (interfaces.first == |
| 177 | "xyz.openbmc_project.Network.EthernetInterface") |
| 178 | { |
| 179 | for (const auto& property : interfaces.second) |
| 180 | { |
| 181 | if (property.first == "InterfaceName") |
| 182 | { |
| 183 | std::string infname = |
| 184 | std::get<std::string>(property.second); |
| 185 | |
| 186 | if (configJson.find(infname) == configJson.end()) |
| 187 | { |
| 188 | // ethernet interface not found in configJSON |
| 189 | // check if it is not sit0 interface, as it is |
| 190 | // expected. |
| 191 | if (infname != "sit0") |
| 192 | { |
| 193 | log<level::ERR>( |
| 194 | "Wrong Interface Name in Config Json"); |
| 195 | } |
| 196 | } |
| 197 | else |
| 198 | { |
William A. Kennington III | 4fd52ae | 2022-09-30 13:49:39 -0700 | [diff] [blame] | 199 | if (!setInventoryMACOnSystem(bus, configJson, |
| 200 | infname)) |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 201 | { |
William A. Kennington III | 4fd52ae | 2022-09-30 13:49:39 -0700 | [diff] [blame] | 202 | registerSignals(bus, configJson); |
| 203 | EthInterfaceMatch = nullptr; |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 204 | } |
| 205 | } |
| 206 | break; |
| 207 | } |
| 208 | } |
| 209 | break; |
| 210 | } |
| 211 | } |
| 212 | }; |
| 213 | // Incase if phosphor-inventory-manager started early and the VPD is already |
| 214 | // collected by the time network service has come up, better to check the |
| 215 | // VPD directly and set the MAC Address on the respective Interface. |
| 216 | |
| 217 | bool registeredSignals = false; |
| 218 | for (const auto& interfaceString : configJson.items()) |
| 219 | { |
Potin Lai | 9f621f3 | 2022-11-18 12:03:09 +0800 | [diff] [blame] | 220 | if ((FORCE_SYNC_MAC_FROM_INVENTORY || |
| 221 | !std::filesystem::exists(firstBootPath + interfaceString.key())) && |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 222 | !registeredSignals) |
| 223 | { |
Potin Lai | 9f621f3 | 2022-11-18 12:03:09 +0800 | [diff] [blame] | 224 | auto msg = fmt::format("{}, check VPD for MAC", |
| 225 | (FORCE_SYNC_MAC_FROM_INVENTORY) |
| 226 | ? "Force sync enabled" |
| 227 | : "First boot file is not present"); |
| 228 | log<level::INFO>(msg.c_str()); |
William A. Kennington III | 4fd52ae | 2022-09-30 13:49:39 -0700 | [diff] [blame] | 229 | EthInterfaceMatch = std::make_unique<sdbusplus::bus::match_t>( |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 230 | bus, |
| 231 | "interface='org.freedesktop.DBus.ObjectManager',type='signal'," |
| 232 | "member='InterfacesAdded',path='/xyz/openbmc_project/network'", |
| 233 | mycallback); |
| 234 | registeredSignals = true; |
| 235 | } |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | #endif |
| 240 | |
William A. Kennington III | c7cf25f | 2021-11-09 16:16:59 -0800 | [diff] [blame] | 241 | void reloadNetworkd() |
| 242 | { |
| 243 | if (manager) |
| 244 | { |
| 245 | log<level::INFO>("Sending networkd reload"); |
| 246 | manager->doReloadConfigs(); |
| 247 | log<level::INFO>("Done networkd reload"); |
| 248 | } |
| 249 | } |
| 250 | |
William A. Kennington III | 217bb3f | 2022-09-29 13:43:13 -0700 | [diff] [blame] | 251 | void initializeTimers(sdeventplus::Event& event) |
Ratan Gupta | 16f1288 | 2017-09-22 18:26:11 +0530 | [diff] [blame] | 252 | { |
William A. Kennington III | c7cf25f | 2021-11-09 16:16:59 -0800 | [diff] [blame] | 253 | reloadTimer = std::make_unique<Timer>(event, std::bind(reloadNetworkd)); |
Ratan Gupta | 16f1288 | 2017-09-22 18:26:11 +0530 | [diff] [blame] | 254 | } |
| 255 | |
William A. Kennington III | 217bb3f | 2022-09-29 13:43:13 -0700 | [diff] [blame] | 256 | void termCb(sdeventplus::source::Signal& signal, const struct signalfd_siginfo*) |
| 257 | { |
| 258 | log<level::NOTICE>("Got TERM, exiting"); |
| 259 | signal.get_event().exit(0); |
| 260 | } |
| 261 | |
William A. Kennington III | 4fd52ae | 2022-09-30 13:49:39 -0700 | [diff] [blame] | 262 | int main() |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 263 | { |
William A. Kennington III | 217bb3f | 2022-09-29 13:43:13 -0700 | [diff] [blame] | 264 | auto event = sdeventplus::Event::get_default(); |
| 265 | stdplus::signal::block(SIGTERM); |
| 266 | sdeventplus::source::Signal(event, SIGTERM, termCb).set_floating(true); |
| 267 | |
| 268 | initializeTimers(event); |
Ratan Gupta | a54d8f8 | 2017-09-08 17:05:46 +0530 | [diff] [blame] | 269 | |
Ratan Gupta | cb7098d | 2017-04-14 17:46:05 +0530 | [diff] [blame] | 270 | auto bus = sdbusplus::bus::new_default(); |
Ratan Gupta | 0f9dc1b | 2017-09-03 17:57:50 +0530 | [diff] [blame] | 271 | // Attach the bus to sd_event to service user requests |
William A. Kennington III | 217bb3f | 2022-09-29 13:43:13 -0700 | [diff] [blame] | 272 | bus.attach_event(event.get(), SD_EVENT_PRIORITY_NORMAL); |
Ratan Gupta | 0f9dc1b | 2017-09-03 17:57:50 +0530 | [diff] [blame] | 273 | |
Ratan Gupta | cb7098d | 2017-04-14 17:46:05 +0530 | [diff] [blame] | 274 | // Add sdbusplus Object Manager for the 'root' path of the network manager. |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 275 | sdbusplus::server::manager_t objManager(bus, DEFAULT_OBJPATH); |
William A. Kennington III | 5f1eb46 | 2019-02-12 19:47:51 -0800 | [diff] [blame] | 276 | bus.request_name(DEFAULT_BUSNAME); |
Ratan Gupta | cb7098d | 2017-04-14 17:46:05 +0530 | [diff] [blame] | 277 | |
William A. Kennington III | 4fd52ae | 2022-09-30 13:49:39 -0700 | [diff] [blame] | 278 | manager = std::make_unique<Manager>(bus, DEFAULT_OBJPATH, NETWORK_CONF_DIR); |
Ratan Gupta | cb7098d | 2017-04-14 17:46:05 +0530 | [diff] [blame] | 279 | |
Vishwanatha Subbanna | 18891c6 | 2017-10-17 15:22:46 +0530 | [diff] [blame] | 280 | // RTNETLINK event handler |
William A. Kennington III | 71590bf | 2022-10-31 14:14:16 -0700 | [diff] [blame] | 281 | netlink::Server svr(event, *manager); |
Vishwanatha Subbanna | 18891c6 | 2017-10-17 15:22:46 +0530 | [diff] [blame] | 282 | |
William A. Kennington III | 6f39c5e | 2021-05-13 18:39:23 -0700 | [diff] [blame] | 283 | #ifdef SYNC_MAC_FROM_INVENTORY |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 284 | std::ifstream in(configFile); |
| 285 | nlohmann::json configJson; |
| 286 | in >> configJson; |
William A. Kennington III | 4fd52ae | 2022-09-30 13:49:39 -0700 | [diff] [blame] | 287 | watchEthernetInterface(bus, configJson); |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 288 | #endif |
William A. Kennington III | bd649af | 2021-10-08 17:55:13 -0700 | [diff] [blame] | 289 | |
William A. Kennington III | 217bb3f | 2022-09-29 13:43:13 -0700 | [diff] [blame] | 290 | return event.loop(); |
William A. Kennington III | 4fd52ae | 2022-09-30 13:49:39 -0700 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | } // namespace network |
| 294 | } // namespace phosphor |
| 295 | |
| 296 | int main(int /*argc*/, char** /*argv*/) |
| 297 | { |
| 298 | try |
| 299 | { |
| 300 | return phosphor::network::main(); |
| 301 | } |
| 302 | catch (const std::exception& e) |
| 303 | { |
William A. Kennington III | be1af44 | 2022-11-12 01:49:21 -0800 | [diff] [blame] | 304 | fmt::print(stderr, "FAILED: {}", e.what()); |
| 305 | fflush(stderr); |
William A. Kennington III | 4fd52ae | 2022-09-30 13:49:39 -0700 | [diff] [blame] | 306 | return 1; |
| 307 | } |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 308 | } |