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