blob: 129cbf74aec6ad34c2cfcae520968afcb79ed160 [file] [log] [blame]
Gunnar Mills57d9c502018-09-14 14:42:34 -05001#include "config.h"
2
Patrick Venture189d44e2018-07-09 12:30:59 -07003#include "vlan_interface.hpp"
4
William A. Kennington III9c9f1b72022-08-18 17:55:29 -07005#include "config_parser.hpp"
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +05306#include "ethernet_interface.hpp"
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +05307#include "network_manager.hpp"
8
Patrick Venture189d44e2018-07-09 12:30:59 -07009#include <phosphor-logging/elog-errors.hpp>
10#include <phosphor-logging/log.hpp>
11#include <string>
12#include <xyz/openbmc_project/Common/error.hpp>
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053013
14namespace phosphor
15{
16namespace network
17{
18
19using namespace phosphor::logging;
20using namespace sdbusplus::xyz::openbmc_project::Common::Error;
21
Patrick Williamsc38b0712022-07-22 19:26:54 -050022VlanInterface::VlanInterface(sdbusplus::bus_t& bus, const std::string& objPath,
William A. Kennington III0caf2212022-08-18 18:15:51 -070023 const config::Parser& config, bool nicEnabled,
24 uint32_t vlanID, EthernetInterface& intf,
25 Manager& parent) :
Manojkiran Edaca8b91b2020-05-28 09:28:42 +053026 VlanIface(bus, objPath.c_str()),
27 DeleteIface(bus, objPath.c_str()),
William A. Kennington III0caf2212022-08-18 18:15:51 -070028 EthernetInterface(bus, objPath, config, parent, true, nicEnabled),
Manojkiran Edaca8b91b2020-05-28 09:28:42 +053029 parentInterface(intf)
30{
31 id(vlanID);
Manojkiran Edaca8b91b2020-05-28 09:28:42 +053032 VlanIface::interfaceName(EthernetInterface::interfaceName());
Patrick Williams6aef7692021-05-01 06:39:41 -050033 MacAddressIntf::macAddress(parentInterface.macAddress());
Manojkiran Edaca8b91b2020-05-28 09:28:42 +053034
35 emit_object_added();
36}
37
Patrick Williams6aef7692021-05-01 06:39:41 -050038std::string VlanInterface::macAddress(std::string)
William A. Kennington IIIa2145bf2019-04-19 13:15:56 -070039{
40 log<level::ERR>("Tried to set MAC address on VLAN");
41 elog<InternalFailure>();
42}
43
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053044void VlanInterface::writeDeviceFile()
45{
William A. Kennington III9c9f1b72022-08-18 17:55:29 -070046 config::Parser config;
47 auto& netdev = config.map["NetDev"].emplace_back();
48 netdev["Name"].emplace_back(EthernetInterface::interfaceName());
49 netdev["Kind"].emplace_back("vlan");
50 config.map["VLAN"].emplace_back()["Id"].emplace_back(std::to_string(id()));
51 config.writeFile(config::pathForIntfDev(
52 manager.getConfDir(), EthernetInterface::interfaceName()));
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053053}
54
Ratan Guptabc886292017-07-25 18:29:57 +053055void VlanInterface::delete_()
56{
57 parentInterface.deleteVLANObject(EthernetInterface::interfaceName());
58}
59
Gunnar Mills57d9c502018-09-14 14:42:34 -050060} // namespace network
61} // namespace phosphor