blob: 50babca71f35c629a39d60e557ebf45f9b2d796d [file] [log] [blame]
Tom Joseph6b7a1432017-05-19 10:43:36 +05301#pragma once
2
3#include <cstdint>
4#include <sdbusplus/server.hpp>
5#include "types.hpp"
6
7namespace ipmi
8{
9
10namespace sel
11{
12
13static constexpr auto mapperBusName = "xyz.openbmc_project.ObjectMapper";
14static constexpr auto mapperObjPath = "/xyz/openbmc_project/object_mapper";
15static constexpr auto mapperIntf = "xyz.openbmc_project.ObjectMapper";
16
17static constexpr auto logBasePath = "/xyz/openbmc_project/logging/entry";
18static constexpr auto logEntryIntf = "xyz.openbmc_project.Logging.Entry";
19static constexpr auto logDeleteIntf = "xyz.openbmc_project.Object.Delete";
20
21static constexpr auto propIntf = "org.freedesktop.DBus.Properties";
22
23using PropertyType = sdbusplus::message::variant<bool, uint32_t, uint64_t,
24 std::string, std::vector<std::string>>;
25
Tom Joseph6f7deaa2017-06-30 19:03:54 +053026static constexpr auto selVersion = 0x51;
27static constexpr auto invalidTimeStamp = 0xFFFFFFFF;
28static constexpr auto operationSupport = 0x0A;
29
30/** @struct GetSELInfoResponse
31 *
32 * IPMI payload for Get SEL Info command response.
33 */
34struct GetSELInfoResponse
35{
36 uint8_t selVersion; //!< SEL revision.
37 uint16_t entries; //!< Number of log entries in SEL.
38 uint16_t freeSpace; //!< Free Space in bytes.
39 uint32_t addTimeStamp; //!< Most recent addition timestamp.
40 uint32_t eraseTimeStamp; //!< Most recent erase timestamp.
41 uint8_t operationSupport; //!< Operation support.
42} __attribute__((packed));
43
Tom Josepha4953392017-06-30 19:09:47 +053044static constexpr auto firstEntry = 0x0000;
45static constexpr auto lastEntry = 0xFFFF;
46static constexpr auto entireRecord = 0xFF;
47static constexpr auto selRecordSize = 16;
48
49/** @struct GetSELEntryRequest
50 *
51 * IPMI payload for Get SEL Entry command request.
52 */
53struct GetSELEntryRequest
54{
55 uint16_t reservationID; //!< Reservation ID.
56 uint16_t selRecordID; //!< SEL Record ID.
57 uint8_t offset; //!< Offset into record.
58 uint8_t readLength; //!< Bytes to read.
59} __attribute__((packed));
60
Tom Joseph6b7a1432017-05-19 10:43:36 +053061/** @struct GetSELEntryResponse
62 *
63 * IPMI payload for Get SEL Entry command response.
64 */
65struct GetSELEntryResponse
66{
67 uint16_t nextRecordID; //!< Next RecordID.
68 uint16_t recordID; //!< Record ID.
69 uint8_t recordType; //!< Record Type.
70 uint32_t timeStamp; //!< Timestamp.
71 uint16_t generatorID; //!< Generator ID.
72 uint8_t eventMsgRevision; //!< Event Message Revision.
73 uint8_t sensorType; //!< Sensor Type.
74 uint8_t sensorNum; //!< Sensor Number.
75 uint8_t eventType; //!< Event Dir | Event Type.
76 uint8_t eventData1; //!< Event Data 1.
77 uint8_t eventData2; //!< Event Data 2.
78 uint8_t eventData3; //!< Event Data 3.
79} __attribute__((packed));
80
Tom Joseph8f4a2aa2017-06-30 19:12:49 +053081/** @struct DeleteSELEntryRequest
82 *
83 * IPMI payload for Delete SEL Entry command request.
84 */
85struct DeleteSELEntryRequest
86{
87 uint16_t reservationID; //!< Reservation ID.
88 uint16_t selRecordID; //!< SEL Record ID.
89} __attribute__((packed));
90
Tom Joseph6edc8a02017-06-30 18:52:56 +053091/** @brief Convert logging entry to SEL
92 *
93 * @param[in] objPath - DBUS object path of the logging entry.
94 *
95 * @return On success return the response of Get SEL entry command.
96 */
97GetSELEntryResponse convertLogEntrytoSEL(const std::string& objPath);
98
Tom Joseph399fd922017-06-30 18:40:30 +053099/** @brief Get the timestamp of the log entry
100 *
101 * @param[in] objPath - DBUS object path of the logging entry.
102 *
103 * @return On success return the timestamp of the log entry as number of
104 * seconds from epoch.
105 */
106std::chrono::seconds getEntryTimeStamp(const std::string& objPath);
Tom Joseph6edc8a02017-06-30 18:52:56 +0530107
Tom Joseph6b7a1432017-05-19 10:43:36 +0530108namespace internal
109{
110
111/** @brief Convert logging entry to SEL event record
112 *
113 * @param[in] objPath - DBUS object path of the logging entry.
114 * @param[in] iter - Iterator to the sensor data corresponding to the logging
115 * entry
116 *
117 * @return On success return the SEL event record, throw an exception in case
118 * of failure.
119 */
120GetSELEntryResponse prepareSELEntry(
121 const std::string& objPath,
122 ipmi::sensor::InvObjectIDMap::const_iterator iter);
123
Tom Joseph399fd922017-06-30 18:40:30 +0530124}
Tom Joseph6b7a1432017-05-19 10:43:36 +0530125
126} // namespace sel
127
128} // namespace ipmi