blob: 3e978691694b4b05c9e5d9080150427ab049707e [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 Tanous3ccb3ad2023-01-13 17:40:03 -080018#include "app.hpp"
19#include "dbus_singleton.hpp"
George Liu7a1dbc42022-12-07 16:03:22 +080020#include "dbus_utility.hpp"
Ed Tanous3ccb3ad2023-01-13 17:40:03 -080021#include "error_messages.hpp"
Ed Tanous539d8c62024-06-19 14:38:27 -070022#include "generated/enums/ethernet_interface.hpp"
23#include "generated/enums/resource.hpp"
Ed Tanous2c5875a2023-05-15 09:56:06 -070024#include "human_sort.hpp"
Ed Tanous3ccb3ad2023-01-13 17:40:03 -080025#include "query.hpp"
26#include "registries/privilege_registry.hpp"
Ed Tanous033f1e42022-08-15 09:47:37 -070027#include "utils/ip_utils.hpp"
Ed Tanous3ccb3ad2023-01-13 17:40:03 -080028#include "utils/json_utils.hpp"
Ed Tanous033f1e42022-08-15 09:47:37 -070029
Sunitha Harishce73d5c2023-04-07 06:46:49 -050030#include <boost/system/error_code.hpp>
Ed Tanousef4c65b2023-04-24 15:28:50 -070031#include <boost/url/format.hpp>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050032
George Liu7a1dbc42022-12-07 16:03:22 +080033#include <array>
Ed Tanous3dfed532024-03-06 14:41:27 -080034#include <cstddef>
Sunitha Harishce73d5c2023-04-07 06:46:49 -050035#include <memory>
Ed Tanousa24526d2018-12-10 15:17:59 -080036#include <optional>
Ed Tanous3544d2a2023-08-06 18:12:20 -070037#include <ranges>
Joshi-Mansiab6554f2020-03-10 18:33:36 +053038#include <regex>
George Liu7a1dbc42022-12-07 16:03:22 +080039#include <string_view>
Ed Tanous3dfed532024-03-06 14:41:27 -080040#include <variant>
Ed Tanous77179532023-02-28 10:45:28 -080041#include <vector>
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010042
Ed Tanous1abe55e2018-09-05 08:30:59 -070043namespace redfish
44{
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010045
Ed Tanous4a0cb852018-10-15 07:55:04 -070046enum class LinkType
47{
48 Local,
49 Global
50};
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010051
Johnathan Mantey743eb1c2024-04-03 12:05:57 -070052enum class IpVersion
53{
54 IpV4,
55 IpV6
56};
57
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010058/**
59 * Structure for keeping IPv4 data required by Redfish
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010060 */
Ed Tanous1abe55e2018-09-05 08:30:59 -070061struct IPv4AddressData
62{
63 std::string id;
Ed Tanous4a0cb852018-10-15 07:55:04 -070064 std::string address;
65 std::string domain;
66 std::string gateway;
Ed Tanous1abe55e2018-09-05 08:30:59 -070067 std::string netmask;
68 std::string origin;
Ed Tanous77179532023-02-28 10:45:28 -080069 LinkType linktype{};
70 bool isActive{};
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010071};
72
73/**
Ravi Tejae48c0fc2019-04-16 08:37:20 -050074 * Structure for keeping IPv6 data required by Redfish
75 */
76struct IPv6AddressData
77{
78 std::string id;
79 std::string address;
80 std::string origin;
Ed Tanous77179532023-02-28 10:45:28 -080081 uint8_t prefixLength = 0;
Ravi Tejae48c0fc2019-04-16 08:37:20 -050082};
Sunitha Harishce73d5c2023-04-07 06:46:49 -050083
84/**
85 * Structure for keeping static route data required by Redfish
86 */
87struct StaticGatewayData
88{
89 std::string id;
90 std::string gateway;
91 size_t prefixLength = 0;
92 std::string protocol;
93};
94
Ravi Tejae48c0fc2019-04-16 08:37:20 -050095/**
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +010096 * Structure for keeping basic single Ethernet Interface information
97 * available from DBus
98 */
Ed Tanous1abe55e2018-09-05 08:30:59 -070099struct EthernetInterfaceData
100{
Ed Tanous4a0cb852018-10-15 07:55:04 -0700101 uint32_t speed;
Tejas Patil35fb5312021-09-20 15:35:20 +0530102 size_t mtuSize;
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800103 bool autoNeg;
Jishnu CMe4588152023-05-11 00:04:40 -0500104 bool dnsv4Enabled;
105 bool dnsv6Enabled;
Ravi Teja91c441e2024-02-23 09:03:43 -0600106 bool domainv4Enabled;
107 bool domainv6Enabled;
Jishnu CMe4588152023-05-11 00:04:40 -0500108 bool ntpv4Enabled;
109 bool ntpv6Enabled;
110 bool hostNamev4Enabled;
111 bool hostNamev6Enabled;
Johnathan Manteyaa05fb22020-01-08 12:08:44 -0800112 bool linkUp;
Johnathan Manteyeeedda22019-10-29 16:09:52 -0700113 bool nicEnabled;
Ravi Tejab10d8db2022-05-24 09:04:12 -0500114 bool ipv6AcceptRa;
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800115 std::string dhcpEnabled;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700116 std::string operatingMode;
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800117 std::string hostName;
118 std::string defaultGateway;
119 std::string ipv6DefaultGateway;
Sunitha Harishce73d5c2023-04-07 06:46:49 -0500120 std::string ipv6StaticDefaultGateway;
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800121 std::string macAddress;
Jiaqing Zhao17e22022022-04-14 18:58:06 +0800122 std::optional<uint32_t> vlanId;
manojkiran.eda@gmail.com0f6efdc2019-10-03 04:53:44 -0500123 std::vector<std::string> nameServers;
124 std::vector<std::string> staticNameServers;
Jennifer Leed24bfc72019-03-05 13:03:37 -0800125 std::vector<std::string> domainnames;
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +0100126};
127
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700128struct DHCPParameters
129{
130 std::optional<bool> dhcpv4Enabled;
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800131 std::optional<bool> useDnsServers;
132 std::optional<bool> useNtpServers;
133 std::optional<bool> useDomainName;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700134 std::optional<std::string> dhcpv6OperatingMode;
135};
136
Ed Tanous4a0cb852018-10-15 07:55:04 -0700137// Helper function that changes bits netmask notation (i.e. /24)
138// into full dot notation
139inline std::string getNetmask(unsigned int bits)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700140{
Ed Tanous4a0cb852018-10-15 07:55:04 -0700141 uint32_t value = 0xffffffff << (32 - bits);
142 std::string netmask = std::to_string((value >> 24) & 0xff) + "." +
143 std::to_string((value >> 16) & 0xff) + "." +
144 std::to_string((value >> 8) & 0xff) + "." +
145 std::to_string(value & 0xff);
146 return netmask;
147}
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +0100148
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800149inline bool translateDhcpEnabledToBool(const std::string& inputDHCP,
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700150 bool isIPv4)
151{
152 if (isIPv4)
153 {
154 return (
155 (inputDHCP ==
156 "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.v4") ||
157 (inputDHCP ==
158 "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.both"));
159 }
160 return ((inputDHCP ==
161 "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.v6") ||
162 (inputDHCP ==
163 "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.both"));
164}
165
Ed Tanous2c70f802020-09-28 14:29:23 -0700166inline std::string getDhcpEnabledEnumeration(bool isIPv4, bool isIPv6)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700167{
168 if (isIPv4 && isIPv6)
169 {
170 return "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.both";
171 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700172 if (isIPv4)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700173 {
174 return "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.v4";
175 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700176 if (isIPv6)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700177 {
178 return "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.v6";
179 }
180 return "xyz.openbmc_project.Network.EthernetInterface.DHCPConf.none";
181}
182
Ed Tanous4a0cb852018-10-15 07:55:04 -0700183inline std::string
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500184 translateAddressOriginDbusToRedfish(const std::string& inputOrigin,
Ed Tanous4a0cb852018-10-15 07:55:04 -0700185 bool isIPv4)
186{
187 if (inputOrigin == "xyz.openbmc_project.Network.IP.AddressOrigin.Static")
Ed Tanous1abe55e2018-09-05 08:30:59 -0700188 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700189 return "Static";
190 }
191 if (inputOrigin == "xyz.openbmc_project.Network.IP.AddressOrigin.LinkLocal")
192 {
193 if (isIPv4)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700194 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700195 return "IPv4LinkLocal";
196 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700197 return "LinkLocal";
Ed Tanous4a0cb852018-10-15 07:55:04 -0700198 }
199 if (inputOrigin == "xyz.openbmc_project.Network.IP.AddressOrigin.DHCP")
200 {
201 if (isIPv4)
202 {
203 return "DHCP";
204 }
Ed Tanous3174e4d2020-10-07 11:41:22 -0700205 return "DHCPv6";
Ed Tanous4a0cb852018-10-15 07:55:04 -0700206 }
207 if (inputOrigin == "xyz.openbmc_project.Network.IP.AddressOrigin.SLAAC")
208 {
209 return "SLAAC";
210 }
211 return "";
212}
213
Ed Tanous02cad962022-06-30 16:50:15 -0700214inline bool extractEthernetInterfaceData(
215 const std::string& ethifaceId,
216 const dbus::utility::ManagedObjectType& dbusData,
217 EthernetInterfaceData& ethData)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700218{
Ed Tanous4c9afe42019-05-03 16:59:57 -0700219 bool idFound = false;
Ed Tanous02cad962022-06-30 16:50:15 -0700220 for (const auto& objpath : dbusData)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700221 {
Ed Tanous02cad962022-06-30 16:50:15 -0700222 for (const auto& ifacePair : objpath.second)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700223 {
Ed Tanous81ce6092020-12-17 16:54:55 +0000224 if (objpath.first == "/xyz/openbmc_project/network/" + ethifaceId)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700225 {
Ed Tanous4c9afe42019-05-03 16:59:57 -0700226 idFound = true;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700227 if (ifacePair.first == "xyz.openbmc_project.Network.MACAddress")
Ed Tanous1abe55e2018-09-05 08:30:59 -0700228 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500229 for (const auto& propertyPair : ifacePair.second)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700230 {
Ed Tanous4a0cb852018-10-15 07:55:04 -0700231 if (propertyPair.first == "MACAddress")
Ed Tanous1abe55e2018-09-05 08:30:59 -0700232 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500233 const std::string* mac =
Ed Tanousabf2add2019-01-22 16:40:12 -0800234 std::get_if<std::string>(&propertyPair.second);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700235 if (mac != nullptr)
236 {
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800237 ethData.macAddress = *mac;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700238 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700239 }
Ed Tanous4a0cb852018-10-15 07:55:04 -0700240 }
241 }
242 else if (ifacePair.first == "xyz.openbmc_project.Network.VLAN")
243 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500244 for (const auto& propertyPair : ifacePair.second)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700245 {
246 if (propertyPair.first == "Id")
Ed Tanous1abe55e2018-09-05 08:30:59 -0700247 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500248 const uint32_t* id =
Ed Tanousabf2add2019-01-22 16:40:12 -0800249 std::get_if<uint32_t>(&propertyPair.second);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700250 if (id != nullptr)
251 {
Jiaqing Zhao17e22022022-04-14 18:58:06 +0800252 ethData.vlanId = *id;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700253 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700254 }
Ed Tanous4a0cb852018-10-15 07:55:04 -0700255 }
256 }
257 else if (ifacePair.first ==
258 "xyz.openbmc_project.Network.EthernetInterface")
259 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500260 for (const auto& propertyPair : ifacePair.second)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700261 {
262 if (propertyPair.first == "AutoNeg")
263 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700264 const bool* autoNeg =
Ed Tanousabf2add2019-01-22 16:40:12 -0800265 std::get_if<bool>(&propertyPair.second);
Ed Tanous2c70f802020-09-28 14:29:23 -0700266 if (autoNeg != nullptr)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700267 {
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800268 ethData.autoNeg = *autoNeg;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700269 }
270 }
271 else if (propertyPair.first == "Speed")
272 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500273 const uint32_t* speed =
Ed Tanousabf2add2019-01-22 16:40:12 -0800274 std::get_if<uint32_t>(&propertyPair.second);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700275 if (speed != nullptr)
276 {
277 ethData.speed = *speed;
278 }
279 }
Tejas Patil35fb5312021-09-20 15:35:20 +0530280 else if (propertyPair.first == "MTU")
281 {
Anthony3e7a8da2023-10-23 14:22:43 +0800282 const size_t* mtuSize =
283 std::get_if<size_t>(&propertyPair.second);
Tejas Patil35fb5312021-09-20 15:35:20 +0530284 if (mtuSize != nullptr)
285 {
286 ethData.mtuSize = *mtuSize;
287 }
288 }
Johnathan Manteyaa05fb22020-01-08 12:08:44 -0800289 else if (propertyPair.first == "LinkUp")
290 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500291 const bool* linkUp =
Johnathan Manteyaa05fb22020-01-08 12:08:44 -0800292 std::get_if<bool>(&propertyPair.second);
293 if (linkUp != nullptr)
294 {
295 ethData.linkUp = *linkUp;
296 }
297 }
Johnathan Manteyeeedda22019-10-29 16:09:52 -0700298 else if (propertyPair.first == "NICEnabled")
299 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500300 const bool* nicEnabled =
Johnathan Manteyeeedda22019-10-29 16:09:52 -0700301 std::get_if<bool>(&propertyPair.second);
302 if (nicEnabled != nullptr)
303 {
304 ethData.nicEnabled = *nicEnabled;
305 }
306 }
Ravi Tejab10d8db2022-05-24 09:04:12 -0500307 else if (propertyPair.first == "IPv6AcceptRA")
308 {
309 const bool* ipv6AcceptRa =
310 std::get_if<bool>(&propertyPair.second);
311 if (ipv6AcceptRa != nullptr)
312 {
313 ethData.ipv6AcceptRa = *ipv6AcceptRa;
314 }
315 }
RAJESWARAN THILLAIGOVINDANf85837b2019-04-04 05:18:53 -0500316 else if (propertyPair.first == "Nameservers")
Ed Tanous4a0cb852018-10-15 07:55:04 -0700317 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500318 const std::vector<std::string>* nameservers =
Patrick Williams8d78b7a2020-05-13 11:24:20 -0500319 std::get_if<std::vector<std::string>>(
Ed Tanous029573d2019-02-01 10:57:49 -0800320 &propertyPair.second);
321 if (nameservers != nullptr)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700322 {
Ed Tanousf23b7292020-10-15 09:41:17 -0700323 ethData.nameServers = *nameservers;
manojkiran.eda@gmail.com0f6efdc2019-10-03 04:53:44 -0500324 }
325 }
326 else if (propertyPair.first == "StaticNameServers")
327 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500328 const std::vector<std::string>* staticNameServers =
Patrick Williams8d78b7a2020-05-13 11:24:20 -0500329 std::get_if<std::vector<std::string>>(
manojkiran.eda@gmail.com0f6efdc2019-10-03 04:53:44 -0500330 &propertyPair.second);
331 if (staticNameServers != nullptr)
332 {
Ed Tanousf23b7292020-10-15 09:41:17 -0700333 ethData.staticNameServers = *staticNameServers;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700334 }
335 }
manojkiraneda2a133282019-02-19 13:09:43 +0530336 else if (propertyPair.first == "DHCPEnabled")
337 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700338 const std::string* dhcpEnabled =
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700339 std::get_if<std::string>(&propertyPair.second);
Ed Tanous2c70f802020-09-28 14:29:23 -0700340 if (dhcpEnabled != nullptr)
manojkiraneda2a133282019-02-19 13:09:43 +0530341 {
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800342 ethData.dhcpEnabled = *dhcpEnabled;
manojkiraneda2a133282019-02-19 13:09:43 +0530343 }
344 }
Jennifer Leed24bfc72019-03-05 13:03:37 -0800345 else if (propertyPair.first == "DomainName")
346 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500347 const std::vector<std::string>* domainNames =
Patrick Williams8d78b7a2020-05-13 11:24:20 -0500348 std::get_if<std::vector<std::string>>(
Jennifer Leed24bfc72019-03-05 13:03:37 -0800349 &propertyPair.second);
350 if (domainNames != nullptr)
351 {
Ed Tanousf23b7292020-10-15 09:41:17 -0700352 ethData.domainnames = *domainNames;
Jennifer Leed24bfc72019-03-05 13:03:37 -0800353 }
354 }
Ravi Teja9010ec22019-08-01 23:30:25 -0500355 else if (propertyPair.first == "DefaultGateway")
356 {
357 const std::string* defaultGateway =
358 std::get_if<std::string>(&propertyPair.second);
359 if (defaultGateway != nullptr)
360 {
361 std::string defaultGatewayStr = *defaultGateway;
362 if (defaultGatewayStr.empty())
363 {
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800364 ethData.defaultGateway = "0.0.0.0";
Ravi Teja9010ec22019-08-01 23:30:25 -0500365 }
366 else
367 {
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800368 ethData.defaultGateway = defaultGatewayStr;
Ravi Teja9010ec22019-08-01 23:30:25 -0500369 }
370 }
371 }
372 else if (propertyPair.first == "DefaultGateway6")
373 {
374 const std::string* defaultGateway6 =
375 std::get_if<std::string>(&propertyPair.second);
376 if (defaultGateway6 != nullptr)
377 {
378 std::string defaultGateway6Str =
379 *defaultGateway6;
380 if (defaultGateway6Str.empty())
381 {
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800382 ethData.ipv6DefaultGateway =
Ravi Teja9010ec22019-08-01 23:30:25 -0500383 "0:0:0:0:0:0:0:0";
384 }
385 else
386 {
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800387 ethData.ipv6DefaultGateway =
Ravi Teja9010ec22019-08-01 23:30:25 -0500388 defaultGateway6Str;
389 }
390 }
391 }
Ed Tanous029573d2019-02-01 10:57:49 -0800392 }
393 }
394 }
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700395
Jishnu CMe4588152023-05-11 00:04:40 -0500396 sdbusplus::message::object_path path(
397 "/xyz/openbmc_project/network");
398 sdbusplus::message::object_path dhcp4Path = path / ethifaceId /
399 "dhcp4";
400
401 if (sdbusplus::message::object_path(objpath.first) == dhcp4Path)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700402 {
403 if (ifacePair.first ==
404 "xyz.openbmc_project.Network.DHCPConfiguration")
405 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500406 for (const auto& propertyPair : ifacePair.second)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700407 {
408 if (propertyPair.first == "DNSEnabled")
409 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700410 const bool* dnsEnabled =
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700411 std::get_if<bool>(&propertyPair.second);
Ed Tanous2c70f802020-09-28 14:29:23 -0700412 if (dnsEnabled != nullptr)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700413 {
Jishnu CMe4588152023-05-11 00:04:40 -0500414 ethData.dnsv4Enabled = *dnsEnabled;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700415 }
416 }
Ravi Teja91c441e2024-02-23 09:03:43 -0600417 else if (propertyPair.first == "DomainEnabled")
418 {
419 const bool* domainEnabled =
420 std::get_if<bool>(&propertyPair.second);
421 if (domainEnabled != nullptr)
422 {
423 ethData.domainv4Enabled = *domainEnabled;
424 }
425 }
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700426 else if (propertyPair.first == "NTPEnabled")
427 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700428 const bool* ntpEnabled =
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700429 std::get_if<bool>(&propertyPair.second);
Ed Tanous2c70f802020-09-28 14:29:23 -0700430 if (ntpEnabled != nullptr)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700431 {
Jishnu CMe4588152023-05-11 00:04:40 -0500432 ethData.ntpv4Enabled = *ntpEnabled;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700433 }
434 }
435 else if (propertyPair.first == "HostNameEnabled")
436 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700437 const bool* hostNameEnabled =
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700438 std::get_if<bool>(&propertyPair.second);
Ed Tanous2c70f802020-09-28 14:29:23 -0700439 if (hostNameEnabled != nullptr)
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700440 {
Jishnu CMe4588152023-05-11 00:04:40 -0500441 ethData.hostNamev4Enabled = *hostNameEnabled;
442 }
443 }
444 }
445 }
446 }
447
448 sdbusplus::message::object_path dhcp6Path = path / ethifaceId /
449 "dhcp6";
450
451 if (sdbusplus::message::object_path(objpath.first) == dhcp6Path)
452 {
453 if (ifacePair.first ==
454 "xyz.openbmc_project.Network.DHCPConfiguration")
455 {
456 for (const auto& propertyPair : ifacePair.second)
457 {
458 if (propertyPair.first == "DNSEnabled")
459 {
460 const bool* dnsEnabled =
461 std::get_if<bool>(&propertyPair.second);
462 if (dnsEnabled != nullptr)
463 {
464 ethData.dnsv6Enabled = *dnsEnabled;
465 }
466 }
Ravi Teja91c441e2024-02-23 09:03:43 -0600467 if (propertyPair.first == "DomainEnabled")
468 {
469 const bool* domainEnabled =
470 std::get_if<bool>(&propertyPair.second);
471 if (domainEnabled != nullptr)
472 {
473 ethData.domainv6Enabled = *domainEnabled;
474 }
475 }
Jishnu CMe4588152023-05-11 00:04:40 -0500476 else if (propertyPair.first == "NTPEnabled")
477 {
478 const bool* ntpEnabled =
479 std::get_if<bool>(&propertyPair.second);
480 if (ntpEnabled != nullptr)
481 {
482 ethData.ntpv6Enabled = *ntpEnabled;
483 }
484 }
485 else if (propertyPair.first == "HostNameEnabled")
486 {
487 const bool* hostNameEnabled =
488 std::get_if<bool>(&propertyPair.second);
489 if (hostNameEnabled != nullptr)
490 {
491 ethData.hostNamev6Enabled = *hostNameEnabled;
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700492 }
493 }
Johnathan Mantey1f8c7b52019-06-18 12:44:21 -0700494 }
495 }
496 }
Ed Tanous029573d2019-02-01 10:57:49 -0800497 // System configuration shows up in the global namespace, so no need
498 // to check eth number
499 if (ifacePair.first ==
500 "xyz.openbmc_project.Network.SystemConfiguration")
501 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500502 for (const auto& propertyPair : ifacePair.second)
Ed Tanous029573d2019-02-01 10:57:49 -0800503 {
504 if (propertyPair.first == "HostName")
505 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500506 const std::string* hostname =
Patrick Williams8d78b7a2020-05-13 11:24:20 -0500507 std::get_if<std::string>(&propertyPair.second);
Ed Tanous029573d2019-02-01 10:57:49 -0800508 if (hostname != nullptr)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700509 {
Jiaqing Zhao82695a52022-04-14 15:15:59 +0800510 ethData.hostName = *hostname;
Ed Tanous029573d2019-02-01 10:57:49 -0800511 }
512 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700513 }
514 }
515 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700516 }
Ed Tanous4c9afe42019-05-03 16:59:57 -0700517 return idFound;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700518}
519
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500520// Helper function that extracts data for single ethernet ipv6 address
Ed Tanous77179532023-02-28 10:45:28 -0800521inline void extractIPV6Data(const std::string& ethifaceId,
522 const dbus::utility::ManagedObjectType& dbusData,
523 std::vector<IPv6AddressData>& ipv6Config)
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500524{
Patrick Williams89492a12023-05-10 07:51:34 -0500525 const std::string ipPathStart = "/xyz/openbmc_project/network/" +
526 ethifaceId;
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500527
528 // Since there might be several IPv6 configurations aligned with
529 // single ethernet interface, loop over all of them
Ed Tanous81ce6092020-12-17 16:54:55 +0000530 for (const auto& objpath : dbusData)
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500531 {
532 // Check if proper pattern for object path appears
Tony Lee353163e2022-11-23 11:06:10 +0800533 if (objpath.first.str.starts_with(ipPathStart + "/"))
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500534 {
Ed Tanous9eb808c2022-01-25 10:19:23 -0800535 for (const auto& interface : objpath.second)
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500536 {
537 if (interface.first == "xyz.openbmc_project.Network.IP")
538 {
Ed Tanous3544d2a2023-08-06 18:12:20 -0700539 auto type = std::ranges::find_if(interface.second,
540 [](const auto& property) {
Tony Lee353163e2022-11-23 11:06:10 +0800541 return property.first == "Type";
542 });
543 if (type == interface.second.end())
544 {
545 continue;
546 }
547
548 const std::string* typeStr =
549 std::get_if<std::string>(&type->second);
550
551 if (typeStr == nullptr ||
552 (*typeStr !=
553 "xyz.openbmc_project.Network.IP.Protocol.IPv6"))
554 {
555 continue;
556 }
557
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500558 // Instance IPv6AddressData structure, and set as
559 // appropriate
Ed Tanous77179532023-02-28 10:45:28 -0800560 IPv6AddressData& ipv6Address = ipv6Config.emplace_back();
Ed Tanous2c70f802020-09-28 14:29:23 -0700561 ipv6Address.id =
Tony Lee353163e2022-11-23 11:06:10 +0800562 objpath.first.str.substr(ipPathStart.size());
Ed Tanous9eb808c2022-01-25 10:19:23 -0800563 for (const auto& property : interface.second)
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500564 {
565 if (property.first == "Address")
566 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500567 const std::string* address =
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500568 std::get_if<std::string>(&property.second);
569 if (address != nullptr)
570 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700571 ipv6Address.address = *address;
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500572 }
573 }
574 else if (property.first == "Origin")
575 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500576 const std::string* origin =
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500577 std::get_if<std::string>(&property.second);
578 if (origin != nullptr)
579 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700580 ipv6Address.origin =
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500581 translateAddressOriginDbusToRedfish(*origin,
582 false);
583 }
584 }
585 else if (property.first == "PrefixLength")
586 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500587 const uint8_t* prefix =
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500588 std::get_if<uint8_t>(&property.second);
589 if (prefix != nullptr)
590 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700591 ipv6Address.prefixLength = *prefix;
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500592 }
593 }
Asmitha Karunanithi889ff692021-11-29 08:43:30 -0600594 else if (property.first == "Type" ||
595 property.first == "Gateway")
596 {
597 // Type & Gateway is not used
598 }
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500599 else
600 {
Ed Tanous62598e32023-07-17 17:06:25 -0700601 BMCWEB_LOG_ERROR(
602 "Got extra property: {} on the {} object",
603 property.first, objpath.first.str);
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500604 }
605 }
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500606 }
607 }
608 }
609 }
610}
611
Ed Tanous4a0cb852018-10-15 07:55:04 -0700612// Helper function that extracts data for single ethernet ipv4 address
Ed Tanous77179532023-02-28 10:45:28 -0800613inline void extractIPData(const std::string& ethifaceId,
614 const dbus::utility::ManagedObjectType& dbusData,
615 std::vector<IPv4AddressData>& ipv4Config)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700616{
Patrick Williams89492a12023-05-10 07:51:34 -0500617 const std::string ipPathStart = "/xyz/openbmc_project/network/" +
618 ethifaceId;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700619
620 // Since there might be several IPv4 configurations aligned with
621 // single ethernet interface, loop over all of them
Ed Tanous81ce6092020-12-17 16:54:55 +0000622 for (const auto& objpath : dbusData)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700623 {
624 // Check if proper pattern for object path appears
Tony Lee353163e2022-11-23 11:06:10 +0800625 if (objpath.first.str.starts_with(ipPathStart + "/"))
Ed Tanous4a0cb852018-10-15 07:55:04 -0700626 {
Ed Tanous9eb808c2022-01-25 10:19:23 -0800627 for (const auto& interface : objpath.second)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700628 {
629 if (interface.first == "xyz.openbmc_project.Network.IP")
630 {
Ed Tanous3544d2a2023-08-06 18:12:20 -0700631 auto type = std::ranges::find_if(interface.second,
632 [](const auto& property) {
Tony Lee353163e2022-11-23 11:06:10 +0800633 return property.first == "Type";
634 });
635 if (type == interface.second.end())
636 {
637 continue;
638 }
639
640 const std::string* typeStr =
641 std::get_if<std::string>(&type->second);
642
643 if (typeStr == nullptr ||
644 (*typeStr !=
645 "xyz.openbmc_project.Network.IP.Protocol.IPv4"))
646 {
647 continue;
648 }
649
Ed Tanous4a0cb852018-10-15 07:55:04 -0700650 // Instance IPv4AddressData structure, and set as
651 // appropriate
Ed Tanous77179532023-02-28 10:45:28 -0800652 IPv4AddressData& ipv4Address = ipv4Config.emplace_back();
Ed Tanous2c70f802020-09-28 14:29:23 -0700653 ipv4Address.id =
Tony Lee353163e2022-11-23 11:06:10 +0800654 objpath.first.str.substr(ipPathStart.size());
Ed Tanous9eb808c2022-01-25 10:19:23 -0800655 for (const auto& property : interface.second)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700656 {
657 if (property.first == "Address")
658 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500659 const std::string* address =
Ed Tanousabf2add2019-01-22 16:40:12 -0800660 std::get_if<std::string>(&property.second);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700661 if (address != nullptr)
662 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700663 ipv4Address.address = *address;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700664 }
665 }
Ed Tanous4a0cb852018-10-15 07:55:04 -0700666 else if (property.first == "Origin")
667 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500668 const std::string* origin =
Ed Tanousabf2add2019-01-22 16:40:12 -0800669 std::get_if<std::string>(&property.second);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700670 if (origin != nullptr)
671 {
Ed Tanous2c70f802020-09-28 14:29:23 -0700672 ipv4Address.origin =
Ed Tanous4a0cb852018-10-15 07:55:04 -0700673 translateAddressOriginDbusToRedfish(*origin,
674 true);
675 }
676 }
677 else if (property.first == "PrefixLength")
678 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500679 const uint8_t* mask =
Ed Tanousabf2add2019-01-22 16:40:12 -0800680 std::get_if<uint8_t>(&property.second);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700681 if (mask != nullptr)
682 {
683 // convert it to the string
Ed Tanous2c70f802020-09-28 14:29:23 -0700684 ipv4Address.netmask = getNetmask(*mask);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700685 }
686 }
Asmitha Karunanithi889ff692021-11-29 08:43:30 -0600687 else if (property.first == "Type" ||
688 property.first == "Gateway")
689 {
690 // Type & Gateway is not used
691 }
Ed Tanous4a0cb852018-10-15 07:55:04 -0700692 else
693 {
Ed Tanous62598e32023-07-17 17:06:25 -0700694 BMCWEB_LOG_ERROR(
695 "Got extra property: {} on the {} object",
696 property.first, objpath.first.str);
Ed Tanous4a0cb852018-10-15 07:55:04 -0700697 }
698 }
699 // Check if given address is local, or global
Ed Tanous2c70f802020-09-28 14:29:23 -0700700 ipv4Address.linktype =
Ed Tanous11ba3972022-07-11 09:50:41 -0700701 ipv4Address.address.starts_with("169.254.")
Johnathan Mantey18659d12019-06-07 10:26:29 -0700702 ? LinkType::Local
703 : LinkType::Global;
Ed Tanous4a0cb852018-10-15 07:55:04 -0700704 }
705 }
706 }
707 }
708}
709
710/**
Johnathan Mantey743eb1c2024-04-03 12:05:57 -0700711 * @brief Modifies the default gateway assigned to the NIC
712 *
713 * @param[in] ifaceId Id of network interface whose default gateway is to be
714 * changed
715 * @param[in] gateway The new gateway value. Assigning an empty string
716 * causes the gateway to be deleted
717 * @param[io] asyncResp Response object that will be returned to client
718 *
719 * @return None
720 */
721inline void updateIPv4DefaultGateway(
722 const std::string& ifaceId, const std::string& gateway,
723 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
724{
725 setDbusProperty(
Ginu Georgee93abac2024-06-14 17:35:27 +0530726 asyncResp, "Gateway", "xyz.openbmc_project.Network",
Johnathan Mantey743eb1c2024-04-03 12:05:57 -0700727 sdbusplus::message::object_path("/xyz/openbmc_project/network") /
728 ifaceId,
729 "xyz.openbmc_project.Network.EthernetInterface", "DefaultGateway",
Ginu Georgee93abac2024-06-14 17:35:27 +0530730 gateway);
Johnathan Mantey743eb1c2024-04-03 12:05:57 -0700731}
732
733/**
734 * @brief Deletes given static IP address for the interface
Ed Tanous4a0cb852018-10-15 07:55:04 -0700735 *
736 * @param[in] ifaceId Id of interface whose IP should be deleted
Ed Tanous4a0cb852018-10-15 07:55:04 -0700737 * @param[in] ipHash DBus Hash id of IP that should be deleted
738 * @param[io] asyncResp Response object that will be returned to client
739 *
740 * @return None
741 */
Ravi Teja9c5e5852023-02-26 21:33:52 -0600742inline void deleteIPAddress(const std::string& ifaceId,
743 const std::string& ipHash,
744 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700745{
746 crow::connections::systemBus->async_method_call(
Ed Tanous5e7e2dc2023-02-16 10:37:01 -0800747 [asyncResp](const boost::system::error_code& ec) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700748 if (ec)
749 {
750 messages::internalError(asyncResp->res);
751 }
Patrick Williams5a39f772023-10-20 11:20:21 -0500752 },
Ed Tanous4a0cb852018-10-15 07:55:04 -0700753 "xyz.openbmc_project.Network",
Ravi Teja9c5e5852023-02-26 21:33:52 -0600754 "/xyz/openbmc_project/network/" + ifaceId + ipHash,
Ed Tanous4a0cb852018-10-15 07:55:04 -0700755 "xyz.openbmc_project.Object.Delete", "Delete");
756}
Ed Tanous1abe55e2018-09-05 08:30:59 -0700757
Ed Tanous4a0cb852018-10-15 07:55:04 -0700758/**
Johnathan Mantey01784822019-06-18 12:44:21 -0700759 * @brief Creates a static IPv4 entry
Ed Tanous4a0cb852018-10-15 07:55:04 -0700760 *
Johnathan Mantey01784822019-06-18 12:44:21 -0700761 * @param[in] ifaceId Id of interface upon which to create the IPv4 entry
762 * @param[in] prefixLength IPv4 prefix syntax for the subnet mask
763 * @param[in] gateway IPv4 address of this interfaces gateway
764 * @param[in] address IPv4 address to assign to this interface
765 * @param[io] asyncResp Response object that will be returned to client
Ed Tanous4a0cb852018-10-15 07:55:04 -0700766 *
767 * @return None
768 */
Ed Tanouscb13a392020-07-25 19:02:03 +0000769inline void createIPv4(const std::string& ifaceId, uint8_t prefixLength,
770 const std::string& gateway, const std::string& address,
zhanghch058d1b46d2021-04-01 11:18:24 +0800771 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Ed Tanous4a0cb852018-10-15 07:55:04 -0700772{
Patrick Williams5a39f772023-10-20 11:20:21 -0500773 auto createIpHandler = [asyncResp, ifaceId,
774 gateway](const boost::system::error_code& ec) {
Ravi Teja9010ec22019-08-01 23:30:25 -0500775 if (ec)
776 {
777 messages::internalError(asyncResp->res);
778 return;
779 }
Ravi Teja9010ec22019-08-01 23:30:25 -0500780 };
781
Ed Tanous4a0cb852018-10-15 07:55:04 -0700782 crow::connections::systemBus->async_method_call(
Ravi Teja9010ec22019-08-01 23:30:25 -0500783 std::move(createIpHandler), "xyz.openbmc_project.Network",
Ed Tanous4a0cb852018-10-15 07:55:04 -0700784 "/xyz/openbmc_project/network/" + ifaceId,
785 "xyz.openbmc_project.Network.IP.Create", "IP",
Johnathan Mantey01784822019-06-18 12:44:21 -0700786 "xyz.openbmc_project.Network.IP.Protocol.IPv4", address, prefixLength,
Ed Tanous4a0cb852018-10-15 07:55:04 -0700787 gateway);
788}
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500789
790/**
Johnathan Mantey743eb1c2024-04-03 12:05:57 -0700791 * @brief Deletes the IP entry for this interface and creates a replacement
792 * static entry
Johnathan Mantey01784822019-06-18 12:44:21 -0700793 *
Johnathan Mantey743eb1c2024-04-03 12:05:57 -0700794 * @param[in] ifaceId Id of interface upon which to create the IPv6 entry
795 * @param[in] id The unique hash entry identifying the DBus entry
796 * @param[in] prefixLength Prefix syntax for the subnet mask
797 * @param[in] address Address to assign to this interface
798 * @param[in] numStaticAddrs Count of IPv4 static addresses
799 * @param[io] asyncResp Response object that will be returned to client
Johnathan Mantey01784822019-06-18 12:44:21 -0700800 *
801 * @return None
802 */
Ravi Teja9c5e5852023-02-26 21:33:52 -0600803
Ravi Teja9c5e5852023-02-26 21:33:52 -0600804inline void deleteAndCreateIPAddress(
805 IpVersion version, const std::string& ifaceId, const std::string& id,
806 uint8_t prefixLength, const std::string& address,
807 const std::string& gateway,
808 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Johnathan Mantey01784822019-06-18 12:44:21 -0700809{
810 crow::connections::systemBus->async_method_call(
Ravi Teja9c5e5852023-02-26 21:33:52 -0600811 [asyncResp, version, ifaceId, address, prefixLength,
812 gateway](const boost::system::error_code& ec) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700813 if (ec)
814 {
815 messages::internalError(asyncResp->res);
816 }
Ravi Teja9c5e5852023-02-26 21:33:52 -0600817 std::string protocol = "xyz.openbmc_project.Network.IP.Protocol.";
818 protocol += version == IpVersion::IpV4 ? "IPv4" : "IPv6";
Ed Tanous002d39b2022-05-31 08:59:27 -0700819 crow::connections::systemBus->async_method_call(
Ed Tanous5e7e2dc2023-02-16 10:37:01 -0800820 [asyncResp](const boost::system::error_code& ec2) {
Ed Tanous002d39b2022-05-31 08:59:27 -0700821 if (ec2)
Johnathan Mantey01784822019-06-18 12:44:21 -0700822 {
823 messages::internalError(asyncResp->res);
824 }
Patrick Williams5a39f772023-10-20 11:20:21 -0500825 },
Ed Tanous002d39b2022-05-31 08:59:27 -0700826 "xyz.openbmc_project.Network",
827 "/xyz/openbmc_project/network/" + ifaceId,
Ravi Teja9c5e5852023-02-26 21:33:52 -0600828 "xyz.openbmc_project.Network.IP.Create", "IP", protocol, address,
829 prefixLength, gateway);
Patrick Williams5a39f772023-10-20 11:20:21 -0500830 },
Johnathan Mantey01784822019-06-18 12:44:21 -0700831 "xyz.openbmc_project.Network",
Ravi Teja9c5e5852023-02-26 21:33:52 -0600832 "/xyz/openbmc_project/network/" + ifaceId + id,
Johnathan Mantey01784822019-06-18 12:44:21 -0700833 "xyz.openbmc_project.Object.Delete", "Delete");
834}
835
Sunitha Harishce73d5c2023-04-07 06:46:49 -0500836inline bool extractIPv6DefaultGatewayData(
837 const std::string& ethifaceId,
838 const dbus::utility::ManagedObjectType& dbusData,
839 std::vector<StaticGatewayData>& staticGatewayConfig)
840{
841 std::string staticGatewayPathStart("/xyz/openbmc_project/network/");
842 staticGatewayPathStart += ethifaceId;
843
844 for (const auto& objpath : dbusData)
845 {
846 if (!std::string_view(objpath.first.str)
847 .starts_with(staticGatewayPathStart))
848 {
849 continue;
850 }
851 for (const auto& interface : objpath.second)
852 {
853 if (interface.first != "xyz.openbmc_project.Network.StaticGateway")
854 {
855 continue;
856 }
857 StaticGatewayData& staticGateway =
858 staticGatewayConfig.emplace_back();
859 staticGateway.id = objpath.first.filename();
860
861 bool success = sdbusplus::unpackPropertiesNoThrow(
862 redfish::dbus_utils::UnpackErrorPrinter(), interface.second,
863 "Gateway", staticGateway.gateway, "PrefixLength",
864 staticGateway.prefixLength, "ProtocolType",
865 staticGateway.protocol);
866 if (!success)
867 {
868 return false;
869 }
870 }
871 }
872 return true;
873}
874
Johnathan Mantey01784822019-06-18 12:44:21 -0700875/**
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500876 * @brief Creates IPv6 with given data
877 *
878 * @param[in] ifaceId Id of interface whose IP should be added
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500879 * @param[in] prefixLength Prefix length that needs to be added
880 * @param[in] address IP address that needs to be added
881 * @param[io] asyncResp Response object that will be returned to client
882 *
883 * @return None
884 */
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500885inline void createIPv6(const std::string& ifaceId, uint8_t prefixLength,
886 const std::string& address,
zhanghch058d1b46d2021-04-01 11:18:24 +0800887 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500888{
Sunitha Harishce73d5c2023-04-07 06:46:49 -0500889 sdbusplus::message::object_path path("/xyz/openbmc_project/network");
890 path /= ifaceId;
891
Patrick Williams5a39f772023-10-20 11:20:21 -0500892 auto createIpHandler = [asyncResp,
893 address](const boost::system::error_code& ec) {
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500894 if (ec)
895 {
Nitin Kumar Kotaniafc23ef82023-06-29 04:55:09 -0500896 if (ec == boost::system::errc::io_error)
897 {
898 messages::propertyValueFormatError(asyncResp->res, address,
899 "Address");
900 }
901 else
902 {
903 messages::internalError(asyncResp->res);
904 }
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500905 }
906 };
Sunitha Harishce73d5c2023-04-07 06:46:49 -0500907 // Passing null for gateway, as per redfish spec IPv6StaticAddresses
908 // object does not have associated gateway property
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500909 crow::connections::systemBus->async_method_call(
Sunitha Harishce73d5c2023-04-07 06:46:49 -0500910 std::move(createIpHandler), "xyz.openbmc_project.Network", path,
Ravi Tejae48c0fc2019-04-16 08:37:20 -0500911 "xyz.openbmc_project.Network.IP.Create", "IP",
912 "xyz.openbmc_project.Network.IP.Protocol.IPv6", address, prefixLength,
913 "");
914}
915
Ed Tanous4a0cb852018-10-15 07:55:04 -0700916/**
Sunitha Harishce73d5c2023-04-07 06:46:49 -0500917 * @brief Deletes given IPv6 Static Gateway
918 *
919 * @param[in] ifaceId Id of interface whose IP should be deleted
920 * @param[in] ipHash DBus Hash id of IP that should be deleted
921 * @param[io] asyncResp Response object that will be returned to client
922 *
923 * @return None
924 */
925inline void
926 deleteIPv6Gateway(std::string_view gatewayId,
927 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
928{
929 sdbusplus::message::object_path path("/xyz/openbmc_project/network");
930 path /= gatewayId;
931 crow::connections::systemBus->async_method_call(
932 [asyncResp](const boost::system::error_code& ec) {
933 if (ec)
934 {
935 messages::internalError(asyncResp->res);
936 }
937 },
938 "xyz.openbmc_project.Network", path,
939 "xyz.openbmc_project.Object.Delete", "Delete");
940}
941
942/**
943 * @brief Creates IPv6 static default gateway with given data
944 *
945 * @param[in] ifaceId Id of interface whose IP should be added
946 * @param[in] prefixLength Prefix length that needs to be added
947 * @param[in] gateway Gateway address that needs to be added
948 * @param[io] asyncResp Response object that will be returned to client
949 *
950 * @return None
951 */
952inline void createIPv6DefaultGateway(
953 std::string_view ifaceId, size_t prefixLength, std::string_view gateway,
954 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
955{
956 sdbusplus::message::object_path path("/xyz/openbmc_project/network");
957 path /= ifaceId;
958 auto createIpHandler = [asyncResp](const boost::system::error_code& ec) {
959 if (ec)
960 {
961 messages::internalError(asyncResp->res);
962 }
963 };
964 crow::connections::systemBus->async_method_call(
965 std::move(createIpHandler), "xyz.openbmc_project.Network", path,
966 "xyz.openbmc_project.Network.StaticGateway.Create", "StaticGateway",
967 gateway, prefixLength, "xyz.openbmc_project.Network.IP.Protocol.IPv6");
968}
969
970/**
971 * @brief Deletes the IPv6 default gateway entry for this interface and
972 * creates a replacement IPv6 default gateway entry
973 *
974 * @param[in] ifaceId Id of interface upon which to create the IPv6
975 * entry
976 * @param[in] gateway IPv6 gateway to assign to this interface
977 * @param[in] prefixLength IPv6 prefix syntax for the subnet mask
978 * @param[io] asyncResp Response object that will be returned to client
979 *
980 * @return None
981 */
982inline void deleteAndCreateIPv6DefaultGateway(
983 std::string_view ifaceId, std::string_view gatewayId,
984 std::string_view gateway, size_t prefixLength,
985 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
986{
987 sdbusplus::message::object_path path("/xyz/openbmc_project/network");
988 path /= gatewayId;
989 crow::connections::systemBus->async_method_call(
990 [asyncResp, ifaceId, gateway,
991 prefixLength](const boost::system::error_code& ec) {
992 if (ec)
993 {
994 messages::internalError(asyncResp->res);
995 return;
996 }
997 createIPv6DefaultGateway(ifaceId, prefixLength, gateway, asyncResp);
998 },
999 "xyz.openbmc_project.Network", path,
1000 "xyz.openbmc_project.Object.Delete", "Delete");
1001}
1002
1003/**
1004 * @brief Sets IPv6 default gateway with given data
1005 *
1006 * @param[in] ifaceId Id of interface whose gateway should be added
1007 * @param[in] input Contains address that needs to be added
1008 * @param[in] staticGatewayData Current static gateways in the system
1009 * @param[io] asyncResp Response object that will be returned to client
1010 *
1011 * @return None
1012 */
1013
1014inline void handleIPv6DefaultGateway(
Ed Tanous3dfed532024-03-06 14:41:27 -08001015 const std::string& ifaceId,
1016 std::vector<std::variant<nlohmann::json::object_t, std::nullptr_t>>& input,
Sunitha Harishce73d5c2023-04-07 06:46:49 -05001017 const std::vector<StaticGatewayData>& staticGatewayData,
1018 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
1019{
1020 size_t entryIdx = 1;
1021 std::vector<StaticGatewayData>::const_iterator staticGatewayEntry =
1022 staticGatewayData.begin();
1023
Ed Tanous3dfed532024-03-06 14:41:27 -08001024 for (std::variant<nlohmann::json::object_t, std::nullptr_t>& thisJson :
1025 input)
Sunitha Harishce73d5c2023-04-07 06:46:49 -05001026 {
1027 // find the next gateway entry
1028 while (staticGatewayEntry != staticGatewayData.end())
1029 {
1030 if (staticGatewayEntry->protocol ==
1031 "xyz.openbmc_project.Network.IP.Protocol.IPv6")
1032 {
1033 break;
1034 }
1035 staticGatewayEntry++;
1036 }
1037 std::string pathString = "IPv6StaticDefaultGateways/" +
1038 std::to_string(entryIdx);
Ed Tanous3dfed532024-03-06 14:41:27 -08001039 nlohmann::json::object_t* obj =
1040 std::get_if<nlohmann::json::object_t>(&thisJson);
1041 if (obj == nullptr)
Sunitha Harishce73d5c2023-04-07 06:46:49 -05001042 {
1043 if (staticGatewayEntry == staticGatewayData.end())
1044 {
1045 messages::resourceCannotBeDeleted(asyncResp->res);
1046 return;
1047 }
1048 deleteIPv6Gateway(staticGatewayEntry->id, asyncResp);
1049 return;
1050 }
Ed Tanous3dfed532024-03-06 14:41:27 -08001051 if (obj->empty())
Sunitha Harishce73d5c2023-04-07 06:46:49 -05001052 {
1053 // Do nothing, but make sure the entry exists.
1054 if (staticGatewayEntry == staticGatewayData.end())
1055 {
Ed Tanous3dfed532024-03-06 14:41:27 -08001056 messages::propertyValueFormatError(asyncResp->res, *obj,
Sunitha Harishce73d5c2023-04-07 06:46:49 -05001057 pathString);
1058 return;
1059 }
1060 }
1061 std::optional<std::string> address;
1062 std::optional<size_t> prefixLength;
1063
Ed Tanous3dfed532024-03-06 14:41:27 -08001064 if (!json_util::readJsonObject(*obj, asyncResp->res, "Address", address,
1065 "PrefixLength", prefixLength))
Sunitha Harishce73d5c2023-04-07 06:46:49 -05001066 {
1067 return;
1068 }
1069 const std::string* addr = nullptr;
1070 size_t prefix = 0;
1071 if (address)
1072 {
1073 addr = &(*address);
1074 }
1075 else if (staticGatewayEntry != staticGatewayData.end())
1076 {
1077 addr = &(staticGatewayEntry->gateway);
1078 }
1079 else
1080 {
1081 messages::propertyMissing(asyncResp->res, pathString + "/Address");
1082 return;
1083 }
1084 if (prefixLength)
1085 {
1086 prefix = *prefixLength;
1087 }
1088 else if (staticGatewayEntry != staticGatewayData.end())
1089 {
1090 prefix = staticGatewayEntry->prefixLength;
1091 }
1092 else
1093 {
1094 messages::propertyMissing(asyncResp->res,
1095 pathString + "/PrefixLength");
1096 return;
1097 }
1098 if (staticGatewayEntry != staticGatewayData.end())
1099 {
1100 deleteAndCreateIPv6DefaultGateway(ifaceId, staticGatewayEntry->id,
1101 *addr, prefix, asyncResp);
1102 staticGatewayEntry++;
1103 }
1104 else
1105 {
1106 createIPv6DefaultGateway(ifaceId, prefix, *addr, asyncResp);
1107 }
1108 entryIdx++;
1109 }
1110}
1111
1112/**
Ed Tanous4a0cb852018-10-15 07:55:04 -07001113 * Function that retrieves all properties for given Ethernet Interface
1114 * Object
1115 * from EntityManager Network Manager
1116 * @param ethiface_id a eth interface id to query on DBus
1117 * @param callback a function that shall be called to convert Dbus output
1118 * into JSON
1119 */
1120template <typename CallbackFunc>
Ed Tanous81ce6092020-12-17 16:54:55 +00001121void getEthernetIfaceData(const std::string& ethifaceId,
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001122 CallbackFunc&& callback)
Ed Tanous4a0cb852018-10-15 07:55:04 -07001123{
George Liuf5892d02023-03-01 10:37:08 +08001124 sdbusplus::message::object_path path("/xyz/openbmc_project/network");
1125 dbus::utility::getManagedObjects(
1126 "xyz.openbmc_project.Network", path,
Ed Tanousf94c4ec2022-01-06 12:44:41 -08001127 [ethifaceId{std::string{ethifaceId}},
Ed Tanous8cb2c022024-03-27 16:31:46 -07001128 callback = std::forward<CallbackFunc>(callback)](
Ed Tanous8b242752023-06-27 17:17:13 -07001129 const boost::system::error_code& ec,
Ed Tanous3dfed532024-03-06 14:41:27 -08001130 const dbus::utility::ManagedObjectType& resp) mutable {
Ed Tanous002d39b2022-05-31 08:59:27 -07001131 EthernetInterfaceData ethData{};
Ed Tanous77179532023-02-28 10:45:28 -08001132 std::vector<IPv4AddressData> ipv4Data;
1133 std::vector<IPv6AddressData> ipv6Data;
Sunitha Harishce73d5c2023-04-07 06:46:49 -05001134 std::vector<StaticGatewayData> ipv6GatewayData;
Ed Tanous4a0cb852018-10-15 07:55:04 -07001135
Ed Tanous8b242752023-06-27 17:17:13 -07001136 if (ec)
Ed Tanous002d39b2022-05-31 08:59:27 -07001137 {
Sunitha Harishce73d5c2023-04-07 06:46:49 -05001138 callback(false, ethData, ipv4Data, ipv6Data, ipv6GatewayData);
Ed Tanous002d39b2022-05-31 08:59:27 -07001139 return;
1140 }
1141
1142 bool found = extractEthernetInterfaceData(ethifaceId, resp, ethData);
1143 if (!found)
1144 {
Sunitha Harishce73d5c2023-04-07 06:46:49 -05001145 callback(false, ethData, ipv4Data, ipv6Data, ipv6GatewayData);
Ed Tanous002d39b2022-05-31 08:59:27 -07001146 return;
1147 }
1148
1149 extractIPData(ethifaceId, resp, ipv4Data);
1150 // Fix global GW
1151 for (IPv4AddressData& ipv4 : ipv4Data)
1152 {
1153 if (((ipv4.linktype == LinkType::Global) &&
1154 (ipv4.gateway == "0.0.0.0")) ||
1155 (ipv4.origin == "DHCP") || (ipv4.origin == "Static"))
Ed Tanous4a0cb852018-10-15 07:55:04 -07001156 {
Ed Tanous002d39b2022-05-31 08:59:27 -07001157 ipv4.gateway = ethData.defaultGateway;
Ed Tanous4a0cb852018-10-15 07:55:04 -07001158 }
Ed Tanous002d39b2022-05-31 08:59:27 -07001159 }
Ed Tanous4a0cb852018-10-15 07:55:04 -07001160
Ed Tanous002d39b2022-05-31 08:59:27 -07001161 extractIPV6Data(ethifaceId, resp, ipv6Data);
Sunitha Harishce73d5c2023-04-07 06:46:49 -05001162 if (!extractIPv6DefaultGatewayData(ethifaceId, resp, ipv6GatewayData))
1163 {
1164 callback(false, ethData, ipv4Data, ipv6Data, ipv6GatewayData);
1165 }
Ed Tanous002d39b2022-05-31 08:59:27 -07001166 // Finally make a callback with useful data
Sunitha Harishce73d5c2023-04-07 06:46:49 -05001167 callback(true, ethData, ipv4Data, ipv6Data, ipv6GatewayData);
Patrick Williams5a39f772023-10-20 11:20:21 -05001168 });
Ed Tanous271584a2019-07-09 16:24:22 -07001169}
Ed Tanous4a0cb852018-10-15 07:55:04 -07001170
1171/**
1172 * Function that retrieves all Ethernet Interfaces available through Network
1173 * Manager
1174 * @param callback a function that shall be called to convert Dbus output
1175 * into JSON.
1176 */
1177template <typename CallbackFunc>
Gunnar Mills1214b7e2020-06-04 10:11:30 -05001178void getEthernetIfaceList(CallbackFunc&& callback)
Ed Tanous4a0cb852018-10-15 07:55:04 -07001179{
George Liuf5892d02023-03-01 10:37:08 +08001180 sdbusplus::message::object_path path("/xyz/openbmc_project/network");
1181 dbus::utility::getManagedObjects(
1182 "xyz.openbmc_project.Network", path,
Ed Tanous8cb2c022024-03-27 16:31:46 -07001183 [callback = std::forward<CallbackFunc>(callback)](
Ed Tanous8b242752023-06-27 17:17:13 -07001184 const boost::system::error_code& ec,
George Liuf5892d02023-03-01 10:37:08 +08001185 const dbus::utility::ManagedObjectType& resp) {
Ed Tanous002d39b2022-05-31 08:59:27 -07001186 // Callback requires vector<string> to retrieve all available
1187 // ethernet interfaces
Ed Tanous77179532023-02-28 10:45:28 -08001188 std::vector<std::string> ifaceList;
Ed Tanous002d39b2022-05-31 08:59:27 -07001189 ifaceList.reserve(resp.size());
Ed Tanous8b242752023-06-27 17:17:13 -07001190 if (ec)
Ed Tanous002d39b2022-05-31 08:59:27 -07001191 {
1192 callback(false, ifaceList);
1193 return;
1194 }
Ed Tanous4a0cb852018-10-15 07:55:04 -07001195
Ed Tanous002d39b2022-05-31 08:59:27 -07001196 // Iterate over all retrieved ObjectPaths.
1197 for (const auto& objpath : resp)
1198 {
1199 // And all interfaces available for certain ObjectPath.
1200 for (const auto& interface : objpath.second)
Ed Tanous4a0cb852018-10-15 07:55:04 -07001201 {
Ed Tanous002d39b2022-05-31 08:59:27 -07001202 // If interface is
1203 // xyz.openbmc_project.Network.EthernetInterface, this is
1204 // what we're looking for.
1205 if (interface.first ==
1206 "xyz.openbmc_project.Network.EthernetInterface")
Ed Tanous4a0cb852018-10-15 07:55:04 -07001207 {
Ed Tanous002d39b2022-05-31 08:59:27 -07001208 std::string ifaceId = objpath.first.filename();
1209 if (ifaceId.empty())
Ed Tanous1abe55e2018-09-05 08:30:59 -07001210 {
Ed Tanous002d39b2022-05-31 08:59:27 -07001211 continue;
Ed Tanous1abe55e2018-09-05 08:30:59 -07001212 }
Ed Tanous002d39b2022-05-31 08:59:27 -07001213 // and put it into output vector.
Ed Tanous77179532023-02-28 10:45:28 -08001214 ifaceList.emplace_back(ifaceId);
Ed Tanous1abe55e2018-09-05 08:30:59 -07001215 }
Ed Tanous4a0cb852018-10-15 07:55:04 -07001216 }
Ed Tanous002d39b2022-05-31 08:59:27 -07001217 }
Ed Tanous2c5875a2023-05-15 09:56:06 -07001218
Ed Tanous3544d2a2023-08-06 18:12:20 -07001219 std::ranges::sort(ifaceList, AlphanumLess<std::string>());
Ed Tanous2c5875a2023-05-15 09:56:06 -07001220
Ed Tanous002d39b2022-05-31 08:59:27 -07001221 // Finally make a callback with useful data
1222 callback(true, ifaceList);
Patrick Williams5a39f772023-10-20 11:20:21 -05001223 });
Ed Tanous271584a2019-07-09 16:24:22 -07001224}
Rapkiewicz, Pawel9391bb92018-03-20 03:12:18 +01001225
Ed Tanous4f48d5f2021-06-21 08:27:45 -07001226inline void
1227 handleHostnamePatch(const std::string& hostname,
1228 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Ed Tanous1abe55e2018-09-05 08:30:59 -07001229{
Ed Tanousbf648f72021-06-03 15:00:14 -07001230 // SHOULD handle host names of up to 255 characters(RFC 1123)
1231 if (hostname.length() > 255)
Ed Tanous1abe55e2018-09-05 08:30:59 -07001232 {
Ed Tanousbf648f72021-06-03 15:00:14 -07001233 messages::propertyValueFormatError(asyncResp->res, hostname,
1234 "HostName");
1235 return;
1236 }
Ed Tanousd02aad32024-02-13 14:43:34 -08001237 setDbusProperty(
Ginu Georgee93abac2024-06-14 17:35:27 +05301238 asyncResp, "HostName", "xyz.openbmc_project.Network",
Ed Tanousd02aad32024-02-13 14:43:34 -08001239 sdbusplus::message::object_path("/xyz/openbmc_project/network/config"),
1240 "xyz.openbmc_project.Network.SystemConfiguration", "HostName",
Ginu Georgee93abac2024-06-14 17:35:27 +05301241 hostname);
Ed Tanousbf648f72021-06-03 15:00:14 -07001242}
1243
Ed Tanous4f48d5f2021-06-21 08:27:45 -07001244inline void
Tejas Patil35fb5312021-09-20 15:35:20 +05301245 handleMTUSizePatch(const std::string& ifaceId, const size_t mtuSize,
1246 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
1247{
Ed Tanousd02aad32024-02-13 14:43:34 -08001248 sdbusplus::message::object_path objPath("/xyz/openbmc_project/network");
1249 objPath /= ifaceId;
Ginu Georgee93abac2024-06-14 17:35:27 +05301250 setDbusProperty(asyncResp, "MTUSize", "xyz.openbmc_project.Network",
1251 objPath, "xyz.openbmc_project.Network.EthernetInterface",
1252 "MTU", mtuSize);
Tejas Patil35fb5312021-09-20 15:35:20 +05301253}
1254
1255inline void
Ed Tanous4f48d5f2021-06-21 08:27:45 -07001256 handleDomainnamePatch(const std::string& ifaceId,
1257 const std::string& domainname,
1258 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Ed Tanousbf648f72021-06-03 15:00:14 -07001259{
1260 std::vector<std::string> vectorDomainname = {domainname};
Ed Tanousd02aad32024-02-13 14:43:34 -08001261 setDbusProperty(
Ginu Georgee93abac2024-06-14 17:35:27 +05301262 asyncResp, "FQDN", "xyz.openbmc_project.Network",
Ed Tanousd02aad32024-02-13 14:43:34 -08001263 sdbusplus::message::object_path("/xyz/openbmc_project/network") /
1264 ifaceId,
Ginu Georgee93abac2024-06-14 17:35:27 +05301265 "xyz.openbmc_project.Network.EthernetInterface", "DomainName",
Ed Tanousd02aad32024-02-13 14:43:34 -08001266 vectorDomainname);
Ed Tanousbf648f72021-06-03 15:00:14 -07001267}
1268
Ed Tanous4f48d5f2021-06-21 08:27:45 -07001269inline bool isHostnameValid(const std::string& hostname)
Ed Tanousbf648f72021-06-03 15:00:14 -07001270{
1271 // A valid host name can never have the dotted-decimal form (RFC 1123)
Ed Tanous3544d2a2023-08-06 18:12:20 -07001272 if (std::ranges::all_of(hostname, ::isdigit))
Ed Tanousbf648f72021-06-03 15:00:14 -07001273 {
1274 return false;
1275 }
1276 // Each label(hostname/subdomains) within a valid FQDN
1277 // MUST handle host names of up to 63 characters (RFC 1123)
1278 // labels cannot start or end with hyphens (RFC 952)
1279 // labels can start with numbers (RFC 1123)
Ed Tanous4b242742023-05-11 09:51:51 -07001280 const static std::regex pattern(
Ed Tanousbf648f72021-06-03 15:00:14 -07001281 "^[a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]{0,61}[a-zA-Z0-9]$");
1282
1283 return std::regex_match(hostname, pattern);
1284}
1285
Ed Tanous4f48d5f2021-06-21 08:27:45 -07001286inline bool isDomainnameValid(const std::string& domainname)
Ed Tanousbf648f72021-06-03 15:00:14 -07001287{
1288 // Can have multiple subdomains
1289 // Top Level Domain's min length is 2 character
Ed Tanous4b242742023-05-11 09:51:51 -07001290 const static std::regex pattern(
George Liu0fda0f12021-11-16 10:06:17 +08001291 "^([A-Za-z0-9][a-zA-Z0-9\\-]{1,61}|[a-zA-Z0-9]{1,30}\\.)*[a-zA-Z]{2,}$");
Ed Tanousbf648f72021-06-03 15:00:14 -07001292
1293 return std::regex_match(domainname, pattern);
1294}
1295
Ed Tanous4f48d5f2021-06-21 08:27:45 -07001296inline void handleFqdnPatch(const std::string& ifaceId, const std::string& fqdn,
1297 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Ed Tanousbf648f72021-06-03 15:00:14 -07001298{
1299 // Total length of FQDN must not exceed 255 characters(RFC 1035)
1300 if (fqdn.length() > 255)
1301 {
1302 messages::propertyValueFormatError(asyncResp->res, fqdn, "FQDN");
1303 return;
Ed Tanous1abe55e2018-09-05 08:30:59 -07001304 }
1305
Ed Tanousbf648f72021-06-03 15:00:14 -07001306 size_t pos = fqdn.find('.');
1307 if (pos == std::string::npos)
Ed Tanous1abe55e2018-09-05 08:30:59 -07001308 {
Ed Tanousbf648f72021-06-03 15:00:14 -07001309 messages::propertyValueFormatError(asyncResp->res, fqdn, "FQDN");
1310 return;
1311 }
zhanghch058d1b46d2021-04-01 11:18:24 +08001312
Ed Tanousbf648f72021-06-03 15:00:14 -07001313 std::string hostname;
1314 std::string domainname;
1315 domainname = (fqdn).substr(pos + 1);
1316 hostname = (fqdn).substr(0, pos);
1317
1318 if (!isHostnameValid(hostname) || !isDomainnameValid(domainname))
1319 {
1320 messages::propertyValueFormatError(asyncResp->res, fqdn, "FQDN");
1321 return;
1322 }
1323
1324 handleHostnamePatch(hostname, asyncResp);
1325 handleDomainnamePatch(ifaceId, domainname, asyncResp);
1326}
1327
Ed Tanous4f48d5f2021-06-21 08:27:45 -07001328inline void
1329 handleMACAddressPatch(const std::string& ifaceId,
1330 const std::string& macAddress,
1331 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Ed Tanousbf648f72021-06-03 15:00:14 -07001332{
Ed Tanousd02aad32024-02-13 14:43:34 -08001333 setDbusProperty(
Ginu Georgee93abac2024-06-14 17:35:27 +05301334 asyncResp, "MACAddress", "xyz.openbmc_project.Network",
Ed Tanousd02aad32024-02-13 14:43:34 -08001335 sdbusplus::message::object_path("/xyz/openbmc_project/network") /
1336 ifaceId,
Ginu Georgee93abac2024-06-14 17:35:27 +05301337 "xyz.openbmc_project.Network.MACAddress", "MACAddress", macAddress);
Ed Tanousbf648f72021-06-03 15:00:14 -07001338}
1339
Ed Tanous4f48d5f2021-06-21 08:27:45 -07001340inline void setDHCPEnabled(const std::string& ifaceId,
1341 const std::string& propertyName, const bool v4Value,
1342 const bool v6Value,
1343 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Ed Tanousbf648f72021-06-03 15:00:14 -07001344{
1345 const std::string dhcp = getDhcpEnabledEnumeration(v4Value, v6Value);
Ed Tanousd02aad32024-02-13 14:43:34 -08001346 setDbusProperty(
Ginu Georgee93abac2024-06-14 17:35:27 +05301347 asyncResp, "DHCPv4", "xyz.openbmc_project.Network",
Ed Tanousd02aad32024-02-13 14:43:34 -08001348 sdbusplus::message::object_path("/xyz/openbmc_project/network") /
1349 ifaceId,
Ginu Georgee93abac2024-06-14 17:35:27 +05301350 "xyz.openbmc_project.Network.EthernetInterface", propertyName, dhcp);
Ed Tanousbf648f72021-06-03 15:00:14 -07001351}
1352
Jishnu CMe4588152023-05-11 00:04:40 -05001353enum class NetworkType
1354{
1355 dhcp4,
1356 dhcp6
1357};
1358
1359inline void setDHCPConfig(const std::string& propertyName, const bool& value,
1360 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
1361 const std::string& ethifaceId, NetworkType type)
Ed Tanousbf648f72021-06-03 15:00:14 -07001362{
Ed Tanous62598e32023-07-17 17:06:25 -07001363 BMCWEB_LOG_DEBUG("{} = {}", propertyName, value);
Asmitha Karunanithi1847f2a2024-03-26 22:03:48 -05001364 std::string redfishPropertyName;
Jishnu CMe4588152023-05-11 00:04:40 -05001365 sdbusplus::message::object_path path("/xyz/openbmc_project/network/");
1366 path /= ethifaceId;
1367
1368 if (type == NetworkType::dhcp4)
1369 {
1370 path /= "dhcp4";
Asmitha Karunanithi1847f2a2024-03-26 22:03:48 -05001371 redfishPropertyName = "DHCPv4";
Jishnu CMe4588152023-05-11 00:04:40 -05001372 }
1373 else
1374 {
1375 path /= "dhcp6";
Asmitha Karunanithi1847f2a2024-03-26 22:03:48 -05001376 redfishPropertyName = "DHCPv6";
Jishnu CMe4588152023-05-11 00:04:40 -05001377 }
1378
Ginu Georgee93abac2024-06-14 17:35:27 +05301379 setDbusProperty(
1380 asyncResp, redfishPropertyName, "xyz.openbmc_project.Network", path,
1381 "xyz.openbmc_project.Network.DHCPConfiguration", propertyName, value);
Ed Tanousbf648f72021-06-03 15:00:14 -07001382}
1383
Ravi Tejab10d8db2022-05-24 09:04:12 -05001384inline void handleSLAACAutoConfigPatch(
1385 const std::string& ifaceId, bool ipv6AutoConfigEnabled,
1386 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
1387{
1388 sdbusplus::message::object_path path("/xyz/openbmc_project/network");
1389 path /= ifaceId;
Ginu Georgee93abac2024-06-14 17:35:27 +05301390 setDbusProperty(asyncResp,
Asmitha Karunanithi1847f2a2024-03-26 22:03:48 -05001391 "StatelessAddressAutoConfig/IPv6AutoConfigEnabled",
Ginu Georgee93abac2024-06-14 17:35:27 +05301392 "xyz.openbmc_project.Network", path,
1393 "xyz.openbmc_project.Network.EthernetInterface",
1394 "IPv6AcceptRA", ipv6AutoConfigEnabled);
Ravi Tejab10d8db2022-05-24 09:04:12 -05001395}
1396
Ed Tanous4f48d5f2021-06-21 08:27:45 -07001397inline void handleDHCPPatch(const std::string& ifaceId,
1398 const EthernetInterfaceData& ethData,
1399 const DHCPParameters& v4dhcpParms,
1400 const DHCPParameters& v6dhcpParms,
1401 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Ed Tanousbf648f72021-06-03 15:00:14 -07001402{
Jiaqing Zhao82695a52022-04-14 15:15:59 +08001403 bool ipv4Active = translateDhcpEnabledToBool(ethData.dhcpEnabled, true);
1404 bool ipv6Active = translateDhcpEnabledToBool(ethData.dhcpEnabled, false);
Ed Tanousbf648f72021-06-03 15:00:14 -07001405
Johnathan Mantey743eb1c2024-04-03 12:05:57 -07001406 if (ipv4Active)
1407 {
1408 updateIPv4DefaultGateway(ifaceId, "", asyncResp);
1409 }
Ed Tanousbf648f72021-06-03 15:00:14 -07001410 bool nextv4DHCPState =
1411 v4dhcpParms.dhcpv4Enabled ? *v4dhcpParms.dhcpv4Enabled : ipv4Active;
1412
1413 bool nextv6DHCPState{};
1414 if (v6dhcpParms.dhcpv6OperatingMode)
1415 {
Ravi Tejab10d8db2022-05-24 09:04:12 -05001416 if ((*v6dhcpParms.dhcpv6OperatingMode != "Enabled") &&
Ed Tanousbf648f72021-06-03 15:00:14 -07001417 (*v6dhcpParms.dhcpv6OperatingMode != "Disabled"))
1418 {
1419 messages::propertyValueFormatError(asyncResp->res,
1420 *v6dhcpParms.dhcpv6OperatingMode,
1421 "OperatingMode");
1422 return;
1423 }
Ravi Tejab10d8db2022-05-24 09:04:12 -05001424 nextv6DHCPState = (*v6dhcpParms.dhcpv6OperatingMode == "Enabled");
Ed Tanousbf648f72021-06-03 15:00:14 -07001425 }
1426 else
1427 {
1428 nextv6DHCPState = ipv6Active;
1429 }
1430
Jishnu CMe4588152023-05-11 00:04:40 -05001431 bool nextDNSv4 = ethData.dnsv4Enabled;
1432 bool nextDNSv6 = ethData.dnsv6Enabled;
1433 if (v4dhcpParms.useDnsServers)
Ed Tanousbf648f72021-06-03 15:00:14 -07001434 {
Jishnu CMe4588152023-05-11 00:04:40 -05001435 nextDNSv4 = *v4dhcpParms.useDnsServers;
Ed Tanousbf648f72021-06-03 15:00:14 -07001436 }
Jishnu CMe4588152023-05-11 00:04:40 -05001437 if (v6dhcpParms.useDnsServers)
Ed Tanousbf648f72021-06-03 15:00:14 -07001438 {
Jishnu CMe4588152023-05-11 00:04:40 -05001439 nextDNSv6 = *v6dhcpParms.useDnsServers;
Ed Tanousbf648f72021-06-03 15:00:14 -07001440 }
1441
Jishnu CMe4588152023-05-11 00:04:40 -05001442 bool nextNTPv4 = ethData.ntpv4Enabled;
1443 bool nextNTPv6 = ethData.ntpv6Enabled;
1444 if (v4dhcpParms.useNtpServers)
Ed Tanousbf648f72021-06-03 15:00:14 -07001445 {
Jishnu CMe4588152023-05-11 00:04:40 -05001446 nextNTPv4 = *v4dhcpParms.useNtpServers;
Ed Tanousbf648f72021-06-03 15:00:14 -07001447 }
Jishnu CMe4588152023-05-11 00:04:40 -05001448 if (v6dhcpParms.useNtpServers)
Ed Tanousbf648f72021-06-03 15:00:14 -07001449 {
Jishnu CMe4588152023-05-11 00:04:40 -05001450 nextNTPv6 = *v6dhcpParms.useNtpServers;
Ed Tanousbf648f72021-06-03 15:00:14 -07001451 }
1452
Ravi Teja91c441e2024-02-23 09:03:43 -06001453 bool nextUsev4Domain = ethData.domainv4Enabled;
1454 bool nextUsev6Domain = ethData.domainv6Enabled;
Jishnu CMe4588152023-05-11 00:04:40 -05001455 if (v4dhcpParms.useDomainName)
Ed Tanousbf648f72021-06-03 15:00:14 -07001456 {
Jishnu CMe4588152023-05-11 00:04:40 -05001457 nextUsev4Domain = *v4dhcpParms.useDomainName;
Ed Tanousbf648f72021-06-03 15:00:14 -07001458 }
Jishnu CMe4588152023-05-11 00:04:40 -05001459 if (v6dhcpParms.useDomainName)
Ed Tanousbf648f72021-06-03 15:00:14 -07001460 {
Jishnu CMe4588152023-05-11 00:04:40 -05001461 nextUsev6Domain = *v6dhcpParms.useDomainName;
Ed Tanousbf648f72021-06-03 15:00:14 -07001462 }
1463
Ed Tanous62598e32023-07-17 17:06:25 -07001464 BMCWEB_LOG_DEBUG("set DHCPEnabled...");
Ed Tanousbf648f72021-06-03 15:00:14 -07001465 setDHCPEnabled(ifaceId, "DHCPEnabled", nextv4DHCPState, nextv6DHCPState,
1466 asyncResp);
Ed Tanous62598e32023-07-17 17:06:25 -07001467 BMCWEB_LOG_DEBUG("set DNSEnabled...");
Jishnu CMe4588152023-05-11 00:04:40 -05001468 setDHCPConfig("DNSEnabled", nextDNSv4, asyncResp, ifaceId,
1469 NetworkType::dhcp4);
Ed Tanous62598e32023-07-17 17:06:25 -07001470 BMCWEB_LOG_DEBUG("set NTPEnabled...");
Jishnu CMe4588152023-05-11 00:04:40 -05001471 setDHCPConfig("NTPEnabled", nextNTPv4, asyncResp, ifaceId,
1472 NetworkType::dhcp4);
Ravi Teja91c441e2024-02-23 09:03:43 -06001473 BMCWEB_LOG_DEBUG("set DomainEnabled...");
1474 setDHCPConfig("DomainEnabled", nextUsev4Domain, asyncResp, ifaceId,
Jishnu CMe4588152023-05-11 00:04:40 -05001475 NetworkType::dhcp4);
1476 BMCWEB_LOG_DEBUG("set DNSEnabled for dhcp6...");
1477 setDHCPConfig("DNSEnabled", nextDNSv6, asyncResp, ifaceId,
1478 NetworkType::dhcp6);
1479 BMCWEB_LOG_DEBUG("set NTPEnabled for dhcp6...");
1480 setDHCPConfig("NTPEnabled", nextNTPv6, asyncResp, ifaceId,
1481 NetworkType::dhcp6);
Ravi Teja91c441e2024-02-23 09:03:43 -06001482 BMCWEB_LOG_DEBUG("set DomainEnabled for dhcp6...");
1483 setDHCPConfig("DomainEnabled", nextUsev6Domain, asyncResp, ifaceId,
Jishnu CMe4588152023-05-11 00:04:40 -05001484 NetworkType::dhcp6);
Ed Tanousbf648f72021-06-03 15:00:14 -07001485}
1486
Ed Tanous77179532023-02-28 10:45:28 -08001487inline std::vector<IPv4AddressData>::const_iterator getNextStaticIpEntry(
1488 const std::vector<IPv4AddressData>::const_iterator& head,
1489 const std::vector<IPv4AddressData>::const_iterator& end)
Ed Tanousbf648f72021-06-03 15:00:14 -07001490{
1491 return std::find_if(head, end, [](const IPv4AddressData& value) {
1492 return value.origin == "Static";
1493 });
1494}
1495
Ed Tanous77179532023-02-28 10:45:28 -08001496inline std::vector<IPv6AddressData>::const_iterator getNextStaticIpEntry(
1497 const std::vector<IPv6AddressData>::const_iterator& head,
1498 const std::vector<IPv6AddressData>::const_iterator& end)
Ed Tanousbf648f72021-06-03 15:00:14 -07001499{
1500 return std::find_if(head, end, [](const IPv6AddressData& value) {
1501 return value.origin == "Static";
1502 });
1503}
1504
Ed Tanous3dfed532024-03-06 14:41:27 -08001505inline void handleIPv4StaticPatch(
1506 const std::string& ifaceId,
1507 std::vector<std::variant<nlohmann::json::object_t, std::nullptr_t>>& input,
Johnathan Mantey743eb1c2024-04-03 12:05:57 -07001508 const EthernetInterfaceData& ethData,
Ed Tanous3dfed532024-03-06 14:41:27 -08001509 const std::vector<IPv4AddressData>& ipv4Data,
1510 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
Ed Tanousbf648f72021-06-03 15:00:14 -07001511{
Ed Tanousbf648f72021-06-03 15:00:14 -07001512 unsigned entryIdx = 1;
1513 // Find the first static IP address currently active on the NIC and
1514 // match it to the first JSON element in the IPv4StaticAddresses array.
1515 // Match each subsequent JSON element to the next static IP programmed
1516 // into the NIC.
Ed Tanous77179532023-02-28 10:45:28 -08001517 std::vector<IPv4AddressData>::const_iterator nicIpEntry =
Ed Tanousbf648f72021-06-03 15:00:14 -07001518 getNextStaticIpEntry(ipv4Data.cbegin(), ipv4Data.cend());
1519
Johnathan Mantey743eb1c2024-04-03 12:05:57 -07001520 bool gatewayValueAssigned{};
Johnathan Mantey4a8f5d42024-05-24 08:00:46 -07001521 bool preserveGateway{};
Johnathan Mantey743eb1c2024-04-03 12:05:57 -07001522 std::string activePath{};
1523 std::string activeGateway{};
1524 if (!ethData.defaultGateway.empty() && ethData.defaultGateway != "0.0.0.0")
1525 {
1526 // The NIC is already configured with a default gateway. Use this if
1527 // the leading entry in the PATCH is '{}', which is preserving an active
1528 // static address.
1529 activeGateway = ethData.defaultGateway;
1530 activePath = "IPv4StaticAddresses/1";
1531 gatewayValueAssigned = true;
1532 }
1533
Ed Tanous3dfed532024-03-06 14:41:27 -08001534 for (std::variant<nlohmann::json::object_t, std::nullptr_t>& thisJson :
1535 input)
Ed Tanousbf648f72021-06-03 15:00:14 -07001536 {
Patrick Williams89492a12023-05-10 07:51:34 -05001537 std::string pathString = "IPv4StaticAddresses/" +
1538 std::to_string(entryIdx);
Ed Tanous3dfed532024-03-06 14:41:27 -08001539 nlohmann::json::object_t* obj =
1540 std::get_if<nlohmann::json::object_t>(&thisJson);
Johnathan Mantey743eb1c2024-04-03 12:05:57 -07001541 if (obj == nullptr)
1542 {
1543 if (nicIpEntry != ipv4Data.cend())
1544 {
1545 deleteIPAddress(ifaceId, nicIpEntry->id, asyncResp);
1546 nicIpEntry = getNextStaticIpEntry(++nicIpEntry,
1547 ipv4Data.cend());
Johnathan Mantey4a8f5d42024-05-24 08:00:46 -07001548 if (!preserveGateway && (nicIpEntry == ipv4Data.cend()))
Johnathan Mantey743eb1c2024-04-03 12:05:57 -07001549 {
1550 // All entries have been processed, and this last has
1551 // requested the IP address be deleted. No prior entry
1552 // performed an action that created or modified a
1553 // gateway. Deleting this IP address means the default
1554 // gateway entry has to be removed as well.
1555 updateIPv4DefaultGateway(ifaceId, "", asyncResp);
1556 }
1557 entryIdx++;
1558 continue;
1559 }
1560 // Received a DELETE action on an entry not assigned to the NIC
1561 messages::resourceCannotBeDeleted(asyncResp->res);
1562 return;
1563 }
1564
1565 // An Add/Modify action is requested
1566 if (!obj->empty())
Ed Tanousbf648f72021-06-03 15:00:14 -07001567 {
1568 std::optional<std::string> address;
1569 std::optional<std::string> subnetMask;
1570 std::optional<std::string> gateway;
1571
Ed Tanous3dfed532024-03-06 14:41:27 -08001572 if (!json_util::readJsonObject(*obj, asyncResp->res, "Address",
1573 address, "SubnetMask", subnetMask,
1574 "Gateway", gateway))
Ed Tanousbf648f72021-06-03 15:00:14 -07001575 {
Ed Tanous3dfed532024-03-06 14:41:27 -08001576 messages::propertyValueFormatError(asyncResp->res, *obj,
Ed Tanousf818b042022-06-27 13:17:35 -07001577 pathString);
Ed Tanousbf648f72021-06-03 15:00:14 -07001578 return;
1579 }
1580
1581 // Find the address/subnet/gateway values. Any values that are
1582 // not explicitly provided are assumed to be unmodified from the
1583 // current state of the interface. Merge existing state into the
1584 // current request.
Ed Tanousbf648f72021-06-03 15:00:14 -07001585 if (address)
1586 {
Ed Tanouse01d0c32023-06-30 13:21:32 -07001587 if (!ip_util::ipv4VerifyIpAndGetBitcount(*address))
Ed Tanousbf648f72021-06-03 15:00:14 -07001588 {
1589 messages::propertyValueFormatError(asyncResp->res, *address,
1590 pathString + "/Address");
Ed Tanouse01d0c32023-06-30 13:21:32 -07001591 return;
Ed Tanousbf648f72021-06-03 15:00:14 -07001592 }
1593 }
Jiaqing Zhao85ffe862021-12-31 15:41:59 +08001594 else if (nicIpEntry != ipv4Data.cend())
Ed Tanousbf648f72021-06-03 15:00:14 -07001595 {
Ed Tanouse01d0c32023-06-30 13:21:32 -07001596 address = (nicIpEntry->address);
Ed Tanousbf648f72021-06-03 15:00:14 -07001597 }
1598 else
1599 {
1600 messages::propertyMissing(asyncResp->res,
1601 pathString + "/Address");
Ed Tanouse01d0c32023-06-30 13:21:32 -07001602 return;
Ed Tanousbf648f72021-06-03 15:00:14 -07001603 }
1604
Ed Tanouse01d0c32023-06-30 13:21:32 -07001605 uint8_t prefixLength = 0;
Ed Tanousbf648f72021-06-03 15:00:14 -07001606 if (subnetMask)
1607 {
Ed Tanous033f1e42022-08-15 09:47:37 -07001608 if (!ip_util::ipv4VerifyIpAndGetBitcount(*subnetMask,
1609 &prefixLength))
Ed Tanousbf648f72021-06-03 15:00:14 -07001610 {
1611 messages::propertyValueFormatError(
1612 asyncResp->res, *subnetMask,
1613 pathString + "/SubnetMask");
Ed Tanouse01d0c32023-06-30 13:21:32 -07001614 return;
Ed Tanousbf648f72021-06-03 15:00:14 -07001615 }
1616 }
Jiaqing Zhao85ffe862021-12-31 15:41:59 +08001617 else if (nicIpEntry != ipv4Data.cend())
Ed Tanousbf648f72021-06-03 15:00:14 -07001618 {
Ed Tanous033f1e42022-08-15 09:47:37 -07001619 if (!ip_util::ipv4VerifyIpAndGetBitcount(nicIpEntry->netmask,
1620 &prefixLength))
Ed Tanousbf648f72021-06-03 15:00:14 -07001621 {
1622 messages::propertyValueFormatError(
Jiaqing Zhao85ffe862021-12-31 15:41:59 +08001623 asyncResp->res, nicIpEntry->netmask,
Ed Tanousbf648f72021-06-03 15:00:14 -07001624 pathString + "/SubnetMask");
Ed Tanouse01d0c32023-06-30 13:21:32 -07001625 return;
Ed Tanousbf648f72021-06-03 15:00:14 -07001626 }
1627 }
1628 else
1629 {
1630 messages::propertyMissing(asyncResp->res,
1631 pathString + "/SubnetMask");
Ed Tanouse01d0c32023-06-30 13:21:32 -07001632 return;
Ed Tanousbf648f72021-06-03 15:00:14 -07001633 }
1634
1635 if (gateway)
1636 {
Ed Tanouse01d0c32023-06-30 13:21:32 -07001637 if (!ip_util::ipv4VerifyIpAndGetBitcount(*gateway))
Ed Tanousbf648f72021-06-03 15:00:14 -07001638 {
1639 messages::propertyValueFormatError(asyncResp->res, *gateway,
1640 pathString + "/Gateway");
Ed Tanouse01d0c32023-06-30 13:21:32 -07001641 return;
Ed Tanousbf648f72021-06-03 15:00:14 -07001642 }
1643 }
Jiaqing Zhao85ffe862021-12-31 15:41:59 +08001644 else if (nicIpEntry != ipv4Data.cend())
Ed Tanousbf648f72021-06-03 15:00:14 -07001645 {
Ed Tanouse01d0c32023-06-30 13:21:32 -07001646 gateway = nicIpEntry->gateway;
Ed Tanousbf648f72021-06-03 15:00:14 -07001647 }
1648 else
1649 {
1650 messages::propertyMissing(asyncResp->res,
1651 pathString + "/Gateway");
Ed Tanousbf648f72021-06-03 15:00:14 -07001652 return;
1653 }
1654
Johnathan Mantey743eb1c2024-04-03 12:05:57 -07001655 if (gatewayValueAssigned)
1656 {
1657 if (activeGateway != gateway)
1658 {
1659 // A NIC can only have a single active gateway value.
1660 // If any gateway in the array of static addresses
1661 // mismatch the PATCH is in error.
1662 std::string arg1 = pathString + "/Gateway";
1663 std::string arg2 = activePath + "/Gateway";
1664 messages::propertyValueConflict(asyncResp->res, arg1, arg2);
1665 return;
1666 }
1667 }
1668 else
1669 {
1670 // Capture the very first gateway value from the incoming
1671 // JSON record and use it at the default gateway.
1672 updateIPv4DefaultGateway(ifaceId, *gateway, asyncResp);
1673 activeGateway = *gateway;
1674 activePath = pathString;
1675 gatewayValueAssigned = true;
1676 }
1677
Jiaqing Zhao85ffe862021-12-31 15:41:59 +08001678 if (nicIpEntry != ipv4Data.cend())
Ed Tanousbf648f72021-06-03 15:00:14 -07001679 {
Ravi Teja9c5e5852023-02-26 21:33:52 -06001680 deleteAndCreateIPAddress(IpVersion::IpV4, ifaceId,
Ed Tanous77eb0152023-09-06 10:19:18 -07001681 nicIpEntry->id, prefixLength, *address,
1682 *gateway, asyncResp);
Patrick Williams89492a12023-05-10 07:51:34 -05001683 nicIpEntry = getNextStaticIpEntry(++nicIpEntry,
1684 ipv4Data.cend());
Johnathan Mantey4a8f5d42024-05-24 08:00:46 -07001685 preserveGateway = true;
Ed Tanousbf648f72021-06-03 15:00:14 -07001686 }
1687 else
1688 {
1689 createIPv4(ifaceId, prefixLength, *gateway, *address,
1690 asyncResp);
Johnathan Mantey4a8f5d42024-05-24 08:00:46 -07001691 preserveGateway = true;
Ed Tanousbf648f72021-06-03 15:00:14 -07001692 }
1693 entryIdx++;
1694 }
1695 else
1696 {
Johnathan Mantey743eb1c2024-04-03 12:05:57 -07001697 // Received {}, do not modify this address
Jiaqing Zhao85ffe862021-12-31 15:41:59 +08001698 if (nicIpEntry != ipv4Data.cend())
Ed Tanousbf648f72021-06-03 15:00:14 -07001699 {
Patrick Williams89492a12023-05-10 07:51:34 -05001700 nicIpEntry = getNextStaticIpEntry(++nicIpEntry,
1701 ipv4Data.cend());
Johnathan Mantey4a8f5d42024-05-24 08:00:46 -07001702 preserveGateway = true;
Johnathan Mantey743eb1c2024-04-03 12:05:57 -07001703 entryIdx++;
Ed Tanousbf648f72021-06-03 15:00:14 -07001704 }
Johnathan Mantey743eb1c2024-04-03 12:05:57 -07001705 else
1706 {
1707 // Requested a DO NOT MODIFY action on an entry not assigned
1708 // to the NIC
1709 messages::propertyValueFormatError(asyncResp->res, *obj,
1710 pathString);
1711 return;
1712 }
Ed Tanousbf648f72021-06-03 15:00:14 -07001713 }
1714 }
1715}
1716
Ed Tanous4f48d5f2021-06-21 08:27:45 -07001717inline void handleStaticNameServersPatch(
Ed Tanousbf648f72021-06-03 15:00:14 -07001718 const std::string& ifaceId,
1719 const std::vector<std::string>& updatedStaticNameServers,
1720 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
1721{
Asmitha Karunanithi1847f2a2024-03-26 22:03:48 -05001722 setDbusProperty(
Ginu Georgee93abac2024-06-14 17:35:27 +05301723 asyncResp, "StaticNameServers", "xyz.openbmc_project.Network",
Asmitha Karunanithi1847f2a2024-03-26 22:03:48 -05001724 sdbusplus::message::object_path("/xyz/openbmc_project/network") /
1725 ifaceId,
George Liu9ae226f2023-06-21 17:56:46 +08001726 "xyz.openbmc_project.Network.EthernetInterface", "StaticNameServers",
Ginu Georgee93abac2024-06-14 17:35:27 +05301727 updatedStaticNameServers);
Ed Tanousbf648f72021-06-03 15:00:14 -07001728}
1729
Ed Tanous4f48d5f2021-06-21 08:27:45 -07001730inline void handleIPv6StaticAddressesPatch(
Ed Tanous3dfed532024-03-06 14:41:27 -08001731 const std::string& ifaceId,
1732 std::vector<std::variant<nlohmann::json::object_t, std::nullptr_t>>& input,
Ed Tanous77179532023-02-28 10:45:28 -08001733 const std::vector<IPv6AddressData>& ipv6Data,
Ed Tanousbf648f72021-06-03 15:00:14 -07001734 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
1735{
Ed Tanousbf648f72021-06-03 15:00:14 -07001736 size_t entryIdx = 1;
Ed Tanous77179532023-02-28 10:45:28 -08001737 std::vector<IPv6AddressData>::const_iterator nicIpEntry =
Ed Tanousbf648f72021-06-03 15:00:14 -07001738 getNextStaticIpEntry(ipv6Data.cbegin(), ipv6Data.cend());
Ed Tanous3dfed532024-03-06 14:41:27 -08001739 for (std::variant<nlohmann::json::object_t, std::nullptr_t>& thisJson :
1740 input)
Ed Tanousbf648f72021-06-03 15:00:14 -07001741 {
Patrick Williams89492a12023-05-10 07:51:34 -05001742 std::string pathString = "IPv6StaticAddresses/" +
1743 std::to_string(entryIdx);
Ed Tanous3dfed532024-03-06 14:41:27 -08001744 nlohmann::json::object_t* obj =
1745 std::get_if<nlohmann::json::object_t>(&thisJson);
1746 if (obj != nullptr && !obj->empty())
Ed Tanousbf648f72021-06-03 15:00:14 -07001747 {
1748 std::optional<std::string> address;
1749 std::optional<uint8_t> prefixLength;
Ed Tanous3dfed532024-03-06 14:41:27 -08001750 nlohmann::json::object_t thisJsonCopy = *obj;
1751 if (!json_util::readJsonObject(thisJsonCopy, asyncResp->res,
1752 "Address", address, "PrefixLength",
1753 prefixLength))
Ed Tanousbf648f72021-06-03 15:00:14 -07001754 {
Ed Tanous3dfed532024-03-06 14:41:27 -08001755 messages::propertyValueFormatError(asyncResp->res, thisJsonCopy,
Ed Tanousf818b042022-06-27 13:17:35 -07001756 pathString);
Ed Tanousbf648f72021-06-03 15:00:14 -07001757 return;
1758 }
1759
Ed Tanousbf648f72021-06-03 15:00:14 -07001760 // Find the address and prefixLength values. Any values that are
1761 // not explicitly provided are assumed to be unmodified from the
1762 // current state of the interface. Merge existing state into the
1763 // current request.
Ed Tanousd547d8d2024-03-16 18:04:41 -07001764 if (!address)
Ed Tanousbf648f72021-06-03 15:00:14 -07001765 {
Ed Tanousd547d8d2024-03-16 18:04:41 -07001766 if (nicIpEntry == ipv6Data.end())
1767 {
1768 messages::propertyMissing(asyncResp->res,
1769 pathString + "/Address");
1770 return;
1771 }
1772 address = nicIpEntry->address;
Ed Tanousbf648f72021-06-03 15:00:14 -07001773 }
1774
Ed Tanousd547d8d2024-03-16 18:04:41 -07001775 if (!prefixLength)
Ed Tanousbf648f72021-06-03 15:00:14 -07001776 {
Ed Tanousd547d8d2024-03-16 18:04:41 -07001777 if (nicIpEntry == ipv6Data.end())
1778 {
1779 messages::propertyMissing(asyncResp->res,
1780 pathString + "/PrefixLength");
1781 return;
1782 }
1783 prefixLength = nicIpEntry->prefixLength;
Ed Tanousbf648f72021-06-03 15:00:14 -07001784 }
1785
Jiaqing Zhao85ffe862021-12-31 15:41:59 +08001786 if (nicIpEntry != ipv6Data.end())
Ed Tanousbf648f72021-06-03 15:00:14 -07001787 {
Ravi Teja9c5e5852023-02-26 21:33:52 -06001788 deleteAndCreateIPAddress(IpVersion::IpV6, ifaceId,
Ed Tanousd547d8d2024-03-16 18:04:41 -07001789 nicIpEntry->id, *prefixLength,
1790 *address, "", asyncResp);
Patrick Williams89492a12023-05-10 07:51:34 -05001791 nicIpEntry = getNextStaticIpEntry(++nicIpEntry,
1792 ipv6Data.cend());
Ed Tanousbf648f72021-06-03 15:00:14 -07001793 }
1794 else
1795 {
Ed Tanousd547d8d2024-03-16 18:04:41 -07001796 createIPv6(ifaceId, *prefixLength, *address, asyncResp);
Ed Tanousbf648f72021-06-03 15:00:14 -07001797 }
1798 entryIdx++;
1799 }
1800 else
1801 {
Jiaqing Zhao85ffe862021-12-31 15:41:59 +08001802 if (nicIpEntry == ipv6Data.end())
Ed Tanousbf648f72021-06-03 15:00:14 -07001803 {
1804 // Requesting a DELETE/DO NOT MODIFY action for an item
1805 // that isn't present on the eth(n) interface. Input JSON is
1806 // in error, so bail out.
Ed Tanous3dfed532024-03-06 14:41:27 -08001807 if (obj == nullptr)
Ed Tanousbf648f72021-06-03 15:00:14 -07001808 {
1809 messages::resourceCannotBeDeleted(asyncResp->res);
1810 return;
1811 }
Ed Tanous3dfed532024-03-06 14:41:27 -08001812 messages::propertyValueFormatError(asyncResp->res, *obj,
Ed Tanousf818b042022-06-27 13:17:35 -07001813 pathString);
Ed Tanousbf648f72021-06-03 15:00:14 -07001814 return;
1815 }
1816
Ed Tanous3dfed532024-03-06 14:41:27 -08001817 if (obj == nullptr)
Ed Tanousbf648f72021-06-03 15:00:14 -07001818 {
Ravi Teja9c5e5852023-02-26 21:33:52 -06001819 deleteIPAddress(ifaceId, nicIpEntry->id, asyncResp);
Ed Tanousbf648f72021-06-03 15:00:14 -07001820 }
Jiaqing Zhao85ffe862021-12-31 15:41:59 +08001821 if (nicIpEntry != ipv6Data.cend())
Ed Tanousbf648f72021-06-03 15:00:14 -07001822 {
Patrick Williams89492a12023-05-10 07:51:34 -05001823 nicIpEntry = getNextStaticIpEntry(++nicIpEntry,
1824 ipv6Data.cend());
Ed Tanousbf648f72021-06-03 15:00:14 -07001825 }
1826 entryIdx++;
1827 }
1828 }
1829}
1830
Jiaqing Zhao7857cb82023-03-03 11:23:08 +08001831inline std::string extractParentInterfaceName(const std::string& ifaceId)
1832{
1833 std::size_t pos = ifaceId.find('_');
1834 return ifaceId.substr(0, pos);
1835}
1836
Ed Tanous77179532023-02-28 10:45:28 -08001837inline void
1838 parseInterfaceData(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
1839 const std::string& ifaceId,
1840 const EthernetInterfaceData& ethData,
1841 const std::vector<IPv4AddressData>& ipv4Data,
Sunitha Harishce73d5c2023-04-07 06:46:49 -05001842 const std::vector<IPv6AddressData>& ipv6Data,
1843 const std::vector<StaticGatewayData>& ipv6GatewayData)
Ed Tanousbf648f72021-06-03 15:00:14 -07001844{
Ed Tanousbf648f72021-06-03 15:00:14 -07001845 nlohmann::json& jsonResponse = asyncResp->res.jsonValue;
1846 jsonResponse["Id"] = ifaceId;
Ed Tanous253f11b2024-05-16 09:38:31 -07001847 jsonResponse["@odata.id"] =
1848 boost::urls::format("/redfish/v1/Managers/{}/EthernetInterfaces/{}",
1849 BMCWEB_REDFISH_MANAGER_URI_NAME, ifaceId);
Ed Tanousbf648f72021-06-03 15:00:14 -07001850 jsonResponse["InterfaceEnabled"] = ethData.nicEnabled;
1851
Ed Tanousbf648f72021-06-03 15:00:14 -07001852 if (ethData.nicEnabled)
1853 {
Ed Tanous539d8c62024-06-19 14:38:27 -07001854 jsonResponse["LinkStatus"] =
1855 ethData.linkUp ? ethernet_interface::LinkStatus::LinkUp
1856 : ethernet_interface::LinkStatus::LinkDown;
1857 jsonResponse["Status"]["State"] = resource::State::Enabled;
Ed Tanousbf648f72021-06-03 15:00:14 -07001858 }
1859 else
1860 {
Ed Tanous539d8c62024-06-19 14:38:27 -07001861 jsonResponse["LinkStatus"] = ethernet_interface::LinkStatus::NoLink;
1862 jsonResponse["Status"]["State"] = resource::State::Disabled;
Ed Tanousbf648f72021-06-03 15:00:14 -07001863 }
1864
Ed Tanousbf648f72021-06-03 15:00:14 -07001865 jsonResponse["SpeedMbps"] = ethData.speed;
Tejas Patil35fb5312021-09-20 15:35:20 +05301866 jsonResponse["MTUSize"] = ethData.mtuSize;
Jiaqing Zhao82695a52022-04-14 15:15:59 +08001867 jsonResponse["MACAddress"] = ethData.macAddress;
Ed Tanousbf648f72021-06-03 15:00:14 -07001868 jsonResponse["DHCPv4"]["DHCPEnabled"] =
Jiaqing Zhao82695a52022-04-14 15:15:59 +08001869 translateDhcpEnabledToBool(ethData.dhcpEnabled, true);
Jishnu CMe4588152023-05-11 00:04:40 -05001870 jsonResponse["DHCPv4"]["UseNTPServers"] = ethData.ntpv4Enabled;
1871 jsonResponse["DHCPv4"]["UseDNSServers"] = ethData.dnsv4Enabled;
Ravi Tejade9ad762024-06-03 02:00:15 -05001872 jsonResponse["DHCPv4"]["UseDomainName"] = ethData.domainv4Enabled;
Ed Tanousbf648f72021-06-03 15:00:14 -07001873 jsonResponse["DHCPv6"]["OperatingMode"] =
Ravi Tejab10d8db2022-05-24 09:04:12 -05001874 translateDhcpEnabledToBool(ethData.dhcpEnabled, false) ? "Enabled"
Ed Tanousbf648f72021-06-03 15:00:14 -07001875 : "Disabled";
Jishnu CMe4588152023-05-11 00:04:40 -05001876 jsonResponse["DHCPv6"]["UseNTPServers"] = ethData.ntpv6Enabled;
1877 jsonResponse["DHCPv6"]["UseDNSServers"] = ethData.dnsv6Enabled;
Ravi Tejade9ad762024-06-03 02:00:15 -05001878 jsonResponse["DHCPv6"]["UseDomainName"] = ethData.domainv6Enabled;
Ravi Tejab10d8db2022-05-24 09:04:12 -05001879 jsonResponse["StatelessAddressAutoConfig"]["IPv6AutoConfigEnabled"] =
1880 ethData.ipv6AcceptRa;
Ed Tanousbf648f72021-06-03 15:00:14 -07001881
Jiaqing Zhao82695a52022-04-14 15:15:59 +08001882 if (!ethData.hostName.empty())
Ed Tanousbf648f72021-06-03 15:00:14 -07001883 {
Jiaqing Zhao82695a52022-04-14 15:15:59 +08001884 jsonResponse["HostName"] = ethData.hostName;
Ed Tanousbf648f72021-06-03 15:00:14 -07001885
1886 // When domain name is empty then it means, that it is a network
1887 // without domain names, and the host name itself must be treated as
1888 // FQDN
Jiaqing Zhao82695a52022-04-14 15:15:59 +08001889 std::string fqdn = ethData.hostName;
Ed Tanousbf648f72021-06-03 15:00:14 -07001890 if (!ethData.domainnames.empty())
1891 {
1892 fqdn += "." + ethData.domainnames[0];
1893 }
1894 jsonResponse["FQDN"] = fqdn;
1895 }
1896
Jiaqing Zhao7857cb82023-03-03 11:23:08 +08001897 if (ethData.vlanId)
1898 {
Ed Tanous539d8c62024-06-19 14:38:27 -07001899 jsonResponse["EthernetInterfaceType"] =
1900 ethernet_interface::EthernetDeviceType::Virtual;
Jiaqing Zhao7857cb82023-03-03 11:23:08 +08001901 jsonResponse["VLAN"]["VLANEnable"] = true;
1902 jsonResponse["VLAN"]["VLANId"] = *ethData.vlanId;
1903 jsonResponse["VLAN"]["Tagged"] = true;
1904
1905 nlohmann::json::array_t relatedInterfaces;
1906 nlohmann::json& parentInterface = relatedInterfaces.emplace_back();
1907 parentInterface["@odata.id"] =
Ed Tanous253f11b2024-05-16 09:38:31 -07001908 boost::urls::format("/redfish/v1/Managers/{}/EthernetInterfaces",
1909 BMCWEB_REDFISH_MANAGER_URI_NAME,
Jiaqing Zhao7857cb82023-03-03 11:23:08 +08001910 extractParentInterfaceName(ifaceId));
1911 jsonResponse["Links"]["RelatedInterfaces"] =
1912 std::move(relatedInterfaces);
1913 }
1914 else
1915 {
Ed Tanous539d8c62024-06-19 14:38:27 -07001916 jsonResponse["EthernetInterfaceType"] =
1917 ethernet_interface::EthernetDeviceType::Physical;
Jiaqing Zhao7857cb82023-03-03 11:23:08 +08001918 }
1919
Ed Tanousbf648f72021-06-03 15:00:14 -07001920 jsonResponse["NameServers"] = ethData.nameServers;
1921 jsonResponse["StaticNameServers"] = ethData.staticNameServers;
1922
1923 nlohmann::json& ipv4Array = jsonResponse["IPv4Addresses"];
1924 nlohmann::json& ipv4StaticArray = jsonResponse["IPv4StaticAddresses"];
1925 ipv4Array = nlohmann::json::array();
1926 ipv4StaticArray = nlohmann::json::array();
Ed Tanous9eb808c2022-01-25 10:19:23 -08001927 for (const auto& ipv4Config : ipv4Data)
Ed Tanousbf648f72021-06-03 15:00:14 -07001928 {
Ed Tanousbf648f72021-06-03 15:00:14 -07001929 std::string gatewayStr = ipv4Config.gateway;
1930 if (gatewayStr.empty())
1931 {
1932 gatewayStr = "0.0.0.0";
1933 }
Ed Tanous14766872022-03-15 10:44:42 -07001934 nlohmann::json::object_t ipv4;
1935 ipv4["AddressOrigin"] = ipv4Config.origin;
1936 ipv4["SubnetMask"] = ipv4Config.netmask;
1937 ipv4["Address"] = ipv4Config.address;
1938 ipv4["Gateway"] = gatewayStr;
Ed Tanousbf648f72021-06-03 15:00:14 -07001939
Ed Tanousbf648f72021-06-03 15:00:14 -07001940 if (ipv4Config.origin == "Static")
1941 {
Ed Tanous14766872022-03-15 10:44:42 -07001942 ipv4StaticArray.push_back(ipv4);
Ed Tanousbf648f72021-06-03 15:00:14 -07001943 }
Ed Tanous14766872022-03-15 10:44:42 -07001944
Patrick Williamsb2ba3072023-05-12 10:27:39 -05001945 ipv4Array.emplace_back(std::move(ipv4));
Ed Tanousbf648f72021-06-03 15:00:14 -07001946 }
1947
Jiaqing Zhao82695a52022-04-14 15:15:59 +08001948 std::string ipv6GatewayStr = ethData.ipv6DefaultGateway;
Ed Tanousbf648f72021-06-03 15:00:14 -07001949 if (ipv6GatewayStr.empty())
1950 {
1951 ipv6GatewayStr = "0:0:0:0:0:0:0:0";
1952 }
1953
1954 jsonResponse["IPv6DefaultGateway"] = ipv6GatewayStr;
1955
Sunitha Harishce73d5c2023-04-07 06:46:49 -05001956 nlohmann::json::array_t ipv6StaticGatewayArray;
1957 for (const auto& ipv6GatewayConfig : ipv6GatewayData)
1958 {
1959 nlohmann::json::object_t ipv6Gateway;
1960 ipv6Gateway["Address"] = ipv6GatewayConfig.gateway;
1961 ipv6Gateway["PrefixLength"] = ipv6GatewayConfig.prefixLength;
1962 ipv6StaticGatewayArray.emplace_back(std::move(ipv6Gateway));
1963 }
1964 jsonResponse["IPv6StaticDefaultGateways"] =
1965 std::move(ipv6StaticGatewayArray);
1966
Ed Tanousbf648f72021-06-03 15:00:14 -07001967 nlohmann::json& ipv6Array = jsonResponse["IPv6Addresses"];
1968 nlohmann::json& ipv6StaticArray = jsonResponse["IPv6StaticAddresses"];
1969 ipv6Array = nlohmann::json::array();
1970 ipv6StaticArray = nlohmann::json::array();
1971 nlohmann::json& ipv6AddrPolicyTable =
1972 jsonResponse["IPv6AddressPolicyTable"];
1973 ipv6AddrPolicyTable = nlohmann::json::array();
Ed Tanous9eb808c2022-01-25 10:19:23 -08001974 for (const auto& ipv6Config : ipv6Data)
Ed Tanousbf648f72021-06-03 15:00:14 -07001975 {
Ed Tanous14766872022-03-15 10:44:42 -07001976 nlohmann::json::object_t ipv6;
1977 ipv6["Address"] = ipv6Config.address;
1978 ipv6["PrefixLength"] = ipv6Config.prefixLength;
1979 ipv6["AddressOrigin"] = ipv6Config.origin;
Sunitha Harishf8361272023-03-16 03:23:59 -05001980
Patrick Williamsb2ba3072023-05-12 10:27:39 -05001981 ipv6Array.emplace_back(std::move(ipv6));
Ed Tanousbf648f72021-06-03 15:00:14 -07001982 if (ipv6Config.origin == "Static")
1983 {
Ed Tanous14766872022-03-15 10:44:42 -07001984 nlohmann::json::object_t ipv6Static;
1985 ipv6Static["Address"] = ipv6Config.address;
1986 ipv6Static["PrefixLength"] = ipv6Config.prefixLength;
Patrick Williamsb2ba3072023-05-12 10:27:39 -05001987 ipv6StaticArray.emplace_back(std::move(ipv6Static));
Ed Tanousbf648f72021-06-03 15:00:14 -07001988 }
1989 }
1990}
1991
Jiaqing Zhaoe7caf252023-03-09 11:14:44 +08001992inline void afterDelete(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
1993 const std::string& ifaceId,
1994 const boost::system::error_code& ec,
1995 const sdbusplus::message_t& m)
1996{
1997 if (!ec)
1998 {
1999 return;
2000 }
2001 const sd_bus_error* dbusError = m.get_error();
2002 if (dbusError == nullptr)
2003 {
2004 messages::internalError(asyncResp->res);
2005 return;
2006 }
Ed Tanous62598e32023-07-17 17:06:25 -07002007 BMCWEB_LOG_DEBUG("DBus error: {}", dbusError->name);
Jiaqing Zhaoe7caf252023-03-09 11:14:44 +08002008
2009 if (std::string_view("org.freedesktop.DBus.Error.UnknownObject") ==
2010 dbusError->name)
2011 {
2012 messages::resourceNotFound(asyncResp->res, "EthernetInterface",
2013 ifaceId);
2014 return;
2015 }
2016 if (std::string_view("org.freedesktop.DBus.Error.UnknownMethod") ==
2017 dbusError->name)
2018 {
2019 messages::resourceCannotBeDeleted(asyncResp->res);
2020 return;
2021 }
2022 messages::internalError(asyncResp->res);
2023}
2024
Jiaqing Zhaob5ca3fd2023-03-08 15:14:58 +08002025inline void afterVlanCreate(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
2026 const std::string& parentInterfaceUri,
2027 const std::string& vlanInterface,
2028 const boost::system::error_code& ec,
2029 const sdbusplus::message_t& m
2030
2031)
2032{
2033 if (ec)
2034 {
2035 const sd_bus_error* dbusError = m.get_error();
2036 if (dbusError == nullptr)
2037 {
2038 messages::internalError(asyncResp->res);
2039 return;
2040 }
Ed Tanous62598e32023-07-17 17:06:25 -07002041 BMCWEB_LOG_DEBUG("DBus error: {}", dbusError->name);
Jiaqing Zhaob5ca3fd2023-03-08 15:14:58 +08002042
2043 if (std::string_view(
2044 "xyz.openbmc_project.Common.Error.ResourceNotFound") ==
2045 dbusError->name)
2046 {
2047 messages::propertyValueNotInList(
2048 asyncResp->res, parentInterfaceUri,
2049 "Links/RelatedInterfaces/0/@odata.id");
2050 return;
2051 }
2052 if (std::string_view(
2053 "xyz.openbmc_project.Common.Error.InvalidArgument") ==
2054 dbusError->name)
2055 {
2056 messages::resourceAlreadyExists(asyncResp->res, "EthernetInterface",
2057 "Id", vlanInterface);
2058 return;
2059 }
2060 messages::internalError(asyncResp->res);
2061 return;
2062 }
2063
Ed Tanous253f11b2024-05-16 09:38:31 -07002064 const boost::urls::url vlanInterfaceUri =
2065 boost::urls::format("/redfish/v1/Managers/{}/EthernetInterfaces/{}",
2066 BMCWEB_REDFISH_MANAGER_URI_NAME, vlanInterface);
Jiaqing Zhaob5ca3fd2023-03-08 15:14:58 +08002067 asyncResp->res.addHeader("Location", vlanInterfaceUri.buffer());
2068}
2069
Ed Tanousbf648f72021-06-03 15:00:14 -07002070inline void requestEthernetInterfacesRoutes(App& app)
2071{
Ed Tanous253f11b2024-05-16 09:38:31 -07002072 BMCWEB_ROUTE(app, "/redfish/v1/Managers/<str>/EthernetInterfaces/")
Ed Tanoused398212021-06-09 17:05:54 -07002073 .privileges(redfish::privileges::getEthernetInterfaceCollection)
Ed Tanous14766872022-03-15 10:44:42 -07002074 .methods(boost::beast::http::verb::get)(
2075 [&app](const crow::Request& req,
Ed Tanous253f11b2024-05-16 09:38:31 -07002076 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
2077 const std::string& managerId) {
Carson Labrado3ba00072022-06-06 19:40:56 +00002078 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -07002079 {
2080 return;
2081 }
2082
Ed Tanous253f11b2024-05-16 09:38:31 -07002083 if (managerId != BMCWEB_REDFISH_MANAGER_URI_NAME)
2084 {
2085 messages::resourceNotFound(asyncResp->res, "Manager", managerId);
2086 return;
2087 }
2088
Ed Tanous002d39b2022-05-31 08:59:27 -07002089 asyncResp->res.jsonValue["@odata.type"] =
2090 "#EthernetInterfaceCollection.EthernetInterfaceCollection";
2091 asyncResp->res.jsonValue["@odata.id"] =
Ed Tanous253f11b2024-05-16 09:38:31 -07002092 boost::urls::format("/redfish/v1/Managers/{}/EthernetInterfaces",
2093 BMCWEB_REDFISH_MANAGER_URI_NAME);
Ed Tanous002d39b2022-05-31 08:59:27 -07002094 asyncResp->res.jsonValue["Name"] =
2095 "Ethernet Network Interface Collection";
2096 asyncResp->res.jsonValue["Description"] =
2097 "Collection of EthernetInterfaces for this Manager";
2098
2099 // Get eth interface list, and call the below callback for JSON
2100 // preparation
2101 getEthernetIfaceList(
Ed Tanous77179532023-02-28 10:45:28 -08002102 [asyncResp](const bool& success,
2103 const std::vector<std::string>& ifaceList) {
Ed Tanous002d39b2022-05-31 08:59:27 -07002104 if (!success)
2105 {
2106 messages::internalError(asyncResp->res);
2107 return;
2108 }
2109
2110 nlohmann::json& ifaceArray = asyncResp->res.jsonValue["Members"];
2111 ifaceArray = nlohmann::json::array();
Ed Tanous002d39b2022-05-31 08:59:27 -07002112 for (const std::string& ifaceItem : ifaceList)
2113 {
Jiaqing Zhao7857cb82023-03-03 11:23:08 +08002114 nlohmann::json::object_t iface;
2115 iface["@odata.id"] = boost::urls::format(
Ed Tanous253f11b2024-05-16 09:38:31 -07002116 "/redfish/v1/Managers/{}/EthernetInterfaces/{}",
2117 BMCWEB_REDFISH_MANAGER_URI_NAME, ifaceItem);
Jiaqing Zhao7857cb82023-03-03 11:23:08 +08002118 ifaceArray.push_back(std::move(iface));
Ed Tanous002d39b2022-05-31 08:59:27 -07002119 }
Jason M. Billsf12894f2018-10-09 12:45:45 -07002120
Ed Tanous002d39b2022-05-31 08:59:27 -07002121 asyncResp->res.jsonValue["Members@odata.count"] = ifaceArray.size();
Ed Tanous253f11b2024-05-16 09:38:31 -07002122 asyncResp->res.jsonValue["@odata.id"] = boost::urls::format(
2123 "/redfish/v1/Managers/{}/EthernetInterfaces",
2124 BMCWEB_REDFISH_MANAGER_URI_NAME);
Ed Tanous002d39b2022-05-31 08:59:27 -07002125 });
Patrick Williams5a39f772023-10-20 11:20:21 -05002126 });
Johnathan Mantey01784822019-06-18 12:44:21 -07002127
Ed Tanous253f11b2024-05-16 09:38:31 -07002128 BMCWEB_ROUTE(app, "/redfish/v1/Managers/<str>/EthernetInterfaces/")
Jiaqing Zhaob5ca3fd2023-03-08 15:14:58 +08002129 .privileges(redfish::privileges::postEthernetInterfaceCollection)
2130 .methods(boost::beast::http::verb::post)(
2131 [&app](const crow::Request& req,
Ed Tanous253f11b2024-05-16 09:38:31 -07002132 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
2133 const std::string& managerId) {
Jiaqing Zhaob5ca3fd2023-03-08 15:14:58 +08002134 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
2135 {
2136 return;
2137 }
2138
Ed Tanous253f11b2024-05-16 09:38:31 -07002139 if (managerId != BMCWEB_REDFISH_MANAGER_URI_NAME)
2140 {
2141 messages::resourceNotFound(asyncResp->res, "Manager", managerId);
2142 return;
2143 }
2144
Jiaqing Zhaob5ca3fd2023-03-08 15:14:58 +08002145 bool vlanEnable = false;
2146 uint32_t vlanId = 0;
Ed Tanous3dfed532024-03-06 14:41:27 -08002147 std::vector<nlohmann::json::object_t> relatedInterfaces;
Jiaqing Zhaob5ca3fd2023-03-08 15:14:58 +08002148
2149 if (!json_util::readJsonPatch(req, asyncResp->res, "VLAN/VLANEnable",
2150 vlanEnable, "VLAN/VLANId", vlanId,
2151 "Links/RelatedInterfaces",
2152 relatedInterfaces))
2153 {
2154 return;
2155 }
2156
2157 if (relatedInterfaces.size() != 1)
2158 {
2159 messages::arraySizeTooLong(asyncResp->res,
2160 "Links/RelatedInterfaces",
2161 relatedInterfaces.size());
2162 return;
2163 }
2164
2165 std::string parentInterfaceUri;
Ed Tanous3dfed532024-03-06 14:41:27 -08002166 if (!json_util::readJsonObject(relatedInterfaces[0], asyncResp->res,
2167 "@odata.id", parentInterfaceUri))
Jiaqing Zhaob5ca3fd2023-03-08 15:14:58 +08002168 {
2169 messages::propertyMissing(asyncResp->res,
2170 "Links/RelatedInterfaces/0/@odata.id");
2171 return;
2172 }
Ed Tanous62598e32023-07-17 17:06:25 -07002173 BMCWEB_LOG_INFO("Parent Interface URI: {}", parentInterfaceUri);
Jiaqing Zhaob5ca3fd2023-03-08 15:14:58 +08002174
Ed Tanous6fd29552023-10-04 09:40:14 -07002175 boost::system::result<boost::urls::url_view> parsedUri =
Jiaqing Zhaob5ca3fd2023-03-08 15:14:58 +08002176 boost::urls::parse_relative_ref(parentInterfaceUri);
2177 if (!parsedUri)
2178 {
2179 messages::propertyValueFormatError(
2180 asyncResp->res, parentInterfaceUri,
2181 "Links/RelatedInterfaces/0/@odata.id");
2182 return;
2183 }
2184
2185 std::string parentInterface;
2186 if (!crow::utility::readUrlSegments(
2187 *parsedUri, "redfish", "v1", "Managers", "bmc",
2188 "EthernetInterfaces", std::ref(parentInterface)))
2189 {
2190 messages::propertyValueNotInList(
2191 asyncResp->res, parentInterfaceUri,
2192 "Links/RelatedInterfaces/0/@odata.id");
2193 return;
2194 }
2195
2196 if (!vlanEnable)
2197 {
2198 // In OpenBMC implementation, VLANEnable cannot be false on
2199 // create
2200 messages::propertyValueIncorrect(asyncResp->res, "VLAN/VLANEnable",
2201 "false");
2202 return;
2203 }
2204
2205 std::string vlanInterface = parentInterface + "_" +
2206 std::to_string(vlanId);
2207 crow::connections::systemBus->async_method_call(
2208 [asyncResp, parentInterfaceUri,
2209 vlanInterface](const boost::system::error_code& ec,
2210 const sdbusplus::message_t& m) {
2211 afterVlanCreate(asyncResp, parentInterfaceUri, vlanInterface, ec,
2212 m);
Patrick Williams5a39f772023-10-20 11:20:21 -05002213 },
Jiaqing Zhaob5ca3fd2023-03-08 15:14:58 +08002214 "xyz.openbmc_project.Network", "/xyz/openbmc_project/network",
2215 "xyz.openbmc_project.Network.VLAN.Create", "VLAN", parentInterface,
2216 vlanId);
Patrick Williams5a39f772023-10-20 11:20:21 -05002217 });
Jiaqing Zhaob5ca3fd2023-03-08 15:14:58 +08002218
Ed Tanous253f11b2024-05-16 09:38:31 -07002219 BMCWEB_ROUTE(app, "/redfish/v1/Managers/<str>/EthernetInterfaces/<str>/")
Ed Tanoused398212021-06-09 17:05:54 -07002220 .privileges(redfish::privileges::getEthernetInterface)
Ed Tanousbf648f72021-06-03 15:00:14 -07002221 .methods(boost::beast::http::verb::get)(
Ed Tanous45ca1b82022-03-25 13:07:27 -07002222 [&app](const crow::Request& req,
2223 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
Ed Tanous253f11b2024-05-16 09:38:31 -07002224 const std::string& managerId, const std::string& ifaceId) {
Carson Labrado3ba00072022-06-06 19:40:56 +00002225 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -07002226 {
2227 return;
2228 }
Ed Tanous253f11b2024-05-16 09:38:31 -07002229
2230 if (managerId != BMCWEB_REDFISH_MANAGER_URI_NAME)
2231 {
2232 messages::resourceNotFound(asyncResp->res, "Manager", managerId);
2233 return;
2234 }
2235
Ed Tanous002d39b2022-05-31 08:59:27 -07002236 getEthernetIfaceData(
2237 ifaceId,
Sunitha Harishce73d5c2023-04-07 06:46:49 -05002238 [asyncResp,
2239 ifaceId](const bool& success, const EthernetInterfaceData& ethData,
2240 const std::vector<IPv4AddressData>& ipv4Data,
2241 const std::vector<IPv6AddressData>& ipv6Data,
2242 const std::vector<StaticGatewayData>& ipv6GatewayData) {
Ed Tanous002d39b2022-05-31 08:59:27 -07002243 if (!success)
2244 {
2245 // TODO(Pawel)consider distinguish between non
2246 // existing object, and other errors
2247 messages::resourceNotFound(asyncResp->res, "EthernetInterface",
2248 ifaceId);
2249 return;
2250 }
Johnathan Mantey01784822019-06-18 12:44:21 -07002251
Ed Tanous002d39b2022-05-31 08:59:27 -07002252 asyncResp->res.jsonValue["@odata.type"] =
Jiaqing Zhao93bbc952023-02-23 14:11:20 +08002253 "#EthernetInterface.v1_9_0.EthernetInterface";
Ed Tanous002d39b2022-05-31 08:59:27 -07002254 asyncResp->res.jsonValue["Name"] = "Manager Ethernet Interface";
2255 asyncResp->res.jsonValue["Description"] =
2256 "Management Network Interface";
Ratan Guptaf476acb2019-03-02 16:46:57 +05302257
Sunitha Harishce73d5c2023-04-07 06:46:49 -05002258 parseInterfaceData(asyncResp, ifaceId, ethData, ipv4Data, ipv6Data,
2259 ipv6GatewayData);
Ed Tanous002d39b2022-05-31 08:59:27 -07002260 });
Patrick Williams5a39f772023-10-20 11:20:21 -05002261 });
Johnathan Mantey01784822019-06-18 12:44:21 -07002262
Ed Tanous253f11b2024-05-16 09:38:31 -07002263 BMCWEB_ROUTE(app, "/redfish/v1/Managers/<str>/EthernetInterfaces/<str>/")
Ed Tanoused398212021-06-09 17:05:54 -07002264 .privileges(redfish::privileges::patchEthernetInterface)
Ed Tanousbf648f72021-06-03 15:00:14 -07002265 .methods(boost::beast::http::verb::patch)(
Ed Tanous45ca1b82022-03-25 13:07:27 -07002266 [&app](const crow::Request& req,
2267 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
Ed Tanous253f11b2024-05-16 09:38:31 -07002268 const std::string& managerId, const std::string& ifaceId) {
Carson Labrado3ba00072022-06-06 19:40:56 +00002269 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
Ed Tanous002d39b2022-05-31 08:59:27 -07002270 {
2271 return;
2272 }
Ed Tanous253f11b2024-05-16 09:38:31 -07002273
2274 if (managerId != BMCWEB_REDFISH_MANAGER_URI_NAME)
2275 {
2276 messages::resourceNotFound(asyncResp->res, "Manager", managerId);
2277 return;
2278 }
2279
Ed Tanous002d39b2022-05-31 08:59:27 -07002280 std::optional<std::string> hostname;
2281 std::optional<std::string> fqdn;
2282 std::optional<std::string> macAddress;
2283 std::optional<std::string> ipv6DefaultGateway;
Ed Tanous3dfed532024-03-06 14:41:27 -08002284 std::optional<
2285 std::vector<std::variant<nlohmann::json::object_t, std::nullptr_t>>>
2286 ipv4StaticAddresses;
2287 std::optional<
2288 std::vector<std::variant<nlohmann::json::object_t, std::nullptr_t>>>
2289 ipv6StaticAddresses;
2290 std::optional<
2291 std::vector<std::variant<nlohmann::json::object_t, std::nullptr_t>>>
2292 ipv6StaticDefaultGateways;
Ed Tanous002d39b2022-05-31 08:59:27 -07002293 std::optional<std::vector<std::string>> staticNameServers;
Ravi Tejab10d8db2022-05-24 09:04:12 -05002294 std::optional<bool> ipv6AutoConfigEnabled;
Ed Tanous002d39b2022-05-31 08:59:27 -07002295 std::optional<bool> interfaceEnabled;
2296 std::optional<size_t> mtuSize;
2297 DHCPParameters v4dhcpParms;
2298 DHCPParameters v6dhcpParms;
Ravi Tejab10d8db2022-05-24 09:04:12 -05002299 // clang-format off
Ed Tanous3dfed532024-03-06 14:41:27 -08002300 if (!json_util::readJsonPatch(req, asyncResp->res,
2301 "DHCPv4/DHCPEnabled", v4dhcpParms.dhcpv4Enabled,
2302 "DHCPv4/UseDNSServers", v4dhcpParms.useDnsServers,
2303 "DHCPv4/UseDomainName", v4dhcpParms.useDomainName,
2304 "DHCPv4/UseNTPServers", v4dhcpParms.useNtpServers,
2305 "DHCPv6/OperatingMode", v6dhcpParms.dhcpv6OperatingMode,
2306 "DHCPv6/UseDNSServers", v6dhcpParms.useDnsServers,
2307 "DHCPv6/UseDomainName", v6dhcpParms.useDomainName,
2308 "DHCPv6/UseNTPServers", v6dhcpParms.useNtpServers,
Ravi Tejab10d8db2022-05-24 09:04:12 -05002309 "FQDN", fqdn,
2310 "HostName", hostname,
2311 "IPv4StaticAddresses", ipv4StaticAddresses,
2312 "IPv6DefaultGateway", ipv6DefaultGateway,
2313 "IPv6StaticAddresses", ipv6StaticAddresses,
Sunitha Harishce73d5c2023-04-07 06:46:49 -05002314 "IPv6StaticDefaultGateways", ipv6StaticDefaultGateways,
Ravi Tejab10d8db2022-05-24 09:04:12 -05002315 "InterfaceEnabled", interfaceEnabled,
2316 "MACAddress", macAddress,
2317 "MTUSize", mtuSize,
2318 "StatelessAddressAutoConfig/IPv6AutoConfigEnabled", ipv6AutoConfigEnabled,
2319 "StaticNameServers", staticNameServers
2320 )
2321 )
Ed Tanous002d39b2022-05-31 08:59:27 -07002322 {
2323 return;
2324 }
Ed Tanous5a8b6412024-03-27 11:30:54 -07002325 // clang-format on
Ravi Tejae48c0fc2019-04-16 08:37:20 -05002326
Ed Tanous002d39b2022-05-31 08:59:27 -07002327 // Get single eth interface data, and call the below callback
2328 // for JSON preparation
2329 getEthernetIfaceData(
2330 ifaceId,
2331 [asyncResp, ifaceId, hostname = std::move(hostname),
2332 fqdn = std::move(fqdn), macAddress = std::move(macAddress),
2333 ipv4StaticAddresses = std::move(ipv4StaticAddresses),
2334 ipv6DefaultGateway = std::move(ipv6DefaultGateway),
2335 ipv6StaticAddresses = std::move(ipv6StaticAddresses),
Sunitha Harishce73d5c2023-04-07 06:46:49 -05002336 ipv6StaticDefaultGateway = std::move(ipv6StaticDefaultGateways),
Ed Tanous3dfed532024-03-06 14:41:27 -08002337 staticNameServers = std::move(staticNameServers), mtuSize,
Ravi Tejab10d8db2022-05-24 09:04:12 -05002338 ipv6AutoConfigEnabled, v4dhcpParms = std::move(v4dhcpParms),
Ed Tanous002d39b2022-05-31 08:59:27 -07002339 v6dhcpParms = std::move(v6dhcpParms), interfaceEnabled](
Ed Tanous3dfed532024-03-06 14:41:27 -08002340 const bool success, const EthernetInterfaceData& ethData,
Ed Tanous77179532023-02-28 10:45:28 -08002341 const std::vector<IPv4AddressData>& ipv4Data,
Sunitha Harishce73d5c2023-04-07 06:46:49 -05002342 const std::vector<IPv6AddressData>& ipv6Data,
Ed Tanous3dfed532024-03-06 14:41:27 -08002343 const std::vector<StaticGatewayData>& ipv6GatewayData) mutable {
Ed Tanous002d39b2022-05-31 08:59:27 -07002344 if (!success)
2345 {
2346 // ... otherwise return error
2347 // TODO(Pawel)consider distinguish between non
2348 // existing object, and other errors
Jiaqing Zhaod8a5d5d2022-08-05 16:21:51 +08002349 messages::resourceNotFound(asyncResp->res, "EthernetInterface",
Ed Tanous002d39b2022-05-31 08:59:27 -07002350 ifaceId);
2351 return;
2352 }
Ravi Tejae48c0fc2019-04-16 08:37:20 -05002353
Ed Tanous3dfed532024-03-06 14:41:27 -08002354 handleDHCPPatch(ifaceId, ethData, v4dhcpParms, v6dhcpParms,
2355 asyncResp);
Tejas Patil35fb5312021-09-20 15:35:20 +05302356
Ed Tanous002d39b2022-05-31 08:59:27 -07002357 if (hostname)
2358 {
2359 handleHostnamePatch(*hostname, asyncResp);
2360 }
2361
Ravi Tejab10d8db2022-05-24 09:04:12 -05002362 if (ipv6AutoConfigEnabled)
2363 {
2364 handleSLAACAutoConfigPatch(ifaceId, *ipv6AutoConfigEnabled,
2365 asyncResp);
2366 }
2367
Ed Tanous002d39b2022-05-31 08:59:27 -07002368 if (fqdn)
2369 {
2370 handleFqdnPatch(ifaceId, *fqdn, asyncResp);
2371 }
2372
2373 if (macAddress)
2374 {
2375 handleMACAddressPatch(ifaceId, *macAddress, asyncResp);
2376 }
2377
2378 if (ipv4StaticAddresses)
2379 {
Johnathan Mantey743eb1c2024-04-03 12:05:57 -07002380 handleIPv4StaticPatch(ifaceId, *ipv4StaticAddresses, ethData,
2381 ipv4Data, asyncResp);
Ed Tanous002d39b2022-05-31 08:59:27 -07002382 }
2383
2384 if (staticNameServers)
2385 {
2386 handleStaticNameServersPatch(ifaceId, *staticNameServers,
2387 asyncResp);
2388 }
2389
2390 if (ipv6DefaultGateway)
2391 {
2392 messages::propertyNotWritable(asyncResp->res,
2393 "IPv6DefaultGateway");
2394 }
2395
2396 if (ipv6StaticAddresses)
2397 {
Ed Tanousddd70dc2023-03-01 16:00:27 -08002398 handleIPv6StaticAddressesPatch(ifaceId, *ipv6StaticAddresses,
2399 ipv6Data, asyncResp);
Ed Tanous002d39b2022-05-31 08:59:27 -07002400 }
2401
Sunitha Harishce73d5c2023-04-07 06:46:49 -05002402 if (ipv6StaticDefaultGateway)
2403 {
2404 handleIPv6DefaultGateway(ifaceId, *ipv6StaticDefaultGateway,
2405 ipv6GatewayData, asyncResp);
2406 }
2407
Ed Tanous002d39b2022-05-31 08:59:27 -07002408 if (interfaceEnabled)
2409 {
Ginu Georgee93abac2024-06-14 17:35:27 +05302410 setDbusProperty(asyncResp, "InterfaceEnabled",
2411 "xyz.openbmc_project.Network",
Ed Tanousd02aad32024-02-13 14:43:34 -08002412 sdbusplus::message::object_path(
2413 "/xyz/openbmc_project/network") /
2414 ifaceId,
2415 "xyz.openbmc_project.Network.EthernetInterface",
Ginu Georgee93abac2024-06-14 17:35:27 +05302416 "NICEnabled", *interfaceEnabled);
Ed Tanous002d39b2022-05-31 08:59:27 -07002417 }
2418
2419 if (mtuSize)
2420 {
2421 handleMTUSizePatch(ifaceId, *mtuSize, asyncResp);
2422 }
Ed Tanous002d39b2022-05-31 08:59:27 -07002423 });
Ed Tanous5a8b6412024-03-27 11:30:54 -07002424 });
Jiaqing Zhaoe7caf252023-03-09 11:14:44 +08002425
Ed Tanous253f11b2024-05-16 09:38:31 -07002426 BMCWEB_ROUTE(app, "/redfish/v1/Managers/<str>/EthernetInterfaces/<str>/")
Jiaqing Zhaoe7caf252023-03-09 11:14:44 +08002427 .privileges(redfish::privileges::deleteEthernetInterface)
2428 .methods(boost::beast::http::verb::delete_)(
2429 [&app](const crow::Request& req,
2430 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp,
Ed Tanous253f11b2024-05-16 09:38:31 -07002431 const std::string& managerId, const std::string& ifaceId) {
Jiaqing Zhaoe7caf252023-03-09 11:14:44 +08002432 if (!redfish::setUpRedfishRoute(app, req, asyncResp))
2433 {
2434 return;
2435 }
2436
Ed Tanous253f11b2024-05-16 09:38:31 -07002437 if (managerId != BMCWEB_REDFISH_MANAGER_URI_NAME)
2438 {
2439 messages::resourceNotFound(asyncResp->res, "Manager", managerId);
2440 return;
2441 }
2442
Jiaqing Zhaoe7caf252023-03-09 11:14:44 +08002443 crow::connections::systemBus->async_method_call(
2444 [asyncResp, ifaceId](const boost::system::error_code& ec,
2445 const sdbusplus::message_t& m) {
2446 afterDelete(asyncResp, ifaceId, ec, m);
Ed Tanous5a8b6412024-03-27 11:30:54 -07002447 },
Jiaqing Zhaoe7caf252023-03-09 11:14:44 +08002448 "xyz.openbmc_project.Network",
2449 std::string("/xyz/openbmc_project/network/") + ifaceId,
2450 "xyz.openbmc_project.Object.Delete", "Delete");
Ed Tanous5a8b6412024-03-27 11:30:54 -07002451 });
Ed Tanousbf648f72021-06-03 15:00:14 -07002452}
2453
Ed Tanous1abe55e2018-09-05 08:30:59 -07002454} // namespace redfish