blob: 3c4ee20eee79e19b00426842dd986f2d10bf4ca3 [file] [log] [blame]
Patrick Venture02ba8842018-10-20 13:37:54 -07001#include "writefrudata.hpp"
2
Patrick Venture5c2bd5e2018-10-20 19:45:48 -07003#include "fru_area.hpp"
Patrick Venturec9508db2018-10-16 17:18:43 -07004#include "frup.hpp"
5#include "types.hpp"
6
Patrick Venturec9508db2018-10-16 17:18:43 -07007#include <host-ipmid/ipmid-api.h>
Chris Austenb45c4cb2015-11-01 06:34:56 -06008#include <unistd.h>
Patrick Venturec9508db2018-10-16 17:18:43 -07009
10#include <algorithm>
Patrick Venture5c787212018-10-17 13:48:23 -070011#include <cstdio>
12#include <cstring>
Patrick Venturec9508db2018-10-16 17:18:43 -070013#include <exception>
14#include <fstream>
vishwac93d6d42015-12-16 11:55:16 -060015#include <iostream>
Patrick Ventureb390c0e2018-10-20 13:36:48 -070016#include <map>
vishwac93d6d42015-12-16 11:55:16 -060017#include <memory>
Patrick Venture5739ac32018-10-16 19:17:41 -070018#include <phosphor-logging/log.hpp>
Patrick Venture71918492018-10-20 19:40:13 -070019#include <sdbusplus/bus.hpp>
Patrick Venturec9508db2018-10-16 17:18:43 -070020#include <sstream>
21#include <vector>
Vishwa4be4b7a2015-10-31 22:55:50 -050022
Deepak Kodihalli788bd1f2017-02-20 01:21:59 -060023using namespace ipmi::vpd;
Patrick Venture5739ac32018-10-16 19:17:41 -070024using namespace phosphor::logging;
Deepak Kodihalli788bd1f2017-02-20 01:21:59 -060025
Ratan Guptacb0d4e52016-12-22 19:05:57 +053026extern const FruMap frus;
Deepak Kodihalli788bd1f2017-02-20 01:21:59 -060027extern const std::map<Path, InterfaceMap> extras;
Ratan Guptacb0d4e52016-12-22 19:05:57 +053028
Patrick Venture19bea9a2018-10-20 19:54:27 -070029using FruAreaVector = std::vector<std::unique_ptr<IPMIFruArea>>;
30
Patrick Venture234b7352018-10-20 09:37:09 -070031namespace
32{
33
34//------------------------------------------------------------
35// Cleanup routine
Patrick Ventureef83b992018-10-21 09:32:44 -070036// Must always be called as last reference to fruFilePointer.
Patrick Venture234b7352018-10-20 09:37:09 -070037//------------------------------------------------------------
Patrick Ventureef83b992018-10-21 09:32:44 -070038int cleanupError(FILE* fruFilePointer, FruAreaVector& fruAreaVec)
Patrick Venture234b7352018-10-20 09:37:09 -070039{
Patrick Ventureef83b992018-10-21 09:32:44 -070040 if (fruFilePointer != NULL)
Patrick Venture234b7352018-10-20 09:37:09 -070041 {
Patrick Ventureef83b992018-10-21 09:32:44 -070042 std::fclose(fruFilePointer);
Patrick Venture234b7352018-10-20 09:37:09 -070043 }
44
Patrick Ventureef83b992018-10-21 09:32:44 -070045 if (!(fruAreaVec.empty()))
Patrick Venture234b7352018-10-20 09:37:09 -070046 {
Patrick Ventureef83b992018-10-21 09:32:44 -070047 fruAreaVec.clear();
Patrick Venture234b7352018-10-20 09:37:09 -070048 }
49
50 return -1;
51}
52
Patrick Venturede8ea562018-10-20 09:44:19 -070053//------------------------------------------------------------------------
54// Gets the value of the key from the fru dictionary of the given section.
55// FRU dictionary is parsed fru data for all the sections.
56//------------------------------------------------------------------------
57std::string getFRUValue(const std::string& section, const std::string& key,
58 const std::string& delimiter, IPMIFruInfo& fruData)
59{
60
61 auto minIndexValue = 0;
62 auto maxIndexValue = 0;
63 std::string fruValue = "";
64
65 if (section == "Board")
66 {
67 minIndexValue = OPENBMC_VPD_KEY_BOARD_MFG_DATE;
68 maxIndexValue = OPENBMC_VPD_KEY_BOARD_MAX;
69 }
70 else if (section == "Product")
71 {
72 minIndexValue = OPENBMC_VPD_KEY_PRODUCT_MFR;
73 maxIndexValue = OPENBMC_VPD_KEY_PRODUCT_MAX;
74 }
75 else if (section == "Chassis")
76 {
77 minIndexValue = OPENBMC_VPD_KEY_CHASSIS_TYPE;
78 maxIndexValue = OPENBMC_VPD_KEY_CHASSIS_MAX;
79 }
80
81 auto first = fruData.cbegin() + minIndexValue;
82 auto last = first + (maxIndexValue - minIndexValue) + 1;
83
Patrick Venturec7eecc12018-10-21 08:55:44 -070084 auto itr = std::find_if(first, last,
85 [&key](const auto& e) { return key == e.first; });
Patrick Venturede8ea562018-10-20 09:44:19 -070086
87 if (itr != last)
88 {
89 fruValue = itr->second;
90 }
91
92 // if the key is custom property then the value could be in two formats.
93 // 1) custom field 2 = "value".
94 // 2) custom field 2 = "key:value".
95 // if delimiter length = 0 i.e custom field 2 = "value"
96
97 constexpr auto customProp = "Custom Field";
98 if (key.find(customProp) != std::string::npos)
99 {
100 if (delimiter.length() > 0)
101 {
102 size_t delimiterpos = fruValue.find(delimiter);
103 if (delimiterpos != std::string::npos)
Patrick Venture740d8c02018-10-21 12:53:05 -0700104 {
Patrick Venturede8ea562018-10-20 09:44:19 -0700105 fruValue = fruValue.substr(delimiterpos + 1);
Patrick Venture740d8c02018-10-21 12:53:05 -0700106 }
Patrick Venturede8ea562018-10-20 09:44:19 -0700107 }
108 }
109 return fruValue;
110}
111
Patrick Venture17baa272018-10-20 09:48:08 -0700112// Get the inventory service from the mapper.
113auto getService(sdbusplus::bus::bus& bus, const std::string& intf,
114 const std::string& path)
115{
116 auto mapperCall =
117 bus.new_method_call("xyz.openbmc_project.ObjectMapper",
118 "/xyz/openbmc_project/object_mapper",
119 "xyz.openbmc_project.ObjectMapper", "GetObject");
120
121 mapperCall.append(path);
122 mapperCall.append(std::vector<std::string>({intf}));
123 std::map<std::string, std::vector<std::string>> mapperResponse;
124
125 try
126 {
127 auto mapperResponseMsg = bus.call(mapperCall);
128 mapperResponseMsg.read(mapperResponse);
129 }
130 catch (const sdbusplus::exception::SdBusError& ex)
131 {
132 log<level::ERR>("Exception from sdbus call",
133 entry("WHAT=%s", ex.what()));
134 throw;
135 }
136
137 if (mapperResponse.begin() == mapperResponse.end())
138 {
139 throw std::runtime_error("ERROR in reading the mapper response");
140 }
141
142 return mapperResponse.begin()->first;
143}
144
Patrick Venture44a957d2018-10-20 09:41:29 -0700145// Takes FRU data, invokes Parser for each fru record area and updates
146// Inventory
147//------------------------------------------------------------------------
Patrick Ventureef83b992018-10-21 09:32:44 -0700148int updateInventory(FruAreaVector& areaVector, sdbusplus::bus::bus& bus)
Patrick Venture44a957d2018-10-20 09:41:29 -0700149{
150 // Generic error reporter
151 int rc = 0;
152 uint8_t fruid = 0;
153 IPMIFruInfo fruData;
154
155 // For each FRU area, extract the needed data , get it parsed and update
156 // the Inventory.
Patrick Ventureef83b992018-10-21 09:32:44 -0700157 for (const auto& fruArea : areaVector)
Patrick Venture44a957d2018-10-20 09:41:29 -0700158 {
Patrick Venturef22b36a2018-10-20 20:59:07 -0700159 fruid = fruArea->getFruID();
Patrick Venture44a957d2018-10-20 09:41:29 -0700160 // Fill the container with information
Patrick Venturef22b36a2018-10-20 20:59:07 -0700161 rc = parse_fru_area((fruArea)->getType(), (void*)(fruArea)->getData(),
162 (fruArea)->getLength(), fruData);
Patrick Venture44a957d2018-10-20 09:41:29 -0700163 if (rc < 0)
164 {
165 log<level::ERR>("Error parsing FRU records");
166 return rc;
167 }
168 } // END walking the vector of areas and updating
169
170 // For each Fru we have the list of instances which needs to be updated.
171 // Each instance object implements certain interfaces.
172 // Each Interface is having Dbus properties.
173 // Each Dbus Property would be having metaData(eg section,VpdPropertyName).
174
175 // Here we are just printing the object,interface and the properties.
176 // which needs to be called with the new inventory manager implementation.
Patrick Venture44a957d2018-10-20 09:41:29 -0700177 using namespace std::string_literals;
178 static const auto intf = "xyz.openbmc_project.Inventory.Manager"s;
179 static const auto path = "/xyz/openbmc_project/inventory"s;
180 std::string service;
181 try
182 {
183 service = getService(bus, intf, path);
184 }
185 catch (const std::exception& e)
186 {
187 std::cerr << e.what() << "\n";
188 return -1;
189 }
190
191 auto iter = frus.find(fruid);
192 if (iter == frus.end())
193 {
194 log<level::ERR>("Unable to get the fru info",
195 entry("FRU=%d", static_cast<int>(fruid)));
196 return -1;
197 }
198
199 auto& instanceList = iter->second;
200 if (instanceList.size() <= 0)
201 {
202 log<level::DEBUG>("Object list empty for this FRU",
203 entry("FRU=%d", static_cast<int>(fruid)));
204 }
205
206 ObjectMap objects;
Patrick Venturec7eecc12018-10-21 08:55:44 -0700207 for (const auto& instance : instanceList)
Patrick Venture44a957d2018-10-20 09:41:29 -0700208 {
209 InterfaceMap interfaces;
210 const auto& extrasIter = extras.find(instance.path);
211
Patrick Venturec7eecc12018-10-21 08:55:44 -0700212 for (const auto& interfaceList : instance.interfaces)
Patrick Venture44a957d2018-10-20 09:41:29 -0700213 {
214 PropertyMap props; // store all the properties
Patrick Venturec7eecc12018-10-21 08:55:44 -0700215 for (const auto& properties : interfaceList.second)
Patrick Venture44a957d2018-10-20 09:41:29 -0700216 {
217 std::string value;
218 decltype(auto) pdata = properties.second;
219
220 if (!pdata.section.empty() && !pdata.property.empty())
221 {
222 value = getFRUValue(pdata.section, pdata.property,
223 pdata.delimiter, fruData);
224 }
225 props.emplace(std::move(properties.first), std::move(value));
226 }
227 // Check and update extra properties
228 if (extras.end() != extrasIter)
229 {
230 const auto& propsIter =
231 (extrasIter->second).find(interfaceList.first);
232 if ((extrasIter->second).end() != propsIter)
233 {
234 for (const auto& map : propsIter->second)
235 {
236 props.emplace(map.first, map.second);
237 }
238 }
239 }
240 interfaces.emplace(std::move(interfaceList.first),
241 std::move(props));
242 }
243
244 // Call the inventory manager
Patrick Venture9a528f22018-10-20 13:31:28 -0700245 sdbusplus::message::object_path objectPath = instance.path;
Patrick Venture44a957d2018-10-20 09:41:29 -0700246 // Check and update extra properties
247 if (extras.end() != extrasIter)
248 {
249 for (const auto& entry : extrasIter->second)
250 {
251 if (interfaces.end() == interfaces.find(entry.first))
252 {
253 interfaces.emplace(entry.first, entry.second);
254 }
255 }
256 }
Patrick Venture9a528f22018-10-20 13:31:28 -0700257 objects.emplace(objectPath, interfaces);
Patrick Venture44a957d2018-10-20 09:41:29 -0700258 }
259
260 auto pimMsg = bus.new_method_call(service.c_str(), path.c_str(),
261 intf.c_str(), "Notify");
262 pimMsg.append(std::move(objects));
263
264 try
265 {
266 auto inventoryMgrResponseMsg = bus.call(pimMsg);
267 }
268 catch (const sdbusplus::exception::SdBusError& ex)
269 {
270 log<level::ERR>("Error in notify call", entry("WHAT=%s", ex.what()));
271 return -1;
272 }
273
274 return rc;
275}
276
Patrick Venture234b7352018-10-20 09:37:09 -0700277} // namespace
278
Vishwa4be4b7a2015-10-31 22:55:50 -0500279//------------------------------------------------
vishwaf3ca3522015-12-02 10:35:13 -0600280// Takes the pointer to stream of bytes and length
vishwac93d6d42015-12-16 11:55:16 -0600281// and returns the 8 bit checksum
282// This algo is per IPMI V2.0 spec
Vishwa4be4b7a2015-10-31 22:55:50 -0500283//-------------------------------------------------
Patrick Venture062e1452018-10-21 09:16:47 -0700284unsigned char calculateCRC(const unsigned char* data, size_t len)
Vishwa4be4b7a2015-10-31 22:55:50 -0500285{
286 char crc = 0;
vishwac93d6d42015-12-16 11:55:16 -0600287 size_t byte = 0;
Vishwa4be4b7a2015-10-31 22:55:50 -0500288
Patrick Venturec9508db2018-10-16 17:18:43 -0700289 for (byte = 0; byte < len; byte++)
Vishwa4be4b7a2015-10-31 22:55:50 -0500290 {
291 crc += *data++;
292 }
vishwaf3ca3522015-12-02 10:35:13 -0600293
Patrick Venturec9508db2018-10-16 17:18:43 -0700294 return (-crc);
Vishwa4be4b7a2015-10-31 22:55:50 -0500295}
296
297//---------------------------------------------------------------------
298// Accepts a fru area offset in commom hdr and tells which area it is.
299//---------------------------------------------------------------------
Patrick Ventureef83b992018-10-21 09:32:44 -0700300ipmi_fru_area_type getFruAreaType(uint8_t areaOffset)
Vishwa4be4b7a2015-10-31 22:55:50 -0500301{
302 ipmi_fru_area_type type = IPMI_FRU_AREA_TYPE_MAX;
303
Patrick Ventureef83b992018-10-21 09:32:44 -0700304 switch (areaOffset)
Vishwa4be4b7a2015-10-31 22:55:50 -0500305 {
306 case IPMI_FRU_INTERNAL_OFFSET:
307 type = IPMI_FRU_AREA_INTERNAL_USE;
308 break;
309
310 case IPMI_FRU_CHASSIS_OFFSET:
311 type = IPMI_FRU_AREA_CHASSIS_INFO;
312 break;
313
314 case IPMI_FRU_BOARD_OFFSET:
315 type = IPMI_FRU_AREA_BOARD_INFO;
316 break;
317
318 case IPMI_FRU_PRODUCT_OFFSET:
319 type = IPMI_FRU_AREA_PRODUCT_INFO;
320 break;
321
322 case IPMI_FRU_MULTI_OFFSET:
323 type = IPMI_FRU_AREA_MULTI_RECORD;
324 break;
325
326 default:
327 type = IPMI_FRU_AREA_TYPE_MAX;
328 }
329
330 return type;
331}
332
vishwac93d6d42015-12-16 11:55:16 -0600333///-----------------------------------------------
334// Validates the data for crc and mandatory fields
335///-----------------------------------------------
Patrick Venture062e1452018-10-21 09:16:47 -0700336int verifyFruData(const uint8_t* data, const size_t len)
vishwac93d6d42015-12-16 11:55:16 -0600337{
338 uint8_t checksum = 0;
339 int rc = -1;
340
341 // Validate for first byte to always have a value of [1]
Patrick Venturec9508db2018-10-16 17:18:43 -0700342 if (data[0] != IPMI_FRU_HDR_BYTE_ZERO)
vishwac93d6d42015-12-16 11:55:16 -0600343 {
Patrick Venture5c787212018-10-17 13:48:23 -0700344 log<level::ERR>("Invalid entry in byte-0",
345 entry("ENTRY=0x%X", static_cast<uint32_t>(data[0])));
vishwac93d6d42015-12-16 11:55:16 -0600346 return rc;
347 }
348#ifdef __IPMI_DEBUG__
349 else
350 {
Patrick Ventureef83b992018-10-21 09:32:44 -0700351 log<level::DEBUG>("Validated in entry_1 of fruData",
Patrick Venture5c787212018-10-17 13:48:23 -0700352 entry("ENTRY=0x%X", static_cast<uint32_t>(data[0])));
vishwac93d6d42015-12-16 11:55:16 -0600353 }
354#endif
355
356 // See if the calculated CRC matches with the embedded one.
357 // CRC to be calculated on all except the last one that is CRC itself.
Patrick Venture062e1452018-10-21 09:16:47 -0700358 checksum = calculateCRC(data, len - 1);
Patrick Venturec9508db2018-10-16 17:18:43 -0700359 if (checksum != data[len - 1])
vishwac93d6d42015-12-16 11:55:16 -0600360 {
361#ifdef __IPMI_DEBUG__
Patrick Venture5c787212018-10-17 13:48:23 -0700362 log<level::ERR>(
363 "Checksum mismatch",
364 entry("Calculated=0x%X", static_cast<uint32_t>(checksum)),
365 entry("Embedded=0x%X", static_cast<uint32_t>(data[len])));
vishwac93d6d42015-12-16 11:55:16 -0600366#endif
367 return rc;
368 }
369#ifdef __IPMI_DEBUG__
370 else
371 {
Patrick Venture5c787212018-10-17 13:48:23 -0700372 log<level::DEBUG>("Checksum matches");
vishwac93d6d42015-12-16 11:55:16 -0600373 }
374#endif
375
376 return EXIT_SUCCESS;
377}
378
vishwac93d6d42015-12-16 11:55:16 -0600379///----------------------------------------------------
380// Checks if a particular fru area is populated or not
381///----------------------------------------------------
Patrick Ventureef83b992018-10-21 09:32:44 -0700382bool removeInvalidArea(const std::unique_ptr<IPMIFruArea>& fruArea)
Vishwa4be4b7a2015-10-31 22:55:50 -0500383{
Deepak Kodihalli89ededd2017-02-11 01:59:32 -0600384 // Filter the ones that are empty
Patrick Ventureef83b992018-10-21 09:32:44 -0700385 if (!(fruArea->getLength()))
vishwac93d6d42015-12-16 11:55:16 -0600386 {
387 return true;
388 }
389 return false;
390}
Vishwa4be4b7a2015-10-31 22:55:50 -0500391
vishwac93d6d42015-12-16 11:55:16 -0600392///----------------------------------------------------------------------------------
393// Populates various FRU areas
394// @prereq : This must be called only after validating common header.
395///----------------------------------------------------------------------------------
Patrick Ventureef83b992018-10-21 09:32:44 -0700396int ipmiPopulateFruAreas(uint8_t* fruData, const size_t dataLen,
397 FruAreaVector& fruAreaVec)
vishwac93d6d42015-12-16 11:55:16 -0600398{
vishwac93d6d42015-12-16 11:55:16 -0600399 int rc = -1;
Vishwa4be4b7a2015-10-31 22:55:50 -0500400
vishwac93d6d42015-12-16 11:55:16 -0600401 // Now walk the common header and see if the file size has atleast the last
Patrick Ventureef83b992018-10-21 09:32:44 -0700402 // offset mentioned by the struct common_header. If the file size is less
403 // than the offset of any if the fru areas mentioned in the common header,
404 // then we do not have a complete file.
405 for (uint8_t fruEntry = IPMI_FRU_INTERNAL_OFFSET;
406 fruEntry < (sizeof(struct common_header) - 2); fruEntry++)
vishwac93d6d42015-12-16 11:55:16 -0600407 {
Yi Li75c2d462016-04-11 16:57:46 +0800408 rc = -1;
vishwac93d6d42015-12-16 11:55:16 -0600409 // Actual offset in the payload is the offset mentioned in common header
Gunnar Millsc19b8132018-06-14 08:56:17 -0500410 // multiplied by 8. Common header is always the first 8 bytes.
Patrick Ventureef83b992018-10-21 09:32:44 -0700411 size_t areaOffset = fruData[fruEntry] * IPMI_EIGHT_BYTES;
412 if (areaOffset && (dataLen < (areaOffset + 2)))
vishwac93d6d42015-12-16 11:55:16 -0600413 {
414 // Our file size is less than what it needs to be. +2 because we are
Patrick Ventureef83b992018-10-21 09:32:44 -0700415 // using area len that is at 2 byte off areaOffset
Patrick Venture5c787212018-10-17 13:48:23 -0700416 log<level::ERR>("fru file is incomplete",
Patrick Ventureef83b992018-10-21 09:32:44 -0700417 entry("SIZE=%d", dataLen));
vishwac93d6d42015-12-16 11:55:16 -0600418 return rc;
419 }
Patrick Ventureef83b992018-10-21 09:32:44 -0700420 else if (areaOffset)
vishwac93d6d42015-12-16 11:55:16 -0600421 {
422 // Read 2 bytes to know the actual size of area.
Patrick Ventureef83b992018-10-21 09:32:44 -0700423 uint8_t areaHeader[2] = {0};
424 std::memcpy(areaHeader, &((uint8_t*)fruData)[areaOffset],
425 sizeof(areaHeader));
Vishwa4be4b7a2015-10-31 22:55:50 -0500426
vishwac93d6d42015-12-16 11:55:16 -0600427 // Size of this area will be the 2nd byte in the fru area header.
Patrick Ventureef83b992018-10-21 09:32:44 -0700428 size_t areaLen = areaHeader[1] * IPMI_EIGHT_BYTES;
429 uint8_t areaData[areaLen] = {0};
Vishwa4be4b7a2015-10-31 22:55:50 -0500430
Patrick Ventureef83b992018-10-21 09:32:44 -0700431 log<level::DEBUG>("Fru Data", entry("SIZE=%d", dataLen),
432 entry("AREA OFFSET=%d", areaOffset),
433 entry("AREA_SIZE=%d", areaLen));
Vishwa4be4b7a2015-10-31 22:55:50 -0500434
vishwac93d6d42015-12-16 11:55:16 -0600435 // See if we really have that much buffer. We have area offset amd
436 // from there, the actual len.
Patrick Ventureef83b992018-10-21 09:32:44 -0700437 if (dataLen < (areaLen + areaOffset))
vishwac93d6d42015-12-16 11:55:16 -0600438 {
Patrick Venture5c787212018-10-17 13:48:23 -0700439 log<level::ERR>("Incomplete Fru file",
Patrick Ventureef83b992018-10-21 09:32:44 -0700440 entry("SIZE=%d", dataLen));
vishwac93d6d42015-12-16 11:55:16 -0600441 return rc;
442 }
443
444 // Save off the data.
Patrick Ventureef83b992018-10-21 09:32:44 -0700445 std::memcpy(areaData, &((uint8_t*)fruData)[areaOffset], areaLen);
vishwac93d6d42015-12-16 11:55:16 -0600446
447 // Validate the crc
Patrick Ventureef83b992018-10-21 09:32:44 -0700448 rc = verifyFruData(areaData, areaLen);
Patrick Venturec9508db2018-10-16 17:18:43 -0700449 if (rc < 0)
vishwac93d6d42015-12-16 11:55:16 -0600450 {
Patrick Venture5c787212018-10-17 13:48:23 -0700451 log<level::ERR>("Err validating fru area",
Patrick Ventureef83b992018-10-21 09:32:44 -0700452 entry("OFFSET=%d", areaOffset));
vishwac93d6d42015-12-16 11:55:16 -0600453 return rc;
454 }
455 else
456 {
Patrick Venture5c787212018-10-17 13:48:23 -0700457 log<level::DEBUG>("Successfully verified area checksum.",
Patrick Ventureef83b992018-10-21 09:32:44 -0700458 entry("OFFSET=%d", areaOffset));
vishwac93d6d42015-12-16 11:55:16 -0600459 }
460
461 // We already have a vector that is passed to us containing all
462 // of the fields populated. Update the data portion now.
Patrick Ventureef83b992018-10-21 09:32:44 -0700463 for (auto& iter : fruAreaVec)
vishwac93d6d42015-12-16 11:55:16 -0600464 {
Patrick Ventureef83b992018-10-21 09:32:44 -0700465 if (iter->getType() == getFruAreaType(fruEntry))
vishwac93d6d42015-12-16 11:55:16 -0600466 {
Patrick Ventureef83b992018-10-21 09:32:44 -0700467 iter->setData(areaData, areaLen);
vishwac93d6d42015-12-16 11:55:16 -0600468 }
469 }
470 } // If we have fru data present
Patrick Ventureef83b992018-10-21 09:32:44 -0700471 } // Walk struct common_header
vishwac93d6d42015-12-16 11:55:16 -0600472
473 // Not all the fields will be populated in a fru data. Mostly all cases will
474 // not have more than 2 or 3.
Patrick Ventureef83b992018-10-21 09:32:44 -0700475 fruAreaVec.erase(
476 std::remove_if(fruAreaVec.begin(), fruAreaVec.end(), removeInvalidArea),
477 fruAreaVec.end());
vishwac93d6d42015-12-16 11:55:16 -0600478
479 return EXIT_SUCCESS;
480}
481
482///---------------------------------------------------------
483// Validates the fru data per ipmi common header constructs.
Patrick Ventureef83b992018-10-21 09:32:44 -0700484// Returns with updated struct common_header and also file_size
vishwac93d6d42015-12-16 11:55:16 -0600485//----------------------------------------------------------
Patrick Ventureef83b992018-10-21 09:32:44 -0700486int ipmiValidateCommonHeader(const uint8_t* fruData, const size_t dataLen)
vishwac93d6d42015-12-16 11:55:16 -0600487{
488 int rc = -1;
Vishwa4be4b7a2015-10-31 22:55:50 -0500489
Patrick Ventureef83b992018-10-21 09:32:44 -0700490 uint8_t commonHdr[sizeof(struct common_header)] = {0};
491 if (dataLen >= sizeof(commonHdr))
Vishwa4be4b7a2015-10-31 22:55:50 -0500492 {
Patrick Ventureef83b992018-10-21 09:32:44 -0700493 std::memcpy(commonHdr, fruData, sizeof(commonHdr));
Vishwa4be4b7a2015-10-31 22:55:50 -0500494 }
495 else
496 {
Patrick Ventureef83b992018-10-21 09:32:44 -0700497 log<level::ERR>("Incomplete fru data file", entry("SIZE=%d", dataLen));
vishwac93d6d42015-12-16 11:55:16 -0600498 return rc;
Vishwa4be4b7a2015-10-31 22:55:50 -0500499 }
500
vishwac93d6d42015-12-16 11:55:16 -0600501 // Verify the crc and size
Patrick Ventureef83b992018-10-21 09:32:44 -0700502 rc = verifyFruData(commonHdr, sizeof(commonHdr));
Patrick Venturec9508db2018-10-16 17:18:43 -0700503 if (rc < 0)
Vishwa4be4b7a2015-10-31 22:55:50 -0500504 {
Patrick Venture5c787212018-10-17 13:48:23 -0700505 log<level::ERR>("Failed to validate common header");
vishwac93d6d42015-12-16 11:55:16 -0600506 return rc;
Vishwa4be4b7a2015-10-31 22:55:50 -0500507 }
508
vishwac93d6d42015-12-16 11:55:16 -0600509 return EXIT_SUCCESS;
510}
Vishwa4be4b7a2015-10-31 22:55:50 -0500511
Vishwa4be4b7a2015-10-31 22:55:50 -0500512///-----------------------------------------------------
513// Accepts the filename and validates per IPMI FRU spec
514//----------------------------------------------------
Patrick Ventureef83b992018-10-21 09:32:44 -0700515int validateFRUArea(const uint8_t fruid, const char* fruFilename,
516 sdbusplus::bus::bus& bus, const bool bmcOnlyFru)
Vishwa4be4b7a2015-10-31 22:55:50 -0500517{
Patrick Ventureef83b992018-10-21 09:32:44 -0700518 size_t dataLen = 0;
519 size_t bytesRead = 0;
vishwac93d6d42015-12-16 11:55:16 -0600520 int rc = -1;
Vishwa4be4b7a2015-10-31 22:55:50 -0500521
vishwac93d6d42015-12-16 11:55:16 -0600522 // Vector that holds individual IPMI FRU AREAs. Although MULTI and INTERNAL
523 // are not used, keeping it here for completeness.
Patrick Ventureef83b992018-10-21 09:32:44 -0700524 FruAreaVector fruAreaVec;
Yi Li75c2d462016-04-11 16:57:46 +0800525
Patrick Ventureef83b992018-10-21 09:32:44 -0700526 for (uint8_t fruEntry = IPMI_FRU_INTERNAL_OFFSET;
527 fruEntry < (sizeof(struct common_header) - 2); fruEntry++)
vishwac93d6d42015-12-16 11:55:16 -0600528 {
529 // Create an object and push onto a vector.
Patrick Ventureef83b992018-10-21 09:32:44 -0700530 std::unique_ptr<IPMIFruArea> fruArea = std::make_unique<IPMIFruArea>(
531 fruid, getFruAreaType(fruEntry), bmcOnlyFru);
vishwac93d6d42015-12-16 11:55:16 -0600532
533 // Physically being present
Patrick Ventureef83b992018-10-21 09:32:44 -0700534 bool present = access(fruFilename, F_OK) == 0;
535 fruArea->setPresent(present);
vishwac93d6d42015-12-16 11:55:16 -0600536
Patrick Ventureef83b992018-10-21 09:32:44 -0700537 fruAreaVec.emplace_back(std::move(fruArea));
vishwac93d6d42015-12-16 11:55:16 -0600538 }
539
Patrick Ventureef83b992018-10-21 09:32:44 -0700540 FILE* fruFilePointer = std::fopen(fruFilename, "rb");
541 if (fruFilePointer == NULL)
Vishwa4be4b7a2015-10-31 22:55:50 -0500542 {
Patrick Venture5c787212018-10-17 13:48:23 -0700543 log<level::ERR>("Unable to open fru file",
Patrick Ventureef83b992018-10-21 09:32:44 -0700544 entry("FILE=%s", fruFilename),
Patrick Venture5c787212018-10-17 13:48:23 -0700545 entry("ERRNO=%s", std::strerror(errno)));
Patrick Ventureef83b992018-10-21 09:32:44 -0700546 return cleanupError(fruFilePointer, fruAreaVec);
Vishwa4be4b7a2015-10-31 22:55:50 -0500547 }
548
vishwac93d6d42015-12-16 11:55:16 -0600549 // Get the size of the file to see if it meets minimum requirement
Patrick Ventureef83b992018-10-21 09:32:44 -0700550 if (std::fseek(fruFilePointer, 0, SEEK_END))
Vishwa4be4b7a2015-10-31 22:55:50 -0500551 {
Patrick Venture5c787212018-10-17 13:48:23 -0700552 log<level::ERR>("Unable to seek fru file",
Patrick Ventureef83b992018-10-21 09:32:44 -0700553 entry("FILE=%s", fruFilename),
Patrick Venture5c787212018-10-17 13:48:23 -0700554 entry("ERRNO=%s", std::strerror(errno)));
Patrick Ventureef83b992018-10-21 09:32:44 -0700555 return cleanupError(fruFilePointer, fruAreaVec);
Vishwa4be4b7a2015-10-31 22:55:50 -0500556 }
557
vishwac93d6d42015-12-16 11:55:16 -0600558 // Allocate a buffer to hold entire file content
Patrick Ventureef83b992018-10-21 09:32:44 -0700559 dataLen = std::ftell(fruFilePointer);
560 uint8_t fruData[dataLen] = {0};
Vishwa4be4b7a2015-10-31 22:55:50 -0500561
Patrick Ventureef83b992018-10-21 09:32:44 -0700562 std::rewind(fruFilePointer);
563 bytesRead = std::fread(fruData, dataLen, 1, fruFilePointer);
564 if (bytesRead != 1)
Vishwa4be4b7a2015-10-31 22:55:50 -0500565 {
Patrick Venture5c787212018-10-17 13:48:23 -0700566 log<level::ERR>("Failed reading fru data.",
Patrick Ventureef83b992018-10-21 09:32:44 -0700567 entry("BYTESREAD=%d", bytesRead),
Patrick Venture5c787212018-10-17 13:48:23 -0700568 entry("ERRNO=%s", std::strerror(errno)));
Patrick Ventureef83b992018-10-21 09:32:44 -0700569 return cleanupError(fruFilePointer, fruAreaVec);
Vishwa4be4b7a2015-10-31 22:55:50 -0500570 }
Vishwa4be4b7a2015-10-31 22:55:50 -0500571
vishwac93d6d42015-12-16 11:55:16 -0600572 // We are done reading.
Patrick Ventureef83b992018-10-21 09:32:44 -0700573 std::fclose(fruFilePointer);
574 fruFilePointer = NULL;
vishwac93d6d42015-12-16 11:55:16 -0600575
Patrick Ventureef83b992018-10-21 09:32:44 -0700576 rc = ipmiValidateCommonHeader(fruData, dataLen);
Patrick Venturec9508db2018-10-16 17:18:43 -0700577 if (rc < 0)
Vishwa4be4b7a2015-10-31 22:55:50 -0500578 {
Patrick Ventureef83b992018-10-21 09:32:44 -0700579 return cleanupError(fruFilePointer, fruAreaVec);
vishwac93d6d42015-12-16 11:55:16 -0600580 }
581
Patrick Venturec9508db2018-10-16 17:18:43 -0700582 // Now that we validated the common header, populate various fru sections if
583 // we have them here.
Patrick Ventureef83b992018-10-21 09:32:44 -0700584 rc = ipmiPopulateFruAreas(fruData, dataLen, fruAreaVec);
Patrick Venturec9508db2018-10-16 17:18:43 -0700585 if (rc < 0)
vishwac93d6d42015-12-16 11:55:16 -0600586 {
Patrick Venture5c787212018-10-17 13:48:23 -0700587 log<level::ERR>("Populating FRU areas failed", entry("FRU=%d", fruid));
Patrick Ventureef83b992018-10-21 09:32:44 -0700588 return cleanupError(fruFilePointer, fruAreaVec);
Vishwa4be4b7a2015-10-31 22:55:50 -0500589 }
590 else
591 {
Patrick Ventureef83b992018-10-21 09:32:44 -0700592 log<level::DEBUG>("Populated FRU areas", entry("FILE=%s", fruFilename));
Vishwa4be4b7a2015-10-31 22:55:50 -0500593 }
594
vishwac93d6d42015-12-16 11:55:16 -0600595#ifdef __IPMI_DEBUG__
Patrick Ventureef83b992018-10-21 09:32:44 -0700596 for (const auto& iter : fruAreaVec)
Vishwa4be4b7a2015-10-31 22:55:50 -0500597 {
Patrick Venture0e3a1c42018-10-20 21:15:41 -0700598 std::printf("FRU ID : [%d]\n", iter->getFruID());
599 std::printf("AREA NAME : [%s]\n", iter->getName());
600 std::printf("TYPE : [%d]\n", iter->getType());
601 std::printf("LEN : [%d]\n", iter->getLength());
602 std::printf("BUS NAME : [%s]\n", iter->getBusName());
603 std::printf("OBJ PATH : [%s]\n", iter->getObjectPath());
604 std::printf("INTF NAME :[%s]\n", iter->getIntfName());
Vishwa4be4b7a2015-10-31 22:55:50 -0500605 }
vishwac93d6d42015-12-16 11:55:16 -0600606#endif
607
608 // If the vector is populated with everything, then go ahead and update the
609 // inventory.
Patrick Ventureef83b992018-10-21 09:32:44 -0700610 if (!(fruAreaVec.empty()))
vishwac93d6d42015-12-16 11:55:16 -0600611 {
612
613#ifdef __IPMI_DEBUG__
Patrick Ventureef83b992018-10-21 09:32:44 -0700614 std::printf("\n SIZE of vector is : [%d] \n", fruAreaVec.size());
vishwac93d6d42015-12-16 11:55:16 -0600615#endif
Patrick Ventureef83b992018-10-21 09:32:44 -0700616 rc = updateInventory(fruAreaVec, bus);
Patrick Venturec9508db2018-10-16 17:18:43 -0700617 if (rc < 0)
vishwac93d6d42015-12-16 11:55:16 -0600618 {
Patrick Venture5c787212018-10-17 13:48:23 -0700619 log<level::ERR>("Error updating inventory.");
vishwac93d6d42015-12-16 11:55:16 -0600620 }
621 }
622
623 // we are done with all that we wanted to do. This will do the job of
624 // calling any destructors too.
Patrick Ventureef83b992018-10-21 09:32:44 -0700625 fruAreaVec.clear();
Vishwa4be4b7a2015-10-31 22:55:50 -0500626
627 return rc;
628}