blob: 49beecd90b10bc0f7859c8cf5c44bb2a95627ad4 [file] [log] [blame]
William A. Kennington III0b111d42022-10-04 18:06:11 -07001#include "config.h"
2
3#include "inventory_mac.hpp"
4
5#include "network_manager.hpp"
6#include "types.hpp"
7
William A. Kennington III0b111d42022-10-04 18:06:11 -07008#include <nlohmann/json.hpp>
9#include <phosphor-logging/elog-errors.hpp>
Jagpal Singh Gill49f9d252023-04-17 15:15:39 -070010#include <phosphor-logging/lg2.hpp>
William A. Kennington III0b111d42022-10-04 18:06:11 -070011#include <sdbusplus/bus.hpp>
12#include <sdbusplus/bus/match.hpp>
William A. Kennington III60903ee2023-06-02 15:17:49 -070013#include <stdplus/str/maps.hpp>
Patrick Williams89d734b2023-05-10 07:50:25 -050014#include <xyz/openbmc_project/Common/error.hpp>
15
16#include <filesystem>
17#include <fstream>
18#include <memory>
William A. Kennington III0b111d42022-10-04 18:06:11 -070019#include <string>
20#include <vector>
William A. Kennington III0b111d42022-10-04 18:06:11 -070021
22namespace phosphor::network::inventory
23{
24
25using phosphor::logging::elog;
William A. Kennington III0b111d42022-10-04 18:06:11 -070026using sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
27
28using DbusObjectPath = std::string;
29using DbusInterface = std::string;
30using PropertyValue = std::string;
31using DbusService = std::string;
William A. Kennington III60903ee2023-06-02 15:17:49 -070032using ObjectTree =
33 stdplus::string_umap<stdplus::string_umap<std::vector<std::string>>>;
William A. Kennington III0b111d42022-10-04 18:06:11 -070034
35constexpr auto firstBootPath = "/var/lib/network/firstBoot_";
36constexpr auto configFile = "/usr/share/network/config.json";
37
38constexpr auto invNetworkIntf =
39 "xyz.openbmc_project.Inventory.Item.NetworkInterface";
40constexpr auto invRoot = "/xyz/openbmc_project/inventory";
41constexpr auto mapperBus = "xyz.openbmc_project.ObjectMapper";
42constexpr auto mapperObj = "/xyz/openbmc_project/object_mapper";
43constexpr auto mapperIntf = "xyz.openbmc_project.ObjectMapper";
44constexpr auto propIntf = "org.freedesktop.DBus.Properties";
45constexpr auto methodGet = "Get";
46
47Manager* manager = nullptr;
48std::unique_ptr<sdbusplus::bus::match_t> EthInterfaceMatch = nullptr;
Patrick Williamsde333e12023-02-10 15:50:04 -060049std::unique_ptr<sdbusplus::bus::match_t> MacAddressMatch = nullptr;
William A. Kennington III0b111d42022-10-04 18:06:11 -070050std::vector<std::string> first_boot_status;
Patrick Williamsde333e12023-02-10 15:50:04 -060051nlohmann::json configJson;
William A. Kennington III0b111d42022-10-04 18:06:11 -070052
53void setFirstBootMACOnInterface(const std::string& intf, const std::string& mac)
54{
55 for (const auto& interface : manager->interfaces)
56 {
57 if (interface.first == intf)
58 {
59 auto returnMAC = interface.second->macAddress(mac);
60 if (returnMAC == mac)
61 {
William A. Kennington III1d25ca42023-05-30 16:55:28 -070062 lg2::info("Setting MAC {NET_MAC} on interface {NET_INTF}",
63 "NET_MAC", mac, "NET_INTF", intf);
William A. Kennington III0b111d42022-10-04 18:06:11 -070064 std::error_code ec;
65 if (std::filesystem::is_directory("/var/lib/network", ec))
66 {
67 std::ofstream persistentFile(firstBootPath + intf);
68 }
69 break;
70 }
71 else
72 {
Jagpal Singh Gill49f9d252023-04-17 15:15:39 -070073 lg2::info("MAC is Not Set on ethernet Interface");
William A. Kennington III0b111d42022-10-04 18:06:11 -070074 }
75 }
76 }
77}
78
William A. Kennington IIIb7d6a1a2023-06-17 02:00:53 -070079stdplus::EtherAddr getfromInventory(sdbusplus::bus_t& bus,
80 const std::string& intfName)
William A. Kennington III0b111d42022-10-04 18:06:11 -070081{
Patrick Williamsde333e12023-02-10 15:50:04 -060082 std::string interfaceName = configJson[intfName];
William A. Kennington III0b111d42022-10-04 18:06:11 -070083
84 std::vector<DbusInterface> interfaces;
85 interfaces.emplace_back(invNetworkIntf);
86
87 auto depth = 0;
88
Patrick Williams89d734b2023-05-10 07:50:25 -050089 auto mapperCall = bus.new_method_call(mapperBus, mapperObj, mapperIntf,
90 "GetSubTree");
William A. Kennington III0b111d42022-10-04 18:06:11 -070091
92 mapperCall.append(invRoot, depth, interfaces);
93
94 auto mapperReply = bus.call(mapperCall);
95 if (mapperReply.is_method_error())
96 {
Jagpal Singh Gill49f9d252023-04-17 15:15:39 -070097 lg2::error("Error in mapper call");
William A. Kennington III0b111d42022-10-04 18:06:11 -070098 elog<InternalFailure>();
99 }
100
101 ObjectTree objectTree;
102 mapperReply.read(objectTree);
103
104 if (objectTree.empty())
105 {
William A. Kennington III1d25ca42023-05-30 16:55:28 -0700106 lg2::error("No Object has implemented the interface {NET_INTF}",
107 "NET_INTF", invNetworkIntf);
William A. Kennington III0b111d42022-10-04 18:06:11 -0700108 elog<InternalFailure>();
109 }
110
111 DbusObjectPath objPath;
112 DbusService service;
113
114 if (1 == objectTree.size())
115 {
116 objPath = objectTree.begin()->first;
117 service = objectTree.begin()->second.begin()->first;
118 }
119 else
120 {
121 // If there are more than 2 objects, object path must contain the
122 // interface name
Patrick Williams89d734b2023-05-10 07:50:25 -0500123 for (const auto& object : objectTree)
William A. Kennington III0b111d42022-10-04 18:06:11 -0700124 {
William A. Kennington III1d25ca42023-05-30 16:55:28 -0700125 lg2::info("Get info on interface {NET_INTF}, object {OBJ}",
126 "NET_INTF", interfaceName, "OBJ", object.first);
William A. Kennington III0b111d42022-10-04 18:06:11 -0700127
128 if (std::string::npos != object.first.find(interfaceName.c_str()))
129 {
130 objPath = object.first;
131 service = object.second.begin()->first;
132 break;
133 }
134 }
135
136 if (objPath.empty())
137 {
William A. Kennington III1d25ca42023-05-30 16:55:28 -0700138 lg2::error("Can't find the object for the interface {NET_INTF}",
139 "NET_INTF", interfaceName);
William A. Kennington III0b111d42022-10-04 18:06:11 -0700140 elog<InternalFailure>();
141 }
142 }
143
144 auto method = bus.new_method_call(service.c_str(), objPath.c_str(),
145 propIntf, methodGet);
146
147 method.append(invNetworkIntf, "MACAddress");
148
149 auto reply = bus.call(method);
150 if (reply.is_method_error())
151 {
William A. Kennington III1d25ca42023-05-30 16:55:28 -0700152 lg2::error(
153 "Failed to get MACAddress for path {DBUS_PATH} interface {DBUS_INTF}",
154 "DBUS_PATH", objPath, "DBUS_INTF", invNetworkIntf);
William A. Kennington III0b111d42022-10-04 18:06:11 -0700155 elog<InternalFailure>();
156 }
157
158 std::variant<std::string> value;
159 reply.read(value);
William A. Kennington IIIb7d6a1a2023-06-17 02:00:53 -0700160 return stdplus::fromStr<stdplus::EtherAddr>(std::get<std::string>(value));
William A. Kennington III0b111d42022-10-04 18:06:11 -0700161}
162
Patrick Williamsde333e12023-02-10 15:50:04 -0600163bool setInventoryMACOnSystem(sdbusplus::bus_t& bus, const std::string& intfname)
William A. Kennington III0b111d42022-10-04 18:06:11 -0700164{
165 try
166 {
167 auto inventoryMAC = getfromInventory(bus, intfname);
William A. Kennington IIIb7d6a1a2023-06-17 02:00:53 -0700168 if (inventoryMAC != stdplus::EtherAddr{})
William A. Kennington III0b111d42022-10-04 18:06:11 -0700169 {
William A. Kennington IIIb7d6a1a2023-06-17 02:00:53 -0700170 auto macStr = stdplus::toStr(inventoryMAC);
William A. Kennington III1d25ca42023-05-30 16:55:28 -0700171 lg2::info(
172 "Mac Address {NET_MAC} in Inventory on Interface {NET_INTF}",
173 "NET_MAC", macStr, "NET_INTF", intfname);
William A. Kennington III0b111d42022-10-04 18:06:11 -0700174 setFirstBootMACOnInterface(intfname, macStr);
175 first_boot_status.push_back(intfname);
176 bool status = true;
177 for (const auto& keys : configJson.items())
178 {
179 if (!(std::find(first_boot_status.begin(),
180 first_boot_status.end(),
181 keys.key()) != first_boot_status.end()))
182 {
William A. Kennington III1d25ca42023-05-30 16:55:28 -0700183 lg2::info("Interface {NET_INTF} MAC is NOT set from VPD",
184 "NET_INTF", keys.key());
William A. Kennington III0b111d42022-10-04 18:06:11 -0700185 status = false;
186 }
187 }
188 if (status)
189 {
Jagpal Singh Gill49f9d252023-04-17 15:15:39 -0700190 lg2::info("Removing the match for ethernet interfaces");
William A. Kennington III0b111d42022-10-04 18:06:11 -0700191 EthInterfaceMatch = nullptr;
192 }
193 }
194 else
195 {
Jagpal Singh Gill49f9d252023-04-17 15:15:39 -0700196 lg2::info("Nothing is present in Inventory");
William A. Kennington III0b111d42022-10-04 18:06:11 -0700197 return false;
198 }
199 }
200 catch (const std::exception& e)
201 {
Jagpal Singh Gill49f9d252023-04-17 15:15:39 -0700202 lg2::error("Exception occurred during getting of MAC "
203 "address from Inventory");
William A. Kennington III0b111d42022-10-04 18:06:11 -0700204 return false;
205 }
206 return true;
207}
208
209// register the macthes to be monitored from inventory manager
Patrick Williamsde333e12023-02-10 15:50:04 -0600210void registerSignals(sdbusplus::bus_t& bus)
William A. Kennington III0b111d42022-10-04 18:06:11 -0700211{
Jagpal Singh Gill49f9d252023-04-17 15:15:39 -0700212 lg2::info("Registering the Inventory Signals Matcher");
William A. Kennington III0b111d42022-10-04 18:06:11 -0700213
William A. Kennington III0b111d42022-10-04 18:06:11 -0700214 auto callback = [&](sdbusplus::message_t& m) {
215 std::map<DbusObjectPath,
216 std::map<DbusInterface, std::variant<PropertyValue>>>
217 interfacesProperties;
218
219 sdbusplus::message::object_path objPath;
220 m.read(objPath, interfacesProperties);
221
222 for (const auto& pattern : configJson.items())
223 {
224 if (objPath.str.find(pattern.value()) != std::string::npos)
225 {
226 for (auto& interface : interfacesProperties)
227 {
228 if (interface.first == invNetworkIntf)
229 {
230 for (const auto& property : interface.second)
231 {
232 if (property.first == "MACAddress")
233 {
234 setFirstBootMACOnInterface(
235 pattern.key(),
236 std::get<std::string>(property.second));
237 break;
238 }
239 }
240 break;
241 }
242 }
243 }
244 }
245 };
246
247 MacAddressMatch = std::make_unique<sdbusplus::bus::match_t>(
248 bus,
249 "interface='org.freedesktop.DBus.ObjectManager',type='signal',"
250 "member='InterfacesAdded',path='/xyz/openbmc_project/"
251 "inventory'",
252 callback);
253}
254
Patrick Williamsde333e12023-02-10 15:50:04 -0600255void watchEthernetInterface(sdbusplus::bus_t& bus)
William A. Kennington III0b111d42022-10-04 18:06:11 -0700256{
Patrick Williamsde333e12023-02-10 15:50:04 -0600257 auto handle_interface = [&](auto infname) {
258 if (configJson.find(infname) == configJson.end())
259 {
260 // ethernet interface not found in configJSON
261 // check if it is not sit0 interface, as it is
262 // expected.
263 if (infname != "sit0")
264 {
Jagpal Singh Gill49f9d252023-04-17 15:15:39 -0700265 lg2::error("Wrong Interface Name in Config Json");
Patrick Williamsde333e12023-02-10 15:50:04 -0600266 }
267 }
268 else
269 {
270 registerSignals(bus);
271 EthInterfaceMatch = nullptr;
272
273 if (setInventoryMACOnSystem(bus, infname))
274 {
275 MacAddressMatch = nullptr;
276 }
277 }
278 };
279
280 auto mycallback = [&, handle_interface](sdbusplus::message_t& m) {
William A. Kennington III0b111d42022-10-04 18:06:11 -0700281 std::map<DbusObjectPath,
282 std::map<DbusInterface, std::variant<PropertyValue>>>
283 interfacesProperties;
284
285 sdbusplus::message::object_path objPath;
286 std::pair<std::string, std::string> ethPair;
287 m.read(objPath, interfacesProperties);
Patrick Williamsde333e12023-02-10 15:50:04 -0600288
William A. Kennington III0b111d42022-10-04 18:06:11 -0700289 for (const auto& interfaces : interfacesProperties)
290 {
William A. Kennington III1d25ca42023-05-30 16:55:28 -0700291 lg2::info("Check {DBUS_INTF} for sdbus response", "DBUS_INTF",
292 interfaces.first);
William A. Kennington III0b111d42022-10-04 18:06:11 -0700293 if (interfaces.first ==
294 "xyz.openbmc_project.Network.EthernetInterface")
295 {
296 for (const auto& property : interfaces.second)
297 {
298 if (property.first == "InterfaceName")
299 {
Patrick Williamsde333e12023-02-10 15:50:04 -0600300 handle_interface(
301 std::get<std::string>(property.second));
William A. Kennington III0b111d42022-10-04 18:06:11 -0700302
William A. Kennington III0b111d42022-10-04 18:06:11 -0700303 break;
304 }
305 }
306 break;
307 }
308 }
309 };
310 // Incase if phosphor-inventory-manager started early and the VPD is already
311 // collected by the time network service has come up, better to check the
312 // VPD directly and set the MAC Address on the respective Interface.
313
314 bool registeredSignals = false;
315 for (const auto& interfaceString : configJson.items())
316 {
317 if ((FORCE_SYNC_MAC_FROM_INVENTORY ||
318 !std::filesystem::exists(firstBootPath + interfaceString.key())) &&
319 !registeredSignals)
320 {
Jagpal Singh Gill49f9d252023-04-17 15:15:39 -0700321 lg2::info("Check VPD for MAC: {REASON}", "REASON",
322 (FORCE_SYNC_MAC_FROM_INVENTORY)
323 ? "Force sync enabled"
324 : "First boot file is not present");
William A. Kennington III0b111d42022-10-04 18:06:11 -0700325 EthInterfaceMatch = std::make_unique<sdbusplus::bus::match_t>(
326 bus,
327 "interface='org.freedesktop.DBus.ObjectManager',type='signal',"
328 "member='InterfacesAdded',path='/xyz/openbmc_project/network'",
329 mycallback);
330 registeredSignals = true;
Patrick Williamsde333e12023-02-10 15:50:04 -0600331
332 for (const auto& intf : manager->interfaces)
333 {
334 if (intf.first == interfaceString.key())
335 {
336 handle_interface(intf.first);
337 }
338 }
William A. Kennington III0b111d42022-10-04 18:06:11 -0700339 }
340 }
341}
342
William A. Kennington III9ede1b72022-11-21 01:59:28 -0800343std::unique_ptr<Runtime> watch(stdplus::PinnedRef<sdbusplus::bus_t> bus,
344 stdplus::PinnedRef<Manager> m)
William A. Kennington III0b111d42022-10-04 18:06:11 -0700345{
William A. Kennington III9ede1b72022-11-21 01:59:28 -0800346 manager = &m.get();
William A. Kennington III0b111d42022-10-04 18:06:11 -0700347 std::ifstream in(configFile);
William A. Kennington III0b111d42022-10-04 18:06:11 -0700348 in >> configJson;
Patrick Williamsde333e12023-02-10 15:50:04 -0600349 watchEthernetInterface(bus);
William A. Kennington III0b111d42022-10-04 18:06:11 -0700350 return nullptr;
351}
352
353} // namespace phosphor::network::inventory