Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 1 | #include "config.h" |
| 2 | |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 3 | #include "vlan_interface.hpp" |
| 4 | |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 5 | #include "ethernet_interface.hpp" |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 6 | #include "network_manager.hpp" |
| 7 | |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 8 | #include <algorithm> |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 9 | #include <experimental/filesystem> |
Patrick Venture | 189d44e | 2018-07-09 12:30:59 -0700 | [diff] [blame] | 10 | #include <fstream> |
| 11 | #include <phosphor-logging/elog-errors.hpp> |
| 12 | #include <phosphor-logging/log.hpp> |
| 13 | #include <string> |
| 14 | #include <xyz/openbmc_project/Common/error.hpp> |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 15 | |
| 16 | namespace phosphor |
| 17 | { |
| 18 | namespace network |
| 19 | { |
| 20 | |
| 21 | using namespace phosphor::logging; |
| 22 | using namespace sdbusplus::xyz::openbmc_project::Common::Error; |
| 23 | |
| 24 | VlanInterface::VlanInterface(sdbusplus::bus::bus& bus, |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 25 | const std::string& objPath, bool dhcpEnabled, |
| 26 | uint32_t vlanID, EthernetInterface& intf, |
| 27 | Manager& parent) : |
| 28 | VlanIface(bus, objPath.c_str()), |
| 29 | DeleteIface(bus, objPath.c_str()), |
| 30 | EthernetInterface(bus, objPath, dhcpEnabled, parent, false), |
| 31 | parentInterface(intf) |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 32 | { |
| 33 | id(vlanID); |
| 34 | VlanIface::interfaceName(EthernetInterface::interfaceName()); |
Ratan Gupta | bd303b1 | 2017-08-18 17:10:07 +0530 | [diff] [blame] | 35 | MacAddressIntf::mACAddress(parentInterface.mACAddress()); |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 36 | |
Ratan Gupta | 26e87a0 | 2017-08-18 01:08:40 +0530 | [diff] [blame] | 37 | emit_object_added(); |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | void VlanInterface::writeDeviceFile() |
| 41 | { |
| 42 | using namespace std::string_literals; |
| 43 | fs::path confPath = manager.getConfDir(); |
| 44 | std::string fileName = EthernetInterface::interfaceName() + ".netdev"s; |
| 45 | confPath /= fileName; |
| 46 | std::fstream stream; |
| 47 | try |
| 48 | { |
| 49 | stream.open(confPath.c_str(), std::fstream::out); |
| 50 | } |
| 51 | catch (std::ios_base::failure& e) |
| 52 | { |
| 53 | log<level::ERR>("Unable to open the VLAN device file", |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 54 | entry("FILE=%s", confPath.c_str()), |
| 55 | entry("ERROR=%s", e.what())); |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 56 | elog<InternalFailure>(); |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 57 | } |
| 58 | |
Ratan K Gupta | 1a054ae | 2018-09-15 00:49:51 -0400 | [diff] [blame] | 59 | stream << "[NetDev]\n"; |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 60 | stream << "Name=" << EthernetInterface::interfaceName() << "\n"; |
Ratan K Gupta | 1a054ae | 2018-09-15 00:49:51 -0400 | [diff] [blame] | 61 | stream << "Kind=vlan\n"; |
| 62 | stream << "[VLAN]\n"; |
Ratan Gupta | 3d3e4fc | 2017-07-25 13:38:19 +0530 | [diff] [blame] | 63 | stream << "Id=" << id() << "\n"; |
| 64 | stream.close(); |
| 65 | } |
| 66 | |
Ratan Gupta | bc88629 | 2017-07-25 18:29:57 +0530 | [diff] [blame] | 67 | void VlanInterface::delete_() |
| 68 | { |
| 69 | parentInterface.deleteVLANObject(EthernetInterface::interfaceName()); |
| 70 | } |
| 71 | |
Gunnar Mills | 57d9c50 | 2018-09-14 14:42:34 -0500 | [diff] [blame] | 72 | } // namespace network |
| 73 | } // namespace phosphor |