blob: 3ef98eb6305341eea88837f5195799ff5c7aacb1 [file] [log] [blame]
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +05301#pragma once
2
Ratan Gupta5978dd12017-07-25 13:47:13 +05303#include "ethernet_interface.hpp"
Patrick Venture189d44e2018-07-09 12:30:59 -07004#include "types.hpp"
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +05305#include "xyz/openbmc_project/Network/VLAN/server.hpp"
6
7#include <sdbusplus/bus.hpp>
8#include <sdbusplus/server/object.hpp>
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +05309#include <string>
Patrick Venture189d44e2018-07-09 12:30:59 -070010#include <xyz/openbmc_project/Object/Delete/server.hpp>
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053011
12namespace phosphor
13{
14namespace network
15{
16
17class EthernetInterface;
18class Manager;
19
Ratan Guptabc886292017-07-25 18:29:57 +053020using DeleteIface = sdbusplus::xyz::openbmc_project::Object::server::Delete;
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053021using VlanIface = sdbusplus::xyz::openbmc_project::Network::server::VLAN;
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053022
23/** @class VlanInterface
24 * @brief OpenBMC vlan Interface implementation.
25 * @details A concrete implementation for the vlan interface
26 */
Ratan Gupta26e87a02017-08-18 01:08:40 +053027class VlanInterface : public VlanIface,
28 public DeleteIface,
29 public EthernetInterface
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053030{
Gunnar Mills57d9c502018-09-14 14:42:34 -050031 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 Gupta3d3e4fc2017-07-25 13:38:19 +053038
Gunnar Mills57d9c502018-09-14 14:42:34 -050039 /** @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 Gupta3d3e4fc2017-07-25 13:38:19 +053050
Gunnar Mills57d9c502018-09-14 14:42:34 -050051 /** @brief Delete this d-bus object.
52 */
53 void delete_() override;
Ratan Guptabc886292017-07-25 18:29:57 +053054
Gunnar Mills57d9c502018-09-14 14:42:34 -050055 /** @brief writes the device configuration.
56 systemd reads this configuration file
57 and creates the vlan interface.*/
58 void writeDeviceFile();
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053059
Gunnar Mills57d9c502018-09-14 14:42:34 -050060 /** @brief copy the mac address from the parent interface.*/
61 void updateMacAddress()
62 {
63 MacAddressIntf::mACAddress(parentInterface.mACAddress());
64 }
Ratan Guptabd303b12017-08-18 17:10:07 +053065
Gunnar Mills57d9c502018-09-14 14:42:34 -050066 private:
67 /** @brief VLAN Identifier. */
68 using VlanIface::id;
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053069
Gunnar Mills57d9c502018-09-14 14:42:34 -050070 EthernetInterface& parentInterface;
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053071
Gunnar Mills57d9c502018-09-14 14:42:34 -050072 friend class TestVlanInterface;
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053073};
74
75} // namespace network
76} // namespace phosphor