blob: 8795c1a638c52516164e0d96a6b8a0ac72b243f9 [file] [log] [blame]
Patrick Venture586d35b2018-09-07 19:56:18 -07001#include "transporthandler.hpp"
2
Patrick Venture3a5071a2018-09-12 13:27:42 -07003#include "app/channel.hpp"
Johnathan Mantey74a21022018-12-13 13:17:56 -08004#include "user_channel/channel_layer.hpp"
Patrick Venture3a5071a2018-09-12 13:27:42 -07005
Patrick Venture0b02be92018-08-31 11:55:55 -07006#include <arpa/inet.h>
Patrick Venture0b02be92018-08-31 11:55:55 -07007
8#include <chrono>
Vernon Mauerybdda8002019-02-26 10:18:51 -08009#include <filesystem>
Patrick Venture0b02be92018-08-31 11:55:55 -070010#include <fstream>
Vernon Mauerye08fbff2019-04-03 09:19:34 -070011#include <ipmid/api.hpp>
Vernon Mauery6a98fe72019-03-11 15:57:48 -070012#include <ipmid/utils.hpp>
Patrick Venture3a5071a2018-09-12 13:27:42 -070013#include <phosphor-logging/elog-errors.hpp>
14#include <phosphor-logging/log.hpp>
William A. Kennington III4c008022018-10-12 17:18:14 -070015#include <sdbusplus/message/types.hpp>
Vernon Mauery1181af72018-10-08 12:05:00 -070016#include <sdbusplus/timer.hpp>
tomjose26e17732016-03-03 08:52:51 -060017#include <string>
Patrick Venture3a5071a2018-09-12 13:27:42 -070018#include <xyz/openbmc_project/Common/error.hpp>
19
20#define SYSTEMD_NETWORKD_DBUS 1
21
22#ifdef SYSTEMD_NETWORKD_DBUS
23#include <mapper.h>
24#include <systemd/sd-bus.h>
25#endif
Patrick Venture586d35b2018-09-07 19:56:18 -070026
Vernon Mauery1b7f6f22019-03-13 13:11:25 -070027// timer for network changes
28std::unique_ptr<phosphor::Timer> networkTimer = nullptr;
Ratan Gupta1247e0b2018-03-07 10:47:25 +053029
Patrick Venture0b02be92018-08-31 11:55:55 -070030const int SIZE_MAC = 18; // xx:xx:xx:xx:xx:xx
Ratan Gupta1247e0b2018-03-07 10:47:25 +053031constexpr auto ipv4Protocol = "xyz.openbmc_project.Network.IP.Protocol.IPv4";
Adriana Kobylake08fbc62016-02-09 16:17:23 -060032
Patrick Venturec7c1c3c2017-11-15 14:29:18 -080033std::map<int, std::unique_ptr<struct ChannelConfig_t>> channelConfig;
Hariharasubramanian R83951912016-01-20 07:06:36 -060034
Ratan Guptab8e99552017-07-27 07:07:48 +053035using namespace phosphor::logging;
36using namespace sdbusplus::xyz::openbmc_project::Common::Error;
Ratan Gupta7a7f0122018-03-07 12:31:05 +053037
Vernon Mauery185b9f82018-07-20 10:52:36 -070038namespace fs = std::filesystem;
Hariharasubramanian R83951912016-01-20 07:06:36 -060039
Adriana Kobylak5d6481f2015-10-29 21:44:55 -050040void register_netfn_transport_functions() __attribute__((constructor));
41
Patrick Venturec7c1c3c2017-11-15 14:29:18 -080042struct ChannelConfig_t* getChannelConfig(int channel)
43{
44 auto item = channelConfig.find(channel);
45 if (item == channelConfig.end())
46 {
47 channelConfig[channel] = std::make_unique<struct ChannelConfig_t>();
48 }
49
50 return channelConfig[channel].get();
51}
52
Patrick Venture0b02be92018-08-31 11:55:55 -070053// Helper Function to get IP Address/NetMask/Gateway/MAC Address from Network
54// Manager or Cache based on Set-In-Progress State
Patrick Venturec7c1c3c2017-11-15 14:29:18 -080055ipmi_ret_t getNetworkData(uint8_t lan_param, uint8_t* data, int channel)
tomjose26e17732016-03-03 08:52:51 -060056{
tomjose26e17732016-03-03 08:52:51 -060057 ipmi_ret_t rc = IPMI_CC_OK;
Ratan Guptab8e99552017-07-27 07:07:48 +053058 sdbusplus::bus::bus bus(ipmid_get_sd_bus_connection());
Ratan Gupta533d03b2017-07-30 10:39:22 +053059
Johnathan Mantey74a21022018-12-13 13:17:56 -080060 auto ethdevice = ipmi::getChannelName(channel);
Patrick Venturec7c1c3c2017-11-15 14:29:18 -080061 // if ethdevice is an empty string they weren't expecting this channel.
62 if (ethdevice.empty())
63 {
64 // TODO: return error from getNetworkData()
65 return IPMI_CC_INVALID_FIELD_REQUEST;
66 }
67 auto ethIP = ethdevice + "/" + ipmi::network::IP_TYPE;
68 auto channelConf = getChannelConfig(channel);
69
Ratan Guptab8e99552017-07-27 07:07:48 +053070 try
tomjose26e17732016-03-03 08:52:51 -060071 {
William A. Kennington IIIaab20232018-11-19 18:20:39 -080072 switch (static_cast<LanParam>(lan_param))
tomjose26e17732016-03-03 08:52:51 -060073 {
William A. Kennington IIIaab20232018-11-19 18:20:39 -080074 case LanParam::IP:
Ratan Guptab8e99552017-07-27 07:07:48 +053075 {
76 std::string ipaddress;
Patrick Venturec7c1c3c2017-11-15 14:29:18 -080077 if (channelConf->lan_set_in_progress == SET_COMPLETE)
Ratan Guptab8e99552017-07-27 07:07:48 +053078 {
Ratan Guptacc6cdbf2017-09-01 23:06:25 +053079 try
80 {
Patrick Venture0b02be92018-08-31 11:55:55 -070081 auto ipObjectInfo =
82 ipmi::getIPObject(bus, ipmi::network::IP_INTERFACE,
83 ipmi::network::ROOT, ethIP);
Ratan Guptadd646202017-11-21 17:46:59 +053084
85 auto properties = ipmi::getAllDbusProperties(
Patrick Venture0b02be92018-08-31 11:55:55 -070086 bus, ipObjectInfo.second, ipObjectInfo.first,
87 ipmi::network::IP_INTERFACE);
Ratan Guptadd646202017-11-21 17:46:59 +053088
William A. Kennington III4c008022018-10-12 17:18:14 -070089 ipaddress =
Vernon Maueryf442e112019-04-09 11:44:36 -070090 std::get<std::string>(properties["Address"]);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +053091 }
Gunnar Millsc9fa69e2018-04-08 16:35:25 -050092 // ignore the exception, as it is a valid condition that
93 // the system is not configured with any IP.
Ratan Guptacc6cdbf2017-09-01 23:06:25 +053094 catch (InternalFailure& e)
95 {
96 // nothing to do.
97 }
Ratan Guptab8e99552017-07-27 07:07:48 +053098 }
Patrick Venturec7c1c3c2017-11-15 14:29:18 -080099 else if (channelConf->lan_set_in_progress == SET_IN_PROGRESS)
Ratan Guptab8e99552017-07-27 07:07:48 +0530100 {
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800101 ipaddress = channelConf->ipaddr;
Ratan Guptab8e99552017-07-27 07:07:48 +0530102 }
103
104 inet_pton(AF_INET, ipaddress.c_str(),
105 reinterpret_cast<void*>(data));
106 }
107 break;
108
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800109 case LanParam::IPSRC:
Ratan Guptab8e99552017-07-27 07:07:48 +0530110 {
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530111 std::string networkInterfacePath;
112
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800113 if (channelConf->lan_set_in_progress == SET_COMPLETE)
Ratan Guptab8e99552017-07-27 07:07:48 +0530114 {
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530115 try
116 {
117 ipmi::ObjectTree ancestorMap;
118 // if the system is having ip object,then
119 // get the IP object.
120 auto ipObject = ipmi::getDbusObject(
Patrick Venture0b02be92018-08-31 11:55:55 -0700121 bus, ipmi::network::IP_INTERFACE,
122 ipmi::network::ROOT, ethIP);
Ratan Guptab8e99552017-07-27 07:07:48 +0530123
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530124 // Get the parent interface of the IP object.
125 try
126 {
127 ipmi::InterfaceList interfaces;
128 interfaces.emplace_back(
Patrick Venture0b02be92018-08-31 11:55:55 -0700129 ipmi::network::ETHERNET_INTERFACE);
Ratan Guptab8e99552017-07-27 07:07:48 +0530130
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530131 ancestorMap = ipmi::getAllAncestors(
Patrick Venture0b02be92018-08-31 11:55:55 -0700132 bus, ipObject.first, std::move(interfaces));
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530133 }
134 catch (InternalFailure& e)
135 {
136 // if unable to get the parent interface
137 // then commit the error and return.
Patrick Venture0b02be92018-08-31 11:55:55 -0700138 log<level::ERR>(
139 "Unable to get the parent interface",
140 entry("PATH=%s", ipObject.first.c_str()),
141 entry("INTERFACE=%s",
142 ipmi::network::ETHERNET_INTERFACE));
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530143 break;
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530144 }
145 // for an ip object there would be single parent
146 // interface.
147 networkInterfacePath = ancestorMap.begin()->first;
148 }
149 catch (InternalFailure& e)
150 {
151 // if there is no ip configured on the system,then
152 // get the network interface object.
153 auto networkInterfaceObject = ipmi::getDbusObject(
Patrick Venture0b02be92018-08-31 11:55:55 -0700154 bus, ipmi::network::ETHERNET_INTERFACE,
155 ipmi::network::ROOT, ethdevice);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530156
157 networkInterfacePath = networkInterfaceObject.first;
158 }
159
160 auto variant = ipmi::getDbusProperty(
Patrick Venture0b02be92018-08-31 11:55:55 -0700161 bus, ipmi::network::SERVICE, networkInterfacePath,
162 ipmi::network::ETHERNET_INTERFACE, "DHCPEnabled");
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530163
Vernon Maueryf442e112019-04-09 11:44:36 -0700164 auto dhcpEnabled = std::get<bool>(variant);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530165 // As per IPMI spec 2=>DHCP, 1=STATIC
Patrick Venture0b02be92018-08-31 11:55:55 -0700166 auto ipsrc = dhcpEnabled ? ipmi::network::IPOrigin::DHCP
167 : ipmi::network::IPOrigin::STATIC;
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530168
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700169 std::memcpy(data, &ipsrc, ipmi::network::IPSRC_SIZE_BYTE);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530170 }
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800171 else if (channelConf->lan_set_in_progress == SET_IN_PROGRESS)
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530172 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700173 std::memcpy(data, &(channelConf->ipsrc),
174 ipmi::network::IPSRC_SIZE_BYTE);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530175 }
176 }
177 break;
178
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800179 case LanParam::SUBNET:
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530180 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700181 unsigned long mask{};
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800182 if (channelConf->lan_set_in_progress == SET_COMPLETE)
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530183 {
184 try
185 {
Johnathan Mantey88416832019-01-30 15:51:04 -0800186 auto ipObjectInfo =
187 ipmi::getIPObject(bus, ipmi::network::IP_INTERFACE,
188 ipmi::network::ROOT, ethIP);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530189
190 auto properties = ipmi::getAllDbusProperties(
Patrick Venture0b02be92018-08-31 11:55:55 -0700191 bus, ipObjectInfo.second, ipObjectInfo.first,
192 ipmi::network::IP_INTERFACE);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530193
Vernon Maueryf442e112019-04-09 11:44:36 -0700194 auto prefix =
195 std::get<uint8_t>(properties["PrefixLength"]);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530196 mask = ipmi::network::MASK_32_BIT;
197 mask = htonl(mask << (ipmi::network::BITS_32 - prefix));
198 }
Gunnar Millsc9fa69e2018-04-08 16:35:25 -0500199 // ignore the exception, as it is a valid condition that
200 // the system is not configured with any IP.
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530201 catch (InternalFailure& e)
202 {
203 // nothing to do
204 }
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700205 std::memcpy(data, &mask,
206 ipmi::network::IPV4_ADDRESS_SIZE_BYTE);
Ratan Guptab8e99552017-07-27 07:07:48 +0530207 }
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800208 else if (channelConf->lan_set_in_progress == SET_IN_PROGRESS)
Ratan Guptab8e99552017-07-27 07:07:48 +0530209 {
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800210 inet_pton(AF_INET, channelConf->netmask.c_str(),
Ratan Guptab8e99552017-07-27 07:07:48 +0530211 reinterpret_cast<void*>(data));
Ratan Guptab8e99552017-07-27 07:07:48 +0530212 }
Ratan Guptab8e99552017-07-27 07:07:48 +0530213 }
214 break;
215
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800216 case LanParam::GATEWAY:
Ratan Guptab8e99552017-07-27 07:07:48 +0530217 {
218 std::string gateway;
219
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800220 if (channelConf->lan_set_in_progress == SET_COMPLETE)
Ratan Guptab8e99552017-07-27 07:07:48 +0530221 {
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530222 try
223 {
224 auto systemObject = ipmi::getDbusObject(
Patrick Venture0b02be92018-08-31 11:55:55 -0700225 bus, ipmi::network::SYSTEMCONFIG_INTERFACE,
226 ipmi::network::ROOT);
Ratan Guptab8e99552017-07-27 07:07:48 +0530227
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530228 auto systemProperties = ipmi::getAllDbusProperties(
Patrick Venture0b02be92018-08-31 11:55:55 -0700229 bus, systemObject.second, systemObject.first,
230 ipmi::network::SYSTEMCONFIG_INTERFACE);
Ratan Guptab8e99552017-07-27 07:07:48 +0530231
Vernon Maueryf442e112019-04-09 11:44:36 -0700232 gateway = std::get<std::string>(
William A. Kennington III4c008022018-10-12 17:18:14 -0700233 systemProperties["DefaultGateway"]);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530234 }
Gunnar Millsc9fa69e2018-04-08 16:35:25 -0500235 // ignore the exception, as it is a valid condition that
236 // the system is not configured with any IP.
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530237 catch (InternalFailure& e)
238 {
239 // nothing to do
240 }
Ratan Guptab8e99552017-07-27 07:07:48 +0530241 }
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800242 else if (channelConf->lan_set_in_progress == SET_IN_PROGRESS)
Ratan Guptab8e99552017-07-27 07:07:48 +0530243 {
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800244 gateway = channelConf->gateway;
Ratan Guptab8e99552017-07-27 07:07:48 +0530245 }
246
247 inet_pton(AF_INET, gateway.c_str(),
248 reinterpret_cast<void*>(data));
Ratan Guptab8e99552017-07-27 07:07:48 +0530249 }
250 break;
251
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800252 case LanParam::MAC:
Ratan Guptab8e99552017-07-27 07:07:48 +0530253 {
254 std::string macAddress;
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800255 if (channelConf->lan_set_in_progress == SET_COMPLETE)
Ratan Guptab8e99552017-07-27 07:07:48 +0530256 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700257 auto macObjectInfo =
258 ipmi::getDbusObject(bus, ipmi::network::MAC_INTERFACE,
259 ipmi::network::ROOT, ethdevice);
Ratan Guptab8e99552017-07-27 07:07:48 +0530260
261 auto variant = ipmi::getDbusProperty(
Patrick Venture0b02be92018-08-31 11:55:55 -0700262 bus, macObjectInfo.second, macObjectInfo.first,
263 ipmi::network::MAC_INTERFACE, "MACAddress");
Ratan Guptab8e99552017-07-27 07:07:48 +0530264
Vernon Maueryf442e112019-04-09 11:44:36 -0700265 macAddress = std::get<std::string>(variant);
Ratan Guptab8e99552017-07-27 07:07:48 +0530266 }
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800267 else if (channelConf->lan_set_in_progress == SET_IN_PROGRESS)
Ratan Guptab8e99552017-07-27 07:07:48 +0530268 {
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800269 macAddress = channelConf->macAddress;
Ratan Guptab8e99552017-07-27 07:07:48 +0530270 }
271
272 sscanf(macAddress.c_str(), ipmi::network::MAC_ADDRESS_FORMAT,
Patrick Venture0b02be92018-08-31 11:55:55 -0700273 (data), (data + 1), (data + 2), (data + 3), (data + 4),
Ratan Guptab8e99552017-07-27 07:07:48 +0530274 (data + 5));
275 }
276 break;
277
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800278 case LanParam::VLAN:
Ratan Gupta533d03b2017-07-30 10:39:22 +0530279 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700280 uint16_t vlanID{};
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800281 if (channelConf->lan_set_in_progress == SET_COMPLETE)
Ratan Gupta533d03b2017-07-30 10:39:22 +0530282 {
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530283 try
Ratan Gupta533d03b2017-07-30 10:39:22 +0530284 {
Ratan Guptadd646202017-11-21 17:46:59 +0530285 auto ipObjectInfo = ipmi::getIPObject(
Patrick Venture0b02be92018-08-31 11:55:55 -0700286 bus, ipmi::network::IP_INTERFACE,
287 ipmi::network::ROOT, ipmi::network::IP_TYPE);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530288
289 vlanID = static_cast<uint16_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700290 ipmi::network::getVLAN(ipObjectInfo.first));
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530291
292 vlanID = htole16(vlanID);
293
294 if (vlanID)
295 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700296 // Enable the 16th bit
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530297 vlanID |= htole16(ipmi::network::VLAN_ENABLE_MASK);
298 }
299 }
Gunnar Millsc9fa69e2018-04-08 16:35:25 -0500300 // ignore the exception, as it is a valid condition that
301 // the system is not configured with any IP.
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530302 catch (InternalFailure& e)
303 {
304 // nothing to do
Ratan Gupta533d03b2017-07-30 10:39:22 +0530305 }
306
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700307 std::memcpy(data, &vlanID, ipmi::network::VLAN_SIZE_BYTE);
Ratan Gupta533d03b2017-07-30 10:39:22 +0530308 }
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800309 else if (channelConf->lan_set_in_progress == SET_IN_PROGRESS)
Ratan Gupta533d03b2017-07-30 10:39:22 +0530310 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700311 std::memcpy(data, &(channelConf->vlanID),
312 ipmi::network::VLAN_SIZE_BYTE);
Ratan Gupta533d03b2017-07-30 10:39:22 +0530313 }
314 }
315 break;
316
Ratan Guptab8e99552017-07-27 07:07:48 +0530317 default:
318 rc = IPMI_CC_PARM_OUT_OF_RANGE;
tomjose26e17732016-03-03 08:52:51 -0600319 }
320 }
Ratan Guptab8e99552017-07-27 07:07:48 +0530321 catch (InternalFailure& e)
tomjose26e17732016-03-03 08:52:51 -0600322 {
Ratan Guptab8e99552017-07-27 07:07:48 +0530323 commit<InternalFailure>();
324 rc = IPMI_CC_UNSPECIFIED_ERROR;
325 return rc;
tomjose26e17732016-03-03 08:52:51 -0600326 }
tomjose26e17732016-03-03 08:52:51 -0600327 return rc;
328}
329
Tom Josepha30c8d32018-03-22 02:15:03 +0530330namespace cipher
331{
332
333std::vector<uint8_t> getCipherList()
334{
335 std::vector<uint8_t> cipherList;
336
337 std::ifstream jsonFile(configFile);
338 if (!jsonFile.is_open())
339 {
340 log<level::ERR>("Channel Cipher suites file not found");
341 elog<InternalFailure>();
342 }
343
344 auto data = Json::parse(jsonFile, nullptr, false);
345 if (data.is_discarded())
346 {
347 log<level::ERR>("Parsing channel cipher suites JSON failed");
348 elog<InternalFailure>();
349 }
350
351 // Byte 1 is reserved
352 cipherList.push_back(0x00);
353
354 for (const auto& record : data)
355 {
356 cipherList.push_back(record.value(cipher, 0));
357 }
358
359 return cipherList;
360}
361
Patrick Venture0b02be92018-08-31 11:55:55 -0700362} // namespace cipher
Tom Josepha30c8d32018-03-22 02:15:03 +0530363
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500364ipmi_ret_t ipmi_transport_wildcard(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700365 ipmi_request_t request,
366 ipmi_response_t response,
367 ipmi_data_len_t data_len,
368 ipmi_context_t context)
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500369{
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500370 // Status code.
Nan Li70aa8d92016-08-29 00:11:10 +0800371 ipmi_ret_t rc = IPMI_CC_INVALID;
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500372 *data_len = 0;
373 return rc;
374}
375
Ratan Guptab8e99552017-07-27 07:07:48 +0530376struct set_lan_t
377{
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500378 uint8_t channel;
379 uint8_t parameter;
380 uint8_t data[8]; // Per IPMI spec, not expecting more than this size
Patrick Venture0b02be92018-08-31 11:55:55 -0700381} __attribute__((packed));
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500382
Richard Marian Thomaiyar75b480b2019-01-22 00:20:15 +0530383ipmi_ret_t checkAndUpdateNetwork(int channel)
384{
385 auto channelConf = getChannelConfig(channel);
386 using namespace std::chrono_literals;
387 // time to wait before applying the network changes.
388 constexpr auto networkTimeout = 10000000us; // 10 sec
389
390 // Skip the timer. Expecting more update as we are in SET_IN_PROGRESS
391 if (channelConf->lan_set_in_progress == SET_IN_PROGRESS)
392 {
393 return IPMI_CC_OK;
394 }
395
396 // Start the timer, if it is direct single param update without
397 // SET_IN_PROGRESS or many params updated through SET_IN_PROGRESS to
398 // SET_COMPLETE Note: Even for update with SET_IN_PROGRESS, don't apply the
399 // changes immediately, as ipmitool sends each param individually
400 // through SET_IN_PROGRESS to SET_COMPLETE.
401 channelConf->flush = true;
402 if (!networkTimer)
403 {
404 log<level::ERR>("Network timer is not instantiated");
405 return IPMI_CC_UNSPECIFIED_ERROR;
406 }
407 // start the timer.
408 networkTimer->start(networkTimeout);
409 return IPMI_CC_OK;
410}
411
Patrick Venture0b02be92018-08-31 11:55:55 -0700412ipmi_ret_t ipmi_transport_set_lan(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Ratan Guptab8e99552017-07-27 07:07:48 +0530413 ipmi_request_t request,
414 ipmi_response_t response,
415 ipmi_data_len_t data_len,
416 ipmi_context_t context)
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500417{
418 ipmi_ret_t rc = IPMI_CC_OK;
419 *data_len = 0;
Nan Li3d0df912016-10-18 19:51:41 +0800420
Ratan Guptab8e99552017-07-27 07:07:48 +0530421 char ipaddr[INET_ADDRSTRLEN];
422 char netmask[INET_ADDRSTRLEN];
423 char gateway[INET_ADDRSTRLEN];
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500424
Ratan Guptab8e99552017-07-27 07:07:48 +0530425 auto reqptr = reinterpret_cast<const set_lan_t*>(request);
426 sdbusplus::bus::bus bus(ipmid_get_sd_bus_connection());
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500427
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800428 // channel number is the lower nibble
429 int channel = reqptr->channel & CHANNEL_MASK;
Johnathan Mantey74a21022018-12-13 13:17:56 -0800430 auto ethdevice = ipmi::getChannelName(channel);
Suryakanth Sekare4054402019-08-08 15:16:52 +0530431 ipmi::ChannelInfo chInfo;
432 ipmi::getChannelInfo(channel, chInfo);
433
434 if (ethdevice.empty() ||
435 chInfo.mediumType !=
436 static_cast<uint8_t>(ipmi::EChannelMediumType::lan8032))
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800437 {
438 return IPMI_CC_INVALID_FIELD_REQUEST;
439 }
440 auto channelConf = getChannelConfig(channel);
441
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800442 switch (static_cast<LanParam>(reqptr->parameter))
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500443 {
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800444 case LanParam::IP:
Hariharasubramanian R83951912016-01-20 07:06:36 -0600445 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700446 std::snprintf(ipaddr, INET_ADDRSTRLEN,
447 ipmi::network::IP_ADDRESS_FORMAT, reqptr->data[0],
448 reqptr->data[1], reqptr->data[2], reqptr->data[3]);
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500449
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800450 channelConf->ipaddr.assign(ipaddr);
Ratan Guptab8e99552017-07-27 07:07:48 +0530451 }
452 break;
453
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800454 case LanParam::IPSRC:
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530455 {
456 uint8_t ipsrc{};
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700457 std::memcpy(&ipsrc, reqptr->data, ipmi::network::IPSRC_SIZE_BYTE);
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800458 channelConf->ipsrc = static_cast<ipmi::network::IPOrigin>(ipsrc);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530459 }
460 break;
461
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800462 case LanParam::MAC:
Ratan Guptab8e99552017-07-27 07:07:48 +0530463 {
464 char mac[SIZE_MAC];
465
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700466 std::snprintf(mac, SIZE_MAC, ipmi::network::MAC_ADDRESS_FORMAT,
467 reqptr->data[0], reqptr->data[1], reqptr->data[2],
468 reqptr->data[3], reqptr->data[4], reqptr->data[5]);
Ratan Guptab8e99552017-07-27 07:07:48 +0530469
Patrick Venture0b02be92018-08-31 11:55:55 -0700470 auto macObjectInfo =
471 ipmi::getDbusObject(bus, ipmi::network::MAC_INTERFACE,
472 ipmi::network::ROOT, ethdevice);
Ratan Guptab8e99552017-07-27 07:07:48 +0530473
Patrick Venture0b02be92018-08-31 11:55:55 -0700474 ipmi::setDbusProperty(
475 bus, macObjectInfo.second, macObjectInfo.first,
476 ipmi::network::MAC_INTERFACE, "MACAddress", std::string(mac));
Ratan Guptab8e99552017-07-27 07:07:48 +0530477
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800478 channelConf->macAddress = mac;
Ratan Guptab8e99552017-07-27 07:07:48 +0530479 }
480 break;
481
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800482 case LanParam::SUBNET:
Ratan Guptab8e99552017-07-27 07:07:48 +0530483 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700484 std::snprintf(netmask, INET_ADDRSTRLEN,
485 ipmi::network::IP_ADDRESS_FORMAT, reqptr->data[0],
486 reqptr->data[1], reqptr->data[2], reqptr->data[3]);
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800487 channelConf->netmask.assign(netmask);
Ratan Guptab8e99552017-07-27 07:07:48 +0530488 }
489 break;
490
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800491 case LanParam::GATEWAY:
Ratan Guptab8e99552017-07-27 07:07:48 +0530492 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700493 std::snprintf(gateway, INET_ADDRSTRLEN,
494 ipmi::network::IP_ADDRESS_FORMAT, reqptr->data[0],
495 reqptr->data[1], reqptr->data[2], reqptr->data[3]);
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800496 channelConf->gateway.assign(gateway);
Ratan Guptab8e99552017-07-27 07:07:48 +0530497 }
498 break;
499
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800500 case LanParam::VLAN:
Ratan Gupta533d03b2017-07-30 10:39:22 +0530501 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700502 uint16_t vlan{};
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700503 std::memcpy(&vlan, reqptr->data, ipmi::network::VLAN_SIZE_BYTE);
Ratan Gupta533d03b2017-07-30 10:39:22 +0530504 // We are not storing the enable bit
505 // We assume that ipmitool always send enable
506 // bit as 1.
507 vlan = le16toh(vlan);
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800508 channelConf->vlanID = vlan;
Ratan Gupta533d03b2017-07-30 10:39:22 +0530509 }
510 break;
511
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800512 case LanParam::INPROGRESS:
Ratan Guptab8e99552017-07-27 07:07:48 +0530513 {
514 if (reqptr->data[0] == SET_COMPLETE)
515 {
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800516 channelConf->lan_set_in_progress = SET_COMPLETE;
Ratan Guptab8e99552017-07-27 07:07:48 +0530517
Patrick Venture0b02be92018-08-31 11:55:55 -0700518 log<level::INFO>(
519 "Network data from Cache",
520 entry("PREFIX=%s", channelConf->netmask.c_str()),
521 entry("ADDRESS=%s", channelConf->ipaddr.c_str()),
522 entry("GATEWAY=%s", channelConf->gateway.c_str()),
523 entry("VLAN=%d", channelConf->vlanID));
Ratan Guptab8e99552017-07-27 07:07:48 +0530524 }
525 else if (reqptr->data[0] == SET_IN_PROGRESS) // Set In Progress
526 {
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800527 channelConf->lan_set_in_progress = SET_IN_PROGRESS;
Ratan Guptab8e99552017-07-27 07:07:48 +0530528 }
Ratan Guptab8e99552017-07-27 07:07:48 +0530529 }
530 break;
531
532 default:
533 {
Ratan Guptab8e99552017-07-27 07:07:48 +0530534 rc = IPMI_CC_PARM_NOT_SUPPORTED;
Richard Marian Thomaiyar75b480b2019-01-22 00:20:15 +0530535 return rc;
Ratan Guptab8e99552017-07-27 07:07:48 +0530536 }
Ratan Guptab8e99552017-07-27 07:07:48 +0530537 }
Richard Marian Thomaiyar75b480b2019-01-22 00:20:15 +0530538 rc = checkAndUpdateNetwork(channel);
vishwa1eaea4f2016-02-26 11:57:40 -0600539
tomjose26e17732016-03-03 08:52:51 -0600540 return rc;
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500541}
542
Ratan Guptab8e99552017-07-27 07:07:48 +0530543struct get_lan_t
544{
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500545 uint8_t rev_channel;
546 uint8_t parameter;
547 uint8_t parameter_set;
548 uint8_t parameter_block;
Patrick Venture0b02be92018-08-31 11:55:55 -0700549} __attribute__((packed));
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500550
Patrick Venture0b02be92018-08-31 11:55:55 -0700551ipmi_ret_t ipmi_transport_get_lan(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Ratan Guptab8e99552017-07-27 07:07:48 +0530552 ipmi_request_t request,
553 ipmi_response_t response,
554 ipmi_data_len_t data_len,
555 ipmi_context_t context)
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500556{
557 ipmi_ret_t rc = IPMI_CC_OK;
558 *data_len = 0;
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500559 const uint8_t current_revision = 0x11; // Current rev per IPMI Spec 2.0
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500560
Patrick Venture0b02be92018-08-31 11:55:55 -0700561 get_lan_t* reqptr = (get_lan_t*)request;
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800562 // channel number is the lower nibble
563 int channel = reqptr->rev_channel & CHANNEL_MASK;
Suryakanth Sekare4054402019-08-08 15:16:52 +0530564 ipmi::ChannelInfo chInfo;
565 ipmi::getChannelInfo(channel, chInfo);
566 if (chInfo.mediumType !=
567 static_cast<uint8_t>(ipmi::EChannelMediumType::lan8032))
568 {
569 return IPMI_CC_INVALID_FIELD_REQUEST;
570 }
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500571
572 if (reqptr->rev_channel & 0x80) // Revision is bit 7
573 {
574 // Only current revision was requested
575 *data_len = sizeof(current_revision);
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700576 std::memcpy(response, &current_revision, *data_len);
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500577 return IPMI_CC_OK;
578 }
579
Tom Josepha30c8d32018-03-22 02:15:03 +0530580 static std::vector<uint8_t> cipherList;
581 static auto listInit = false;
582
583 if (!listInit)
584 {
585 try
586 {
587 cipherList = cipher::getCipherList();
588 listInit = true;
589 }
Patrick Venture0b02be92018-08-31 11:55:55 -0700590 catch (const std::exception& e)
Tom Josepha30c8d32018-03-22 02:15:03 +0530591 {
592 return IPMI_CC_UNSPECIFIED_ERROR;
593 }
594 }
595
Johnathan Mantey74a21022018-12-13 13:17:56 -0800596 auto ethdevice = ipmi::getChannelName(channel);
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800597 if (ethdevice.empty())
598 {
599 return IPMI_CC_INVALID_FIELD_REQUEST;
600 }
601 auto channelConf = getChannelConfig(channel);
602
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800603 LanParam param = static_cast<LanParam>(reqptr->parameter);
604 switch (param)
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500605 {
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800606 case LanParam::INPROGRESS:
vishwa1eaea4f2016-02-26 11:57:40 -0600607 {
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800608 uint8_t buf[] = {current_revision,
609 channelConf->lan_set_in_progress};
610 *data_len = sizeof(buf);
611 std::memcpy(response, &buf, *data_len);
612 break;
613 }
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800614 case LanParam::AUTHSUPPORT:
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800615 {
616 uint8_t buf[] = {current_revision, 0x04};
617 *data_len = sizeof(buf);
618 std::memcpy(response, &buf, *data_len);
619 break;
620 }
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800621 case LanParam::AUTHENABLES:
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800622 {
623 uint8_t buf[] = {current_revision, 0x04, 0x04, 0x04, 0x04, 0x04};
624 *data_len = sizeof(buf);
625 std::memcpy(response, &buf, *data_len);
626 break;
627 }
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800628 case LanParam::IP:
629 case LanParam::SUBNET:
630 case LanParam::GATEWAY:
631 case LanParam::MAC:
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800632 {
633 uint8_t buf[ipmi::network::MAC_ADDRESS_SIZE_BYTE + 1] = {};
634
635 *data_len = sizeof(current_revision);
636 std::memcpy(buf, &current_revision, *data_len);
637
638 if (getNetworkData(reqptr->parameter, &buf[1], channel) ==
639 IPMI_CC_OK)
Ratan Guptab8e99552017-07-27 07:07:48 +0530640 {
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800641 if (param == LanParam::MAC)
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800642 {
643 *data_len = sizeof(buf);
644 }
645 else
646 {
647 *data_len = ipmi::network::IPV4_ADDRESS_SIZE_BYTE + 1;
648 }
649 std::memcpy(response, &buf, *data_len);
Ratan Guptab8e99552017-07-27 07:07:48 +0530650 }
651 else
652 {
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800653 rc = IPMI_CC_UNSPECIFIED_ERROR;
Ratan Guptab8e99552017-07-27 07:07:48 +0530654 }
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800655 break;
Adriana Kobylak342df102016-02-10 13:48:16 -0600656 }
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800657 case LanParam::VLAN:
Hariharasubramanian R83951912016-01-20 07:06:36 -0600658 {
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800659 uint8_t buf[ipmi::network::VLAN_SIZE_BYTE + 1] = {};
Ratan Gupta533d03b2017-07-30 10:39:22 +0530660
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800661 *data_len = sizeof(current_revision);
662 std::memcpy(buf, &current_revision, *data_len);
663 if (getNetworkData(reqptr->parameter, &buf[1], channel) ==
664 IPMI_CC_OK)
665 {
666 *data_len = sizeof(buf);
667 std::memcpy(response, &buf, *data_len);
668 }
669 break;
Ratan Gupta533d03b2017-07-30 10:39:22 +0530670 }
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800671 case LanParam::IPSRC:
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530672 {
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800673 uint8_t buff[ipmi::network::IPSRC_SIZE_BYTE + 1] = {};
674 *data_len = sizeof(current_revision);
675 std::memcpy(buff, &current_revision, *data_len);
676 if (getNetworkData(reqptr->parameter, &buff[1], channel) ==
677 IPMI_CC_OK)
678 {
679 *data_len = sizeof(buff);
680 std::memcpy(response, &buff, *data_len);
681 }
682 break;
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530683 }
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800684 case LanParam::CIPHER_SUITE_COUNT:
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800685 {
686 *(static_cast<uint8_t*>(response)) = current_revision;
687 // Byte 1 is reserved byte and does not indicate a cipher suite ID,
688 // so no of cipher suite entry count is one less than the size of
689 // the vector
690 auto count = static_cast<uint8_t>(cipherList.size() - 1);
691 *(static_cast<uint8_t*>(response) + 1) = count;
692 *data_len = sizeof(current_revision) + sizeof(count);
693 break;
694 }
William A. Kennington IIIaab20232018-11-19 18:20:39 -0800695 case LanParam::CIPHER_SUITE_ENTRIES:
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800696 {
697 *(static_cast<uint8_t*>(response)) = current_revision;
698 // Byte 1 is reserved
699 std::copy_n(cipherList.data(), cipherList.size(),
700 static_cast<uint8_t*>(response) + 1);
701 *data_len = sizeof(current_revision) +
702 static_cast<uint8_t>(cipherList.size());
703 break;
704 }
705 default:
706 log<level::ERR>("Unsupported parameter",
707 entry("PARAMETER=0x%x", reqptr->parameter));
708 rc = IPMI_CC_PARM_NOT_SUPPORTED;
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500709 }
710
711 return rc;
712}
713
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530714void applyChanges(int channel)
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530715{
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530716 std::string ipaddress;
717 std::string gateway;
Patrick Venture0b02be92018-08-31 11:55:55 -0700718 uint8_t prefix{};
719 uint32_t vlanID{};
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530720 std::string networkInterfacePath;
721 ipmi::DbusObjectInfo ipObject;
722 ipmi::DbusObjectInfo systemObject;
723
Johnathan Mantey74a21022018-12-13 13:17:56 -0800724 auto ethdevice = ipmi::getChannelName(channel);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530725 if (ethdevice.empty())
726 {
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530727 log<level::ERR>("Unable to get the interface name",
728 entry("CHANNEL=%d", channel));
729 return;
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530730 }
731 auto ethIp = ethdevice + "/" + ipmi::network::IP_TYPE;
732 auto channelConf = getChannelConfig(channel);
733
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530734 try
735 {
736 sdbusplus::bus::bus bus(ipmid_get_sd_bus_connection());
737
738 log<level::INFO>("Network data from Cache",
739 entry("PREFIX=%s", channelConf->netmask.c_str()),
740 entry("ADDRESS=%s", channelConf->ipaddr.c_str()),
741 entry("GATEWAY=%s", channelConf->gateway.c_str()),
742 entry("VLAN=%d", channelConf->vlanID),
743 entry("IPSRC=%d", channelConf->ipsrc));
744 if (channelConf->vlanID != ipmi::network::VLAN_ID_MASK)
745 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700746 // get the first twelve bits which is vlan id
747 // not interested in rest of the bits.
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530748 channelConf->vlanID = le32toh(channelConf->vlanID);
749 vlanID = channelConf->vlanID & ipmi::network::VLAN_ID_MASK;
750 }
751
752 // if the asked ip src is DHCP then not interested in
753 // any given data except vlan.
754 if (channelConf->ipsrc != ipmi::network::IPOrigin::DHCP)
755 {
756 // always get the system object
Patrick Venture0b02be92018-08-31 11:55:55 -0700757 systemObject =
758 ipmi::getDbusObject(bus, ipmi::network::SYSTEMCONFIG_INTERFACE,
759 ipmi::network::ROOT);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530760
761 // the below code is to determine the mode of the interface
762 // as the handling is same, if the system is configured with
763 // DHCP or user has given all the data.
764 try
765 {
766 ipmi::ObjectTree ancestorMap;
767
Patrick Venture0b02be92018-08-31 11:55:55 -0700768 ipmi::InterfaceList interfaces{
769 ipmi::network::ETHERNET_INTERFACE};
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530770
771 // if the system is having ip object,then
772 // get the IP object.
Patrick Venture0b02be92018-08-31 11:55:55 -0700773 ipObject = ipmi::getIPObject(bus, ipmi::network::IP_INTERFACE,
774 ipmi::network::ROOT, ethIp);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530775
776 // Get the parent interface of the IP object.
777 try
778 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700779 ancestorMap = ipmi::getAllAncestors(bus, ipObject.first,
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530780 std::move(interfaces));
781 }
782 catch (InternalFailure& e)
783 {
784 // if unable to get the parent interface
785 // then commit the error and return.
786 log<level::ERR>("Unable to get the parent interface",
787 entry("PATH=%s", ipObject.first.c_str()),
788 entry("INTERFACE=%s",
789 ipmi::network::ETHERNET_INTERFACE));
790 commit<InternalFailure>();
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530791 channelConf->clear();
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530792 return;
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530793 }
794
795 networkInterfacePath = ancestorMap.begin()->first;
796 }
797 catch (InternalFailure& e)
798 {
799 // TODO Currently IPMI supports single interface,need to handle
800 // Multiple interface through
801 // https://github.com/openbmc/openbmc/issues/2138
802
803 // if there is no ip configured on the system,then
804 // get the network interface object.
Patrick Venture0b02be92018-08-31 11:55:55 -0700805 auto networkInterfaceObject =
806 ipmi::getDbusObject(bus, ipmi::network::ETHERNET_INTERFACE,
807 ipmi::network::ROOT, ethdevice);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530808
809 networkInterfacePath = std::move(networkInterfaceObject.first);
810 }
811
812 // get the configured mode on the system.
Vernon Maueryf442e112019-04-09 11:44:36 -0700813 auto enableDHCP = std::get<bool>(ipmi::getDbusProperty(
William A. Kennington III4c008022018-10-12 17:18:14 -0700814 bus, ipmi::network::SERVICE, networkInterfacePath,
815 ipmi::network::ETHERNET_INTERFACE, "DHCPEnabled"));
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530816
817 // if ip address source is not given then get the ip source mode
818 // from the system so that it can be applied later.
819 if (channelConf->ipsrc == ipmi::network::IPOrigin::UNSPECIFIED)
820 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700821 channelConf->ipsrc = (enableDHCP)
822 ? ipmi::network::IPOrigin::DHCP
823 : ipmi::network::IPOrigin::STATIC;
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530824 }
825
826 // check whether user has given all the data
827 // or the configured system interface is dhcp enabled,
828 // in both of the cases get the values from the cache.
829 if ((!channelConf->ipaddr.empty() &&
830 !channelConf->netmask.empty() &&
831 !channelConf->gateway.empty()) ||
832 (enableDHCP)) // configured system interface mode = DHCP
833 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700834 // convert mask into prefix
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530835 ipaddress = channelConf->ipaddr;
836 prefix = ipmi::network::toPrefix(AF_INET, channelConf->netmask);
837 gateway = channelConf->gateway;
838 }
839 else // asked ip src = static and configured system src = static
Patrick Venture0b02be92018-08-31 11:55:55 -0700840 // or partially given data.
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530841 {
842 // We have partial filled cache so get the remaining
843 // info from the system.
844
845 // Get the network data from the system as user has
846 // not given all the data then use the data fetched from the
847 // system but it is implementation dependent,IPMI spec doesn't
848 // force it.
849
850 // if system is not having any ip object don't throw error,
851 try
852 {
853 auto properties = ipmi::getAllDbusProperties(
Patrick Venture0b02be92018-08-31 11:55:55 -0700854 bus, ipObject.second, ipObject.first,
855 ipmi::network::IP_INTERFACE);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530856
Vernon Maueryf442e112019-04-09 11:44:36 -0700857 ipaddress =
858 channelConf->ipaddr.empty()
859 ? std::get<std::string>(properties["Address"])
860 : channelConf->ipaddr;
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530861
Patrick Venture0b02be92018-08-31 11:55:55 -0700862 prefix = channelConf->netmask.empty()
Vernon Maueryf442e112019-04-09 11:44:36 -0700863 ? std::get<uint8_t>(properties["PrefixLength"])
Patrick Venture0b02be92018-08-31 11:55:55 -0700864 : ipmi::network::toPrefix(
865 AF_INET, channelConf->netmask);
866 }
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530867 catch (InternalFailure& e)
868 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700869 log<level::INFO>(
870 "Failed to get IP object which matches",
871 entry("INTERFACE=%s", ipmi::network::IP_INTERFACE),
872 entry("MATCH=%s", ethIp.c_str()));
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530873 }
874
875 auto systemProperties = ipmi::getAllDbusProperties(
Patrick Venture0b02be92018-08-31 11:55:55 -0700876 bus, systemObject.second, systemObject.first,
877 ipmi::network::SYSTEMCONFIG_INTERFACE);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530878
William A. Kennington III4c008022018-10-12 17:18:14 -0700879 gateway = channelConf->gateway.empty()
Vernon Maueryf442e112019-04-09 11:44:36 -0700880 ? std::get<std::string>(
William A. Kennington III4c008022018-10-12 17:18:14 -0700881 systemProperties["DefaultGateway"])
882 : channelConf->gateway;
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530883 }
884 }
885
886 // Currently network manager doesn't support purging of all the
887 // ip addresses and the vlan interfaces from the parent interface,
888 // TODO once the support is there, will make the change here.
889 // https://github.com/openbmc/openbmc/issues/2141.
890
891 // TODO Currently IPMI supports single interface,need to handle
892 // Multiple interface through
893 // https://github.com/openbmc/openbmc/issues/2138
894
895 // instead of deleting all the vlan interfaces and
896 // all the ipv4 address,we will call reset method.
Patrick Venture0b02be92018-08-31 11:55:55 -0700897 // delete all the vlan interfaces
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530898
Patrick Venture0b02be92018-08-31 11:55:55 -0700899 ipmi::deleteAllDbusObjects(bus, ipmi::network::ROOT,
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530900 ipmi::network::VLAN_INTERFACE);
901
902 // set the interface mode to static
Patrick Venture0b02be92018-08-31 11:55:55 -0700903 auto networkInterfaceObject =
904 ipmi::getDbusObject(bus, ipmi::network::ETHERNET_INTERFACE,
905 ipmi::network::ROOT, ethdevice);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530906
907 // setting the physical interface mode to static.
Patrick Venture0b02be92018-08-31 11:55:55 -0700908 ipmi::setDbusProperty(
909 bus, ipmi::network::SERVICE, networkInterfaceObject.first,
910 ipmi::network::ETHERNET_INTERFACE, "DHCPEnabled", false);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530911
912 networkInterfacePath = networkInterfaceObject.first;
913
Patrick Venture0b02be92018-08-31 11:55:55 -0700914 // delete all the ipv4 addresses
915 ipmi::deleteAllDbusObjects(bus, ipmi::network::ROOT,
916 ipmi::network::IP_INTERFACE, ethIp);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530917
918 if (vlanID)
919 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700920 ipmi::network::createVLAN(bus, ipmi::network::SERVICE,
921 ipmi::network::ROOT, ethdevice, vlanID);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530922
923 auto networkInterfaceObject = ipmi::getDbusObject(
Patrick Venture0b02be92018-08-31 11:55:55 -0700924 bus, ipmi::network::VLAN_INTERFACE, ipmi::network::ROOT);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530925
Patrick Venture0b02be92018-08-31 11:55:55 -0700926 networkInterfacePath = networkInterfaceObject.first;
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530927 }
928
929 if (channelConf->ipsrc == ipmi::network::IPOrigin::DHCP)
930 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700931 ipmi::setDbusProperty(
932 bus, ipmi::network::SERVICE, networkInterfacePath,
933 ipmi::network::ETHERNET_INTERFACE, "DHCPEnabled", true);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530934 }
935 else
936 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700937 // change the mode to static
938 ipmi::setDbusProperty(
939 bus, ipmi::network::SERVICE, networkInterfacePath,
940 ipmi::network::ETHERNET_INTERFACE, "DHCPEnabled", false);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530941
942 if (!ipaddress.empty())
943 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700944 ipmi::network::createIP(bus, ipmi::network::SERVICE,
945 networkInterfacePath, ipv4Protocol,
946 ipaddress, prefix);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530947 }
948
949 if (!gateway.empty())
950 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700951 ipmi::setDbusProperty(bus, systemObject.second,
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530952 systemObject.first,
953 ipmi::network::SYSTEMCONFIG_INTERFACE,
Patrick Venture0b02be92018-08-31 11:55:55 -0700954 "DefaultGateway", std::string(gateway));
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530955 }
956 }
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530957 }
Vernon Mauery7a614182018-11-27 12:54:52 -0800958 catch (sdbusplus::exception::exception& e)
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530959 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700960 log<level::ERR>(
961 "Failed to set network data", entry("PREFIX=%d", prefix),
962 entry("ADDRESS=%s", ipaddress.c_str()),
963 entry("GATEWAY=%s", gateway.c_str()), entry("VLANID=%d", vlanID),
964 entry("IPSRC=%d", channelConf->ipsrc));
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530965
966 commit<InternalFailure>();
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530967 }
968
969 channelConf->clear();
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530970}
971
972void commitNetworkChanges()
973{
Patrick Venture0b02be92018-08-31 11:55:55 -0700974 for (const auto& channel : channelConfig)
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530975 {
976 if (channel.second->flush)
977 {
978 applyChanges(channel.first);
979 }
980 }
981}
982
983void createNetworkTimer()
984{
985 if (!networkTimer)
986 {
987 std::function<void()> networkTimerCallback(
Patrick Venture0b02be92018-08-31 11:55:55 -0700988 std::bind(&commitNetworkChanges));
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530989
Vernon Mauery1181af72018-10-08 12:05:00 -0700990 networkTimer = std::make_unique<phosphor::Timer>(networkTimerCallback);
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530991 }
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530992}
993
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500994void register_netfn_transport_functions()
995{
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530996 // As this timer is only for transport handler
997 // so creating it here.
998 createNetworkTimer();
Tom05732372016-09-06 17:21:23 +0530999 // <Wildcard Command>
Patrick Venture0b02be92018-08-31 11:55:55 -07001000 ipmi_register_callback(NETFUN_TRANSPORT, IPMI_CMD_WILDCARD, NULL,
1001 ipmi_transport_wildcard, PRIVILEGE_USER);
Adriana Kobylak5d6481f2015-10-29 21:44:55 -05001002
Tom05732372016-09-06 17:21:23 +05301003 // <Set LAN Configuration Parameters>
Patrick Venture0b02be92018-08-31 11:55:55 -07001004 ipmi_register_callback(NETFUN_TRANSPORT, IPMI_CMD_SET_LAN, NULL,
1005 ipmi_transport_set_lan, PRIVILEGE_ADMIN);
Adriana Kobylak5d6481f2015-10-29 21:44:55 -05001006
Tom05732372016-09-06 17:21:23 +05301007 // <Get LAN Configuration Parameters>
Patrick Venture0b02be92018-08-31 11:55:55 -07001008 ipmi_register_callback(NETFUN_TRANSPORT, IPMI_CMD_GET_LAN, NULL,
1009 ipmi_transport_get_lan, PRIVILEGE_OPERATOR);
Adriana Kobylak5d6481f2015-10-29 21:44:55 -05001010
1011 return;
1012}