blob: c6a403177a8e896a9084b9be37e925a089ead800 [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"
4#include "ipmid.hpp"
5#include "net.hpp"
Patrick Venture3a5071a2018-09-12 13:27:42 -07006#include "utils.hpp"
7
Patrick Venture0b02be92018-08-31 11:55:55 -07008#include <arpa/inet.h>
Patrick Venture3a5071a2018-09-12 13:27:42 -07009#include <host-ipmid/ipmid-api.h>
Patrick Venture0b02be92018-08-31 11:55:55 -070010
11#include <chrono>
12#include <fstream>
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 Mauery185b9f82018-07-20 10:52:36 -070027#if __has_include(<filesystem>)
28#include <filesystem>
29#elif __has_include(<experimental/filesystem>)
Ratan Guptacc6cdbf2017-09-01 23:06:25 +053030#include <experimental/filesystem>
Patrick Venture0b02be92018-08-31 11:55:55 -070031namespace std
32{
33// splice experimental::filesystem into std
34namespace filesystem = std::experimental::filesystem;
35} // namespace std
Vernon Mauery185b9f82018-07-20 10:52:36 -070036#else
Patrick Venture0b02be92018-08-31 11:55:55 -070037#error filesystem not available
Vernon Mauery185b9f82018-07-20 10:52:36 -070038#endif
Adriana Kobylak5d6481f2015-10-29 21:44:55 -050039
Vernon Mauery1181af72018-10-08 12:05:00 -070040extern std::unique_ptr<phosphor::Timer> networkTimer;
Ratan Gupta1247e0b2018-03-07 10:47:25 +053041
Patrick Venture0b02be92018-08-31 11:55:55 -070042const int SIZE_MAC = 18; // xx:xx:xx:xx:xx:xx
Ratan Gupta1247e0b2018-03-07 10:47:25 +053043constexpr auto ipv4Protocol = "xyz.openbmc_project.Network.IP.Protocol.IPv4";
Adriana Kobylake08fbc62016-02-09 16:17:23 -060044
Patrick Venturec7c1c3c2017-11-15 14:29:18 -080045std::map<int, std::unique_ptr<struct ChannelConfig_t>> channelConfig;
Hariharasubramanian R83951912016-01-20 07:06:36 -060046
Ratan Guptab8e99552017-07-27 07:07:48 +053047using namespace phosphor::logging;
48using namespace sdbusplus::xyz::openbmc_project::Common::Error;
Ratan Gupta7a7f0122018-03-07 12:31:05 +053049
Vernon Mauery185b9f82018-07-20 10:52:36 -070050namespace fs = std::filesystem;
William A. Kennington III4c008022018-10-12 17:18:14 -070051namespace variant_ns = sdbusplus::message::variant_ns;
Hariharasubramanian R83951912016-01-20 07:06:36 -060052
Adriana Kobylak5d6481f2015-10-29 21:44:55 -050053void register_netfn_transport_functions() __attribute__((constructor));
54
Patrick Venturec7c1c3c2017-11-15 14:29:18 -080055struct ChannelConfig_t* getChannelConfig(int channel)
56{
57 auto item = channelConfig.find(channel);
58 if (item == channelConfig.end())
59 {
60 channelConfig[channel] = std::make_unique<struct ChannelConfig_t>();
61 }
62
63 return channelConfig[channel].get();
64}
65
Patrick Venture0b02be92018-08-31 11:55:55 -070066// Helper Function to get IP Address/NetMask/Gateway/MAC Address from Network
67// Manager or Cache based on Set-In-Progress State
Patrick Venturec7c1c3c2017-11-15 14:29:18 -080068ipmi_ret_t getNetworkData(uint8_t lan_param, uint8_t* data, int channel)
tomjose26e17732016-03-03 08:52:51 -060069{
tomjose26e17732016-03-03 08:52:51 -060070 ipmi_ret_t rc = IPMI_CC_OK;
Ratan Guptab8e99552017-07-27 07:07:48 +053071 sdbusplus::bus::bus bus(ipmid_get_sd_bus_connection());
Ratan Gupta533d03b2017-07-30 10:39:22 +053072
Patrick Venturec7c1c3c2017-11-15 14:29:18 -080073 auto ethdevice = ipmi::network::ChanneltoEthernet(channel);
74 // if ethdevice is an empty string they weren't expecting this channel.
75 if (ethdevice.empty())
76 {
77 // TODO: return error from getNetworkData()
78 return IPMI_CC_INVALID_FIELD_REQUEST;
79 }
80 auto ethIP = ethdevice + "/" + ipmi::network::IP_TYPE;
81 auto channelConf = getChannelConfig(channel);
82
Ratan Guptab8e99552017-07-27 07:07:48 +053083 try
tomjose26e17732016-03-03 08:52:51 -060084 {
Ratan Guptab8e99552017-07-27 07:07:48 +053085 switch (lan_param)
tomjose26e17732016-03-03 08:52:51 -060086 {
Ratan Guptab8e99552017-07-27 07:07:48 +053087 case LAN_PARM_IP:
88 {
89 std::string ipaddress;
Patrick Venturec7c1c3c2017-11-15 14:29:18 -080090 if (channelConf->lan_set_in_progress == SET_COMPLETE)
Ratan Guptab8e99552017-07-27 07:07:48 +053091 {
Ratan Guptacc6cdbf2017-09-01 23:06:25 +053092 try
93 {
Patrick Venture0b02be92018-08-31 11:55:55 -070094 auto ipObjectInfo =
95 ipmi::getIPObject(bus, ipmi::network::IP_INTERFACE,
96 ipmi::network::ROOT, ethIP);
Ratan Guptadd646202017-11-21 17:46:59 +053097
98 auto properties = ipmi::getAllDbusProperties(
Patrick Venture0b02be92018-08-31 11:55:55 -070099 bus, ipObjectInfo.second, ipObjectInfo.first,
100 ipmi::network::IP_INTERFACE);
Ratan Guptadd646202017-11-21 17:46:59 +0530101
William A. Kennington III4c008022018-10-12 17:18:14 -0700102 ipaddress =
103 variant_ns::get<std::string>(properties["Address"]);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530104 }
Gunnar Millsc9fa69e2018-04-08 16:35:25 -0500105 // ignore the exception, as it is a valid condition that
106 // the system is not configured with any IP.
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530107 catch (InternalFailure& e)
108 {
109 // nothing to do.
110 }
Ratan Guptab8e99552017-07-27 07:07:48 +0530111 }
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800112 else if (channelConf->lan_set_in_progress == SET_IN_PROGRESS)
Ratan Guptab8e99552017-07-27 07:07:48 +0530113 {
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800114 ipaddress = channelConf->ipaddr;
Ratan Guptab8e99552017-07-27 07:07:48 +0530115 }
116
117 inet_pton(AF_INET, ipaddress.c_str(),
118 reinterpret_cast<void*>(data));
119 }
120 break;
121
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530122 case LAN_PARM_IPSRC:
Ratan Guptab8e99552017-07-27 07:07:48 +0530123 {
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530124 std::string networkInterfacePath;
125
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800126 if (channelConf->lan_set_in_progress == SET_COMPLETE)
Ratan Guptab8e99552017-07-27 07:07:48 +0530127 {
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530128 try
129 {
130 ipmi::ObjectTree ancestorMap;
131 // if the system is having ip object,then
132 // get the IP object.
133 auto ipObject = ipmi::getDbusObject(
Patrick Venture0b02be92018-08-31 11:55:55 -0700134 bus, ipmi::network::IP_INTERFACE,
135 ipmi::network::ROOT, ethIP);
Ratan Guptab8e99552017-07-27 07:07:48 +0530136
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530137 // Get the parent interface of the IP object.
138 try
139 {
140 ipmi::InterfaceList interfaces;
141 interfaces.emplace_back(
Patrick Venture0b02be92018-08-31 11:55:55 -0700142 ipmi::network::ETHERNET_INTERFACE);
Ratan Guptab8e99552017-07-27 07:07:48 +0530143
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530144 ancestorMap = ipmi::getAllAncestors(
Patrick Venture0b02be92018-08-31 11:55:55 -0700145 bus, ipObject.first, std::move(interfaces));
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530146 }
147 catch (InternalFailure& e)
148 {
149 // if unable to get the parent interface
150 // then commit the error and return.
Patrick Venture0b02be92018-08-31 11:55:55 -0700151 log<level::ERR>(
152 "Unable to get the parent interface",
153 entry("PATH=%s", ipObject.first.c_str()),
154 entry("INTERFACE=%s",
155 ipmi::network::ETHERNET_INTERFACE));
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530156 break;
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530157 }
158 // for an ip object there would be single parent
159 // interface.
160 networkInterfacePath = ancestorMap.begin()->first;
161 }
162 catch (InternalFailure& e)
163 {
164 // if there is no ip configured on the system,then
165 // get the network interface object.
166 auto networkInterfaceObject = ipmi::getDbusObject(
Patrick Venture0b02be92018-08-31 11:55:55 -0700167 bus, ipmi::network::ETHERNET_INTERFACE,
168 ipmi::network::ROOT, ethdevice);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530169
170 networkInterfacePath = networkInterfaceObject.first;
171 }
172
173 auto variant = ipmi::getDbusProperty(
Patrick Venture0b02be92018-08-31 11:55:55 -0700174 bus, ipmi::network::SERVICE, networkInterfacePath,
175 ipmi::network::ETHERNET_INTERFACE, "DHCPEnabled");
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530176
William A. Kennington III4c008022018-10-12 17:18:14 -0700177 auto dhcpEnabled = variant_ns::get<bool>(variant);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530178 // As per IPMI spec 2=>DHCP, 1=STATIC
Patrick Venture0b02be92018-08-31 11:55:55 -0700179 auto ipsrc = dhcpEnabled ? ipmi::network::IPOrigin::DHCP
180 : ipmi::network::IPOrigin::STATIC;
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530181
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700182 std::memcpy(data, &ipsrc, ipmi::network::IPSRC_SIZE_BYTE);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530183 }
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800184 else if (channelConf->lan_set_in_progress == SET_IN_PROGRESS)
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530185 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700186 std::memcpy(data, &(channelConf->ipsrc),
187 ipmi::network::IPSRC_SIZE_BYTE);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530188 }
189 }
190 break;
191
192 case LAN_PARM_SUBNET:
193 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700194 unsigned long mask{};
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800195 if (channelConf->lan_set_in_progress == SET_COMPLETE)
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530196 {
197 try
198 {
Ratan Guptadd646202017-11-21 17:46:59 +0530199 auto ipObjectInfo = ipmi::getIPObject(
Patrick Venture0b02be92018-08-31 11:55:55 -0700200 bus, ipmi::network::IP_INTERFACE,
201 ipmi::network::ROOT, ipmi::network::IP_TYPE);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530202
203 auto properties = ipmi::getAllDbusProperties(
Patrick Venture0b02be92018-08-31 11:55:55 -0700204 bus, ipObjectInfo.second, ipObjectInfo.first,
205 ipmi::network::IP_INTERFACE);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530206
William A. Kennington III4c008022018-10-12 17:18:14 -0700207 auto prefix = variant_ns::get<uint8_t>(
208 properties["PrefixLength"]);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530209 mask = ipmi::network::MASK_32_BIT;
210 mask = htonl(mask << (ipmi::network::BITS_32 - prefix));
211 }
Gunnar Millsc9fa69e2018-04-08 16:35:25 -0500212 // ignore the exception, as it is a valid condition that
213 // the system is not configured with any IP.
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530214 catch (InternalFailure& e)
215 {
216 // nothing to do
217 }
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700218 std::memcpy(data, &mask,
219 ipmi::network::IPV4_ADDRESS_SIZE_BYTE);
Ratan Guptab8e99552017-07-27 07:07:48 +0530220 }
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800221 else if (channelConf->lan_set_in_progress == SET_IN_PROGRESS)
Ratan Guptab8e99552017-07-27 07:07:48 +0530222 {
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800223 inet_pton(AF_INET, channelConf->netmask.c_str(),
Ratan Guptab8e99552017-07-27 07:07:48 +0530224 reinterpret_cast<void*>(data));
Ratan Guptab8e99552017-07-27 07:07:48 +0530225 }
Ratan Guptab8e99552017-07-27 07:07:48 +0530226 }
227 break;
228
229 case LAN_PARM_GATEWAY:
230 {
231 std::string gateway;
232
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800233 if (channelConf->lan_set_in_progress == SET_COMPLETE)
Ratan Guptab8e99552017-07-27 07:07:48 +0530234 {
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530235 try
236 {
237 auto systemObject = ipmi::getDbusObject(
Patrick Venture0b02be92018-08-31 11:55:55 -0700238 bus, ipmi::network::SYSTEMCONFIG_INTERFACE,
239 ipmi::network::ROOT);
Ratan Guptab8e99552017-07-27 07:07:48 +0530240
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530241 auto systemProperties = ipmi::getAllDbusProperties(
Patrick Venture0b02be92018-08-31 11:55:55 -0700242 bus, systemObject.second, systemObject.first,
243 ipmi::network::SYSTEMCONFIG_INTERFACE);
Ratan Guptab8e99552017-07-27 07:07:48 +0530244
William A. Kennington III4c008022018-10-12 17:18:14 -0700245 gateway = variant_ns::get<std::string>(
246 systemProperties["DefaultGateway"]);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530247 }
Gunnar Millsc9fa69e2018-04-08 16:35:25 -0500248 // ignore the exception, as it is a valid condition that
249 // the system is not configured with any IP.
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530250 catch (InternalFailure& e)
251 {
252 // nothing to do
253 }
Ratan Guptab8e99552017-07-27 07:07:48 +0530254 }
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800255 else if (channelConf->lan_set_in_progress == SET_IN_PROGRESS)
Ratan Guptab8e99552017-07-27 07:07:48 +0530256 {
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800257 gateway = channelConf->gateway;
Ratan Guptab8e99552017-07-27 07:07:48 +0530258 }
259
260 inet_pton(AF_INET, gateway.c_str(),
261 reinterpret_cast<void*>(data));
Ratan Guptab8e99552017-07-27 07:07:48 +0530262 }
263 break;
264
265 case LAN_PARM_MAC:
266 {
267 std::string macAddress;
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800268 if (channelConf->lan_set_in_progress == SET_COMPLETE)
Ratan Guptab8e99552017-07-27 07:07:48 +0530269 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700270 auto macObjectInfo =
271 ipmi::getDbusObject(bus, ipmi::network::MAC_INTERFACE,
272 ipmi::network::ROOT, ethdevice);
Ratan Guptab8e99552017-07-27 07:07:48 +0530273
274 auto variant = ipmi::getDbusProperty(
Patrick Venture0b02be92018-08-31 11:55:55 -0700275 bus, macObjectInfo.second, macObjectInfo.first,
276 ipmi::network::MAC_INTERFACE, "MACAddress");
Ratan Guptab8e99552017-07-27 07:07:48 +0530277
William A. Kennington III4c008022018-10-12 17:18:14 -0700278 macAddress = variant_ns::get<std::string>(variant);
Ratan Guptab8e99552017-07-27 07:07:48 +0530279 }
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800280 else if (channelConf->lan_set_in_progress == SET_IN_PROGRESS)
Ratan Guptab8e99552017-07-27 07:07:48 +0530281 {
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800282 macAddress = channelConf->macAddress;
Ratan Guptab8e99552017-07-27 07:07:48 +0530283 }
284
285 sscanf(macAddress.c_str(), ipmi::network::MAC_ADDRESS_FORMAT,
Patrick Venture0b02be92018-08-31 11:55:55 -0700286 (data), (data + 1), (data + 2), (data + 3), (data + 4),
Ratan Guptab8e99552017-07-27 07:07:48 +0530287 (data + 5));
288 }
289 break;
290
Ratan Gupta533d03b2017-07-30 10:39:22 +0530291 case LAN_PARM_VLAN:
292 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700293 uint16_t vlanID{};
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800294 if (channelConf->lan_set_in_progress == SET_COMPLETE)
Ratan Gupta533d03b2017-07-30 10:39:22 +0530295 {
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530296 try
Ratan Gupta533d03b2017-07-30 10:39:22 +0530297 {
Ratan Guptadd646202017-11-21 17:46:59 +0530298 auto ipObjectInfo = ipmi::getIPObject(
Patrick Venture0b02be92018-08-31 11:55:55 -0700299 bus, ipmi::network::IP_INTERFACE,
300 ipmi::network::ROOT, ipmi::network::IP_TYPE);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530301
302 vlanID = static_cast<uint16_t>(
Patrick Venture0b02be92018-08-31 11:55:55 -0700303 ipmi::network::getVLAN(ipObjectInfo.first));
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530304
305 vlanID = htole16(vlanID);
306
307 if (vlanID)
308 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700309 // Enable the 16th bit
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530310 vlanID |= htole16(ipmi::network::VLAN_ENABLE_MASK);
311 }
312 }
Gunnar Millsc9fa69e2018-04-08 16:35:25 -0500313 // ignore the exception, as it is a valid condition that
314 // the system is not configured with any IP.
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530315 catch (InternalFailure& e)
316 {
317 // nothing to do
Ratan Gupta533d03b2017-07-30 10:39:22 +0530318 }
319
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700320 std::memcpy(data, &vlanID, ipmi::network::VLAN_SIZE_BYTE);
Ratan Gupta533d03b2017-07-30 10:39:22 +0530321 }
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800322 else if (channelConf->lan_set_in_progress == SET_IN_PROGRESS)
Ratan Gupta533d03b2017-07-30 10:39:22 +0530323 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700324 std::memcpy(data, &(channelConf->vlanID),
325 ipmi::network::VLAN_SIZE_BYTE);
Ratan Gupta533d03b2017-07-30 10:39:22 +0530326 }
327 }
328 break;
329
Ratan Guptab8e99552017-07-27 07:07:48 +0530330 default:
331 rc = IPMI_CC_PARM_OUT_OF_RANGE;
tomjose26e17732016-03-03 08:52:51 -0600332 }
333 }
Ratan Guptab8e99552017-07-27 07:07:48 +0530334 catch (InternalFailure& e)
tomjose26e17732016-03-03 08:52:51 -0600335 {
Ratan Guptab8e99552017-07-27 07:07:48 +0530336 commit<InternalFailure>();
337 rc = IPMI_CC_UNSPECIFIED_ERROR;
338 return rc;
tomjose26e17732016-03-03 08:52:51 -0600339 }
tomjose26e17732016-03-03 08:52:51 -0600340 return rc;
341}
342
Tom Josepha30c8d32018-03-22 02:15:03 +0530343namespace cipher
344{
345
346std::vector<uint8_t> getCipherList()
347{
348 std::vector<uint8_t> cipherList;
349
350 std::ifstream jsonFile(configFile);
351 if (!jsonFile.is_open())
352 {
353 log<level::ERR>("Channel Cipher suites file not found");
354 elog<InternalFailure>();
355 }
356
357 auto data = Json::parse(jsonFile, nullptr, false);
358 if (data.is_discarded())
359 {
360 log<level::ERR>("Parsing channel cipher suites JSON failed");
361 elog<InternalFailure>();
362 }
363
364 // Byte 1 is reserved
365 cipherList.push_back(0x00);
366
367 for (const auto& record : data)
368 {
369 cipherList.push_back(record.value(cipher, 0));
370 }
371
372 return cipherList;
373}
374
Patrick Venture0b02be92018-08-31 11:55:55 -0700375} // namespace cipher
Tom Josepha30c8d32018-03-22 02:15:03 +0530376
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500377ipmi_ret_t ipmi_transport_wildcard(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Patrick Venture0b02be92018-08-31 11:55:55 -0700378 ipmi_request_t request,
379 ipmi_response_t response,
380 ipmi_data_len_t data_len,
381 ipmi_context_t context)
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500382{
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500383 // Status code.
Nan Li70aa8d92016-08-29 00:11:10 +0800384 ipmi_ret_t rc = IPMI_CC_INVALID;
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500385 *data_len = 0;
386 return rc;
387}
388
Ratan Guptab8e99552017-07-27 07:07:48 +0530389struct set_lan_t
390{
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500391 uint8_t channel;
392 uint8_t parameter;
393 uint8_t data[8]; // Per IPMI spec, not expecting more than this size
Patrick Venture0b02be92018-08-31 11:55:55 -0700394} __attribute__((packed));
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500395
Patrick Venture0b02be92018-08-31 11:55:55 -0700396ipmi_ret_t ipmi_transport_set_lan(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Ratan Guptab8e99552017-07-27 07:07:48 +0530397 ipmi_request_t request,
398 ipmi_response_t response,
399 ipmi_data_len_t data_len,
400 ipmi_context_t context)
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500401{
402 ipmi_ret_t rc = IPMI_CC_OK;
403 *data_len = 0;
Nan Li3d0df912016-10-18 19:51:41 +0800404
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530405 using namespace std::chrono_literals;
406
407 // time to wait before applying the network changes.
408 constexpr auto networkTimeout = 10000000us; // 10 sec
409
Ratan Guptab8e99552017-07-27 07:07:48 +0530410 char ipaddr[INET_ADDRSTRLEN];
411 char netmask[INET_ADDRSTRLEN];
412 char gateway[INET_ADDRSTRLEN];
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500413
Ratan Guptab8e99552017-07-27 07:07:48 +0530414 auto reqptr = reinterpret_cast<const set_lan_t*>(request);
415 sdbusplus::bus::bus bus(ipmid_get_sd_bus_connection());
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500416
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800417 // channel number is the lower nibble
418 int channel = reqptr->channel & CHANNEL_MASK;
419 auto ethdevice = ipmi::network::ChanneltoEthernet(channel);
420 if (ethdevice.empty())
421 {
422 return IPMI_CC_INVALID_FIELD_REQUEST;
423 }
424 auto channelConf = getChannelConfig(channel);
425
Ratan Guptab8e99552017-07-27 07:07:48 +0530426 switch (reqptr->parameter)
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500427 {
Ratan Guptab8e99552017-07-27 07:07:48 +0530428 case LAN_PARM_IP:
Hariharasubramanian R83951912016-01-20 07:06:36 -0600429 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700430 std::snprintf(ipaddr, INET_ADDRSTRLEN,
431 ipmi::network::IP_ADDRESS_FORMAT, reqptr->data[0],
432 reqptr->data[1], reqptr->data[2], reqptr->data[3]);
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500433
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800434 channelConf->ipaddr.assign(ipaddr);
Ratan Guptab8e99552017-07-27 07:07:48 +0530435 }
436 break;
437
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530438 case LAN_PARM_IPSRC:
439 {
440 uint8_t ipsrc{};
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700441 std::memcpy(&ipsrc, reqptr->data, ipmi::network::IPSRC_SIZE_BYTE);
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800442 channelConf->ipsrc = static_cast<ipmi::network::IPOrigin>(ipsrc);
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530443 }
444 break;
445
Ratan Guptab8e99552017-07-27 07:07:48 +0530446 case LAN_PARM_MAC:
447 {
448 char mac[SIZE_MAC];
449
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700450 std::snprintf(mac, SIZE_MAC, ipmi::network::MAC_ADDRESS_FORMAT,
451 reqptr->data[0], reqptr->data[1], reqptr->data[2],
452 reqptr->data[3], reqptr->data[4], reqptr->data[5]);
Ratan Guptab8e99552017-07-27 07:07:48 +0530453
Patrick Venture0b02be92018-08-31 11:55:55 -0700454 auto macObjectInfo =
455 ipmi::getDbusObject(bus, ipmi::network::MAC_INTERFACE,
456 ipmi::network::ROOT, ethdevice);
Ratan Guptab8e99552017-07-27 07:07:48 +0530457
Patrick Venture0b02be92018-08-31 11:55:55 -0700458 ipmi::setDbusProperty(
459 bus, macObjectInfo.second, macObjectInfo.first,
460 ipmi::network::MAC_INTERFACE, "MACAddress", std::string(mac));
Ratan Guptab8e99552017-07-27 07:07:48 +0530461
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800462 channelConf->macAddress = mac;
Ratan Guptab8e99552017-07-27 07:07:48 +0530463 }
464 break;
465
466 case LAN_PARM_SUBNET:
467 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700468 std::snprintf(netmask, INET_ADDRSTRLEN,
469 ipmi::network::IP_ADDRESS_FORMAT, reqptr->data[0],
470 reqptr->data[1], reqptr->data[2], reqptr->data[3]);
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800471 channelConf->netmask.assign(netmask);
Ratan Guptab8e99552017-07-27 07:07:48 +0530472 }
473 break;
474
475 case LAN_PARM_GATEWAY:
476 {
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700477 std::snprintf(gateway, INET_ADDRSTRLEN,
478 ipmi::network::IP_ADDRESS_FORMAT, reqptr->data[0],
479 reqptr->data[1], reqptr->data[2], reqptr->data[3]);
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800480 channelConf->gateway.assign(gateway);
Ratan Guptab8e99552017-07-27 07:07:48 +0530481 }
482 break;
483
Ratan Gupta533d03b2017-07-30 10:39:22 +0530484 case LAN_PARM_VLAN:
485 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700486 uint16_t vlan{};
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700487 std::memcpy(&vlan, reqptr->data, ipmi::network::VLAN_SIZE_BYTE);
Ratan Gupta533d03b2017-07-30 10:39:22 +0530488 // We are not storing the enable bit
489 // We assume that ipmitool always send enable
490 // bit as 1.
491 vlan = le16toh(vlan);
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800492 channelConf->vlanID = vlan;
Ratan Gupta533d03b2017-07-30 10:39:22 +0530493 }
494 break;
495
Ratan Guptab8e99552017-07-27 07:07:48 +0530496 case LAN_PARM_INPROGRESS:
497 {
498 if (reqptr->data[0] == SET_COMPLETE)
499 {
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800500 channelConf->lan_set_in_progress = SET_COMPLETE;
Ratan Guptab8e99552017-07-27 07:07:48 +0530501
Patrick Venture0b02be92018-08-31 11:55:55 -0700502 log<level::INFO>(
503 "Network data from Cache",
504 entry("PREFIX=%s", channelConf->netmask.c_str()),
505 entry("ADDRESS=%s", channelConf->ipaddr.c_str()),
506 entry("GATEWAY=%s", channelConf->gateway.c_str()),
507 entry("VLAN=%d", channelConf->vlanID));
Ratan Guptab8e99552017-07-27 07:07:48 +0530508
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530509 if (!networkTimer)
510 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700511 log<level::ERR>("Network timer is not instantiated");
512 return IPMI_CC_UNSPECIFIED_ERROR;
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530513 }
514
515 // start/restart the timer
Vernon Mauery1181af72018-10-08 12:05:00 -0700516 networkTimer->start(networkTimeout);
Ratan Guptab8e99552017-07-27 07:07:48 +0530517 }
518 else if (reqptr->data[0] == SET_IN_PROGRESS) // Set In Progress
519 {
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800520 channelConf->lan_set_in_progress = SET_IN_PROGRESS;
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530521 channelConf->flush = true;
Ratan Guptab8e99552017-07-27 07:07:48 +0530522 }
Ratan Guptab8e99552017-07-27 07:07:48 +0530523 }
524 break;
525
526 default:
527 {
Ratan Guptab8e99552017-07-27 07:07:48 +0530528 rc = IPMI_CC_PARM_NOT_SUPPORTED;
529 }
Ratan Guptab8e99552017-07-27 07:07:48 +0530530 }
vishwa1eaea4f2016-02-26 11:57:40 -0600531
tomjose26e17732016-03-03 08:52:51 -0600532 return rc;
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500533}
534
Ratan Guptab8e99552017-07-27 07:07:48 +0530535struct get_lan_t
536{
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500537 uint8_t rev_channel;
538 uint8_t parameter;
539 uint8_t parameter_set;
540 uint8_t parameter_block;
Patrick Venture0b02be92018-08-31 11:55:55 -0700541} __attribute__((packed));
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500542
Patrick Venture0b02be92018-08-31 11:55:55 -0700543ipmi_ret_t ipmi_transport_get_lan(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
Ratan Guptab8e99552017-07-27 07:07:48 +0530544 ipmi_request_t request,
545 ipmi_response_t response,
546 ipmi_data_len_t data_len,
547 ipmi_context_t context)
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500548{
549 ipmi_ret_t rc = IPMI_CC_OK;
550 *data_len = 0;
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500551 const uint8_t current_revision = 0x11; // Current rev per IPMI Spec 2.0
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500552
Patrick Venture0b02be92018-08-31 11:55:55 -0700553 get_lan_t* reqptr = (get_lan_t*)request;
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800554 // channel number is the lower nibble
555 int channel = reqptr->rev_channel & CHANNEL_MASK;
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500556
557 if (reqptr->rev_channel & 0x80) // Revision is bit 7
558 {
559 // Only current revision was requested
560 *data_len = sizeof(current_revision);
Patrick Ventureb51bf9c2018-09-10 15:53:14 -0700561 std::memcpy(response, &current_revision, *data_len);
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500562 return IPMI_CC_OK;
563 }
564
Tom Josepha30c8d32018-03-22 02:15:03 +0530565 static std::vector<uint8_t> cipherList;
566 static auto listInit = false;
567
568 if (!listInit)
569 {
570 try
571 {
572 cipherList = cipher::getCipherList();
573 listInit = true;
574 }
Patrick Venture0b02be92018-08-31 11:55:55 -0700575 catch (const std::exception& e)
Tom Josepha30c8d32018-03-22 02:15:03 +0530576 {
577 return IPMI_CC_UNSPECIFIED_ERROR;
578 }
579 }
580
Patrick Venturec7c1c3c2017-11-15 14:29:18 -0800581 auto ethdevice = ipmi::network::ChanneltoEthernet(channel);
582 if (ethdevice.empty())
583 {
584 return IPMI_CC_INVALID_FIELD_REQUEST;
585 }
586 auto channelConf = getChannelConfig(channel);
587
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800588 switch (reqptr->parameter)
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500589 {
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800590 case LAN_PARM_INPROGRESS:
vishwa1eaea4f2016-02-26 11:57:40 -0600591 {
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800592 uint8_t buf[] = {current_revision,
593 channelConf->lan_set_in_progress};
594 *data_len = sizeof(buf);
595 std::memcpy(response, &buf, *data_len);
596 break;
597 }
598 case LAN_PARM_AUTHSUPPORT:
599 {
600 uint8_t buf[] = {current_revision, 0x04};
601 *data_len = sizeof(buf);
602 std::memcpy(response, &buf, *data_len);
603 break;
604 }
605 case LAN_PARM_AUTHENABLES:
606 {
607 uint8_t buf[] = {current_revision, 0x04, 0x04, 0x04, 0x04, 0x04};
608 *data_len = sizeof(buf);
609 std::memcpy(response, &buf, *data_len);
610 break;
611 }
612 case LAN_PARM_IP:
613 case LAN_PARM_SUBNET:
614 case LAN_PARM_GATEWAY:
615 case LAN_PARM_MAC:
616 {
617 uint8_t buf[ipmi::network::MAC_ADDRESS_SIZE_BYTE + 1] = {};
618
619 *data_len = sizeof(current_revision);
620 std::memcpy(buf, &current_revision, *data_len);
621
622 if (getNetworkData(reqptr->parameter, &buf[1], channel) ==
623 IPMI_CC_OK)
Ratan Guptab8e99552017-07-27 07:07:48 +0530624 {
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800625 if (reqptr->parameter == LAN_PARM_MAC)
626 {
627 *data_len = sizeof(buf);
628 }
629 else
630 {
631 *data_len = ipmi::network::IPV4_ADDRESS_SIZE_BYTE + 1;
632 }
633 std::memcpy(response, &buf, *data_len);
Ratan Guptab8e99552017-07-27 07:07:48 +0530634 }
635 else
636 {
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800637 rc = IPMI_CC_UNSPECIFIED_ERROR;
Ratan Guptab8e99552017-07-27 07:07:48 +0530638 }
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800639 break;
Adriana Kobylak342df102016-02-10 13:48:16 -0600640 }
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800641 case LAN_PARM_VLAN:
Hariharasubramanian R83951912016-01-20 07:06:36 -0600642 {
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800643 uint8_t buf[ipmi::network::VLAN_SIZE_BYTE + 1] = {};
Ratan Gupta533d03b2017-07-30 10:39:22 +0530644
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800645 *data_len = sizeof(current_revision);
646 std::memcpy(buf, &current_revision, *data_len);
647 if (getNetworkData(reqptr->parameter, &buf[1], channel) ==
648 IPMI_CC_OK)
649 {
650 *data_len = sizeof(buf);
651 std::memcpy(response, &buf, *data_len);
652 }
653 break;
Ratan Gupta533d03b2017-07-30 10:39:22 +0530654 }
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800655 case LAN_PARM_IPSRC:
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530656 {
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800657 uint8_t buff[ipmi::network::IPSRC_SIZE_BYTE + 1] = {};
658 *data_len = sizeof(current_revision);
659 std::memcpy(buff, &current_revision, *data_len);
660 if (getNetworkData(reqptr->parameter, &buff[1], channel) ==
661 IPMI_CC_OK)
662 {
663 *data_len = sizeof(buff);
664 std::memcpy(response, &buff, *data_len);
665 }
666 break;
Ratan Guptacc6cdbf2017-09-01 23:06:25 +0530667 }
William A. Kennington III39f94ef2018-11-19 22:36:16 -0800668 case CIPHER_SUITE_COUNT:
669 {
670 *(static_cast<uint8_t*>(response)) = current_revision;
671 // Byte 1 is reserved byte and does not indicate a cipher suite ID,
672 // so no of cipher suite entry count is one less than the size of
673 // the vector
674 auto count = static_cast<uint8_t>(cipherList.size() - 1);
675 *(static_cast<uint8_t*>(response) + 1) = count;
676 *data_len = sizeof(current_revision) + sizeof(count);
677 break;
678 }
679 case CIPHER_SUITE_ENTRIES:
680 {
681 *(static_cast<uint8_t*>(response)) = current_revision;
682 // Byte 1 is reserved
683 std::copy_n(cipherList.data(), cipherList.size(),
684 static_cast<uint8_t*>(response) + 1);
685 *data_len = sizeof(current_revision) +
686 static_cast<uint8_t>(cipherList.size());
687 break;
688 }
689 default:
690 log<level::ERR>("Unsupported parameter",
691 entry("PARAMETER=0x%x", reqptr->parameter));
692 rc = IPMI_CC_PARM_NOT_SUPPORTED;
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500693 }
694
695 return rc;
696}
697
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530698void applyChanges(int channel)
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530699{
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530700 std::string ipaddress;
701 std::string gateway;
Patrick Venture0b02be92018-08-31 11:55:55 -0700702 uint8_t prefix{};
703 uint32_t vlanID{};
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530704 std::string networkInterfacePath;
705 ipmi::DbusObjectInfo ipObject;
706 ipmi::DbusObjectInfo systemObject;
707
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530708 auto ethdevice = ipmi::network::ChanneltoEthernet(channel);
709 if (ethdevice.empty())
710 {
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530711 log<level::ERR>("Unable to get the interface name",
712 entry("CHANNEL=%d", channel));
713 return;
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530714 }
715 auto ethIp = ethdevice + "/" + ipmi::network::IP_TYPE;
716 auto channelConf = getChannelConfig(channel);
717
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530718 try
719 {
720 sdbusplus::bus::bus bus(ipmid_get_sd_bus_connection());
721
722 log<level::INFO>("Network data from Cache",
723 entry("PREFIX=%s", channelConf->netmask.c_str()),
724 entry("ADDRESS=%s", channelConf->ipaddr.c_str()),
725 entry("GATEWAY=%s", channelConf->gateway.c_str()),
726 entry("VLAN=%d", channelConf->vlanID),
727 entry("IPSRC=%d", channelConf->ipsrc));
728 if (channelConf->vlanID != ipmi::network::VLAN_ID_MASK)
729 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700730 // get the first twelve bits which is vlan id
731 // not interested in rest of the bits.
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530732 channelConf->vlanID = le32toh(channelConf->vlanID);
733 vlanID = channelConf->vlanID & ipmi::network::VLAN_ID_MASK;
734 }
735
736 // if the asked ip src is DHCP then not interested in
737 // any given data except vlan.
738 if (channelConf->ipsrc != ipmi::network::IPOrigin::DHCP)
739 {
740 // always get the system object
Patrick Venture0b02be92018-08-31 11:55:55 -0700741 systemObject =
742 ipmi::getDbusObject(bus, ipmi::network::SYSTEMCONFIG_INTERFACE,
743 ipmi::network::ROOT);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530744
745 // the below code is to determine the mode of the interface
746 // as the handling is same, if the system is configured with
747 // DHCP or user has given all the data.
748 try
749 {
750 ipmi::ObjectTree ancestorMap;
751
Patrick Venture0b02be92018-08-31 11:55:55 -0700752 ipmi::InterfaceList interfaces{
753 ipmi::network::ETHERNET_INTERFACE};
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530754
755 // if the system is having ip object,then
756 // get the IP object.
Patrick Venture0b02be92018-08-31 11:55:55 -0700757 ipObject = ipmi::getIPObject(bus, ipmi::network::IP_INTERFACE,
758 ipmi::network::ROOT, ethIp);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530759
760 // Get the parent interface of the IP object.
761 try
762 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700763 ancestorMap = ipmi::getAllAncestors(bus, ipObject.first,
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530764 std::move(interfaces));
765 }
766 catch (InternalFailure& e)
767 {
768 // if unable to get the parent interface
769 // then commit the error and return.
770 log<level::ERR>("Unable to get the parent interface",
771 entry("PATH=%s", ipObject.first.c_str()),
772 entry("INTERFACE=%s",
773 ipmi::network::ETHERNET_INTERFACE));
774 commit<InternalFailure>();
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530775 channelConf->clear();
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530776 return;
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530777 }
778
779 networkInterfacePath = ancestorMap.begin()->first;
780 }
781 catch (InternalFailure& e)
782 {
783 // TODO Currently IPMI supports single interface,need to handle
784 // Multiple interface through
785 // https://github.com/openbmc/openbmc/issues/2138
786
787 // if there is no ip configured on the system,then
788 // get the network interface object.
Patrick Venture0b02be92018-08-31 11:55:55 -0700789 auto networkInterfaceObject =
790 ipmi::getDbusObject(bus, ipmi::network::ETHERNET_INTERFACE,
791 ipmi::network::ROOT, ethdevice);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530792
793 networkInterfacePath = std::move(networkInterfaceObject.first);
794 }
795
796 // get the configured mode on the system.
William A. Kennington III4c008022018-10-12 17:18:14 -0700797 auto enableDHCP = variant_ns::get<bool>(ipmi::getDbusProperty(
798 bus, ipmi::network::SERVICE, networkInterfacePath,
799 ipmi::network::ETHERNET_INTERFACE, "DHCPEnabled"));
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530800
801 // if ip address source is not given then get the ip source mode
802 // from the system so that it can be applied later.
803 if (channelConf->ipsrc == ipmi::network::IPOrigin::UNSPECIFIED)
804 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700805 channelConf->ipsrc = (enableDHCP)
806 ? ipmi::network::IPOrigin::DHCP
807 : ipmi::network::IPOrigin::STATIC;
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530808 }
809
810 // check whether user has given all the data
811 // or the configured system interface is dhcp enabled,
812 // in both of the cases get the values from the cache.
813 if ((!channelConf->ipaddr.empty() &&
814 !channelConf->netmask.empty() &&
815 !channelConf->gateway.empty()) ||
816 (enableDHCP)) // configured system interface mode = DHCP
817 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700818 // convert mask into prefix
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530819 ipaddress = channelConf->ipaddr;
820 prefix = ipmi::network::toPrefix(AF_INET, channelConf->netmask);
821 gateway = channelConf->gateway;
822 }
823 else // asked ip src = static and configured system src = static
Patrick Venture0b02be92018-08-31 11:55:55 -0700824 // or partially given data.
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530825 {
826 // We have partial filled cache so get the remaining
827 // info from the system.
828
829 // Get the network data from the system as user has
830 // not given all the data then use the data fetched from the
831 // system but it is implementation dependent,IPMI spec doesn't
832 // force it.
833
834 // if system is not having any ip object don't throw error,
835 try
836 {
837 auto properties = ipmi::getAllDbusProperties(
Patrick Venture0b02be92018-08-31 11:55:55 -0700838 bus, ipObject.second, ipObject.first,
839 ipmi::network::IP_INTERFACE);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530840
Patrick Venture0b02be92018-08-31 11:55:55 -0700841 ipaddress = channelConf->ipaddr.empty()
William A. Kennington III4c008022018-10-12 17:18:14 -0700842 ? variant_ns::get<std::string>(
843 properties["Address"])
Patrick Venture0b02be92018-08-31 11:55:55 -0700844 : channelConf->ipaddr;
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530845
Patrick Venture0b02be92018-08-31 11:55:55 -0700846 prefix = channelConf->netmask.empty()
William A. Kennington III4c008022018-10-12 17:18:14 -0700847 ? variant_ns::get<uint8_t>(
848 properties["PrefixLength"])
Patrick Venture0b02be92018-08-31 11:55:55 -0700849 : ipmi::network::toPrefix(
850 AF_INET, channelConf->netmask);
851 }
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530852 catch (InternalFailure& e)
853 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700854 log<level::INFO>(
855 "Failed to get IP object which matches",
856 entry("INTERFACE=%s", ipmi::network::IP_INTERFACE),
857 entry("MATCH=%s", ethIp.c_str()));
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530858 }
859
860 auto systemProperties = ipmi::getAllDbusProperties(
Patrick Venture0b02be92018-08-31 11:55:55 -0700861 bus, systemObject.second, systemObject.first,
862 ipmi::network::SYSTEMCONFIG_INTERFACE);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530863
William A. Kennington III4c008022018-10-12 17:18:14 -0700864 gateway = channelConf->gateway.empty()
865 ? variant_ns::get<std::string>(
866 systemProperties["DefaultGateway"])
867 : channelConf->gateway;
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530868 }
869 }
870
871 // Currently network manager doesn't support purging of all the
872 // ip addresses and the vlan interfaces from the parent interface,
873 // TODO once the support is there, will make the change here.
874 // https://github.com/openbmc/openbmc/issues/2141.
875
876 // TODO Currently IPMI supports single interface,need to handle
877 // Multiple interface through
878 // https://github.com/openbmc/openbmc/issues/2138
879
880 // instead of deleting all the vlan interfaces and
881 // all the ipv4 address,we will call reset method.
Patrick Venture0b02be92018-08-31 11:55:55 -0700882 // delete all the vlan interfaces
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530883
Patrick Venture0b02be92018-08-31 11:55:55 -0700884 ipmi::deleteAllDbusObjects(bus, ipmi::network::ROOT,
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530885 ipmi::network::VLAN_INTERFACE);
886
887 // set the interface mode to static
Patrick Venture0b02be92018-08-31 11:55:55 -0700888 auto networkInterfaceObject =
889 ipmi::getDbusObject(bus, ipmi::network::ETHERNET_INTERFACE,
890 ipmi::network::ROOT, ethdevice);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530891
892 // setting the physical interface mode to static.
Patrick Venture0b02be92018-08-31 11:55:55 -0700893 ipmi::setDbusProperty(
894 bus, ipmi::network::SERVICE, networkInterfaceObject.first,
895 ipmi::network::ETHERNET_INTERFACE, "DHCPEnabled", false);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530896
897 networkInterfacePath = networkInterfaceObject.first;
898
Patrick Venture0b02be92018-08-31 11:55:55 -0700899 // delete all the ipv4 addresses
900 ipmi::deleteAllDbusObjects(bus, ipmi::network::ROOT,
901 ipmi::network::IP_INTERFACE, ethIp);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530902
903 if (vlanID)
904 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700905 ipmi::network::createVLAN(bus, ipmi::network::SERVICE,
906 ipmi::network::ROOT, ethdevice, vlanID);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530907
908 auto networkInterfaceObject = ipmi::getDbusObject(
Patrick Venture0b02be92018-08-31 11:55:55 -0700909 bus, ipmi::network::VLAN_INTERFACE, ipmi::network::ROOT);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530910
Patrick Venture0b02be92018-08-31 11:55:55 -0700911 networkInterfacePath = networkInterfaceObject.first;
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530912 }
913
914 if (channelConf->ipsrc == ipmi::network::IPOrigin::DHCP)
915 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700916 ipmi::setDbusProperty(
917 bus, ipmi::network::SERVICE, networkInterfacePath,
918 ipmi::network::ETHERNET_INTERFACE, "DHCPEnabled", true);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530919 }
920 else
921 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700922 // change the mode to static
923 ipmi::setDbusProperty(
924 bus, ipmi::network::SERVICE, networkInterfacePath,
925 ipmi::network::ETHERNET_INTERFACE, "DHCPEnabled", false);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530926
927 if (!ipaddress.empty())
928 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700929 ipmi::network::createIP(bus, ipmi::network::SERVICE,
930 networkInterfacePath, ipv4Protocol,
931 ipaddress, prefix);
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530932 }
933
934 if (!gateway.empty())
935 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700936 ipmi::setDbusProperty(bus, systemObject.second,
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530937 systemObject.first,
938 ipmi::network::SYSTEMCONFIG_INTERFACE,
Patrick Venture0b02be92018-08-31 11:55:55 -0700939 "DefaultGateway", std::string(gateway));
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530940 }
941 }
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530942 }
943 catch (InternalFailure& e)
944 {
Patrick Venture0b02be92018-08-31 11:55:55 -0700945 log<level::ERR>(
946 "Failed to set network data", entry("PREFIX=%d", prefix),
947 entry("ADDRESS=%s", ipaddress.c_str()),
948 entry("GATEWAY=%s", gateway.c_str()), entry("VLANID=%d", vlanID),
949 entry("IPSRC=%d", channelConf->ipsrc));
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530950
951 commit<InternalFailure>();
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530952 }
953
954 channelConf->clear();
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530955}
956
957void commitNetworkChanges()
958{
Patrick Venture0b02be92018-08-31 11:55:55 -0700959 for (const auto& channel : channelConfig)
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530960 {
961 if (channel.second->flush)
962 {
963 applyChanges(channel.first);
964 }
965 }
966}
967
968void createNetworkTimer()
969{
970 if (!networkTimer)
971 {
972 std::function<void()> networkTimerCallback(
Patrick Venture0b02be92018-08-31 11:55:55 -0700973 std::bind(&commitNetworkChanges));
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530974
Vernon Mauery1181af72018-10-08 12:05:00 -0700975 networkTimer = std::make_unique<phosphor::Timer>(networkTimerCallback);
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530976 }
Ratan Gupta1247e0b2018-03-07 10:47:25 +0530977}
978
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500979void register_netfn_transport_functions()
980{
Ratan Gupta7a7f0122018-03-07 12:31:05 +0530981 // As this timer is only for transport handler
982 // so creating it here.
983 createNetworkTimer();
Tom05732372016-09-06 17:21:23 +0530984 // <Wildcard Command>
Patrick Venture0b02be92018-08-31 11:55:55 -0700985 ipmi_register_callback(NETFUN_TRANSPORT, IPMI_CMD_WILDCARD, NULL,
986 ipmi_transport_wildcard, PRIVILEGE_USER);
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500987
Tom05732372016-09-06 17:21:23 +0530988 // <Set LAN Configuration Parameters>
Patrick Venture0b02be92018-08-31 11:55:55 -0700989 ipmi_register_callback(NETFUN_TRANSPORT, IPMI_CMD_SET_LAN, NULL,
990 ipmi_transport_set_lan, PRIVILEGE_ADMIN);
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500991
Tom05732372016-09-06 17:21:23 +0530992 // <Get LAN Configuration Parameters>
Patrick Venture0b02be92018-08-31 11:55:55 -0700993 ipmi_register_callback(NETFUN_TRANSPORT, IPMI_CMD_GET_LAN, NULL,
994 ipmi_transport_get_lan, PRIVILEGE_OPERATOR);
Adriana Kobylak5d6481f2015-10-29 21:44:55 -0500995
996 return;
997}