blob: ae4d1be6866a2f3374245dfbe6709daca68832b2 [file] [log] [blame]
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301#include "config.h"
2
Sunny Srivastava6c71c9d2021-04-15 04:43:54 -05003#include "common_utility.hpp"
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05304#include "defines.hpp"
Sunny Srivastava6c71c9d2021-04-15 04:43:54 -05005#include "ibm_vpd_utils.hpp"
SunnySrivastava1984e12b1812020-05-26 02:23:11 -05006#include "ipz_parser.hpp"
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05307#include "keyword_vpd_parser.hpp"
Alpana Kumaria00936f2020-04-14 07:15:46 -05008#include "memory_vpd_parser.hpp"
SunnySrivastava1984e12b1812020-05-26 02:23:11 -05009#include "parser_factory.hpp"
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -050010#include "vpd_exceptions.hpp"
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +053011
SunnySrivastava19849094d4f2020-08-05 09:32:29 -050012#include <assert.h>
Alpana Kumari8ea3f6d2020-04-02 00:26:07 -050013#include <ctype.h>
14
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +053015#include <CLI/CLI.hpp>
Santosh Puranik88edeb62020-03-02 12:00:09 +053016#include <algorithm>
alpana077ce68722021-07-25 13:23:59 -050017#include <boost/algorithm/string.hpp>
Alpana Kumari65b83602020-09-01 00:24:56 -050018#include <cstdarg>
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +053019#include <exception>
PriyangaRamasamy83a1d5d2020-04-30 19:15:43 +053020#include <filesystem>
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +053021#include <fstream>
Alpana Kumari2f793042020-08-18 05:51:03 -050022#include <gpiod.hpp>
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +053023#include <iostream>
24#include <iterator>
25#include <nlohmann/json.hpp>
Andrew Geissler280197e2020-12-08 20:51:49 -060026#include <phosphor-logging/log.hpp>
alpana077ce68722021-07-25 13:23:59 -050027#include <regex>
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +053028
29using namespace std;
30using namespace openpower::vpd;
31using namespace CLI;
32using namespace vpd::keyword::parser;
PriyangaRamasamy83a1d5d2020-04-30 19:15:43 +053033using namespace openpower::vpd::constants;
34namespace fs = filesystem;
35using json = nlohmann::json;
SunnySrivastava1984e12b1812020-05-26 02:23:11 -050036using namespace openpower::vpd::parser::factory;
SunnySrivastava1984945a02d2020-05-06 01:55:41 -050037using namespace openpower::vpd::inventory;
Alpana Kumaria00936f2020-04-14 07:15:46 -050038using namespace openpower::vpd::memory::parser;
SunnySrivastava1984e12b1812020-05-26 02:23:11 -050039using namespace openpower::vpd::parser::interface;
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -050040using namespace openpower::vpd::exceptions;
Andrew Geissler280197e2020-12-08 20:51:49 -060041using namespace phosphor::logging;
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +053042
Sunny Srivastava3c244142022-01-11 08:47:04 -060043// Map to hold record, kwd pair which can be re-stored at standby.
44// The list of keywords for VSYS record is as per the S0 system. Should
45// be updated for another type of systems
46static const std::unordered_map<std::string, std::vector<std::string>>
Sunny Srivastava01e6c632022-02-28 03:38:46 -060047 svpdKwdMap{{"VSYS", {"BR", "TM", "SE", "SU", "RB", "WN"}},
Sunny Srivastava3c244142022-01-11 08:47:04 -060048 {"VCEN", {"FC", "SE"}},
49 {"LXR0", {"LX"}}};
50
Santosh Puranik88edeb62020-03-02 12:00:09 +053051/**
Santosh Puranik85893752020-11-10 21:31:43 +053052 * @brief Returns the power state for chassis0
53 */
54static auto getPowerState()
55{
56 // TODO: How do we handle multiple chassis?
57 string powerState{};
58 auto bus = sdbusplus::bus::new_default();
59 auto properties =
60 bus.new_method_call("xyz.openbmc_project.State.Chassis",
61 "/xyz/openbmc_project/state/chassis0",
62 "org.freedesktop.DBus.Properties", "Get");
63 properties.append("xyz.openbmc_project.State.Chassis");
64 properties.append("CurrentPowerState");
65 auto result = bus.call(properties);
66 if (!result.is_method_error())
67 {
68 variant<string> val;
69 result.read(val);
70 if (auto pVal = get_if<string>(&val))
71 {
72 powerState = *pVal;
73 }
74 }
75 cout << "Power state is: " << powerState << endl;
76 return powerState;
77}
78
79/**
Santosh Puranik88edeb62020-03-02 12:00:09 +053080 * @brief Expands location codes
81 */
82static auto expandLocationCode(const string& unexpanded, const Parsed& vpdMap,
83 bool isSystemVpd)
84{
85 auto expanded{unexpanded};
86 static constexpr auto SYSTEM_OBJECT = "/system/chassis/motherboard";
87 static constexpr auto VCEN_IF = "com.ibm.ipzvpd.VCEN";
88 static constexpr auto VSYS_IF = "com.ibm.ipzvpd.VSYS";
89 size_t idx = expanded.find("fcs");
90 try
91 {
92 if (idx != string::npos)
93 {
94 string fc{};
95 string se{};
96 if (isSystemVpd)
97 {
98 const auto& fcData = vpdMap.at("VCEN").at("FC");
99 const auto& seData = vpdMap.at("VCEN").at("SE");
100 fc = string(fcData.data(), fcData.size());
101 se = string(seData.data(), seData.size());
102 }
103 else
104 {
105 fc = readBusProperty(SYSTEM_OBJECT, VCEN_IF, "FC");
106 se = readBusProperty(SYSTEM_OBJECT, VCEN_IF, "SE");
107 }
108
Alpana Kumari81671f62021-02-10 02:21:59 -0600109 // TODO: See if ND0 can be placed in the JSON
110 expanded.replace(idx, 3, fc.substr(0, 4) + ".ND0." + se);
Santosh Puranik88edeb62020-03-02 12:00:09 +0530111 }
112 else
113 {
114 idx = expanded.find("mts");
115 if (idx != string::npos)
116 {
117 string mt{};
118 string se{};
119 if (isSystemVpd)
120 {
121 const auto& mtData = vpdMap.at("VSYS").at("TM");
122 const auto& seData = vpdMap.at("VSYS").at("SE");
123 mt = string(mtData.data(), mtData.size());
124 se = string(seData.data(), seData.size());
125 }
126 else
127 {
128 mt = readBusProperty(SYSTEM_OBJECT, VSYS_IF, "TM");
129 se = readBusProperty(SYSTEM_OBJECT, VSYS_IF, "SE");
130 }
131
132 replace(mt.begin(), mt.end(), '-', '.');
133 expanded.replace(idx, 3, mt + "." + se);
134 }
135 }
136 }
Patrick Williams8e15b932021-10-06 13:04:22 -0500137 catch (const exception& e)
Santosh Puranik88edeb62020-03-02 12:00:09 +0530138 {
Alpana Kumari58e22142020-05-05 00:22:12 -0500139 cerr << "Failed to expand location code with exception: " << e.what()
140 << "\n";
Santosh Puranik88edeb62020-03-02 12:00:09 +0530141 }
142 return expanded;
143}
Alpana Kumari2f793042020-08-18 05:51:03 -0500144
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530145/**
146 * @brief Populate FRU specific interfaces.
147 *
148 * This is a common method which handles both
149 * ipz and keyword specific interfaces thus,
150 * reducing the code redundancy.
151 * @param[in] map - Reference to the innermost keyword-value map.
152 * @param[in] preIntrStr - Reference to the interface string.
153 * @param[out] interfaces - Reference to interface map.
154 */
155template <typename T>
156static void populateFruSpecificInterfaces(const T& map,
157 const string& preIntrStr,
158 inventory::InterfaceMap& interfaces)
159{
160 inventory::PropertyMap prop;
161
162 for (const auto& kwVal : map)
163 {
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530164 auto kw = kwVal.first;
165
166 if (kw[0] == '#')
167 {
Alpana Kumari58e22142020-05-05 00:22:12 -0500168 kw = string("PD_") + kw[1];
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530169 }
Alpana Kumari8ea3f6d2020-04-02 00:26:07 -0500170 else if (isdigit(kw[0]))
171 {
Alpana Kumari58e22142020-05-05 00:22:12 -0500172 kw = string("N_") + kw;
Alpana Kumari8ea3f6d2020-04-02 00:26:07 -0500173 }
Alpana Kumari3ab26a72021-04-05 19:09:19 +0000174 if constexpr (is_same<T, KeywordVpdMap>::value)
175 {
176 if (get_if<Binary>(&kwVal.second))
177 {
178 Binary vec(get_if<Binary>(&kwVal.second)->begin(),
179 get_if<Binary>(&kwVal.second)->end());
Alpana Kumari3ab26a72021-04-05 19:09:19 +0000180 prop.emplace(move(kw), move(vec));
181 }
182 else
183 {
184 if (kw == "MemorySizeInKB")
185 {
186 inventory::PropertyMap memProp;
187 auto memVal = get_if<size_t>(&kwVal.second);
188 if (memVal)
189 {
190 memProp.emplace(move(kw),
191 ((*memVal) * CONVERT_MB_TO_KB));
192 interfaces.emplace(
193 "xyz.openbmc_project.Inventory.Item.Dimm",
194 move(memProp));
195 }
196 else
197 {
198 cerr << "MemorySizeInKB value not found in vpd map\n";
199 }
200 }
201 }
202 }
203 else
204 {
205 Binary vec(kwVal.second.begin(), kwVal.second.end());
206 prop.emplace(move(kw), move(vec));
207 }
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530208 }
209
210 interfaces.emplace(preIntrStr, move(prop));
211}
212
213/**
214 * @brief Populate Interfaces.
215 *
216 * This method populates common and extra interfaces to dbus.
217 * @param[in] js - json object
218 * @param[out] interfaces - Reference to interface map
219 * @param[in] vpdMap - Reference to the parsed vpd map.
Santosh Puranik88edeb62020-03-02 12:00:09 +0530220 * @param[in] isSystemVpd - Denotes whether we are collecting the system VPD.
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530221 */
222template <typename T>
223static void populateInterfaces(const nlohmann::json& js,
224 inventory::InterfaceMap& interfaces,
Santosh Puranik88edeb62020-03-02 12:00:09 +0530225 const T& vpdMap, bool isSystemVpd)
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530226{
227 for (const auto& ifs : js.items())
228 {
Santosh Puranik88edeb62020-03-02 12:00:09 +0530229 string inf = ifs.key();
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530230 inventory::PropertyMap props;
231
232 for (const auto& itr : ifs.value().items())
233 {
Santosh Puranik88edeb62020-03-02 12:00:09 +0530234 const string& busProp = itr.key();
235
Alpana Kumari31970de2020-02-17 06:49:57 -0600236 if (itr.value().is_boolean())
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530237 {
Santosh Puranik88edeb62020-03-02 12:00:09 +0530238 props.emplace(busProp, itr.value().get<bool>());
239 }
240 else if (itr.value().is_string())
241 {
Priyanga Ramasamy0d61c582022-01-21 04:38:22 -0600242 if (busProp == "LocationCode" && inf == IBM_LOCATION_CODE_INF)
Santosh Puranik88edeb62020-03-02 12:00:09 +0530243 {
Priyanga Ramasamy0d61c582022-01-21 04:38:22 -0600244 std::string prop;
245 if constexpr (is_same<T, Parsed>::value)
Santosh Puranik88edeb62020-03-02 12:00:09 +0530246 {
Alpana Kumari414d5ae2021-03-04 21:06:35 +0000247 // TODO deprecate the com.ibm interface later
Priyanga Ramasamy0d61c582022-01-21 04:38:22 -0600248 prop = expandLocationCode(itr.value().get<string>(),
249 vpdMap, isSystemVpd);
Santosh Puranik88edeb62020-03-02 12:00:09 +0530250 }
Priyanga Ramasamy0d61c582022-01-21 04:38:22 -0600251 else if constexpr (is_same<T, KeywordVpdMap>::value)
Santosh Puranik88edeb62020-03-02 12:00:09 +0530252 {
Priyanga Ramasamy0d61c582022-01-21 04:38:22 -0600253 // Send empty Parsed object to expandLocationCode api.
254 prop = expandLocationCode(itr.value().get<string>(),
255 Parsed{}, false);
Santosh Puranik88edeb62020-03-02 12:00:09 +0530256 }
Priyanga Ramasamy0d61c582022-01-21 04:38:22 -0600257 props.emplace(busProp, prop);
258 interfaces.emplace(XYZ_LOCATION_CODE_INF, props);
259 interfaces.emplace(IBM_LOCATION_CODE_INF, props);
Santosh Puranik88edeb62020-03-02 12:00:09 +0530260 }
261 else
262 {
263 props.emplace(busProp, itr.value().get<string>());
264 }
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530265 }
Santosh Puraniked609af2021-06-21 11:30:07 +0530266 else if (itr.value().is_array())
267 {
268 try
269 {
270 props.emplace(busProp, itr.value().get<Binary>());
271 }
Patrick Williams8e15b932021-10-06 13:04:22 -0500272 catch (const nlohmann::detail::type_error& e)
Santosh Puraniked609af2021-06-21 11:30:07 +0530273 {
274 std::cerr << "Type exception: " << e.what() << "\n";
275 // Ignore any type errors
276 }
277 }
Alpana Kumari31970de2020-02-17 06:49:57 -0600278 else if (itr.value().is_object())
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530279 {
Alpana Kumari31970de2020-02-17 06:49:57 -0600280 const string& rec = itr.value().value("recordName", "");
281 const string& kw = itr.value().value("keywordName", "");
282 const string& encoding = itr.value().value("encoding", "");
283
Alpana Kumari58e22142020-05-05 00:22:12 -0500284 if constexpr (is_same<T, Parsed>::value)
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530285 {
Santosh Puranik88edeb62020-03-02 12:00:09 +0530286 if (!rec.empty() && !kw.empty() && vpdMap.count(rec) &&
287 vpdMap.at(rec).count(kw))
Alpana Kumari31970de2020-02-17 06:49:57 -0600288 {
289 auto encoded =
290 encodeKeyword(vpdMap.at(rec).at(kw), encoding);
Santosh Puranik88edeb62020-03-02 12:00:09 +0530291 props.emplace(busProp, encoded);
Alpana Kumari31970de2020-02-17 06:49:57 -0600292 }
293 }
Alpana Kumari58e22142020-05-05 00:22:12 -0500294 else if constexpr (is_same<T, KeywordVpdMap>::value)
Alpana Kumari31970de2020-02-17 06:49:57 -0600295 {
296 if (!kw.empty() && vpdMap.count(kw))
297 {
Alpana Kumari3ab26a72021-04-05 19:09:19 +0000298 auto kwValue = get_if<Binary>(&vpdMap.at(kw));
299 auto uintValue = get_if<size_t>(&vpdMap.at(kw));
300
301 if (kwValue)
302 {
303 auto prop =
304 string((*kwValue).begin(), (*kwValue).end());
305
306 auto encoded = encodeKeyword(prop, encoding);
307
308 props.emplace(busProp, encoded);
309 }
310 else if (uintValue)
311 {
312 props.emplace(busProp, *uintValue);
313 }
Alpana Kumari31970de2020-02-17 06:49:57 -0600314 }
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530315 }
316 }
Matt Spinlerb1e64bb2021-09-08 09:57:48 -0500317 else if (itr.value().is_number())
318 {
319 // For now assume the value is a size_t. In the future it would
320 // be nice to come up with a way to get the type from the JSON.
321 props.emplace(busProp, itr.value().get<size_t>());
322 }
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530323 }
Priyanga Ramasamyaa8a8932022-01-27 09:12:41 -0600324 insertOrMerge(interfaces, inf, move(props));
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530325 }
326}
327
Priyanga Ramasamy37233782021-12-09 03:14:02 -0600328/*API to reset EEPROM pointer to a safe position to avoid VPD corruption.
329 * Currently do reset only for DIMM VPD.*/
330static void resetEEPROMPointer(const nlohmann::json& js, const string& file,
331 ifstream& vpdFile)
332{
333 for (const auto& item : js["frus"][file])
334 {
335 if (item.find("extraInterfaces") != item.end())
336 {
337 if (item["extraInterfaces"].find(
338 "xyz.openbmc_project.Inventory.Item.Dimm") !=
339 item["extraInterfaces"].end())
340 {
341 // moves the EEPROM pointer to 2048 'th byte.
342 vpdFile.seekg(2047, std::ios::beg);
343 // Read that byte and discard - to affirm the move
344 // operation.
345 char ch;
346 vpdFile.read(&ch, sizeof(ch));
347 }
348 return;
349 }
350 }
351}
352
alpana075cb3b1f2021-12-16 11:19:36 -0600353/**
354 * @brief This API checks if this FRU is pcie_devices. If yes then it further
355 * checks whether it is PASS1 planar.
356 */
357static bool isThisPcieOnPass1planar(const nlohmann::json& js,
358 const string& file)
359{
360 auto isThisPCIeDev = false;
361 auto isPASS1 = false;
362
363 // Check if it is a PCIE device
364 if (js["frus"].find(file) != js["frus"].end())
365 {
366 if ((js["frus"][file].find("extraInterfaces") !=
367 js["frus"][file].end()))
368 {
369 if (js["frus"][file]["extraInterfaces"].find(
370 "xyz.openbmc_project.Inventory.Item.PCIeDevice") !=
371 js["frus"][file]["extraInterfaces"].end())
372 {
373 isThisPCIeDev = true;
374 }
375 }
376 }
377
378 if (isThisPCIeDev)
379 {
380 // Collect SystemType to know if it is PASS1 planar.
381 auto bus = sdbusplus::bus::new_default();
382 auto properties = bus.new_method_call(
383 INVENTORY_MANAGER_SERVICE,
384 "/xyz/openbmc_project/inventory/system/chassis/motherboard",
385 "org.freedesktop.DBus.Properties", "Get");
386 properties.append("com.ibm.ipzvpd.VINI");
387 properties.append("HW");
388 auto result = bus.call(properties);
389
390 inventory::Value val;
391 result.read(val);
392 if (auto pVal = get_if<Binary>(&val))
393 {
394 auto hwVersion = *pVal;
395 if (hwVersion[1] < 2)
396 isPASS1 = true;
397 }
398 }
399
400 return (isThisPCIeDev && isPASS1);
401}
402
Alpana Kumari2f793042020-08-18 05:51:03 -0500403static Binary getVpdDataInVector(const nlohmann::json& js, const string& file)
Alpana Kumari58e22142020-05-05 00:22:12 -0500404{
405 uint32_t offset = 0;
406 // check if offset present?
407 for (const auto& item : js["frus"][file])
408 {
409 if (item.find("offset") != item.end())
410 {
411 offset = item["offset"];
412 }
413 }
414
415 // TODO: Figure out a better way to get max possible VPD size.
Priyanga Ramasamy3c2a2b92021-12-22 00:09:38 -0600416 auto maxVPDSize = std::min(std::filesystem::file_size(file),
417 static_cast<uintmax_t>(65504));
418
Alpana Kumari58e22142020-05-05 00:22:12 -0500419 Binary vpdVector;
Priyanga Ramasamy3c2a2b92021-12-22 00:09:38 -0600420 vpdVector.resize(maxVPDSize);
Alpana Kumari58e22142020-05-05 00:22:12 -0500421 ifstream vpdFile;
422 vpdFile.open(file, ios::binary);
423
424 vpdFile.seekg(offset, ios_base::cur);
Priyanga Ramasamy3c2a2b92021-12-22 00:09:38 -0600425 vpdFile.read(reinterpret_cast<char*>(&vpdVector[0]), maxVPDSize);
Alpana Kumari58e22142020-05-05 00:22:12 -0500426 vpdVector.resize(vpdFile.gcount());
427
Priyanga Ramasamy37233782021-12-09 03:14:02 -0600428 resetEEPROMPointer(js, file, vpdFile);
429
Alpana Kumari58e22142020-05-05 00:22:12 -0500430 return vpdVector;
431}
432
Alpana Kumari2f793042020-08-18 05:51:03 -0500433/** This API will be called at the end of VPD collection to perform any post
434 * actions.
435 *
436 * @param[in] json - json object
437 * @param[in] file - eeprom file path
438 */
439static void postFailAction(const nlohmann::json& json, const string& file)
440{
441 if ((json["frus"][file].at(0)).find("postActionFail") ==
442 json["frus"][file].at(0).end())
443 {
444 return;
445 }
446
447 uint8_t pinValue = 0;
448 string pinName;
449
450 for (const auto& postAction :
451 (json["frus"][file].at(0))["postActionFail"].items())
452 {
453 if (postAction.key() == "pin")
454 {
455 pinName = postAction.value();
456 }
457 else if (postAction.key() == "value")
458 {
459 // Get the value to set
460 pinValue = postAction.value();
461 }
462 }
463
464 cout << "Setting GPIO: " << pinName << " to " << (int)pinValue << endl;
465
466 try
467 {
468 gpiod::line outputLine = gpiod::find_line(pinName);
469
470 if (!outputLine)
471 {
472 cout << "Couldn't find output line:" << pinName
473 << " on GPIO. Skipping...\n";
474
475 return;
476 }
477 outputLine.request(
478 {"Disable line", ::gpiod::line_request::DIRECTION_OUTPUT, 0},
479 pinValue);
480 }
Patrick Williams8e15b932021-10-06 13:04:22 -0500481 catch (const system_error&)
Alpana Kumari2f793042020-08-18 05:51:03 -0500482 {
483 cerr << "Failed to set post-action GPIO" << endl;
484 }
485}
486
Alpana Kumari2e6c6f72020-12-03 00:10:03 -0600487/**
488 * @brief This sets the appropriate value to presence GPIO based on device
489 * attached or not on expander GPIO, which enables that FRU's VPD collection.
Alpana Kumari2f793042020-08-18 05:51:03 -0500490 *
491 * @param[in] json - json object
492 * @param[in] file - eeprom file path
493 */
494static void preAction(const nlohmann::json& json, const string& file)
495{
Alpana Kumari2e6c6f72020-12-03 00:10:03 -0600496 if ((json["frus"][file].at(0)).find("presence") !=
Alpana Kumari2f793042020-08-18 05:51:03 -0500497 json["frus"][file].at(0).end())
498 {
Alpana Kumari2e6c6f72020-12-03 00:10:03 -0600499 if (((json["frus"][file].at(0)["presence"]).find("pin") !=
500 json["frus"][file].at(0)["presence"].end()) &&
501 ((json["frus"][file].at(0)["presence"]).find("value") !=
502 json["frus"][file].at(0)["presence"].end()))
503 {
Sunny Srivastava2e147892022-02-22 00:48:26 -0600504 string presPinName = json["frus"][file].at(0)["presence"]["pin"];
505 Byte presPinValue = json["frus"][file].at(0)["presence"]["value"];
Alpana Kumari2e6c6f72020-12-03 00:10:03 -0600506
507 try
508 {
509 gpiod::line presenceLine = gpiod::find_line(presPinName);
510
511 if (!presenceLine)
512 {
513 cerr << "couldn't find presence line:" << presPinName
514 << "\n";
515 return;
516 }
517
518 presenceLine.request({"Read the presence line",
519 gpiod::line_request::DIRECTION_INPUT, 0});
520
521 Byte gpioData = presenceLine.get_value();
522
523 if (gpioData != presPinValue)
524 {
525 return;
526 }
527 }
528 catch (system_error&)
529 {
530 cerr << "Failed to get the presence GPIO for - " << presPinName
531 << endl;
532 return;
533 }
534 }
Alpana Kumari2f793042020-08-18 05:51:03 -0500535 }
536
Alpana Kumari2e6c6f72020-12-03 00:10:03 -0600537 if ((json["frus"][file].at(0)).find("preAction") !=
538 json["frus"][file].at(0).end())
Alpana Kumari2f793042020-08-18 05:51:03 -0500539 {
Alpana Kumari2e6c6f72020-12-03 00:10:03 -0600540 if (((json["frus"][file].at(0)["preAction"]).find("pin") !=
541 json["frus"][file].at(0)["preAction"].end()) &&
542 ((json["frus"][file].at(0)["preAction"]).find("value") !=
543 json["frus"][file].at(0)["preAction"].end()))
Alpana Kumari2f793042020-08-18 05:51:03 -0500544 {
Alpana Kumari2e6c6f72020-12-03 00:10:03 -0600545 string pinName = json["frus"][file].at(0)["preAction"]["pin"];
Alpana Kumari2f793042020-08-18 05:51:03 -0500546 // Get the value to set
Alpana Kumari2e6c6f72020-12-03 00:10:03 -0600547 Byte pinValue = json["frus"][file].at(0)["preAction"]["value"];
548
549 cout << "Setting GPIO: " << pinName << " to " << (int)pinValue
550 << endl;
551 try
552 {
553 gpiod::line outputLine = gpiod::find_line(pinName);
554
555 if (!outputLine)
556 {
557 cout << "Couldn't find output line:" << pinName
558 << " on GPIO. Skipping...\n";
559
560 return;
561 }
562 outputLine.request({"FRU pre-action",
563 ::gpiod::line_request::DIRECTION_OUTPUT, 0},
564 pinValue);
565 }
566 catch (system_error&)
567 {
568 cerr << "Failed to set pre-action for GPIO - " << pinName
569 << endl;
570 return;
571 }
Alpana Kumari2f793042020-08-18 05:51:03 -0500572 }
573 }
574
Alpana Kumari2f793042020-08-18 05:51:03 -0500575 // Now bind the device
Alpana Kumari64b9f5f2022-02-19 13:25:58 -0600576 if (json["frus"][file].at(0).find("devAddress") !=
577 json["frus"][file].at(0).end())
578 {
579 string bind = json["frus"][file].at(0).value("devAddress", "");
580 cout << "Binding device " << bind << endl;
581 string bindCmd = string("echo \"") + bind +
582 string("\" > /sys/bus/i2c/drivers/at24/bind");
583 cout << bindCmd << endl;
584 executeCmd(bindCmd);
585 }
Alpana Kumari2f793042020-08-18 05:51:03 -0500586
587 // Check if device showed up (test for file)
588 if (!fs::exists(file))
589 {
590 cout << "EEPROM " << file << " does not exist. Take failure action"
591 << endl;
592 // If not, then take failure postAction
593 postFailAction(json, file);
594 }
595}
596
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530597/**
Santosh Puranikd3a379a2021-08-23 19:12:59 +0530598 * @brief Set certain one time properties in the inventory
599 * Use this function to insert the Functional and Enabled properties into the
600 * inventory map. This function first checks if the object in question already
601 * has these properties hosted on D-Bus, if the property is already there, it is
602 * not modified, hence the name "one time". If the property is not already
603 * present, it will be added to the map with a suitable default value (true for
604 * Functional and false for Enabled)
605 *
606 * @param[in] object - The inventory D-Bus obejct without the inventory prefix.
607 * @param[inout] interfaces - Reference to a map of inventory interfaces to
608 * which the properties will be attached.
609 */
610static void setOneTimeProperties(const std::string& object,
611 inventory::InterfaceMap& interfaces)
612{
613 auto bus = sdbusplus::bus::new_default();
614 auto objectPath = INVENTORY_PATH + object;
615 auto prop = bus.new_method_call("xyz.openbmc_project.Inventory.Manager",
616 objectPath.c_str(),
617 "org.freedesktop.DBus.Properties", "Get");
618 prop.append("xyz.openbmc_project.State.Decorator.OperationalStatus");
619 prop.append("Functional");
620 try
621 {
622 auto result = bus.call(prop);
623 }
624 catch (const sdbusplus::exception::SdBusError& e)
625 {
626 // Treat as property unavailable
627 inventory::PropertyMap prop;
628 prop.emplace("Functional", true);
629 interfaces.emplace(
630 "xyz.openbmc_project.State.Decorator.OperationalStatus",
631 move(prop));
632 }
633 prop = bus.new_method_call("xyz.openbmc_project.Inventory.Manager",
634 objectPath.c_str(),
635 "org.freedesktop.DBus.Properties", "Get");
636 prop.append("xyz.openbmc_project.Object.Enable");
637 prop.append("Enabled");
638 try
639 {
640 auto result = bus.call(prop);
641 }
642 catch (const sdbusplus::exception::SdBusError& e)
643 {
644 // Treat as property unavailable
645 inventory::PropertyMap prop;
646 prop.emplace("Enabled", false);
647 interfaces.emplace("xyz.openbmc_project.Object.Enable", move(prop));
648 }
649}
650
651/**
PriyangaRamasamy8e140a12020-04-13 19:24:03 +0530652 * @brief Prime the Inventory
653 * Prime the inventory by populating only the location code,
654 * type interface and the inventory object for the frus
655 * which are not system vpd fru.
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +0530656 *
PriyangaRamasamy8e140a12020-04-13 19:24:03 +0530657 * @param[in] jsObject - Reference to vpd inventory json object
658 * @param[in] vpdMap - Reference to the parsed vpd map
659 *
660 * @returns Map of items in extraInterface.
661 */
662template <typename T>
663inventory::ObjectMap primeInventory(const nlohmann::json& jsObject,
664 const T& vpdMap)
665{
666 inventory::ObjectMap objects;
667
668 for (auto& itemFRUS : jsObject["frus"].items())
669 {
670 for (auto& itemEEPROM : itemFRUS.value())
671 {
Alpana Kumari2e6c6f72020-12-03 00:10:03 -0600672 // Take pre actions if needed
673 if (itemEEPROM.find("preAction") != itemEEPROM.end())
674 {
675 preAction(jsObject, itemFRUS.key());
676 }
677
PriyangaRamasamy8e140a12020-04-13 19:24:03 +0530678 inventory::InterfaceMap interfaces;
PriyangaRamasamy8e140a12020-04-13 19:24:03 +0530679 inventory::Object object(itemEEPROM.at("inventoryPath"));
680
Santosh Puranik50f60bf2021-05-26 17:55:06 +0530681 if ((itemFRUS.key() != systemVpdFilePath) &&
682 !itemEEPROM.value("noprime", false))
PriyangaRamasamy8e140a12020-04-13 19:24:03 +0530683 {
Alpana Kumaricfd7a752021-02-07 23:23:01 -0600684 inventory::PropertyMap presProp;
685 presProp.emplace("Present", false);
686 interfaces.emplace("xyz.openbmc_project.Inventory.Item",
Santosh Puranikd3a379a2021-08-23 19:12:59 +0530687 presProp);
688 setOneTimeProperties(object, interfaces);
PriyangaRamasamy8e140a12020-04-13 19:24:03 +0530689 if (itemEEPROM.find("extraInterfaces") != itemEEPROM.end())
690 {
691 for (const auto& eI : itemEEPROM["extraInterfaces"].items())
692 {
693 inventory::PropertyMap props;
Alpana Kumari414d5ae2021-03-04 21:06:35 +0000694 if (eI.key() == IBM_LOCATION_CODE_INF)
PriyangaRamasamy8e140a12020-04-13 19:24:03 +0530695 {
696 if constexpr (std::is_same<T, Parsed>::value)
697 {
698 for (auto& lC : eI.value().items())
699 {
700 auto propVal = expandLocationCode(
701 lC.value().get<string>(), vpdMap, true);
702
703 props.emplace(move(lC.key()),
704 move(propVal));
Santosh Puranikb0f37492021-06-21 09:42:47 +0530705 interfaces.emplace(XYZ_LOCATION_CODE_INF,
706 props);
PriyangaRamasamy8e140a12020-04-13 19:24:03 +0530707 interfaces.emplace(move(eI.key()),
708 move(props));
709 }
710 }
711 }
712 else if (eI.key().find("Inventory.Item.") !=
713 string::npos)
714 {
715 interfaces.emplace(move(eI.key()), move(props));
716 }
Santosh Puranikd3a379a2021-08-23 19:12:59 +0530717 else if (eI.key() ==
718 "xyz.openbmc_project.Inventory.Item")
719 {
720 for (auto& val : eI.value().items())
721 {
722 if (val.key() == "PrettyName")
723 {
724 presProp.emplace(val.key(),
725 val.value().get<string>());
726 }
727 }
728 // Use insert_or_assign here as we may already have
729 // inserted the present property only earlier in
730 // this function under this same interface.
731 interfaces.insert_or_assign(eI.key(),
732 move(presProp));
733 }
PriyangaRamasamy8e140a12020-04-13 19:24:03 +0530734 }
735 }
736 objects.emplace(move(object), move(interfaces));
737 }
738 }
739 }
740 return objects;
741}
742
Alpana Kumari65b83602020-09-01 00:24:56 -0500743/**
744 * @brief This API executes command to set environment variable
745 * And then reboot the system
746 * @param[in] key -env key to set new value
747 * @param[in] value -value to set.
748 */
749void setEnvAndReboot(const string& key, const string& value)
750{
751 // set env and reboot and break.
752 executeCmd("/sbin/fw_setenv", key, value);
Andrew Geissler280197e2020-12-08 20:51:49 -0600753 log<level::INFO>("Rebooting BMC to pick up new device tree");
Alpana Kumari65b83602020-09-01 00:24:56 -0500754 // make dbus call to reboot
755 auto bus = sdbusplus::bus::new_default_system();
756 auto method = bus.new_method_call(
757 "org.freedesktop.systemd1", "/org/freedesktop/systemd1",
758 "org.freedesktop.systemd1.Manager", "Reboot");
759 bus.call_noreply(method);
760}
761
762/*
763 * @brief This API checks for env var fitconfig.
764 * If not initialised OR updated as per the current system type,
765 * update this env var and reboot the system.
766 *
767 * @param[in] systemType IM kwd in vpd tells about which system type it is.
768 * */
769void setDevTreeEnv(const string& systemType)
770{
Alpana Kumari37e72702021-11-18 11:18:04 -0600771 // Init with default dtb
772 string newDeviceTree = "conf-aspeed-bmc-ibm-rainier-p1.dtb";
Santosh Puranike5f177a2022-01-24 20:14:46 +0530773 static const deviceTreeMap deviceTreeSystemTypeMap = {
774 {RAINIER_2U, "conf-aspeed-bmc-ibm-rainier-p1.dtb"},
775 {RAINIER_2U_V2, "conf-aspeed-bmc-ibm-rainier.dtb"},
776 {RAINIER_4U, "conf-aspeed-bmc-ibm-rainier-4u-p1.dtb"},
777 {RAINIER_4U_V2, "conf-aspeed-bmc-ibm-rainier-4u.dtb"},
778 {RAINIER_1S4U, "conf-aspeed-bmc-ibm-rainier-1s4u.dtb"},
779 {EVEREST, "conf-aspeed-bmc-ibm-everest.dtb"}};
Alpana Kumari65b83602020-09-01 00:24:56 -0500780
781 if (deviceTreeSystemTypeMap.find(systemType) !=
782 deviceTreeSystemTypeMap.end())
783 {
784 newDeviceTree = deviceTreeSystemTypeMap.at(systemType);
785 }
Alpana Kumari37e72702021-11-18 11:18:04 -0600786 else
787 {
788 // System type not supported
Alpana Kumariab1e22c2021-11-24 11:03:38 -0600789 string err = "This System type not found/supported in dtb table " +
790 systemType +
791 ".Please check the HW and IM keywords in the system "
792 "VPD.Breaking...";
793
794 // map to hold additional data in case of logging pel
795 PelAdditionalData additionalData{};
796 additionalData.emplace("DESCRIPTION", err);
797 createPEL(additionalData, PelSeverity::WARNING,
798 errIntfForInvalidSystemType);
799 exit(-1);
Alpana Kumari37e72702021-11-18 11:18:04 -0600800 }
Alpana Kumari65b83602020-09-01 00:24:56 -0500801
802 string readVarValue;
803 bool envVarFound = false;
804
805 vector<string> output = executeCmd("/sbin/fw_printenv");
806 for (const auto& entry : output)
807 {
808 size_t pos = entry.find("=");
809 string key = entry.substr(0, pos);
810 if (key != "fitconfig")
811 {
812 continue;
813 }
814
815 envVarFound = true;
816 if (pos + 1 < entry.size())
817 {
818 readVarValue = entry.substr(pos + 1);
819 if (readVarValue.find(newDeviceTree) != string::npos)
820 {
821 // fitconfig is Updated. No action needed
822 break;
823 }
824 }
825 // set env and reboot and break.
826 setEnvAndReboot(key, newDeviceTree);
827 exit(0);
828 }
829
830 // check If env var Not found
831 if (!envVarFound)
832 {
833 setEnvAndReboot("fitconfig", newDeviceTree);
834 }
835}
836
PriyangaRamasamy8e140a12020-04-13 19:24:03 +0530837/**
SunnySrivastava19849094d4f2020-08-05 09:32:29 -0500838 * @brief API to call VPD manager to write VPD to EEPROM.
839 * @param[in] Object path.
840 * @param[in] record to be updated.
841 * @param[in] keyword to be updated.
842 * @param[in] keyword data to be updated
843 */
844void updateHardware(const string& objectName, const string& recName,
845 const string& kwdName, const Binary& data)
846{
847 try
848 {
849 auto bus = sdbusplus::bus::new_default();
850 auto properties =
851 bus.new_method_call(BUSNAME, OBJPATH, IFACE, "WriteKeyword");
852 properties.append(
853 static_cast<sdbusplus::message::object_path>(objectName));
854 properties.append(recName);
855 properties.append(kwdName);
856 properties.append(data);
857 bus.call(properties);
858 }
Patrick Williams8be43342021-09-02 09:33:36 -0500859 catch (const sdbusplus::exception::exception& e)
SunnySrivastava19849094d4f2020-08-05 09:32:29 -0500860 {
861 std::string what =
862 "VPDManager WriteKeyword api failed for inventory path " +
863 objectName;
864 what += " record " + recName;
865 what += " keyword " + kwdName;
866 what += " with bus error = " + std::string(e.what());
867
868 // map to hold additional data in case of logging pel
869 PelAdditionalData additionalData{};
870 additionalData.emplace("CALLOUT_INVENTORY_PATH", objectName);
871 additionalData.emplace("DESCRIPTION", what);
Sunny Srivastava0746eee2021-03-22 13:36:54 -0500872 createPEL(additionalData, PelSeverity::WARNING, errIntfForBusFailure);
SunnySrivastava19849094d4f2020-08-05 09:32:29 -0500873 }
874}
875
876/**
Sunny Srivastava3c244142022-01-11 08:47:04 -0600877 * @brief An api to get list of blank system VPD properties.
878 * @param[in] vpdMap - IPZ vpd map.
879 * @param[in] objectPath - Object path for the FRU.
880 * @param[out] blankPropertyList - Properties which are blank in System VPD and
881 * needs to be updated as standby.
882 */
883void getListOfBlankSystemVpd(Parsed& vpdMap, const string& objectPath,
884 std::vector<RestoredEeproms>& blankPropertyList)
885{
886 for (const auto& systemRecKwdPair : svpdKwdMap)
887 {
888 auto it = vpdMap.find(systemRecKwdPair.first);
889
890 // check if record is found in map we got by parser
891 if (it != vpdMap.end())
892 {
893 const auto& kwdListForRecord = systemRecKwdPair.second;
894 for (const auto& keyword : kwdListForRecord)
895 {
896 DbusPropertyMap& kwdValMap = it->second;
897 auto iterator = kwdValMap.find(keyword);
898
899 if (iterator != kwdValMap.end())
900 {
901 string& kwdValue = iterator->second;
902
903 // check bus data
904 const string& recordName = systemRecKwdPair.first;
905 const string& busValue = readBusProperty(
906 objectPath, ipzVpdInf + recordName, keyword);
907
908 if (busValue.find_first_not_of(' ') != string::npos)
909 {
910 if (kwdValue.find_first_not_of(' ') == string::npos)
911 {
912 // implies data is blank on EEPROM but not on cache.
913 // So EEPROM vpd update is required.
914 Binary busData(busValue.begin(), busValue.end());
915
916 blankPropertyList.push_back(std::make_tuple(
917 objectPath, recordName, keyword, busData));
918 }
919 }
920 }
921 }
922 }
923 }
924}
925
926/**
SunnySrivastava19849094d4f2020-08-05 09:32:29 -0500927 * @brief API to check if we need to restore system VPD
928 * This functionality is only applicable for IPZ VPD data.
929 * @param[in] vpdMap - IPZ vpd map
930 * @param[in] objectPath - Object path for the FRU
SunnySrivastava19849094d4f2020-08-05 09:32:29 -0500931 */
Sunny Srivastava3c244142022-01-11 08:47:04 -0600932void restoreSystemVPD(Parsed& vpdMap, const string& objectPath)
SunnySrivastava19849094d4f2020-08-05 09:32:29 -0500933{
SunnySrivastava19849094d4f2020-08-05 09:32:29 -0500934 for (const auto& systemRecKwdPair : svpdKwdMap)
935 {
936 auto it = vpdMap.find(systemRecKwdPair.first);
937
938 // check if record is found in map we got by parser
939 if (it != vpdMap.end())
940 {
941 const auto& kwdListForRecord = systemRecKwdPair.second;
942 for (const auto& keyword : kwdListForRecord)
943 {
944 DbusPropertyMap& kwdValMap = it->second;
945 auto iterator = kwdValMap.find(keyword);
946
947 if (iterator != kwdValMap.end())
948 {
949 string& kwdValue = iterator->second;
950
951 // check bus data
952 const string& recordName = systemRecKwdPair.first;
953 const string& busValue = readBusProperty(
954 objectPath, ipzVpdInf + recordName, keyword);
955
956 if (busValue.find_first_not_of(' ') != string::npos)
957 {
958 if (kwdValue.find_first_not_of(' ') != string::npos)
959 {
960 // both the data are present, check for mismatch
961 if (busValue != kwdValue)
962 {
963 string errMsg = "VPD data mismatch on cache "
964 "and hardware for record: ";
965 errMsg += (*it).first;
966 errMsg += " and keyword: ";
967 errMsg += keyword;
968
969 // data mismatch
970 PelAdditionalData additionalData;
971 additionalData.emplace("CALLOUT_INVENTORY_PATH",
972 objectPath);
973
974 additionalData.emplace("DESCRIPTION", errMsg);
975
Sunny Srivastava0746eee2021-03-22 13:36:54 -0500976 createPEL(additionalData, PelSeverity::WARNING,
977 errIntfForInvalidVPD);
SunnySrivastava19849094d4f2020-08-05 09:32:29 -0500978 }
979 }
980 else
981 {
982 // implies hardware data is blank
983 // update the map
984 Binary busData(busValue.begin(), busValue.end());
985
Sunny Srivastava90a63b92021-05-26 06:30:24 -0500986 // update the map as well, so that cache data is not
987 // updated as blank while populating VPD map on Dbus
988 // in populateDBus Api
989 kwdValue = busValue;
990 }
SunnySrivastava19849094d4f2020-08-05 09:32:29 -0500991 }
992 else if (kwdValue.find_first_not_of(' ') == string::npos)
993 {
994 string errMsg = "VPD is blank on both cache and "
995 "hardware for record: ";
996 errMsg += (*it).first;
997 errMsg += " and keyword: ";
998 errMsg += keyword;
999 errMsg += ". SSR need to update hardware VPD.";
1000
1001 // both the data are blanks, log PEL
1002 PelAdditionalData additionalData;
1003 additionalData.emplace("CALLOUT_INVENTORY_PATH",
1004 objectPath);
1005
1006 additionalData.emplace("DESCRIPTION", errMsg);
1007
1008 // log PEL TODO: Block IPL
Sunny Srivastava0746eee2021-03-22 13:36:54 -05001009 createPEL(additionalData, PelSeverity::ERROR,
1010 errIntfForBlankSystemVPD);
SunnySrivastava19849094d4f2020-08-05 09:32:29 -05001011 continue;
1012 }
1013 }
1014 }
1015 }
1016 }
SunnySrivastava19849094d4f2020-08-05 09:32:29 -05001017}
1018
1019/**
alpana077ce68722021-07-25 13:23:59 -05001020 * @brief This checks for is this FRU a processor
1021 * And if yes, then checks for is this primary
1022 *
1023 * @param[in] js- vpd json to get the information about this FRU
1024 * @param[in] filePath- FRU vpd
1025 *
1026 * @return true/false
1027 */
1028bool isThisPrimaryProcessor(nlohmann::json& js, const string& filePath)
1029{
1030 bool isProcessor = false;
1031 bool isPrimary = false;
1032
1033 for (const auto& item : js["frus"][filePath])
1034 {
1035 if (item.find("extraInterfaces") != item.end())
1036 {
1037 for (const auto& eI : item["extraInterfaces"].items())
1038 {
1039 if (eI.key().find("Inventory.Item.Cpu") != string::npos)
1040 {
1041 isProcessor = true;
1042 }
1043 }
1044 }
1045
1046 if (isProcessor)
1047 {
1048 string cpuType = item.value("cpuType", "");
1049 if (cpuType == "primary")
1050 {
1051 isPrimary = true;
1052 }
1053 }
1054 }
1055
1056 return (isProcessor && isPrimary);
1057}
1058
1059/**
1060 * @brief This finds DIMM vpd in vpd json and enables them by binding the device
1061 * driver
1062 * @param[in] js- vpd json to iterate through and take action if it is DIMM
1063 */
1064void doEnableAllDimms(nlohmann::json& js)
1065{
1066 // iterate over each fru
1067 for (const auto& eachFru : js["frus"].items())
1068 {
1069 // skip the driver binding if eeprom already exists
1070 if (fs::exists(eachFru.key()))
1071 {
1072 continue;
1073 }
1074
1075 for (const auto& eachInventory : eachFru.value())
1076 {
1077 if (eachInventory.find("extraInterfaces") != eachInventory.end())
1078 {
1079 for (const auto& eI : eachInventory["extraInterfaces"].items())
1080 {
1081 if (eI.key().find("Inventory.Item.Dimm") != string::npos)
1082 {
1083 string dimmVpd = eachFru.key();
1084 // fetch it from
1085 // "/sys/bus/i2c/drivers/at24/414-0050/eeprom"
1086
1087 regex matchPatern("([0-9]+-[0-9]{4})");
1088 smatch matchFound;
1089 if (regex_search(dimmVpd, matchFound, matchPatern))
1090 {
1091 vector<string> i2cReg;
1092 boost::split(i2cReg, matchFound.str(0),
1093 boost::is_any_of("-"));
1094
1095 // remove 0s from begining
1096 const regex pattern("^0+(?!$)");
1097 for (auto& i : i2cReg)
1098 {
1099 i = regex_replace(i, pattern, "");
1100 }
1101
1102 if (i2cReg.size() == 2)
1103 {
1104 // echo 24c32 0x50 >
1105 // /sys/bus/i2c/devices/i2c-16/new_device
1106 string cmnd = "echo 24c32 0x" + i2cReg[1] +
1107 " > /sys/bus/i2c/devices/i2c-" +
1108 i2cReg[0] + "/new_device";
1109
1110 executeCmd(cmnd);
1111 }
1112 }
1113 }
1114 }
1115 }
1116 }
1117 }
1118}
1119
1120/**
PriyangaRamasamy8e140a12020-04-13 19:24:03 +05301121 * @brief Populate Dbus.
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301122 * This method invokes all the populateInterface functions
1123 * and notifies PIM about dbus object.
PriyangaRamasamy8e140a12020-04-13 19:24:03 +05301124 * @param[in] vpdMap - Either IPZ vpd map or Keyword vpd map based on the
1125 * input.
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301126 * @param[in] js - Inventory json object
1127 * @param[in] filePath - Path of the vpd file
1128 * @param[in] preIntrStr - Interface string
1129 */
1130template <typename T>
SunnySrivastava19849094d4f2020-08-05 09:32:29 -05001131static void populateDbus(T& vpdMap, nlohmann::json& js, const string& filePath)
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301132{
1133 inventory::InterfaceMap interfaces;
1134 inventory::ObjectMap objects;
1135 inventory::PropertyMap prop;
Shantappa Teekappanavar6aa54502021-12-09 12:59:56 -06001136 string ccinFromVpd;
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301137
Santosh Puranik50f60bf2021-05-26 17:55:06 +05301138 bool isSystemVpd = (filePath == systemVpdFilePath);
1139 if constexpr (is_same<T, Parsed>::value)
1140 {
Shantappa Teekappanavar6aa54502021-12-09 12:59:56 -06001141 ccinFromVpd = getKwVal(vpdMap, "VINI", "CC");
1142 transform(ccinFromVpd.begin(), ccinFromVpd.end(), ccinFromVpd.begin(),
1143 ::toupper);
1144
Santosh Puranik50f60bf2021-05-26 17:55:06 +05301145 if (isSystemVpd)
1146 {
1147 std::vector<std::string> interfaces = {motherBoardInterface};
1148 // call mapper to check for object path creation
1149 MapperResponse subTree =
1150 getObjectSubtreeForInterfaces(pimPath, 0, interfaces);
1151 string mboardPath =
1152 js["frus"][filePath].at(0).value("inventoryPath", "");
1153
1154 // Attempt system VPD restore if we have a motherboard
1155 // object in the inventory.
1156 if ((subTree.size() != 0) &&
1157 (subTree.find(pimPath + mboardPath) != subTree.end()))
1158 {
Sunny Srivastava3c244142022-01-11 08:47:04 -06001159 restoreSystemVPD(vpdMap, mboardPath);
Santosh Puranik50f60bf2021-05-26 17:55:06 +05301160 }
1161 else
1162 {
1163 log<level::ERR>("No object path found");
1164 }
1165 }
alpana077ce68722021-07-25 13:23:59 -05001166 else
1167 {
1168 // check if it is processor vpd.
1169 auto isPrimaryCpu = isThisPrimaryProcessor(js, filePath);
1170
1171 if (isPrimaryCpu)
1172 {
1173 auto ddVersion = getKwVal(vpdMap, "CRP0", "DD");
1174
1175 auto chipVersion = atoi(ddVersion.substr(1, 2).c_str());
1176
1177 if (chipVersion >= 2)
1178 {
1179 doEnableAllDimms(js);
1180 }
1181 }
1182 }
Santosh Puranik50f60bf2021-05-26 17:55:06 +05301183 }
1184
Priyanga Ramasamy32c687f2022-01-04 23:14:03 -06001185 if (isSystemVpd)
1186 {
1187 string systemJsonName{};
1188 if constexpr (is_same<T, Parsed>::value)
1189 {
1190 // pick the right system json
1191 systemJsonName = getSystemsJson(vpdMap);
1192 }
1193
1194 fs::path target = systemJsonName;
1195 fs::path link = INVENTORY_JSON_SYM_LINK;
1196
1197 // Create the directory for hosting the symlink
1198 fs::create_directories(VPD_FILES_PATH);
1199 // unlink the symlink previously created (if any)
1200 remove(INVENTORY_JSON_SYM_LINK);
1201 // create a new symlink based on the system
1202 fs::create_symlink(target, link);
1203
1204 // Reloading the json
1205 ifstream inventoryJson(link);
1206 js = json::parse(inventoryJson);
1207 inventoryJson.close();
1208 }
1209
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301210 for (const auto& item : js["frus"][filePath])
1211 {
1212 const auto& objectPath = item["inventoryPath"];
1213 sdbusplus::message::object_path object(objectPath);
SunnySrivastava19849094d4f2020-08-05 09:32:29 -05001214
Shantappa Teekappanavar6aa54502021-12-09 12:59:56 -06001215 vector<string> ccinList;
1216 if (item.find("ccin") != item.end())
1217 {
1218 for (const auto& cc : item["ccin"])
1219 {
1220 string ccin = cc;
1221 transform(ccin.begin(), ccin.end(), ccin.begin(), ::toupper);
1222 ccinList.push_back(ccin);
1223 }
1224 }
1225
1226 if (!ccinFromVpd.empty() && !ccinList.empty() &&
1227 (find(ccinList.begin(), ccinList.end(), ccinFromVpd) ==
1228 ccinList.end()))
1229 {
1230 continue;
1231 }
1232
Priyanga Ramasamye3fed702022-01-11 01:05:32 -06001233 if ((isSystemVpd) || (item.value("noprime", false)))
Santosh Puranikd3a379a2021-08-23 19:12:59 +05301234 {
Priyanga Ramasamye3fed702022-01-11 01:05:32 -06001235
1236 // Populate one time properties for the system VPD and its sub-frus
1237 // and for other non-primeable frus.
Santosh Puranikd3a379a2021-08-23 19:12:59 +05301238 // For the remaining FRUs, this will get handled as a part of
1239 // priming the inventory.
1240 setOneTimeProperties(objectPath, interfaces);
1241 }
1242
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301243 // Populate the VPD keywords and the common interfaces only if we
1244 // are asked to inherit that data from the VPD, else only add the
1245 // extraInterfaces.
1246 if (item.value("inherit", true))
1247 {
Alpana Kumari58e22142020-05-05 00:22:12 -05001248 if constexpr (is_same<T, Parsed>::value)
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301249 {
PriyangaRamasamy8e140a12020-04-13 19:24:03 +05301250 // Each record in the VPD becomes an interface and all
1251 // keyword within the record are properties under that
1252 // interface.
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301253 for (const auto& record : vpdMap)
1254 {
1255 populateFruSpecificInterfaces(
SunnySrivastava1984e12b1812020-05-26 02:23:11 -05001256 record.second, ipzVpdInf + record.first, interfaces);
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301257 }
1258 }
Alpana Kumari58e22142020-05-05 00:22:12 -05001259 else if constexpr (is_same<T, KeywordVpdMap>::value)
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301260 {
SunnySrivastava1984e12b1812020-05-26 02:23:11 -05001261 populateFruSpecificInterfaces(vpdMap, kwdVpdInf, interfaces);
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301262 }
Santosh Puranik88edeb62020-03-02 12:00:09 +05301263 if (js.find("commonInterfaces") != js.end())
1264 {
1265 populateInterfaces(js["commonInterfaces"], interfaces, vpdMap,
1266 isSystemVpd);
1267 }
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301268 }
Santosh Puranik0859eb62020-03-16 02:56:29 -05001269 else
1270 {
1271 // Check if we have been asked to inherit specific record(s)
Alpana Kumari58e22142020-05-05 00:22:12 -05001272 if constexpr (is_same<T, Parsed>::value)
Santosh Puranik0859eb62020-03-16 02:56:29 -05001273 {
1274 if (item.find("copyRecords") != item.end())
1275 {
1276 for (const auto& record : item["copyRecords"])
1277 {
1278 const string& recordName = record;
1279 if (vpdMap.find(recordName) != vpdMap.end())
1280 {
1281 populateFruSpecificInterfaces(
SunnySrivastava1984e12b1812020-05-26 02:23:11 -05001282 vpdMap.at(recordName), ipzVpdInf + recordName,
Santosh Puranik0859eb62020-03-16 02:56:29 -05001283 interfaces);
1284 }
1285 }
1286 }
1287 }
1288 }
Santosh Puranik32c46502022-02-10 08:55:07 +05301289 // Populate interfaces and properties that are common to every FRU
1290 // and additional interface that might be defined on a per-FRU
1291 // basis.
1292 if (item.find("extraInterfaces") != item.end())
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301293 {
Santosh Puranik32c46502022-02-10 08:55:07 +05301294 populateInterfaces(item["extraInterfaces"], interfaces, vpdMap,
1295 isSystemVpd);
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301296 }
Priyanga Ramasamyaa8a8932022-01-27 09:12:41 -06001297 inventory::PropertyMap presProp;
1298 presProp.emplace("Present", true);
1299 insertOrMerge(interfaces, invItemIntf, move(presProp));
1300
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301301 objects.emplace(move(object), move(interfaces));
1302 }
1303
PriyangaRamasamy8e140a12020-04-13 19:24:03 +05301304 if (isSystemVpd)
1305 {
1306 inventory::ObjectMap primeObject = primeInventory(js, vpdMap);
1307 objects.insert(primeObject.begin(), primeObject.end());
Alpana Kumari65b83602020-09-01 00:24:56 -05001308
Alpana Kumarif05effd2021-04-07 07:32:53 -05001309 // set the U-boot environment variable for device-tree
1310 if constexpr (is_same<T, Parsed>::value)
1311 {
Santosh Puranike5f177a2022-01-24 20:14:46 +05301312 setDevTreeEnv(fs::path(getSystemsJson(vpdMap)).filename());
Alpana Kumarif05effd2021-04-07 07:32:53 -05001313 }
PriyangaRamasamy8e140a12020-04-13 19:24:03 +05301314 }
1315
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301316 // Notify PIM
Sunny Srivastava6c71c9d2021-04-15 04:43:54 -05001317 common::utility::callPIM(move(objects));
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301318}
1319
1320int main(int argc, char** argv)
1321{
1322 int rc = 0;
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -05001323 json js{};
PriyangaRamasamyc2fe40f2021-03-02 06:27:33 -06001324 Binary vpdVector{};
1325 string file{};
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -05001326 // map to hold additional data in case of logging pel
1327 PelAdditionalData additionalData{};
1328
1329 // this is needed to hold base fru inventory path in case there is ECC or
1330 // vpd exception while parsing the file
1331 std::string baseFruInventoryPath = {};
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301332
Sunny Srivastava0746eee2021-03-22 13:36:54 -05001333 // severity for PEL
1334 PelSeverity pelSeverity = PelSeverity::WARNING;
1335
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301336 try
1337 {
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301338 App app{"ibm-read-vpd - App to read IPZ format VPD, parse it and store "
1339 "in DBUS"};
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301340
1341 app.add_option("-f, --file", file, "File containing VPD (IPZ/KEYWORD)")
Alpana Kumari2f793042020-08-18 05:51:03 -05001342 ->required();
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301343
1344 CLI11_PARSE(app, argc, argv);
1345
Sunny Srivastava0746eee2021-03-22 13:36:54 -05001346 // PEL severity should be ERROR in case of any system VPD failure
1347 if (file == systemVpdFilePath)
1348 {
1349 pelSeverity = PelSeverity::ERROR;
1350 }
1351
Santosh Puranik0246a4d2020-11-04 16:57:39 +05301352 auto jsonToParse = INVENTORY_JSON_DEFAULT;
1353
1354 // If the symlink exists, it means it has been setup for us, switch the
1355 // path
1356 if (fs::exists(INVENTORY_JSON_SYM_LINK))
1357 {
1358 jsonToParse = INVENTORY_JSON_SYM_LINK;
1359 }
1360
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301361 // Make sure that the file path we get is for a supported EEPROM
Santosh Puranik0246a4d2020-11-04 16:57:39 +05301362 ifstream inventoryJson(jsonToParse);
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -05001363 if (!inventoryJson)
1364 {
Sunny Srivastava0746eee2021-03-22 13:36:54 -05001365 throw(VpdJsonException("Failed to access Json path", jsonToParse));
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -05001366 }
1367
1368 try
1369 {
1370 js = json::parse(inventoryJson);
1371 }
Patrick Williams8e15b932021-10-06 13:04:22 -05001372 catch (const json::parse_error& ex)
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -05001373 {
Sunny Srivastava0746eee2021-03-22 13:36:54 -05001374 throw(VpdJsonException("Json parsing failed", jsonToParse));
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -05001375 }
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301376
Santosh Puranik12e24ff2021-05-11 19:33:50 +05301377 // Do we have the mandatory "frus" section?
1378 if (js.find("frus") == js.end())
1379 {
1380 throw(VpdJsonException("FRUs section not found in JSON",
1381 jsonToParse));
1382 }
1383
PriyangaRamasamy647868e2020-09-08 17:03:19 +05301384 // Check if it's a udev path - patterned as(/ahb/ahb:apb/ahb:apb:bus@)
1385 if (file.find("/ahb:apb") != string::npos)
1386 {
1387 // Translate udev path to a generic /sys/bus/.. file path.
1388 udevToGenericPath(file);
Santosh Puranik12e24ff2021-05-11 19:33:50 +05301389
1390 if ((js["frus"].find(file) != js["frus"].end()) &&
Santosh Puranik50f60bf2021-05-26 17:55:06 +05301391 (file == systemVpdFilePath))
PriyangaRamasamy647868e2020-09-08 17:03:19 +05301392 {
Sunny Srivastava3c244142022-01-11 08:47:04 -06001393 // We need manager service active to process restoring of
1394 // system VPD on hardware. So in case any system restore is
1395 // required, update hardware in the second trigger of parser
1396 // code for system vpd file path.
1397
1398 std::vector<std::string> interfaces{motherBoardInterface};
1399
1400 // call mapper to check for object path creation
1401 MapperResponse subTree =
1402 getObjectSubtreeForInterfaces(pimPath, 0, interfaces);
1403 string mboardPath =
1404 js["frus"][file].at(0).value("inventoryPath", "");
1405
1406 // Attempt system VPD restore if we have a motherboard
1407 // object in the inventory.
1408 if ((subTree.size() != 0) &&
1409 (subTree.find(pimPath + mboardPath) != subTree.end()))
1410 {
1411 vpdVector = getVpdDataInVector(js, file);
1412 ParserInterface* parser =
1413 ParserFactory::getParser(vpdVector);
1414 variant<KeywordVpdMap, Store> parseResult;
1415 parseResult = parser->parse();
1416
1417 if (auto pVal = get_if<Store>(&parseResult))
1418 {
1419 // map to hold all the keywords whose value is blank and
1420 // needs to be updated at standby.
1421 vector<RestoredEeproms> blankSystemVpdProperties{};
1422 getListOfBlankSystemVpd(pVal->getVpdMap(), mboardPath,
1423 blankSystemVpdProperties);
1424
1425 // if system VPD restore is required, update the
1426 // EEPROM
1427 for (const auto& item : blankSystemVpdProperties)
1428 {
1429 updateHardware(get<0>(item), get<1>(item),
1430 get<2>(item), get<3>(item));
1431 }
1432 }
1433 else
1434 {
1435 std::cout << "Not a valid format to restore system VPD"
1436 << std::endl;
1437 }
1438 // release the parser object
1439 ParserFactory::freeParser(parser);
1440 }
1441 else
1442 {
1443 log<level::ERR>("No object path found");
1444 }
PriyangaRamasamy647868e2020-09-08 17:03:19 +05301445 return 0;
1446 }
1447 }
1448
1449 if (file.empty())
1450 {
1451 cerr << "The EEPROM path <" << file << "> is not valid.";
1452 return 0;
1453 }
Santosh Puranik12e24ff2021-05-11 19:33:50 +05301454 if (js["frus"].find(file) == js["frus"].end())
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301455 {
Santosh Puranik88edeb62020-03-02 12:00:09 +05301456 return 0;
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301457 }
1458
Alpana Kumari2f793042020-08-18 05:51:03 -05001459 if (!fs::exists(file))
1460 {
1461 cout << "Device path: " << file
1462 << " does not exist. Spurious udev event? Exiting." << endl;
1463 return 0;
1464 }
1465
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -05001466 baseFruInventoryPath = js["frus"][file][0]["inventoryPath"];
Santosh Puranik85893752020-11-10 21:31:43 +05301467 // Check if we can read the VPD file based on the power state
Santosh Puranik27a5e952021-10-07 22:08:01 -05001468 // We skip reading VPD when the power is ON in two scenarios:
1469 // 1) The eeprom we are trying to read is that of the system VPD
1470 // 2) The JSON tells us that the FRU EEPROM cannot be read when
1471 // we are powered ON.
1472 if (js["frus"][file].at(0).value("powerOffOnly", false) ||
1473 (file == systemVpdFilePath))
Santosh Puranik85893752020-11-10 21:31:43 +05301474 {
1475 if ("xyz.openbmc_project.State.Chassis.PowerState.On" ==
1476 getPowerState())
1477 {
1478 cout << "This VPD cannot be read when power is ON" << endl;
1479 return 0;
1480 }
1481 }
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -05001482
Alpana Kumari2f793042020-08-18 05:51:03 -05001483 try
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301484 {
PriyangaRamasamyc2fe40f2021-03-02 06:27:33 -06001485 vpdVector = getVpdDataInVector(js, file);
PriyangaRamasamy33c61c22021-04-06 11:15:57 -05001486 ParserInterface* parser = ParserFactory::getParser(vpdVector);
Alpana Kumari2f793042020-08-18 05:51:03 -05001487 variant<KeywordVpdMap, Store> parseResult;
1488 parseResult = parser->parse();
SunnySrivastava19849a195542020-09-07 06:04:50 -05001489
Alpana Kumari2f793042020-08-18 05:51:03 -05001490 if (auto pVal = get_if<Store>(&parseResult))
1491 {
1492 populateDbus(pVal->getVpdMap(), js, file);
1493 }
1494 else if (auto pVal = get_if<KeywordVpdMap>(&parseResult))
1495 {
1496 populateDbus(*pVal, js, file);
1497 }
1498
1499 // release the parser object
1500 ParserFactory::freeParser(parser);
1501 }
Patrick Williams8e15b932021-10-06 13:04:22 -05001502 catch (const exception& e)
Alpana Kumari2f793042020-08-18 05:51:03 -05001503 {
1504 postFailAction(js, file);
PriyangaRamasamya504c3e2020-12-06 12:14:52 -06001505 throw;
Alpana Kumari2f793042020-08-18 05:51:03 -05001506 }
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301507 }
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -05001508 catch (const VpdJsonException& ex)
1509 {
1510 additionalData.emplace("JSON_PATH", ex.getJsonPath());
1511 additionalData.emplace("DESCRIPTION", ex.what());
Sunny Srivastava0746eee2021-03-22 13:36:54 -05001512 createPEL(additionalData, pelSeverity, errIntfForJsonFailure);
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -05001513
1514 cerr << ex.what() << "\n";
1515 rc = -1;
1516 }
1517 catch (const VpdEccException& ex)
1518 {
1519 additionalData.emplace("DESCRIPTION", "ECC check failed");
1520 additionalData.emplace("CALLOUT_INVENTORY_PATH",
1521 INVENTORY_PATH + baseFruInventoryPath);
Sunny Srivastava0746eee2021-03-22 13:36:54 -05001522 createPEL(additionalData, pelSeverity, errIntfForEccCheckFail);
PriyangaRamasamyc2fe40f2021-03-02 06:27:33 -06001523 dumpBadVpd(file, vpdVector);
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -05001524 cerr << ex.what() << "\n";
1525 rc = -1;
1526 }
1527 catch (const VpdDataException& ex)
1528 {
alpana075cb3b1f2021-12-16 11:19:36 -06001529 if (isThisPcieOnPass1planar(js, file))
1530 {
1531 cout << "Pcie_device [" << file
1532 << "]'s VPD is not valid on PASS1 planar.Ignoring.\n";
1533 rc = 0;
1534 }
1535 else
1536 {
1537 string errorMsg =
1538 "VPD file is either empty or invalid. Parser failed for [";
1539 errorMsg += file;
1540 errorMsg += "], with error = " + std::string(ex.what());
1541
1542 additionalData.emplace("DESCRIPTION", errorMsg);
1543 additionalData.emplace("CALLOUT_INVENTORY_PATH",
1544 INVENTORY_PATH + baseFruInventoryPath);
1545 createPEL(additionalData, pelSeverity, errIntfForInvalidVPD);
1546
1547 rc = -1;
1548 }
SunnySrivastava1984a20be8e2020-08-26 02:00:50 -05001549 }
Patrick Williams8e15b932021-10-06 13:04:22 -05001550 catch (const exception& e)
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301551 {
PriyangaRamasamyc2fe40f2021-03-02 06:27:33 -06001552 dumpBadVpd(file, vpdVector);
PriyangaRamasamyabb87ed2019-11-19 17:25:35 +05301553 cerr << e.what() << "\n";
1554 rc = -1;
1555 }
1556
1557 return rc;
Priyanga Ramasamy0d61c582022-01-21 04:38:22 -06001558}