blob: 44ac008d4f60960517ceb371edf18d317067dfd4 [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>
10#include <xyz/openbmc_project/Common/error.hpp>
11
George Liue53193f2020-02-24 09:23:26 +080012#include <filesystem>
13#include <fstream>
14#include <functional>
15#include <iostream>
George Liue53193f2020-02-24 09:23:26 +080016#include <string>
George Liue53193f2020-02-24 09:23:26 +080017
18using InternalFailure =
19 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
20
21namespace fs = std::filesystem;
22
23namespace pldm
24{
25
26namespace responder
27{
28
29namespace pdr_utils
30{
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 {
84 std::cerr << "Error opening PDR JSON file, PATH=" << path << "\n";
85 return {};
86 }
87
88 return Json::parse(jsonFile);
89}
90
George Liu1ec85d42020-02-12 16:05:32 +080091/** @brief Populate the mapping between D-Bus property stateId and attribute
92 * value for the effecter PDR enumeration attribute.
93 *
94 * @param[in] type - type of the D-Bus property
95 * @param[in] dBusValues - json array of D-Bus property values
96 * @param[in] pv - Possible values for the effecter PDR enumeration attribute
97 *
98 * @return StatestoDbusVal - Map of D-Bus property stateId to attribute value
99 */
100StatestoDbusVal populateMapping(const std::string& type, const Json& dBusValues,
101 const PossibleValues& pv);
102
George Liue53193f2020-02-24 09:23:26 +0800103/**
104 * @class RepoInterface
105 *
106 * @brief Abstract class describing the interface API to the PDR repository,
107 * this class wraps operations used to handle the new PDR APIs.
108 */
109class RepoInterface
110{
111 public:
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600112 RepoInterface(pldm_pdr* repo) : repo(repo)
George Liu6492f522020-06-16 10:34:05 +0800113 {}
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600114
George Liue53193f2020-02-24 09:23:26 +0800115 virtual ~RepoInterface() = default;
116
117 /** @brief Get an opaque pldm_pdr structure
118 *
119 * @return pldm_pdr - pldm_pdr structure
120 */
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600121 virtual pldm_pdr* getPdr() const = 0;
George Liue53193f2020-02-24 09:23:26 +0800122
123 /** @brief Add a PDR record to a PDR repository
124 *
125 * @param[in] pdrEntry - PDR records entry(data, size, recordHandle)
126 *
127 * @return uint32_t - record handle assigned to PDR record
128 */
129 virtual RecordHandle addRecord(const PdrEntry& pdrEntry) = 0;
130
131 /** @brief Get the first PDR record from a PDR repository
132 *
133 * @param[in] pdrEntry - PDR records entry(data, size, nextRecordHandle)
134 *
135 * @return opaque pointer acting as PDR record handle, will be NULL if
136 * record was not found
137 */
138 virtual const pldm_pdr_record* getFirstRecord(PdrEntry& pdrEntry) = 0;
139
140 /** @brief Get the next PDR record from a PDR repository
141 *
142 * @param[in] currRecord - opaque pointer acting as a PDR record handle
143 * @param[in] pdrEntry - PDR records entry(data, size, nextRecordHandle)
144 *
145 * @return opaque pointer acting as PDR record handle, will be NULL if
146 * record was not found
147 */
148 virtual const pldm_pdr_record*
149 getNextRecord(const pldm_pdr_record* currRecord,
150 PdrEntry& pdrEntry) = 0;
151
152 /** @brief Get record handle of a PDR record
153 *
154 * @param[in] record - opaque pointer acting as a PDR record handle
155 *
156 * @return uint32_t - record handle assigned to PDR record; 0 if record is
157 * not found
158 */
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600159 virtual uint32_t getRecordHandle(const pldm_pdr_record* record) const = 0;
George Liue53193f2020-02-24 09:23:26 +0800160
161 /** @brief Get number of records in a PDR repository
162 *
163 * @return uint32_t - number of records
164 */
165 virtual uint32_t getRecordCount() = 0;
166
167 /** @brief Determine if records are empty in a PDR repository
168 *
169 * @return bool - true means empty and false means not empty
170 */
171 virtual bool empty() = 0;
172
173 protected:
174 pldm_pdr* repo;
175};
176
177/**
178 * @class Repo
179 *
180 * Wrapper class to handle the PDR APIs
181 *
182 * This class wraps operations used to handle PDR APIs.
183 */
184class Repo : public RepoInterface
185{
186 public:
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600187 Repo(pldm_pdr* repo) : RepoInterface(repo)
George Liu6492f522020-06-16 10:34:05 +0800188 {}
George Liue53193f2020-02-24 09:23:26 +0800189
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600190 pldm_pdr* getPdr() const override;
George Liue53193f2020-02-24 09:23:26 +0800191
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600192 RecordHandle addRecord(const PdrEntry& pdrEntry) override;
George Liue53193f2020-02-24 09:23:26 +0800193
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600194 const pldm_pdr_record* getFirstRecord(PdrEntry& pdrEntry) override;
George Liue53193f2020-02-24 09:23:26 +0800195
196 const pldm_pdr_record* getNextRecord(const pldm_pdr_record* currRecord,
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600197 PdrEntry& pdrEntry) override;
George Liue53193f2020-02-24 09:23:26 +0800198
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600199 uint32_t getRecordHandle(const pldm_pdr_record* record) const override;
George Liue53193f2020-02-24 09:23:26 +0800200
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600201 uint32_t getRecordCount() override;
George Liue53193f2020-02-24 09:23:26 +0800202
Deepak Kodihallic682fe22020-03-04 00:42:54 -0600203 bool empty() override;
George Liue53193f2020-02-24 09:23:26 +0800204};
205
Tom Josephb4268602020-04-17 17:20:45 +0530206/** @brief Parse the State Sensor PDR and return the parsed sensor info which
207 * will be used to lookup the sensor info in the PlatformEventMessage
208 * command of sensorEvent type.
209 *
210 * @param[in] stateSensorPdr - state sensor PDR
211 *
212 * @return terminus handle, sensor ID and parsed sensor info
213 */
Brad Bishop5079ac42021-08-19 18:35:06 -0400214std::tuple<pldm::pdr::TerminusHandle, pldm::pdr::SensorID,
215 pldm::pdr::SensorInfo>
Tom Josephb4268602020-04-17 17:20:45 +0530216 parseStateSensorPDR(const std::vector<uint8_t>& stateSensorPdr);
217
George Liue53193f2020-02-24 09:23:26 +0800218} // namespace pdr_utils
219} // namespace responder
220} // namespace pldm