blob: 2643d5208e601388cbc24ef04d5783bec4aa260c [file] [log] [blame]
Ratan Gupta05eb1092017-04-14 16:33:53 +05301#pragma once
Patrick Venture189d44e2018-07-09 12:30:59 -07002#include "dhcp_configuration.hpp"
Ratan Gupta05eb1092017-04-14 16:33:53 +05303#include "ethernet_interface.hpp"
Ratan Guptaef85eb92017-06-15 08:57:54 +05304#include "system_configuration.hpp"
William A. Kennington IIIdd9ef812022-10-05 02:08:02 -07005#include "types.hpp"
Patrick Venture189d44e2018-07-09 12:30:59 -07006#include "xyz/openbmc_project/Network/VLAN/Create/server.hpp"
Ratan Gupta5978dd12017-07-25 13:47:13 +05307
William A. Kennington III6ff633a2021-11-09 17:09:12 -08008#include <function2/function2.hpp>
Patrick Venture189d44e2018-07-09 12:30:59 -07009#include <sdbusplus/bus.hpp>
William A. Kennington III80d29012022-11-12 02:31:40 -080010#include <sdbusplus/bus/match.hpp>
William A. Kennington III5b179382022-11-15 15:23:26 -080011#include <sdbusplus/message/native_types.hpp>
William A. Kennington III9ede1b72022-11-21 01:59:28 -080012#include <stdplus/pinned.hpp>
William A. Kennington IIIde70ccf2022-11-20 17:18:01 -080013#include <stdplus/zstring_view.hpp>
Patrick Williams89d734b2023-05-10 07:50:25 -050014#include <xyz/openbmc_project/Common/FactoryReset/server.hpp>
15
16#include <filesystem>
17#include <memory>
Ratan Gupta05eb1092017-04-14 16:33:53 +053018#include <string>
William A. Kennington IIIdd9ef812022-10-05 02:08:02 -070019#include <string_view>
Ratan Gupta05eb1092017-04-14 16:33:53 +053020#include <vector>
21
22namespace phosphor
23{
24namespace network
25{
26
William A. Kennington III5b179382022-11-15 15:23:26 -080027using ManagerIface = sdbusplus::server::object_t<
Michael Tritz29f2fd62017-05-22 15:27:26 -050028 sdbusplus::xyz::openbmc_project::Network::VLAN::server::Create,
29 sdbusplus::xyz::openbmc_project::Common::server::FactoryReset>;
Ratan Gupta05eb1092017-04-14 16:33:53 +053030
William A. Kennington IIIde70ccf2022-11-20 17:18:01 -080031class DelayedExecutor
32{
33 public:
34 virtual ~DelayedExecutor() = default;
35
36 virtual void schedule() = 0;
37 virtual void setCallback(fu2::unique_function<void()>&& cb) = 0;
38};
39
Ratan Gupta05eb1092017-04-14 16:33:53 +053040/** @class Manager
41 * @brief OpenBMC network manager implementation.
42 */
William A. Kennington III5b179382022-11-15 15:23:26 -080043class Manager : public ManagerIface
Ratan Gupta05eb1092017-04-14 16:33:53 +053044{
Gunnar Mills57d9c502018-09-14 14:42:34 -050045 public:
Gunnar Mills57d9c502018-09-14 14:42:34 -050046 Manager(Manager&&) = delete;
47 Manager& operator=(Manager&&) = delete;
Ratan Gupta05eb1092017-04-14 16:33:53 +053048
Gunnar Mills57d9c502018-09-14 14:42:34 -050049 /** @brief Constructor to put object onto bus at a dbus path.
50 * @param[in] bus - Bus to attach to.
William A. Kennington IIIde70ccf2022-11-20 17:18:01 -080051 * @param[in] reload - The executor for reloading configs
Gunnar Mills57d9c502018-09-14 14:42:34 -050052 * @param[in] objPath - Path to attach at.
William A. Kennington IIIbe3bd2f2022-10-11 14:11:27 -070053 * @param[in] confDir - Network Configuration directory path.
Gunnar Mills57d9c502018-09-14 14:42:34 -050054 */
William A. Kennington III9ede1b72022-11-21 01:59:28 -080055 Manager(stdplus::PinnedRef<sdbusplus::bus_t> bus, DelayedExecutor& reload,
William A. Kennington IIIde70ccf2022-11-20 17:18:01 -080056 stdplus::zstring_view objPath,
William A. Kennington III5b179382022-11-15 15:23:26 -080057 const std::filesystem::path& confDir);
Ratan Gupta05eb1092017-04-14 16:33:53 +053058
William A. Kennington IIIdd9ef812022-10-05 02:08:02 -070059 ObjectPath vlan(std::string interfaceName, uint32_t id) override;
Ratan Gupta05eb1092017-04-14 16:33:53 +053060
Gunnar Mills57d9c502018-09-14 14:42:34 -050061 /** @brief write the network conf file with the in-memory objects.
62 */
63 void writeToConfigurationFile();
Ratan Gupta4f1c18b2017-05-25 12:59:35 +053064
William A. Kennington III80d29012022-11-12 02:31:40 -080065 /** @brief Adds a single interface to the interface map */
William A. Kennington III0813a242022-11-12 18:07:11 -080066 void addInterface(const InterfaceInfo& info);
67 void removeInterface(const InterfaceInfo& info);
William A. Kennington III80d29012022-11-12 02:31:40 -080068
William A. Kennington IIIed5ff472022-11-12 16:24:02 -080069 /** @brief Add / remove an address to the interface or queue */
70 void addAddress(const AddressInfo& info);
71 void removeAddress(const AddressInfo& info);
72
73 /** @brief Add / remove a neighbor to the interface or queue */
74 void addNeighbor(const NeighborInfo& info);
75 void removeNeighbor(const NeighborInfo& info);
76
77 /** @brief Add / remove default gateway for interface */
78 void addDefGw(unsigned ifidx, InAddrAny addr);
79 void removeDefGw(unsigned ifidx, InAddrAny addr);
80
Gunnar Mills57d9c502018-09-14 14:42:34 -050081 /** @brief gets the network conf directory.
82 */
William A. Kennington III5b179382022-11-15 15:23:26 -080083 inline const auto& getConfDir() const
Gunnar Mills57d9c502018-09-14 14:42:34 -050084 {
85 return confDir;
86 }
Ratan Gupta255d5142017-08-10 09:02:08 +053087
Gunnar Mills57d9c502018-09-14 14:42:34 -050088 /** @brief gets the system conf object.
89 *
90 */
William A. Kennington III5b179382022-11-15 15:23:26 -080091 inline auto& getSystemConf()
Gunnar Mills57d9c502018-09-14 14:42:34 -050092 {
William A. Kennington III5b179382022-11-15 15:23:26 -080093 return *systemConf;
Gunnar Mills57d9c502018-09-14 14:42:34 -050094 }
Ratan Gupta05eb1092017-04-14 16:33:53 +053095
Gunnar Mills57d9c502018-09-14 14:42:34 -050096 /** @brief gets the dhcp conf object.
97 *
98 */
William A. Kennington III5b179382022-11-15 15:23:26 -080099 inline auto& getDHCPConf()
Gunnar Mills57d9c502018-09-14 14:42:34 -0500100 {
William A. Kennington III5b179382022-11-15 15:23:26 -0800101 return *dhcpConf;
Gunnar Mills57d9c502018-09-14 14:42:34 -0500102 }
Ratan Gupta2b106532017-07-25 16:05:02 +0530103
William A. Kennington IIIc7cf25f2021-11-09 16:16:59 -0800104 /** @brief Arms a timer to tell systemd-network to reload all of the network
105 * configurations
William A. Kennington III56ecc782021-10-07 18:44:50 -0700106 */
William A. Kennington IIIde70ccf2022-11-20 17:18:01 -0800107 inline void reloadConfigs()
108 {
109 reload.schedule();
110 }
William A. Kennington IIIc7cf25f2021-11-09 16:16:59 -0800111
William A. Kennington III09f3a4a2022-10-25 02:59:16 -0700112 /** @brief Persistent map of EthernetInterface dbus objects and their names
Patrick Ventured94d23e2019-01-07 13:05:23 -0800113 */
William A. Kennington III09f3a4a2022-10-25 02:59:16 -0700114 string_umap<std::unique_ptr<EthernetInterface>> interfaces;
William A. Kennington III67b09da2022-10-31 14:09:53 -0700115 std::unordered_map<unsigned, EthernetInterface*> interfacesByIdx;
William A. Kennington III93f5c6d2022-11-17 16:23:44 -0800116 std::unordered_set<unsigned> ignoredIntf;
Patrick Ventured94d23e2019-01-07 13:05:23 -0800117
William A. Kennington III6ff633a2021-11-09 17:09:12 -0800118 /** @brief Adds a hook that runs immediately prior to reloading
119 *
120 * @param[in] hook - The hook to execute before reloading
121 */
122 inline void addReloadPreHook(fu2::unique_function<void()>&& hook)
123 {
124 reloadPreHooks.push_back(std::move(hook));
125 }
William A. Kennington IIIde4668a2022-11-17 16:02:30 -0800126 inline void addReloadPostHook(fu2::unique_function<void()>&& hook)
127 {
128 reloadPostHooks.push_back(std::move(hook));
129 }
William A. Kennington III6ff633a2021-11-09 17:09:12 -0800130
Ratan Gupta35297172018-11-28 18:40:16 +0530131 protected:
William A. Kennington IIIde70ccf2022-11-20 17:18:01 -0800132 /** @brief Handle to the object used to trigger reloads of networkd. */
133 DelayedExecutor& reload;
134
Gunnar Mills57d9c502018-09-14 14:42:34 -0500135 /** @brief Persistent sdbusplus DBus bus connection. */
William A. Kennington III9ede1b72022-11-21 01:59:28 -0800136 stdplus::PinnedRef<sdbusplus::bus_t> bus;
Ratan Gupta29b0e432017-05-25 12:51:40 +0530137
Gunnar Mills57d9c502018-09-14 14:42:34 -0500138 /** @brief BMC network reset - resets network configuration for BMC. */
139 void reset() override;
Michael Tritz29f2fd62017-05-22 15:27:26 -0500140
Gunnar Mills57d9c502018-09-14 14:42:34 -0500141 /** @brief Path of Object. */
William A. Kennington III5b179382022-11-15 15:23:26 -0800142 sdbusplus::message::object_path objPath;
Ratan Gupta29b0e432017-05-25 12:51:40 +0530143
Gunnar Mills57d9c502018-09-14 14:42:34 -0500144 /** @brief pointer to system conf object. */
William A. Kennington III5b179382022-11-15 15:23:26 -0800145 std::unique_ptr<SystemConfiguration> systemConf = nullptr;
Ratan Guptaef85eb92017-06-15 08:57:54 +0530146
Gunnar Mills57d9c502018-09-14 14:42:34 -0500147 /** @brief pointer to dhcp conf object. */
William A. Kennington III5b179382022-11-15 15:23:26 -0800148 std::unique_ptr<dhcp::Configuration> dhcpConf = nullptr;
Ratan Guptad16f88c2017-07-11 17:47:57 +0530149
Gunnar Mills57d9c502018-09-14 14:42:34 -0500150 /** @brief Network Configuration directory. */
William A. Kennington III5b179382022-11-15 15:23:26 -0800151 std::filesystem::path confDir;
William A. Kennington III6ff633a2021-11-09 17:09:12 -0800152
William A. Kennington III80d29012022-11-12 02:31:40 -0800153 /** @brief Map of interface info for undiscovered interfaces */
William A. Kennington III2fb0c872022-11-15 19:35:39 -0800154 std::unordered_map<unsigned, AllIntfInfo> intfInfo;
William A. Kennington III80d29012022-11-12 02:31:40 -0800155
156 /** @brief Map of enabled interfaces */
157 std::unordered_map<unsigned, bool> systemdNetworkdEnabled;
158 sdbusplus::bus::match_t systemdNetworkdEnabledMatch;
159
William A. Kennington III6ff633a2021-11-09 17:09:12 -0800160 /** @brief List of hooks to execute during the next reload */
161 std::vector<fu2::unique_function<void()>> reloadPreHooks;
William A. Kennington IIIde4668a2022-11-17 16:02:30 -0800162 std::vector<fu2::unique_function<void()>> reloadPostHooks;
William A. Kennington III80d29012022-11-12 02:31:40 -0800163
164 /** @brief Handles the recipt of an adminstrative state string */
165 void handleAdminState(std::string_view state, unsigned ifidx);
William A. Kennington III0813a242022-11-12 18:07:11 -0800166
167 /** @brief Creates the interface in the maps */
William A. Kennington III2fb0c872022-11-15 19:35:39 -0800168 void createInterface(const AllIntfInfo& info, bool enabled);
Ratan Gupta05eb1092017-04-14 16:33:53 +0530169};
170
171} // namespace network
172} // namespace phosphor