blob: 7fb7cf1efd7688e8fea35bfc65630b95c8f06873 [file] [log] [blame]
Ratan Gupta8c834932017-04-14 16:30:24 +05301#pragma once
2
Ratan Gupta82549cc2017-04-21 08:45:23 +05303#include "ipaddress.hpp"
4#include "types.hpp"
Ratan Gupta8804feb2017-05-25 10:49:57 +05305#include "util.hpp"
Ratan Gupta82549cc2017-04-21 08:45:23 +05306
Ratan Gupta8c834932017-04-14 16:30:24 +05307#include "xyz/openbmc_project/Network/EthernetInterface/server.hpp"
Ratan Gupta82549cc2017-04-21 08:45:23 +05308#include "xyz/openbmc_project/Network/IP/Create/server.hpp"
Ratan Gupta8c834932017-04-14 16:30:24 +05309
10#include <sdbusplus/bus.hpp>
11#include <sdbusplus/server/object.hpp>
12
13#include <string>
14
15namespace phosphor
16{
17namespace network
18{
Ratan Gupta8c834932017-04-14 16:30:24 +053019
Ratan Gupta82549cc2017-04-21 08:45:23 +053020using Ifaces =
21 sdbusplus::server::object::object<
22 sdbusplus::xyz::openbmc_project::Network::server::EthernetInterface,
23 sdbusplus::xyz::openbmc_project::Network::IP::server::Create>;
Ratan Gupta8c834932017-04-14 16:30:24 +053024
Ratan Gupta82549cc2017-04-21 08:45:23 +053025using IP = sdbusplus::xyz::openbmc_project::Network::server::IP;
Ratan Gupta4f1c18b2017-05-25 12:59:35 +053026class Manager; // forward declaration of network manager.
Ratan Gupta8c834932017-04-14 16:30:24 +053027
Ratan Gupta8c834932017-04-14 16:30:24 +053028using LinkSpeed = uint16_t;
29using DuplexMode = uint8_t;
30using Autoneg = uint8_t;
31using InterfaceInfo = std::tuple<LinkSpeed, DuplexMode, Autoneg>;
Ratan Gupta29b0e432017-05-25 12:51:40 +053032using AddressMap = std::map<std::string, std::shared_ptr<IPAddress>>;
Ratan Gupta8c834932017-04-14 16:30:24 +053033
34/** @class EthernetInterface
35 * @brief OpenBMC Ethernet Interface implementation.
36 * @details A concrete implementation for the
37 * xyz.openbmc_project.Network.EthernetInterface DBus API.
38 */
Ratan Gupta82549cc2017-04-21 08:45:23 +053039class EthernetInterface : public Ifaces
Ratan Gupta8c834932017-04-14 16:30:24 +053040{
41 public:
42 EthernetInterface() = delete;
43 EthernetInterface(const EthernetInterface&) = delete;
44 EthernetInterface& operator=(const EthernetInterface&) = delete;
45 EthernetInterface(EthernetInterface&&) = delete;
46 EthernetInterface& operator=(EthernetInterface&&) = delete;
47 virtual ~EthernetInterface() = default;
48
49 /** @brief Constructor to put object onto bus at a dbus path.
50 * @param[in] bus - Bus to attach to.
51 * @param[in] objPath - Path to attach at.
Ratan Gupta8c834932017-04-14 16:30:24 +053052 * @param[in] dhcpEnabled - is dhcp enabled(true/false).
Ratan Gupta4f1c18b2017-05-25 12:59:35 +053053 * @param[in] parent - parent object.
Ratan Gupta8c834932017-04-14 16:30:24 +053054 */
55 EthernetInterface(sdbusplus::bus::bus& bus,
Ratan Gupta91a99cc2017-04-14 16:32:09 +053056 const std::string& objPath,
Ratan Gupta4f1c18b2017-05-25 12:59:35 +053057 bool dhcpEnabled,
58 Manager& parent);
Ratan Gupta82549cc2017-04-21 08:45:23 +053059
60 /** @brief Function to create ipaddress dbus object.
61 * @param[in] addressType - Type of ip address.
Ratan Gupta29b0e432017-05-25 12:51:40 +053062 * @param[in] ipaddress- IP address.
Ratan Gupta82549cc2017-04-21 08:45:23 +053063 * @param[in] prefixLength - Length of prefix.
64 * @param[in] gateway - Gateway ip address.
65 */
66
67 void iP(IP::Protocol addressType,
68 std::string ipaddress,
69 uint8_t prefixLength,
70 std::string gateway) override;
Ratan Gupta8c834932017-04-14 16:30:24 +053071
Ratan Gupta29b0e432017-05-25 12:51:40 +053072 /* @brief delete the dbus object of the given ipaddress.
73 * @param[in] ipaddress - IP address.
Ratan Gupta2eff84f2017-04-20 19:19:15 +053074 */
Ratan Gupta2eff84f2017-04-20 19:19:15 +053075 void deleteObject(const std::string& ipaddress);
Ratan Gupta8c834932017-04-14 16:30:24 +053076
Ratan Gupta29b0e432017-05-25 12:51:40 +053077 /* @brief creates the dbus object given in the address list.
78 * @param[in] addrs - address list for which dbus objects needs
79 * to create.
80 */
81 void setAddressList(const AddrList& addrs);
82
83 /* @brief Gets all the ip addresses.
84 * @returns the list of ipaddress.
85 */
86 const AddressMap& getAddresses() const { return addrs; }
Ratan Gupta8c834932017-04-14 16:30:24 +053087
88 private:
89
90 /** @brief get the info of the ethernet interface.
91 * @return tuple having the link speed,autonegotiation,duplexmode .
92 */
93
94 InterfaceInfo getInterfaceInfo() const;
95
96 /** @brief get the mac address of the interface.
97 * @return macaddress on success
98 */
99
100 std::string getMACAddress() const;
101
Ratan Gupta82549cc2017-04-21 08:45:23 +0530102 /** @brief construct the ip address dbus object path.
103 * @param[in] addressType - Type of ip address.
Ratan Gupta65e5abe2017-05-23 13:20:44 +0530104 * @param[in] ipaddress - IP address.
105 * @param[in] prefixLength - Length of prefix.
106 * @param[in] gateway - Gateway addess.
107
Ratan Gupta82549cc2017-04-21 08:45:23 +0530108 * @return path of the address object.
109 */
110
Ratan Gupta65e5abe2017-05-23 13:20:44 +0530111 std::string generateObjectPath(IP::Protocol addressType,
112 const std::string& ipaddress,
113 uint8_t prefixLength,
114 const std::string& gateway) const;
Ratan Gupta82549cc2017-04-21 08:45:23 +0530115
Ratan Gupta65e5abe2017-05-23 13:20:44 +0530116 /** @brief generates the id by doing hash of ipaddress,
117 * prefixlength and the gateway.
118 * @param[in] ipaddress - IP address.
119 * @param[in] prefixLength - Length of prefix.
120 * @param[in] gateway - Gateway addess.
121 * @return hash string.
Ratan Gupta82549cc2017-04-21 08:45:23 +0530122 */
123
Ratan Gupta65e5abe2017-05-23 13:20:44 +0530124 static std::string generateId(const std::string& ipaddress,
125 uint8_t prefixLength,
126 const std::string& gateway);
Ratan Gupta82549cc2017-04-21 08:45:23 +0530127
128 /** @brief Persistent sdbusplus DBus bus connection. */
129 sdbusplus::bus::bus& bus;
130
Ratan Gupta4f1c18b2017-05-25 12:59:35 +0530131 /** @brief Network Manager object. */
132 Manager& manager;
133
Ratan Gupta82549cc2017-04-21 08:45:23 +0530134 /** @brief Persistent map of IPAddress dbus objects and their names */
Ratan Gupta29b0e432017-05-25 12:51:40 +0530135 AddressMap addrs;
Ratan Gupta82549cc2017-04-21 08:45:23 +0530136
Ratan Gupta8c834932017-04-14 16:30:24 +0530137};
138
139} // namespace network
140} // namespace phosphor