blob: efd134185d8c21918b90475f8d84f127dc05b7e9 [file] [log] [blame]
Patrick Venture189d44e2018-07-09 12:30:59 -07001#include "vlan_interface.hpp"
2
William A. Kennington III9c9f1b72022-08-18 17:55:29 -07003#include "config_parser.hpp"
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +05304#include "ethernet_interface.hpp"
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +05305#include "network_manager.hpp"
6
Patrick Venture189d44e2018-07-09 12:30:59 -07007#include <phosphor-logging/elog-errors.hpp>
8#include <phosphor-logging/log.hpp>
9#include <string>
10#include <xyz/openbmc_project/Common/error.hpp>
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053011
12namespace phosphor
13{
14namespace network
15{
16
17using namespace phosphor::logging;
18using namespace sdbusplus::xyz::openbmc_project::Common::Error;
19
William A. Kennington IIIbe3bd2f2022-10-11 14:11:27 -070020VlanInterface::VlanInterface(sdbusplus::bus_t& bus,
21 stdplus::const_zstring objPath,
William A. Kennington III0caf2212022-08-18 18:15:51 -070022 const config::Parser& config, bool nicEnabled,
23 uint32_t vlanID, EthernetInterface& intf,
24 Manager& parent) :
Manojkiran Edaca8b91b2020-05-28 09:28:42 +053025 VlanIface(bus, objPath.c_str()),
26 DeleteIface(bus, objPath.c_str()),
William A. Kennington III0caf2212022-08-18 18:15:51 -070027 EthernetInterface(bus, objPath, config, parent, true, nicEnabled),
Manojkiran Edaca8b91b2020-05-28 09:28:42 +053028 parentInterface(intf)
29{
30 id(vlanID);
Manojkiran Edaca8b91b2020-05-28 09:28:42 +053031 VlanIface::interfaceName(EthernetInterface::interfaceName());
Patrick Williams6aef7692021-05-01 06:39:41 -050032 MacAddressIntf::macAddress(parentInterface.macAddress());
Manojkiran Edaca8b91b2020-05-28 09:28:42 +053033
34 emit_object_added();
35}
36
Patrick Williams6aef7692021-05-01 06:39:41 -050037std::string VlanInterface::macAddress(std::string)
William A. Kennington IIIa2145bf2019-04-19 13:15:56 -070038{
39 log<level::ERR>("Tried to set MAC address on VLAN");
40 elog<InternalFailure>();
41}
42
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053043void VlanInterface::writeDeviceFile()
44{
William A. Kennington III9c9f1b72022-08-18 17:55:29 -070045 config::Parser config;
46 auto& netdev = config.map["NetDev"].emplace_back();
47 netdev["Name"].emplace_back(EthernetInterface::interfaceName());
48 netdev["Kind"].emplace_back("vlan");
49 config.map["VLAN"].emplace_back()["Id"].emplace_back(std::to_string(id()));
50 config.writeFile(config::pathForIntfDev(
51 manager.getConfDir(), EthernetInterface::interfaceName()));
Ratan Gupta3d3e4fc2017-07-25 13:38:19 +053052}
53
Ratan Guptabc886292017-07-25 18:29:57 +053054void VlanInterface::delete_()
55{
56 parentInterface.deleteVLANObject(EthernetInterface::interfaceName());
57}
58
Gunnar Mills57d9c502018-09-14 14:42:34 -050059} // namespace network
60} // namespace phosphor