Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 1 | #include "config.h" |
| 2 | |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 3 | #include "network_manager.hpp" |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 4 | |
Ratan Gupta | 5978dd1 | 2017-07-25 13:47:13 +0530 | [diff] [blame] | 5 | #include "ipaddress.hpp" |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 6 | #include "network_config.hpp" |
William A. Kennington III | 3a70fa2 | 2018-09-20 18:48:20 -0700 | [diff] [blame] | 7 | #include "types.hpp" |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 8 | #include "util.hpp" |
Ratan Gupta | 738a67f | 2017-04-21 10:38:05 +0530 | [diff] [blame] | 9 | |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 10 | #include <arpa/inet.h> |
| 11 | #include <dirent.h> |
| 12 | #include <net/if.h> |
| 13 | |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 14 | #include <algorithm> |
| 15 | #include <bitset> |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 16 | #include <filesystem> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 17 | #include <fstream> |
| 18 | #include <map> |
| 19 | #include <phosphor-logging/elog-errors.hpp> |
| 20 | #include <phosphor-logging/log.hpp> |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 21 | #include <string> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 22 | #include <xyz/openbmc_project/Common/error.hpp> |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 23 | |
William A. Kennington III | f1aa51c | 2019-02-12 19:58:11 -0800 | [diff] [blame] | 24 | constexpr char SYSTEMD_BUSNAME[] = "org.freedesktop.systemd1"; |
| 25 | constexpr char SYSTEMD_PATH[] = "/org/freedesktop/systemd1"; |
| 26 | constexpr char SYSTEMD_INTERFACE[] = "org.freedesktop.systemd1.Manager"; |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 27 | constexpr auto FirstBootFile = "/var/lib/network/firstBoot_"; |
William A. Kennington III | f1aa51c | 2019-02-12 19:58:11 -0800 | [diff] [blame] | 28 | |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 29 | namespace phosphor |
| 30 | { |
| 31 | namespace network |
| 32 | { |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 33 | |
William A. Kennington III | 3a70fa2 | 2018-09-20 18:48:20 -0700 | [diff] [blame] | 34 | extern std::unique_ptr<Timer> refreshObjectTimer; |
| 35 | extern std::unique_ptr<Timer> restartTimer; |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 36 | using namespace phosphor::logging; |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 37 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 38 | |
Ratan Gupta | 255d514 | 2017-08-10 09:02:08 +0530 | [diff] [blame] | 39 | Manager::Manager(sdbusplus::bus::bus& bus, const char* objPath, |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 40 | const std::string& path) : |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 41 | details::VLANCreateIface(bus, objPath, true), |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 42 | bus(bus), objectPath(objPath) |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 43 | { |
Ratan Gupta | 255d514 | 2017-08-10 09:02:08 +0530 | [diff] [blame] | 44 | fs::path confDir(path); |
| 45 | setConfDir(confDir); |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 46 | } |
| 47 | |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 48 | bool Manager::createDefaultNetworkFiles(bool force) |
| 49 | { |
| 50 | auto isCreated = false; |
| 51 | try |
| 52 | { |
| 53 | // Directory would have created before with |
| 54 | // setConfDir function. |
| 55 | if (force) |
| 56 | { |
| 57 | // Factory Reset case |
| 58 | // we need to forcefully write the files |
| 59 | // so delete the existing ones. |
| 60 | if (fs::is_directory(confDir)) |
| 61 | { |
| 62 | for (const auto& file : fs::directory_iterator(confDir)) |
| 63 | { |
| 64 | fs::remove(file.path()); |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | auto interfaceStrList = getInterfaces(); |
| 70 | for (const auto& interface : interfaceStrList) |
| 71 | { |
Michael Tritz | 08c34f4 | 2017-10-16 14:59:09 -0500 | [diff] [blame] | 72 | // if the interface has '.' in the name, it means that this is a |
| 73 | // VLAN - don't create the network file. |
| 74 | if (interface.find(".") != std::string::npos) |
| 75 | { |
| 76 | continue; |
| 77 | } |
| 78 | |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 79 | auto fileName = systemd::config::networkFilePrefix + interface + |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 80 | systemd::config::networkFileSuffix; |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 81 | |
| 82 | fs::path filePath = confDir; |
| 83 | filePath /= fileName; |
| 84 | |
| 85 | // create the interface specific network file |
| 86 | // if not exist or we forcefully wants to write |
| 87 | // the network file. |
| 88 | |
| 89 | if (force || !fs::is_regular_file(filePath.string())) |
| 90 | { |
| 91 | bmc::writeDHCPDefault(filePath.string(), interface); |
| 92 | log<level::INFO>("Created the default network file.", |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 93 | entry("INTERFACE=%s", interface.c_str())); |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 94 | isCreated = true; |
| 95 | } |
| 96 | } |
| 97 | } |
| 98 | catch (std::exception& e) |
| 99 | { |
| 100 | log<level::ERR>("Unable to create the default network file"); |
| 101 | } |
| 102 | return isCreated; |
| 103 | } |
| 104 | |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 105 | void Manager::setConfDir(const fs::path& dir) |
| 106 | { |
| 107 | confDir = dir; |
Ratan Gupta | 255d514 | 2017-08-10 09:02:08 +0530 | [diff] [blame] | 108 | |
| 109 | if (!fs::exists(confDir)) |
| 110 | { |
| 111 | if (!fs::create_directories(confDir)) |
| 112 | { |
| 113 | log<level::ERR>("Unable to create the network conf dir", |
| 114 | entry("DIR=%s", confDir.c_str())); |
| 115 | elog<InternalFailure>(); |
| 116 | } |
| 117 | } |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | void Manager::createInterfaces() |
| 121 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 122 | // clear all the interfaces first |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 123 | interfaces.clear(); |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 124 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 125 | auto interfaceStrList = getInterfaces(); |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 126 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 127 | for (auto& interface : interfaceStrList) |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 128 | { |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 129 | fs::path objPath = objectPath; |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 130 | auto index = interface.find("."); |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 131 | |
| 132 | // interface can be of vlan type or normal ethernet interface. |
| 133 | // vlan interface looks like "interface.vlanid",so here by looking |
| 134 | // at the interface name we decide that we need |
| 135 | // to create the vlaninterface or normal physical interface. |
| 136 | if (index != std::string::npos) |
| 137 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 138 | // it is vlan interface |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 139 | auto interfaceName = interface.substr(0, index); |
| 140 | auto vlanid = interface.substr(index + 1); |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 141 | uint32_t vlanInt = std::stoul(vlanid); |
| 142 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 143 | interfaces[interfaceName]->loadVLAN(vlanInt); |
Ratan Gupta | 6e8df63 | 2017-08-13 09:41:58 +0530 | [diff] [blame] | 144 | continue; |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 145 | } |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 146 | // normal ethernet interface |
| 147 | objPath /= interface; |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 148 | |
Ratan Gupta | fd4b0f0 | 2017-09-16 06:01:24 +0530 | [diff] [blame] | 149 | auto dhcp = getDHCPValue(confDir, interface); |
Ratan Gupta | 34f96d6 | 2017-06-15 09:16:22 +0530 | [diff] [blame] | 150 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 151 | auto intf = std::make_shared<phosphor::network::EthernetInterface>( |
| 152 | bus, objPath.string(), dhcp, *this); |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 153 | |
| 154 | intf->createIPAddressObjects(); |
William A. Kennington III | 0850579 | 2019-01-30 16:00:04 -0800 | [diff] [blame] | 155 | intf->createStaticNeighborObjects(); |
Manojkiran Eda | acd6dd5 | 2019-10-15 15:00:51 +0530 | [diff] [blame] | 156 | intf->loadNameServers(); |
Ratan Gupta | 92bc2fe | 2017-07-26 22:40:21 +0530 | [diff] [blame] | 157 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 158 | this->interfaces.emplace( |
| 159 | std::make_pair(std::move(interface), std::move(intf))); |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 160 | } |
| 161 | } |
| 162 | |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 163 | void Manager::createChildObjects() |
| 164 | { |
| 165 | // creates the ethernet interface dbus object. |
| 166 | createInterfaces(); |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 167 | |
| 168 | systemConf.reset(nullptr); |
| 169 | dhcpConf.reset(nullptr); |
| 170 | |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 171 | fs::path objPath = objectPath; |
| 172 | objPath /= "config"; |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 173 | |
| 174 | // create the system conf object. |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 175 | systemConf = std::make_unique<phosphor::network::SystemConfiguration>( |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 176 | bus, objPath.string(), *this); |
Ratan Gupta | d16f88c | 2017-07-11 17:47:57 +0530 | [diff] [blame] | 177 | // create the dhcp conf object. |
| 178 | objPath /= "dhcp"; |
| 179 | dhcpConf = std::make_unique<phosphor::network::dhcp::Configuration>( |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 180 | bus, objPath.string(), *this); |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 181 | } |
| 182 | |
William A. Kennington III | f4b4ff8 | 2019-04-09 19:06:52 -0700 | [diff] [blame] | 183 | ObjectPath Manager::vLAN(IntfName interfaceName, uint32_t id) |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 184 | { |
William A. Kennington III | f4b4ff8 | 2019-04-09 19:06:52 -0700 | [diff] [blame] | 185 | return interfaces[interfaceName]->createVLAN(id); |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 186 | } |
| 187 | |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 188 | void Manager::reset() |
| 189 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 190 | if (!createDefaultNetworkFiles(true)) |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 191 | { |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 192 | log<level::ERR>("Network Factory Reset failed."); |
| 193 | return; |
| 194 | // TODO: openbmc/openbmc#1721 - Log ResetFailed error here. |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 195 | } |
| 196 | |
Ratan Gupta | b610caf | 2017-09-19 09:33:51 +0530 | [diff] [blame] | 197 | log<level::INFO>("Network Factory Reset done."); |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 198 | } |
| 199 | |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 200 | // Need to merge the below function with the code which writes the |
| 201 | // config file during factory reset. |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 202 | // TODO openbmc/openbmc#1751 |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 203 | void Manager::writeToConfigurationFile() |
| 204 | { |
| 205 | // write all the static ip address in the systemd-network conf file |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 206 | for (const auto& intf : interfaces) |
| 207 | { |
Ratan Gupta | 2b10653 | 2017-07-25 16:05:02 +0530 | [diff] [blame] | 208 | intf.second->writeConfigurationFile(); |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 209 | } |
Ratan Gupta | 16f1288 | 2017-09-22 18:26:11 +0530 | [diff] [blame] | 210 | restartTimers(); |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 211 | } |
| 212 | |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 213 | #if SYNC_MAC_FROM_INVENTORY |
| 214 | void Manager::setFistBootMACOnInterface( |
| 215 | const std::pair<std::string, std::string>& inventoryEthPair) |
| 216 | { |
| 217 | for (const auto& interface : interfaces) |
| 218 | { |
| 219 | if (interface.first == inventoryEthPair.first) |
| 220 | { |
| 221 | auto returnMAC = |
| 222 | interface.second->mACAddress(inventoryEthPair.second); |
| 223 | if (returnMAC == inventoryEthPair.second) |
| 224 | { |
| 225 | log<level::INFO>("Set the MAC on "), |
| 226 | entry("interface : ", interface.first.c_str()), |
| 227 | entry("MAC : ", inventoryEthPair.second.c_str()); |
| 228 | std::error_code ec; |
| 229 | if (std::filesystem::is_directory("/var/lib/network", ec)) |
| 230 | { |
| 231 | std::ofstream persistentFile(FirstBootFile + |
| 232 | interface.first); |
| 233 | } |
| 234 | break; |
| 235 | } |
| 236 | else |
| 237 | { |
| 238 | log<level::INFO>("MAC is Not Set on ethernet Interface"); |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | #endif |
| 245 | |
Ratan Gupta | 16f1288 | 2017-09-22 18:26:11 +0530 | [diff] [blame] | 246 | void Manager::restartTimers() |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 247 | { |
| 248 | using namespace std::chrono; |
Ratan Gupta | 16f1288 | 2017-09-22 18:26:11 +0530 | [diff] [blame] | 249 | if (refreshObjectTimer && restartTimer) |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 250 | { |
William A. Kennington III | 3a70fa2 | 2018-09-20 18:48:20 -0700 | [diff] [blame] | 251 | restartTimer->restartOnce(restartTimeout); |
| 252 | refreshObjectTimer->restartOnce(refreshTimeout); |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 253 | } |
Ratan Gupta | 70c7e5b | 2017-07-12 11:41:55 +0530 | [diff] [blame] | 254 | } |
| 255 | |
Ratan Gupta | 3529717 | 2018-11-28 18:40:16 +0530 | [diff] [blame] | 256 | void Manager::restartSystemdUnit(const std::string& unit) |
| 257 | { |
| 258 | try |
| 259 | { |
| 260 | auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
William A. Kennington III | a5b1b0d | 2018-11-30 17:03:57 -0800 | [diff] [blame] | 261 | SYSTEMD_INTERFACE, "ResetFailedUnit"); |
| 262 | method.append(unit); |
| 263 | bus.call_noreply(method); |
| 264 | } |
| 265 | catch (const sdbusplus::exception::SdBusError& ex) |
| 266 | { |
| 267 | log<level::ERR>("Failed to reset failed unit", |
| 268 | entry("UNIT=%s", unit.c_str()), |
| 269 | entry("ERR=%s", ex.what())); |
| 270 | elog<InternalFailure>(); |
| 271 | } |
| 272 | |
| 273 | try |
| 274 | { |
| 275 | auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
Ratan Gupta | 3529717 | 2018-11-28 18:40:16 +0530 | [diff] [blame] | 276 | SYSTEMD_INTERFACE, "RestartUnit"); |
| 277 | method.append(unit.c_str(), "replace"); |
| 278 | bus.call_noreply(method); |
| 279 | } |
| 280 | catch (const sdbusplus::exception::SdBusError& ex) |
| 281 | { |
Ratan Gupta | abbd85c | 2020-06-12 09:57:02 +0530 | [diff] [blame] | 282 | log<level::ERR>("Failed to restart service", entry("ERR=%s", ex.what()), |
| 283 | entry("UNIT=%s", unit.c_str())); |
Ratan Gupta | 3529717 | 2018-11-28 18:40:16 +0530 | [diff] [blame] | 284 | elog<InternalFailure>(); |
| 285 | } |
| 286 | } |
| 287 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 288 | } // namespace network |
| 289 | } // namespace phosphor |