blob: 6c1264a5d992d4f32af29d5f4ba6345eb8d6dc66 [file] [log] [blame]
George Liue53193f2020-02-24 09:23:26 +08001#pragma once
2
Deepak Kodihallid130e1a2020-06-17 05:55:32 -05003#include "common/types.hpp"
4#include "common/utils.hpp"
George Liu1ec85d42020-02-12 16:05:32 +08005
George Liuc453e162022-12-21 17:16:23 +08006#include <libpldm/pdr.h>
George Liue53193f2020-02-24 09:23:26 +08007#include <stdint.h>
8
George Liu6492f522020-06-16 10:34:05 +08009#include <nlohmann/json.hpp>
Riya Dixit49cfb132023-03-02 04:26:53 -060010#include <phosphor-logging/lg2.hpp>
George Liu6492f522020-06-16 10:34:05 +080011#include <xyz/openbmc_project/Common/error.hpp>
12
George Liue53193f2020-02-24 09:23:26 +080013#include <filesystem>
14#include <fstream>
15#include <functional>
16#include <iostream>
George Liue53193f2020-02-24 09:23:26 +080017#include <string>
George Liue53193f2020-02-24 09:23:26 +080018
Riya Dixit49cfb132023-03-02 04:26:53 -060019PHOSPHOR_LOG2_USING;
20
George Liue53193f2020-02-24 09:23:26 +080021using InternalFailure =
22 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
23
24namespace fs = std::filesystem;
25
26namespace pldm
27{
George Liue53193f2020-02-24 09:23:26 +080028namespace responder
29{
George Liue53193f2020-02-24 09:23:26 +080030namespace pdr_utils
31{
George Liuadbe1722020-05-09 19:20:19 +080032/** @struct Type ID associated with pdr
33 *
34 */
35enum class TypeId
36{
37 PLDM_EFFECTER_ID,
38 PLDM_SENSOR_ID
39};
40
George Liue53193f2020-02-24 09:23:26 +080041/** @struct PdrEntry
42 * PDR entry structure that acts as a PDR record structure in the PDR
43 * repository to handle PDR APIs.
44 */
45struct PdrEntry
46{
47 uint8_t* data;
48 uint32_t size;
49 union
50 {
51 uint32_t recordHandle;
52 uint32_t nextRecordHandle;
53 } handle;
54};
55using Type = uint8_t;
56using Json = nlohmann::json;
57using RecordHandle = uint32_t;
George Liu1ec85d42020-02-12 16:05:32 +080058using State = uint8_t;
59using PossibleValues = std::vector<uint8_t>;
60
61/** @brief Map of DBus property State to attribute value
62 */
63using StatestoDbusVal = std::map<State, pldm::utils::PropertyValue>;
George Liua2870722020-02-11 11:09:30 +080064using DbusMappings = std::vector<pldm::utils::DBusMapping>;
65using DbusValMaps = std::vector<StatestoDbusVal>;
George Liue53193f2020-02-24 09:23:26 +080066
67/** @brief Parse PDR JSON file and output Json object
68 *
69 * @param[in] path - path of PDR JSON file
70 *
71 * @return Json - Json object
72 */
73inline Json readJson(const std::string& path)
74{
75 fs::path dir(path);
76 if (!fs::exists(dir) || fs::is_empty(dir))
77 {
78 throw InternalFailure();
79 }
80
81 std::ifstream jsonFile(path);
82 if (!jsonFile.is_open())
83 {
Riya Dixit49cfb132023-03-02 04:26:53 -060084 error("Error opening PDR JSON file, PATH={JSON_PATH}", "JSON_PATH",
85 path);
George Liue53193f2020-02-24 09:23:26 +080086 return {};
87 }
88
89 return Json::parse(jsonFile);
90}
91
George Liu1ec85d42020-02-12 16:05:32 +080092/** @brief Populate the mapping between D-Bus property stateId and attribute
93 * value for the effecter PDR enumeration attribute.
94 *
95 * @param[in] type - type of the D-Bus property
96 * @param[in] dBusValues - json array of D-Bus property values
97 * @param[in] pv - Possible values for the effecter PDR enumeration attribute
98 *
99 * @return StatestoDbusVal - Map of D-Bus property stateId to attribute value
100 */
101StatestoDbusVal populateMapping(const std::string& type, const Json& dBusValues,
102 const PossibleValues& pv);
103
George Liue53193f2020-02-24 09:23:26 +0800104/**
105 * @class RepoInterface
106 *
107 * @brief Abstract class describing the interface API to the PDR repository,
108 * this class wraps operations used to handle the new PDR APIs.
109 */
110class RepoInterface
111{
112 public:
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600113 RepoInterface(pldm_pdr* repo) : repo(repo)
George Liu6492f522020-06-16 10:34:05 +0800114 {}
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600115
George Liue53193f2020-02-24 09:23:26 +0800116 virtual ~RepoInterface() = default;
117
118 /** @brief Get an opaque pldm_pdr structure
119 *
120 * @return pldm_pdr - pldm_pdr structure
121 */
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600122 virtual pldm_pdr* getPdr() const = 0;
George Liue53193f2020-02-24 09:23:26 +0800123
124 /** @brief Add a PDR record to a PDR repository
125 *
126 * @param[in] pdrEntry - PDR records entry(data, size, recordHandle)
127 *
128 * @return uint32_t - record handle assigned to PDR record
129 */
130 virtual RecordHandle addRecord(const PdrEntry& pdrEntry) = 0;
131
132 /** @brief Get the first PDR record from a PDR repository
133 *
134 * @param[in] pdrEntry - PDR records entry(data, size, nextRecordHandle)
135 *
136 * @return opaque pointer acting as PDR record handle, will be NULL if
137 * record was not found
138 */
139 virtual const pldm_pdr_record* getFirstRecord(PdrEntry& pdrEntry) = 0;
140
141 /** @brief Get the next PDR record from a PDR repository
142 *
143 * @param[in] currRecord - opaque pointer acting as a PDR record handle
144 * @param[in] pdrEntry - PDR records entry(data, size, nextRecordHandle)
145 *
146 * @return opaque pointer acting as PDR record handle, will be NULL if
147 * record was not found
148 */
149 virtual const pldm_pdr_record*
150 getNextRecord(const pldm_pdr_record* currRecord,
151 PdrEntry& pdrEntry) = 0;
152
153 /** @brief Get record handle of a PDR record
154 *
155 * @param[in] record - opaque pointer acting as a PDR record handle
156 *
157 * @return uint32_t - record handle assigned to PDR record; 0 if record is
158 * not found
159 */
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600160 virtual uint32_t getRecordHandle(const pldm_pdr_record* record) const = 0;
George Liue53193f2020-02-24 09:23:26 +0800161
162 /** @brief Get number of records in a PDR repository
163 *
164 * @return uint32_t - number of records
165 */
166 virtual uint32_t getRecordCount() = 0;
167
168 /** @brief Determine if records are empty in a PDR repository
169 *
170 * @return bool - true means empty and false means not empty
171 */
172 virtual bool empty() = 0;
173
174 protected:
175 pldm_pdr* repo;
176};
177
178/**
179 * @class Repo
180 *
181 * Wrapper class to handle the PDR APIs
182 *
183 * This class wraps operations used to handle PDR APIs.
184 */
185class Repo : public RepoInterface
186{
187 public:
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600188 Repo(pldm_pdr* repo) : RepoInterface(repo)
George Liu6492f522020-06-16 10:34:05 +0800189 {}
George Liue53193f2020-02-24 09:23:26 +0800190
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600191 pldm_pdr* getPdr() const override;
George Liue53193f2020-02-24 09:23:26 +0800192
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600193 RecordHandle addRecord(const PdrEntry& pdrEntry) override;
George Liue53193f2020-02-24 09:23:26 +0800194
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600195 const pldm_pdr_record* getFirstRecord(PdrEntry& pdrEntry) override;
George Liue53193f2020-02-24 09:23:26 +0800196
197 const pldm_pdr_record* getNextRecord(const pldm_pdr_record* currRecord,
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600198 PdrEntry& pdrEntry) override;
George Liue53193f2020-02-24 09:23:26 +0800199
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600200 uint32_t getRecordHandle(const pldm_pdr_record* record) const override;
George Liue53193f2020-02-24 09:23:26 +0800201
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600202 uint32_t getRecordCount() override;
George Liue53193f2020-02-24 09:23:26 +0800203
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600204 bool empty() override;
George Liue53193f2020-02-24 09:23:26 +0800205};
206
Tom Josephb4268602020-04-17 17:20:45 +0530207/** @brief Parse the State Sensor PDR and return the parsed sensor info which
208 * will be used to lookup the sensor info in the PlatformEventMessage
209 * command of sensorEvent type.
210 *
211 * @param[in] stateSensorPdr - state sensor PDR
212 *
213 * @return terminus handle, sensor ID and parsed sensor info
214 */
Brad Bishop5079ac42021-08-19 18:35:06 -0400215std::tuple<pldm::pdr::TerminusHandle, pldm::pdr::SensorID,
216 pldm::pdr::SensorInfo>
Tom Josephb4268602020-04-17 17:20:45 +0530217 parseStateSensorPDR(const std::vector<uint8_t>& stateSensorPdr);
218
George Liue53193f2020-02-24 09:23:26 +0800219} // namespace pdr_utils
220} // namespace responder
221} // namespace pldm