Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 3 | #include "dhcp_configuration.hpp" |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 4 | #include "ethernet_interface.hpp" |
William A. Kennington III | e056484 | 2021-10-23 16:02:22 -0700 | [diff] [blame] | 5 | #include "routing_table.hpp" |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 6 | #include "system_configuration.hpp" |
Ratan Gupta | 5978dd1 | 2017-07-25 13:47:13 +0530 | [diff] [blame] | 7 | #include "vlan_interface.hpp" |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 8 | #include "xyz/openbmc_project/Network/VLAN/Create/server.hpp" |
Ratan Gupta | 5978dd1 | 2017-07-25 13:47:13 +0530 | [diff] [blame] | 9 | |
Manojkiran Eda | a879baa | 2020-06-13 14:39:08 +0530 | [diff] [blame] | 10 | #include <filesystem> |
William A. Kennington III | 6ff633a | 2021-11-09 17:09:12 -0800 | [diff] [blame] | 11 | #include <function2/function2.hpp> |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 12 | #include <memory> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 13 | #include <sdbusplus/bus.hpp> |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 14 | #include <string> |
William A. Kennington III | 6ff633a | 2021-11-09 17:09:12 -0800 | [diff] [blame] | 15 | #include <utility> |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 16 | #include <vector> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 17 | #include <xyz/openbmc_project/Common/FactoryReset/server.hpp> |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 18 | |
| 19 | namespace phosphor |
| 20 | { |
| 21 | namespace network |
| 22 | { |
| 23 | |
Ratan Gupta | 2b10653 | 2017-07-25 16:05:02 +0530 | [diff] [blame] | 24 | using SystemConfPtr = std::unique_ptr<SystemConfiguration>; |
| 25 | using DHCPConfPtr = std::unique_ptr<dhcp::Configuration>; |
| 26 | |
Manojkiran Eda | a879baa | 2020-06-13 14:39:08 +0530 | [diff] [blame] | 27 | namespace fs = std::filesystem; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 28 | namespace details |
| 29 | { |
| 30 | |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 31 | template <typename T, typename U> |
| 32 | using ServerObject = typename sdbusplus::server::object::object<T, U>; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 33 | |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 34 | using VLANCreateIface = details::ServerObject< |
| 35 | sdbusplus::xyz::openbmc_project::Network::VLAN::server::Create, |
| 36 | sdbusplus::xyz::openbmc_project::Common::server::FactoryReset>; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 37 | |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 38 | } // namespace details |
| 39 | |
| 40 | /** @class Manager |
| 41 | * @brief OpenBMC network manager implementation. |
| 42 | */ |
| 43 | class Manager : public details::VLANCreateIface |
| 44 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 45 | public: |
| 46 | Manager() = delete; |
| 47 | Manager(const Manager&) = delete; |
| 48 | Manager& operator=(const Manager&) = delete; |
| 49 | Manager(Manager&&) = delete; |
| 50 | Manager& operator=(Manager&&) = delete; |
| 51 | virtual ~Manager() = default; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 52 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 53 | /** @brief Constructor to put object onto bus at a dbus path. |
| 54 | * @param[in] bus - Bus to attach to. |
| 55 | * @param[in] objPath - Path to attach at. |
| 56 | * @param[in] dir - Network Configuration directory path. |
| 57 | */ |
| 58 | Manager(sdbusplus::bus::bus& bus, const char* objPath, |
| 59 | const std::string& dir); |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 60 | |
Patrick Williams | 8173e02 | 2021-05-01 06:39:41 -0500 | [diff] [blame] | 61 | ObjectPath vlan(IntfName interfaceName, uint32_t id) override; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 62 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 63 | /** @brief write the network conf file with the in-memory objects. |
| 64 | */ |
| 65 | void writeToConfigurationFile(); |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 66 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 67 | /** @brief Fetch the interface and the ipaddress details |
| 68 | * from the system and create the ethernet interraces |
| 69 | * dbus object. |
| 70 | */ |
Manojkiran Eda | acd6dd5 | 2019-10-15 15:00:51 +0530 | [diff] [blame] | 71 | virtual void createInterfaces(); |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 72 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 73 | /** @brief create child interface object and the system conf object. |
| 74 | */ |
| 75 | void createChildObjects(); |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 76 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 77 | /** @brief sets the network conf directory. |
| 78 | * @param[in] dirName - Absolute path of the directory. |
| 79 | */ |
| 80 | void setConfDir(const fs::path& dir); |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 81 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 82 | /** @brief gets the network conf directory. |
| 83 | */ |
| 84 | fs::path getConfDir() |
| 85 | { |
| 86 | return confDir; |
| 87 | } |
Ratan Gupta | 255d514 | 2017-08-10 09:02:08 +0530 | [diff] [blame] | 88 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 89 | /** @brief gets the system conf object. |
| 90 | * |
| 91 | */ |
| 92 | const SystemConfPtr& getSystemConf() |
| 93 | { |
| 94 | return systemConf; |
| 95 | } |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 96 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 97 | /** @brief gets the dhcp conf object. |
| 98 | * |
| 99 | */ |
| 100 | const DHCPConfPtr& getDHCPConf() |
| 101 | { |
| 102 | return dhcpConf; |
| 103 | } |
Ratan Gupta | 2b10653 | 2017-07-25 16:05:02 +0530 | [diff] [blame] | 104 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 105 | /** @brief create the default network files for each interface |
| 106 | * @detail if force param is true then forcefully create the network |
| 107 | * files otherwise if network file doesn't exist then |
| 108 | * create it. |
| 109 | * @param[in] force - forcefully create the file |
| 110 | * @return true if network file created else false |
| 111 | */ |
| 112 | bool createDefaultNetworkFiles(bool force); |
Ratan Gupta | 70c7e5b | 2017-07-12 11:41:55 +0530 | [diff] [blame] | 113 | |
Manojkiran Eda | cc099a8 | 2020-05-11 14:25:16 +0530 | [diff] [blame] | 114 | /** @brief This function gets the MAC address from the VPD and |
| 115 | * sets it on the corresponding ethernet interface during first |
| 116 | * Boot, once it sets the MAC from VPD, it creates a file named |
| 117 | * firstBoot under /var/lib to make sure we dont run this function |
| 118 | * again. |
| 119 | * |
| 120 | * @param[in] ethPair - Its a pair of ethernet interface name & the |
| 121 | * corresponding MAC Address from the VPD |
| 122 | * |
| 123 | * return - NULL |
| 124 | */ |
| 125 | void setFistBootMACOnInterface( |
| 126 | const std::pair<std::string, std::string>& ethPair); |
| 127 | |
William A. Kennington III | c7cf25f | 2021-11-09 16:16:59 -0800 | [diff] [blame] | 128 | /** @brief Arms a timer to tell systemd-network to reload all of the network |
| 129 | * configurations |
William A. Kennington III | 56ecc78 | 2021-10-07 18:44:50 -0700 | [diff] [blame] | 130 | */ |
| 131 | virtual void reloadConfigs(); |
| 132 | |
William A. Kennington III | c7cf25f | 2021-11-09 16:16:59 -0800 | [diff] [blame] | 133 | /** @brief Tell systemd-network to reload all of the network configurations |
| 134 | */ |
| 135 | void doReloadConfigs(); |
| 136 | |
Patrick Venture | d94d23e | 2019-01-07 13:05:23 -0800 | [diff] [blame] | 137 | /** @brief Returns the number of interfaces under this manager. |
| 138 | * |
| 139 | * @return the number of interfaces managed by this manager. |
| 140 | */ |
| 141 | int getInterfaceCount() |
| 142 | { |
| 143 | return interfaces.size(); |
| 144 | } |
| 145 | |
| 146 | /** @brief Does the requested interface exist under this manager? |
| 147 | * |
| 148 | * @param[in] intf - the interface name to check. |
| 149 | * @return true if found, false otherwise. |
| 150 | */ |
| 151 | bool hasInterface(const std::string& intf) |
| 152 | { |
| 153 | return (interfaces.find(intf) != interfaces.end()); |
| 154 | } |
| 155 | |
William A. Kennington III | e056484 | 2021-10-23 16:02:22 -0700 | [diff] [blame] | 156 | /** @brief Get the routing table owned by the manager |
| 157 | * |
| 158 | * @return Routing table reference. |
| 159 | */ |
| 160 | inline const auto& getRouteTable() const |
| 161 | { |
| 162 | return routeTable; |
| 163 | } |
| 164 | |
William A. Kennington III | 6ff633a | 2021-11-09 17:09:12 -0800 | [diff] [blame] | 165 | /** @brief Adds a hook that runs immediately prior to reloading |
| 166 | * |
| 167 | * @param[in] hook - The hook to execute before reloading |
| 168 | */ |
| 169 | inline void addReloadPreHook(fu2::unique_function<void()>&& hook) |
| 170 | { |
| 171 | reloadPreHooks.push_back(std::move(hook)); |
| 172 | } |
| 173 | |
Ratan Gupta | 3529717 | 2018-11-28 18:40:16 +0530 | [diff] [blame] | 174 | protected: |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 175 | /** @brief Persistent sdbusplus DBus bus connection. */ |
| 176 | sdbusplus::bus::bus& bus; |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 177 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 178 | /** @brief Persistent map of EthernetInterface dbus objects and their names |
| 179 | */ |
| 180 | std::map<IntfName, std::shared_ptr<EthernetInterface>> interfaces; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 181 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 182 | /** @brief BMC network reset - resets network configuration for BMC. */ |
| 183 | void reset() override; |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 184 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 185 | /** @brief Path of Object. */ |
| 186 | std::string objectPath; |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 187 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 188 | /** @brief pointer to system conf object. */ |
| 189 | SystemConfPtr systemConf = nullptr; |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 190 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 191 | /** @brief pointer to dhcp conf object. */ |
| 192 | DHCPConfPtr dhcpConf = nullptr; |
Ratan Gupta | d16f88c | 2017-07-11 17:47:57 +0530 | [diff] [blame] | 193 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 194 | /** @brief Network Configuration directory. */ |
| 195 | fs::path confDir; |
William A. Kennington III | e056484 | 2021-10-23 16:02:22 -0700 | [diff] [blame] | 196 | |
| 197 | /** @brief The routing table */ |
| 198 | route::Table routeTable; |
William A. Kennington III | 6ff633a | 2021-11-09 17:09:12 -0800 | [diff] [blame] | 199 | |
| 200 | /** @brief List of hooks to execute during the next reload */ |
| 201 | std::vector<fu2::unique_function<void()>> reloadPreHooks; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 202 | }; |
| 203 | |
| 204 | } // namespace network |
| 205 | } // namespace phosphor |