blob: 1fb8783d207ba56b6b098eae7dc426da3371aeab [file] [log] [blame]
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +01001/*
2// Copyright (c) 2018 Intel Corporation
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15*/
16#pragma once
17
Ed Tanous1abe55e2018-09-05 08:30:59 -070018#include <boost/container/flat_map.hpp>
Ed Tanous4a0cb852018-10-15 07:55:04 -070019#include <boost/container/flat_set.hpp>
Kowalski, Kamil179db1d2018-04-23 11:12:41 +020020#include <dbus_singleton.hpp>
Kowalski, Kamil588c3f02018-04-03 14:55:27 +020021#include <error_messages.hpp>
Kowalski, Kamil179db1d2018-04-23 11:12:41 +020022#include <node.hpp>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050023#include <utils/json_utils.hpp>
24
Ed Tanousa24526d2018-12-10 15:17:59 -080025#include <optional>
Joshi-Mansiab6554f2020-03-10 18:33:36 +053026#include <regex>
Ed Tanousabf2add2019-01-22 16:40:12 -080027#include <variant>
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010028
Ed Tanous1abe55e2018-09-05 08:30:59 -070029namespace redfish
30{
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010031
32/**
33 * DBus types primitives for several generic DBus interfaces
34 * TODO(Pawel) consider move this to separate file into boost::dbus
35 */
Ed Tanousaa2e59c2018-04-12 12:17:20 -070036using PropertiesMapType = boost::container::flat_map<
Ed Tanousabf2add2019-01-22 16:40:12 -080037 std::string, std::variant<std::string, bool, uint8_t, int16_t, uint16_t,
38 int32_t, uint32_t, int64_t, uint64_t, double>>;
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010039
Ed Tanous4a0cb852018-10-15 07:55:04 -070040using GetManagedObjects = std::vector<std::pair<
Ed Tanousaa2e59c2018-04-12 12:17:20 -070041 sdbusplus::message::object_path,
Ed Tanous4a0cb852018-10-15 07:55:04 -070042 std::vector<std::pair<
Ed Tanousaa2e59c2018-04-12 12:17:20 -070043 std::string,
44 boost::container::flat_map<
Patrick Williams19bd78d2020-05-13 17:38:24 -050045 std::string,
46 std::variant<std::string, bool, uint8_t, int16_t, uint16_t, int32_t,
47 uint32_t, int64_t, uint64_t, double,
48 std::vector<std::string>>>>>>>;
Ed Tanous4a0cb852018-10-15 07:55:04 -070049
50enum class LinkType
51{
52 Local,
53 Global
54};
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010055
56/**
57 * Structure for keeping IPv4 data required by Redfish
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010058 */
Ed Tanous1abe55e2018-09-05 08:30:59 -070059struct IPv4AddressData
60{
61 std::string id;
Ed Tanous4a0cb852018-10-15 07:55:04 -070062 std::string address;
63 std::string domain;
64 std::string gateway;
Ed Tanous1abe55e2018-09-05 08:30:59 -070065 std::string netmask;
66 std::string origin;
Ed Tanous4a0cb852018-10-15 07:55:04 -070067 LinkType linktype;
Sunitha Harish01c6e852020-03-20 05:04:09 -050068 bool isActive;
Ed Tanous4a0cb852018-10-15 07:55:04 -070069
Gunnar Mills1214b7e2020-06-04 10:11:30 -050070 bool operator<(const IPv4AddressData& obj) const
Ed Tanous1abe55e2018-09-05 08:30:59 -070071 {
Ed Tanous4a0cb852018-10-15 07:55:04 -070072 return id < obj.id;
Ed Tanous1abe55e2018-09-05 08:30:59 -070073 }
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010074};
75
76/**
Ravi Tejae48c0fc2019-04-16 08:37:20 -050077 * Structure for keeping IPv6 data required by Redfish
78 */
79struct IPv6AddressData
80{
81 std::string id;
82 std::string address;
83 std::string origin;
84 uint8_t prefixLength;
85
Gunnar Mills1214b7e2020-06-04 10:11:30 -050086 bool operator<(const IPv6AddressData& obj) const
Ravi Tejae48c0fc2019-04-16 08:37:20 -050087 {
88 return id < obj.id;
89 }
90};
91/**
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010092 * Structure for keeping basic single Ethernet Interface information
93 * available from DBus
94 */
Ed Tanous1abe55e2018-09-05 08:30:59 -070095struct EthernetInterfaceData
96{
Ed Tanous4a0cb852018-10-15 07:55:04 -070097 uint32_t speed;
98 bool auto_neg;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -070099 bool DNSEnabled;
100 bool NTPEnabled;
101 bool HostNameEnabled;
102 bool SendHostNameEnabled;
Johnathan Manteyaa05fb22020-01-08 12:08:44 -0800103 bool linkUp;
Johnathan Manteyeeedda22019-10-29 16:09:52 -0700104 bool nicEnabled;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700105 std::string DHCPEnabled;
106 std::string operatingMode;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700107 std::string hostname;
108 std::string default_gateway;
Ravi Teja9a6fc6f2019-04-16 02:43:13 -0500109 std::string ipv6_default_gateway;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700110 std::string mac_address;
Sunitha Harishfda13ad2019-03-21 11:01:24 -0500111 std::vector<std::uint32_t> vlan_id;
manojkiran.eda@gmail.com0f6efdc2019-10-03 04:53:44 -0500112 std::vector<std::string> nameServers;
113 std::vector<std::string> staticNameServers;
Jennifer Leed24bfc72019-03-05 13:03:37 -0800114 std::vector<std::string> domainnames;
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +0100115};
116
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700117struct DHCPParameters
118{
119 std::optional<bool> dhcpv4Enabled;
120 std::optional<bool> useDNSServers;
121 std::optional<bool> useNTPServers;
122 std::optional<bool> useUseDomainName;
123 std::optional<std::string> dhcpv6OperatingMode;
124};
125
Ed Tanous4a0cb852018-10-15 07:55:04 -0700126// Helper function that changes bits netmask notation (i.e. /24)
127// into full dot notation
128inline std::string getNetmask(unsigned int bits)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700129{
Ed Tanous4a0cb852018-10-15 07:55:04 -0700130 uint32_t value = 0xffffffff << (32 - bits);
131 std::string netmask = std::to_string((value >> 24) & 0xff) + "." +
132 std::to_string((value >> 16) & 0xff) + "." +
133 std::to_string((value >> 8) & 0xff) + "." +
134 std::to_string(value & 0xff);
135 return netmask;
136}
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +0100137
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500138inline bool translateDHCPEnabledToBool(const std::string& inputDHCP,
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700139 bool isIPv4)
140{
141 if (isIPv4)
142 {
143 return (
144 (inputDHCP ==
145 "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.v4") ||
146 (inputDHCP ==
147 "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.both"));
148 }
149 return ((inputDHCP ==
150 "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.v6") ||
151 (inputDHCP ==
152 "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.both"));
153}
154
Ed Tanous2c70f802020-09-28 14:29:23 -0700155inline std::string getDhcpEnabledEnumeration(bool isIPv4, bool isIPv6)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700156{
157 if (isIPv4 && isIPv6)
158 {
159 return "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.both";
160 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700161 if (isIPv4)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700162 {
163 return "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.v4";
164 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700165 if (isIPv6)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700166 {
167 return "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.v6";
168 }
169 return "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.none";
170}
171
Ed Tanous4a0cb852018-10-15 07:55:04 -0700172inline std::string
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500173 translateAddressOriginDbusToRedfish(const std::string& inputOrigin,
Ed Tanous4a0cb852018-10-15 07:55:04 -0700174 bool isIPv4)
175{
176 if (inputOrigin == "xyz.openbmc_project.Network.IP.AddressOrigin.Static")
Ed Tanous1abe55e2018-09-05 08:30:59 -0700177 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700178 return "Static";
179 }
180 if (inputOrigin == "xyz.openbmc_project.Network.IP.AddressOrigin.LinkLocal")
181 {
182 if (isIPv4)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700183 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700184 return "IPv4LinkLocal";
185 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700186 return "LinkLocal";
Ed Tanous4a0cb852018-10-15 07:55:04 -0700187 }
188 if (inputOrigin == "xyz.openbmc_project.Network.IP.AddressOrigin.DHCP")
189 {
190 if (isIPv4)
191 {
192 return "DHCP";
193 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700194 return "DHCPv6";
Ed Tanous4a0cb852018-10-15 07:55:04 -0700195 }
196 if (inputOrigin == "xyz.openbmc_project.Network.IP.AddressOrigin.SLAAC")
197 {
198 return "SLAAC";
199 }
200 return "";
201}
202
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500203inline bool extractEthernetInterfaceData(const std::string& ethiface_id,
204 const GetManagedObjects& dbus_data,
205 EthernetInterfaceData& ethData)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700206{
Ed Tanous4c9afe42019-05-03 16:59:57 -0700207 bool idFound = false;
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500208 for (const auto& objpath : dbus_data)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700209 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500210 for (const auto& ifacePair : objpath.second)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700211 {
Ed Tanous029573d2019-02-01 10:57:49 -0800212 if (objpath.first == "/xyz/openbmc_project/network/" + ethiface_id)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700213 {
Ed Tanous4c9afe42019-05-03 16:59:57 -0700214 idFound = true;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700215 if (ifacePair.first == "xyz.openbmc_project.Network.MACAddress")
Ed Tanous1abe55e2018-09-05 08:30:59 -0700216 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500217 for (const auto& propertyPair : ifacePair.second)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700218 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700219 if (propertyPair.first == "MACAddress")
Ed Tanous1abe55e2018-09-05 08:30:59 -0700220 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500221 const std::string* mac =
Ed Tanousabf2add2019-01-22 16:40:12 -0800222 std::get_if<std::string>(&propertyPair.second);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700223 if (mac != nullptr)
224 {
225 ethData.mac_address = *mac;
226 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700227 }
Ed Tanous4a0cb852018-10-15 07:55:04 -0700228 }
229 }
230 else if (ifacePair.first == "xyz.openbmc_project.Network.VLAN")
231 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500232 for (const auto& propertyPair : ifacePair.second)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700233 {
234 if (propertyPair.first == "Id")
Ed Tanous1abe55e2018-09-05 08:30:59 -0700235 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500236 const uint32_t* id =
Ed Tanousabf2add2019-01-22 16:40:12 -0800237 std::get_if<uint32_t>(&propertyPair.second);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700238 if (id != nullptr)
239 {
Sunitha Harishfda13ad2019-03-21 11:01:24 -0500240 ethData.vlan_id.push_back(*id);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700241 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700242 }
Ed Tanous4a0cb852018-10-15 07:55:04 -0700243 }
244 }
245 else if (ifacePair.first ==
246 "xyz.openbmc_project.Network.EthernetInterface")
247 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500248 for (const auto& propertyPair : ifacePair.second)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700249 {
250 if (propertyPair.first == "AutoNeg")
251 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700252 const bool* autoNeg =
Ed Tanousabf2add2019-01-22 16:40:12 -0800253 std::get_if<bool>(&propertyPair.second);
Ed Tanous2c70f802020-09-28 14:29:23 -0700254 if (autoNeg != nullptr)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700255 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700256 ethData.auto_neg = *autoNeg;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700257 }
258 }
259 else if (propertyPair.first == "Speed")
260 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500261 const uint32_t* speed =
Ed Tanousabf2add2019-01-22 16:40:12 -0800262 std::get_if<uint32_t>(&propertyPair.second);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700263 if (speed != nullptr)
264 {
265 ethData.speed = *speed;
266 }
267 }
Johnathan Manteyaa05fb22020-01-08 12:08:44 -0800268 else if (propertyPair.first == "LinkUp")
269 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500270 const bool* linkUp =
Johnathan Manteyaa05fb22020-01-08 12:08:44 -0800271 std::get_if<bool>(&propertyPair.second);
272 if (linkUp != nullptr)
273 {
274 ethData.linkUp = *linkUp;
275 }
276 }
Johnathan Manteyeeedda22019-10-29 16:09:52 -0700277 else if (propertyPair.first == "NICEnabled")
278 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500279 const bool* nicEnabled =
Johnathan Manteyeeedda22019-10-29 16:09:52 -0700280 std::get_if<bool>(&propertyPair.second);
281 if (nicEnabled != nullptr)
282 {
283 ethData.nicEnabled = *nicEnabled;
284 }
285 }
RAJESWARAN THILLAIGOVINDANf85837b2019-04-04 05:18:53 -0500286 else if (propertyPair.first == "Nameservers")
Ed Tanous4a0cb852018-10-15 07:55:04 -0700287 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500288 const std::vector<std::string>* nameservers =
Patrick Williams8d78b7a2020-05-13 11:24:20 -0500289 std::get_if<std::vector<std::string>>(
Ed Tanous029573d2019-02-01 10:57:49 -0800290 &propertyPair.second);
291 if (nameservers != nullptr)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700292 {
manojkiran.eda@gmail.com0f6efdc2019-10-03 04:53:44 -0500293 ethData.nameServers = std::move(*nameservers);
294 }
295 }
296 else if (propertyPair.first == "StaticNameServers")
297 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500298 const std::vector<std::string>* staticNameServers =
Patrick Williams8d78b7a2020-05-13 11:24:20 -0500299 std::get_if<std::vector<std::string>>(
manojkiran.eda@gmail.com0f6efdc2019-10-03 04:53:44 -0500300 &propertyPair.second);
301 if (staticNameServers != nullptr)
302 {
303 ethData.staticNameServers =
304 std::move(*staticNameServers);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700305 }
306 }
manojkiraneda2a133282019-02-19 13:09:43 +0530307 else if (propertyPair.first == "DHCPEnabled")
308 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700309 const std::string* dhcpEnabled =
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700310 std::get_if<std::string>(&propertyPair.second);
Ed Tanous2c70f802020-09-28 14:29:23 -0700311 if (dhcpEnabled != nullptr)
manojkiraneda2a133282019-02-19 13:09:43 +0530312 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700313 ethData.DHCPEnabled = *dhcpEnabled;
manojkiraneda2a133282019-02-19 13:09:43 +0530314 }
315 }
Jennifer Leed24bfc72019-03-05 13:03:37 -0800316 else if (propertyPair.first == "DomainName")
317 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500318 const std::vector<std::string>* domainNames =
Patrick Williams8d78b7a2020-05-13 11:24:20 -0500319 std::get_if<std::vector<std::string>>(
Jennifer Leed24bfc72019-03-05 13:03:37 -0800320 &propertyPair.second);
321 if (domainNames != nullptr)
322 {
323 ethData.domainnames = std::move(*domainNames);
324 }
325 }
Ed Tanous029573d2019-02-01 10:57:49 -0800326 }
327 }
328 }
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700329
330 if (objpath.first == "/xyz/openbmc_project/network/config/dhcp")
331 {
332 if (ifacePair.first ==
333 "xyz.openbmc_project.Network.DHCPConfiguration")
334 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500335 for (const auto& propertyPair : ifacePair.second)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700336 {
337 if (propertyPair.first == "DNSEnabled")
338 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700339 const bool* dnsEnabled =
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700340 std::get_if<bool>(&propertyPair.second);
Ed Tanous2c70f802020-09-28 14:29:23 -0700341 if (dnsEnabled != nullptr)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700342 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700343 ethData.DNSEnabled = *dnsEnabled;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700344 }
345 }
346 else if (propertyPair.first == "NTPEnabled")
347 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700348 const bool* ntpEnabled =
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700349 std::get_if<bool>(&propertyPair.second);
Ed Tanous2c70f802020-09-28 14:29:23 -0700350 if (ntpEnabled != nullptr)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700351 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700352 ethData.NTPEnabled = *ntpEnabled;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700353 }
354 }
355 else if (propertyPair.first == "HostNameEnabled")
356 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700357 const bool* hostNameEnabled =
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700358 std::get_if<bool>(&propertyPair.second);
Ed Tanous2c70f802020-09-28 14:29:23 -0700359 if (hostNameEnabled != nullptr)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700360 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700361 ethData.HostNameEnabled = *hostNameEnabled;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700362 }
363 }
364 else if (propertyPair.first == "SendHostNameEnabled")
365 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700366 const bool* sendHostNameEnabled =
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700367 std::get_if<bool>(&propertyPair.second);
Ed Tanous2c70f802020-09-28 14:29:23 -0700368 if (sendHostNameEnabled != nullptr)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700369 {
370 ethData.SendHostNameEnabled =
Ed Tanous2c70f802020-09-28 14:29:23 -0700371 *sendHostNameEnabled;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700372 }
373 }
374 }
375 }
376 }
Ed Tanous029573d2019-02-01 10:57:49 -0800377 // System configuration shows up in the global namespace, so no need
378 // to check eth number
379 if (ifacePair.first ==
380 "xyz.openbmc_project.Network.SystemConfiguration")
381 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500382 for (const auto& propertyPair : ifacePair.second)
Ed Tanous029573d2019-02-01 10:57:49 -0800383 {
384 if (propertyPair.first == "HostName")
385 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500386 const std::string* hostname =
Patrick Williams8d78b7a2020-05-13 11:24:20 -0500387 std::get_if<std::string>(&propertyPair.second);
Ed Tanous029573d2019-02-01 10:57:49 -0800388 if (hostname != nullptr)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700389 {
Ed Tanous029573d2019-02-01 10:57:49 -0800390 ethData.hostname = *hostname;
391 }
392 }
393 else if (propertyPair.first == "DefaultGateway")
394 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500395 const std::string* defaultGateway =
Patrick Williams8d78b7a2020-05-13 11:24:20 -0500396 std::get_if<std::string>(&propertyPair.second);
Ed Tanous029573d2019-02-01 10:57:49 -0800397 if (defaultGateway != nullptr)
398 {
399 ethData.default_gateway = *defaultGateway;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700400 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700401 }
Ravi Teja9a6fc6f2019-04-16 02:43:13 -0500402 else if (propertyPair.first == "DefaultGateway6")
403 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500404 const std::string* defaultGateway6 =
Patrick Williams8d78b7a2020-05-13 11:24:20 -0500405 std::get_if<std::string>(&propertyPair.second);
Ravi Teja9a6fc6f2019-04-16 02:43:13 -0500406 if (defaultGateway6 != nullptr)
407 {
408 ethData.ipv6_default_gateway = *defaultGateway6;
409 }
410 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700411 }
412 }
413 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700414 }
Ed Tanous4c9afe42019-05-03 16:59:57 -0700415 return idFound;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700416}
417
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500418// Helper function that extracts data for single ethernet ipv6 address
Johnathan Mantey01784822019-06-18 12:44:21 -0700419inline void
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500420 extractIPV6Data(const std::string& ethiface_id,
421 const GetManagedObjects& dbus_data,
422 boost::container::flat_set<IPv6AddressData>& ipv6_config)
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500423{
424 const std::string ipv6PathStart =
425 "/xyz/openbmc_project/network/" + ethiface_id + "/ipv6/";
426
427 // Since there might be several IPv6 configurations aligned with
428 // single ethernet interface, loop over all of them
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500429 for (const auto& objpath : dbus_data)
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500430 {
431 // Check if proper pattern for object path appears
432 if (boost::starts_with(objpath.first.str, ipv6PathStart))
433 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500434 for (auto& interface : objpath.second)
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500435 {
436 if (interface.first == "xyz.openbmc_project.Network.IP")
437 {
438 // Instance IPv6AddressData structure, and set as
439 // appropriate
440 std::pair<
441 boost::container::flat_set<IPv6AddressData>::iterator,
442 bool>
Ed Tanous271584a2019-07-09 16:24:22 -0700443 it = ipv6_config.insert(IPv6AddressData{});
Ed Tanous2c70f802020-09-28 14:29:23 -0700444 IPv6AddressData& ipv6Address = *it.first;
445 ipv6Address.id =
Ed Tanous271584a2019-07-09 16:24:22 -0700446 objpath.first.str.substr(ipv6PathStart.size());
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500447 for (auto& property : interface.second)
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500448 {
449 if (property.first == "Address")
450 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500451 const std::string* address =
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500452 std::get_if<std::string>(&property.second);
453 if (address != nullptr)
454 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700455 ipv6Address.address = *address;
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500456 }
457 }
458 else if (property.first == "Origin")
459 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500460 const std::string* origin =
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500461 std::get_if<std::string>(&property.second);
462 if (origin != nullptr)
463 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700464 ipv6Address.origin =
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500465 translateAddressOriginDbusToRedfish(*origin,
466 false);
467 }
468 }
469 else if (property.first == "PrefixLength")
470 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500471 const uint8_t* prefix =
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500472 std::get_if<uint8_t>(&property.second);
473 if (prefix != nullptr)
474 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700475 ipv6Address.prefixLength = *prefix;
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500476 }
477 }
478 else
479 {
480 BMCWEB_LOG_ERROR
481 << "Got extra property: " << property.first
482 << " on the " << objpath.first.str << " object";
483 }
484 }
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500485 }
486 }
487 }
488 }
489}
490
Ed Tanous4a0cb852018-10-15 07:55:04 -0700491// Helper function that extracts data for single ethernet ipv4 address
Johnathan Mantey01784822019-06-18 12:44:21 -0700492inline void
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500493 extractIPData(const std::string& ethiface_id,
494 const GetManagedObjects& dbus_data,
495 boost::container::flat_set<IPv4AddressData>& ipv4_config)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700496{
497 const std::string ipv4PathStart =
498 "/xyz/openbmc_project/network/" + ethiface_id + "/ipv4/";
499
500 // Since there might be several IPv4 configurations aligned with
501 // single ethernet interface, loop over all of them
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500502 for (const auto& objpath : dbus_data)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700503 {
504 // Check if proper pattern for object path appears
505 if (boost::starts_with(objpath.first.str, ipv4PathStart))
506 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500507 for (auto& interface : objpath.second)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700508 {
509 if (interface.first == "xyz.openbmc_project.Network.IP")
510 {
511 // Instance IPv4AddressData structure, and set as
512 // appropriate
513 std::pair<
514 boost::container::flat_set<IPv4AddressData>::iterator,
515 bool>
Ed Tanous271584a2019-07-09 16:24:22 -0700516 it = ipv4_config.insert(IPv4AddressData{});
Ed Tanous2c70f802020-09-28 14:29:23 -0700517 IPv4AddressData& ipv4Address = *it.first;
518 ipv4Address.id =
Ed Tanous271584a2019-07-09 16:24:22 -0700519 objpath.first.str.substr(ipv4PathStart.size());
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500520 for (auto& property : interface.second)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700521 {
522 if (property.first == "Address")
523 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500524 const std::string* address =
Ed Tanousabf2add2019-01-22 16:40:12 -0800525 std::get_if<std::string>(&property.second);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700526 if (address != nullptr)
527 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700528 ipv4Address.address = *address;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700529 }
530 }
531 else if (property.first == "Gateway")
532 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500533 const std::string* gateway =
Ed Tanousabf2add2019-01-22 16:40:12 -0800534 std::get_if<std::string>(&property.second);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700535 if (gateway != nullptr)
536 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700537 ipv4Address.gateway = *gateway;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700538 }
539 }
540 else if (property.first == "Origin")
541 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500542 const std::string* origin =
Ed Tanousabf2add2019-01-22 16:40:12 -0800543 std::get_if<std::string>(&property.second);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700544 if (origin != nullptr)
545 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700546 ipv4Address.origin =
Ed Tanous4a0cb852018-10-15 07:55:04 -0700547 translateAddressOriginDbusToRedfish(*origin,
548 true);
549 }
550 }
551 else if (property.first == "PrefixLength")
552 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500553 const uint8_t* mask =
Ed Tanousabf2add2019-01-22 16:40:12 -0800554 std::get_if<uint8_t>(&property.second);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700555 if (mask != nullptr)
556 {
557 // convert it to the string
Ed Tanous2c70f802020-09-28 14:29:23 -0700558 ipv4Address.netmask = getNetmask(*mask);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700559 }
560 }
561 else
562 {
563 BMCWEB_LOG_ERROR
564 << "Got extra property: " << property.first
565 << " on the " << objpath.first.str << " object";
566 }
567 }
568 // Check if given address is local, or global
Ed Tanous2c70f802020-09-28 14:29:23 -0700569 ipv4Address.linktype =
570 boost::starts_with(ipv4Address.address, "169.254.")
Johnathan Mantey18659d12019-06-07 10:26:29 -0700571 ? LinkType::Local
572 : LinkType::Global;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700573 }
574 }
575 }
576 }
577}
578
579/**
580 * @brief Sets given Id on the given VLAN interface through D-Bus
581 *
582 * @param[in] ifaceId Id of VLAN interface that should be modified
583 * @param[in] inputVlanId New ID of the VLAN
584 * @param[in] callback Function that will be called after the operation
585 *
586 * @return None.
587 */
588template <typename CallbackFunc>
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500589void changeVlanId(const std::string& ifaceId, const uint32_t& inputVlanId,
590 CallbackFunc&& callback)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700591{
592 crow::connections::systemBus->async_method_call(
593 callback, "xyz.openbmc_project.Network",
594 std::string("/xyz/openbmc_project/network/") + ifaceId,
595 "org.freedesktop.DBus.Properties", "Set",
596 "xyz.openbmc_project.Network.VLAN", "Id",
Ed Tanousabf2add2019-01-22 16:40:12 -0800597 std::variant<uint32_t>(inputVlanId));
Ed Tanous4a0cb852018-10-15 07:55:04 -0700598}
599
600/**
601 * @brief Helper function that verifies IP address to check if it is in
602 * proper format. If bits pointer is provided, also calculates active
603 * bit count for Subnet Mask.
604 *
605 * @param[in] ip IP that will be verified
606 * @param[out] bits Calculated mask in bits notation
607 *
608 * @return true in case of success, false otherwise
609 */
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500610inline bool ipv4VerifyIpAndGetBitcount(const std::string& ip,
611 uint8_t* bits = nullptr)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700612{
613 std::vector<std::string> bytesInMask;
614
615 boost::split(bytesInMask, ip, boost::is_any_of("."));
Ed Tanous1abe55e2018-09-05 08:30:59 -0700616
617 static const constexpr int ipV4AddressSectionsCount = 4;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700618 if (bytesInMask.size() != ipV4AddressSectionsCount)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700619 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700620 return false;
621 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700622
Ed Tanous4a0cb852018-10-15 07:55:04 -0700623 if (bits != nullptr)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700624 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700625 *bits = 0;
626 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700627
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500628 char* endPtr;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700629 long previousValue = 255;
630 bool firstZeroInByteHit;
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500631 for (const std::string& byte : bytesInMask)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700632 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700633 if (byte.empty())
634 {
635 return false;
636 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700637
Ed Tanous4a0cb852018-10-15 07:55:04 -0700638 // Use strtol instead of stroi to avoid exceptions
639 long value = std::strtol(byte.c_str(), &endPtr, 10);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700640
Ed Tanous4a0cb852018-10-15 07:55:04 -0700641 // endPtr should point to the end of the string, otherwise given string
642 // is not 100% number
643 if (*endPtr != '\0')
644 {
645 return false;
646 }
647
648 // Value should be contained in byte
649 if (value < 0 || value > 255)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700650 {
651 return false;
652 }
653
654 if (bits != nullptr)
655 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700656 // Mask has to be continuous between bytes
657 if (previousValue != 255 && value != 0)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700658 {
659 return false;
660 }
661
Ed Tanous4a0cb852018-10-15 07:55:04 -0700662 // Mask has to be continuous inside bytes
663 firstZeroInByteHit = false;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700664
Ed Tanous4a0cb852018-10-15 07:55:04 -0700665 // Count bits
Ed Tanous23a21a12020-07-25 04:45:05 +0000666 for (long bitIdx = 7; bitIdx >= 0; bitIdx--)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700667 {
Ed Tanous23a21a12020-07-25 04:45:05 +0000668 if (value & (1L << bitIdx))
Ed Tanous1abe55e2018-09-05 08:30:59 -0700669 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700670 if (firstZeroInByteHit)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700671 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700672 // Continuity not preserved
673 return false;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700674 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700675 (*bits)++;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700676 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700677 else
678 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700679 firstZeroInByteHit = true;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700680 }
Ed Tanous4a0cb852018-10-15 07:55:04 -0700681 }
682 }
683
684 previousValue = value;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700685 }
686
Ed Tanous4a0cb852018-10-15 07:55:04 -0700687 return true;
688}
689
690/**
Johnathan Mantey01784822019-06-18 12:44:21 -0700691 * @brief Deletes given IPv4 interface
Ed Tanous4a0cb852018-10-15 07:55:04 -0700692 *
693 * @param[in] ifaceId Id of interface whose IP should be deleted
Ed Tanous4a0cb852018-10-15 07:55:04 -0700694 * @param[in] ipHash DBus Hash id of IP that should be deleted
695 * @param[io] asyncResp Response object that will be returned to client
696 *
697 * @return None
698 */
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500699inline void deleteIPv4(const std::string& ifaceId, const std::string& ipHash,
Ed Tanous4a0cb852018-10-15 07:55:04 -0700700 const std::shared_ptr<AsyncResp> asyncResp)
701{
702 crow::connections::systemBus->async_method_call(
Johnathan Mantey286b9112019-06-10 13:38:04 -0700703 [asyncResp](const boost::system::error_code ec) {
Ed Tanous1abe55e2018-09-05 08:30:59 -0700704 if (ec)
705 {
Jason M. Billsa08b46c2018-11-06 15:01:08 -0800706 messages::internalError(asyncResp->res);
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +0100707 }
Ed Tanous4a0cb852018-10-15 07:55:04 -0700708 },
709 "xyz.openbmc_project.Network",
710 "/xyz/openbmc_project/network/" + ifaceId + "/ipv4/" + ipHash,
711 "xyz.openbmc_project.Object.Delete", "Delete");
712}
Ed Tanous1abe55e2018-09-05 08:30:59 -0700713
Ed Tanous4a0cb852018-10-15 07:55:04 -0700714/**
Johnathan Mantey01784822019-06-18 12:44:21 -0700715 * @brief Creates a static IPv4 entry
Ed Tanous4a0cb852018-10-15 07:55:04 -0700716 *
Johnathan Mantey01784822019-06-18 12:44:21 -0700717 * @param[in] ifaceId Id of interface upon which to create the IPv4 entry
718 * @param[in] prefixLength IPv4 prefix syntax for the subnet mask
719 * @param[in] gateway IPv4 address of this interfaces gateway
720 * @param[in] address IPv4 address to assign to this interface
721 * @param[io] asyncResp Response object that will be returned to client
Ed Tanous4a0cb852018-10-15 07:55:04 -0700722 *
723 * @return None
724 */
Ed Tanouscb13a392020-07-25 19:02:03 +0000725inline void createIPv4(const std::string& ifaceId, uint8_t prefixLength,
726 const std::string& gateway, const std::string& address,
Ed Tanous4a0cb852018-10-15 07:55:04 -0700727 std::shared_ptr<AsyncResp> asyncResp)
728{
Ed Tanous4a0cb852018-10-15 07:55:04 -0700729 crow::connections::systemBus->async_method_call(
Johnathan Mantey01784822019-06-18 12:44:21 -0700730 [asyncResp](const boost::system::error_code ec) {
731 if (ec)
732 {
733 messages::internalError(asyncResp->res);
734 }
735 },
736 "xyz.openbmc_project.Network",
Ed Tanous4a0cb852018-10-15 07:55:04 -0700737 "/xyz/openbmc_project/network/" + ifaceId,
738 "xyz.openbmc_project.Network.IP.Create", "IP",
Johnathan Mantey01784822019-06-18 12:44:21 -0700739 "xyz.openbmc_project.Network.IP.Protocol.IPv4", address, prefixLength,
Ed Tanous4a0cb852018-10-15 07:55:04 -0700740 gateway);
741}
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500742
743/**
Johnathan Mantey01784822019-06-18 12:44:21 -0700744 * @brief Deletes the IPv4 entry for this interface and creates a replacement
745 * static IPv4 entry
746 *
747 * @param[in] ifaceId Id of interface upon which to create the IPv4 entry
748 * @param[in] id The unique hash entry identifying the DBus entry
749 * @param[in] prefixLength IPv4 prefix syntax for the subnet mask
750 * @param[in] gateway IPv4 address of this interfaces gateway
751 * @param[in] address IPv4 address to assign to this interface
752 * @param[io] asyncResp Response object that will be returned to client
753 *
754 * @return None
755 */
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500756inline void deleteAndCreateIPv4(const std::string& ifaceId,
757 const std::string& id, uint8_t prefixLength,
758 const std::string& gateway,
759 const std::string& address,
Johnathan Mantey01784822019-06-18 12:44:21 -0700760 std::shared_ptr<AsyncResp> asyncResp)
761{
762 crow::connections::systemBus->async_method_call(
763 [asyncResp, ifaceId, address, prefixLength,
764 gateway](const boost::system::error_code ec) {
765 if (ec)
766 {
767 messages::internalError(asyncResp->res);
768 }
769 crow::connections::systemBus->async_method_call(
Ed Tanous23a21a12020-07-25 04:45:05 +0000770 [asyncResp](const boost::system::error_code ec2) {
771 if (ec2)
Johnathan Mantey01784822019-06-18 12:44:21 -0700772 {
773 messages::internalError(asyncResp->res);
774 }
775 },
776 "xyz.openbmc_project.Network",
777 "/xyz/openbmc_project/network/" + ifaceId,
778 "xyz.openbmc_project.Network.IP.Create", "IP",
779 "xyz.openbmc_project.Network.IP.Protocol.IPv4", address,
780 prefixLength, gateway);
781 },
782 "xyz.openbmc_project.Network",
783 +"/xyz/openbmc_project/network/" + ifaceId + "/ipv4/" + id,
784 "xyz.openbmc_project.Object.Delete", "Delete");
785}
786
787/**
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500788 * @brief Deletes given IPv6
789 *
790 * @param[in] ifaceId Id of interface whose IP should be deleted
791 * @param[in] ipHash DBus Hash id of IP that should be deleted
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500792 * @param[io] asyncResp Response object that will be returned to client
793 *
794 * @return None
795 */
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500796inline void deleteIPv6(const std::string& ifaceId, const std::string& ipHash,
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500797 const std::shared_ptr<AsyncResp> asyncResp)
798{
799 crow::connections::systemBus->async_method_call(
Johnathan Mantey286b9112019-06-10 13:38:04 -0700800 [asyncResp](const boost::system::error_code ec) {
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500801 if (ec)
802 {
803 messages::internalError(asyncResp->res);
804 }
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500805 },
806 "xyz.openbmc_project.Network",
807 "/xyz/openbmc_project/network/" + ifaceId + "/ipv6/" + ipHash,
808 "xyz.openbmc_project.Object.Delete", "Delete");
809}
810
811/**
Johnathan Mantey01784822019-06-18 12:44:21 -0700812 * @brief Deletes the IPv6 entry for this interface and creates a replacement
813 * static IPv6 entry
814 *
815 * @param[in] ifaceId Id of interface upon which to create the IPv6 entry
816 * @param[in] id The unique hash entry identifying the DBus entry
817 * @param[in] prefixLength IPv6 prefix syntax for the subnet mask
818 * @param[in] address IPv6 address to assign to this interface
819 * @param[io] asyncResp Response object that will be returned to client
820 *
821 * @return None
822 */
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500823inline void deleteAndCreateIPv6(const std::string& ifaceId,
824 const std::string& id, uint8_t prefixLength,
825 const std::string& address,
Johnathan Mantey01784822019-06-18 12:44:21 -0700826 std::shared_ptr<AsyncResp> asyncResp)
827{
828 crow::connections::systemBus->async_method_call(
829 [asyncResp, ifaceId, address,
830 prefixLength](const boost::system::error_code ec) {
831 if (ec)
832 {
833 messages::internalError(asyncResp->res);
834 }
835 crow::connections::systemBus->async_method_call(
Ed Tanous23a21a12020-07-25 04:45:05 +0000836 [asyncResp](const boost::system::error_code ec2) {
837 if (ec2)
Johnathan Mantey01784822019-06-18 12:44:21 -0700838 {
839 messages::internalError(asyncResp->res);
840 }
841 },
842 "xyz.openbmc_project.Network",
843 "/xyz/openbmc_project/network/" + ifaceId,
844 "xyz.openbmc_project.Network.IP.Create", "IP",
845 "xyz.openbmc_project.Network.IP.Protocol.IPv6", address,
846 prefixLength, "");
847 },
848 "xyz.openbmc_project.Network",
849 +"/xyz/openbmc_project/network/" + ifaceId + "/ipv6/" + id,
850 "xyz.openbmc_project.Object.Delete", "Delete");
851}
852
853/**
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500854 * @brief Creates IPv6 with given data
855 *
856 * @param[in] ifaceId Id of interface whose IP should be added
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500857 * @param[in] prefixLength Prefix length that needs to be added
858 * @param[in] address IP address that needs to be added
859 * @param[io] asyncResp Response object that will be returned to client
860 *
861 * @return None
862 */
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500863inline void createIPv6(const std::string& ifaceId, uint8_t prefixLength,
864 const std::string& address,
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500865 std::shared_ptr<AsyncResp> asyncResp)
866{
867 auto createIpHandler = [asyncResp](const boost::system::error_code ec) {
868 if (ec)
869 {
870 messages::internalError(asyncResp->res);
871 }
872 };
873 // Passing null for gateway, as per redfish spec IPv6StaticAddresses object
Gunnar Mills4e0453b2020-07-08 14:00:30 -0500874 // does not have associated gateway property
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500875 crow::connections::systemBus->async_method_call(
876 std::move(createIpHandler), "xyz.openbmc_project.Network",
877 "/xyz/openbmc_project/network/" + ifaceId,
878 "xyz.openbmc_project.Network.IP.Create", "IP",
879 "xyz.openbmc_project.Network.IP.Protocol.IPv6", address, prefixLength,
880 "");
881}
882
Ed Tanous4a0cb852018-10-15 07:55:04 -0700883/**
884 * Function that retrieves all properties for given Ethernet Interface
885 * Object
886 * from EntityManager Network Manager
887 * @param ethiface_id a eth interface id to query on DBus
888 * @param callback a function that shall be called to convert Dbus output
889 * into JSON
890 */
891template <typename CallbackFunc>
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500892void getEthernetIfaceData(const std::string& ethiface_id,
893 CallbackFunc&& callback)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700894{
895 crow::connections::systemBus->async_method_call(
Ed Tanous2c70f802020-09-28 14:29:23 -0700896 [ethifaceId{std::string{ethiface_id}}, callback{std::move(callback)}](
Ed Tanous4a0cb852018-10-15 07:55:04 -0700897 const boost::system::error_code error_code,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500898 const GetManagedObjects& resp) {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700899 EthernetInterfaceData ethData{};
900 boost::container::flat_set<IPv4AddressData> ipv4Data;
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500901 boost::container::flat_set<IPv6AddressData> ipv6Data;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700902
903 if (error_code)
904 {
Johnathan Mantey01784822019-06-18 12:44:21 -0700905 callback(false, ethData, ipv4Data, ipv6Data);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700906 return;
907 }
908
Ed Tanous4c9afe42019-05-03 16:59:57 -0700909 bool found =
Ed Tanous2c70f802020-09-28 14:29:23 -0700910 extractEthernetInterfaceData(ethifaceId, resp, ethData);
Ed Tanous4c9afe42019-05-03 16:59:57 -0700911 if (!found)
912 {
Johnathan Mantey01784822019-06-18 12:44:21 -0700913 callback(false, ethData, ipv4Data, ipv6Data);
Ed Tanous4c9afe42019-05-03 16:59:57 -0700914 return;
915 }
916
Ed Tanous2c70f802020-09-28 14:29:23 -0700917 extractIPData(ethifaceId, resp, ipv4Data);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700918 // Fix global GW
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500919 for (IPv4AddressData& ipv4 : ipv4Data)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700920 {
Ravi Tejac6191412019-07-30 00:53:50 -0500921 if (((ipv4.linktype == LinkType::Global) &&
922 (ipv4.gateway == "0.0.0.0")) ||
923 (ipv4.origin == "DHCP"))
Ed Tanous1abe55e2018-09-05 08:30:59 -0700924 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700925 ipv4.gateway = ethData.default_gateway;
926 }
927 }
928
Ed Tanous2c70f802020-09-28 14:29:23 -0700929 extractIPV6Data(ethifaceId, resp, ipv6Data);
Gunnar Mills4e0453b2020-07-08 14:00:30 -0500930 // Finally make a callback with useful data
Johnathan Mantey01784822019-06-18 12:44:21 -0700931 callback(true, ethData, ipv4Data, ipv6Data);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700932 },
933 "xyz.openbmc_project.Network", "/xyz/openbmc_project/network",
934 "org.freedesktop.DBus.ObjectManager", "GetManagedObjects");
Ed Tanous271584a2019-07-09 16:24:22 -0700935}
Ed Tanous4a0cb852018-10-15 07:55:04 -0700936
937/**
938 * Function that retrieves all Ethernet Interfaces available through Network
939 * Manager
940 * @param callback a function that shall be called to convert Dbus output
941 * into JSON.
942 */
943template <typename CallbackFunc>
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500944void getEthernetIfaceList(CallbackFunc&& callback)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700945{
946 crow::connections::systemBus->async_method_call(
947 [callback{std::move(callback)}](
948 const boost::system::error_code error_code,
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500949 GetManagedObjects& resp) {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700950 // Callback requires vector<string> to retrieve all available
951 // ethernet interfaces
Ed Tanous2c70f802020-09-28 14:29:23 -0700952 boost::container::flat_set<std::string> ifaceList;
953 ifaceList.reserve(resp.size());
Ed Tanous4a0cb852018-10-15 07:55:04 -0700954 if (error_code)
955 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700956 callback(false, ifaceList);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700957 return;
958 }
959
960 // Iterate over all retrieved ObjectPaths.
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500961 for (const auto& objpath : resp)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700962 {
963 // And all interfaces available for certain ObjectPath.
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500964 for (const auto& interface : objpath.second)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700965 {
966 // If interface is
967 // xyz.openbmc_project.Network.EthernetInterface, this is
968 // what we're looking for.
969 if (interface.first ==
970 "xyz.openbmc_project.Network.EthernetInterface")
Ed Tanous1abe55e2018-09-05 08:30:59 -0700971 {
Gunnar Mills4e0453b2020-07-08 14:00:30 -0500972 // Cut out everything until last "/", ...
Ed Tanous2c70f802020-09-28 14:29:23 -0700973 const std::string& ifaceId = objpath.first.str;
974 std::size_t lastPos = ifaceId.rfind("/");
975 if (lastPos != std::string::npos)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700976 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700977 // and put it into output vector.
Ed Tanous2c70f802020-09-28 14:29:23 -0700978 ifaceList.emplace(ifaceId.substr(lastPos + 1));
Ed Tanous1abe55e2018-09-05 08:30:59 -0700979 }
980 }
981 }
Ed Tanous4a0cb852018-10-15 07:55:04 -0700982 }
983 // Finally make a callback with useful data
Ed Tanous2c70f802020-09-28 14:29:23 -0700984 callback(true, ifaceList);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700985 },
986 "xyz.openbmc_project.Network", "/xyz/openbmc_project/network",
987 "org.freedesktop.DBus.ObjectManager", "GetManagedObjects");
Ed Tanous271584a2019-07-09 16:24:22 -0700988}
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +0100989
990/**
991 * EthernetCollection derived class for delivering Ethernet Collection Schema
992 */
Ed Tanous1abe55e2018-09-05 08:30:59 -0700993class EthernetCollection : public Node
994{
995 public:
Ed Tanous52cc1122020-07-18 13:51:21 -0700996 EthernetCollection(App& app) :
Ed Tanous4a0cb852018-10-15 07:55:04 -0700997 Node(app, "/redfish/v1/Managers/bmc/EthernetInterfaces/")
Ed Tanous1abe55e2018-09-05 08:30:59 -0700998 {
Ed Tanous1abe55e2018-09-05 08:30:59 -0700999 entityPrivileges = {
1000 {boost::beast::http::verb::get, {{"Login"}}},
1001 {boost::beast::http::verb::head, {{"Login"}}},
1002 {boost::beast::http::verb::patch, {{"ConfigureComponents"}}},
1003 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
1004 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
1005 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
1006 }
1007
1008 private:
1009 /**
1010 * Functions triggers appropriate requests on DBus
1011 */
Ed Tanouscb13a392020-07-25 19:02:03 +00001012 void doGet(crow::Response& res, const crow::Request&,
1013 const std::vector<std::string>&) override
Ed Tanous1abe55e2018-09-05 08:30:59 -07001014 {
Ed Tanous0f74e642018-11-12 15:17:05 -08001015 res.jsonValue["@odata.type"] =
1016 "#EthernetInterfaceCollection.EthernetInterfaceCollection";
Ed Tanous0f74e642018-11-12 15:17:05 -08001017 res.jsonValue["@odata.id"] =
1018 "/redfish/v1/Managers/bmc/EthernetInterfaces";
1019 res.jsonValue["Name"] = "Ethernet Network Interface Collection";
1020 res.jsonValue["Description"] =
1021 "Collection of EthernetInterfaces for this Manager";
Ed Tanous4c9afe42019-05-03 16:59:57 -07001022 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
Ed Tanous4a0cb852018-10-15 07:55:04 -07001023 // Get eth interface list, and call the below callback for JSON
Ed Tanous1abe55e2018-09-05 08:30:59 -07001024 // preparation
Jason M. Billsf12894f2018-10-09 12:45:45 -07001025 getEthernetIfaceList(
Ed Tanous4c9afe42019-05-03 16:59:57 -07001026 [asyncResp](
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001027 const bool& success,
1028 const boost::container::flat_set<std::string>& iface_list) {
Jason M. Billsf12894f2018-10-09 12:45:45 -07001029 if (!success)
1030 {
Ed Tanous4c9afe42019-05-03 16:59:57 -07001031 messages::internalError(asyncResp->res);
Jason M. Billsf12894f2018-10-09 12:45:45 -07001032 return;
1033 }
1034
Ed Tanous2c70f802020-09-28 14:29:23 -07001035 nlohmann::json& ifaceArray =
Ed Tanous4c9afe42019-05-03 16:59:57 -07001036 asyncResp->res.jsonValue["Members"];
Ed Tanous2c70f802020-09-28 14:29:23 -07001037 ifaceArray = nlohmann::json::array();
Sunitha Harishfda13ad2019-03-21 11:01:24 -05001038 std::string tag = "_";
Ed Tanous2c70f802020-09-28 14:29:23 -07001039 for (const std::string& ifaceItem : iface_list)
Jason M. Billsf12894f2018-10-09 12:45:45 -07001040 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001041 std::size_t found = ifaceItem.find(tag);
Sunitha Harishfda13ad2019-03-21 11:01:24 -05001042 if (found == std::string::npos)
1043 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001044 ifaceArray.push_back(
Sunitha Harishfda13ad2019-03-21 11:01:24 -05001045 {{"@odata.id",
1046 "/redfish/v1/Managers/bmc/EthernetInterfaces/" +
Ed Tanous2c70f802020-09-28 14:29:23 -07001047 ifaceItem}});
Sunitha Harishfda13ad2019-03-21 11:01:24 -05001048 }
Jason M. Billsf12894f2018-10-09 12:45:45 -07001049 }
1050
Ed Tanous4c9afe42019-05-03 16:59:57 -07001051 asyncResp->res.jsonValue["Members@odata.count"] =
Ed Tanous2c70f802020-09-28 14:29:23 -07001052 ifaceArray.size();
Ed Tanous4c9afe42019-05-03 16:59:57 -07001053 asyncResp->res.jsonValue["@odata.id"] =
Jason M. Billsf12894f2018-10-09 12:45:45 -07001054 "/redfish/v1/Managers/bmc/EthernetInterfaces";
Jason M. Billsf12894f2018-10-09 12:45:45 -07001055 });
Ed Tanous4a0cb852018-10-15 07:55:04 -07001056 }
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +01001057};
1058
1059/**
1060 * EthernetInterface derived class for delivering Ethernet Schema
1061 */
Ed Tanous1abe55e2018-09-05 08:30:59 -07001062class EthernetInterface : public Node
1063{
1064 public:
1065 /*
1066 * Default Constructor
1067 */
Ed Tanous52cc1122020-07-18 13:51:21 -07001068 EthernetInterface(App& app) :
Ed Tanous4a0cb852018-10-15 07:55:04 -07001069 Node(app, "/redfish/v1/Managers/bmc/EthernetInterfaces/<str>/",
Ed Tanous1abe55e2018-09-05 08:30:59 -07001070 std::string())
1071 {
Ed Tanous1abe55e2018-09-05 08:30:59 -07001072 entityPrivileges = {
1073 {boost::beast::http::verb::get, {{"Login"}}},
1074 {boost::beast::http::verb::head, {{"Login"}}},
1075 {boost::beast::http::verb::patch, {{"ConfigureComponents"}}},
1076 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
1077 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
1078 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
Kowalski, Kamil588c3f02018-04-03 14:55:27 +02001079 }
1080
Ed Tanous1abe55e2018-09-05 08:30:59 -07001081 private:
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001082 void handleHostnamePatch(const std::string& hostname,
Ed Tanous4a0cb852018-10-15 07:55:04 -07001083 const std::shared_ptr<AsyncResp> asyncResp)
Ed Tanous1abe55e2018-09-05 08:30:59 -07001084 {
Joshi-Mansiab6554f2020-03-10 18:33:36 +05301085 // SHOULD handle host names of up to 255 characters(RFC 1123)
1086 if (hostname.length() > 255)
1087 {
1088 messages::propertyValueFormatError(asyncResp->res, hostname,
1089 "HostName");
1090 return;
1091 }
Ed Tanousbc0bd6e2018-12-10 14:07:55 -08001092 crow::connections::systemBus->async_method_call(
1093 [asyncResp](const boost::system::error_code ec) {
1094 if (ec)
1095 {
1096 messages::internalError(asyncResp->res);
1097 }
1098 },
1099 "xyz.openbmc_project.Network",
1100 "/xyz/openbmc_project/network/config",
1101 "org.freedesktop.DBus.Properties", "Set",
1102 "xyz.openbmc_project.Network.SystemConfiguration", "HostName",
Ed Tanousabf2add2019-01-22 16:40:12 -08001103 std::variant<std::string>(hostname));
Ed Tanous1abe55e2018-09-05 08:30:59 -07001104 }
1105
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001106 void handleDomainnamePatch(const std::string& ifaceId,
1107 const std::string& domainname,
Joshi-Mansiab6554f2020-03-10 18:33:36 +05301108 const std::shared_ptr<AsyncResp> asyncResp)
1109 {
1110 std::vector<std::string> vectorDomainname = {domainname};
1111 crow::connections::systemBus->async_method_call(
1112 [asyncResp](const boost::system::error_code ec) {
1113 if (ec)
1114 {
1115 messages::internalError(asyncResp->res);
1116 }
1117 },
1118 "xyz.openbmc_project.Network",
1119 "/xyz/openbmc_project/network/" + ifaceId,
1120 "org.freedesktop.DBus.Properties", "Set",
1121 "xyz.openbmc_project.Network.EthernetInterface", "DomainName",
1122 std::variant<std::vector<std::string>>(vectorDomainname));
1123 }
1124
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001125 void handleFqdnPatch(const std::string& ifaceId, const std::string& fqdn,
Joshi-Mansiab6554f2020-03-10 18:33:36 +05301126 const std::shared_ptr<AsyncResp> asyncResp)
1127 {
1128 // Total length of FQDN must not exceed 255 characters(RFC 1035)
1129 if (fqdn.length() > 255)
1130 {
1131 messages::propertyValueFormatError(asyncResp->res, fqdn, "FQDN");
1132 return;
1133 }
1134
1135 size_t pos = fqdn.find('.');
1136 if (pos == std::string::npos)
1137 {
1138 messages::propertyValueFormatError(asyncResp->res, fqdn, "FQDN");
1139 return;
1140 }
1141
1142 std::string hostname;
1143 std::string domainname;
1144 domainname = (fqdn).substr(pos + 1);
1145 hostname = (fqdn).substr(0, pos);
1146
1147 if (!isHostnameValid(hostname) || !isDomainnameValid(domainname))
1148 {
1149 messages::propertyValueFormatError(asyncResp->res, fqdn, "FQDN");
1150 return;
1151 }
1152
1153 handleHostnamePatch(hostname, asyncResp);
1154 handleDomainnamePatch(ifaceId, domainname, asyncResp);
1155 }
1156
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001157 bool isHostnameValid(const std::string& hostname)
Joshi-Mansiab6554f2020-03-10 18:33:36 +05301158 {
1159 // A valid host name can never have the dotted-decimal form (RFC 1123)
1160 if (std::all_of(hostname.begin(), hostname.end(), ::isdigit))
1161 {
1162 return false;
1163 }
1164 // Each label(hostname/subdomains) within a valid FQDN
1165 // MUST handle host names of up to 63 characters (RFC 1123)
1166 // labels cannot start or end with hyphens (RFC 952)
1167 // labels can start with numbers (RFC 1123)
1168 const std::regex pattern(
1169 "^[a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]{0,61}[a-zA-Z0-9]$");
1170
1171 return std::regex_match(hostname, pattern);
1172 }
1173
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001174 bool isDomainnameValid(const std::string& domainname)
Joshi-Mansiab6554f2020-03-10 18:33:36 +05301175 {
1176 // Can have multiple subdomains
1177 // Top Level Domain's min length is 2 character
1178 const std::regex pattern("^([A-Za-z0-9][a-zA-Z0-9\\-]{1,61}|[a-zA-Z0-9]"
1179 "{1,30}\\.)*[a-zA-Z]{2,}$");
1180
1181 return std::regex_match(domainname, pattern);
1182 }
1183
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001184 void handleMACAddressPatch(const std::string& ifaceId,
1185 const std::string& macAddress,
1186 const std::shared_ptr<AsyncResp>& asyncResp)
Ratan Guptad5776652019-03-03 08:47:22 +05301187 {
1188 crow::connections::systemBus->async_method_call(
1189 [asyncResp, macAddress](const boost::system::error_code ec) {
1190 if (ec)
1191 {
1192 messages::internalError(asyncResp->res);
1193 return;
1194 }
Ratan Guptad5776652019-03-03 08:47:22 +05301195 },
1196 "xyz.openbmc_project.Network",
1197 "/xyz/openbmc_project/network/" + ifaceId,
1198 "org.freedesktop.DBus.Properties", "Set",
1199 "xyz.openbmc_project.Network.MACAddress", "MACAddress",
1200 std::variant<std::string>(macAddress));
1201 }
Johnathan Mantey286b9112019-06-10 13:38:04 -07001202
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001203 void setDHCPEnabled(const std::string& ifaceId,
1204 const std::string& propertyName, const bool v4Value,
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001205 const bool v6Value,
Jennifer Leeda131a92019-04-24 15:13:55 -07001206 const std::shared_ptr<AsyncResp> asyncResp)
1207 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001208 const std::string dhcp = getDhcpEnabledEnumeration(v4Value, v6Value);
Jennifer Leeda131a92019-04-24 15:13:55 -07001209 crow::connections::systemBus->async_method_call(
1210 [asyncResp](const boost::system::error_code ec) {
1211 if (ec)
1212 {
1213 BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec;
1214 messages::internalError(asyncResp->res);
1215 return;
1216 }
1217 },
1218 "xyz.openbmc_project.Network",
1219 "/xyz/openbmc_project/network/" + ifaceId,
1220 "org.freedesktop.DBus.Properties", "Set",
1221 "xyz.openbmc_project.Network.EthernetInterface", propertyName,
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001222 std::variant<std::string>{dhcp});
Jennifer Leeda131a92019-04-24 15:13:55 -07001223 }
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001224
Johnathan Manteyeeedda22019-10-29 16:09:52 -07001225 void setEthernetInterfaceBoolProperty(
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001226 const std::string& ifaceId, const std::string& propertyName,
1227 const bool& value, const std::shared_ptr<AsyncResp> asyncResp)
Johnathan Manteyeeedda22019-10-29 16:09:52 -07001228 {
1229 crow::connections::systemBus->async_method_call(
1230 [asyncResp](const boost::system::error_code ec) {
1231 if (ec)
1232 {
1233 BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec;
1234 messages::internalError(asyncResp->res);
1235 return;
1236 }
1237 },
1238 "xyz.openbmc_project.Network",
1239 "/xyz/openbmc_project/network/" + ifaceId,
1240 "org.freedesktop.DBus.Properties", "Set",
1241 "xyz.openbmc_project.Network.EthernetInterface", propertyName,
1242 std::variant<bool>{value});
1243 }
1244
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001245 void setDHCPv4Config(const std::string& propertyName, const bool& value,
Jennifer Leeda131a92019-04-24 15:13:55 -07001246 const std::shared_ptr<AsyncResp> asyncResp)
1247 {
1248 BMCWEB_LOG_DEBUG << propertyName << " = " << value;
1249 crow::connections::systemBus->async_method_call(
1250 [asyncResp](const boost::system::error_code ec) {
1251 if (ec)
1252 {
1253 BMCWEB_LOG_ERROR << "D-Bus responses error: " << ec;
1254 messages::internalError(asyncResp->res);
1255 return;
1256 }
1257 },
1258 "xyz.openbmc_project.Network",
1259 "/xyz/openbmc_project/network/config/dhcp",
1260 "org.freedesktop.DBus.Properties", "Set",
1261 "xyz.openbmc_project.Network.DHCPConfiguration", propertyName,
1262 std::variant<bool>{value});
1263 }
Ratan Guptad5776652019-03-03 08:47:22 +05301264
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001265 void handleDHCPPatch(const std::string& ifaceId,
1266 const EthernetInterfaceData& ethData,
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001267 DHCPParameters v4dhcpParms, DHCPParameters v6dhcpParms,
1268 const std::shared_ptr<AsyncResp> asyncResp)
Jennifer Leeda131a92019-04-24 15:13:55 -07001269 {
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001270 bool ipv4Active = translateDHCPEnabledToBool(ethData.DHCPEnabled, true);
1271 bool ipv6Active =
1272 translateDHCPEnabledToBool(ethData.DHCPEnabled, false);
Jennifer Leeda131a92019-04-24 15:13:55 -07001273
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001274 bool nextv4DHCPState =
1275 v4dhcpParms.dhcpv4Enabled ? *v4dhcpParms.dhcpv4Enabled : ipv4Active;
1276
1277 bool nextv6DHCPState{};
1278 if (v6dhcpParms.dhcpv6OperatingMode)
Jennifer Leeda131a92019-04-24 15:13:55 -07001279 {
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001280 if ((*v6dhcpParms.dhcpv6OperatingMode != "Stateful") &&
1281 (*v6dhcpParms.dhcpv6OperatingMode != "Stateless") &&
1282 (*v6dhcpParms.dhcpv6OperatingMode != "Disabled"))
1283 {
1284 messages::propertyValueFormatError(
1285 asyncResp->res, *v6dhcpParms.dhcpv6OperatingMode,
1286 "OperatingMode");
1287 return;
1288 }
1289 nextv6DHCPState = (*v6dhcpParms.dhcpv6OperatingMode == "Stateful");
1290 }
1291 else
1292 {
1293 nextv6DHCPState = ipv6Active;
Jennifer Leeda131a92019-04-24 15:13:55 -07001294 }
1295
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001296 bool nextDNS{};
1297 if (v4dhcpParms.useDNSServers && v6dhcpParms.useDNSServers)
Jennifer Leeda131a92019-04-24 15:13:55 -07001298 {
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001299 if (*v4dhcpParms.useDNSServers != *v6dhcpParms.useDNSServers)
1300 {
1301 messages::generalError(asyncResp->res);
1302 return;
1303 }
1304 nextDNS = *v4dhcpParms.useDNSServers;
1305 }
1306 else if (v4dhcpParms.useDNSServers)
1307 {
1308 nextDNS = *v4dhcpParms.useDNSServers;
1309 }
1310 else if (v6dhcpParms.useDNSServers)
1311 {
1312 nextDNS = *v6dhcpParms.useDNSServers;
1313 }
1314 else
1315 {
1316 nextDNS = ethData.DNSEnabled;
Jennifer Leeda131a92019-04-24 15:13:55 -07001317 }
1318
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001319 bool nextNTP{};
1320 if (v4dhcpParms.useNTPServers && v6dhcpParms.useNTPServers)
Jennifer Leeda131a92019-04-24 15:13:55 -07001321 {
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001322 if (*v4dhcpParms.useNTPServers != *v6dhcpParms.useNTPServers)
1323 {
1324 messages::generalError(asyncResp->res);
1325 return;
1326 }
1327 nextNTP = *v4dhcpParms.useNTPServers;
1328 }
1329 else if (v4dhcpParms.useNTPServers)
1330 {
1331 nextNTP = *v4dhcpParms.useNTPServers;
1332 }
1333 else if (v6dhcpParms.useNTPServers)
1334 {
1335 nextNTP = *v6dhcpParms.useNTPServers;
1336 }
1337 else
1338 {
1339 nextNTP = ethData.NTPEnabled;
Jennifer Leeda131a92019-04-24 15:13:55 -07001340 }
1341
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001342 bool nextUseDomain{};
1343 if (v4dhcpParms.useUseDomainName && v6dhcpParms.useUseDomainName)
Jennifer Leeda131a92019-04-24 15:13:55 -07001344 {
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001345 if (*v4dhcpParms.useUseDomainName != *v6dhcpParms.useUseDomainName)
1346 {
1347 messages::generalError(asyncResp->res);
1348 return;
1349 }
1350 nextUseDomain = *v4dhcpParms.useUseDomainName;
1351 }
1352 else if (v4dhcpParms.useUseDomainName)
1353 {
1354 nextUseDomain = *v4dhcpParms.useUseDomainName;
1355 }
1356 else if (v6dhcpParms.useUseDomainName)
1357 {
1358 nextUseDomain = *v6dhcpParms.useUseDomainName;
1359 }
1360 else
1361 {
1362 nextUseDomain = ethData.HostNameEnabled;
Jennifer Leeda131a92019-04-24 15:13:55 -07001363 }
1364
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001365 BMCWEB_LOG_DEBUG << "set DHCPEnabled...";
1366 setDHCPEnabled(ifaceId, "DHCPEnabled", nextv4DHCPState, nextv6DHCPState,
1367 asyncResp);
1368 BMCWEB_LOG_DEBUG << "set DNSEnabled...";
1369 setDHCPv4Config("DNSEnabled", nextDNS, asyncResp);
1370 BMCWEB_LOG_DEBUG << "set NTPEnabled...";
1371 setDHCPv4Config("NTPEnabled", nextNTP, asyncResp);
1372 BMCWEB_LOG_DEBUG << "set HostNameEnabled...";
1373 setDHCPv4Config("HostNameEnabled", nextUseDomain, asyncResp);
Jennifer Leeda131a92019-04-24 15:13:55 -07001374 }
Johnathan Mantey01784822019-06-18 12:44:21 -07001375
1376 boost::container::flat_set<IPv4AddressData>::const_iterator
Ed Tanous2c70f802020-09-28 14:29:23 -07001377 getNextStaticIpEntry(
Johnathan Mantey01784822019-06-18 12:44:21 -07001378 boost::container::flat_set<IPv4AddressData>::const_iterator head,
1379 boost::container::flat_set<IPv4AddressData>::const_iterator end)
1380 {
1381 for (; head != end; head++)
1382 {
1383 if (head->origin == "Static")
1384 {
1385 return head;
1386 }
1387 }
1388 return end;
1389 }
1390
1391 boost::container::flat_set<IPv6AddressData>::const_iterator
Ed Tanous2c70f802020-09-28 14:29:23 -07001392 getNextStaticIpEntry(
Johnathan Mantey01784822019-06-18 12:44:21 -07001393 boost::container::flat_set<IPv6AddressData>::const_iterator head,
1394 boost::container::flat_set<IPv6AddressData>::const_iterator end)
1395 {
1396 for (; head != end; head++)
1397 {
1398 if (head->origin == "Static")
1399 {
1400 return head;
1401 }
1402 }
1403 return end;
1404 }
1405
Ravi Tejad1d50812019-06-23 16:20:27 -05001406 void handleIPv4StaticPatch(
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001407 const std::string& ifaceId, nlohmann::json& input,
1408 const boost::container::flat_set<IPv4AddressData>& ipv4Data,
Ed Tanous4a0cb852018-10-15 07:55:04 -07001409 const std::shared_ptr<AsyncResp> asyncResp)
Ed Tanous1abe55e2018-09-05 08:30:59 -07001410 {
Johnathan Mantey01784822019-06-18 12:44:21 -07001411 if ((!input.is_array()) || input.empty())
Ratan Guptaf476acb2019-03-02 16:46:57 +05301412 {
1413 messages::propertyValueTypeError(asyncResp->res, input.dump(),
Ravi Tejad1d50812019-06-23 16:20:27 -05001414 "IPv4StaticAddresses");
Ratan Guptaf476acb2019-03-02 16:46:57 +05301415 return;
1416 }
1417
Ed Tanous271584a2019-07-09 16:24:22 -07001418 unsigned entryIdx = 1;
Johnathan Mantey01784822019-06-18 12:44:21 -07001419 // Find the first static IP address currently active on the NIC and
1420 // match it to the first JSON element in the IPv4StaticAddresses array.
1421 // Match each subsequent JSON element to the next static IP programmed
1422 // into the NIC.
Ed Tanous2c70f802020-09-28 14:29:23 -07001423 boost::container::flat_set<IPv4AddressData>::const_iterator niciPentry =
1424 getNextStaticIpEntry(ipv4Data.cbegin(), ipv4Data.cend());
Johnathan Mantey01784822019-06-18 12:44:21 -07001425
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001426 for (nlohmann::json& thisJson : input)
Ed Tanous1abe55e2018-09-05 08:30:59 -07001427 {
Ed Tanous4a0cb852018-10-15 07:55:04 -07001428 std::string pathString =
Ravi Tejad1d50812019-06-23 16:20:27 -05001429 "IPv4StaticAddresses/" + std::to_string(entryIdx);
Ed Tanous1abe55e2018-09-05 08:30:59 -07001430
Johnathan Mantey01784822019-06-18 12:44:21 -07001431 if (!thisJson.is_null() && !thisJson.empty())
Ratan Guptaf476acb2019-03-02 16:46:57 +05301432 {
Johnathan Mantey01784822019-06-18 12:44:21 -07001433 std::optional<std::string> address;
1434 std::optional<std::string> subnetMask;
1435 std::optional<std::string> gateway;
1436
1437 if (!json_util::readJson(thisJson, asyncResp->res, "Address",
1438 address, "SubnetMask", subnetMask,
1439 "Gateway", gateway))
Ratan Guptaf476acb2019-03-02 16:46:57 +05301440 {
1441 messages::propertyValueFormatError(
Johnathan Mantey01784822019-06-18 12:44:21 -07001442 asyncResp->res, thisJson.dump(), pathString);
Ratan Guptaf476acb2019-03-02 16:46:57 +05301443 return;
Ratan Guptaf476acb2019-03-02 16:46:57 +05301444 }
Ratan Guptaf476acb2019-03-02 16:46:57 +05301445
Johnathan Mantey01784822019-06-18 12:44:21 -07001446 // Find the address/subnet/gateway values. Any values that are
1447 // not explicitly provided are assumed to be unmodified from the
1448 // current state of the interface. Merge existing state into the
1449 // current request.
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001450 const std::string* addr = nullptr;
1451 const std::string* gw = nullptr;
Johnathan Mantey01784822019-06-18 12:44:21 -07001452 uint8_t prefixLength = 0;
1453 bool errorInEntry = false;
1454 if (address)
Ratan Gupta9474b372019-03-01 15:13:37 +05301455 {
Johnathan Mantey01784822019-06-18 12:44:21 -07001456 if (ipv4VerifyIpAndGetBitcount(*address))
1457 {
1458 addr = &(*address);
1459 }
1460 else
1461 {
1462 messages::propertyValueFormatError(
1463 asyncResp->res, *address, pathString + "/Address");
1464 errorInEntry = true;
1465 }
1466 }
Ed Tanous2c70f802020-09-28 14:29:23 -07001467 else if (niciPentry != ipv4Data.cend())
Johnathan Mantey01784822019-06-18 12:44:21 -07001468 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001469 addr = &(niciPentry->address);
Ratan Gupta9474b372019-03-01 15:13:37 +05301470 }
1471 else
1472 {
1473 messages::propertyMissing(asyncResp->res,
1474 pathString + "/Address");
Johnathan Mantey01784822019-06-18 12:44:21 -07001475 errorInEntry = true;
Ed Tanous1abe55e2018-09-05 08:30:59 -07001476 }
Ratan Guptaf476acb2019-03-02 16:46:57 +05301477
1478 if (subnetMask)
Ed Tanous1abe55e2018-09-05 08:30:59 -07001479 {
Johnathan Mantey01784822019-06-18 12:44:21 -07001480 if (!ipv4VerifyIpAndGetBitcount(*subnetMask, &prefixLength))
1481 {
1482 messages::propertyValueFormatError(
1483 asyncResp->res, *subnetMask,
1484 pathString + "/SubnetMask");
1485 errorInEntry = true;
1486 }
1487 }
Ed Tanous2c70f802020-09-28 14:29:23 -07001488 else if (niciPentry != ipv4Data.cend())
Johnathan Mantey01784822019-06-18 12:44:21 -07001489 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001490 if (!ipv4VerifyIpAndGetBitcount(niciPentry->netmask,
Johnathan Mantey01784822019-06-18 12:44:21 -07001491 &prefixLength))
1492 {
1493 messages::propertyValueFormatError(
Ed Tanous2c70f802020-09-28 14:29:23 -07001494 asyncResp->res, niciPentry->netmask,
Johnathan Mantey01784822019-06-18 12:44:21 -07001495 pathString + "/SubnetMask");
1496 errorInEntry = true;
1497 }
1498 }
1499 else
1500 {
1501 messages::propertyMissing(asyncResp->res,
1502 pathString + "/SubnetMask");
1503 errorInEntry = true;
Ed Tanous1abe55e2018-09-05 08:30:59 -07001504 }
Ratan Guptaf476acb2019-03-02 16:46:57 +05301505
Ratan Guptaf476acb2019-03-02 16:46:57 +05301506 if (gateway)
1507 {
Johnathan Mantey01784822019-06-18 12:44:21 -07001508 if (ipv4VerifyIpAndGetBitcount(*gateway))
1509 {
1510 gw = &(*gateway);
1511 }
1512 else
1513 {
1514 messages::propertyValueFormatError(
1515 asyncResp->res, *gateway, pathString + "/Gateway");
1516 errorInEntry = true;
1517 }
Ratan Guptaf476acb2019-03-02 16:46:57 +05301518 }
Ed Tanous2c70f802020-09-28 14:29:23 -07001519 else if (niciPentry != ipv4Data.cend())
Johnathan Mantey01784822019-06-18 12:44:21 -07001520 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001521 gw = &niciPentry->gateway;
Johnathan Mantey01784822019-06-18 12:44:21 -07001522 }
1523 else
Ed Tanous4a0cb852018-10-15 07:55:04 -07001524 {
Jason M. Billsa08b46c2018-11-06 15:01:08 -08001525 messages::propertyMissing(asyncResp->res,
Jason M. Billsf12894f2018-10-09 12:45:45 -07001526 pathString + "/Gateway");
Johnathan Mantey01784822019-06-18 12:44:21 -07001527 errorInEntry = true;
Ed Tanous4a0cb852018-10-15 07:55:04 -07001528 }
1529
Johnathan Mantey01784822019-06-18 12:44:21 -07001530 if (errorInEntry)
Ed Tanous4a0cb852018-10-15 07:55:04 -07001531 {
Johnathan Mantey01784822019-06-18 12:44:21 -07001532 return;
Ed Tanous4a0cb852018-10-15 07:55:04 -07001533 }
1534
Ed Tanous2c70f802020-09-28 14:29:23 -07001535 if (niciPentry != ipv4Data.cend())
Ed Tanous4a0cb852018-10-15 07:55:04 -07001536 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001537 deleteAndCreateIPv4(ifaceId, niciPentry->id, prefixLength,
Johnathan Mantey01784822019-06-18 12:44:21 -07001538 *gw, *addr, asyncResp);
Ed Tanous2c70f802020-09-28 14:29:23 -07001539 niciPentry =
1540 getNextStaticIpEntry(++niciPentry, ipv4Data.cend());
Ed Tanous4a0cb852018-10-15 07:55:04 -07001541 }
Johnathan Mantey01784822019-06-18 12:44:21 -07001542 else
1543 {
Ed Tanouscb13a392020-07-25 19:02:03 +00001544 createIPv4(ifaceId, prefixLength, *gateway, *address,
1545 asyncResp);
Johnathan Mantey01784822019-06-18 12:44:21 -07001546 }
1547 entryIdx++;
Ed Tanous4a0cb852018-10-15 07:55:04 -07001548 }
Johnathan Mantey01784822019-06-18 12:44:21 -07001549 else
1550 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001551 if (niciPentry == ipv4Data.cend())
Johnathan Mantey01784822019-06-18 12:44:21 -07001552 {
1553 // Requesting a DELETE/DO NOT MODIFY action for an item
1554 // that isn't present on the eth(n) interface. Input JSON is
1555 // in error, so bail out.
1556 if (thisJson.is_null())
1557 {
1558 messages::resourceCannotBeDeleted(asyncResp->res);
1559 return;
1560 }
Ed Tanous3174e4d2020-10-07 11:41:22 -07001561 messages::propertyValueFormatError(
1562 asyncResp->res, thisJson.dump(), pathString);
1563 return;
Johnathan Mantey01784822019-06-18 12:44:21 -07001564 }
1565
1566 if (thisJson.is_null())
1567 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001568 deleteIPv4(ifaceId, niciPentry->id, asyncResp);
Johnathan Mantey01784822019-06-18 12:44:21 -07001569 }
Ed Tanous2c70f802020-09-28 14:29:23 -07001570 if (niciPentry != ipv4Data.cend())
Johnathan Mantey01784822019-06-18 12:44:21 -07001571 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001572 niciPentry =
1573 getNextStaticIpEntry(++niciPentry, ipv4Data.cend());
Johnathan Mantey01784822019-06-18 12:44:21 -07001574 }
1575 entryIdx++;
1576 }
Ed Tanous1abe55e2018-09-05 08:30:59 -07001577 }
1578 }
1579
RAJESWARAN THILLAIGOVINDANf85837b2019-04-04 05:18:53 -05001580 void handleStaticNameServersPatch(
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001581 const std::string& ifaceId,
1582 const std::vector<std::string>& updatedStaticNameServers,
1583 const std::shared_ptr<AsyncResp>& asyncResp)
RAJESWARAN THILLAIGOVINDANf85837b2019-04-04 05:18:53 -05001584 {
1585 crow::connections::systemBus->async_method_call(
Johnathan Mantey286b9112019-06-10 13:38:04 -07001586 [asyncResp](const boost::system::error_code ec) {
RAJESWARAN THILLAIGOVINDANf85837b2019-04-04 05:18:53 -05001587 if (ec)
1588 {
1589 messages::internalError(asyncResp->res);
1590 return;
1591 }
RAJESWARAN THILLAIGOVINDANf85837b2019-04-04 05:18:53 -05001592 },
1593 "xyz.openbmc_project.Network",
1594 "/xyz/openbmc_project/network/" + ifaceId,
1595 "org.freedesktop.DBus.Properties", "Set",
manojkiran.eda@gmail.com0f6efdc2019-10-03 04:53:44 -05001596 "xyz.openbmc_project.Network.EthernetInterface",
1597 "StaticNameServers",
RAJESWARAN THILLAIGOVINDANf85837b2019-04-04 05:18:53 -05001598 std::variant<std::vector<std::string>>{updatedStaticNameServers});
1599 }
1600
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001601 void handleIPv6StaticAddressesPatch(
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001602 const std::string& ifaceId, nlohmann::json& input,
1603 const boost::container::flat_set<IPv6AddressData>& ipv6Data,
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001604 const std::shared_ptr<AsyncResp> asyncResp)
1605 {
Johnathan Mantey01784822019-06-18 12:44:21 -07001606 if (!input.is_array() || input.empty())
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001607 {
1608 messages::propertyValueTypeError(asyncResp->res, input.dump(),
1609 "IPv6StaticAddresses");
1610 return;
1611 }
Ed Tanous271584a2019-07-09 16:24:22 -07001612 size_t entryIdx = 1;
Ed Tanous2c70f802020-09-28 14:29:23 -07001613 boost::container::flat_set<IPv6AddressData>::const_iterator niciPentry =
1614 getNextStaticIpEntry(ipv6Data.cbegin(), ipv6Data.cend());
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001615 for (nlohmann::json& thisJson : input)
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001616 {
1617 std::string pathString =
1618 "IPv6StaticAddresses/" + std::to_string(entryIdx);
1619
Johnathan Mantey01784822019-06-18 12:44:21 -07001620 if (!thisJson.is_null() && !thisJson.empty())
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001621 {
Johnathan Mantey01784822019-06-18 12:44:21 -07001622 std::optional<std::string> address;
1623 std::optional<uint8_t> prefixLength;
1624
1625 if (!json_util::readJson(thisJson, asyncResp->res, "Address",
1626 address, "PrefixLength", prefixLength))
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001627 {
1628 messages::propertyValueFormatError(
Johnathan Mantey01784822019-06-18 12:44:21 -07001629 asyncResp->res, thisJson.dump(), pathString);
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001630 return;
1631 }
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001632
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001633 const std::string* addr;
Johnathan Mantey01784822019-06-18 12:44:21 -07001634 uint8_t prefix;
1635
1636 // Find the address and prefixLength values. Any values that are
1637 // not explicitly provided are assumed to be unmodified from the
1638 // current state of the interface. Merge existing state into the
1639 // current request.
1640 if (address)
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001641 {
Johnathan Mantey01784822019-06-18 12:44:21 -07001642 addr = &(*address);
1643 }
Ed Tanous2c70f802020-09-28 14:29:23 -07001644 else if (niciPentry != ipv6Data.end())
Johnathan Mantey01784822019-06-18 12:44:21 -07001645 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001646 addr = &(niciPentry->address);
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001647 }
1648 else
1649 {
1650 messages::propertyMissing(asyncResp->res,
1651 pathString + "/Address");
1652 return;
1653 }
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001654
1655 if (prefixLength)
1656 {
Johnathan Mantey01784822019-06-18 12:44:21 -07001657 prefix = *prefixLength;
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001658 }
Ed Tanous2c70f802020-09-28 14:29:23 -07001659 else if (niciPentry != ipv6Data.end())
Johnathan Mantey01784822019-06-18 12:44:21 -07001660 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001661 prefix = niciPentry->prefixLength;
Johnathan Mantey01784822019-06-18 12:44:21 -07001662 }
1663 else
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001664 {
1665 messages::propertyMissing(asyncResp->res,
1666 pathString + "/PrefixLength");
Johnathan Mantey01784822019-06-18 12:44:21 -07001667 return;
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001668 }
1669
Ed Tanous2c70f802020-09-28 14:29:23 -07001670 if (niciPentry != ipv6Data.end())
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001671 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001672 deleteAndCreateIPv6(ifaceId, niciPentry->id, prefix, *addr,
Johnathan Mantey01784822019-06-18 12:44:21 -07001673 asyncResp);
Ed Tanous2c70f802020-09-28 14:29:23 -07001674 niciPentry =
1675 getNextStaticIpEntry(++niciPentry, ipv6Data.cend());
Johnathan Mantey01784822019-06-18 12:44:21 -07001676 }
1677 else
1678 {
1679 createIPv6(ifaceId, *prefixLength, *addr, asyncResp);
1680 }
1681 entryIdx++;
1682 }
1683 else
1684 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001685 if (niciPentry == ipv6Data.end())
Johnathan Mantey01784822019-06-18 12:44:21 -07001686 {
1687 // Requesting a DELETE/DO NOT MODIFY action for an item
1688 // that isn't present on the eth(n) interface. Input JSON is
1689 // in error, so bail out.
1690 if (thisJson.is_null())
1691 {
1692 messages::resourceCannotBeDeleted(asyncResp->res);
1693 return;
1694 }
Ed Tanous3174e4d2020-10-07 11:41:22 -07001695 messages::propertyValueFormatError(
1696 asyncResp->res, thisJson.dump(), pathString);
1697 return;
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001698 }
1699
Johnathan Mantey01784822019-06-18 12:44:21 -07001700 if (thisJson.is_null())
1701 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001702 deleteIPv6(ifaceId, niciPentry->id, asyncResp);
Johnathan Mantey01784822019-06-18 12:44:21 -07001703 }
Ed Tanous2c70f802020-09-28 14:29:23 -07001704 if (niciPentry != ipv6Data.cend())
Johnathan Mantey01784822019-06-18 12:44:21 -07001705 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001706 niciPentry =
1707 getNextStaticIpEntry(++niciPentry, ipv6Data.cend());
Johnathan Mantey01784822019-06-18 12:44:21 -07001708 }
1709 entryIdx++;
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001710 }
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001711 }
1712 }
1713
Ed Tanous0f74e642018-11-12 15:17:05 -08001714 void parseInterfaceData(
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001715 std::shared_ptr<AsyncResp> asyncResp, const std::string& iface_id,
1716 const EthernetInterfaceData& ethData,
1717 const boost::container::flat_set<IPv4AddressData>& ipv4Data,
1718 const boost::container::flat_set<IPv6AddressData>& ipv6Data)
Ed Tanous1abe55e2018-09-05 08:30:59 -07001719 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001720 constexpr const std::array<const char*, 1> inventoryForEthernet = {
Johnathan Manteyeeedda22019-10-29 16:09:52 -07001721 "xyz.openbmc_project.Inventory.Item.Ethernet"};
1722
Ed Tanous2c70f802020-09-28 14:29:23 -07001723 nlohmann::json& jsonResponse = asyncResp->res.jsonValue;
1724 jsonResponse["Id"] = iface_id;
1725 jsonResponse["@odata.id"] =
Ed Tanous4a0cb852018-10-15 07:55:04 -07001726 "/redfish/v1/Managers/bmc/EthernetInterfaces/" + iface_id;
Ed Tanous2c70f802020-09-28 14:29:23 -07001727 jsonResponse["InterfaceEnabled"] = ethData.nicEnabled;
Johnathan Manteyeeedda22019-10-29 16:09:52 -07001728
1729 auto health = std::make_shared<HealthPopulate>(asyncResp);
1730
1731 crow::connections::systemBus->async_method_call(
1732 [health](const boost::system::error_code ec,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001733 std::vector<std::string>& resp) {
Johnathan Manteyeeedda22019-10-29 16:09:52 -07001734 if (ec)
1735 {
1736 return;
1737 }
1738
1739 health->inventory = std::move(resp);
1740 },
1741 "xyz.openbmc_project.ObjectMapper",
1742 "/xyz/openbmc_project/object_mapper",
1743 "xyz.openbmc_project.ObjectMapper", "GetSubTreePaths", "/",
1744 int32_t(0), inventoryForEthernet);
1745
1746 health->populate();
1747
1748 if (ethData.nicEnabled)
Ed Tanous029573d2019-02-01 10:57:49 -08001749 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001750 jsonResponse["LinkStatus"] = "LinkUp";
1751 jsonResponse["Status"]["State"] = "Enabled";
Ed Tanous029573d2019-02-01 10:57:49 -08001752 }
1753 else
1754 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001755 jsonResponse["LinkStatus"] = "NoLink";
1756 jsonResponse["Status"]["State"] = "Disabled";
Ed Tanous029573d2019-02-01 10:57:49 -08001757 }
Johnathan Manteyaa05fb22020-01-08 12:08:44 -08001758
Ed Tanous2c70f802020-09-28 14:29:23 -07001759 jsonResponse["LinkStatus"] = ethData.linkUp ? "LinkUp" : "LinkDown";
1760 jsonResponse["SpeedMbps"] = ethData.speed;
1761 jsonResponse["MACAddress"] = ethData.mac_address;
1762 jsonResponse["DHCPv4"]["DHCPEnabled"] =
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001763 translateDHCPEnabledToBool(ethData.DHCPEnabled, true);
Ed Tanous2c70f802020-09-28 14:29:23 -07001764 jsonResponse["DHCPv4"]["UseNTPServers"] = ethData.NTPEnabled;
1765 jsonResponse["DHCPv4"]["UseDNSServers"] = ethData.DNSEnabled;
1766 jsonResponse["DHCPv4"]["UseDomainName"] = ethData.HostNameEnabled;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001767
Ed Tanous2c70f802020-09-28 14:29:23 -07001768 jsonResponse["DHCPv6"]["OperatingMode"] =
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001769 translateDHCPEnabledToBool(ethData.DHCPEnabled, false) ? "Stateful"
1770 : "Disabled";
Ed Tanous2c70f802020-09-28 14:29:23 -07001771 jsonResponse["DHCPv6"]["UseNTPServers"] = ethData.NTPEnabled;
1772 jsonResponse["DHCPv6"]["UseDNSServers"] = ethData.DNSEnabled;
1773 jsonResponse["DHCPv6"]["UseDomainName"] = ethData.HostNameEnabled;
manojkiraneda2a133282019-02-19 13:09:43 +05301774
Ed Tanous4a0cb852018-10-15 07:55:04 -07001775 if (!ethData.hostname.empty())
Ed Tanous1abe55e2018-09-05 08:30:59 -07001776 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001777 jsonResponse["HostName"] = ethData.hostname;
Joshi-Mansiab6554f2020-03-10 18:33:36 +05301778
1779 // When domain name is empty then it means, that it is a network
1780 // without domain names, and the host name itself must be treated as
1781 // FQDN
Ed Tanous2c70f802020-09-28 14:29:23 -07001782 std::string fqdn = std::move(ethData.hostname);
Jennifer Leed24bfc72019-03-05 13:03:37 -08001783 if (!ethData.domainnames.empty())
1784 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001785 fqdn += "." + ethData.domainnames[0];
Jennifer Leed24bfc72019-03-05 13:03:37 -08001786 }
Ed Tanous2c70f802020-09-28 14:29:23 -07001787 jsonResponse["FQDN"] = fqdn;
Ed Tanous4a0cb852018-10-15 07:55:04 -07001788 }
1789
Ed Tanous2c70f802020-09-28 14:29:23 -07001790 jsonResponse["VLANs"] = {
Sunitha Harishfda13ad2019-03-21 11:01:24 -05001791 {"@odata.id", "/redfish/v1/Managers/bmc/EthernetInterfaces/" +
1792 iface_id + "/VLANs"}};
1793
Ed Tanous2c70f802020-09-28 14:29:23 -07001794 jsonResponse["NameServers"] = ethData.nameServers;
1795 jsonResponse["StaticNameServers"] = ethData.staticNameServers;
Ed Tanous1abe55e2018-09-05 08:30:59 -07001796
Ed Tanous2c70f802020-09-28 14:29:23 -07001797 nlohmann::json& ipv4Array = jsonResponse["IPv4Addresses"];
1798 nlohmann::json& ipv4StaticArray = jsonResponse["IPv4StaticAddresses"];
1799 ipv4Array = nlohmann::json::array();
1800 ipv4StaticArray = nlohmann::json::array();
1801 for (auto& ipv4Config : ipv4Data)
Ed Tanous1abe55e2018-09-05 08:30:59 -07001802 {
Ravi Tejad1d50812019-06-23 16:20:27 -05001803
Ed Tanous2c70f802020-09-28 14:29:23 -07001804 std::string gatewayStr = ipv4Config.gateway;
Ravi Tejad1d50812019-06-23 16:20:27 -05001805 if (gatewayStr.empty())
Ed Tanous1abe55e2018-09-05 08:30:59 -07001806 {
Ravi Tejad1d50812019-06-23 16:20:27 -05001807 gatewayStr = "0.0.0.0";
Ed Tanous1abe55e2018-09-05 08:30:59 -07001808 }
Ravi Tejad1d50812019-06-23 16:20:27 -05001809
Ed Tanous2c70f802020-09-28 14:29:23 -07001810 ipv4Array.push_back({{"AddressOrigin", ipv4Config.origin},
1811 {"SubnetMask", ipv4Config.netmask},
1812 {"Address", ipv4Config.address},
1813 {"Gateway", gatewayStr}});
1814 if (ipv4Config.origin == "Static")
Ravi Tejad1d50812019-06-23 16:20:27 -05001815 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001816 ipv4StaticArray.push_back({{"AddressOrigin", ipv4Config.origin},
1817 {"SubnetMask", ipv4Config.netmask},
1818 {"Address", ipv4Config.address},
1819 {"Gateway", gatewayStr}});
Ravi Tejad1d50812019-06-23 16:20:27 -05001820 }
Ravi Tejad1d50812019-06-23 16:20:27 -05001821 }
1822
Ed Tanous2c70f802020-09-28 14:29:23 -07001823 jsonResponse["IPv6DefaultGateway"] = ethData.ipv6_default_gateway;
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001824
Ed Tanous2c70f802020-09-28 14:29:23 -07001825 nlohmann::json& ipv6Array = jsonResponse["IPv6Addresses"];
1826 nlohmann::json& ipv6StaticArray = jsonResponse["IPv6StaticAddresses"];
1827 ipv6Array = nlohmann::json::array();
1828 ipv6StaticArray = nlohmann::json::array();
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001829 nlohmann::json& ipv6AddrPolicyTable =
Ed Tanous2c70f802020-09-28 14:29:23 -07001830 jsonResponse["IPv6AddressPolicyTable"];
Johnathan Mantey7f2e23e2020-05-14 13:36:52 -07001831 ipv6AddrPolicyTable = nlohmann::json::array();
Ed Tanous2c70f802020-09-28 14:29:23 -07001832 for (auto& ipv6Config : ipv6Data)
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001833 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001834 ipv6Array.push_back({{"Address", ipv6Config.address},
1835 {"PrefixLength", ipv6Config.prefixLength},
1836 {"AddressOrigin", ipv6Config.origin},
1837 {"AddressState", nullptr}});
1838 if (ipv6Config.origin == "Static")
Johnathan Mantey01784822019-06-18 12:44:21 -07001839 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001840 ipv6StaticArray.push_back(
1841 {{"Address", ipv6Config.address},
1842 {"PrefixLength", ipv6Config.prefixLength},
1843 {"AddressOrigin", ipv6Config.origin},
Johnathan Mantey5fd16e42020-05-13 15:14:47 -07001844 {"AddressState", nullptr}});
Johnathan Mantey01784822019-06-18 12:44:21 -07001845 }
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001846 }
Ed Tanous1abe55e2018-09-05 08:30:59 -07001847 }
1848
1849 /**
1850 * Functions triggers appropriate requests on DBus
1851 */
Ed Tanouscb13a392020-07-25 19:02:03 +00001852 void doGet(crow::Response& res, const crow::Request&,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001853 const std::vector<std::string>& params) override
Ed Tanous1abe55e2018-09-05 08:30:59 -07001854 {
Ed Tanous4a0cb852018-10-15 07:55:04 -07001855 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07001856 if (params.size() != 1)
1857 {
Jason M. Billsf12894f2018-10-09 12:45:45 -07001858 messages::internalError(asyncResp->res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07001859 return;
1860 }
1861
Ed Tanous4a0cb852018-10-15 07:55:04 -07001862 getEthernetIfaceData(
1863 params[0],
Ed Tanous2c70f802020-09-28 14:29:23 -07001864 [this, asyncResp, ifaceId{std::string(params[0])}](
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001865 const bool& success, const EthernetInterfaceData& ethData,
1866 const boost::container::flat_set<IPv4AddressData>& ipv4Data,
1867 const boost::container::flat_set<IPv6AddressData>& ipv6Data) {
Ed Tanous4a0cb852018-10-15 07:55:04 -07001868 if (!success)
Ed Tanous1abe55e2018-09-05 08:30:59 -07001869 {
Ed Tanous1abe55e2018-09-05 08:30:59 -07001870 // TODO(Pawel)consider distinguish between non existing
1871 // object, and other errors
Jason M. Billsf12894f2018-10-09 12:45:45 -07001872 messages::resourceNotFound(asyncResp->res,
Ed Tanous2c70f802020-09-28 14:29:23 -07001873 "EthernetInterface", ifaceId);
Ed Tanous4a0cb852018-10-15 07:55:04 -07001874 return;
Ed Tanous1abe55e2018-09-05 08:30:59 -07001875 }
Ed Tanous4c9afe42019-05-03 16:59:57 -07001876
Ed Tanous0f74e642018-11-12 15:17:05 -08001877 asyncResp->res.jsonValue["@odata.type"] =
Sunitha Harishfda13ad2019-03-21 11:01:24 -05001878 "#EthernetInterface.v1_4_1.EthernetInterface";
Ed Tanous0f74e642018-11-12 15:17:05 -08001879 asyncResp->res.jsonValue["Name"] = "Manager Ethernet Interface";
1880 asyncResp->res.jsonValue["Description"] =
1881 "Management Network Interface";
1882
Ed Tanous2c70f802020-09-28 14:29:23 -07001883 parseInterfaceData(asyncResp, ifaceId, ethData, ipv4Data,
Johnathan Manteyeeedda22019-10-29 16:09:52 -07001884 ipv6Data);
Ed Tanous1abe55e2018-09-05 08:30:59 -07001885 });
1886 }
1887
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001888 void doPatch(crow::Response& res, const crow::Request& req,
1889 const std::vector<std::string>& params) override
Ed Tanous1abe55e2018-09-05 08:30:59 -07001890 {
Ed Tanous4a0cb852018-10-15 07:55:04 -07001891 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07001892 if (params.size() != 1)
1893 {
Jason M. Billsf12894f2018-10-09 12:45:45 -07001894 messages::internalError(asyncResp->res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07001895 return;
1896 }
1897
Ed Tanous2c70f802020-09-28 14:29:23 -07001898 const std::string& ifaceId = params[0];
Ed Tanous1abe55e2018-09-05 08:30:59 -07001899
Ed Tanousbc0bd6e2018-12-10 14:07:55 -08001900 std::optional<std::string> hostname;
Joshi-Mansiab6554f2020-03-10 18:33:36 +05301901 std::optional<std::string> fqdn;
Ratan Guptad5776652019-03-03 08:47:22 +05301902 std::optional<std::string> macAddress;
Ravi Teja9a6fc6f2019-04-16 02:43:13 -05001903 std::optional<std::string> ipv6DefaultGateway;
Ravi Tejad1d50812019-06-23 16:20:27 -05001904 std::optional<nlohmann::json> ipv4StaticAddresses;
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001905 std::optional<nlohmann::json> ipv6StaticAddresses;
RAJESWARAN THILLAIGOVINDANf85837b2019-04-04 05:18:53 -05001906 std::optional<std::vector<std::string>> staticNameServers;
Jennifer Leeda131a92019-04-24 15:13:55 -07001907 std::optional<nlohmann::json> dhcpv4;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001908 std::optional<nlohmann::json> dhcpv6;
Johnathan Manteyeeedda22019-10-29 16:09:52 -07001909 std::optional<bool> interfaceEnabled;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001910 DHCPParameters v4dhcpParms;
1911 DHCPParameters v6dhcpParms;
Ed Tanous0627a2c2018-11-29 17:09:23 -08001912
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001913 if (!json_util::readJson(
Joshi-Mansiab6554f2020-03-10 18:33:36 +05301914 req, res, "HostName", hostname, "FQDN", fqdn,
1915 "IPv4StaticAddresses", ipv4StaticAddresses, "MACAddress",
1916 macAddress, "StaticNameServers", staticNameServers,
1917 "IPv6DefaultGateway", ipv6DefaultGateway, "IPv6StaticAddresses",
1918 ipv6StaticAddresses, "DHCPv4", dhcpv4, "DHCPv6", dhcpv6,
1919 "InterfaceEnabled", interfaceEnabled))
Ed Tanous1abe55e2018-09-05 08:30:59 -07001920 {
1921 return;
1922 }
Jennifer Leeda131a92019-04-24 15:13:55 -07001923 if (dhcpv4)
1924 {
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001925 if (!json_util::readJson(*dhcpv4, res, "DHCPEnabled",
1926 v4dhcpParms.dhcpv4Enabled, "UseDNSServers",
1927 v4dhcpParms.useDNSServers, "UseNTPServers",
1928 v4dhcpParms.useNTPServers, "UseDomainName",
1929 v4dhcpParms.useUseDomainName))
1930 {
1931 return;
1932 }
1933 }
1934
1935 if (dhcpv6)
1936 {
1937 if (!json_util::readJson(*dhcpv6, res, "OperatingMode",
1938 v6dhcpParms.dhcpv6OperatingMode,
1939 "UseDNSServers", v6dhcpParms.useDNSServers,
1940 "UseNTPServers", v6dhcpParms.useNTPServers,
1941 "UseDomainName",
1942 v6dhcpParms.useUseDomainName))
1943 {
1944 return;
1945 }
Jennifer Leeda131a92019-04-24 15:13:55 -07001946 }
1947
Johnathan Mantey01784822019-06-18 12:44:21 -07001948 // Get single eth interface data, and call the below callback for
1949 // JSON preparation
Ed Tanous4a0cb852018-10-15 07:55:04 -07001950 getEthernetIfaceData(
Ed Tanous2c70f802020-09-28 14:29:23 -07001951 ifaceId,
1952 [this, asyncResp, ifaceId, hostname = std::move(hostname),
Joshi-Mansiab6554f2020-03-10 18:33:36 +05301953 fqdn = std::move(fqdn), macAddress = std::move(macAddress),
Ravi Tejad1d50812019-06-23 16:20:27 -05001954 ipv4StaticAddresses = std::move(ipv4StaticAddresses),
Ravi Teja9a6fc6f2019-04-16 02:43:13 -05001955 ipv6DefaultGateway = std::move(ipv6DefaultGateway),
Ravi Tejae48c0fc2019-04-16 08:37:20 -05001956 ipv6StaticAddresses = std::move(ipv6StaticAddresses),
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001957 staticNameServers = std::move(staticNameServers),
1958 dhcpv4 = std::move(dhcpv4), dhcpv6 = std::move(dhcpv6),
1959 v4dhcpParms = std::move(v4dhcpParms),
Johnathan Manteyeeedda22019-10-29 16:09:52 -07001960 v6dhcpParms = std::move(v6dhcpParms),
1961 interfaceEnabled = std::move(interfaceEnabled)](
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001962 const bool& success, const EthernetInterfaceData& ethData,
1963 const boost::container::flat_set<IPv4AddressData>& ipv4Data,
1964 const boost::container::flat_set<IPv6AddressData>& ipv6Data) {
Ed Tanous1abe55e2018-09-05 08:30:59 -07001965 if (!success)
1966 {
1967 // ... otherwise return error
1968 // TODO(Pawel)consider distinguish between non existing
1969 // object, and other errors
Sunitha Harishfda13ad2019-03-21 11:01:24 -05001970 messages::resourceNotFound(asyncResp->res,
Ed Tanous2c70f802020-09-28 14:29:23 -07001971 "Ethernet Interface", ifaceId);
Ed Tanous1abe55e2018-09-05 08:30:59 -07001972 return;
1973 }
1974
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001975 if (dhcpv4 || dhcpv6)
1976 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001977 handleDHCPPatch(ifaceId, ethData, std::move(v4dhcpParms),
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -07001978 std::move(v6dhcpParms), asyncResp);
1979 }
1980
Ed Tanous0627a2c2018-11-29 17:09:23 -08001981 if (hostname)
1982 {
1983 handleHostnamePatch(*hostname, asyncResp);
1984 }
1985
Joshi-Mansiab6554f2020-03-10 18:33:36 +05301986 if (fqdn)
1987 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001988 handleFqdnPatch(ifaceId, *fqdn, asyncResp);
Joshi-Mansiab6554f2020-03-10 18:33:36 +05301989 }
1990
Ratan Guptad5776652019-03-03 08:47:22 +05301991 if (macAddress)
1992 {
Ed Tanous2c70f802020-09-28 14:29:23 -07001993 handleMACAddressPatch(ifaceId, *macAddress, asyncResp);
Ratan Guptad5776652019-03-03 08:47:22 +05301994 }
1995
Ravi Tejad1d50812019-06-23 16:20:27 -05001996 if (ipv4StaticAddresses)
1997 {
Ed Tanous537174c2018-12-10 15:09:31 -08001998 // TODO(ed) for some reason the capture of ipv4Addresses
Johnathan Mantey01784822019-06-18 12:44:21 -07001999 // above is returning a const value, not a non-const
2000 // value. This doesn't really work for us, as we need to
2001 // be able to efficiently move out the intermedia
2002 // nlohmann::json objects. This makes a copy of the
2003 // structure, and operates on that, but could be done
2004 // more efficiently
Ravi Tejad1d50812019-06-23 16:20:27 -05002005 nlohmann::json ipv4Static = std::move(*ipv4StaticAddresses);
Ed Tanous2c70f802020-09-28 14:29:23 -07002006 handleIPv4StaticPatch(ifaceId, ipv4Static, ipv4Data,
Ravi Tejad1d50812019-06-23 16:20:27 -05002007 asyncResp);
Ed Tanous0627a2c2018-11-29 17:09:23 -08002008 }
2009
RAJESWARAN THILLAIGOVINDANf85837b2019-04-04 05:18:53 -05002010 if (staticNameServers)
2011 {
Ed Tanous2c70f802020-09-28 14:29:23 -07002012 handleStaticNameServersPatch(ifaceId, *staticNameServers,
RAJESWARAN THILLAIGOVINDANf85837b2019-04-04 05:18:53 -05002013 asyncResp);
2014 }
Ravi Teja9a6fc6f2019-04-16 02:43:13 -05002015
2016 if (ipv6DefaultGateway)
2017 {
2018 messages::propertyNotWritable(asyncResp->res,
2019 "IPv6DefaultGateway");
2020 }
Ravi Tejae48c0fc2019-04-16 08:37:20 -05002021
2022 if (ipv6StaticAddresses)
2023 {
2024 nlohmann::json ipv6Static = std::move(*ipv6StaticAddresses);
Ed Tanous2c70f802020-09-28 14:29:23 -07002025 handleIPv6StaticAddressesPatch(ifaceId, ipv6Static,
Johnathan Mantey01784822019-06-18 12:44:21 -07002026 ipv6Data, asyncResp);
Ravi Tejae48c0fc2019-04-16 08:37:20 -05002027 }
Johnathan Manteyeeedda22019-10-29 16:09:52 -07002028
2029 if (interfaceEnabled)
2030 {
2031 setEthernetInterfaceBoolProperty(
Ed Tanous2c70f802020-09-28 14:29:23 -07002032 ifaceId, "NICEnabled", *interfaceEnabled, asyncResp);
Johnathan Manteyeeedda22019-10-29 16:09:52 -07002033 }
Ed Tanous1abe55e2018-09-05 08:30:59 -07002034 });
2035 }
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +01002036};
2037
Kowalski, Kamile439f0f2018-05-21 08:13:57 +02002038/**
Ed Tanous4a0cb852018-10-15 07:55:04 -07002039 * VlanNetworkInterface derived class for delivering VLANNetworkInterface
2040 * Schema
Kowalski, Kamile439f0f2018-05-21 08:13:57 +02002041 */
Ed Tanous1abe55e2018-09-05 08:30:59 -07002042class VlanNetworkInterface : public Node
2043{
2044 public:
2045 /*
2046 * Default Constructor
2047 */
Ed Tanous52cc1122020-07-18 13:51:21 -07002048 VlanNetworkInterface(App& app) :
Ed Tanous4a0cb852018-10-15 07:55:04 -07002049 Node(app,
Gunnar Mills7af91512020-04-14 22:16:57 -05002050 "/redfish/v1/Managers/bmc/EthernetInterfaces/<str>/VLANs/<str>/",
Ed Tanous4a0cb852018-10-15 07:55:04 -07002051 std::string(), std::string())
Ed Tanous1abe55e2018-09-05 08:30:59 -07002052 {
Ed Tanous1abe55e2018-09-05 08:30:59 -07002053 entityPrivileges = {
2054 {boost::beast::http::verb::get, {{"Login"}}},
2055 {boost::beast::http::verb::head, {{"Login"}}},
2056 {boost::beast::http::verb::patch, {{"ConfigureComponents"}}},
2057 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
2058 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
2059 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
Kowalski, Kamile439f0f2018-05-21 08:13:57 +02002060 }
2061
Ed Tanous1abe55e2018-09-05 08:30:59 -07002062 private:
Ed Tanouscb13a392020-07-25 19:02:03 +00002063 void parseInterfaceData(nlohmann::json& json_response,
2064 const std::string& parent_iface_id,
2065 const std::string& iface_id,
2066 const EthernetInterfaceData& ethData)
Ed Tanous1abe55e2018-09-05 08:30:59 -07002067 {
Ed Tanous1abe55e2018-09-05 08:30:59 -07002068 // Fill out obvious data...
Ed Tanous4a0cb852018-10-15 07:55:04 -07002069 json_response["Id"] = iface_id;
2070 json_response["@odata.id"] =
2071 "/redfish/v1/Managers/bmc/EthernetInterfaces/" + parent_iface_id +
2072 "/VLANs/" + iface_id;
Ed Tanous1abe55e2018-09-05 08:30:59 -07002073
Ed Tanous4a0cb852018-10-15 07:55:04 -07002074 json_response["VLANEnable"] = true;
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002075 if (!ethData.vlan_id.empty())
Ed Tanous4a0cb852018-10-15 07:55:04 -07002076 {
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002077 json_response["VLANId"] = ethData.vlan_id.back();
Ed Tanous4a0cb852018-10-15 07:55:04 -07002078 }
Ed Tanousa434f2b2018-07-27 13:04:22 -07002079 }
2080
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002081 bool verifyNames(const std::string& parent, const std::string& iface)
Ed Tanous1abe55e2018-09-05 08:30:59 -07002082 {
2083 if (!boost::starts_with(iface, parent + "_"))
2084 {
Ed Tanous1abe55e2018-09-05 08:30:59 -07002085 return false;
2086 }
Ed Tanous3174e4d2020-10-07 11:41:22 -07002087 return true;
Ed Tanous1abe55e2018-09-05 08:30:59 -07002088 }
2089
2090 /**
2091 * Functions triggers appropriate requests on DBus
2092 */
Ed Tanouscb13a392020-07-25 19:02:03 +00002093 void doGet(crow::Response& res, const crow::Request&,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002094 const std::vector<std::string>& params) override
Ed Tanous1abe55e2018-09-05 08:30:59 -07002095 {
Ed Tanous4a0cb852018-10-15 07:55:04 -07002096 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
2097 // TODO(Pawel) this shall be parameterized call (two params) to get
Ed Tanous1abe55e2018-09-05 08:30:59 -07002098 // EthernetInterfaces for any Manager, not only hardcoded 'openbmc'.
2099 // Check if there is required param, truly entering this shall be
2100 // impossible.
2101 if (params.size() != 2)
2102 {
Jason M. Billsf12894f2018-10-09 12:45:45 -07002103 messages::internalError(res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002104 res.end();
Kowalski, Kamil927a5052018-07-03 14:16:46 +02002105 return;
Ed Tanous1abe55e2018-09-05 08:30:59 -07002106 }
Kowalski, Kamil927a5052018-07-03 14:16:46 +02002107
Ed Tanous2c70f802020-09-28 14:29:23 -07002108 const std::string& parentIfaceId = params[0];
2109 const std::string& ifaceId = params[1];
Ed Tanous0f74e642018-11-12 15:17:05 -08002110 res.jsonValue["@odata.type"] =
2111 "#VLanNetworkInterface.v1_1_0.VLanNetworkInterface";
Ed Tanous0f74e642018-11-12 15:17:05 -08002112 res.jsonValue["Name"] = "VLAN Network Interface";
Kowalski, Kamil927a5052018-07-03 14:16:46 +02002113
Ed Tanous2c70f802020-09-28 14:29:23 -07002114 if (!verifyNames(parentIfaceId, ifaceId))
Ed Tanous1abe55e2018-09-05 08:30:59 -07002115 {
2116 return;
2117 }
Kowalski, Kamil927a5052018-07-03 14:16:46 +02002118
Johnathan Mantey01784822019-06-18 12:44:21 -07002119 // Get single eth interface data, and call the below callback for
2120 // JSON preparation
Ed Tanous4a0cb852018-10-15 07:55:04 -07002121 getEthernetIfaceData(
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002122 params[1],
Ed Tanous2c70f802020-09-28 14:29:23 -07002123 [this, asyncResp, parentIfaceId{std::string(params[0])},
2124 ifaceId{std::string(params[1])}](
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002125 const bool& success, const EthernetInterfaceData& ethData,
Ed Tanouscb13a392020-07-25 19:02:03 +00002126 const boost::container::flat_set<IPv4AddressData>&,
2127 const boost::container::flat_set<IPv6AddressData>&) {
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002128 if (success && ethData.vlan_id.size() != 0)
Ed Tanous1abe55e2018-09-05 08:30:59 -07002129 {
Ed Tanous2c70f802020-09-28 14:29:23 -07002130 parseInterfaceData(asyncResp->res.jsonValue, parentIfaceId,
2131 ifaceId, ethData);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002132 }
2133 else
2134 {
2135 // ... otherwise return error
2136 // TODO(Pawel)consider distinguish between non existing
2137 // object, and other errors
Jason M. Billsf12894f2018-10-09 12:45:45 -07002138 messages::resourceNotFound(
Ed Tanous2c70f802020-09-28 14:29:23 -07002139 asyncResp->res, "VLAN Network Interface", ifaceId);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002140 }
Ed Tanous1abe55e2018-09-05 08:30:59 -07002141 });
Kowalski, Kamile439f0f2018-05-21 08:13:57 +02002142 }
2143
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002144 void doPatch(crow::Response& res, const crow::Request& req,
2145 const std::vector<std::string>& params) override
Ed Tanous1abe55e2018-09-05 08:30:59 -07002146 {
Ed Tanous4a0cb852018-10-15 07:55:04 -07002147 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002148 if (params.size() != 2)
2149 {
Jason M. Billsf12894f2018-10-09 12:45:45 -07002150 messages::internalError(asyncResp->res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002151 return;
2152 }
Kowalski, Kamile439f0f2018-05-21 08:13:57 +02002153
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002154 const std::string& parentIfaceId = params[0];
2155 const std::string& ifaceId = params[1];
Kowalski, Kamile439f0f2018-05-21 08:13:57 +02002156
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002157 if (!verifyNames(parentIfaceId, ifaceId))
Ed Tanous1abe55e2018-09-05 08:30:59 -07002158 {
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002159 messages::resourceNotFound(asyncResp->res, "VLAN Network Interface",
2160 ifaceId);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002161 return;
2162 }
2163
Ed Tanous0627a2c2018-11-29 17:09:23 -08002164 bool vlanEnable = false;
Andrew Geissler38268fa2020-05-16 14:22:18 -05002165 uint32_t vlanId = 0;
Ed Tanous0627a2c2018-11-29 17:09:23 -08002166
2167 if (!json_util::readJson(req, res, "VLANEnable", vlanEnable, "VLANId",
2168 vlanId))
Ed Tanous1abe55e2018-09-05 08:30:59 -07002169 {
2170 return;
2171 }
2172
Johnathan Mantey01784822019-06-18 12:44:21 -07002173 // Get single eth interface data, and call the below callback for
2174 // JSON preparation
Ravi Tejae48c0fc2019-04-16 08:37:20 -05002175 getEthernetIfaceData(
2176 params[1],
Ed Tanous271584a2019-07-09 16:24:22 -07002177 [asyncResp, parentIfaceId{std::string(params[0])},
Ed Tanouscb13a392020-07-25 19:02:03 +00002178 ifaceId{std::string(params[1])}, &vlanEnable,
2179 &vlanId](const bool& success, const EthernetInterfaceData& ethData,
2180 const boost::container::flat_set<IPv4AddressData>&,
2181 const boost::container::flat_set<IPv6AddressData>&) {
Ravi Tejae48c0fc2019-04-16 08:37:20 -05002182 if (success && !ethData.vlan_id.empty())
Sunitha Harish08244d02019-04-01 03:57:25 -05002183 {
Ravi Tejae48c0fc2019-04-16 08:37:20 -05002184 auto callback =
2185 [asyncResp](const boost::system::error_code ec) {
2186 if (ec)
2187 {
2188 messages::internalError(asyncResp->res);
2189 }
2190 };
2191
2192 if (vlanEnable == true)
2193 {
2194 crow::connections::systemBus->async_method_call(
2195 std::move(callback), "xyz.openbmc_project.Network",
2196 "/xyz/openbmc_project/network/" + ifaceId,
2197 "org.freedesktop.DBus.Properties", "Set",
2198 "xyz.openbmc_project.Network.VLAN", "Id",
2199 std::variant<uint32_t>(vlanId));
2200 }
2201 else
2202 {
2203 BMCWEB_LOG_DEBUG << "vlanEnable is false. Deleting the "
2204 "vlan interface";
2205 crow::connections::systemBus->async_method_call(
2206 std::move(callback), "xyz.openbmc_project.Network",
2207 std::string("/xyz/openbmc_project/network/") +
2208 ifaceId,
2209 "xyz.openbmc_project.Object.Delete", "Delete");
2210 }
Sunitha Harish08244d02019-04-01 03:57:25 -05002211 }
2212 else
2213 {
Ravi Tejae48c0fc2019-04-16 08:37:20 -05002214 // TODO(Pawel)consider distinguish between non existing
2215 // object, and other errors
2216 messages::resourceNotFound(
2217 asyncResp->res, "VLAN Network Interface", ifaceId);
2218 return;
Sunitha Harish08244d02019-04-01 03:57:25 -05002219 }
Ravi Tejae48c0fc2019-04-16 08:37:20 -05002220 });
Ed Tanous1abe55e2018-09-05 08:30:59 -07002221 }
2222
Ed Tanouscb13a392020-07-25 19:02:03 +00002223 void doDelete(crow::Response& res, const crow::Request&,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002224 const std::vector<std::string>& params) override
Ed Tanous1abe55e2018-09-05 08:30:59 -07002225 {
Ed Tanous4a0cb852018-10-15 07:55:04 -07002226 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002227 if (params.size() != 2)
2228 {
Jason M. Billsf12894f2018-10-09 12:45:45 -07002229 messages::internalError(asyncResp->res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002230 return;
2231 }
2232
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002233 const std::string& parentIfaceId = params[0];
2234 const std::string& ifaceId = params[1];
Ed Tanous1abe55e2018-09-05 08:30:59 -07002235
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002236 if (!verifyNames(parentIfaceId, ifaceId))
Ed Tanous1abe55e2018-09-05 08:30:59 -07002237 {
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002238 messages::resourceNotFound(asyncResp->res, "VLAN Network Interface",
2239 ifaceId);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002240 return;
2241 }
2242
Johnathan Mantey01784822019-06-18 12:44:21 -07002243 // Get single eth interface data, and call the below callback for
2244 // JSON preparation
Jason M. Billsf12894f2018-10-09 12:45:45 -07002245 getEthernetIfaceData(
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002246 params[1],
Ed Tanous271584a2019-07-09 16:24:22 -07002247 [asyncResp, parentIfaceId{std::string(params[0])},
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002248 ifaceId{std::string(params[1])}](
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002249 const bool& success, const EthernetInterfaceData& ethData,
Ed Tanouscb13a392020-07-25 19:02:03 +00002250 const boost::container::flat_set<IPv4AddressData>&,
2251 const boost::container::flat_set<IPv6AddressData>&) {
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002252 if (success && !ethData.vlan_id.empty())
Jason M. Billsf12894f2018-10-09 12:45:45 -07002253 {
Jason M. Billsf12894f2018-10-09 12:45:45 -07002254 auto callback =
2255 [asyncResp](const boost::system::error_code ec) {
2256 if (ec)
2257 {
2258 messages::internalError(asyncResp->res);
2259 }
2260 };
2261 crow::connections::systemBus->async_method_call(
2262 std::move(callback), "xyz.openbmc_project.Network",
2263 std::string("/xyz/openbmc_project/network/") + ifaceId,
2264 "xyz.openbmc_project.Object.Delete", "Delete");
2265 }
2266 else
2267 {
2268 // ... otherwise return error
2269 // TODO(Pawel)consider distinguish between non existing
2270 // object, and other errors
2271 messages::resourceNotFound(
2272 asyncResp->res, "VLAN Network Interface", ifaceId);
2273 }
2274 });
Ed Tanous1abe55e2018-09-05 08:30:59 -07002275 }
Kowalski, Kamile439f0f2018-05-21 08:13:57 +02002276};
2277
2278/**
2279 * VlanNetworkInterfaceCollection derived class for delivering
2280 * VLANNetworkInterface Collection Schema
2281 */
Ed Tanous1abe55e2018-09-05 08:30:59 -07002282class VlanNetworkInterfaceCollection : public Node
2283{
2284 public:
Ed Tanous52cc1122020-07-18 13:51:21 -07002285 VlanNetworkInterfaceCollection(App& app) :
Ed Tanous4a0cb852018-10-15 07:55:04 -07002286 Node(app, "/redfish/v1/Managers/bmc/EthernetInterfaces/<str>/VLANs/",
2287 std::string())
Ed Tanous1abe55e2018-09-05 08:30:59 -07002288 {
Ed Tanous1abe55e2018-09-05 08:30:59 -07002289 entityPrivileges = {
2290 {boost::beast::http::verb::get, {{"Login"}}},
2291 {boost::beast::http::verb::head, {{"Login"}}},
2292 {boost::beast::http::verb::patch, {{"ConfigureComponents"}}},
2293 {boost::beast::http::verb::put, {{"ConfigureComponents"}}},
2294 {boost::beast::http::verb::delete_, {{"ConfigureComponents"}}},
2295 {boost::beast::http::verb::post, {{"ConfigureComponents"}}}};
Kowalski, Kamile439f0f2018-05-21 08:13:57 +02002296 }
2297
Ed Tanous1abe55e2018-09-05 08:30:59 -07002298 private:
2299 /**
2300 * Functions triggers appropriate requests on DBus
2301 */
Ed Tanouscb13a392020-07-25 19:02:03 +00002302 void doGet(crow::Response& res, const crow::Request&,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002303 const std::vector<std::string>& params) override
Ed Tanous1abe55e2018-09-05 08:30:59 -07002304 {
Ed Tanous4a0cb852018-10-15 07:55:04 -07002305 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002306 if (params.size() != 1)
2307 {
2308 // This means there is a problem with the router
Jason M. Billsf12894f2018-10-09 12:45:45 -07002309 messages::internalError(asyncResp->res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002310 return;
Ed Tanous8ceb2ec2018-08-13 11:11:56 -07002311 }
2312
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002313 const std::string& rootInterfaceName = params[0];
Kowalski, Kamile439f0f2018-05-21 08:13:57 +02002314
Ed Tanous4a0cb852018-10-15 07:55:04 -07002315 // Get eth interface list, and call the below callback for JSON
Ed Tanous1abe55e2018-09-05 08:30:59 -07002316 // preparation
Jason M. Billsf12894f2018-10-09 12:45:45 -07002317 getEthernetIfaceList(
Ed Tanous43b761d2019-02-13 20:10:56 -08002318 [asyncResp, rootInterfaceName{std::string(rootInterfaceName)}](
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002319 const bool& success,
2320 const boost::container::flat_set<std::string>& iface_list) {
Jason M. Billsf12894f2018-10-09 12:45:45 -07002321 if (!success)
Ed Tanous1abe55e2018-09-05 08:30:59 -07002322 {
Jason M. Billsf12894f2018-10-09 12:45:45 -07002323 messages::internalError(asyncResp->res);
2324 return;
Ed Tanous1abe55e2018-09-05 08:30:59 -07002325 }
Ed Tanous4c9afe42019-05-03 16:59:57 -07002326
2327 if (iface_list.find(rootInterfaceName) == iface_list.end())
2328 {
2329 messages::resourceNotFound(asyncResp->res,
2330 "VLanNetworkInterfaceCollection",
2331 rootInterfaceName);
2332 return;
2333 }
2334
Ed Tanous0f74e642018-11-12 15:17:05 -08002335 asyncResp->res.jsonValue["@odata.type"] =
2336 "#VLanNetworkInterfaceCollection."
2337 "VLanNetworkInterfaceCollection";
Ed Tanous0f74e642018-11-12 15:17:05 -08002338 asyncResp->res.jsonValue["Name"] =
2339 "VLAN Network Interface Collection";
Ed Tanous4a0cb852018-10-15 07:55:04 -07002340
Ed Tanous2c70f802020-09-28 14:29:23 -07002341 nlohmann::json ifaceArray = nlohmann::json::array();
Jason M. Billsf12894f2018-10-09 12:45:45 -07002342
Ed Tanous2c70f802020-09-28 14:29:23 -07002343 for (const std::string& ifaceItem : iface_list)
Jason M. Billsf12894f2018-10-09 12:45:45 -07002344 {
Ed Tanous2c70f802020-09-28 14:29:23 -07002345 if (boost::starts_with(ifaceItem, rootInterfaceName + "_"))
Jason M. Billsf12894f2018-10-09 12:45:45 -07002346 {
Ed Tanous2c70f802020-09-28 14:29:23 -07002347 ifaceArray.push_back(
Jason M. Billsf12894f2018-10-09 12:45:45 -07002348 {{"@odata.id",
2349 "/redfish/v1/Managers/bmc/EthernetInterfaces/" +
Ed Tanous2c70f802020-09-28 14:29:23 -07002350 rootInterfaceName + "/VLANs/" + ifaceItem}});
Jason M. Billsf12894f2018-10-09 12:45:45 -07002351 }
2352 }
2353
Jason M. Billsf12894f2018-10-09 12:45:45 -07002354 asyncResp->res.jsonValue["Members@odata.count"] =
Ed Tanous2c70f802020-09-28 14:29:23 -07002355 ifaceArray.size();
2356 asyncResp->res.jsonValue["Members"] = std::move(ifaceArray);
Jason M. Billsf12894f2018-10-09 12:45:45 -07002357 asyncResp->res.jsonValue["@odata.id"] =
2358 "/redfish/v1/Managers/bmc/EthernetInterfaces/" +
2359 rootInterfaceName + "/VLANs";
2360 });
Ed Tanous1abe55e2018-09-05 08:30:59 -07002361 }
Kowalski, Kamile439f0f2018-05-21 08:13:57 +02002362
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002363 void doPost(crow::Response& res, const crow::Request& req,
2364 const std::vector<std::string>& params) override
Ed Tanous1abe55e2018-09-05 08:30:59 -07002365 {
Ed Tanous4a0cb852018-10-15 07:55:04 -07002366 std::shared_ptr<AsyncResp> asyncResp = std::make_shared<AsyncResp>(res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002367 if (params.size() != 1)
2368 {
Jason M. Billsf12894f2018-10-09 12:45:45 -07002369 messages::internalError(asyncResp->res);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002370 return;
2371 }
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002372 bool vlanEnable = false;
Ed Tanous0627a2c2018-11-29 17:09:23 -08002373 uint32_t vlanId = 0;
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002374 if (!json_util::readJson(req, res, "VLANId", vlanId, "VLANEnable",
2375 vlanEnable))
Ed Tanous1abe55e2018-09-05 08:30:59 -07002376 {
Ed Tanous4a0cb852018-10-15 07:55:04 -07002377 return;
2378 }
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002379 // Need both vlanId and vlanEnable to service this request
2380 if (!vlanId)
2381 {
2382 messages::propertyMissing(asyncResp->res, "VLANId");
2383 }
2384 if (!vlanEnable)
2385 {
2386 messages::propertyMissing(asyncResp->res, "VLANEnable");
2387 }
Ed Tanous271584a2019-07-09 16:24:22 -07002388 if (static_cast<bool>(vlanId) ^ vlanEnable)
Sunitha Harishfda13ad2019-03-21 11:01:24 -05002389 {
2390 return;
2391 }
2392
Gunnar Mills1214b7e2020-06-04 10:11:30 -05002393 const std::string& rootInterfaceName = params[0];
Ed Tanous4a0cb852018-10-15 07:55:04 -07002394 auto callback = [asyncResp](const boost::system::error_code ec) {
2395 if (ec)
2396 {
2397 // TODO(ed) make more consistent error messages based on
2398 // phosphor-network responses
Jason M. Billsf12894f2018-10-09 12:45:45 -07002399 messages::internalError(asyncResp->res);
Ed Tanous4a0cb852018-10-15 07:55:04 -07002400 return;
2401 }
Jason M. Billsf12894f2018-10-09 12:45:45 -07002402 messages::created(asyncResp->res);
Ed Tanous4a0cb852018-10-15 07:55:04 -07002403 };
2404 crow::connections::systemBus->async_method_call(
2405 std::move(callback), "xyz.openbmc_project.Network",
2406 "/xyz/openbmc_project/network",
2407 "xyz.openbmc_project.Network.VLAN.Create", "VLAN",
Ed Tanous0627a2c2018-11-29 17:09:23 -08002408 rootInterfaceName, vlanId);
Ed Tanous1abe55e2018-09-05 08:30:59 -07002409 }
Kowalski, Kamile439f0f2018-05-21 08:13:57 +02002410};
Ed Tanous1abe55e2018-09-05 08:30:59 -07002411} // namespace redfish