blob: 2b2dc231001d42b8c95c59389f00e1f20e130adc [file] [log] [blame]
Deepak Kodihalli70e8db02019-10-21 00:59:46 -05001#include "fru.hpp"
2
Deepak Kodihallid130e1a2020-06-17 05:55:32 -05003#include "common/utils.hpp"
Deepak Kodihalli70e8db02019-10-21 00:59:46 -05004
George Liuc453e162022-12-21 17:16:23 +08005#include <libpldm/entity.h>
6#include <libpldm/utils.h>
Deepak Kodihalli70e8db02019-10-21 00:59:46 -05007#include <systemd/sd-journal.h>
8
Riya Dixit49cfb132023-03-02 04:26:53 -06009#include <phosphor-logging/lg2.hpp>
Deepak Kodihalli70e8db02019-10-21 00:59:46 -050010#include <sdbusplus/bus.hpp>
Deepak Kodihalli70e8db02019-10-21 00:59:46 -050011
George Liu6492f522020-06-16 10:34:05 +080012#include <iostream>
George Liu5bfb0dc2021-05-01 14:28:41 +080013#include <optional>
George Liu6492f522020-06-16 10:34:05 +080014#include <set>
George Liu5bfb0dc2021-05-01 14:28:41 +080015#include <stack>
George Liu077fea22020-04-08 16:47:14 +080016
Riya Dixit49cfb132023-03-02 04:26:53 -060017PHOSPHOR_LOG2_USING;
18
Deepak Kodihalli70e8db02019-10-21 00:59:46 -050019namespace pldm
20{
Deepak Kodihalli70e8db02019-10-21 00:59:46 -050021namespace responder
22{
George Liu5bfb0dc2021-05-01 14:28:41 +080023
24constexpr auto root = "/xyz/openbmc_project/inventory/";
25
26std::optional<pldm_entity>
27 FruImpl::getEntityByObjectPath(const dbus::InterfaceMap& intfMaps)
28{
29 for (const auto& intfMap : intfMaps)
30 {
31 try
32 {
33 pldm_entity entity{};
34 entity.entity_type = parser.getEntityType(intfMap.first);
35 return entity;
36 }
37 catch (const std::exception& e)
38 {
39 continue;
40 }
41 }
42
43 return std::nullopt;
44}
45
46void FruImpl::updateAssociationTree(const dbus::ObjectValueTree& objects,
47 const std::string& path)
48{
49 if (path.find(root) == std::string::npos)
50 {
51 return;
52 }
53
54 std::stack<std::string> tmpObjPaths{};
55 tmpObjPaths.emplace(path);
56
57 auto obj = pldm::utils::findParent(path);
58 while ((obj + '/') != root)
59 {
60 tmpObjPaths.emplace(obj);
61 obj = pldm::utils::findParent(obj);
62 }
63
64 std::stack<std::string> tmpObj = tmpObjPaths;
65 while (!tmpObj.empty())
66 {
67 std::string s = tmpObj.top();
George Liu5bfb0dc2021-05-01 14:28:41 +080068 tmpObj.pop();
69 }
70 // Update pldm entity to assocition tree
71 std::string prePath = tmpObjPaths.top();
72 while (!tmpObjPaths.empty())
73 {
74 std::string currPath = tmpObjPaths.top();
75 tmpObjPaths.pop();
76
77 do
78 {
79 if (objToEntityNode.contains(currPath))
80 {
81 pldm_entity node =
82 pldm_entity_extract(objToEntityNode.at(currPath));
Manojkiran Eda8e715ae2021-07-04 21:46:43 +053083 if (pldm_entity_association_tree_find_with_locality(
84 entityTree, &node, false))
George Liu5bfb0dc2021-05-01 14:28:41 +080085 {
86 break;
87 }
88 }
89 else
90 {
91 if (!objects.contains(currPath))
92 {
93 break;
94 }
95
96 auto entityPtr = getEntityByObjectPath(objects.at(currPath));
97 if (!entityPtr)
98 {
99 break;
100 }
101
102 pldm_entity entity = *entityPtr;
103
104 for (auto& it : objToEntityNode)
105 {
106 pldm_entity node = pldm_entity_extract(it.second);
107 if (node.entity_type == entity.entity_type)
108 {
109 entity.entity_instance_num = node.entity_instance_num +
110 1;
111 break;
112 }
113 }
114
115 if (currPath == prePath)
116 {
Manojkiran Eda8e715ae2021-07-04 21:46:43 +0530117 auto node = pldm_entity_association_tree_add_entity(
George Liu5bfb0dc2021-05-01 14:28:41 +0800118 entityTree, &entity, 0xFFFF, nullptr,
Manojkiran Eda8e715ae2021-07-04 21:46:43 +0530119 PLDM_ENTITY_ASSOCIAION_PHYSICAL, false, true, 0xFFFF);
George Liu5bfb0dc2021-05-01 14:28:41 +0800120 objToEntityNode[currPath] = node;
121 }
122 else
123 {
124 if (objToEntityNode.contains(prePath))
125 {
Manojkiran Eda8e715ae2021-07-04 21:46:43 +0530126 auto node = pldm_entity_association_tree_add_entity(
George Liu5bfb0dc2021-05-01 14:28:41 +0800127 entityTree, &entity, 0xFFFF,
128 objToEntityNode[prePath],
Manojkiran Eda8e715ae2021-07-04 21:46:43 +0530129 PLDM_ENTITY_ASSOCIAION_PHYSICAL, false, true,
130 0xFFFF);
George Liu5bfb0dc2021-05-01 14:28:41 +0800131 objToEntityNode[currPath] = node;
132 }
133 }
134 }
135 } while (0);
136
137 prePath = currPath;
138 }
139}
140
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530141void FruImpl::buildFRUTable()
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500142{
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530143 if (isBuilt)
144 {
145 return;
146 }
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500147
Tom Josephf0076332020-02-06 10:18:50 +0530148 fru_parser::DBusLookupInfo dbusInfo;
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500149 // Read the all the inventory D-Bus objects
150 auto& bus = pldm::utils::DBusHandler::getBus();
151 dbus::ObjectValueTree objects;
152
153 try
154 {
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530155 dbusInfo = parser.inventoryLookup();
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500156 auto method = bus.new_method_call(
157 std::get<0>(dbusInfo).c_str(), std::get<1>(dbusInfo).c_str(),
158 "org.freedesktop.DBus.ObjectManager", "GetManagedObjects");
vkaverap@in.ibm.com91a092f2023-09-18 23:39:44 -0500159 auto reply = bus.call(method, dbusTimeout);
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500160 reply.read(objects);
161 }
162 catch (const std::exception& e)
163 {
Riya Dixit49cfb132023-03-02 04:26:53 -0600164 error(
165 "Look up of inventory objects failed and PLDM FRU table creation failed");
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500166 return;
167 }
168
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500169 auto itemIntfsLookup = std::get<2>(dbusInfo);
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500170
171 for (const auto& object : objects)
172 {
173 const auto& interfaces = object.second;
Sridevi Ramesheefe49b2022-06-27 11:51:02 -0500174 bool isPresent = pldm::utils::checkForFruPresence(object.first.str);
175 // Do not create fru record if fru is not present.
176 // Pick up the next available fru.
177 if (!isPresent)
178 {
179 continue;
180 }
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500181 for (const auto& interface : interfaces)
182 {
183 if (itemIntfsLookup.find(interface.first) != itemIntfsLookup.end())
184 {
185 // An exception will be thrown by getRecordInfo, if the item
186 // D-Bus interface name specified in FRU_Master.json does
187 // not have corresponding config jsons
188 try
189 {
George Liu5bfb0dc2021-05-01 14:28:41 +0800190 updateAssociationTree(objects, object.first.str);
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500191 pldm_entity entity{};
George Liu5bfb0dc2021-05-01 14:28:41 +0800192 if (objToEntityNode.contains(object.first.str))
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500193 {
George Liu5bfb0dc2021-05-01 14:28:41 +0800194 pldm_entity_node* node =
195 objToEntityNode.at(object.first.str);
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500196
George Liu5bfb0dc2021-05-01 14:28:41 +0800197 entity = pldm_entity_extract(node);
198 }
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500199
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530200 auto recordInfos = parser.getRecordInfo(interface.first);
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500201 populateRecords(interfaces, recordInfos, entity);
George Liuc4ea6a92020-07-14 15:48:44 +0800202
203 associatedEntityMap.emplace(object.first, entity);
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500204 break;
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500205 }
206 catch (const std::exception& e)
207 {
Riya Dixit797f3382023-08-22 22:27:51 -0500208 error(
Riya Dixit49cfb132023-03-02 04:26:53 -0600209 "Config JSONs missing for the item interface type, interface = {INTF}",
210 "INTF", interface.first);
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500211 break;
212 }
213 }
214 }
215 }
216
Andrew Jefferyb0ba34d2023-07-17 17:47:16 +0930217 int rc = pldm_entity_association_pdr_add_check(entityTree, pdrRepo, false,
218 TERMINUS_HANDLE);
219 if (rc < 0)
220 {
221 // pldm_entity_assocation_pdr_add() assert()ed on failure
222 error("Failed to add PLDM entity association PDR: {LIBPLDM_ERROR}",
223 "LIBPLDM_ERROR", rc);
224 throw std::runtime_error("Failed to add PLDM entity association PDR");
225 }
226
Sampa Misrac073a202021-05-08 10:56:05 -0500227 // save a copy of bmc's entity association tree
228 pldm_entity_association_tree_copy_root(entityTree, bmcEntityTree);
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500229
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530230 isBuilt = true;
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500231}
Pavithra Barithaya47180ac2020-10-28 02:12:05 -0500232std::string FruImpl::populatefwVersion()
233{
234 static constexpr auto fwFunctionalObjPath =
235 "/xyz/openbmc_project/software/functional";
236 auto& bus = pldm::utils::DBusHandler::getBus();
237 std::string currentBmcVersion;
238 try
239 {
Patrick Williams6da4f912023-05-10 07:50:53 -0500240 auto method = bus.new_method_call(pldm::utils::mapperService,
241 fwFunctionalObjPath,
242 pldm::utils::dbusProperties, "Get");
Pavithra Barithaya47180ac2020-10-28 02:12:05 -0500243 method.append("xyz.openbmc_project.Association", "endpoints");
244 std::variant<std::vector<std::string>> paths;
vkaverap@in.ibm.com91a092f2023-09-18 23:39:44 -0500245 auto reply = bus.call(method, dbusTimeout);
Pavithra Barithaya47180ac2020-10-28 02:12:05 -0500246 reply.read(paths);
247 auto fwRunningVersion = std::get<std::vector<std::string>>(paths)[0];
248 constexpr auto versionIntf = "xyz.openbmc_project.Software.Version";
249 auto version = pldm::utils::DBusHandler().getDbusPropertyVariant(
250 fwRunningVersion.c_str(), "Version", versionIntf);
251 currentBmcVersion = std::get<std::string>(version);
252 }
253 catch (const std::exception& e)
254 {
Riya Dixit49cfb132023-03-02 04:26:53 -0600255 error("failed to make a d-bus call Asociation, ERROR= {ERR_EXCEP}",
256 "ERR_EXCEP", e.what());
Pavithra Barithaya47180ac2020-10-28 02:12:05 -0500257 return {};
258 }
259 return currentBmcVersion;
260}
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500261void FruImpl::populateRecords(
262 const pldm::responder::dbus::InterfaceMap& interfaces,
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500263 const fru_parser::FruRecordInfos& recordInfos, const pldm_entity& entity)
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500264{
265 // recordSetIdentifier for the FRU will be set when the first record gets
266 // added for the FRU
267 uint16_t recordSetIdentifier = 0;
268 auto numRecsCount = numRecs;
Pavithra Barithaya4f2538a2021-03-05 07:32:15 -0600269 static uint32_t bmc_record_handle = 0;
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500270
Patrick Williams6da4f912023-05-10 07:50:53 -0500271 for (const auto& [recType, encType, fieldInfos] : recordInfos)
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500272 {
273 std::vector<uint8_t> tlvs;
274 uint8_t numFRUFields = 0;
Patrick Williams6da4f912023-05-10 07:50:53 -0500275 for (const auto& [intf, prop, propType, fieldTypeNum] : fieldInfos)
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500276 {
277 try
278 {
Pavithra Barithaya47180ac2020-10-28 02:12:05 -0500279 pldm::responder::dbus::Value propValue;
Manojkiran Eda2b7c1bf2021-09-09 12:26:00 +0530280
281 // Assuming that 0 container Id is assigned to the System (as
282 // that should be the top most container as per dbus hierarchy)
283 if (entity.entity_container_id == 0 && prop == "Version")
Pavithra Barithaya47180ac2020-10-28 02:12:05 -0500284 {
285 propValue = populatefwVersion();
286 }
287 else
288 {
289 propValue = interfaces.at(intf).at(prop);
290 }
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500291 if (propType == "bytearray")
292 {
293 auto byteArray = std::get<std::vector<uint8_t>>(propValue);
294 if (!byteArray.size())
295 {
296 continue;
297 }
298
299 numFRUFields++;
300 tlvs.emplace_back(fieldTypeNum);
301 tlvs.emplace_back(byteArray.size());
302 std::move(std::begin(byteArray), std::end(byteArray),
303 std::back_inserter(tlvs));
304 }
305 else if (propType == "string")
306 {
307 auto str = std::get<std::string>(propValue);
308 if (!str.size())
309 {
310 continue;
311 }
312
313 numFRUFields++;
314 tlvs.emplace_back(fieldTypeNum);
315 tlvs.emplace_back(str.size());
316 std::move(std::begin(str), std::end(str),
317 std::back_inserter(tlvs));
318 }
319 }
320 catch (const std::out_of_range& e)
321 {
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500322 continue;
323 }
324 }
325
326 if (tlvs.size())
327 {
328 if (numRecs == numRecsCount)
329 {
330 recordSetIdentifier = nextRSI();
Pavithra Barithaya4f2538a2021-03-05 07:32:15 -0600331 bmc_record_handle = nextRecordHandle();
Andrew Jeffery2e248e82023-07-03 17:23:24 +0930332 int rc = pldm_pdr_add_fru_record_set_check(
Manojkiran Edacc5f1582021-09-29 17:03:06 +0530333 pdrRepo, TERMINUS_HANDLE, recordSetIdentifier,
334 entity.entity_type, entity.entity_instance_num,
Andrew Jeffery2e248e82023-07-03 17:23:24 +0930335 entity.entity_container_id, &bmc_record_handle);
336 if (rc)
337 {
338 // pldm_pdr_add_fru_record_set() assert()ed on failure
339 throw std::runtime_error(
340 "Failed to add PDR FRU record set");
341 }
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500342 }
343 auto curSize = table.size();
344 table.resize(curSize + recHeaderSize + tlvs.size());
345 encode_fru_record(table.data(), table.size(), &curSize,
346 recordSetIdentifier, recType, numFRUFields,
347 encType, tlvs.data(), tlvs.size());
348 numRecs++;
349 }
350 }
351}
352
Pavithra Barithaya9e6631e2024-01-22 00:46:32 -0600353std::vector<uint8_t> FruImpl::tableResize()
354{
355 std::vector<uint8_t> tempTable;
356
357 if (table.size())
358 {
359 std::copy(table.begin(), table.end(), std::back_inserter(tempTable));
360 padBytes = pldm::utils::getNumPadBytes(table.size());
361 tempTable.resize(tempTable.size() + padBytes, 0);
362 }
363 return tempTable;
364}
365
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500366void FruImpl::getFRUTable(Response& response)
367{
368 auto hdrSize = response.size();
Pavithra Barithaya9e6631e2024-01-22 00:46:32 -0600369 std::vector<uint8_t> tempTable;
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500370
Pavithra Barithaya9e6631e2024-01-22 00:46:32 -0600371 if (table.size())
372 {
373 tempTable = tableResize();
374 checksum = crc32(tempTable.data(), tempTable.size());
375 }
376 response.resize(hdrSize + tempTable.size() + sizeof(checksum), 0);
377 std::copy(tempTable.begin(), tempTable.end(), response.begin() + hdrSize);
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500378
379 // Copy the checksum to response data
Pavithra Barithaya9e6631e2024-01-22 00:46:32 -0600380 auto iter = response.begin() + hdrSize + tempTable.size();
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500381 std::copy_n(reinterpret_cast<const uint8_t*>(&checksum), sizeof(checksum),
382 iter);
383}
384
Pavithra Barithaya9e6631e2024-01-22 00:46:32 -0600385void FruImpl::getFRURecordTableMetadata()
386{
387 std::vector<uint8_t> tempTable;
388 if (table.size())
389 {
390 tempTable = tableResize();
391 checksum = crc32(tempTable.data(), tempTable.size());
392 }
393}
394
John Wang9e82ad12020-06-12 10:53:32 +0800395int FruImpl::getFRURecordByOption(std::vector<uint8_t>& fruData,
396 uint16_t /* fruTableHandle */,
397 uint16_t recordSetIdentifer,
398 uint8_t recordType, uint8_t fieldType)
399{
Manojkiran Eda31a78442021-09-12 15:18:25 +0530400 using sum = uint32_t;
401
John Wang9e82ad12020-06-12 10:53:32 +0800402 // FRU table is built lazily, build if not done.
403 buildFRUTable();
404
405 /* 7 is sizeof(checksum,4) + padBytesMax(3)
406 * We can not know size of the record table got by options in advance, but
407 * it must be less than the source table. So it's safe to use sizeof the
408 * source table + 7 as the buffer length
409 */
410 size_t recordTableSize = table.size() - padBytes + 7;
411 fruData.resize(recordTableSize, 0);
412
Andrew Jeffery663783b2023-07-03 12:58:14 +0930413 int rc = get_fru_record_by_option_check(
414 table.data(), table.size() - padBytes, fruData.data(), &recordTableSize,
415 recordSetIdentifer, recordType, fieldType);
John Wang9e82ad12020-06-12 10:53:32 +0800416
Andrew Jeffery663783b2023-07-03 12:58:14 +0930417 if (rc != PLDM_SUCCESS || recordTableSize == 0)
John Wang9e82ad12020-06-12 10:53:32 +0800418 {
419 return PLDM_FRU_DATA_STRUCTURE_TABLE_UNAVAILABLE;
420 }
421
Sridevi Ramesheefe49b2022-06-27 11:51:02 -0500422 auto pads = pldm::utils::getNumPadBytes(recordTableSize);
Manojkiran Eda31a78442021-09-12 15:18:25 +0530423 crc32(fruData.data(), recordTableSize + pads);
John Wang9e82ad12020-06-12 10:53:32 +0800424
425 auto iter = fruData.begin() + recordTableSize + pads;
426 std::copy_n(reinterpret_cast<const uint8_t*>(&checksum), sizeof(checksum),
427 iter);
428 fruData.resize(recordTableSize + pads + sizeof(sum));
429
430 return PLDM_SUCCESS;
431}
432
Deepak Kodihallie60c5822019-10-23 03:26:15 -0500433namespace fru
434{
Deepak Kodihallie60c5822019-10-23 03:26:15 -0500435Response Handler::getFRURecordTableMetadata(const pldm_msg* request,
436 size_t /*payloadLength*/)
437{
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530438 // FRU table is built lazily, build if not done.
439 buildFRUTable();
440
Deepak Kodihallie60c5822019-10-23 03:26:15 -0500441 constexpr uint8_t major = 0x01;
442 constexpr uint8_t minor = 0x00;
443 constexpr uint32_t maxSize = 0xFFFFFFFF;
444
445 Response response(sizeof(pldm_msg_hdr) +
446 PLDM_GET_FRU_RECORD_TABLE_METADATA_RESP_BYTES,
447 0);
448 auto responsePtr = reinterpret_cast<pldm_msg*>(response.data());
449
Pavithra Barithaya9e6631e2024-01-22 00:46:32 -0600450 impl.getFRURecordTableMetadata();
451
Deepak Kodihallie60c5822019-10-23 03:26:15 -0500452 auto rc = encode_get_fru_record_table_metadata_resp(
453 request->hdr.instance_id, PLDM_SUCCESS, major, minor, maxSize,
454 impl.size(), impl.numRSI(), impl.numRecords(), impl.checkSum(),
455 responsePtr);
456 if (rc != PLDM_SUCCESS)
457 {
458 return ccOnlyResponse(request, rc);
459 }
460
461 return response;
462}
463
464Response Handler::getFRURecordTable(const pldm_msg* request,
465 size_t payloadLength)
466{
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530467 // FRU table is built lazily, build if not done.
468 buildFRUTable();
469
Deepak Kodihallie60c5822019-10-23 03:26:15 -0500470 if (payloadLength != PLDM_GET_FRU_RECORD_TABLE_REQ_BYTES)
471 {
472 return ccOnlyResponse(request, PLDM_ERROR_INVALID_LENGTH);
473 }
474
475 Response response(
476 sizeof(pldm_msg_hdr) + PLDM_GET_FRU_RECORD_TABLE_MIN_RESP_BYTES, 0);
477 auto responsePtr = reinterpret_cast<pldm_msg*>(response.data());
478
Patrick Williams6da4f912023-05-10 07:50:53 -0500479 auto rc = encode_get_fru_record_table_resp(request->hdr.instance_id,
480 PLDM_SUCCESS, 0,
481 PLDM_START_AND_END, responsePtr);
Deepak Kodihallie60c5822019-10-23 03:26:15 -0500482 if (rc != PLDM_SUCCESS)
483 {
484 return ccOnlyResponse(request, rc);
485 }
486
487 impl.getFRUTable(response);
488
489 return response;
490}
491
John Wang9e82ad12020-06-12 10:53:32 +0800492Response Handler::getFRURecordByOption(const pldm_msg* request,
493 size_t payloadLength)
494{
495 if (payloadLength != sizeof(pldm_get_fru_record_by_option_req))
496 {
497 return ccOnlyResponse(request, PLDM_ERROR_INVALID_LENGTH);
498 }
499
500 uint32_t retDataTransferHandle{};
501 uint16_t retFruTableHandle{};
502 uint16_t retRecordSetIdentifier{};
503 uint8_t retRecordType{};
504 uint8_t retFieldType{};
505 uint8_t retTransferOpFlag{};
506
507 auto rc = decode_get_fru_record_by_option_req(
508 request, payloadLength, &retDataTransferHandle, &retFruTableHandle,
509 &retRecordSetIdentifier, &retRecordType, &retFieldType,
510 &retTransferOpFlag);
511
512 if (rc != PLDM_SUCCESS)
513 {
514 return ccOnlyResponse(request, rc);
515 }
516
517 std::vector<uint8_t> fruData;
518 rc = impl.getFRURecordByOption(fruData, retFruTableHandle,
519 retRecordSetIdentifier, retRecordType,
520 retFieldType);
521 if (rc != PLDM_SUCCESS)
522 {
523 return ccOnlyResponse(request, rc);
524 }
525
Patrick Williams6da4f912023-05-10 07:50:53 -0500526 auto respPayloadLength = PLDM_GET_FRU_RECORD_BY_OPTION_MIN_RESP_BYTES +
527 fruData.size();
John Wang9e82ad12020-06-12 10:53:32 +0800528 Response response(sizeof(pldm_msg_hdr) + respPayloadLength, 0);
529 auto responsePtr = reinterpret_cast<pldm_msg*>(response.data());
530
531 rc = encode_get_fru_record_by_option_resp(
532 request->hdr.instance_id, PLDM_SUCCESS, 0, PLDM_START_AND_END,
533 fruData.data(), fruData.size(), responsePtr, respPayloadLength);
534
535 if (rc != PLDM_SUCCESS)
536 {
537 return ccOnlyResponse(request, rc);
538 }
539
540 return response;
541}
542
Deepak Kodihallie60c5822019-10-23 03:26:15 -0500543} // namespace fru
544
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500545} // namespace responder
546
547} // namespace pldm