Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 1 | #pragma once |
William A. Kennington III | 9a20a6e | 2022-10-05 13:41:12 -0700 | [diff] [blame] | 2 | #include "ipaddress.hpp" |
| 3 | #include "neighbor.hpp" |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 4 | #include "types.hpp" |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 5 | #include "xyz/openbmc_project/Network/IP/Create/server.hpp" |
William A. Kennington III | 0850579 | 2019-01-30 16:00:04 -0800 | [diff] [blame] | 6 | #include "xyz/openbmc_project/Network/Neighbor/CreateStatic/server.hpp" |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 7 | |
William A. Kennington III | d298f93 | 2022-10-17 14:31:38 -0700 | [diff] [blame] | 8 | #include <optional> |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 9 | #include <sdbusplus/bus.hpp> |
| 10 | #include <sdbusplus/server/object.hpp> |
William A. Kennington III | 9ede1b7 | 2022-11-21 01:59:28 -0800 | [diff] [blame] | 11 | #include <stdplus/pinned.hpp> |
William A. Kennington III | be3bd2f | 2022-10-11 14:11:27 -0700 | [diff] [blame] | 12 | #include <stdplus/zstring_view.hpp> |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 13 | #include <string> |
William A. Kennington III | 95530ec | 2022-08-19 01:44:39 -0700 | [diff] [blame] | 14 | #include <vector> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 15 | #include <xyz/openbmc_project/Collection/DeleteAll/server.hpp> |
| 16 | #include <xyz/openbmc_project/Network/EthernetInterface/server.hpp> |
| 17 | #include <xyz/openbmc_project/Network/MACAddress/server.hpp> |
William A. Kennington III | 09f3a4a | 2022-10-25 02:59:16 -0700 | [diff] [blame] | 18 | #include <xyz/openbmc_project/Network/VLAN/server.hpp> |
| 19 | #include <xyz/openbmc_project/Object/Delete/server.hpp> |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 20 | |
| 21 | namespace phosphor |
| 22 | { |
| 23 | namespace network |
| 24 | { |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 25 | |
Patrick Williams | c38b071 | 2022-07-22 19:26:54 -0500 | [diff] [blame] | 26 | using Ifaces = sdbusplus::server::object_t< |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 27 | sdbusplus::xyz::openbmc_project::Network::server::EthernetInterface, |
| 28 | sdbusplus::xyz::openbmc_project::Network::server::MACAddress, |
| 29 | sdbusplus::xyz::openbmc_project::Network::IP::server::Create, |
William A. Kennington III | 0850579 | 2019-01-30 16:00:04 -0800 | [diff] [blame] | 30 | sdbusplus::xyz::openbmc_project::Network::Neighbor::server::CreateStatic, |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 31 | sdbusplus::xyz::openbmc_project::Collection::server::DeleteAll>; |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 32 | |
William A. Kennington III | 09f3a4a | 2022-10-25 02:59:16 -0700 | [diff] [blame] | 33 | using VlanIfaces = sdbusplus::server::object_t< |
| 34 | sdbusplus::xyz::openbmc_project::Object::server::Delete, |
| 35 | sdbusplus::xyz::openbmc_project::Network::server::VLAN>; |
| 36 | |
| 37 | using VlanIntf = sdbusplus::xyz::openbmc_project::Network::server::VLAN; |
| 38 | |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 39 | using IP = sdbusplus::xyz::openbmc_project::Network::server::IP; |
Ratan Gupta | 87c1398 | 2017-06-15 09:27:27 +0530 | [diff] [blame] | 40 | |
| 41 | using EthernetInterfaceIntf = |
| 42 | sdbusplus::xyz::openbmc_project::Network::server::EthernetInterface; |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 43 | using MacAddressIntf = |
| 44 | sdbusplus::xyz::openbmc_project::Network::server::MACAddress; |
Ratan Gupta | 87c1398 | 2017-06-15 09:27:27 +0530 | [diff] [blame] | 45 | |
Ratan Gupta | 497c0c9 | 2017-08-22 19:15:59 +0530 | [diff] [blame] | 46 | using ServerList = std::vector<std::string>; |
raviteja-b | ce37956 | 2019-03-28 05:59:36 -0500 | [diff] [blame] | 47 | using ObjectPath = sdbusplus::message::object_path; |
Ratan Gupta | 497c0c9 | 2017-08-22 19:15:59 +0530 | [diff] [blame] | 48 | |
William A. Kennington III | 9a20a6e | 2022-10-05 13:41:12 -0700 | [diff] [blame] | 49 | class Manager; |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 50 | |
Ratan Gupta | 47722dc | 2017-05-26 18:32:23 +0530 | [diff] [blame] | 51 | class TestEthernetInterface; |
William A. Kennington III | 09f3a4a | 2022-10-25 02:59:16 -0700 | [diff] [blame] | 52 | class TestNetworkManager; |
Ratan Gupta | 5978dd1 | 2017-07-25 13:47:13 +0530 | [diff] [blame] | 53 | |
William A. Kennington III | 95530ec | 2022-08-19 01:44:39 -0700 | [diff] [blame] | 54 | namespace config |
| 55 | { |
| 56 | class Parser; |
| 57 | } |
William A. Kennington III | d298f93 | 2022-10-17 14:31:38 -0700 | [diff] [blame] | 58 | |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 59 | /** @class EthernetInterface |
| 60 | * @brief OpenBMC Ethernet Interface implementation. |
| 61 | * @details A concrete implementation for the |
| 62 | * xyz.openbmc_project.Network.EthernetInterface DBus API. |
| 63 | */ |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 64 | class EthernetInterface : public Ifaces |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 65 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 66 | public: |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 67 | EthernetInterface(EthernetInterface&&) = delete; |
| 68 | EthernetInterface& operator=(EthernetInterface&&) = delete; |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 69 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 70 | /** @brief Constructor to put object onto bus at a dbus path. |
| 71 | * @param[in] bus - Bus to attach to. |
William A. Kennington III | d298f93 | 2022-10-17 14:31:38 -0700 | [diff] [blame] | 72 | * @param[in] manager - parent object. |
| 73 | * @param[in] info - Interface information. |
| 74 | * @param[in] objRoot - Path to attach at. |
William A. Kennington III | a520a39 | 2022-08-08 12:17:34 -0700 | [diff] [blame] | 75 | * @param[in] config - The parsed configuation file. |
William A. Kennington III | 09f3a4a | 2022-10-25 02:59:16 -0700 | [diff] [blame] | 76 | * @param[in] vlan - The id of the vlan if configured |
William A. Kennington III | 80d2901 | 2022-11-12 02:31:40 -0800 | [diff] [blame] | 77 | * @param[in] enabled - Determine if systemd-networkd is managing this link |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 78 | */ |
William A. Kennington III | 9ede1b7 | 2022-11-21 01:59:28 -0800 | [diff] [blame] | 79 | EthernetInterface(stdplus::PinnedRef<sdbusplus::bus_t> bus, |
| 80 | stdplus::PinnedRef<Manager> manager, |
William A. Kennington III | 13d665c | 2022-11-15 20:34:40 -0800 | [diff] [blame] | 81 | const AllIntfInfo& info, std::string_view objRoot, |
William A. Kennington III | b645254 | 2022-11-15 18:09:12 -0800 | [diff] [blame] | 82 | const config::Parser& config, bool enabled); |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 83 | |
William A. Kennington III | 59e5b91 | 2022-11-02 02:49:46 -0700 | [diff] [blame] | 84 | /** @brief Network Manager object. */ |
William A. Kennington III | 9ede1b7 | 2022-11-21 01:59:28 -0800 | [diff] [blame] | 85 | stdplus::PinnedRef<Manager> manager; |
William A. Kennington III | 59e5b91 | 2022-11-02 02:49:46 -0700 | [diff] [blame] | 86 | |
| 87 | /** @brief Persistent map of IPAddress dbus objects and their names */ |
| 88 | std::unordered_map<IfAddr, std::unique_ptr<IPAddress>> addrs; |
| 89 | |
William A. Kennington III | 434a943 | 2022-11-04 18:38:46 -0700 | [diff] [blame] | 90 | /** @brief Persistent map of Neighbor dbus objects and their names */ |
| 91 | std::unordered_map<InAddrAny, std::unique_ptr<Neighbor>> staticNeighbors; |
| 92 | |
William A. Kennington III | d6f5340 | 2022-11-07 14:48:53 -0800 | [diff] [blame] | 93 | void addAddr(const AddressInfo& info); |
William A. Kennington III | bc2502c | 2022-11-07 16:31:54 -0800 | [diff] [blame] | 94 | void addStaticNeigh(const NeighborInfo& info); |
William A. Kennington III | d6f5340 | 2022-11-07 14:48:53 -0800 | [diff] [blame] | 95 | |
William A. Kennington III | d298f93 | 2022-10-17 14:31:38 -0700 | [diff] [blame] | 96 | /** @brief Updates the interface information based on new InterfaceInfo */ |
William A. Kennington III | d99e6db | 2022-11-15 20:39:45 -0800 | [diff] [blame] | 97 | void updateInfo(const InterfaceInfo& info, bool skipSignal = false); |
William A. Kennington III | d298f93 | 2022-10-17 14:31:38 -0700 | [diff] [blame] | 98 | |
Asmitha Karunanithi | 003b8b7 | 2022-01-06 04:17:59 -0600 | [diff] [blame] | 99 | /** @brief Function used to load the ntpservers |
| 100 | */ |
| 101 | void loadNTPServers(const config::Parser& config); |
| 102 | |
Manojkiran Eda | acd6dd5 | 2019-10-15 15:00:51 +0530 | [diff] [blame] | 103 | /** @brief Function used to load the nameservers. |
| 104 | */ |
William A. Kennington III | a520a39 | 2022-08-08 12:17:34 -0700 | [diff] [blame] | 105 | void loadNameServers(const config::Parser& config); |
Manojkiran Eda | acd6dd5 | 2019-10-15 15:00:51 +0530 | [diff] [blame] | 106 | |
Patrick Williams | 6aef769 | 2021-05-01 06:39:41 -0500 | [diff] [blame] | 107 | /** @brief Function to create ipAddress dbus object. |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 108 | * @param[in] addressType - Type of ip address. |
Patrick Williams | 6aef769 | 2021-05-01 06:39:41 -0500 | [diff] [blame] | 109 | * @param[in] ipAddress- IP address. |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 110 | * @param[in] prefixLength - Length of prefix. |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 111 | */ |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 112 | |
Patrick Williams | 6aef769 | 2021-05-01 06:39:41 -0500 | [diff] [blame] | 113 | ObjectPath ip(IP::Protocol addressType, std::string ipAddress, |
William A. Kennington III | e25f8b4 | 2022-10-11 14:43:28 -0700 | [diff] [blame] | 114 | uint8_t prefixLength, std::string) override; |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 115 | |
William A. Kennington III | 0850579 | 2019-01-30 16:00:04 -0800 | [diff] [blame] | 116 | /** @brief Function to create static neighbor dbus object. |
| 117 | * @param[in] ipAddress - IP address. |
| 118 | * @param[in] macAddress - Low level MAC address. |
| 119 | */ |
Patrick Williams | 6aef769 | 2021-05-01 06:39:41 -0500 | [diff] [blame] | 120 | ObjectPath neighbor(std::string ipAddress, std::string macAddress) override; |
William A. Kennington III | 0850579 | 2019-01-30 16:00:04 -0800 | [diff] [blame] | 121 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 122 | /** Set value of DHCPEnabled */ |
William A. Kennington III | 8060c0d | 2022-08-18 19:19:34 -0700 | [diff] [blame] | 123 | DHCPConf dhcpEnabled() const override; |
Patrick Williams | 6aef769 | 2021-05-01 06:39:41 -0500 | [diff] [blame] | 124 | DHCPConf dhcpEnabled(DHCPConf value) override; |
William A. Kennington III | 8060c0d | 2022-08-18 19:19:34 -0700 | [diff] [blame] | 125 | using EthernetInterfaceIntf::dhcp4; |
| 126 | bool dhcp4(bool value) override; |
| 127 | using EthernetInterfaceIntf::dhcp6; |
| 128 | bool dhcp6(bool value) override; |
Ratan Gupta | 87c1398 | 2017-06-15 09:27:27 +0530 | [diff] [blame] | 129 | |
William A. Kennington III | 59e5b91 | 2022-11-02 02:49:46 -0700 | [diff] [blame] | 130 | inline bool dhcpIsEnabled(in_addr) const |
| 131 | { |
| 132 | return dhcp4(); |
| 133 | } |
| 134 | inline bool dhcpIsEnabled(in6_addr) const |
| 135 | { |
| 136 | return dhcp6(); |
| 137 | } |
| 138 | inline bool dhcpIsEnabled(InAddrAny addr) const |
| 139 | { |
| 140 | return std::visit([&](auto v) { return dhcpIsEnabled(v); }, addr); |
| 141 | } |
| 142 | |
Tejas Patil | 2c0fc56 | 2021-08-03 19:13:46 +0530 | [diff] [blame] | 143 | /** Set size of MTU */ |
| 144 | size_t mtu(size_t value) override; |
| 145 | |
Johnathan Mantey | d0679f9 | 2019-10-29 16:20:28 -0700 | [diff] [blame] | 146 | /** Set value of NICEnabled */ |
Patrick Williams | 6aef769 | 2021-05-01 06:39:41 -0500 | [diff] [blame] | 147 | bool nicEnabled(bool value) override; |
Johnathan Mantey | d0679f9 | 2019-10-29 16:20:28 -0700 | [diff] [blame] | 148 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 149 | /** @brief sets the MAC address. |
| 150 | * @param[in] value - MAC address which needs to be set on the system. |
| 151 | * @returns macAddress of the interface or throws an error. |
| 152 | */ |
Patrick Williams | 6aef769 | 2021-05-01 06:39:41 -0500 | [diff] [blame] | 153 | std::string macAddress(std::string value) override; |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 154 | |
Johnathan Mantey | 5b023f5 | 2019-06-24 16:06:37 -0700 | [diff] [blame] | 155 | /** @brief check conf file for Router Advertisements |
| 156 | * |
| 157 | */ |
Patrick Williams | 6aef769 | 2021-05-01 06:39:41 -0500 | [diff] [blame] | 158 | bool ipv6AcceptRA(bool value) override; |
William A. Kennington III | 8060c0d | 2022-08-18 19:19:34 -0700 | [diff] [blame] | 159 | using EthernetInterfaceIntf::ipv6AcceptRA; |
Johnathan Mantey | 5b023f5 | 2019-06-24 16:06:37 -0700 | [diff] [blame] | 160 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 161 | /** @brief sets the NTP servers. |
| 162 | * @param[in] value - vector of NTP servers. |
| 163 | */ |
Patrick Williams | 6aef769 | 2021-05-01 06:39:41 -0500 | [diff] [blame] | 164 | ServerList ntpServers(ServerList value) override; |
Ratan Gupta | 497c0c9 | 2017-08-22 19:15:59 +0530 | [diff] [blame] | 165 | |
Asmitha Karunanithi | 003b8b7 | 2022-01-06 04:17:59 -0600 | [diff] [blame] | 166 | /** @brief sets the static NTP servers. |
| 167 | * @param[in] value - vector of NTP servers. |
| 168 | */ |
| 169 | ServerList staticNTPServers(ServerList value) override; |
| 170 | |
Manojkiran Eda | acd6dd5 | 2019-10-15 15:00:51 +0530 | [diff] [blame] | 171 | /** @brief sets the Static DNS/nameservers. |
| 172 | * @param[in] value - vector of DNS servers. |
| 173 | */ |
| 174 | |
| 175 | ServerList staticNameServers(ServerList value) override; |
| 176 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 177 | /** @brief create Vlan interface. |
| 178 | * @param[in] id- VLAN identifier. |
| 179 | */ |
William A. Kennington III | d298f93 | 2022-10-17 14:31:38 -0700 | [diff] [blame] | 180 | ObjectPath createVLAN(uint16_t id); |
Ratan Gupta | 5978dd1 | 2017-07-25 13:47:13 +0530 | [diff] [blame] | 181 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 182 | /** @brief write the network conf file with the in-memory objects. |
| 183 | */ |
| 184 | void writeConfigurationFile(); |
Ratan Gupta | 2b10653 | 2017-07-25 16:05:02 +0530 | [diff] [blame] | 185 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 186 | /** @brief delete all dbus objects. |
| 187 | */ |
| 188 | void deleteAll(); |
Ratan Gupta | e9c9b81 | 2017-09-22 17:15:37 +0530 | [diff] [blame] | 189 | |
Ravi Teja | a5a0944 | 2020-07-17 00:57:33 -0500 | [diff] [blame] | 190 | /** @brief set the default v4 gateway of the interface. |
| 191 | * @param[in] gateway - default v4 gateway of the interface. |
| 192 | */ |
| 193 | std::string defaultGateway(std::string gateway) override; |
| 194 | |
| 195 | /** @brief set the default v6 gateway of the interface. |
| 196 | * @param[in] gateway - default v6 gateway of the interface. |
| 197 | */ |
| 198 | std::string defaultGateway6(std::string gateway) override; |
| 199 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 200 | using EthernetInterfaceIntf::interfaceName; |
Johnathan Mantey | faa72e5 | 2020-01-08 10:38:58 -0800 | [diff] [blame] | 201 | using EthernetInterfaceIntf::linkUp; |
Tejas Patil | 2c0fc56 | 2021-08-03 19:13:46 +0530 | [diff] [blame] | 202 | using EthernetInterfaceIntf::mtu; |
Patrick Williams | 6aef769 | 2021-05-01 06:39:41 -0500 | [diff] [blame] | 203 | using EthernetInterfaceIntf::nicEnabled; |
| 204 | using MacAddressIntf::macAddress; |
Ratan Gupta | 5978dd1 | 2017-07-25 13:47:13 +0530 | [diff] [blame] | 205 | |
Ravi Teja | a5a0944 | 2020-07-17 00:57:33 -0500 | [diff] [blame] | 206 | using EthernetInterfaceIntf::defaultGateway; |
| 207 | using EthernetInterfaceIntf::defaultGateway6; |
Ratan Gupta | 6dec390f | 2017-08-20 15:28:12 +0530 | [diff] [blame] | 208 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 209 | protected: |
Asmitha Karunanithi | 003b8b7 | 2022-01-06 04:17:59 -0600 | [diff] [blame] | 210 | /** @brief get the NTP server list from the timsyncd dbus obj |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 211 | * |
| 212 | */ |
Asmitha Karunanithi | 003b8b7 | 2022-01-06 04:17:59 -0600 | [diff] [blame] | 213 | virtual ServerList getNTPServerFromTimeSyncd(); |
Ratan Gupta | 497c0c9 | 2017-08-22 19:15:59 +0530 | [diff] [blame] | 214 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 215 | /** @brief get the name server details from the network conf |
| 216 | * |
| 217 | */ |
Manojkiran Eda | acd6dd5 | 2019-10-15 15:00:51 +0530 | [diff] [blame] | 218 | virtual ServerList getNameServerFromResolvd(); |
Ratan Gupta | 6dec390f | 2017-08-20 15:28:12 +0530 | [diff] [blame] | 219 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 220 | /** @brief Persistent sdbusplus DBus bus connection. */ |
William A. Kennington III | 9ede1b7 | 2022-11-21 01:59:28 -0800 | [diff] [blame] | 221 | stdplus::PinnedRef<sdbusplus::bus_t> bus; |
Ratan Gupta | 82549cc | 2017-04-21 08:45:23 +0530 | [diff] [blame] | 222 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 223 | /** @brief Dbus object path */ |
| 224 | std::string objPath; |
Ratan Gupta | 47722dc | 2017-05-26 18:32:23 +0530 | [diff] [blame] | 225 | |
William A. Kennington III | 2e09d27 | 2022-10-14 17:15:00 -0700 | [diff] [blame] | 226 | /** @brief Interface index */ |
| 227 | unsigned ifIdx; |
| 228 | |
William A. Kennington III | 09f3a4a | 2022-10-25 02:59:16 -0700 | [diff] [blame] | 229 | struct VlanProperties : VlanIfaces |
| 230 | { |
| 231 | VlanProperties(sdbusplus::bus_t& bus, stdplus::const_zstring objPath, |
William A. Kennington III | 9ede1b7 | 2022-11-21 01:59:28 -0800 | [diff] [blame] | 232 | const InterfaceInfo& info, |
| 233 | stdplus::PinnedRef<EthernetInterface> eth); |
William A. Kennington III | 09f3a4a | 2022-10-25 02:59:16 -0700 | [diff] [blame] | 234 | void delete_() override; |
| 235 | unsigned parentIdx; |
William A. Kennington III | 9ede1b7 | 2022-11-21 01:59:28 -0800 | [diff] [blame] | 236 | stdplus::PinnedRef<EthernetInterface> eth; |
William A. Kennington III | 09f3a4a | 2022-10-25 02:59:16 -0700 | [diff] [blame] | 237 | }; |
| 238 | std::optional<VlanProperties> vlan; |
| 239 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 240 | friend class TestEthernetInterface; |
William A. Kennington III | 09f3a4a | 2022-10-25 02:59:16 -0700 | [diff] [blame] | 241 | friend class TestNetworkManager; |
Johnathan Mantey | 817012a | 2020-01-30 15:07:39 -0800 | [diff] [blame] | 242 | |
| 243 | private: |
William A. Kennington III | 9ede1b7 | 2022-11-21 01:59:28 -0800 | [diff] [blame] | 244 | EthernetInterface(stdplus::PinnedRef<sdbusplus::bus_t> bus, |
| 245 | stdplus::PinnedRef<Manager> manager, |
William A. Kennington III | 13d665c | 2022-11-15 20:34:40 -0800 | [diff] [blame] | 246 | const AllIntfInfo& info, std::string&& objPath, |
William A. Kennington III | b645254 | 2022-11-15 18:09:12 -0800 | [diff] [blame] | 247 | const config::Parser& config, bool enabled); |
William A. Kennington III | d298f93 | 2022-10-17 14:31:38 -0700 | [diff] [blame] | 248 | |
Johnathan Mantey | 817012a | 2020-01-30 15:07:39 -0800 | [diff] [blame] | 249 | /** @brief Determines if the address is manually assigned |
| 250 | * @param[in] origin - The origin entry of the IP::Address |
| 251 | * @returns true/false value if the address is static |
| 252 | */ |
| 253 | bool originIsManuallyAssigned(IP::AddressOrigin origin); |
Ratan Gupta | 8c83493 | 2017-04-14 16:30:24 +0530 | [diff] [blame] | 254 | }; |
| 255 | |
| 256 | } // namespace network |
| 257 | } // namespace phosphor |