Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Ratan Gupta | 5978dd1 | 2017-07-25 13:47:13 +0530 | [diff] [blame] | 3 | #include "ethernet_interface.hpp" |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 4 | #include "types.hpp" |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 5 | #include "xyz/openbmc_project/Network/VLAN/server.hpp" |
| 6 | |
| 7 | #include <sdbusplus/bus.hpp> |
| 8 | #include <sdbusplus/server/object.hpp> |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 9 | #include <string> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 10 | #include <xyz/openbmc_project/Object/Delete/server.hpp> |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 11 | |
| 12 | namespace phosphor |
| 13 | { |
| 14 | namespace network |
| 15 | { |
| 16 | |
| 17 | class EthernetInterface; |
| 18 | class Manager; |
| 19 | |
Ratan Gupta | bc88629 | 2017-07-25 18:29:57 +0530 | [diff] [blame] | 20 | using DeleteIface = sdbusplus::xyz::openbmc_project::Object::server::Delete; |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 21 | using VlanIface = sdbusplus::xyz::openbmc_project::Network::server::VLAN; |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 22 | |
| 23 | /** @class VlanInterface |
| 24 | * @brief OpenBMC vlan Interface implementation. |
| 25 | * @details A concrete implementation for the vlan interface |
| 26 | */ |
Ratan Gupta | 26e87a0 | 2017-08-18 01:08:40 +0530 | [diff] [blame] | 27 | class VlanInterface : public VlanIface, |
| 28 | public DeleteIface, |
| 29 | public EthernetInterface |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 30 | { |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 31 | public: |
| 32 | VlanInterface() = delete; |
| 33 | VlanInterface(const VlanInterface&) = delete; |
| 34 | VlanInterface& operator=(const VlanInterface&) = delete; |
| 35 | VlanInterface(VlanInterface&&) = delete; |
| 36 | VlanInterface& operator=(VlanInterface&&) = delete; |
| 37 | virtual ~VlanInterface() = default; |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 38 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 39 | /** @brief Constructor to put object onto bus at a dbus path. |
| 40 | * @param[in] bus - Bus to attach to. |
| 41 | * @param[in] objPath - Path to attach at. |
| 42 | * @param[in] dhcpEnabled - DHCP enable value. |
| 43 | * @param[in] vlanID - vlan identifier. |
| 44 | * @param[in] intf - ethernet interface object. |
| 45 | * @param[in] manager - network manager object. |
| 46 | */ |
| 47 | VlanInterface(sdbusplus::bus::bus& bus, const std::string& objPath, |
| 48 | bool dhcpEnabled, uint32_t vlanID, EthernetInterface& intf, |
| 49 | Manager& manager); |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 50 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 51 | /** @brief Delete this d-bus object. |
| 52 | */ |
| 53 | void delete_() override; |
Ratan Gupta | bc88629 | 2017-07-25 18:29:57 +0530 | [diff] [blame] | 54 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 55 | /** @brief writes the device configuration. |
| 56 | systemd reads this configuration file |
| 57 | and creates the vlan interface.*/ |
| 58 | void writeDeviceFile(); |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 59 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 60 | /** @brief copy the mac address from the parent interface.*/ |
| 61 | void updateMacAddress() |
| 62 | { |
| 63 | MacAddressIntf::mACAddress(parentInterface.mACAddress()); |
| 64 | } |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 65 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 66 | private: |
| 67 | /** @brief VLAN Identifier. */ |
| 68 | using VlanIface::id; |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 69 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 70 | EthernetInterface& parentInterface; |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 71 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 72 | friend class TestVlanInterface; |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 73 | }; |
| 74 | |
| 75 | } // namespace network |
| 76 | } // namespace phosphor |