blob: 945abf4718a77ead1bf4111276b664c8f5c32051 [file] [log] [blame]
Patrick Ventureab296412020-12-30 13:39:37 -08001/*
2// Copyright (c) 2018 Intel Corporation
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15*/
16/// \file FruUtils.cpp
17
18#include "FruUtils.hpp"
19
20#include <array>
21#include <cstdint>
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +053022#include <filesystem>
Patrick Ventureab296412020-12-30 13:39:37 -080023#include <iostream>
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +053024#include <numeric>
Patrick Ventureab296412020-12-30 13:39:37 -080025#include <set>
26#include <string>
27#include <vector>
28
29extern "C"
30{
31// Include for I2C_SMBUS_BLOCK_MAX
32#include <linux/i2c.h>
33}
34
Ed Tanous07d467b2021-02-23 14:48:37 -080035static constexpr bool debug = false;
Patrick Ventureab296412020-12-30 13:39:37 -080036constexpr size_t fruVersion = 1; // Current FRU spec version number is 1
37
Ed Tanous07d467b2021-02-23 14:48:37 -080038std::tm intelEpoch(void)
Vijay Khemka06d1b4a2021-02-09 18:39:11 +000039{
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +053040 std::tm val = {};
41 val.tm_year = 1996 - 1900;
Scron-Chang9e5a6752021-03-16 10:51:50 +080042 val.tm_mday = 1;
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +053043 return val;
Vijay Khemka06d1b4a2021-02-09 18:39:11 +000044}
45
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +053046char sixBitToChar(uint8_t val)
Patrick Ventureab296412020-12-30 13:39:37 -080047{
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +053048 return static_cast<char>((val & 0x3f) + ' ');
49}
50
51char bcdPlusToChar(uint8_t val)
52{
53 val &= 0xf;
54 return (val < 10) ? static_cast<char>(val + '0') : bcdHighChars[val - 10];
55}
56
57enum FRUDataEncoding
58{
59 binary = 0x0,
60 bcdPlus = 0x1,
61 sixBitASCII = 0x2,
62 languageDependent = 0x3,
63};
64
65/* Decode FRU data into a std::string, given an input iterator and end. If the
66 * state returned is fruDataOk, then the resulting string is the decoded FRU
67 * data. The input iterator is advanced past the data consumed.
68 *
69 * On fruDataErr, we have lost synchronisation with the length bytes, so the
70 * iterator is no longer usable.
71 */
72std::pair<DecodeState, std::string>
73 decodeFRUData(std::vector<uint8_t>::const_iterator& iter,
74 const std::vector<uint8_t>::const_iterator& end,
75 bool isLangEng)
76{
77 std::string value;
78 unsigned int i;
79
80 /* we need at least one byte to decode the type/len header */
81 if (iter == end)
Patrick Ventureab296412020-12-30 13:39:37 -080082 {
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +053083 std::cerr << "Truncated FRU data\n";
84 return make_pair(DecodeState::err, value);
85 }
86
87 uint8_t c = *(iter++);
88
89 /* 0xc1 is the end marker */
90 if (c == 0xc1)
91 {
92 return make_pair(DecodeState::end, value);
93 }
94
95 /* decode type/len byte */
96 uint8_t type = static_cast<uint8_t>(c >> 6);
97 uint8_t len = static_cast<uint8_t>(c & 0x3f);
98
99 /* we should have at least len bytes of data available overall */
100 if (iter + len > end)
101 {
102 std::cerr << "FRU data field extends past end of FRU area data\n";
103 return make_pair(DecodeState::err, value);
104 }
105
106 switch (type)
107 {
108 case FRUDataEncoding::binary:
Patrick Ventureab296412020-12-30 13:39:37 -0800109 {
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +0530110 std::stringstream ss;
111 ss << std::hex << std::setfill('0');
112 for (i = 0; i < len; i++, iter++)
113 {
114 uint8_t val = static_cast<uint8_t>(*iter);
115 ss << std::setw(2) << static_cast<int>(val);
116 }
117 value = ss.str();
118 break;
Patrick Ventureab296412020-12-30 13:39:37 -0800119 }
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +0530120 case FRUDataEncoding::languageDependent:
121 /* For language-code dependent encodings, assume 8-bit ASCII */
122 value = std::string(iter, iter + len);
123 iter += len;
124
125 /* English text is encoded in 8-bit ASCII + Latin 1. All other
126 * languages are required to use 2-byte unicode. FruDevice does not
127 * handle unicode.
128 */
129 if (!isLangEng)
130 {
131 std::cerr << "Error: Non english string is not supported \n";
132 return make_pair(DecodeState::err, value);
133 }
134
135 break;
136
137 case FRUDataEncoding::bcdPlus:
138 value = std::string();
139 for (i = 0; i < len; i++, iter++)
140 {
141 uint8_t val = *iter;
142 value.push_back(bcdPlusToChar(val >> 4));
143 value.push_back(bcdPlusToChar(val & 0xf));
144 }
145 break;
146
147 case FRUDataEncoding::sixBitASCII:
148 {
149 unsigned int accum = 0;
150 unsigned int accumBitLen = 0;
151 value = std::string();
152 for (i = 0; i < len; i++, iter++)
153 {
154 accum |= *iter << accumBitLen;
155 accumBitLen += 8;
156 while (accumBitLen >= 6)
157 {
158 value.push_back(sixBitToChar(accum & 0x3f));
159 accum >>= 6;
160 accumBitLen -= 6;
161 }
162 }
163 }
164 break;
165 }
166
167 return make_pair(DecodeState::ok, value);
168}
169
170bool checkLangEng(uint8_t lang)
171{
172 // If Lang is not English then the encoding is defined as 2-byte UNICODE,
173 // but we don't support that.
174 if (lang && lang != 25)
175 {
176 std::cerr << "Warning: languages other than English is not "
177 "supported\n";
178 // Return language flag as non english
Patrick Ventureab296412020-12-30 13:39:37 -0800179 return false;
180 }
Ed Tanous07d467b2021-02-23 14:48:37 -0800181 return true;
Patrick Ventureab296412020-12-30 13:39:37 -0800182}
183
Vijay Khemka06d1b4a2021-02-09 18:39:11 +0000184/* This function verifies for other offsets to check if they are not
185 * falling under other field area
186 *
187 * fruBytes: Start of Fru data
188 * currentArea: Index of current area offset to be compared against all area
189 * offset and it is a multiple of 8 bytes as per specification
190 * len: Length of current area space and it is a multiple of 8 bytes
191 * as per specification
192 */
193bool verifyOffset(const std::vector<uint8_t>& fruBytes, fruAreas currentArea,
194 uint8_t len)
195{
196
197 unsigned int fruBytesSize = fruBytes.size();
198
199 // check if Fru data has at least 8 byte header
200 if (fruBytesSize <= fruBlockSize)
201 {
202 std::cerr << "Error: trying to parse empty FRU\n";
203 return false;
204 }
205
206 // Check range of passed currentArea value
207 if (currentArea > fruAreas::fruAreaMultirecord)
208 {
209 std::cerr << "Error: Fru area is out of range\n";
210 return false;
211 }
212
213 unsigned int currentAreaIndex = getHeaderAreaFieldOffset(currentArea);
214 if (currentAreaIndex > fruBytesSize)
215 {
216 std::cerr << "Error: Fru area index is out of range\n";
217 return false;
218 }
219
220 unsigned int start = fruBytes[currentAreaIndex];
221 unsigned int end = start + len;
222
223 /* Verify each offset within the range of start and end */
224 for (fruAreas area = fruAreas::fruAreaInternal;
225 area <= fruAreas::fruAreaMultirecord; ++area)
226 {
227 // skip the current offset
228 if (area == currentArea)
229 {
230 continue;
231 }
232
233 unsigned int areaIndex = getHeaderAreaFieldOffset(area);
234 if (areaIndex > fruBytesSize)
235 {
236 std::cerr << "Error: Fru area index is out of range\n";
237 return false;
238 }
239
240 unsigned int areaOffset = fruBytes[areaIndex];
241 // if areaOffset is 0 means this area is not available so skip
242 if (areaOffset == 0)
243 {
244 continue;
245 }
246
247 // check for overlapping of current offset with given areaoffset
248 if (areaOffset == start || (areaOffset > start && areaOffset < end))
249 {
250 std::cerr << getFruAreaName(currentArea)
251 << " offset is overlapping with " << getFruAreaName(area)
252 << " offset\n";
253 return false;
254 }
255 }
256 return true;
257}
258
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +0530259resCodes formatFRU(const std::vector<uint8_t>& fruBytes,
260 boost::container::flat_map<std::string, std::string>& result)
261{
262 resCodes ret = resCodes::resOK;
263 if (fruBytes.size() <= fruBlockSize)
264 {
265 std::cerr << "Error: trying to parse empty FRU \n";
266 return resCodes::resErr;
267 }
268 result["Common_Format_Version"] =
269 std::to_string(static_cast<int>(*fruBytes.begin()));
270
271 const std::vector<std::string>* fruAreaFieldNames;
272
273 // Don't parse Internal and Multirecord areas
274 for (fruAreas area = fruAreas::fruAreaChassis;
275 area <= fruAreas::fruAreaProduct; ++area)
276 {
277
278 size_t offset = *(fruBytes.begin() + getHeaderAreaFieldOffset(area));
279 if (offset == 0)
280 {
281 continue;
282 }
283 offset *= fruBlockSize;
284 std::vector<uint8_t>::const_iterator fruBytesIter =
285 fruBytes.begin() + offset;
286 if (fruBytesIter + fruBlockSize >= fruBytes.end())
287 {
288 std::cerr << "Not enough data to parse \n";
289 return resCodes::resErr;
290 }
291 // check for format version 1
292 if (*fruBytesIter != 0x01)
293 {
294 std::cerr << "Unexpected version " << *fruBytesIter << "\n";
295 return resCodes::resErr;
296 }
297 ++fruBytesIter;
298
299 /* Verify other area offset for overlap with current area by passing
300 * length of current area offset pointed by *fruBytesIter
301 */
302 if (!verifyOffset(fruBytes, area, *fruBytesIter))
303 {
304 return resCodes::resErr;
305 }
306
307 uint8_t fruAreaSize = *fruBytesIter * fruBlockSize;
308 std::vector<uint8_t>::const_iterator fruBytesIterEndArea =
309 fruBytes.begin() + offset + fruAreaSize - 1;
310 ++fruBytesIter;
311
312 uint8_t fruComputedChecksum =
313 calculateChecksum(fruBytes.begin() + offset, fruBytesIterEndArea);
314 if (fruComputedChecksum != *fruBytesIterEndArea)
315 {
316 std::stringstream ss;
317 ss << std::hex << std::setfill('0');
318 ss << "Checksum error in FRU area " << getFruAreaName(area) << "\n";
319 ss << "\tComputed checksum: 0x" << std::setw(2)
320 << static_cast<int>(fruComputedChecksum) << "\n";
321 ss << "\tThe read checksum: 0x" << std::setw(2)
322 << static_cast<int>(*fruBytesIterEndArea) << "\n";
323 std::cerr << ss.str();
324 ret = resCodes::resWarn;
325 }
326
327 /* Set default language flag to true as Chassis Fru area are always
328 * encoded in English defined in Section 10 of Fru specification
329 */
330
331 bool isLangEng = true;
332 switch (area)
333 {
334 case fruAreas::fruAreaChassis:
335 {
336 result["CHASSIS_TYPE"] =
337 std::to_string(static_cast<int>(*fruBytesIter));
338 fruBytesIter += 1;
Ed Tanous07d467b2021-02-23 14:48:37 -0800339 fruAreaFieldNames = &chassisFruAreas;
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +0530340 break;
341 }
342 case fruAreas::fruAreaBoard:
343 {
344 uint8_t lang = *fruBytesIter;
345 result["BOARD_LANGUAGE_CODE"] =
346 std::to_string(static_cast<int>(lang));
347 isLangEng = checkLangEng(lang);
348 fruBytesIter += 1;
349
350 unsigned int minutes = *fruBytesIter |
351 *(fruBytesIter + 1) << 8 |
352 *(fruBytesIter + 2) << 16;
353 std::tm fruTime = intelEpoch();
354 std::time_t timeValue = std::mktime(&fruTime);
355 timeValue += minutes * 60;
356 fruTime = *std::gmtime(&timeValue);
357
358 // Tue Nov 20 23:08:00 2018
359 char timeString[32] = {0};
360 auto bytes = std::strftime(timeString, sizeof(timeString),
361 "%Y-%m-%d - %H:%M:%S", &fruTime);
362 if (bytes == 0)
363 {
364 std::cerr << "invalid time string encountered\n";
365 return resCodes::resErr;
366 }
367
368 result["BOARD_MANUFACTURE_DATE"] = std::string(timeString);
369 fruBytesIter += 3;
Ed Tanous07d467b2021-02-23 14:48:37 -0800370 fruAreaFieldNames = &boardFruAreas;
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +0530371 break;
372 }
373 case fruAreas::fruAreaProduct:
374 {
375 uint8_t lang = *fruBytesIter;
376 result["PRODUCT_LANGUAGE_CODE"] =
377 std::to_string(static_cast<int>(lang));
378 isLangEng = checkLangEng(lang);
379 fruBytesIter += 1;
Ed Tanous07d467b2021-02-23 14:48:37 -0800380 fruAreaFieldNames = &productFruAreas;
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +0530381 break;
382 }
383 default:
384 {
385 std::cerr << "Internal error: unexpected FRU area index: "
386 << static_cast<int>(area) << " \n";
387 return resCodes::resErr;
388 }
389 }
390 size_t fieldIndex = 0;
391 DecodeState state;
392 do
393 {
394 auto res =
395 decodeFRUData(fruBytesIter, fruBytesIterEndArea, isLangEng);
396 state = res.first;
397 std::string value = res.second;
398 std::string name;
399 if (fieldIndex < fruAreaFieldNames->size())
400 {
401 name = std::string(getFruAreaName(area)) + "_" +
402 fruAreaFieldNames->at(fieldIndex);
403 }
Scron-Chang77987122021-03-30 20:53:52 +0800404 else
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +0530405 {
406 name =
407 std::string(getFruAreaName(area)) + "_" +
Ed Tanous07d467b2021-02-23 14:48:37 -0800408 fruCustomFieldName +
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +0530409 std::to_string(fieldIndex - fruAreaFieldNames->size() + 1);
410 }
411
412 if (state == DecodeState::ok)
413 {
414 // Strip non null characters from the end
415 value.erase(std::find_if(value.rbegin(), value.rend(),
416 [](char ch) { return ch != 0; })
417 .base(),
418 value.end());
419
420 result[name] = std::move(value);
421 ++fieldIndex;
422 }
423 else if (state == DecodeState::err)
424 {
425 std::cerr << "Error while parsing " << name << "\n";
426 ret = resCodes::resWarn;
427 // Cancel decoding if failed to parse any of mandatory
428 // fields
429 if (fieldIndex < fruAreaFieldNames->size())
430 {
431 std::cerr << "Failed to parse mandatory field \n";
432 return resCodes::resErr;
433 }
434 }
435 else
436 {
437 if (fieldIndex < fruAreaFieldNames->size())
438 {
439 std::cerr << "Mandatory fields absent in FRU area "
440 << getFruAreaName(area) << " after " << name
441 << "\n";
442 ret = resCodes::resWarn;
443 }
444 }
445 } while (state == DecodeState::ok);
446 for (; fruBytesIter < fruBytesIterEndArea; fruBytesIter++)
447 {
448 uint8_t c = *fruBytesIter;
449 if (c)
450 {
451 std::cerr << "Non-zero byte after EndOfFields in FRU area "
452 << getFruAreaName(area) << "\n";
453 ret = resCodes::resWarn;
454 break;
455 }
456 }
457 }
458
459 return ret;
460}
461
462// Calculate new checksum for fru info area
463uint8_t calculateChecksum(std::vector<uint8_t>::const_iterator iter,
464 std::vector<uint8_t>::const_iterator end)
465{
466 constexpr int checksumMod = 256;
467 constexpr uint8_t modVal = 0xFF;
468 int sum = std::accumulate(iter, end, 0);
469 int checksum = (checksumMod - sum) & modVal;
470 return static_cast<uint8_t>(checksum);
471}
472
473uint8_t calculateChecksum(std::vector<uint8_t>& fruAreaData)
474{
475 return calculateChecksum(fruAreaData.begin(), fruAreaData.end());
476}
477
478// Update new fru area length &
479// Update checksum at new checksum location
480// Return the offset of the area checksum byte
481unsigned int updateFRUAreaLenAndChecksum(std::vector<uint8_t>& fruData,
482 size_t fruAreaStart,
483 size_t fruAreaEndOfFieldsOffset,
484 size_t fruAreaEndOffset)
485{
486 size_t traverseFRUAreaIndex = fruAreaEndOfFieldsOffset - fruAreaStart;
487
488 // fill zeros for any remaining unused space
489 std::fill(fruData.begin() + fruAreaEndOfFieldsOffset,
490 fruData.begin() + fruAreaEndOffset, 0);
491
492 size_t mod = traverseFRUAreaIndex % fruBlockSize;
493 size_t checksumLoc;
494 if (!mod)
495 {
496 traverseFRUAreaIndex += (fruBlockSize);
497 checksumLoc = fruAreaEndOfFieldsOffset + (fruBlockSize - 1);
498 }
499 else
500 {
501 traverseFRUAreaIndex += (fruBlockSize - mod);
502 checksumLoc = fruAreaEndOfFieldsOffset + (fruBlockSize - mod - 1);
503 }
504
505 size_t newFRUAreaLen = (traverseFRUAreaIndex / fruBlockSize) +
506 ((traverseFRUAreaIndex % fruBlockSize) != 0);
507 size_t fruAreaLengthLoc = fruAreaStart + 1;
508 fruData[fruAreaLengthLoc] = static_cast<uint8_t>(newFRUAreaLen);
509
510 // Calculate new checksum
511 std::vector<uint8_t> finalFRUData;
512 std::copy_n(fruData.begin() + fruAreaStart, checksumLoc - fruAreaStart,
513 std::back_inserter(finalFRUData));
514
515 fruData[checksumLoc] = calculateChecksum(finalFRUData);
516 return checksumLoc;
517}
518
519ssize_t getFieldLength(uint8_t fruFieldTypeLenValue)
520{
521 constexpr uint8_t typeLenMask = 0x3F;
522 constexpr uint8_t endOfFields = 0xC1;
523 if (fruFieldTypeLenValue == endOfFields)
524 {
525 return -1;
526 }
Ed Tanous07d467b2021-02-23 14:48:37 -0800527 return fruFieldTypeLenValue & typeLenMask;
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +0530528}
529
530bool validateHeader(const std::array<uint8_t, I2C_SMBUS_BLOCK_MAX>& blockData)
531{
532 // ipmi spec format version number is currently at 1, verify it
533 if (blockData[0] != fruVersion)
534 {
Ed Tanous07d467b2021-02-23 14:48:37 -0800535 if (debug)
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +0530536 {
537 std::cerr << "FRU spec version " << (int)(blockData[0])
538 << " not supported. Supported version is "
539 << (int)(fruVersion) << "\n";
540 }
541 return false;
542 }
543
544 // verify pad is set to 0
545 if (blockData[6] != 0x0)
546 {
Ed Tanous07d467b2021-02-23 14:48:37 -0800547 if (debug)
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +0530548 {
549 std::cerr << "PAD value in header is non zero, value is "
550 << (int)(blockData[6]) << "\n";
551 }
552 return false;
553 }
554
555 // verify offsets are 0, or don't point to another offset
556 std::set<uint8_t> foundOffsets;
557 for (int ii = 1; ii < 6; ii++)
558 {
559 if (blockData[ii] == 0)
560 {
561 continue;
562 }
563 auto inserted = foundOffsets.insert(blockData[ii]);
564 if (!inserted.second)
565 {
566 return false;
567 }
568 }
569
570 // validate checksum
571 size_t sum = 0;
572 for (int jj = 0; jj < 7; jj++)
573 {
574 sum += blockData[jj];
575 }
576 sum = (256 - sum) & 0xFF;
577
578 if (sum != blockData[7])
579 {
Ed Tanous07d467b2021-02-23 14:48:37 -0800580 if (debug)
Kumar Thangavelc8dc4af2021-01-12 10:36:38 +0530581 {
582 std::cerr << "Checksum " << (int)(blockData[7])
583 << " is invalid. calculated checksum is " << (int)(sum)
584 << "\n";
585 }
586 return false;
587 }
588 return true;
589}
590
Patrick Ventureab296412020-12-30 13:39:37 -0800591std::vector<uint8_t> readFRUContents(int flag, int file, uint16_t address,
Ed Tanous07d467b2021-02-23 14:48:37 -0800592 const ReadBlockFunc& readBlock,
Patrick Ventureab296412020-12-30 13:39:37 -0800593 const std::string& errorHelp)
594{
595 std::array<uint8_t, I2C_SMBUS_BLOCK_MAX> blockData;
596
597 if (readBlock(flag, file, address, 0x0, 0x8, blockData.data()) < 0)
598 {
599 std::cerr << "failed to read " << errorHelp << "\n";
600 return {};
601 }
602
603 // check the header checksum
604 if (!validateHeader(blockData))
605 {
Ed Tanous07d467b2021-02-23 14:48:37 -0800606 if (debug)
Patrick Ventureab296412020-12-30 13:39:37 -0800607 {
608 std::cerr << "Illegal header " << errorHelp << "\n";
609 }
610
611 return {};
612 }
613
614 std::vector<uint8_t> device;
615 device.insert(device.end(), blockData.begin(), blockData.begin() + 8);
616
617 bool hasMultiRecords = false;
618 size_t fruLength = fruBlockSize; // At least FRU header is present
Vijay Khemka7792e392021-01-25 13:03:56 -0800619 unsigned int prevOffset = 0;
Patrick Ventureab296412020-12-30 13:39:37 -0800620 for (fruAreas area = fruAreas::fruAreaInternal;
621 area <= fruAreas::fruAreaMultirecord; ++area)
622 {
623 // Offset value can be 255.
624 unsigned int areaOffset = device[getHeaderAreaFieldOffset(area)];
625 if (areaOffset == 0)
626 {
627 continue;
628 }
629
Vijay Khemka7792e392021-01-25 13:03:56 -0800630 /* Check for offset order, as per Section 17 of FRU specification, FRU
631 * information areas are required to be in order in FRU data layout
632 * which means all offset value should be in increasing order or can be
633 * 0 if that area is not present
634 */
635 if (areaOffset <= prevOffset)
636 {
637 std::cerr << "Fru area offsets are not in required order as per "
638 "Section 17 of Fru specification\n";
639 return {};
640 }
641 prevOffset = areaOffset;
642
Patrick Ventureab296412020-12-30 13:39:37 -0800643 // MultiRecords are different. area is not tracking section, it's
644 // walking the common header.
645 if (area == fruAreas::fruAreaMultirecord)
646 {
647 hasMultiRecords = true;
648 break;
649 }
650
651 areaOffset *= fruBlockSize;
652
653 if (readBlock(flag, file, address, static_cast<uint16_t>(areaOffset),
654 0x2, blockData.data()) < 0)
655 {
656 std::cerr << "failed to read " << errorHelp << "\n";
657 return {};
658 }
659
660 // Ignore data type (blockData is already unsigned).
661 size_t length = blockData[1] * fruBlockSize;
662 areaOffset += length;
663 fruLength = (areaOffset > fruLength) ? areaOffset : fruLength;
664 }
665
666 if (hasMultiRecords)
667 {
668 // device[area count] is the index to the last area because the 0th
669 // entry is not an offset in the common header.
670 unsigned int areaOffset =
671 device[getHeaderAreaFieldOffset(fruAreas::fruAreaMultirecord)];
672 areaOffset *= fruBlockSize;
673
674 // the multi-area record header is 5 bytes long.
675 constexpr size_t multiRecordHeaderSize = 5;
676 constexpr uint8_t multiRecordEndOfListMask = 0x80;
677
678 // Sanity hard-limit to 64KB.
679 while (areaOffset < std::numeric_limits<uint16_t>::max())
680 {
681 // In multi-area, the area offset points to the 0th record, each
682 // record has 3 bytes of the header we care about.
683 if (readBlock(flag, file, address,
684 static_cast<uint16_t>(areaOffset), 0x3,
685 blockData.data()) < 0)
686 {
687 std::cerr << "failed to read " << errorHelp << "\n";
688 return {};
689 }
690
691 // Ok, let's check the record length, which is in bytes (unsigned,
692 // up to 255, so blockData should hold uint8_t not char)
693 size_t recordLength = blockData[2];
694 areaOffset += (recordLength + multiRecordHeaderSize);
695 fruLength = (areaOffset > fruLength) ? areaOffset : fruLength;
696
697 // If this is the end of the list bail.
698 if ((blockData[1] & multiRecordEndOfListMask))
699 {
700 break;
701 }
702 }
703 }
704
705 // You already copied these first 8 bytes (the ipmi fru header size)
706 fruLength -= std::min(fruBlockSize, fruLength);
707
708 int readOffset = fruBlockSize;
709
710 while (fruLength > 0)
711 {
712 size_t requestLength =
713 std::min(static_cast<size_t>(I2C_SMBUS_BLOCK_MAX), fruLength);
714
715 if (readBlock(flag, file, address, static_cast<uint16_t>(readOffset),
716 static_cast<uint8_t>(requestLength),
717 blockData.data()) < 0)
718 {
719 std::cerr << "failed to read " << errorHelp << "\n";
720 return {};
721 }
722
723 device.insert(device.end(), blockData.begin(),
724 blockData.begin() + requestLength);
725
726 readOffset += requestLength;
727 fruLength -= std::min(requestLength, fruLength);
728 }
729
730 return device;
731}
732
733unsigned int getHeaderAreaFieldOffset(fruAreas area)
734{
735 return static_cast<unsigned int>(area) + 1;
736}