blob: 0ea8f2b0cc1d08f601965b908d65ecc5b371c086 [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 III60903ee2023-06-02 15:17:49 -070013#include <stdplus/str/maps.hpp>
William A. Kennington IIIde70ccf2022-11-20 17:18:01 -080014#include <stdplus/zstring_view.hpp>
Patrick Williams89d734b2023-05-10 07:50:25 -050015#include <xyz/openbmc_project/Common/FactoryReset/server.hpp>
16
17#include <filesystem>
18#include <memory>
Ratan Gupta05eb1092017-04-14 16:33:53 +053019#include <string>
William A. Kennington IIIdd9ef812022-10-05 02:08:02 -070020#include <string_view>
Ratan Gupta05eb1092017-04-14 16:33:53 +053021#include <vector>
22
23namespace phosphor
24{
25namespace network
26{
27
William A. Kennington III5b179382022-11-15 15:23:26 -080028using ManagerIface = sdbusplus::server::object_t<
Michael Tritz29f2fd62017-05-22 15:27:26 -050029 sdbusplus::xyz::openbmc_project::Network::VLAN::server::Create,
30 sdbusplus::xyz::openbmc_project::Common::server::FactoryReset>;
Ratan Gupta05eb1092017-04-14 16:33:53 +053031
William A. Kennington IIIde70ccf2022-11-20 17:18:01 -080032class DelayedExecutor
33{
34 public:
35 virtual ~DelayedExecutor() = default;
36
37 virtual void schedule() = 0;
38 virtual void setCallback(fu2::unique_function<void()>&& cb) = 0;
39};
40
Ratan Gupta05eb1092017-04-14 16:33:53 +053041/** @class Manager
42 * @brief OpenBMC network manager implementation.
43 */
William A. Kennington III5b179382022-11-15 15:23:26 -080044class Manager : public ManagerIface
Ratan Gupta05eb1092017-04-14 16:33:53 +053045{
Gunnar Mills57d9c502018-09-14 14:42:34 -050046 public:
Gunnar Mills57d9c502018-09-14 14:42:34 -050047 Manager(Manager&&) = delete;
48 Manager& operator=(Manager&&) = delete;
Ratan Gupta05eb1092017-04-14 16:33:53 +053049
Gunnar Mills57d9c502018-09-14 14:42:34 -050050 /** @brief Constructor to put object onto bus at a dbus path.
51 * @param[in] bus - Bus to attach to.
William A. Kennington IIIde70ccf2022-11-20 17:18:01 -080052 * @param[in] reload - The executor for reloading configs
Gunnar Mills57d9c502018-09-14 14:42:34 -050053 * @param[in] objPath - Path to attach at.
William A. Kennington IIIbe3bd2f2022-10-11 14:11:27 -070054 * @param[in] confDir - Network Configuration directory path.
Gunnar Mills57d9c502018-09-14 14:42:34 -050055 */
William A. Kennington III9ede1b72022-11-21 01:59:28 -080056 Manager(stdplus::PinnedRef<sdbusplus::bus_t> bus, DelayedExecutor& reload,
William A. Kennington IIIde70ccf2022-11-20 17:18:01 -080057 stdplus::zstring_view objPath,
William A. Kennington III5b179382022-11-15 15:23:26 -080058 const std::filesystem::path& confDir);
Ratan Gupta05eb1092017-04-14 16:33:53 +053059
William A. Kennington IIIdd9ef812022-10-05 02:08:02 -070060 ObjectPath vlan(std::string interfaceName, uint32_t id) override;
Ratan Gupta05eb1092017-04-14 16:33:53 +053061
Gunnar Mills57d9c502018-09-14 14:42:34 -050062 /** @brief write the network conf file with the in-memory objects.
63 */
64 void writeToConfigurationFile();
Ratan Gupta4f1c18b2017-05-25 12:59:35 +053065
William A. Kennington III80d29012022-11-12 02:31:40 -080066 /** @brief Adds a single interface to the interface map */
William A. Kennington III0813a242022-11-12 18:07:11 -080067 void addInterface(const InterfaceInfo& info);
68 void removeInterface(const InterfaceInfo& info);
William A. Kennington III80d29012022-11-12 02:31:40 -080069
William A. Kennington IIIed5ff472022-11-12 16:24:02 -080070 /** @brief Add / remove an address to the interface or queue */
71 void addAddress(const AddressInfo& info);
72 void removeAddress(const AddressInfo& info);
73
74 /** @brief Add / remove a neighbor to the interface or queue */
75 void addNeighbor(const NeighborInfo& info);
76 void removeNeighbor(const NeighborInfo& info);
77
78 /** @brief Add / remove default gateway for interface */
William A. Kennington III9b2a20d2023-06-17 14:05:48 -070079 void addDefGw(unsigned ifidx, stdplus::InAnyAddr addr);
80 void removeDefGw(unsigned ifidx, stdplus::InAnyAddr addr);
William A. Kennington IIIed5ff472022-11-12 16:24:02 -080081
Gunnar Mills57d9c502018-09-14 14:42:34 -050082 /** @brief gets the network conf directory.
83 */
William A. Kennington III5b179382022-11-15 15:23:26 -080084 inline const auto& getConfDir() const
Gunnar Mills57d9c502018-09-14 14:42:34 -050085 {
86 return confDir;
87 }
Ratan Gupta255d5142017-08-10 09:02:08 +053088
Gunnar Mills57d9c502018-09-14 14:42:34 -050089 /** @brief gets the system conf object.
90 *
91 */
William A. Kennington III5b179382022-11-15 15:23:26 -080092 inline auto& getSystemConf()
Gunnar Mills57d9c502018-09-14 14:42:34 -050093 {
William A. Kennington III5b179382022-11-15 15:23:26 -080094 return *systemConf;
Gunnar Mills57d9c502018-09-14 14:42:34 -050095 }
Ratan Gupta05eb1092017-04-14 16:33:53 +053096
Gunnar Mills57d9c502018-09-14 14:42:34 -050097 /** @brief gets the dhcp conf object.
98 *
99 */
William A. Kennington III5b179382022-11-15 15:23:26 -0800100 inline auto& getDHCPConf()
Gunnar Mills57d9c502018-09-14 14:42:34 -0500101 {
William A. Kennington III5b179382022-11-15 15:23:26 -0800102 return *dhcpConf;
Gunnar Mills57d9c502018-09-14 14:42:34 -0500103 }
Ratan Gupta2b106532017-07-25 16:05:02 +0530104
William A. Kennington IIIc7cf25f2021-11-09 16:16:59 -0800105 /** @brief Arms a timer to tell systemd-network to reload all of the network
106 * configurations
William A. Kennington III56ecc782021-10-07 18:44:50 -0700107 */
William A. Kennington IIIde70ccf2022-11-20 17:18:01 -0800108 inline void reloadConfigs()
109 {
110 reload.schedule();
111 }
William A. Kennington IIIc7cf25f2021-11-09 16:16:59 -0800112
William A. Kennington III09f3a4a2022-10-25 02:59:16 -0700113 /** @brief Persistent map of EthernetInterface dbus objects and their names
Patrick Ventured94d23e2019-01-07 13:05:23 -0800114 */
William A. Kennington III60903ee2023-06-02 15:17:49 -0700115 stdplus::string_umap<std::unique_ptr<EthernetInterface>> interfaces;
William A. Kennington III67b09da2022-10-31 14:09:53 -0700116 std::unordered_map<unsigned, EthernetInterface*> interfacesByIdx;
William A. Kennington III93f5c6d2022-11-17 16:23:44 -0800117 std::unordered_set<unsigned> ignoredIntf;
Patrick Ventured94d23e2019-01-07 13:05:23 -0800118
William A. Kennington III6ff633a2021-11-09 17:09:12 -0800119 /** @brief Adds a hook that runs immediately prior to reloading
120 *
121 * @param[in] hook - The hook to execute before reloading
122 */
123 inline void addReloadPreHook(fu2::unique_function<void()>&& hook)
124 {
125 reloadPreHooks.push_back(std::move(hook));
126 }
William A. Kennington IIIde4668a2022-11-17 16:02:30 -0800127 inline void addReloadPostHook(fu2::unique_function<void()>&& hook)
128 {
129 reloadPostHooks.push_back(std::move(hook));
130 }
William A. Kennington III6ff633a2021-11-09 17:09:12 -0800131
Ratan Gupta35297172018-11-28 18:40:16 +0530132 protected:
William A. Kennington IIIde70ccf2022-11-20 17:18:01 -0800133 /** @brief Handle to the object used to trigger reloads of networkd. */
134 DelayedExecutor& reload;
135
Gunnar Mills57d9c502018-09-14 14:42:34 -0500136 /** @brief Persistent sdbusplus DBus bus connection. */
William A. Kennington III9ede1b72022-11-21 01:59:28 -0800137 stdplus::PinnedRef<sdbusplus::bus_t> bus;
Ratan Gupta29b0e432017-05-25 12:51:40 +0530138
Gunnar Mills57d9c502018-09-14 14:42:34 -0500139 /** @brief BMC network reset - resets network configuration for BMC. */
140 void reset() override;
Michael Tritz29f2fd62017-05-22 15:27:26 -0500141
Gunnar Mills57d9c502018-09-14 14:42:34 -0500142 /** @brief Path of Object. */
William A. Kennington III5b179382022-11-15 15:23:26 -0800143 sdbusplus::message::object_path objPath;
Ratan Gupta29b0e432017-05-25 12:51:40 +0530144
Gunnar Mills57d9c502018-09-14 14:42:34 -0500145 /** @brief pointer to system conf object. */
William A. Kennington III5b179382022-11-15 15:23:26 -0800146 std::unique_ptr<SystemConfiguration> systemConf = nullptr;
Ratan Guptaef85eb92017-06-15 08:57:54 +0530147
Gunnar Mills57d9c502018-09-14 14:42:34 -0500148 /** @brief pointer to dhcp conf object. */
William A. Kennington III5b179382022-11-15 15:23:26 -0800149 std::unique_ptr<dhcp::Configuration> dhcpConf = nullptr;
Ratan Guptad16f88c2017-07-11 17:47:57 +0530150
Gunnar Mills57d9c502018-09-14 14:42:34 -0500151 /** @brief Network Configuration directory. */
William A. Kennington III5b179382022-11-15 15:23:26 -0800152 std::filesystem::path confDir;
William A. Kennington III6ff633a2021-11-09 17:09:12 -0800153
William A. Kennington III80d29012022-11-12 02:31:40 -0800154 /** @brief Map of interface info for undiscovered interfaces */
William A. Kennington III2fb0c872022-11-15 19:35:39 -0800155 std::unordered_map<unsigned, AllIntfInfo> intfInfo;
William A. Kennington III80d29012022-11-12 02:31:40 -0800156
157 /** @brief Map of enabled interfaces */
158 std::unordered_map<unsigned, bool> systemdNetworkdEnabled;
159 sdbusplus::bus::match_t systemdNetworkdEnabledMatch;
160
William A. Kennington III6ff633a2021-11-09 17:09:12 -0800161 /** @brief List of hooks to execute during the next reload */
162 std::vector<fu2::unique_function<void()>> reloadPreHooks;
William A. Kennington IIIde4668a2022-11-17 16:02:30 -0800163 std::vector<fu2::unique_function<void()>> reloadPostHooks;
William A. Kennington III80d29012022-11-12 02:31:40 -0800164
165 /** @brief Handles the recipt of an adminstrative state string */
166 void handleAdminState(std::string_view state, unsigned ifidx);
William A. Kennington III0813a242022-11-12 18:07:11 -0800167
168 /** @brief Creates the interface in the maps */
William A. Kennington III2fb0c872022-11-15 19:35:39 -0800169 void createInterface(const AllIntfInfo& info, bool enabled);
Ratan Gupta05eb1092017-04-14 16:33:53 +0530170};
171
172} // namespace network
173} // namespace phosphor