blob: ce0121b50666fc2efaea2c55d0e81e33632eaefd [file] [log] [blame]
Deepak Kodihalli70e8db02019-10-21 00:59:46 -05001#include "fru.hpp"
2
Pavithra Barithaya47180ac2020-10-28 02:12:05 -05003#include "libpldm/entity.h"
George Liu6492f522020-06-16 10:34:05 +08004#include "libpldm/utils.h"
5
Deepak Kodihallid130e1a2020-06-17 05:55:32 -05006#include "common/utils.hpp"
Deepak Kodihalli70e8db02019-10-21 00:59:46 -05007
Manojkiran Edacc5f1582021-09-29 17:03:06 +05308#include <config.h>
Deepak Kodihalli70e8db02019-10-21 00:59:46 -05009#include <systemd/sd-journal.h>
10
Deepak Kodihalli70e8db02019-10-21 00:59:46 -050011#include <sdbusplus/bus.hpp>
Deepak Kodihalli70e8db02019-10-21 00:59:46 -050012
George Liu6492f522020-06-16 10:34:05 +080013#include <iostream>
14#include <set>
George Liu077fea22020-04-08 16:47:14 +080015
Deepak Kodihalli70e8db02019-10-21 00:59:46 -050016namespace pldm
17{
18
19namespace responder
20{
21
Tom Joseph33e9c7e2020-06-11 22:09:52 +053022void FruImpl::buildFRUTable()
Deepak Kodihalli70e8db02019-10-21 00:59:46 -050023{
Tom Joseph33e9c7e2020-06-11 22:09:52 +053024
25 if (isBuilt)
26 {
27 return;
28 }
Deepak Kodihalli70e8db02019-10-21 00:59:46 -050029
Tom Josephf0076332020-02-06 10:18:50 +053030 fru_parser::DBusLookupInfo dbusInfo;
Deepak Kodihalli70e8db02019-10-21 00:59:46 -050031 // Read the all the inventory D-Bus objects
32 auto& bus = pldm::utils::DBusHandler::getBus();
33 dbus::ObjectValueTree objects;
34
35 try
36 {
Tom Joseph33e9c7e2020-06-11 22:09:52 +053037 dbusInfo = parser.inventoryLookup();
Deepak Kodihalli70e8db02019-10-21 00:59:46 -050038 auto method = bus.new_method_call(
39 std::get<0>(dbusInfo).c_str(), std::get<1>(dbusInfo).c_str(),
40 "org.freedesktop.DBus.ObjectManager", "GetManagedObjects");
41 auto reply = bus.call(method);
42 reply.read(objects);
43 }
44 catch (const std::exception& e)
45 {
46 std::cerr << "Look up of inventory objects failed and PLDM FRU table "
Brad Bishop0b540732021-08-18 09:42:41 -040047 "creation failed\n";
Deepak Kodihalli70e8db02019-10-21 00:59:46 -050048 return;
49 }
50
Deepak Kodihalli3cd61812020-03-10 06:38:45 -050051 auto itemIntfsLookup = std::get<2>(dbusInfo);
Deepak Kodihalli70e8db02019-10-21 00:59:46 -050052
53 for (const auto& object : objects)
54 {
55 const auto& interfaces = object.second;
56
57 for (const auto& interface : interfaces)
58 {
59 if (itemIntfsLookup.find(interface.first) != itemIntfsLookup.end())
60 {
61 // An exception will be thrown by getRecordInfo, if the item
62 // D-Bus interface name specified in FRU_Master.json does
63 // not have corresponding config jsons
64 try
65 {
Deepak Kodihalli3cd61812020-03-10 06:38:45 -050066 pldm_entity entity{};
Tom Joseph33e9c7e2020-06-11 22:09:52 +053067 entity.entity_type = parser.getEntityType(interface.first);
Deepak Kodihalli3cd61812020-03-10 06:38:45 -050068 pldm_entity_node* parent = nullptr;
69 auto parentObj = pldm::utils::findParent(object.first.str);
70 // To add a FRU to the entity association tree, we need to
71 // determine if the FRU has a parent (D-Bus object). For eg
72 // /system/backplane's parent is /system. /system has no
73 // parent. Some D-Bus pathnames might just be namespaces
74 // (not D-Bus objects), so we need to iterate upwards until
75 // a parent is found, or we reach the root ("/").
76 // Parents are always added first before children in the
77 // entity association tree. We're relying on the fact that
78 // the std::map containing object paths from the
79 // GetManagedObjects call will have a sorted pathname list.
80 do
81 {
82 auto iter = objToEntityNode.find(parentObj);
83 if (iter != objToEntityNode.end())
84 {
85 parent = iter->second;
86 break;
87 }
88 parentObj = pldm::utils::findParent(parentObj);
89 } while (parentObj != "/");
90
91 auto node = pldm_entity_association_tree_add(
George Liu64a8f0f2021-06-12 10:56:11 +080092 entityTree, &entity, 0xFFFF, parent,
Deepak Kodihalli3cd61812020-03-10 06:38:45 -050093 PLDM_ENTITY_ASSOCIAION_PHYSICAL);
94 objToEntityNode[object.first.str] = node;
95
Tom Joseph33e9c7e2020-06-11 22:09:52 +053096 auto recordInfos = parser.getRecordInfo(interface.first);
Deepak Kodihalli3cd61812020-03-10 06:38:45 -050097 populateRecords(interfaces, recordInfos, entity);
George Liuc4ea6a92020-07-14 15:48:44 +080098
99 associatedEntityMap.emplace(object.first, entity);
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500100 break;
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500101 }
102 catch (const std::exception& e)
103 {
104 std::cout << "Config JSONs missing for the item "
105 "interface type, interface = "
106 << interface.first << "\n";
107 break;
108 }
109 }
110 }
111 }
112
Deepak Kodihalli87514cc2020-04-16 09:08:38 -0500113 pldm_entity_association_pdr_add(entityTree, pdrRepo, false);
Sampa Misrac073a202021-05-08 10:56:05 -0500114 // save a copy of bmc's entity association tree
115 pldm_entity_association_tree_copy_root(entityTree, bmcEntityTree);
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500116
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500117 if (table.size())
118 {
119 padBytes = utils::getNumPadBytes(table.size());
120 table.resize(table.size() + padBytes, 0);
121
122 // Calculate the checksum
George Liu077fea22020-04-08 16:47:14 +0800123 checksum = crc32(table.data(), table.size());
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500124 }
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530125 isBuilt = true;
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500126}
Pavithra Barithaya47180ac2020-10-28 02:12:05 -0500127std::string FruImpl::populatefwVersion()
128{
129 static constexpr auto fwFunctionalObjPath =
130 "/xyz/openbmc_project/software/functional";
131 auto& bus = pldm::utils::DBusHandler::getBus();
132 std::string currentBmcVersion;
133 try
134 {
135 auto method =
136 bus.new_method_call(pldm::utils::mapperService, fwFunctionalObjPath,
137 pldm::utils::dbusProperties, "Get");
138 method.append("xyz.openbmc_project.Association", "endpoints");
139 std::variant<std::vector<std::string>> paths;
140 auto reply = bus.call(method);
141 reply.read(paths);
142 auto fwRunningVersion = std::get<std::vector<std::string>>(paths)[0];
143 constexpr auto versionIntf = "xyz.openbmc_project.Software.Version";
144 auto version = pldm::utils::DBusHandler().getDbusPropertyVariant(
145 fwRunningVersion.c_str(), "Version", versionIntf);
146 currentBmcVersion = std::get<std::string>(version);
147 }
148 catch (const std::exception& e)
149 {
150 std::cerr << "failed to make a d-bus call "
151 "Asociation, ERROR= "
152 << e.what() << "\n";
153 return {};
154 }
155 return currentBmcVersion;
156}
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500157void FruImpl::populateRecords(
158 const pldm::responder::dbus::InterfaceMap& interfaces,
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500159 const fru_parser::FruRecordInfos& recordInfos, const pldm_entity& entity)
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500160{
161 // recordSetIdentifier for the FRU will be set when the first record gets
162 // added for the FRU
163 uint16_t recordSetIdentifier = 0;
164 auto numRecsCount = numRecs;
Pavithra Barithaya4f2538a2021-03-05 07:32:15 -0600165 static uint32_t bmc_record_handle = 0;
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500166
167 for (auto const& [recType, encType, fieldInfos] : recordInfos)
168 {
169 std::vector<uint8_t> tlvs;
170 uint8_t numFRUFields = 0;
171 for (auto const& [intf, prop, propType, fieldTypeNum] : fieldInfos)
172 {
Pavithra Barithaya47180ac2020-10-28 02:12:05 -0500173
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500174 try
175 {
Pavithra Barithaya47180ac2020-10-28 02:12:05 -0500176 pldm::responder::dbus::Value propValue;
Manojkiran Eda2b7c1bf2021-09-09 12:26:00 +0530177
178 // Assuming that 0 container Id is assigned to the System (as
179 // that should be the top most container as per dbus hierarchy)
180 if (entity.entity_container_id == 0 && prop == "Version")
Pavithra Barithaya47180ac2020-10-28 02:12:05 -0500181 {
182 propValue = populatefwVersion();
183 }
184 else
185 {
186 propValue = interfaces.at(intf).at(prop);
187 }
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500188 if (propType == "bytearray")
189 {
190 auto byteArray = std::get<std::vector<uint8_t>>(propValue);
191 if (!byteArray.size())
192 {
193 continue;
194 }
195
196 numFRUFields++;
197 tlvs.emplace_back(fieldTypeNum);
198 tlvs.emplace_back(byteArray.size());
199 std::move(std::begin(byteArray), std::end(byteArray),
200 std::back_inserter(tlvs));
201 }
202 else if (propType == "string")
203 {
204 auto str = std::get<std::string>(propValue);
205 if (!str.size())
206 {
207 continue;
208 }
209
210 numFRUFields++;
211 tlvs.emplace_back(fieldTypeNum);
212 tlvs.emplace_back(str.size());
213 std::move(std::begin(str), std::end(str),
214 std::back_inserter(tlvs));
215 }
216 }
217 catch (const std::out_of_range& e)
218 {
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500219 continue;
220 }
221 }
222
223 if (tlvs.size())
224 {
225 if (numRecs == numRecsCount)
226 {
227 recordSetIdentifier = nextRSI();
Pavithra Barithaya4f2538a2021-03-05 07:32:15 -0600228 bmc_record_handle = nextRecordHandle();
Deepak Kodihalli3cd61812020-03-10 06:38:45 -0500229 pldm_pdr_add_fru_record_set(
Manojkiran Edacc5f1582021-09-29 17:03:06 +0530230 pdrRepo, TERMINUS_HANDLE, recordSetIdentifier,
231 entity.entity_type, entity.entity_instance_num,
232 entity.entity_container_id, bmc_record_handle);
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500233 }
234 auto curSize = table.size();
235 table.resize(curSize + recHeaderSize + tlvs.size());
236 encode_fru_record(table.data(), table.size(), &curSize,
237 recordSetIdentifier, recType, numFRUFields,
238 encType, tlvs.data(), tlvs.size());
239 numRecs++;
240 }
241 }
242}
243
244void FruImpl::getFRUTable(Response& response)
245{
246 auto hdrSize = response.size();
247
248 response.resize(hdrSize + table.size() + sizeof(checksum), 0);
249 std::copy(table.begin(), table.end(), response.begin() + hdrSize);
250
251 // Copy the checksum to response data
252 auto iter = response.begin() + hdrSize + table.size();
253 std::copy_n(reinterpret_cast<const uint8_t*>(&checksum), sizeof(checksum),
254 iter);
255}
256
John Wang9e82ad12020-06-12 10:53:32 +0800257int FruImpl::getFRURecordByOption(std::vector<uint8_t>& fruData,
258 uint16_t /* fruTableHandle */,
259 uint16_t recordSetIdentifer,
260 uint8_t recordType, uint8_t fieldType)
261{
Manojkiran Eda31a78442021-09-12 15:18:25 +0530262 using sum = uint32_t;
263
John Wang9e82ad12020-06-12 10:53:32 +0800264 // FRU table is built lazily, build if not done.
265 buildFRUTable();
266
267 /* 7 is sizeof(checksum,4) + padBytesMax(3)
268 * We can not know size of the record table got by options in advance, but
269 * it must be less than the source table. So it's safe to use sizeof the
270 * source table + 7 as the buffer length
271 */
272 size_t recordTableSize = table.size() - padBytes + 7;
273 fruData.resize(recordTableSize, 0);
274
275 get_fru_record_by_option(table.data(), table.size() - padBytes,
276 fruData.data(), &recordTableSize,
277 recordSetIdentifer, recordType, fieldType);
278
279 if (recordTableSize == 0)
280 {
281 return PLDM_FRU_DATA_STRUCTURE_TABLE_UNAVAILABLE;
282 }
283
284 auto pads = utils::getNumPadBytes(recordTableSize);
Manojkiran Eda31a78442021-09-12 15:18:25 +0530285 crc32(fruData.data(), recordTableSize + pads);
John Wang9e82ad12020-06-12 10:53:32 +0800286
287 auto iter = fruData.begin() + recordTableSize + pads;
288 std::copy_n(reinterpret_cast<const uint8_t*>(&checksum), sizeof(checksum),
289 iter);
290 fruData.resize(recordTableSize + pads + sizeof(sum));
291
292 return PLDM_SUCCESS;
293}
294
Deepak Kodihallie60c5822019-10-23 03:26:15 -0500295namespace fru
296{
297
298Response Handler::getFRURecordTableMetadata(const pldm_msg* request,
299 size_t /*payloadLength*/)
300{
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530301 // FRU table is built lazily, build if not done.
302 buildFRUTable();
303
Deepak Kodihallie60c5822019-10-23 03:26:15 -0500304 constexpr uint8_t major = 0x01;
305 constexpr uint8_t minor = 0x00;
306 constexpr uint32_t maxSize = 0xFFFFFFFF;
307
308 Response response(sizeof(pldm_msg_hdr) +
309 PLDM_GET_FRU_RECORD_TABLE_METADATA_RESP_BYTES,
310 0);
311 auto responsePtr = reinterpret_cast<pldm_msg*>(response.data());
312
313 auto rc = encode_get_fru_record_table_metadata_resp(
314 request->hdr.instance_id, PLDM_SUCCESS, major, minor, maxSize,
315 impl.size(), impl.numRSI(), impl.numRecords(), impl.checkSum(),
316 responsePtr);
317 if (rc != PLDM_SUCCESS)
318 {
319 return ccOnlyResponse(request, rc);
320 }
321
322 return response;
323}
324
325Response Handler::getFRURecordTable(const pldm_msg* request,
326 size_t payloadLength)
327{
Tom Joseph33e9c7e2020-06-11 22:09:52 +0530328 // FRU table is built lazily, build if not done.
329 buildFRUTable();
330
Deepak Kodihallie60c5822019-10-23 03:26:15 -0500331 if (payloadLength != PLDM_GET_FRU_RECORD_TABLE_REQ_BYTES)
332 {
333 return ccOnlyResponse(request, PLDM_ERROR_INVALID_LENGTH);
334 }
335
336 Response response(
337 sizeof(pldm_msg_hdr) + PLDM_GET_FRU_RECORD_TABLE_MIN_RESP_BYTES, 0);
338 auto responsePtr = reinterpret_cast<pldm_msg*>(response.data());
339
340 auto rc =
341 encode_get_fru_record_table_resp(request->hdr.instance_id, PLDM_SUCCESS,
342 0, PLDM_START_AND_END, responsePtr);
343 if (rc != PLDM_SUCCESS)
344 {
345 return ccOnlyResponse(request, rc);
346 }
347
348 impl.getFRUTable(response);
349
350 return response;
351}
352
John Wang9e82ad12020-06-12 10:53:32 +0800353Response Handler::getFRURecordByOption(const pldm_msg* request,
354 size_t payloadLength)
355{
356 if (payloadLength != sizeof(pldm_get_fru_record_by_option_req))
357 {
358 return ccOnlyResponse(request, PLDM_ERROR_INVALID_LENGTH);
359 }
360
361 uint32_t retDataTransferHandle{};
362 uint16_t retFruTableHandle{};
363 uint16_t retRecordSetIdentifier{};
364 uint8_t retRecordType{};
365 uint8_t retFieldType{};
366 uint8_t retTransferOpFlag{};
367
368 auto rc = decode_get_fru_record_by_option_req(
369 request, payloadLength, &retDataTransferHandle, &retFruTableHandle,
370 &retRecordSetIdentifier, &retRecordType, &retFieldType,
371 &retTransferOpFlag);
372
373 if (rc != PLDM_SUCCESS)
374 {
375 return ccOnlyResponse(request, rc);
376 }
377
378 std::vector<uint8_t> fruData;
379 rc = impl.getFRURecordByOption(fruData, retFruTableHandle,
380 retRecordSetIdentifier, retRecordType,
381 retFieldType);
382 if (rc != PLDM_SUCCESS)
383 {
384 return ccOnlyResponse(request, rc);
385 }
386
387 auto respPayloadLength =
388 PLDM_GET_FRU_RECORD_BY_OPTION_MIN_RESP_BYTES + fruData.size();
389 Response response(sizeof(pldm_msg_hdr) + respPayloadLength, 0);
390 auto responsePtr = reinterpret_cast<pldm_msg*>(response.data());
391
392 rc = encode_get_fru_record_by_option_resp(
393 request->hdr.instance_id, PLDM_SUCCESS, 0, PLDM_START_AND_END,
394 fruData.data(), fruData.size(), responsePtr, respPayloadLength);
395
396 if (rc != PLDM_SUCCESS)
397 {
398 return ccOnlyResponse(request, rc);
399 }
400
401 return response;
402}
403
Deepak Kodihallie60c5822019-10-23 03:26:15 -0500404} // namespace fru
405
Deepak Kodihalli70e8db02019-10-21 00:59:46 -0500406} // namespace responder
407
408} // namespace pldm