blob: c063777bb639d0d896b0f55933734696bcdc5040 [file] [log] [blame]
Ratan Gupta8c834932017-04-14 16:30:24 +05301#pragma once
2
Ratan Gupta82549cc2017-04-21 08:45:23 +05303#include "types.hpp"
Ratan Gupta8804feb2017-05-25 10:49:57 +05304#include "util.hpp"
Ratan Gupta82549cc2017-04-21 08:45:23 +05305#include "xyz/openbmc_project/Network/IP/Create/server.hpp"
William A. Kennington III08505792019-01-30 16:00:04 -08006#include "xyz/openbmc_project/Network/Neighbor/CreateStatic/server.hpp"
Ratan Gupta8c834932017-04-14 16:30:24 +05307
Manojkiran Edaa879baa2020-06-13 14:39:08 +05308#include <filesystem>
Ratan Gupta8c834932017-04-14 16:30:24 +05309#include <sdbusplus/bus.hpp>
10#include <sdbusplus/server/object.hpp>
Ratan Gupta8c834932017-04-14 16:30:24 +053011#include <string>
Patrick Venture189d44e2018-07-09 12:30:59 -070012#include <xyz/openbmc_project/Collection/DeleteAll/server.hpp>
13#include <xyz/openbmc_project/Network/EthernetInterface/server.hpp>
14#include <xyz/openbmc_project/Network/MACAddress/server.hpp>
Ratan Gupta8c834932017-04-14 16:30:24 +053015
Patrick Williams6aef7692021-05-01 06:39:41 -050016#ifndef SDBUSPP_NEW_CAMELCASE
17#define dhcpEnabled dHCPEnabled
18#define ip iP
19#define ipAddress iPAddress
20#define ipv6AcceptRA iPv6AcceptRA
21#define macAddress mACAddress
22#define nicEnabled nICEnabled
23#define ntpServers nTPServers
24#endif
25
Ratan Gupta8c834932017-04-14 16:30:24 +053026namespace phosphor
27{
28namespace network
29{
Ratan Gupta8c834932017-04-14 16:30:24 +053030
Gunnar Mills57d9c502018-09-14 14:42:34 -050031using Ifaces = sdbusplus::server::object::object<
32 sdbusplus::xyz::openbmc_project::Network::server::EthernetInterface,
33 sdbusplus::xyz::openbmc_project::Network::server::MACAddress,
34 sdbusplus::xyz::openbmc_project::Network::IP::server::Create,
William A. Kennington III08505792019-01-30 16:00:04 -080035 sdbusplus::xyz::openbmc_project::Network::Neighbor::server::CreateStatic,
Gunnar Mills57d9c502018-09-14 14:42:34 -050036 sdbusplus::xyz::openbmc_project::Collection::server::DeleteAll>;
Ratan Gupta8c834932017-04-14 16:30:24 +053037
Ratan Gupta82549cc2017-04-21 08:45:23 +053038using IP = sdbusplus::xyz::openbmc_project::Network::server::IP;
Ratan Gupta87c13982017-06-15 09:27:27 +053039
40using EthernetInterfaceIntf =
41 sdbusplus::xyz::openbmc_project::Network::server::EthernetInterface;
Ratan Guptabd303b12017-08-18 17:10:07 +053042using MacAddressIntf =
43 sdbusplus::xyz::openbmc_project::Network::server::MACAddress;
Ratan Gupta87c13982017-06-15 09:27:27 +053044
Ratan Gupta497c0c92017-08-22 19:15:59 +053045using ServerList = std::vector<std::string>;
raviteja-bce379562019-03-28 05:59:36 -050046using ObjectPath = sdbusplus::message::object_path;
Ratan Gupta497c0c92017-08-22 19:15:59 +053047
Manojkiran Edaa879baa2020-06-13 14:39:08 +053048namespace fs = std::filesystem;
Ratan Gupta5978dd12017-07-25 13:47:13 +053049
Ratan Gupta4f1c18b2017-05-25 12:59:35 +053050class Manager; // forward declaration of network manager.
Ratan Gupta8c834932017-04-14 16:30:24 +053051
Ratan Gupta47722dc2017-05-26 18:32:23 +053052class TestEthernetInterface;
53
Ratan Gupta5978dd12017-07-25 13:47:13 +053054class VlanInterface;
55
56class IPAddress;
57
William A. Kennington III08505792019-01-30 16:00:04 -080058class Neighbor;
59
Ratan Gupta8c834932017-04-14 16:30:24 +053060using LinkSpeed = uint16_t;
61using DuplexMode = uint8_t;
62using Autoneg = uint8_t;
Johnathan Manteyfaa72e52020-01-08 10:38:58 -080063using LinkUp = bool;
Johnathan Manteyd0679f92019-10-29 16:20:28 -070064using NICEnabled = bool;
Ratan Gupta5978dd12017-07-25 13:47:13 +053065using VlanId = uint32_t;
66using InterfaceName = std::string;
Johnathan Manteyd0679f92019-10-29 16:20:28 -070067using InterfaceInfo =
68 std::tuple<LinkSpeed, DuplexMode, Autoneg, LinkUp, NICEnabled>;
Ratan Gupta29b0e432017-05-25 12:51:40 +053069using AddressMap = std::map<std::string, std::shared_ptr<IPAddress>>;
William A. Kennington III08505792019-01-30 16:00:04 -080070using NeighborMap = std::map<std::string, std::shared_ptr<Neighbor>>;
Gunnar Mills57d9c502018-09-14 14:42:34 -050071using VlanInterfaceMap =
72 std::map<InterfaceName, std::unique_ptr<VlanInterface>>;
Ratan Gupta8c834932017-04-14 16:30:24 +053073
74/** @class EthernetInterface
75 * @brief OpenBMC Ethernet Interface implementation.
76 * @details A concrete implementation for the
77 * xyz.openbmc_project.Network.EthernetInterface DBus API.
78 */
Ratan Gupta82549cc2017-04-21 08:45:23 +053079class EthernetInterface : public Ifaces
Ratan Gupta8c834932017-04-14 16:30:24 +053080{
Gunnar Mills57d9c502018-09-14 14:42:34 -050081 public:
82 EthernetInterface() = delete;
83 EthernetInterface(const EthernetInterface&) = delete;
84 EthernetInterface& operator=(const EthernetInterface&) = delete;
85 EthernetInterface(EthernetInterface&&) = delete;
86 EthernetInterface& operator=(EthernetInterface&&) = delete;
87 virtual ~EthernetInterface() = default;
Ratan Gupta8c834932017-04-14 16:30:24 +053088
Gunnar Mills57d9c502018-09-14 14:42:34 -050089 /** @brief Constructor to put object onto bus at a dbus path.
90 * @param[in] bus - Bus to attach to.
91 * @param[in] objPath - Path to attach at.
92 * @param[in] dhcpEnabled - is dhcp enabled(true/false).
93 * @param[in] parent - parent object.
94 * @param[in] emitSignal - true if the object added signal needs to be
95 * send.
William A. Kennington III26275a32021-07-13 20:32:42 -070096 * @param[in] enabled - Override the lookup of nicEnabled
Gunnar Mills57d9c502018-09-14 14:42:34 -050097 */
98 EthernetInterface(sdbusplus::bus::bus& bus, const std::string& objPath,
Johnathan Mantey817012a2020-01-30 15:07:39 -080099 DHCPConf dhcpEnabled, Manager& parent,
William A. Kennington III26275a32021-07-13 20:32:42 -0700100 bool emitSignal = true,
101 std::optional<bool> enabled = std::nullopt);
Ratan Gupta82549cc2017-04-21 08:45:23 +0530102
Manojkiran Edaacd6dd52019-10-15 15:00:51 +0530103 /** @brief Function used to load the nameservers.
104 */
105 virtual void loadNameServers();
106
Patrick Williams6aef7692021-05-01 06:39:41 -0500107 /** @brief Function to create ipAddress dbus object.
Gunnar Mills57d9c502018-09-14 14:42:34 -0500108 * @param[in] addressType - Type of ip address.
Patrick Williams6aef7692021-05-01 06:39:41 -0500109 * @param[in] ipAddress- IP address.
Gunnar Mills57d9c502018-09-14 14:42:34 -0500110 * @param[in] prefixLength - Length of prefix.
111 * @param[in] gateway - Gateway ip address.
112 */
Ratan Gupta82549cc2017-04-21 08:45:23 +0530113
Patrick Williams6aef7692021-05-01 06:39:41 -0500114 ObjectPath ip(IP::Protocol addressType, std::string ipAddress,
raviteja-bce379562019-03-28 05:59:36 -0500115 uint8_t prefixLength, std::string gateway) override;
Ratan Gupta8c834932017-04-14 16:30:24 +0530116
William A. Kennington III08505792019-01-30 16:00:04 -0800117 /** @brief Function to create static neighbor dbus object.
118 * @param[in] ipAddress - IP address.
119 * @param[in] macAddress - Low level MAC address.
120 */
Patrick Williams6aef7692021-05-01 06:39:41 -0500121 ObjectPath neighbor(std::string ipAddress, std::string macAddress) override;
William A. Kennington III08505792019-01-30 16:00:04 -0800122
Patrick Williams6aef7692021-05-01 06:39:41 -0500123 /* @brief delete the dbus object of the given ipAddress.
124 * @param[in] ipAddress - IP address.
Gunnar Mills57d9c502018-09-14 14:42:34 -0500125 */
Patrick Williams6aef7692021-05-01 06:39:41 -0500126 void deleteObject(const std::string& ipAddress);
Ratan Gupta8c834932017-04-14 16:30:24 +0530127
Patrick Williams6aef7692021-05-01 06:39:41 -0500128 /* @brief delete the dbus object of the given ipAddress.
129 * @param[in] ipAddress - IP address.
William A. Kennington III08505792019-01-30 16:00:04 -0800130 */
131 void deleteStaticNeighborObject(const std::string& ipAddress);
132
Gunnar Mills57d9c502018-09-14 14:42:34 -0500133 /* @brief delete the vlan dbus object of the given interface.
134 * Also deletes the device file and the network file.
135 * @param[in] interface - VLAN Interface.
136 */
137 void deleteVLANObject(const std::string& interface);
Ratan Guptabc886292017-07-25 18:29:57 +0530138
Gunnar Mills57d9c502018-09-14 14:42:34 -0500139 /* @brief creates the dbus object(IPaddres) given in the address list.
140 * @param[in] addrs - address list for which dbus objects needs
141 * to create.
142 */
143 void createIPAddressObjects();
Ratan Gupta29b0e432017-05-25 12:51:40 +0530144
William A. Kennington III08505792019-01-30 16:00:04 -0800145 /* @brief creates the dbus object(Neighbor) given in the neighbor list.
146 */
147 void createStaticNeighborObjects();
148
William A. Kennington IIId7946a72019-04-19 14:24:09 -0700149 /* @brief Gets the index of the interface on the system
150 */
151 unsigned ifIndex() const;
152
Gunnar Mills57d9c502018-09-14 14:42:34 -0500153 /* @brief Gets all the ip addresses.
Patrick Williams6aef7692021-05-01 06:39:41 -0500154 * @returns the list of ipAddress.
Gunnar Mills57d9c502018-09-14 14:42:34 -0500155 */
156 const AddressMap& getAddresses() const
157 {
158 return addrs;
159 }
Ratan Gupta8c834932017-04-14 16:30:24 +0530160
William A. Kennington III08505792019-01-30 16:00:04 -0800161 /* @brief Gets all the static neighbor entries.
162 * @returns Static neighbor map.
163 */
164 const NeighborMap& getStaticNeighbors() const
165 {
166 return staticNeighbors;
167 }
168
Gunnar Mills57d9c502018-09-14 14:42:34 -0500169 /** Set value of DHCPEnabled */
Patrick Williams6aef7692021-05-01 06:39:41 -0500170 DHCPConf dhcpEnabled(DHCPConf value) override;
Johnathan Mantey817012a2020-01-30 15:07:39 -0800171
172 /** @brief Selectively disables DHCP
173 * @param[in] protocol - The IPv4 or IPv6 protocol to return to static
174 * addressing mode
175 */
176 void disableDHCP(IP::Protocol protocol);
Ratan Gupta87c13982017-06-15 09:27:27 +0530177
Johnathan Manteyfaa72e52020-01-08 10:38:58 -0800178 /** Retrieve Link State */
179 bool linkUp() const override;
180
Johnathan Manteyd0679f92019-10-29 16:20:28 -0700181 /** Set value of NICEnabled */
Patrick Williams6aef7692021-05-01 06:39:41 -0500182 bool nicEnabled(bool value) override;
Johnathan Manteyd0679f92019-10-29 16:20:28 -0700183
Gunnar Mills57d9c502018-09-14 14:42:34 -0500184 /** @brief sets the MAC address.
185 * @param[in] value - MAC address which needs to be set on the system.
186 * @returns macAddress of the interface or throws an error.
187 */
Patrick Williams6aef7692021-05-01 06:39:41 -0500188 std::string macAddress(std::string value) override;
Ratan Guptabd303b12017-08-18 17:10:07 +0530189
Johnathan Mantey5b023f52019-06-24 16:06:37 -0700190 /** @brief get the IPv6AcceptRA flag from the network configuration file
191 *
192 */
193 bool getIPv6AcceptRAFromConf();
194
195 /** @brief check conf file for Router Advertisements
196 *
197 */
Patrick Williams6aef7692021-05-01 06:39:41 -0500198 bool ipv6AcceptRA(bool value) override;
Johnathan Mantey5b023f52019-06-24 16:06:37 -0700199
Gunnar Mills57d9c502018-09-14 14:42:34 -0500200 /** @brief sets the NTP servers.
201 * @param[in] value - vector of NTP servers.
202 */
Patrick Williams6aef7692021-05-01 06:39:41 -0500203 ServerList ntpServers(ServerList value) override;
Ratan Gupta497c0c92017-08-22 19:15:59 +0530204
Gunnar Mills57d9c502018-09-14 14:42:34 -0500205 /** @brief sets the DNS/nameservers.
206 * @param[in] value - vector of DNS servers.
207 */
208 ServerList nameservers(ServerList value) override;
Ratan Gupta6dec3902017-08-20 15:28:12 +0530209
Manojkiran Edaacd6dd52019-10-15 15:00:51 +0530210 /** @brief sets the Static DNS/nameservers.
211 * @param[in] value - vector of DNS servers.
212 */
213
214 ServerList staticNameServers(ServerList value) override;
215
Gunnar Mills57d9c502018-09-14 14:42:34 -0500216 /** @brief create Vlan interface.
217 * @param[in] id- VLAN identifier.
218 */
William A. Kennington IIIf4b4ff82019-04-09 19:06:52 -0700219 ObjectPath createVLAN(VlanId id);
Ratan Gupta5978dd12017-07-25 13:47:13 +0530220
Gunnar Mills57d9c502018-09-14 14:42:34 -0500221 /** @brief load the vlan info from the system
222 * and creates the ip address dbus objects.
223 * @param[in] vlanID- VLAN identifier.
224 */
225 void loadVLAN(VlanId vlanID);
Ratan Gupta92bc2fe2017-07-26 22:40:21 +0530226
Gunnar Mills57d9c502018-09-14 14:42:34 -0500227 /** @brief write the network conf file with the in-memory objects.
228 */
229 void writeConfigurationFile();
Ratan Gupta2b106532017-07-25 16:05:02 +0530230
Gunnar Mills57d9c502018-09-14 14:42:34 -0500231 /** @brief delete all dbus objects.
232 */
233 void deleteAll();
Ratan Guptae9c9b812017-09-22 17:15:37 +0530234
Ravi Tejaa5a09442020-07-17 00:57:33 -0500235 /** @brief set the default v4 gateway of the interface.
236 * @param[in] gateway - default v4 gateway of the interface.
237 */
238 std::string defaultGateway(std::string gateway) override;
239
240 /** @brief set the default v6 gateway of the interface.
241 * @param[in] gateway - default v6 gateway of the interface.
242 */
243 std::string defaultGateway6(std::string gateway) override;
244
Patrick Williams6aef7692021-05-01 06:39:41 -0500245 using EthernetInterfaceIntf::dhcpEnabled;
Gunnar Mills57d9c502018-09-14 14:42:34 -0500246 using EthernetInterfaceIntf::interfaceName;
Johnathan Manteyfaa72e52020-01-08 10:38:58 -0800247 using EthernetInterfaceIntf::linkUp;
Patrick Williams6aef7692021-05-01 06:39:41 -0500248 using EthernetInterfaceIntf::nicEnabled;
249 using MacAddressIntf::macAddress;
Ratan Gupta5978dd12017-07-25 13:47:13 +0530250
Ravi Tejaa5a09442020-07-17 00:57:33 -0500251 using EthernetInterfaceIntf::defaultGateway;
252 using EthernetInterfaceIntf::defaultGateway6;
Gunnar Mills57d9c502018-09-14 14:42:34 -0500253 /** @brief Absolute path of the resolv conf file */
254 static constexpr auto resolvConfFile = "/etc/resolv.conf";
Ratan Gupta6dec3902017-08-20 15:28:12 +0530255
Gunnar Mills57d9c502018-09-14 14:42:34 -0500256 protected:
257 /** @brief get the info of the ethernet interface.
258 * @return tuple having the link speed,autonegotiation,duplexmode .
259 */
260 InterfaceInfo getInterfaceInfo() const;
Ratan Gupta8c834932017-04-14 16:30:24 +0530261
Gunnar Mills57d9c502018-09-14 14:42:34 -0500262 /* @brief delete the vlan interface from system.
263 * @param[in] interface - vlan Interface.
264 */
265 void deleteVLANFromSystem(const std::string& interface);
Ratan Guptae9c9b812017-09-22 17:15:37 +0530266
Gunnar Mills57d9c502018-09-14 14:42:34 -0500267 /** @brief get the mac address of the interface.
268 * @param[in] interfaceName - Network interface name.
269 * @return macaddress on success
270 */
Ratan Gupta8c834932017-04-14 16:30:24 +0530271
Gunnar Mills57d9c502018-09-14 14:42:34 -0500272 std::string getMACAddress(const std::string& interfaceName) const;
Ratan Gupta8c834932017-04-14 16:30:24 +0530273
Gunnar Mills57d9c502018-09-14 14:42:34 -0500274 /** @brief construct the ip address dbus object path.
275 * @param[in] addressType - Type of ip address.
Patrick Williams6aef7692021-05-01 06:39:41 -0500276 * @param[in] ipAddress - IP address.
Gunnar Mills57d9c502018-09-14 14:42:34 -0500277 * @param[in] prefixLength - Length of prefix.
278 * @param[in] gateway - Gateway address.
Lei YU34027572021-08-11 15:23:52 +0800279 * @param[in] origin - The origin entry of the IP::Address
Ratan Gupta65e5abe2017-05-23 13:20:44 +0530280
Gunnar Mills57d9c502018-09-14 14:42:34 -0500281 * @return path of the address object.
282 */
Ratan Gupta82549cc2017-04-21 08:45:23 +0530283
Gunnar Mills57d9c502018-09-14 14:42:34 -0500284 std::string generateObjectPath(IP::Protocol addressType,
Patrick Williams6aef7692021-05-01 06:39:41 -0500285 const std::string& ipAddress,
Gunnar Mills57d9c502018-09-14 14:42:34 -0500286 uint8_t prefixLength,
Lei YU34027572021-08-11 15:23:52 +0800287 const std::string& gateway,
288 IP::AddressOrigin origin) const;
Ratan Gupta82549cc2017-04-21 08:45:23 +0530289
William A. Kennington III08505792019-01-30 16:00:04 -0800290 std::string
Patrick Williams6aef7692021-05-01 06:39:41 -0500291 generateStaticNeighborObjectPath(const std::string& ipAddress,
292 const std::string& macAddress) const;
William A. Kennington III08505792019-01-30 16:00:04 -0800293
Patrick Williams6aef7692021-05-01 06:39:41 -0500294 /** @brief generates the id by doing hash of ipAddress,
Gunnar Mills57d9c502018-09-14 14:42:34 -0500295 * prefixlength and the gateway.
Patrick Williams6aef7692021-05-01 06:39:41 -0500296 * @param[in] ipAddress - IP address.
Gunnar Mills57d9c502018-09-14 14:42:34 -0500297 * @param[in] prefixLength - Length of prefix.
298 * @param[in] gateway - Gateway address.
Lei YU34027572021-08-11 15:23:52 +0800299 * @param[in] origin - The string of the address origin
Gunnar Mills57d9c502018-09-14 14:42:34 -0500300 * @return hash string.
301 */
Ratan Gupta82549cc2017-04-21 08:45:23 +0530302
Patrick Williams6aef7692021-05-01 06:39:41 -0500303 static std::string generateId(const std::string& ipAddress,
Gunnar Mills57d9c502018-09-14 14:42:34 -0500304 uint8_t prefixLength,
Lei YU34027572021-08-11 15:23:52 +0800305 const std::string& gateway,
306 const std::string& origin);
Ratan Gupta82549cc2017-04-21 08:45:23 +0530307
Patrick Williams6aef7692021-05-01 06:39:41 -0500308 /** @brief generates the id by doing hash of ipAddress
William A. Kennington III08505792019-01-30 16:00:04 -0800309 * and the mac address.
Patrick Williams6aef7692021-05-01 06:39:41 -0500310 * @param[in] ipAddress - IP address.
311 * @param[in] macAddress - Gateway address.
William A. Kennington III08505792019-01-30 16:00:04 -0800312 * @return hash string.
313 */
Patrick Williams6aef7692021-05-01 06:39:41 -0500314 static std::string generateNeighborId(const std::string& ipAddress,
315 const std::string& macAddress);
William A. Kennington III08505792019-01-30 16:00:04 -0800316
Gunnar Mills57d9c502018-09-14 14:42:34 -0500317 /** @brief write the dhcp section **/
318 void writeDHCPSection(std::fstream& stream);
Ratan Gupta2b106532017-07-25 16:05:02 +0530319
Gunnar Mills57d9c502018-09-14 14:42:34 -0500320 /** @brief get the NTP server list from the network conf
321 *
322 */
323 ServerList getNTPServersFromConf();
Ratan Gupta497c0c92017-08-22 19:15:59 +0530324
Gunnar Mills57d9c502018-09-14 14:42:34 -0500325 /** @brief get the name server details from the network conf
326 *
327 */
Manojkiran Edaacd6dd52019-10-15 15:00:51 +0530328 virtual ServerList getNameServerFromResolvd();
329 ServerList getstaticNameServerFromConf();
Ratan Gupta6dec3902017-08-20 15:28:12 +0530330
Gunnar Mills57d9c502018-09-14 14:42:34 -0500331 /** @brief Persistent sdbusplus DBus bus connection. */
332 sdbusplus::bus::bus& bus;
Ratan Gupta82549cc2017-04-21 08:45:23 +0530333
Gunnar Mills57d9c502018-09-14 14:42:34 -0500334 /** @brief Network Manager object. */
335 Manager& manager;
Ratan Gupta4f1c18b2017-05-25 12:59:35 +0530336
Gunnar Mills57d9c502018-09-14 14:42:34 -0500337 /** @brief Persistent map of IPAddress dbus objects and their names */
338 AddressMap addrs;
Ratan Gupta82549cc2017-04-21 08:45:23 +0530339
William A. Kennington III08505792019-01-30 16:00:04 -0800340 /** @brief Persistent map of Neighbor dbus objects and their names */
341 NeighborMap staticNeighbors;
342
Gunnar Mills57d9c502018-09-14 14:42:34 -0500343 /** @brief Persistent map of VLAN interface dbus objects and their names */
344 VlanInterfaceMap vlanInterfaces;
Ratan Gupta5978dd12017-07-25 13:47:13 +0530345
Gunnar Mills57d9c502018-09-14 14:42:34 -0500346 /** @brief Dbus object path */
347 std::string objPath;
Ratan Gupta47722dc2017-05-26 18:32:23 +0530348
Gunnar Mills57d9c502018-09-14 14:42:34 -0500349 friend class TestEthernetInterface;
Johnathan Mantey817012a2020-01-30 15:07:39 -0800350
351 private:
352 /** @brief Determines if DHCP is active for the IP::Protocol supplied.
353 * @param[in] protocol - Either IPv4 or IPv6
354 * @param[in] ignoreProtocol - Allows IPv4 and IPv6 to be checked using a
355 * single call.
356 * @returns true/false value if DHCP is active for the input protocol
357 */
358 bool dhcpIsEnabled(IP::Protocol protocol, bool ignoreProtocol = false);
359
360 /** @brief Determines if DHCP will be active following next reconfig
361 * @param[in] protocol - Either IPv4 or IPv6
362 * @param[in] nextDHCPState - The new DHCP mode to take affect
363 * @returns true/false value if DHCP is active for the input protocol
364 */
365 bool dhcpToBeEnabled(IP::Protocol family, const std::string& nextDHCPState);
366
367 /** @brief Determines if the address is manually assigned
368 * @param[in] origin - The origin entry of the IP::Address
369 * @returns true/false value if the address is static
370 */
371 bool originIsManuallyAssigned(IP::AddressOrigin origin);
William A. Kennington III26275a32021-07-13 20:32:42 -0700372
373 /** @brief Determines if the NIC is enabled in systemd
374 * @returns true/false value if the NIC is enabled
375 */
376 bool queryNicEnabled() const;
Ratan Gupta8c834932017-04-14 16:30:24 +0530377};
378
379} // namespace network
380} // namespace phosphor