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" |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 5 | #include "system_configuration.hpp" |
Ratan Gupta | 5978dd1 | 2017-07-25 13:47:13 +0530 | [diff] [blame] | 6 | #include "vlan_interface.hpp" |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 7 | #include "xyz/openbmc_project/Network/VLAN/Create/server.hpp" |
Ratan Gupta | 5978dd1 | 2017-07-25 13:47:13 +0530 | [diff] [blame] | 8 | |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 9 | #include <experimental/filesystem> |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 10 | #include <list> |
Ratan Gupta | 6811f82 | 2017-04-14 16:34:56 +0530 | [diff] [blame] | 11 | #include <memory> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 12 | #include <sdbusplus/bus.hpp> |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 13 | #include <string> |
| 14 | #include <vector> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 15 | #include <xyz/openbmc_project/Common/FactoryReset/server.hpp> |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 16 | |
| 17 | namespace phosphor |
| 18 | { |
| 19 | namespace network |
| 20 | { |
| 21 | |
Ratan Gupta | 2b10653 | 2017-07-25 16:05:02 +0530 | [diff] [blame] | 22 | using SystemConfPtr = std::unique_ptr<SystemConfiguration>; |
| 23 | using DHCPConfPtr = std::unique_ptr<dhcp::Configuration>; |
| 24 | |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 25 | namespace fs = std::experimental::filesystem; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 26 | namespace details |
| 27 | { |
| 28 | |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 29 | template <typename T, typename U> |
| 30 | using ServerObject = typename sdbusplus::server::object::object<T, U>; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 31 | |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 32 | using VLANCreateIface = details::ServerObject< |
| 33 | sdbusplus::xyz::openbmc_project::Network::VLAN::server::Create, |
| 34 | sdbusplus::xyz::openbmc_project::Common::server::FactoryReset>; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 35 | |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 36 | } // namespace details |
| 37 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 38 | class TestNetworkManager; // forward declaration |
| 39 | class TestRtNetlink; // forward declaration |
Ratan Gupta | 8ab1792 | 2017-05-25 13:07:05 +0530 | [diff] [blame] | 40 | |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 41 | /** @class Manager |
| 42 | * @brief OpenBMC network manager implementation. |
| 43 | */ |
| 44 | class Manager : public details::VLANCreateIface |
| 45 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 46 | public: |
| 47 | Manager() = delete; |
| 48 | Manager(const Manager&) = delete; |
| 49 | Manager& operator=(const Manager&) = delete; |
| 50 | Manager(Manager&&) = delete; |
| 51 | Manager& operator=(Manager&&) = delete; |
| 52 | virtual ~Manager() = default; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 53 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 54 | /** @brief Constructor to put object onto bus at a dbus path. |
| 55 | * @param[in] bus - Bus to attach to. |
| 56 | * @param[in] objPath - Path to attach at. |
| 57 | * @param[in] dir - Network Configuration directory path. |
| 58 | */ |
| 59 | Manager(sdbusplus::bus::bus& bus, const char* objPath, |
| 60 | const std::string& dir); |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 61 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 62 | void vLAN(IntfName interfaceName, uint32_t id) override; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 63 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 64 | /** @brief write the network conf file with the in-memory objects. |
| 65 | */ |
| 66 | void writeToConfigurationFile(); |
Ratan Gupta | 4f1c18b | 2017-05-25 12:59:35 +0530 | [diff] [blame] | 67 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 68 | /** @brief Fetch the interface and the ipaddress details |
| 69 | * from the system and create the ethernet interraces |
| 70 | * dbus object. |
| 71 | */ |
| 72 | void createInterfaces(); |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 73 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 74 | /** @brief create child interface object and the system conf object. |
| 75 | */ |
| 76 | void createChildObjects(); |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 77 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 78 | /** @brief sets the network conf directory. |
| 79 | * @param[in] dirName - Absolute path of the directory. |
| 80 | */ |
| 81 | void setConfDir(const fs::path& dir); |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 82 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 83 | /** @brief gets the network conf directory. |
| 84 | */ |
| 85 | fs::path getConfDir() |
| 86 | { |
| 87 | return confDir; |
| 88 | } |
Ratan Gupta | 255d514 | 2017-08-10 09:02:08 +0530 | [diff] [blame] | 89 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 90 | /** @brief gets the system conf object. |
| 91 | * |
| 92 | */ |
| 93 | const SystemConfPtr& getSystemConf() |
| 94 | { |
| 95 | return systemConf; |
| 96 | } |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 97 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 98 | /** @brief gets the dhcp conf object. |
| 99 | * |
| 100 | */ |
| 101 | const DHCPConfPtr& getDHCPConf() |
| 102 | { |
| 103 | return dhcpConf; |
| 104 | } |
Ratan Gupta | 2b10653 | 2017-07-25 16:05:02 +0530 | [diff] [blame] | 105 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 106 | /** @brief create the default network files for each interface |
| 107 | * @detail if force param is true then forcefully create the network |
| 108 | * files otherwise if network file doesn't exist then |
| 109 | * create it. |
| 110 | * @param[in] force - forcefully create the file |
| 111 | * @return true if network file created else false |
| 112 | */ |
| 113 | bool createDefaultNetworkFiles(bool force); |
Ratan Gupta | 70c7e5b | 2017-07-12 11:41:55 +0530 | [diff] [blame] | 114 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 115 | /** @brief restart the network timers. */ |
| 116 | void restartTimers(); |
Ratan Gupta | e05083a | 2017-09-16 07:12:11 +0530 | [diff] [blame] | 117 | |
Ratan Gupta | 895f9e5 | 2018-11-26 20:57:34 +0530 | [diff] [blame^] | 118 | /** @brief Restart the systemd unit |
| 119 | * @param[in] unit - systemd unit name which needs to be |
| 120 | * restarted. |
| 121 | */ |
| 122 | inline void restartSystemdUnit(const std::string& unit) |
| 123 | { |
| 124 | auto bus = sdbusplus::bus::new_default(); |
| 125 | auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, |
| 126 | SYSTEMD_INTERFACE, "RestartUnit"); |
| 127 | |
| 128 | method.append(unit, "replace"); |
| 129 | bus.call_noreply(method); |
| 130 | } |
| 131 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 132 | private: |
| 133 | /** @brief Persistent sdbusplus DBus bus connection. */ |
| 134 | sdbusplus::bus::bus& bus; |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 135 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 136 | /** @brief Persistent map of EthernetInterface dbus objects and their names |
| 137 | */ |
| 138 | std::map<IntfName, std::shared_ptr<EthernetInterface>> interfaces; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 139 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 140 | /** @brief BMC network reset - resets network configuration for BMC. */ |
| 141 | void reset() override; |
Michael Tritz | 29f2fd6 | 2017-05-22 15:27:26 -0500 | [diff] [blame] | 142 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 143 | /** @brief Path of Object. */ |
| 144 | std::string objectPath; |
Ratan Gupta | 29b0e43 | 2017-05-25 12:51:40 +0530 | [diff] [blame] | 145 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 146 | /** @brief pointer to system conf object. */ |
| 147 | SystemConfPtr systemConf = nullptr; |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 148 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 149 | /** @brief pointer to dhcp conf object. */ |
| 150 | DHCPConfPtr dhcpConf = nullptr; |
Ratan Gupta | d16f88c | 2017-07-11 17:47:57 +0530 | [diff] [blame] | 151 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 152 | /** @brief Network Configuration directory. */ |
| 153 | fs::path confDir; |
Ratan Gupta | ef85eb9 | 2017-06-15 08:57:54 +0530 | [diff] [blame] | 154 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 155 | friend class TestNetworkManager; |
| 156 | friend class TestRtNetlink; |
Ratan Gupta | 05eb109 | 2017-04-14 16:33:53 +0530 | [diff] [blame] | 157 | }; |
| 158 | |
| 159 | } // namespace network |
| 160 | } // namespace phosphor |