| #pragma once |
| |
| #include "ethernet_interface.hpp" |
| #include "types.hpp" |
| #include "xyz/openbmc_project/Network/VLAN/Create/server.hpp" |
| #include <xyz/openbmc_project/Common/FactoryReset/server.hpp> |
| |
| #include <sdbusplus/bus.hpp> |
| #include <ifaddrs.h> |
| |
| #include <list> |
| #include <memory> |
| #include <string> |
| #include <vector> |
| |
| namespace phosphor |
| { |
| namespace network |
| { |
| |
| namespace details |
| { |
| |
| template <typename T, typename U> |
| using ServerObject = typename sdbusplus::server::object::object<T, U>; |
| |
| using VLANCreateIface = details::ServerObject< |
| sdbusplus::xyz::openbmc_project::Network::VLAN::server::Create, |
| sdbusplus::xyz::openbmc_project::Common::server::FactoryReset>; |
| |
| using IntfName = std::string; |
| |
| struct AddrInfo |
| { |
| short addrType; |
| std::string ipaddress; |
| }; |
| |
| using Addr_t = ifaddrs*; |
| |
| struct AddrDeleter |
| { |
| void operator()(Addr_t ptr) const |
| { |
| freeifaddrs(ptr); |
| } |
| }; |
| |
| using AddrPtr = std::unique_ptr<ifaddrs, AddrDeleter>; |
| |
| using AddrList = std::list<AddrInfo>; |
| using IntfAddrMap = std::map<IntfName, AddrList>; |
| |
| } // namespace details |
| |
| /** @class Manager |
| * @brief OpenBMC network manager implementation. |
| */ |
| class Manager : public details::VLANCreateIface |
| { |
| public: |
| Manager() = delete; |
| Manager(const Manager&) = delete; |
| Manager& operator=(const Manager&) = delete; |
| Manager(Manager&&) = delete; |
| Manager& operator=(Manager&&) = delete; |
| virtual ~Manager() = default; |
| |
| /** @brief Constructor to put object onto bus at a dbus path. |
| * @param[in] bus - Bus to attach to. |
| * @param[in] objPath - Path to attach at. |
| */ |
| Manager(sdbusplus::bus::bus& bus, const char* objPath); |
| |
| void vLAN(IntfName interfaceName, uint16_t id) override; |
| |
| private: |
| /** @brief Get all the interfaces from the system. |
| * @returns list of interface names. |
| */ |
| IntfAddrMap getInterfaceAddrs() const; |
| |
| /** @brief converts the given subnet into prefix notation |
| * @param[in] addressFamily - IP address family(AF_INET/AF_INET6) |
| * @param[in] subnetMask - SubnetMask which needs to be converted. |
| * @returns prefix. |
| */ |
| uint8_t toCidr(int addressFamily, const std::string& subnetMask) const; |
| |
| /** @brief converts the given V6 subnet into prefix notation |
| * @param[in] subnetMask - SubnetMask which needs to be converted. |
| * @returns prefix. |
| */ |
| uint8_t toV6Cidr(const std::string& subnetMask) const; |
| |
| /** @brief Persistent map of EthernetInterface dbus objects and their names */ |
| std::map<IntfName, std::unique_ptr<EthernetInterface>> interfaces; |
| |
| /** @brief BMC network reset - resets network configuration for BMC. */ |
| void reset() override; |
| |
| }; |
| |
| } // namespace network |
| } // namespace phosphor |