George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Deepak Kodihalli | d130e1a | 2020-06-17 05:55:32 -0500 | [diff] [blame] | 3 | #include "common/types.hpp" |
| 4 | #include "common/utils.hpp" |
George Liu | 1ec85d4 | 2020-02-12 16:05:32 +0800 | [diff] [blame] | 5 | |
George Liu | c453e16 | 2022-12-21 17:16:23 +0800 | [diff] [blame] | 6 | #include <libpldm/pdr.h> |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 7 | #include <stdint.h> |
| 8 | |
George Liu | 6492f52 | 2020-06-16 10:34:05 +0800 | [diff] [blame] | 9 | #include <nlohmann/json.hpp> |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 10 | #include <phosphor-logging/lg2.hpp> |
George Liu | 6492f52 | 2020-06-16 10:34:05 +0800 | [diff] [blame] | 11 | #include <xyz/openbmc_project/Common/error.hpp> |
| 12 | |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 13 | #include <filesystem> |
| 14 | #include <fstream> |
| 15 | #include <functional> |
| 16 | #include <iostream> |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 17 | #include <string> |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 18 | |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 19 | PHOSPHOR_LOG2_USING; |
| 20 | |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 21 | using InternalFailure = |
| 22 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
| 23 | |
| 24 | namespace fs = std::filesystem; |
| 25 | |
| 26 | namespace pldm |
| 27 | { |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 28 | namespace responder |
| 29 | { |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 30 | namespace pdr_utils |
| 31 | { |
George Liu | adbe172 | 2020-05-09 19:20:19 +0800 | [diff] [blame] | 32 | /** @struct Type ID associated with pdr |
| 33 | * |
| 34 | */ |
| 35 | enum class TypeId |
| 36 | { |
| 37 | PLDM_EFFECTER_ID, |
| 38 | PLDM_SENSOR_ID |
| 39 | }; |
| 40 | |
George Liu | 682ee18 | 2020-12-25 15:24:33 +0800 | [diff] [blame] | 41 | struct FruTLV |
| 42 | { |
| 43 | uint8_t fruFieldType; |
| 44 | uint8_t fruFieldLen; |
| 45 | std::vector<uint8_t> fruFieldValue; |
| 46 | }; |
| 47 | |
| 48 | struct FruRecordDataFormat |
| 49 | { |
| 50 | uint16_t fruRSI; |
| 51 | uint8_t fruRecType; |
| 52 | uint8_t fruNum; |
| 53 | uint8_t fruEncodeType; |
| 54 | std::vector<FruTLV> fruTLV; |
| 55 | }; |
| 56 | |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 57 | /** @struct PdrEntry |
| 58 | * PDR entry structure that acts as a PDR record structure in the PDR |
| 59 | * repository to handle PDR APIs. |
| 60 | */ |
| 61 | struct PdrEntry |
| 62 | { |
| 63 | uint8_t* data; |
| 64 | uint32_t size; |
| 65 | union |
| 66 | { |
| 67 | uint32_t recordHandle; |
| 68 | uint32_t nextRecordHandle; |
| 69 | } handle; |
| 70 | }; |
| 71 | using Type = uint8_t; |
| 72 | using Json = nlohmann::json; |
| 73 | using RecordHandle = uint32_t; |
George Liu | 1ec85d4 | 2020-02-12 16:05:32 +0800 | [diff] [blame] | 74 | using State = uint8_t; |
| 75 | using PossibleValues = std::vector<uint8_t>; |
| 76 | |
| 77 | /** @brief Map of DBus property State to attribute value |
| 78 | */ |
| 79 | using StatestoDbusVal = std::map<State, pldm::utils::PropertyValue>; |
George Liu | a287072 | 2020-02-11 11:09:30 +0800 | [diff] [blame] | 80 | using DbusMappings = std::vector<pldm::utils::DBusMapping>; |
| 81 | using DbusValMaps = std::vector<StatestoDbusVal>; |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 82 | |
| 83 | /** @brief Parse PDR JSON file and output Json object |
| 84 | * |
| 85 | * @param[in] path - path of PDR JSON file |
| 86 | * |
| 87 | * @return Json - Json object |
| 88 | */ |
| 89 | inline Json readJson(const std::string& path) |
| 90 | { |
| 91 | fs::path dir(path); |
| 92 | if (!fs::exists(dir) || fs::is_empty(dir)) |
| 93 | { |
| 94 | throw InternalFailure(); |
| 95 | } |
| 96 | |
| 97 | std::ifstream jsonFile(path); |
| 98 | if (!jsonFile.is_open()) |
| 99 | { |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 100 | error("Error opening PDR JSON file, PATH={JSON_PATH}", "JSON_PATH", |
| 101 | path); |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 102 | return {}; |
| 103 | } |
| 104 | |
| 105 | return Json::parse(jsonFile); |
| 106 | } |
| 107 | |
George Liu | 1ec85d4 | 2020-02-12 16:05:32 +0800 | [diff] [blame] | 108 | /** @brief Populate the mapping between D-Bus property stateId and attribute |
| 109 | * value for the effecter PDR enumeration attribute. |
| 110 | * |
| 111 | * @param[in] type - type of the D-Bus property |
| 112 | * @param[in] dBusValues - json array of D-Bus property values |
| 113 | * @param[in] pv - Possible values for the effecter PDR enumeration attribute |
| 114 | * |
| 115 | * @return StatestoDbusVal - Map of D-Bus property stateId to attribute value |
| 116 | */ |
| 117 | StatestoDbusVal populateMapping(const std::string& type, const Json& dBusValues, |
| 118 | const PossibleValues& pv); |
| 119 | |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 120 | /** |
| 121 | * @class RepoInterface |
| 122 | * |
| 123 | * @brief Abstract class describing the interface API to the PDR repository, |
| 124 | * this class wraps operations used to handle the new PDR APIs. |
| 125 | */ |
| 126 | class RepoInterface |
| 127 | { |
| 128 | public: |
Patrick Williams | 6da4f91 | 2023-05-10 07:50:53 -0500 | [diff] [blame] | 129 | RepoInterface(pldm_pdr* repo) : repo(repo) {} |
Deepak Kodihalli | c682fe2 | 2020-03-04 00:42:54 -0600 | [diff] [blame] | 130 | |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 131 | virtual ~RepoInterface() = default; |
| 132 | |
| 133 | /** @brief Get an opaque pldm_pdr structure |
| 134 | * |
| 135 | * @return pldm_pdr - pldm_pdr structure |
| 136 | */ |
Deepak Kodihalli | c682fe2 | 2020-03-04 00:42:54 -0600 | [diff] [blame] | 137 | virtual pldm_pdr* getPdr() const = 0; |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 138 | |
| 139 | /** @brief Add a PDR record to a PDR repository |
| 140 | * |
| 141 | * @param[in] pdrEntry - PDR records entry(data, size, recordHandle) |
| 142 | * |
| 143 | * @return uint32_t - record handle assigned to PDR record |
| 144 | */ |
| 145 | virtual RecordHandle addRecord(const PdrEntry& pdrEntry) = 0; |
| 146 | |
| 147 | /** @brief Get the first PDR record from a PDR repository |
| 148 | * |
| 149 | * @param[in] pdrEntry - PDR records entry(data, size, nextRecordHandle) |
| 150 | * |
| 151 | * @return opaque pointer acting as PDR record handle, will be NULL if |
| 152 | * record was not found |
| 153 | */ |
| 154 | virtual const pldm_pdr_record* getFirstRecord(PdrEntry& pdrEntry) = 0; |
| 155 | |
| 156 | /** @brief Get the next PDR record from a PDR repository |
| 157 | * |
| 158 | * @param[in] currRecord - opaque pointer acting as a PDR record handle |
| 159 | * @param[in] pdrEntry - PDR records entry(data, size, nextRecordHandle) |
| 160 | * |
| 161 | * @return opaque pointer acting as PDR record handle, will be NULL if |
| 162 | * record was not found |
| 163 | */ |
| 164 | virtual const pldm_pdr_record* |
| 165 | getNextRecord(const pldm_pdr_record* currRecord, |
| 166 | PdrEntry& pdrEntry) = 0; |
| 167 | |
| 168 | /** @brief Get record handle of a PDR record |
| 169 | * |
| 170 | * @param[in] record - opaque pointer acting as a PDR record handle |
| 171 | * |
| 172 | * @return uint32_t - record handle assigned to PDR record; 0 if record is |
| 173 | * not found |
| 174 | */ |
Deepak Kodihalli | c682fe2 | 2020-03-04 00:42:54 -0600 | [diff] [blame] | 175 | virtual uint32_t getRecordHandle(const pldm_pdr_record* record) const = 0; |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 176 | |
| 177 | /** @brief Get number of records in a PDR repository |
| 178 | * |
| 179 | * @return uint32_t - number of records |
| 180 | */ |
| 181 | virtual uint32_t getRecordCount() = 0; |
| 182 | |
| 183 | /** @brief Determine if records are empty in a PDR repository |
| 184 | * |
| 185 | * @return bool - true means empty and false means not empty |
| 186 | */ |
| 187 | virtual bool empty() = 0; |
| 188 | |
| 189 | protected: |
| 190 | pldm_pdr* repo; |
| 191 | }; |
| 192 | |
| 193 | /** |
| 194 | * @class Repo |
| 195 | * |
| 196 | * Wrapper class to handle the PDR APIs |
| 197 | * |
| 198 | * This class wraps operations used to handle PDR APIs. |
| 199 | */ |
| 200 | class Repo : public RepoInterface |
| 201 | { |
| 202 | public: |
Patrick Williams | 6da4f91 | 2023-05-10 07:50:53 -0500 | [diff] [blame] | 203 | Repo(pldm_pdr* repo) : RepoInterface(repo) {} |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 204 | |
Deepak Kodihalli | c682fe2 | 2020-03-04 00:42:54 -0600 | [diff] [blame] | 205 | pldm_pdr* getPdr() const override; |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 206 | |
Deepak Kodihalli | c682fe2 | 2020-03-04 00:42:54 -0600 | [diff] [blame] | 207 | RecordHandle addRecord(const PdrEntry& pdrEntry) override; |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 208 | |
Deepak Kodihalli | c682fe2 | 2020-03-04 00:42:54 -0600 | [diff] [blame] | 209 | const pldm_pdr_record* getFirstRecord(PdrEntry& pdrEntry) override; |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 210 | |
| 211 | const pldm_pdr_record* getNextRecord(const pldm_pdr_record* currRecord, |
Deepak Kodihalli | c682fe2 | 2020-03-04 00:42:54 -0600 | [diff] [blame] | 212 | PdrEntry& pdrEntry) override; |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 213 | |
Deepak Kodihalli | c682fe2 | 2020-03-04 00:42:54 -0600 | [diff] [blame] | 214 | uint32_t getRecordHandle(const pldm_pdr_record* record) const override; |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 215 | |
Deepak Kodihalli | c682fe2 | 2020-03-04 00:42:54 -0600 | [diff] [blame] | 216 | uint32_t getRecordCount() override; |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 217 | |
Deepak Kodihalli | c682fe2 | 2020-03-04 00:42:54 -0600 | [diff] [blame] | 218 | bool empty() override; |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 219 | }; |
| 220 | |
Tom Joseph | b426860 | 2020-04-17 17:20:45 +0530 | [diff] [blame] | 221 | /** @brief Parse the State Sensor PDR and return the parsed sensor info which |
| 222 | * will be used to lookup the sensor info in the PlatformEventMessage |
| 223 | * command of sensorEvent type. |
| 224 | * |
| 225 | * @param[in] stateSensorPdr - state sensor PDR |
| 226 | * |
| 227 | * @return terminus handle, sensor ID and parsed sensor info |
| 228 | */ |
Brad Bishop | 5079ac4 | 2021-08-19 18:35:06 -0400 | [diff] [blame] | 229 | std::tuple<pldm::pdr::TerminusHandle, pldm::pdr::SensorID, |
| 230 | pldm::pdr::SensorInfo> |
Tom Joseph | b426860 | 2020-04-17 17:20:45 +0530 | [diff] [blame] | 231 | parseStateSensorPDR(const std::vector<uint8_t>& stateSensorPdr); |
| 232 | |
George Liu | 682ee18 | 2020-12-25 15:24:33 +0800 | [diff] [blame] | 233 | /** @brief Parse FRU record table and return the vector of the FRU record data |
| 234 | * format structure |
| 235 | * |
| 236 | * @param[in] fruData - fru data |
| 237 | * @param[in] fruLen - fru len |
| 238 | * |
| 239 | * @return std::vector<FruRecordDataFormat> - the vector of the FRU record data |
| 240 | * format structure |
| 241 | */ |
| 242 | std::vector<FruRecordDataFormat> parseFruRecordTable(const uint8_t* fruData, |
| 243 | size_t fruLen); |
| 244 | |
Archana Kakani | 6ece21fb | 2023-10-10 08:21:52 -0500 | [diff] [blame] | 245 | /** @brief Return the size of data type based on the effecterDataSize enum value |
| 246 | * |
| 247 | * @param[in] effecterDataSize - Bitwidth and format of setting effecter value |
| 248 | * @return[out] Map the effecterDataSize enum value to datatype and return the |
| 249 | * size of dataType |
| 250 | */ |
| 251 | size_t getEffecterDataSize(uint8_t effecterDataSize); |
| 252 | |
George Liu | e53193f | 2020-02-24 09:23:26 +0800 | [diff] [blame] | 253 | } // namespace pdr_utils |
| 254 | } // namespace responder |
| 255 | } // namespace pldm |