blob: 19da4825ca1377549739eadc87af6d23106f91c5 [file] [log] [blame]
Matt Spinlerc8705e22019-09-11 12:36:07 -05001#pragma once
2
Matt Spinler2a28c932020-02-03 14:23:40 -06003#include "dbus_types.hpp"
4#include "dbus_watcher.hpp"
5
Matt Spinler4dcd3f42020-01-22 14:55:07 -06006#include <filesystem>
Matt Spinlera7d9d962019-11-06 15:01:25 -06007#include <phosphor-logging/log.hpp>
Matt Spinlerc8705e22019-09-11 12:36:07 -05008#include <sdbusplus/bus.hpp>
9#include <sdbusplus/bus/match.hpp>
10
11namespace openpower
12{
13namespace pels
14{
15
Matt Spinlerc8705e22019-09-11 12:36:07 -050016/**
17 * @class DataInterface
18 *
Matt Spinler19e89ce2019-11-06 13:02:23 -060019 * A base class for gathering data about the system for use
20 * in PELs. Implemented this way to facilitate mocking.
Matt Spinlerc8705e22019-09-11 12:36:07 -050021 */
22class DataInterfaceBase
23{
24 public:
25 DataInterfaceBase() = default;
26 virtual ~DataInterfaceBase() = default;
27 DataInterfaceBase(const DataInterfaceBase&) = default;
28 DataInterfaceBase& operator=(const DataInterfaceBase&) = default;
29 DataInterfaceBase(DataInterfaceBase&&) = default;
30 DataInterfaceBase& operator=(DataInterfaceBase&&) = default;
31
32 /**
Matt Spinler19e89ce2019-11-06 13:02:23 -060033 * @brief Returns the machine Type/Model
Matt Spinlerc8705e22019-09-11 12:36:07 -050034 *
35 * @return string - The machine Type/Model string
36 */
Matt Spinler19e89ce2019-11-06 13:02:23 -060037 virtual std::string getMachineTypeModel() const
38 {
39 return _machineTypeModel;
40 }
Matt Spinlerc8705e22019-09-11 12:36:07 -050041
42 /**
Matt Spinler19e89ce2019-11-06 13:02:23 -060043 * @brief Returns the machine serial number
Matt Spinlerc8705e22019-09-11 12:36:07 -050044 *
45 * @return string - The machine serial number
46 */
Matt Spinler19e89ce2019-11-06 13:02:23 -060047 virtual std::string getMachineSerialNumber() const
48 {
49 return _machineSerialNumber;
50 }
51
Matt Spinlera7d9d962019-11-06 15:01:25 -060052 /**
Matt Spinlercce14112019-12-11 14:20:36 -060053 * @brief Says if the system is managed by a hardware
54 * management console.
55 * @return bool - If the system is HMC managed
56 */
57 virtual bool isHMCManaged() const
58 {
59 return _hmcManaged;
60 }
61
62 /**
Matt Spinlera7d9d962019-11-06 15:01:25 -060063 * @brief Says if the host is up and running
64 *
65 * @return bool - If the host is running
66 */
67 virtual bool isHostUp() const
68 {
69 return _hostUp;
70 }
71
Matt Spinlerb3f51862019-12-09 13:55:10 -060072 /**
73 * @brief Returns the PLDM instance ID to use for PLDM commands
74 *
75 * The base class implementation just returns zero.
76 *
77 * @param[in] eid - The PLDM EID
78 *
79 * @return uint8_t - The instance ID
80 */
81 virtual uint8_t getPLDMInstanceID(uint8_t eid) const
82 {
83 return 0;
84 }
85
Matt Spinlera7d9d962019-11-06 15:01:25 -060086 using HostStateChangeFunc = std::function<void(bool)>;
87
88 /**
89 * @brief Register a callback function that will get
90 * called on all host on/off transitions.
91 *
92 * The void(bool) function will get passed the new
93 * value of the host state.
94 *
95 * @param[in] name - The subscription name
96 * @param[in] func - The function to run
97 */
98 void subscribeToHostStateChange(const std::string& name,
99 HostStateChangeFunc func)
100 {
101 _hostChangeCallbacks[name] = func;
102 }
103
104 /**
105 * @brief Unsubscribe from host state changes.
106 *
107 * @param[in] name - The subscription name
108 */
109 void unsubscribeFromHostStateChange(const std::string& name)
110 {
111 _hostChangeCallbacks.erase(name);
112 }
113
Matt Spinlercad9c2b2019-12-02 15:42:01 -0600114 /**
115 * @brief Returns the BMC firmware version
116 *
117 * @return std::string - The BMC version
118 */
119 virtual std::string getBMCFWVersion() const
120 {
121 return _bmcFWVersion;
122 }
123
124 /**
125 * @brief Returns the server firmware version
126 *
127 * @return std::string - The server firmware version
128 */
129 virtual std::string getServerFWVersion() const
130 {
131 return _serverFWVersion;
132 }
133
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600134 /**
Matt Spinler677381b2020-01-23 10:04:29 -0600135 * @brief Returns the BMC FW version ID
136 *
137 * @return std::string - The BMC FW version ID
138 */
139 virtual std::string getBMCFWVersionID() const
140 {
141 return _bmcFWVersionID;
142 }
143
144 /**
Matt Spinler4dcd3f42020-01-22 14:55:07 -0600145 * @brief Returns the process name given its PID.
146 *
147 * @param[in] pid - The PID value as a string
148 *
149 * @return std::optional<std::string> - The name, or std::nullopt
150 */
151 std::optional<std::string> getProcessName(const std::string& pid) const
152 {
153 namespace fs = std::filesystem;
154
155 fs::path path{"/proc"};
156 path /= fs::path{pid} / "exe";
157
158 if (fs::exists(path))
159 {
160 return fs::read_symlink(path);
161 }
162
163 return std::nullopt;
164 }
165
Matt Spinler9cf3cfd2020-02-03 14:41:55 -0600166 /**
167 * @brief Returns the 'send event logs to host' setting.
168 *
169 * @return bool - If sending PELs to the host is enabled.
170 */
171 virtual bool getHostPELEnablement() const
172 {
173 return _sendPELsToHost;
174 }
175
Matt Spinler4aa23a12020-02-03 15:05:09 -0600176 /**
177 * @brief Returns the BMC state
178 *
179 * @return std::string - The BMC state property value
180 */
181 virtual std::string getBMCState() const
182 {
183 return _bmcState;
184 }
185
186 /**
187 * @brief Returns the Chassis state
188 *
189 * @return std::string - The chassis state property value
190 */
191 virtual std::string getChassisState() const
192 {
193 return _chassisState;
194 }
195
196 /**
197 * @brief Returns the chassis requested power
198 * transition value.
199 *
200 * @return std::string - The chassis transition property
201 */
202 virtual std::string getChassisTransition() const
203 {
204 return _chassisTransition;
205 }
206
207 /**
208 * @brief Returns the Host state
209 *
210 * @return std::string - The Host state property value
211 */
212 virtual std::string getHostState() const
213 {
214 return _hostState;
215 }
216
Matt Spinler19e89ce2019-11-06 13:02:23 -0600217 protected:
218 /**
Matt Spinlera7d9d962019-11-06 15:01:25 -0600219 * @brief Sets the host on/off state and runs any
220 * callback functions (if there was a change).
221 */
Matt Spinler4aa23a12020-02-03 15:05:09 -0600222 void setHostUp(bool hostUp)
Matt Spinlera7d9d962019-11-06 15:01:25 -0600223 {
Matt Spinler4aa23a12020-02-03 15:05:09 -0600224 if (_hostUp != hostUp)
Matt Spinlera7d9d962019-11-06 15:01:25 -0600225 {
Matt Spinler4aa23a12020-02-03 15:05:09 -0600226 _hostUp = hostUp;
Matt Spinlera7d9d962019-11-06 15:01:25 -0600227
228 for (auto& [name, func] : _hostChangeCallbacks)
229 {
230 try
231 {
232 func(_hostUp);
233 }
234 catch (std::exception& e)
235 {
236 using namespace phosphor::logging;
237 log<level::ERR>("A host state change callback threw "
238 "an exception");
239 }
240 }
241 }
242 }
243
244 /**
Matt Spinler19e89ce2019-11-06 13:02:23 -0600245 * @brief The machine type-model. Always kept up to date
246 */
247 std::string _machineTypeModel;
248
249 /**
250 * @brief The machine serial number. Always kept up to date
251 */
252 std::string _machineSerialNumber;
Matt Spinlera7d9d962019-11-06 15:01:25 -0600253
254 /**
Matt Spinlercce14112019-12-11 14:20:36 -0600255 * @brief The hardware management console status. Always kept
256 * up to date.
257 */
258 bool _hmcManaged = false;
259
260 /**
Matt Spinlera7d9d962019-11-06 15:01:25 -0600261 * @brief The host up status. Always kept up to date.
262 */
263 bool _hostUp = false;
264
265 /**
266 * @brief The map of host state change subscriber
267 * names to callback functions.
268 */
269 std::map<std::string, HostStateChangeFunc> _hostChangeCallbacks;
Matt Spinlercad9c2b2019-12-02 15:42:01 -0600270
271 /**
272 * @brief The BMC firmware version string
273 */
274 std::string _bmcFWVersion;
275
276 /**
277 * @brief The server firmware version string
278 */
279 std::string _serverFWVersion;
Matt Spinler677381b2020-01-23 10:04:29 -0600280
281 /**
282 * @brief The BMC firmware version ID string
283 */
284 std::string _bmcFWVersionID;
Matt Spinler9cf3cfd2020-02-03 14:41:55 -0600285
286 /**
287 * @brief If sending PELs is enabled.
288 *
289 * This is usually set to false in manufacturing test.
290 */
291 bool _sendPELsToHost = true;
Matt Spinler4aa23a12020-02-03 15:05:09 -0600292
293 /**
294 * @brief The BMC state property
295 */
296 std::string _bmcState;
297
298 /**
299 * @brief The Chassis current power state property
300 */
301 std::string _chassisState;
302
303 /**
304 * @brief The Chassis requested power transition property
305 */
306 std::string _chassisTransition;
307
308 /**
309 * @brief The host state property
310 */
311 std::string _hostState;
Matt Spinlerc8705e22019-09-11 12:36:07 -0500312};
313
314/**
315 * @class DataInterface
316 *
317 * Concrete implementation of DataInterfaceBase.
318 */
319class DataInterface : public DataInterfaceBase
320{
321 public:
322 DataInterface() = delete;
323 ~DataInterface() = default;
324 DataInterface(const DataInterface&) = default;
325 DataInterface& operator=(const DataInterface&) = default;
326 DataInterface(DataInterface&&) = default;
327 DataInterface& operator=(DataInterface&&) = default;
328
329 /**
330 * @brief Constructor
331 *
332 * @param[in] bus - The sdbusplus bus object
333 */
334 explicit DataInterface(sdbusplus::bus::bus& bus);
335
Matt Spinlerb3f51862019-12-09 13:55:10 -0600336 /**
337 * @brief Returns the PLDM instance ID to use for PLDM commands
338 *
339 * @param[in] eid - The PLDM EID
340 *
341 * @return uint8_t - The instance ID
342 */
343 uint8_t getPLDMInstanceID(uint8_t eid) const override;
344
Matt Spinler677381b2020-01-23 10:04:29 -0600345 /**
Matt Spinlerc8705e22019-09-11 12:36:07 -0500346 * @brief Finds the D-Bus service name that hosts the
347 * passed in path and interface.
348 *
349 * @param[in] objectPath - The D-Bus object path
350 * @param[in] interface - The D-Bus interface
351 */
352 DBusService getService(const std::string& objectPath,
Matt Spinlerb3f51862019-12-09 13:55:10 -0600353 const std::string& interface) const;
Matt Spinler9cf3cfd2020-02-03 14:41:55 -0600354
Matt Spinlerc8705e22019-09-11 12:36:07 -0500355 /**
356 * @brief Wrapper for the 'GetAll' properties method call
357 *
358 * @param[in] service - The D-Bus service to call it on
359 * @param[in] objectPath - The D-Bus object path
360 * @param[in] interface - The interface to get the props on
361 *
362 * @return DBusPropertyMap - The property results
363 */
364 DBusPropertyMap getAllProperties(const std::string& service,
365 const std::string& objectPath,
Matt Spinler2a28c932020-02-03 14:23:40 -0600366 const std::string& interface) const;
Matt Spinlerc8705e22019-09-11 12:36:07 -0500367 /**
Matt Spinlera7d9d962019-11-06 15:01:25 -0600368 * @brief Wrapper for the 'Get' properties method call
369 *
370 * @param[in] service - The D-Bus service to call it on
371 * @param[in] objectPath - The D-Bus object path
372 * @param[in] interface - The interface to get the property on
373 * @param[in] property - The property name
374 * @param[out] value - Filled in with the property value.
375 */
376 void getProperty(const std::string& service, const std::string& objectPath,
377 const std::string& interface, const std::string& property,
Matt Spinler2a28c932020-02-03 14:23:40 -0600378 DBusValue& value) const;
379
380 private:
381 /**
382 * @brief Reads the BMC firmware version string and puts it into
383 * _bmcFWVersion.
384 */
385 void readBMCFWVersion();
Matt Spinlera7d9d962019-11-06 15:01:25 -0600386
387 /**
Matt Spinler2a28c932020-02-03 14:23:40 -0600388 * @brief Reads the server firmware version string and puts it into
389 * _serverFWVersion.
Matt Spinlerc8705e22019-09-11 12:36:07 -0500390 */
Matt Spinler2a28c932020-02-03 14:23:40 -0600391 void readServerFWVersion();
Matt Spinlerc8705e22019-09-11 12:36:07 -0500392
393 /**
Matt Spinler2a28c932020-02-03 14:23:40 -0600394 * @brief Reads the BMC firmware version ID and puts it into
395 * _bmcFWVersionID.
Matt Spinlera7d9d962019-11-06 15:01:25 -0600396 */
Matt Spinler2a28c932020-02-03 14:23:40 -0600397 void readBMCFWVersionID();
Matt Spinlera7d9d962019-11-06 15:01:25 -0600398
399 /**
Matt Spinler2a28c932020-02-03 14:23:40 -0600400 * @brief The D-Bus property or interface watchers that have callbacks
401 * registered that will set members in this class when
402 * they change.
Matt Spinlerc8705e22019-09-11 12:36:07 -0500403 */
Matt Spinler2a28c932020-02-03 14:23:40 -0600404 std::vector<std::unique_ptr<DBusWatcher>> _properties;
Matt Spinlera7d9d962019-11-06 15:01:25 -0600405
406 /**
Matt Spinlerc8705e22019-09-11 12:36:07 -0500407 * @brief The sdbusplus bus object for making D-Bus calls.
408 */
409 sdbusplus::bus::bus& _bus;
410};
411
412} // namespace pels
413} // namespace openpower