Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include "config.h" |
| 4 | |
George Liu | 6492f52 | 2020-06-16 10:34:05 +0800 | [diff] [blame] | 5 | #include "libpldm/fru.h" |
| 6 | #include "libpldm/pdr.h" |
| 7 | |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 8 | #include "fru_parser.hpp" |
Deepak Kodihalli | 1521f6d | 2020-06-16 08:51:02 -0500 | [diff] [blame] | 9 | #include "pldmd/handler.hpp" |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 10 | |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 11 | #include <sdbusplus/message.hpp> |
George Liu | 6492f52 | 2020-06-16 10:34:05 +0800 | [diff] [blame] | 12 | |
| 13 | #include <map> |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 14 | #include <string> |
| 15 | #include <variant> |
| 16 | #include <vector> |
| 17 | |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 18 | namespace pldm |
| 19 | { |
| 20 | |
| 21 | namespace responder |
| 22 | { |
| 23 | |
| 24 | namespace dbus |
| 25 | { |
| 26 | |
| 27 | using Value = |
| 28 | std::variant<bool, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t, |
| 29 | uint64_t, double, std::string, std::vector<uint8_t>>; |
| 30 | using PropertyMap = std::map<Property, Value>; |
| 31 | using InterfaceMap = std::map<Interface, PropertyMap>; |
| 32 | using ObjectValueTree = std::map<sdbusplus::message::object_path, InterfaceMap>; |
Deepak Kodihalli | 3cd6181 | 2020-03-10 06:38:45 -0500 | [diff] [blame] | 33 | using ObjectPath = std::string; |
George Liu | c4ea6a9 | 2020-07-14 15:48:44 +0800 | [diff] [blame] | 34 | using AssociatedEntityMap = std::map<ObjectPath, pldm_entity>; |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 35 | |
| 36 | } // namespace dbus |
| 37 | |
| 38 | /** @class FruImpl |
| 39 | * |
| 40 | * @brief Builds the PLDM FRU table containing the FRU records |
| 41 | */ |
| 42 | class FruImpl |
| 43 | { |
| 44 | public: |
| 45 | /* @brief Header size for FRU record, it includes the FRU record set |
| 46 | * identifier, FRU record type, Number of FRU fields, Encoding type |
| 47 | * of FRU fields |
| 48 | */ |
| 49 | static constexpr size_t recHeaderSize = |
| 50 | sizeof(struct pldm_fru_record_data_format) - |
| 51 | sizeof(struct pldm_fru_record_tlv); |
| 52 | |
Tom Joseph | 33e9c7e | 2020-06-11 22:09:52 +0530 | [diff] [blame] | 53 | /** @brief Constructor for FruImpl, the configPath is consumed to build the |
| 54 | * FruParser object. |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 55 | * |
| 56 | * @param[in] configPath - path to the directory containing config files |
Tom Joseph | 33e9c7e | 2020-06-11 22:09:52 +0530 | [diff] [blame] | 57 | * for PLDM FRU |
Manojkiran Eda | 03b01ca | 2021-06-29 08:55:09 +0530 | [diff] [blame] | 58 | * @param[in] fruMasterJsonPath - path to the file containing the FRU D-Bus |
| 59 | * Lookup Map |
Tom Joseph | 33e9c7e | 2020-06-11 22:09:52 +0530 | [diff] [blame] | 60 | * @param[in] pdrRepo - opaque pointer to PDR repository |
| 61 | * @param[in] entityTree - opaque pointer to the entity association tree |
Sampa Misra | c073a20 | 2021-05-08 10:56:05 -0500 | [diff] [blame] | 62 | * @param[in] bmcEntityTree - opaque pointer to bmc's entity association |
| 63 | * tree |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 64 | */ |
Manojkiran Eda | 03b01ca | 2021-06-29 08:55:09 +0530 | [diff] [blame] | 65 | FruImpl(const std::string& configPath, |
| 66 | const std::filesystem::path& fruMasterJsonPath, pldm_pdr* pdrRepo, |
Sampa Misra | c073a20 | 2021-05-08 10:56:05 -0500 | [diff] [blame] | 67 | pldm_entity_association_tree* entityTree, |
| 68 | pldm_entity_association_tree* bmcEntityTree) : |
Manojkiran Eda | 03b01ca | 2021-06-29 08:55:09 +0530 | [diff] [blame] | 69 | parser(configPath, fruMasterJsonPath), |
Sampa Misra | c073a20 | 2021-05-08 10:56:05 -0500 | [diff] [blame] | 70 | pdrRepo(pdrRepo), entityTree(entityTree), bmcEntityTree(bmcEntityTree) |
Tom Joseph | 33e9c7e | 2020-06-11 22:09:52 +0530 | [diff] [blame] | 71 | {} |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 72 | |
| 73 | /** @brief Total length of the FRU table in bytes, this excludes the pad |
| 74 | * bytes and the checksum. |
| 75 | * |
| 76 | * @return size of the FRU table |
| 77 | */ |
| 78 | uint32_t size() const |
| 79 | { |
| 80 | return table.size() - padBytes; |
| 81 | } |
| 82 | |
| 83 | /** @brief The checksum of the contents of the FRU table |
| 84 | * |
| 85 | * @return checksum |
| 86 | */ |
| 87 | uint32_t checkSum() const |
| 88 | { |
| 89 | return checksum; |
| 90 | } |
| 91 | |
| 92 | /** @brief Number of record set identifiers in the FRU tables |
| 93 | * |
| 94 | * @return number of record set identifiers |
| 95 | */ |
| 96 | uint16_t numRSI() const |
| 97 | { |
| 98 | return rsi; |
| 99 | } |
| 100 | |
| 101 | /** @brief The number of FRU records in the table |
| 102 | * |
| 103 | * @return number of FRU records |
| 104 | */ |
| 105 | uint16_t numRecords() const |
| 106 | { |
| 107 | return numRecs; |
| 108 | } |
| 109 | |
| 110 | /** @brief Get the FRU table |
| 111 | * |
| 112 | * @param[out] - Populate response with the FRU table |
| 113 | */ |
| 114 | void getFRUTable(Response& response); |
| 115 | |
John Wang | 9e82ad1 | 2020-06-12 10:53:32 +0800 | [diff] [blame] | 116 | /** @brief Get FRU Record Table By Option |
| 117 | * @param[out] response - Populate response with the FRU table got by |
| 118 | * options |
| 119 | * @param[in] fruTableHandle - The fru table handle |
| 120 | * @param[in] recordSetIdentifer - The record set identifier |
| 121 | * @param[in] recordType - The record type |
| 122 | * @param[in] fieldType - The field type |
| 123 | */ |
| 124 | int getFRURecordByOption(Response& response, uint16_t fruTableHandle, |
| 125 | uint16_t recordSetIdentifer, uint8_t recordType, |
| 126 | uint8_t fieldType); |
| 127 | |
Tom Joseph | 33e9c7e | 2020-06-11 22:09:52 +0530 | [diff] [blame] | 128 | /** @brief FRU table is built by processing the D-Bus inventory namespace |
| 129 | * based on the config files for FRU. The table is populated based |
| 130 | * on the isBuilt flag. |
| 131 | */ |
| 132 | void buildFRUTable(); |
| 133 | |
George Liu | c4ea6a9 | 2020-07-14 15:48:44 +0800 | [diff] [blame] | 134 | /** @brief Get std::map associated with the entity |
| 135 | * key: object path |
| 136 | * value: pldm_entity |
| 137 | * |
| 138 | * @return std::map<ObjectPath, pldm_entity> |
| 139 | */ |
| 140 | inline const pldm::responder::dbus::AssociatedEntityMap& |
| 141 | getAssociateEntityMap() const |
| 142 | { |
| 143 | return associatedEntityMap; |
| 144 | } |
| 145 | |
Pavithra Barithaya | 47180ac | 2020-10-28 02:12:05 -0500 | [diff] [blame] | 146 | /* @brief Method to populate the firmware version ID |
| 147 | * |
| 148 | * @return firmware version ID |
| 149 | */ |
| 150 | std::string populatefwVersion(); |
| 151 | |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 152 | private: |
| 153 | uint16_t nextRSI() |
| 154 | { |
| 155 | return ++rsi; |
| 156 | } |
| 157 | |
Pavithra Barithaya | 4f2538a | 2021-03-05 07:32:15 -0600 | [diff] [blame] | 158 | uint32_t nextRecordHandle() |
| 159 | { |
| 160 | return ++rh; |
| 161 | } |
| 162 | |
| 163 | uint32_t rh = 0; |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 164 | uint16_t rsi = 0; |
| 165 | uint16_t numRecs = 0; |
| 166 | uint8_t padBytes = 0; |
| 167 | std::vector<uint8_t> table; |
| 168 | uint32_t checksum = 0; |
Tom Joseph | 33e9c7e | 2020-06-11 22:09:52 +0530 | [diff] [blame] | 169 | bool isBuilt = false; |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 170 | |
Tom Joseph | 33e9c7e | 2020-06-11 22:09:52 +0530 | [diff] [blame] | 171 | fru_parser::FruParser parser; |
Deepak Kodihalli | 3cd6181 | 2020-03-10 06:38:45 -0500 | [diff] [blame] | 172 | pldm_pdr* pdrRepo; |
| 173 | pldm_entity_association_tree* entityTree; |
Sampa Misra | c073a20 | 2021-05-08 10:56:05 -0500 | [diff] [blame] | 174 | pldm_entity_association_tree* bmcEntityTree; |
Deepak Kodihalli | 3cd6181 | 2020-03-10 06:38:45 -0500 | [diff] [blame] | 175 | |
| 176 | std::map<dbus::ObjectPath, pldm_entity_node*> objToEntityNode{}; |
| 177 | |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 178 | /** @brief populateRecord builds the FRU records for an instance of FRU and |
| 179 | * updates the FRU table with the FRU records. |
| 180 | * |
| 181 | * @param[in] interfaces - D-Bus interfaces and the associated property |
| 182 | * values for the FRU |
| 183 | * @param[in] recordInfos - FRU record info to build the FRU records |
Deepak Kodihalli | 3cd6181 | 2020-03-10 06:38:45 -0500 | [diff] [blame] | 184 | * @param[in/out] entity - PLDM entity corresponding to FRU instance |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 185 | */ |
George Liu | c4ea6a9 | 2020-07-14 15:48:44 +0800 | [diff] [blame] | 186 | void populateRecords(const dbus::InterfaceMap& interfaces, |
Deepak Kodihalli | 3cd6181 | 2020-03-10 06:38:45 -0500 | [diff] [blame] | 187 | const fru_parser::FruRecordInfos& recordInfos, |
| 188 | const pldm_entity& entity); |
George Liu | c4ea6a9 | 2020-07-14 15:48:44 +0800 | [diff] [blame] | 189 | |
| 190 | /** @brief Associate sensor/effecter to FRU entity |
| 191 | */ |
| 192 | dbus::AssociatedEntityMap associatedEntityMap; |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 193 | }; |
| 194 | |
Deepak Kodihalli | e60c582 | 2019-10-23 03:26:15 -0500 | [diff] [blame] | 195 | namespace fru |
| 196 | { |
| 197 | |
| 198 | class Handler : public CmdHandler |
| 199 | { |
| 200 | |
| 201 | public: |
Manojkiran Eda | 03b01ca | 2021-06-29 08:55:09 +0530 | [diff] [blame] | 202 | Handler(const std::string& configPath, |
| 203 | const std::filesystem::path& fruMasterJsonPath, pldm_pdr* pdrRepo, |
Sampa Misra | c073a20 | 2021-05-08 10:56:05 -0500 | [diff] [blame] | 204 | pldm_entity_association_tree* entityTree, |
| 205 | pldm_entity_association_tree* bmcEntityTree) : |
Manojkiran Eda | 03b01ca | 2021-06-29 08:55:09 +0530 | [diff] [blame] | 206 | impl(configPath, fruMasterJsonPath, pdrRepo, entityTree, bmcEntityTree) |
Deepak Kodihalli | e60c582 | 2019-10-23 03:26:15 -0500 | [diff] [blame] | 207 | { |
| 208 | handlers.emplace(PLDM_GET_FRU_RECORD_TABLE_METADATA, |
| 209 | [this](const pldm_msg* request, size_t payloadLength) { |
| 210 | return this->getFRURecordTableMetadata( |
| 211 | request, payloadLength); |
| 212 | }); |
| 213 | |
| 214 | handlers.emplace(PLDM_GET_FRU_RECORD_TABLE, |
| 215 | [this](const pldm_msg* request, size_t payloadLength) { |
| 216 | return this->getFRURecordTable(request, |
| 217 | payloadLength); |
| 218 | }); |
John Wang | 9e82ad1 | 2020-06-12 10:53:32 +0800 | [diff] [blame] | 219 | handlers.emplace(PLDM_GET_FRU_RECORD_BY_OPTION, |
| 220 | [this](const pldm_msg* request, size_t payloadLength) { |
| 221 | return this->getFRURecordByOption(request, |
| 222 | payloadLength); |
| 223 | }); |
Deepak Kodihalli | e60c582 | 2019-10-23 03:26:15 -0500 | [diff] [blame] | 224 | } |
| 225 | |
Deepak Kodihalli | e60c582 | 2019-10-23 03:26:15 -0500 | [diff] [blame] | 226 | /** @brief Handler for Get FRURecordTableMetadata |
| 227 | * |
| 228 | * @param[in] request - Request message payload |
| 229 | * @param[in] payloadLength - Request payload length |
| 230 | * |
| 231 | * @return PLDM response message |
| 232 | */ |
| 233 | Response getFRURecordTableMetadata(const pldm_msg* request, |
| 234 | size_t payloadLength); |
| 235 | |
| 236 | /** @brief Handler for GetFRURecordTable |
| 237 | * |
| 238 | * @param[in] request - Request message payload |
| 239 | * @param[in] payloadLength - Request payload length |
| 240 | * |
| 241 | * @return PLDM response message |
| 242 | */ |
| 243 | Response getFRURecordTable(const pldm_msg* request, size_t payloadLength); |
Deepak Kodihalli | 3cd6181 | 2020-03-10 06:38:45 -0500 | [diff] [blame] | 244 | |
Tom Joseph | 33e9c7e | 2020-06-11 22:09:52 +0530 | [diff] [blame] | 245 | /** @brief Build FRU table is bnot already built |
| 246 | * |
| 247 | */ |
| 248 | void buildFRUTable() |
| 249 | { |
| 250 | impl.buildFRUTable(); |
| 251 | } |
| 252 | |
George Liu | c4ea6a9 | 2020-07-14 15:48:44 +0800 | [diff] [blame] | 253 | /** @brief Get std::map associated with the entity |
| 254 | * key: object path |
| 255 | * value: pldm_entity |
| 256 | * |
| 257 | * @return std::map<ObjectPath, pldm_entity> |
| 258 | */ |
| 259 | const pldm::responder::dbus::AssociatedEntityMap& |
| 260 | getAssociateEntityMap() const |
| 261 | { |
| 262 | return impl.getAssociateEntityMap(); |
| 263 | } |
| 264 | |
John Wang | 9e82ad1 | 2020-06-12 10:53:32 +0800 | [diff] [blame] | 265 | /** @brief Handler for GetFRURecordByOption |
| 266 | * |
| 267 | * @param[in] request - Request message payload |
| 268 | * @param[in] payloadLength - Request payload length |
| 269 | * |
| 270 | * @return PLDM response message |
| 271 | */ |
| 272 | Response getFRURecordByOption(const pldm_msg* request, |
| 273 | size_t payloadLength); |
| 274 | |
Deepak Kodihalli | 3cd6181 | 2020-03-10 06:38:45 -0500 | [diff] [blame] | 275 | private: |
| 276 | FruImpl impl; |
Deepak Kodihalli | e60c582 | 2019-10-23 03:26:15 -0500 | [diff] [blame] | 277 | }; |
| 278 | |
| 279 | } // namespace fru |
| 280 | |
Deepak Kodihalli | 70e8db0 | 2019-10-21 00:59:46 -0500 | [diff] [blame] | 281 | } // namespace responder |
| 282 | |
| 283 | } // namespace pldm |