Brandon Kim | 9cf8562 | 2019-06-19 12:05:08 -0700 | [diff] [blame] | 1 | #include "config.h" |
| 2 | |
Patrick Venture | 46470a3 | 2018-09-07 19:26:25 -0700 | [diff] [blame] | 3 | #include "sensorhandler.hpp" |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 4 | |
Patrick Venture | 99bf1c4 | 2019-08-23 09:02:13 -0700 | [diff] [blame] | 5 | #include "entity_map_json.hpp" |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 6 | #include "fruread.hpp" |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 7 | |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 8 | #include <mapper.h> |
Chris Austen | 10ccc0f | 2015-12-10 18:27:04 -0600 | [diff] [blame] | 9 | #include <systemd/sd-bus.h> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 10 | |
| 11 | #include <bitset> |
Patrick Venture | 586d35b | 2018-09-07 19:56:18 -0700 | [diff] [blame] | 12 | #include <cmath> |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 13 | #include <cstring> |
Vernon Mauery | e08fbff | 2019-04-03 09:19:34 -0700 | [diff] [blame] | 14 | #include <ipmid/api.hpp> |
Vernon Mauery | 3325024 | 2019-03-12 16:49:26 -0700 | [diff] [blame] | 15 | #include <ipmid/types.hpp> |
Vernon Mauery | 6a98fe7 | 2019-03-11 15:57:48 -0700 | [diff] [blame] | 16 | #include <ipmid/utils.hpp> |
Dhruvaraj Subhashchandran | 18e9999 | 2017-08-09 09:10:47 -0500 | [diff] [blame] | 17 | #include <phosphor-logging/elog-errors.hpp> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 18 | #include <phosphor-logging/log.hpp> |
William A. Kennington III | 4c00802 | 2018-10-12 17:18:14 -0700 | [diff] [blame] | 19 | #include <sdbusplus/message/types.hpp> |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 20 | #include <set> |
| 21 | #include <xyz/openbmc_project/Common/error.hpp> |
| 22 | #include <xyz/openbmc_project/Sensor/Value/server.hpp> |
| 23 | |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 24 | static constexpr uint8_t fruInventoryDevice = 0x10; |
| 25 | static constexpr uint8_t IPMIFruInventory = 0x02; |
| 26 | static constexpr uint8_t BMCSlaveAddress = 0x20; |
| 27 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 28 | extern int updateSensorRecordFromSSRAESC(const void*); |
| 29 | extern sd_bus* bus; |
Patrick Venture | db0cbe6 | 2019-09-09 14:47:22 -0700 | [diff] [blame] | 30 | |
| 31 | namespace ipmi |
| 32 | { |
| 33 | namespace sensor |
| 34 | { |
| 35 | extern const IdInfoMap sensors; |
| 36 | } // namespace sensor |
| 37 | } // namespace ipmi |
| 38 | |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 39 | extern const FruMap frus; |
| 40 | |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 41 | using namespace phosphor::logging; |
Dhruvaraj Subhashchandran | 18e9999 | 2017-08-09 09:10:47 -0500 | [diff] [blame] | 42 | using InternalFailure = |
| 43 | sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure; |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 44 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 45 | void register_netfn_sen_functions() __attribute__((constructor)); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 46 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 47 | struct sensorTypemap_t |
| 48 | { |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 49 | uint8_t number; |
Chris Austen | d7cf0e4 | 2015-11-07 14:27:12 -0600 | [diff] [blame] | 50 | uint8_t typecode; |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 51 | char dbusname[32]; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 52 | }; |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 53 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 54 | sensorTypemap_t g_SensorTypeMap[] = { |
| 55 | |
Chris Austen | d7cf0e4 | 2015-11-07 14:27:12 -0600 | [diff] [blame] | 56 | {0x01, 0x6F, "Temp"}, |
| 57 | {0x0C, 0x6F, "DIMM"}, |
| 58 | {0x0C, 0x6F, "MEMORY_BUFFER"}, |
| 59 | {0x07, 0x6F, "PROC"}, |
| 60 | {0x07, 0x6F, "CORE"}, |
| 61 | {0x07, 0x6F, "CPU"}, |
| 62 | {0x0F, 0x6F, "BootProgress"}, |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 63 | {0xe9, 0x09, "OccStatus"}, // E9 is an internal mapping to handle sensor |
| 64 | // type code os 0x09 |
Chris Austen | d7cf0e4 | 2015-11-07 14:27:12 -0600 | [diff] [blame] | 65 | {0xC3, 0x6F, "BootCount"}, |
| 66 | {0x1F, 0x6F, "OperatingSystemStatus"}, |
Chris Austen | 800ba71 | 2015-12-03 15:31:00 -0600 | [diff] [blame] | 67 | {0x12, 0x6F, "SYSTEM_EVENT"}, |
| 68 | {0xC7, 0x03, "SYSTEM"}, |
| 69 | {0xC7, 0x03, "MAIN_PLANAR"}, |
Chris Austen | 10ccc0f | 2015-12-10 18:27:04 -0600 | [diff] [blame] | 70 | {0xC2, 0x6F, "PowerCap"}, |
Tom Joseph | 558184e | 2017-09-01 13:45:05 +0530 | [diff] [blame] | 71 | {0x0b, 0xCA, "PowerSupplyRedundancy"}, |
Jayanth Othayoth | 0661beb | 2017-03-22 06:00:58 -0500 | [diff] [blame] | 72 | {0xDA, 0x03, "TurboAllowed"}, |
Tom Joseph | 558184e | 2017-09-01 13:45:05 +0530 | [diff] [blame] | 73 | {0xD8, 0xC8, "PowerSupplyDerating"}, |
Chris Austen | d7cf0e4 | 2015-11-07 14:27:12 -0600 | [diff] [blame] | 74 | {0xFF, 0x00, ""}, |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 75 | }; |
| 76 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 77 | struct sensor_data_t |
| 78 | { |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 79 | uint8_t sennum; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 80 | } __attribute__((packed)); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 81 | |
Lei YU | 14a4781 | 2021-09-17 15:58:04 +0800 | [diff] [blame^] | 82 | using SDRCacheMap = std::unordered_map<uint8_t, get_sdr::SensorDataFullRecord>; |
| 83 | SDRCacheMap sdrCacheMap __attribute__((init_priority(101))); |
| 84 | |
| 85 | using SensorThresholdMap = |
| 86 | std::unordered_map<uint8_t, get_sdr::GetSensorThresholdsResponse>; |
| 87 | SensorThresholdMap sensorThresholdMap __attribute__((init_priority(101))); |
| 88 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 89 | int get_bus_for_path(const char* path, char** busname) |
| 90 | { |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 91 | return mapper_get_service(bus, path, busname); |
| 92 | } |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 93 | |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 94 | // Use a lookup table to find the interface name of a specific sensor |
| 95 | // This will be used until an alternative is found. this is the first |
| 96 | // step for mapping IPMI |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 97 | int find_openbmc_path(uint8_t num, dbus_interface_t* interface) |
| 98 | { |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 99 | int rc; |
| 100 | |
Patrick Venture | db0cbe6 | 2019-09-09 14:47:22 -0700 | [diff] [blame] | 101 | const auto& sensor_it = ipmi::sensor::sensors.find(num); |
| 102 | if (sensor_it == ipmi::sensor::sensors.end()) |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 103 | { |
Adriana Kobylak | ba23ff7 | 2018-09-12 12:58:43 -0500 | [diff] [blame] | 104 | // The sensor map does not contain the sensor requested |
| 105 | return -EINVAL; |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | const auto& info = sensor_it->second; |
| 109 | |
Patrick Williams | 8451edf | 2017-06-13 09:01:06 -0500 | [diff] [blame] | 110 | char* busname = nullptr; |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 111 | rc = get_bus_for_path(info.sensorPath.c_str(), &busname); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 112 | if (rc < 0) |
| 113 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 114 | std::fprintf(stderr, "Failed to get %s busname: %s\n", |
| 115 | info.sensorPath.c_str(), busname); |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 116 | goto final; |
| 117 | } |
| 118 | |
| 119 | interface->sensortype = info.sensorType; |
| 120 | strcpy(interface->bus, busname); |
| 121 | strcpy(interface->path, info.sensorPath.c_str()); |
| 122 | // Take the interface name from the beginning of the DbusInterfaceMap. This |
| 123 | // works for the Value interface but may not suffice for more complex |
| 124 | // sensors. |
| 125 | // tracked https://github.com/openbmc/phosphor-host-ipmid/issues/103 |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 126 | strcpy(interface->interface, |
| 127 | info.propertyInterfaces.begin()->first.c_str()); |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 128 | interface->sensornumber = num; |
| 129 | |
| 130 | final: |
| 131 | free(busname); |
| 132 | return rc; |
| 133 | } |
| 134 | |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 135 | ///////////////////////////////////////////////////////////////////// |
| 136 | // |
| 137 | // Routines used by ipmi commands wanting to interact on the dbus |
| 138 | // |
| 139 | ///////////////////////////////////////////////////////////////////// |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 140 | int set_sensor_dbus_state_s(uint8_t number, const char* method, |
| 141 | const char* value) |
| 142 | { |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 143 | |
| 144 | dbus_interface_t a; |
| 145 | int r; |
| 146 | sd_bus_error error = SD_BUS_ERROR_NULL; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 147 | sd_bus_message* m = NULL; |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 148 | |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 149 | r = find_openbmc_path(number, &a); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 150 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 151 | if (r < 0) |
| 152 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 153 | std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 154 | return 0; |
| 155 | } |
| 156 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 157 | r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface, |
| 158 | method); |
| 159 | if (r < 0) |
| 160 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 161 | std::fprintf(stderr, "Failed to create a method call: %s", |
| 162 | strerror(-r)); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 163 | goto final; |
| 164 | } |
| 165 | |
| 166 | r = sd_bus_message_append(m, "v", "s", value); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 167 | if (r < 0) |
| 168 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 169 | std::fprintf(stderr, "Failed to create a input parameter: %s", |
| 170 | strerror(-r)); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 171 | goto final; |
| 172 | } |
| 173 | |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 174 | r = sd_bus_call(bus, m, 0, &error, NULL); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 175 | if (r < 0) |
| 176 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 177 | std::fprintf(stderr, "Failed to call the method: %s", strerror(-r)); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | final: |
| 181 | sd_bus_error_free(&error); |
| 182 | m = sd_bus_message_unref(m); |
| 183 | |
| 184 | return 0; |
| 185 | } |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 186 | int set_sensor_dbus_state_y(uint8_t number, const char* method, |
| 187 | const uint8_t value) |
| 188 | { |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 189 | |
| 190 | dbus_interface_t a; |
| 191 | int r; |
| 192 | sd_bus_error error = SD_BUS_ERROR_NULL; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 193 | sd_bus_message* m = NULL; |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 194 | |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 195 | r = find_openbmc_path(number, &a); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 196 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 197 | if (r < 0) |
| 198 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 199 | std::fprintf(stderr, "Failed to find Sensor 0x%02x\n", number); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 200 | return 0; |
| 201 | } |
| 202 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 203 | r = sd_bus_message_new_method_call(bus, &m, a.bus, a.path, a.interface, |
| 204 | method); |
| 205 | if (r < 0) |
| 206 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 207 | std::fprintf(stderr, "Failed to create a method call: %s", |
| 208 | strerror(-r)); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 209 | goto final; |
| 210 | } |
| 211 | |
| 212 | r = sd_bus_message_append(m, "v", "i", value); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 213 | if (r < 0) |
| 214 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 215 | std::fprintf(stderr, "Failed to create a input parameter: %s", |
| 216 | strerror(-r)); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 217 | goto final; |
| 218 | } |
| 219 | |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 220 | r = sd_bus_call(bus, m, 0, &error, NULL); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 221 | if (r < 0) |
| 222 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 223 | std::fprintf(stderr, "12 Failed to call the method: %s", strerror(-r)); |
Tom | d700e76 | 2016-09-20 18:24:13 +0530 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | final: |
| 227 | sd_bus_error_free(&error); |
| 228 | m = sd_bus_message_unref(m); |
| 229 | |
| 230 | return 0; |
| 231 | } |
| 232 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 233 | uint8_t dbus_to_sensor_type(char* p) |
| 234 | { |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 235 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 236 | sensorTypemap_t* s = g_SensorTypeMap; |
| 237 | char r = 0; |
| 238 | while (s->number != 0xFF) |
| 239 | { |
| 240 | if (!strcmp(s->dbusname, p)) |
| 241 | { |
Tom Joseph | 558184e | 2017-09-01 13:45:05 +0530 | [diff] [blame] | 242 | r = s->typecode; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 243 | break; |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 244 | } |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 245 | s++; |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 246 | } |
| 247 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 248 | if (s->number == 0xFF) |
| 249 | printf("Failed to find Sensor Type %s\n", p); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 250 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 251 | return r; |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 252 | } |
| 253 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 254 | uint8_t get_type_from_interface(dbus_interface_t dbus_if) |
| 255 | { |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 256 | |
Brad Bishop | 5600345 | 2016-10-05 21:49:19 -0400 | [diff] [blame] | 257 | uint8_t type; |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 258 | |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 259 | // This is where sensors that do not exist in dbus but do |
| 260 | // exist in the host code stop. This should indicate it |
| 261 | // is not a supported sensor |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 262 | if (dbus_if.interface[0] == 0) |
| 263 | { |
| 264 | return 0; |
| 265 | } |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 266 | |
Emily Shaffer | 7117441 | 2017-04-05 15:10:40 -0700 | [diff] [blame] | 267 | // Fetch type from interface itself. |
| 268 | if (dbus_if.sensortype != 0) |
| 269 | { |
| 270 | type = dbus_if.sensortype; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 271 | } |
| 272 | else |
| 273 | { |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 274 | // Non InventoryItems |
Patrick Venture | 4491a46 | 2018-10-13 13:00:42 -0700 | [diff] [blame] | 275 | char* p = strrchr(dbus_if.path, '/'); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 276 | type = dbus_to_sensor_type(p + 1); |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 277 | } |
| 278 | |
Brad Bishop | 5600345 | 2016-10-05 21:49:19 -0400 | [diff] [blame] | 279 | return type; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 280 | } |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 281 | |
Emily Shaffer | 391f330 | 2017-04-03 10:27:08 -0700 | [diff] [blame] | 282 | // Replaces find_sensor |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 283 | uint8_t find_type_for_sensor_number(uint8_t num) |
| 284 | { |
Emily Shaffer | 391f330 | 2017-04-03 10:27:08 -0700 | [diff] [blame] | 285 | int r; |
| 286 | dbus_interface_t dbus_if; |
Emily Shaffer | 2ae09b9 | 2017-04-05 15:09:41 -0700 | [diff] [blame] | 287 | r = find_openbmc_path(num, &dbus_if); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 288 | if (r < 0) |
| 289 | { |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 290 | std::fprintf(stderr, "Could not find sensor %d\n", num); |
Lei YU | 91875f7 | 2018-04-03 15:14:49 +0800 | [diff] [blame] | 291 | return 0; |
Emily Shaffer | 391f330 | 2017-04-03 10:27:08 -0700 | [diff] [blame] | 292 | } |
| 293 | return get_type_from_interface(dbus_if); |
| 294 | } |
| 295 | |
Deepak Kumar Sahu | a8be7dc | 2019-05-07 14:26:53 +0000 | [diff] [blame] | 296 | /** |
| 297 | * @brief implements the get sensor type command. |
| 298 | * @param - sensorNumber |
| 299 | * |
| 300 | * @return IPMI completion code plus response data on success. |
| 301 | * - sensorType |
| 302 | * - eventType |
| 303 | **/ |
| 304 | |
| 305 | ipmi::RspType<uint8_t, // sensorType |
| 306 | uint8_t // eventType |
| 307 | > |
| 308 | ipmiGetSensorType(uint8_t sensorNumber) |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 309 | { |
Deepak Kumar Sahu | a8be7dc | 2019-05-07 14:26:53 +0000 | [diff] [blame] | 310 | uint8_t sensorType = find_type_for_sensor_number(sensorNumber); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 311 | |
Deepak Kumar Sahu | a8be7dc | 2019-05-07 14:26:53 +0000 | [diff] [blame] | 312 | if (sensorType == 0) |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 313 | { |
Deepak Kumar Sahu | a8be7dc | 2019-05-07 14:26:53 +0000 | [diff] [blame] | 314 | return ipmi::responseSensorInvalid(); |
Chris Austen | 0012e9b | 2015-10-22 01:37:46 -0500 | [diff] [blame] | 315 | } |
| 316 | |
Deepak Kumar Sahu | a8be7dc | 2019-05-07 14:26:53 +0000 | [diff] [blame] | 317 | constexpr uint8_t eventType = 0x6F; |
| 318 | return ipmi::responseSuccess(sensorType, eventType); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 319 | } |
| 320 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 321 | const std::set<std::string> analogSensorInterfaces = { |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 322 | "xyz.openbmc_project.Sensor.Value", |
Patrick Venture | e9a6405 | 2017-08-18 19:17:27 -0700 | [diff] [blame] | 323 | "xyz.openbmc_project.Control.FanPwm", |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 324 | }; |
| 325 | |
| 326 | bool isAnalogSensor(const std::string& interface) |
| 327 | { |
| 328 | return (analogSensorInterfaces.count(interface)); |
| 329 | } |
| 330 | |
Deepak Kumar Sahu | 9da3a75 | 2019-05-21 00:45:14 +0000 | [diff] [blame] | 331 | /** |
| 332 | @brief This command is used to set sensorReading. |
| 333 | |
| 334 | @param |
| 335 | - sensorNumber |
| 336 | - operation |
| 337 | - reading |
| 338 | - assertOffset0_7 |
| 339 | - assertOffset8_14 |
| 340 | - deassertOffset0_7 |
| 341 | - deassertOffset8_14 |
| 342 | - eventData1 |
| 343 | - eventData2 |
| 344 | - eventData3 |
| 345 | |
| 346 | @return completion code on success. |
| 347 | **/ |
| 348 | |
| 349 | ipmi::RspType<> ipmiSetSensorReading(uint8_t sensorNumber, uint8_t operation, |
| 350 | uint8_t reading, uint8_t assertOffset0_7, |
| 351 | uint8_t assertOffset8_14, |
| 352 | uint8_t deassertOffset0_7, |
| 353 | uint8_t deassertOffset8_14, |
| 354 | uint8_t eventData1, uint8_t eventData2, |
| 355 | uint8_t eventData3) |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 356 | { |
Deepak Kumar Sahu | 9da3a75 | 2019-05-21 00:45:14 +0000 | [diff] [blame] | 357 | log<level::DEBUG>("IPMI SET_SENSOR", |
| 358 | entry("SENSOR_NUM=0x%02x", sensorNumber)); |
| 359 | |
Arun P. Mohanan | 0634e98 | 2021-08-30 15:21:33 +0530 | [diff] [blame] | 360 | if (sensorNumber == 0xFF) |
| 361 | { |
| 362 | return ipmi::responseInvalidFieldRequest(); |
| 363 | } |
Deepak Kumar Sahu | 9da3a75 | 2019-05-21 00:45:14 +0000 | [diff] [blame] | 364 | ipmi::sensor::SetSensorReadingReq cmdData; |
| 365 | |
| 366 | cmdData.number = sensorNumber; |
| 367 | cmdData.operation = operation; |
| 368 | cmdData.reading = reading; |
| 369 | cmdData.assertOffset0_7 = assertOffset0_7; |
| 370 | cmdData.assertOffset8_14 = assertOffset8_14; |
| 371 | cmdData.deassertOffset0_7 = deassertOffset0_7; |
| 372 | cmdData.deassertOffset8_14 = deassertOffset8_14; |
| 373 | cmdData.eventData1 = eventData1; |
| 374 | cmdData.eventData2 = eventData2; |
| 375 | cmdData.eventData3 = eventData3; |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 376 | |
| 377 | // Check if the Sensor Number is present |
Patrick Venture | db0cbe6 | 2019-09-09 14:47:22 -0700 | [diff] [blame] | 378 | const auto iter = ipmi::sensor::sensors.find(sensorNumber); |
| 379 | if (iter == ipmi::sensor::sensors.end()) |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 380 | { |
Deepak Kumar Sahu | 9da3a75 | 2019-05-21 00:45:14 +0000 | [diff] [blame] | 381 | updateSensorRecordFromSSRAESC(&sensorNumber); |
| 382 | return ipmi::responseSuccess(); |
Tom Joseph | be703f7 | 2017-03-09 12:34:35 +0530 | [diff] [blame] | 383 | } |
| 384 | |
Dhruvaraj Subhashchandran | 18e9999 | 2017-08-09 09:10:47 -0500 | [diff] [blame] | 385 | try |
| 386 | { |
Jayanth Othayoth | 0922bde | 2018-04-02 07:59:34 -0500 | [diff] [blame] | 387 | if (ipmi::sensor::Mutability::Write != |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 388 | (iter->second.mutability & ipmi::sensor::Mutability::Write)) |
Jayanth Othayoth | 0922bde | 2018-04-02 07:59:34 -0500 | [diff] [blame] | 389 | { |
| 390 | log<level::ERR>("Sensor Set operation is not allowed", |
Deepak Kumar Sahu | 9da3a75 | 2019-05-21 00:45:14 +0000 | [diff] [blame] | 391 | entry("SENSOR_NUM=%d", sensorNumber)); |
| 392 | return ipmi::responseIllegalCommand(); |
Jayanth Othayoth | 0922bde | 2018-04-02 07:59:34 -0500 | [diff] [blame] | 393 | } |
Deepak Kumar Sahu | 9da3a75 | 2019-05-21 00:45:14 +0000 | [diff] [blame] | 394 | auto ipmiRC = iter->second.updateFunc(cmdData, iter->second); |
| 395 | return ipmi::response(ipmiRC); |
Dhruvaraj Subhashchandran | 18e9999 | 2017-08-09 09:10:47 -0500 | [diff] [blame] | 396 | } |
Patrick Williams | a2ad2da | 2021-10-06 12:21:46 -0500 | [diff] [blame] | 397 | catch (const InternalFailure& e) |
Dhruvaraj Subhashchandran | 18e9999 | 2017-08-09 09:10:47 -0500 | [diff] [blame] | 398 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 399 | log<level::ERR>("Set sensor failed", |
Deepak Kumar Sahu | 9da3a75 | 2019-05-21 00:45:14 +0000 | [diff] [blame] | 400 | entry("SENSOR_NUM=%d", sensorNumber)); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 401 | commit<InternalFailure>(); |
Deepak Kumar Sahu | 9da3a75 | 2019-05-21 00:45:14 +0000 | [diff] [blame] | 402 | return ipmi::responseUnspecifiedError(); |
Dhruvaraj Subhashchandran | 18e9999 | 2017-08-09 09:10:47 -0500 | [diff] [blame] | 403 | } |
Tom Joseph | 8202432 | 2017-09-28 20:07:29 +0530 | [diff] [blame] | 404 | catch (const std::runtime_error& e) |
| 405 | { |
| 406 | log<level::ERR>(e.what()); |
Deepak Kumar Sahu | 9da3a75 | 2019-05-21 00:45:14 +0000 | [diff] [blame] | 407 | return ipmi::responseUnspecifiedError(); |
Tom Joseph | 8202432 | 2017-09-28 20:07:29 +0530 | [diff] [blame] | 408 | } |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 409 | } |
| 410 | |
jayaprakash Mutyala | 4c3feba | 2019-07-16 00:14:35 +0000 | [diff] [blame] | 411 | /** @brief implements the get sensor reading command |
| 412 | * @param sensorNum - sensor number |
| 413 | * |
| 414 | * @returns IPMI completion code plus response data |
| 415 | * - senReading - sensor reading |
| 416 | * - reserved |
| 417 | * - readState - sensor reading state enabled |
| 418 | * - senScanState - sensor scan state disabled |
| 419 | * - allEventMessageState - all Event message state disabled |
| 420 | * - assertionStatesLsb - threshold levels states |
| 421 | * - assertionStatesMsb - discrete reading sensor states |
| 422 | */ |
| 423 | ipmi::RspType<uint8_t, // sensor reading |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 424 | |
jayaprakash Mutyala | 4c3feba | 2019-07-16 00:14:35 +0000 | [diff] [blame] | 425 | uint5_t, // reserved |
| 426 | bool, // reading state |
Sui Chen | 4cc4255 | 2019-09-11 10:28:35 -0700 | [diff] [blame] | 427 | bool, // 0 = sensor scanning state disabled |
| 428 | bool, // 0 = all event messages disabled |
jayaprakash Mutyala | 4c3feba | 2019-07-16 00:14:35 +0000 | [diff] [blame] | 429 | |
| 430 | uint8_t, // threshold levels states |
| 431 | uint8_t // discrete reading sensor states |
| 432 | > |
| 433 | ipmiSensorGetSensorReading(uint8_t sensorNum) |
| 434 | { |
| 435 | if (sensorNum == 0xFF) |
| 436 | { |
| 437 | return ipmi::responseInvalidFieldRequest(); |
| 438 | } |
| 439 | |
| 440 | const auto iter = ipmi::sensor::sensors.find(sensorNum); |
Patrick Venture | db0cbe6 | 2019-09-09 14:47:22 -0700 | [diff] [blame] | 441 | if (iter == ipmi::sensor::sensors.end()) |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 442 | { |
jayaprakash Mutyala | 4c3feba | 2019-07-16 00:14:35 +0000 | [diff] [blame] | 443 | return ipmi::responseSensorInvalid(); |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 444 | } |
| 445 | if (ipmi::sensor::Mutability::Read != |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 446 | (iter->second.mutability & ipmi::sensor::Mutability::Read)) |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 447 | { |
jayaprakash Mutyala | 4c3feba | 2019-07-16 00:14:35 +0000 | [diff] [blame] | 448 | return ipmi::responseIllegalCommand(); |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | try |
| 452 | { |
Sui Chen | 4cc4255 | 2019-09-11 10:28:35 -0700 | [diff] [blame] | 453 | ipmi::sensor::GetSensorResponse getResponse = |
| 454 | iter->second.getFunc(iter->second); |
jayaprakash Mutyala | 4c3feba | 2019-07-16 00:14:35 +0000 | [diff] [blame] | 455 | |
Sui Chen | 4cc4255 | 2019-09-11 10:28:35 -0700 | [diff] [blame] | 456 | return ipmi::responseSuccess(getResponse.reading, uint5_t(0), |
| 457 | getResponse.readingOrStateUnavailable, |
| 458 | getResponse.scanningEnabled, |
| 459 | getResponse.allEventMessagesEnabled, |
| 460 | getResponse.thresholdLevelsStates, |
| 461 | getResponse.discreteReadingSensorStates); |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 462 | } |
Brandon Kim | 9cf8562 | 2019-06-19 12:05:08 -0700 | [diff] [blame] | 463 | #ifdef UPDATE_FUNCTIONAL_ON_FAIL |
| 464 | catch (const SensorFunctionalError& e) |
| 465 | { |
jayaprakash Mutyala | 4c3feba | 2019-07-16 00:14:35 +0000 | [diff] [blame] | 466 | return ipmi::responseResponseError(); |
Brandon Kim | 9cf8562 | 2019-06-19 12:05:08 -0700 | [diff] [blame] | 467 | } |
| 468 | #endif |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 469 | catch (const std::exception& e) |
| 470 | { |
jayaprakash Mutyala | 4c3feba | 2019-07-16 00:14:35 +0000 | [diff] [blame] | 471 | // Intitilizing with default values |
| 472 | constexpr uint8_t senReading = 0; |
| 473 | constexpr uint5_t reserved{0}; |
| 474 | constexpr bool readState = true; |
| 475 | constexpr bool senScanState = false; |
| 476 | constexpr bool allEventMessageState = false; |
| 477 | constexpr uint8_t assertionStatesLsb = 0; |
| 478 | constexpr uint8_t assertionStatesMsb = 0; |
| 479 | |
| 480 | return ipmi::responseSuccess(senReading, reserved, readState, |
| 481 | senScanState, allEventMessageState, |
| 482 | assertionStatesLsb, assertionStatesMsb); |
Tom Joseph | 3ee668f | 2018-03-02 19:49:17 +0530 | [diff] [blame] | 483 | } |
| 484 | } |
| 485 | |
Konstantin Aladyshev | 89a83b6 | 2021-05-12 18:59:27 +0300 | [diff] [blame] | 486 | get_sdr::GetSensorThresholdsResponse |
| 487 | getSensorThresholds(ipmi::Context::ptr& ctx, uint8_t sensorNum) |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 488 | { |
William A. Kennington III | 515bc37 | 2020-10-27 16:32:32 -0700 | [diff] [blame] | 489 | get_sdr::GetSensorThresholdsResponse resp{}; |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 490 | constexpr auto warningThreshIntf = |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 491 | "xyz.openbmc_project.Sensor.Threshold.Warning"; |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 492 | constexpr auto criticalThreshIntf = |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 493 | "xyz.openbmc_project.Sensor.Threshold.Critical"; |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 494 | |
Patrick Venture | db0cbe6 | 2019-09-09 14:47:22 -0700 | [diff] [blame] | 495 | const auto iter = ipmi::sensor::sensors.find(sensorNum); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 496 | const auto info = iter->second; |
| 497 | |
Konstantin Aladyshev | 89a83b6 | 2021-05-12 18:59:27 +0300 | [diff] [blame] | 498 | std::string service; |
| 499 | boost::system::error_code ec; |
| 500 | ec = ipmi::getService(ctx, info.sensorInterface, info.sensorPath, service); |
| 501 | if (ec) |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 502 | { |
Konstantin Aladyshev | 89a83b6 | 2021-05-12 18:59:27 +0300 | [diff] [blame] | 503 | return resp; |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 504 | } |
| 505 | |
Konstantin Aladyshev | 89a83b6 | 2021-05-12 18:59:27 +0300 | [diff] [blame] | 506 | ipmi::PropertyMap warnThresholds; |
| 507 | ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath, |
| 508 | warningThreshIntf, warnThresholds); |
| 509 | if (!ec) |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 510 | { |
Konstantin Aladyshev | 89a83b6 | 2021-05-12 18:59:27 +0300 | [diff] [blame] | 511 | double warnLow = std::visit(ipmi::VariantToDoubleVisitor(), |
| 512 | warnThresholds["WarningLow"]); |
| 513 | double warnHigh = std::visit(ipmi::VariantToDoubleVisitor(), |
| 514 | warnThresholds["WarningHigh"]); |
| 515 | |
| 516 | if (std::isfinite(warnLow)) |
| 517 | { |
| 518 | warnLow *= std::pow(10, info.scale - info.exponentR); |
| 519 | resp.lowerNonCritical = static_cast<uint8_t>( |
| 520 | (warnLow - info.scaledOffset) / info.coefficientM); |
| 521 | resp.validMask |= static_cast<uint8_t>( |
| 522 | ipmi::sensor::ThresholdMask::NON_CRITICAL_LOW_MASK); |
| 523 | } |
| 524 | |
| 525 | if (std::isfinite(warnHigh)) |
| 526 | { |
| 527 | warnHigh *= std::pow(10, info.scale - info.exponentR); |
| 528 | resp.upperNonCritical = static_cast<uint8_t>( |
| 529 | (warnHigh - info.scaledOffset) / info.coefficientM); |
| 530 | resp.validMask |= static_cast<uint8_t>( |
| 531 | ipmi::sensor::ThresholdMask::NON_CRITICAL_HIGH_MASK); |
| 532 | } |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 533 | } |
| 534 | |
Konstantin Aladyshev | 89a83b6 | 2021-05-12 18:59:27 +0300 | [diff] [blame] | 535 | ipmi::PropertyMap critThresholds; |
| 536 | ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath, |
| 537 | criticalThreshIntf, critThresholds); |
| 538 | if (!ec) |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 539 | { |
Konstantin Aladyshev | 89a83b6 | 2021-05-12 18:59:27 +0300 | [diff] [blame] | 540 | double critLow = std::visit(ipmi::VariantToDoubleVisitor(), |
| 541 | critThresholds["CriticalLow"]); |
| 542 | double critHigh = std::visit(ipmi::VariantToDoubleVisitor(), |
| 543 | critThresholds["CriticalHigh"]); |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 544 | |
Konstantin Aladyshev | 89a83b6 | 2021-05-12 18:59:27 +0300 | [diff] [blame] | 545 | if (std::isfinite(critLow)) |
| 546 | { |
| 547 | critLow *= std::pow(10, info.scale - info.exponentR); |
| 548 | resp.lowerCritical = static_cast<uint8_t>( |
| 549 | (critLow - info.scaledOffset) / info.coefficientM); |
| 550 | resp.validMask |= static_cast<uint8_t>( |
| 551 | ipmi::sensor::ThresholdMask::CRITICAL_LOW_MASK); |
| 552 | } |
| 553 | |
| 554 | if (std::isfinite(critHigh)) |
| 555 | { |
| 556 | critHigh *= std::pow(10, info.scale - info.exponentR); |
| 557 | resp.upperCritical = static_cast<uint8_t>( |
| 558 | (critHigh - info.scaledOffset) / info.coefficientM); |
| 559 | resp.validMask |= static_cast<uint8_t>( |
| 560 | ipmi::sensor::ThresholdMask::CRITICAL_HIGH_MASK); |
| 561 | } |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 562 | } |
jayaprakash Mutyala | 996c979 | 2019-05-03 15:56:48 +0000 | [diff] [blame] | 563 | |
| 564 | return resp; |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 565 | } |
| 566 | |
jayaprakash Mutyala | 996c979 | 2019-05-03 15:56:48 +0000 | [diff] [blame] | 567 | /** @brief implements the get sensor thresholds command |
Konstantin Aladyshev | 89a83b6 | 2021-05-12 18:59:27 +0300 | [diff] [blame] | 568 | * @param ctx - IPMI context pointer |
jayaprakash Mutyala | 996c979 | 2019-05-03 15:56:48 +0000 | [diff] [blame] | 569 | * @param sensorNum - sensor number |
| 570 | * |
| 571 | * @returns IPMI completion code plus response data |
| 572 | * - validMask - threshold mask |
| 573 | * - lower non-critical threshold - IPMI messaging state |
| 574 | * - lower critical threshold - link authentication state |
| 575 | * - lower non-recoverable threshold - callback state |
| 576 | * - upper non-critical threshold |
| 577 | * - upper critical |
| 578 | * - upper non-recoverable |
| 579 | */ |
| 580 | ipmi::RspType<uint8_t, // validMask |
| 581 | uint8_t, // lowerNonCritical |
| 582 | uint8_t, // lowerCritical |
| 583 | uint8_t, // lowerNonRecoverable |
| 584 | uint8_t, // upperNonCritical |
| 585 | uint8_t, // upperCritical |
| 586 | uint8_t // upperNonRecoverable |
| 587 | > |
Konstantin Aladyshev | 89a83b6 | 2021-05-12 18:59:27 +0300 | [diff] [blame] | 588 | ipmiSensorGetSensorThresholds(ipmi::Context::ptr& ctx, uint8_t sensorNum) |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 589 | { |
| 590 | constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value"; |
| 591 | |
Patrick Venture | db0cbe6 | 2019-09-09 14:47:22 -0700 | [diff] [blame] | 592 | const auto iter = ipmi::sensor::sensors.find(sensorNum); |
| 593 | if (iter == ipmi::sensor::sensors.end()) |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 594 | { |
jayaprakash Mutyala | 996c979 | 2019-05-03 15:56:48 +0000 | [diff] [blame] | 595 | return ipmi::responseSensorInvalid(); |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 596 | } |
| 597 | |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 598 | const auto info = iter->second; |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 599 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 600 | // Proceed only if the sensor value interface is implemented. |
Tom Joseph | 0ac0dd2 | 2018-02-16 09:14:45 +0530 | [diff] [blame] | 601 | if (info.propertyInterfaces.find(valueInterface) == |
| 602 | info.propertyInterfaces.end()) |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 603 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 604 | // return with valid mask as 0 |
jayaprakash Mutyala | 996c979 | 2019-05-03 15:56:48 +0000 | [diff] [blame] | 605 | return ipmi::responseSuccess(); |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 606 | } |
| 607 | |
Lei YU | 14a4781 | 2021-09-17 15:58:04 +0800 | [diff] [blame^] | 608 | auto it = sensorThresholdMap.find(sensorNum); |
| 609 | if (it == sensorThresholdMap.end()) |
| 610 | { |
| 611 | sensorThresholdMap[sensorNum] = getSensorThresholds(ctx, sensorNum); |
| 612 | } |
| 613 | |
| 614 | const auto& resp = sensorThresholdMap[sensorNum]; |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 615 | |
jayaprakash Mutyala | 996c979 | 2019-05-03 15:56:48 +0000 | [diff] [blame] | 616 | return ipmi::responseSuccess(resp.validMask, resp.lowerNonCritical, |
| 617 | resp.lowerCritical, resp.lowerNonRecoverable, |
| 618 | resp.upperNonCritical, resp.upperCritical, |
| 619 | resp.upperNonRecoverable); |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 620 | } |
| 621 | |
Lotus Xu | f93da66 | 2021-10-18 17:20:06 +0800 | [diff] [blame] | 622 | /** @brief implements the Set Sensor threshold command |
| 623 | * @param sensorNumber - sensor number |
| 624 | * @param lowerNonCriticalThreshMask |
| 625 | * @param lowerCriticalThreshMask |
| 626 | * @param lowerNonRecovThreshMask |
| 627 | * @param upperNonCriticalThreshMask |
| 628 | * @param upperCriticalThreshMask |
| 629 | * @param upperNonRecovThreshMask |
| 630 | * @param reserved |
| 631 | * @param lowerNonCritical - lower non-critical threshold |
| 632 | * @param lowerCritical - Lower critical threshold |
| 633 | * @param lowerNonRecoverable - Lower non recovarable threshold |
| 634 | * @param upperNonCritical - Upper non-critical threshold |
| 635 | * @param upperCritical - Upper critical |
| 636 | * @param upperNonRecoverable - Upper Non-recoverable |
| 637 | * |
| 638 | * @returns IPMI completion code |
| 639 | */ |
| 640 | ipmi::RspType<> ipmiSenSetSensorThresholds( |
| 641 | ipmi::Context::ptr& ctx, uint8_t sensorNum, bool lowerNonCriticalThreshMask, |
| 642 | bool lowerCriticalThreshMask, bool lowerNonRecovThreshMask, |
| 643 | bool upperNonCriticalThreshMask, bool upperCriticalThreshMask, |
| 644 | bool upperNonRecovThreshMask, uint2_t reserved, uint8_t lowerNonCritical, |
| 645 | uint8_t lowerCritical, uint8_t lowerNonRecoverable, |
| 646 | uint8_t upperNonCritical, uint8_t upperCritical, |
| 647 | uint8_t upperNonRecoverable) |
| 648 | { |
| 649 | if (reserved) |
| 650 | { |
| 651 | return ipmi::responseInvalidFieldRequest(); |
| 652 | } |
| 653 | |
| 654 | // lower nc and upper nc not suppported on any sensor |
| 655 | if (lowerNonRecovThreshMask || upperNonRecovThreshMask) |
| 656 | { |
| 657 | return ipmi::responseInvalidFieldRequest(); |
| 658 | } |
| 659 | |
| 660 | // if none of the threshold mask are set, nothing to do |
| 661 | if (!(lowerNonCriticalThreshMask | lowerCriticalThreshMask | |
| 662 | lowerNonRecovThreshMask | upperNonCriticalThreshMask | |
| 663 | upperCriticalThreshMask | upperNonRecovThreshMask)) |
| 664 | { |
| 665 | return ipmi::responseSuccess(); |
| 666 | } |
| 667 | |
| 668 | constexpr auto valueInterface = "xyz.openbmc_project.Sensor.Value"; |
| 669 | |
| 670 | const auto iter = ipmi::sensor::sensors.find(sensorNum); |
| 671 | if (iter == ipmi::sensor::sensors.end()) |
| 672 | { |
| 673 | return ipmi::responseSensorInvalid(); |
| 674 | } |
| 675 | |
| 676 | const auto& info = iter->second; |
| 677 | |
| 678 | // Proceed only if the sensor value interface is implemented. |
| 679 | if (info.propertyInterfaces.find(valueInterface) == |
| 680 | info.propertyInterfaces.end()) |
| 681 | { |
| 682 | // return with valid mask as 0 |
| 683 | return ipmi::responseSuccess(); |
| 684 | } |
| 685 | |
| 686 | constexpr auto warningThreshIntf = |
| 687 | "xyz.openbmc_project.Sensor.Threshold.Warning"; |
| 688 | constexpr auto criticalThreshIntf = |
| 689 | "xyz.openbmc_project.Sensor.Threshold.Critical"; |
| 690 | |
| 691 | std::string service; |
| 692 | boost::system::error_code ec; |
| 693 | ec = ipmi::getService(ctx, info.sensorInterface, info.sensorPath, service); |
| 694 | if (ec) |
| 695 | { |
| 696 | return ipmi::responseResponseError(); |
| 697 | } |
| 698 | // store a vector of property name, value to set, and interface |
| 699 | std::vector<std::tuple<std::string, uint8_t, std::string>> thresholdsToSet; |
| 700 | |
| 701 | // define the indexes of the tuple |
| 702 | constexpr uint8_t propertyName = 0; |
| 703 | constexpr uint8_t thresholdValue = 1; |
| 704 | constexpr uint8_t interface = 2; |
| 705 | // verifiy all needed fields are present |
| 706 | if (lowerCriticalThreshMask || upperCriticalThreshMask) |
| 707 | { |
| 708 | |
| 709 | ipmi::PropertyMap findThreshold; |
| 710 | ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath, |
| 711 | criticalThreshIntf, findThreshold); |
| 712 | |
| 713 | if (!ec) |
| 714 | { |
| 715 | if (lowerCriticalThreshMask) |
| 716 | { |
| 717 | auto findLower = findThreshold.find("CriticalLow"); |
| 718 | if (findLower == findThreshold.end()) |
| 719 | { |
| 720 | return ipmi::responseInvalidFieldRequest(); |
| 721 | } |
| 722 | thresholdsToSet.emplace_back("CriticalLow", lowerCritical, |
| 723 | criticalThreshIntf); |
| 724 | } |
| 725 | if (upperCriticalThreshMask) |
| 726 | { |
| 727 | auto findUpper = findThreshold.find("CriticalHigh"); |
| 728 | if (findUpper == findThreshold.end()) |
| 729 | { |
| 730 | return ipmi::responseInvalidFieldRequest(); |
| 731 | } |
| 732 | thresholdsToSet.emplace_back("CriticalHigh", upperCritical, |
| 733 | criticalThreshIntf); |
| 734 | } |
| 735 | } |
| 736 | } |
| 737 | if (lowerNonCriticalThreshMask || upperNonCriticalThreshMask) |
| 738 | { |
| 739 | ipmi::PropertyMap findThreshold; |
| 740 | ec = ipmi::getAllDbusProperties(ctx, service, info.sensorPath, |
| 741 | warningThreshIntf, findThreshold); |
| 742 | |
| 743 | if (!ec) |
| 744 | { |
| 745 | if (lowerNonCriticalThreshMask) |
| 746 | { |
| 747 | auto findLower = findThreshold.find("WarningLow"); |
| 748 | if (findLower == findThreshold.end()) |
| 749 | { |
| 750 | return ipmi::responseInvalidFieldRequest(); |
| 751 | } |
| 752 | thresholdsToSet.emplace_back("WarningLow", lowerNonCritical, |
| 753 | warningThreshIntf); |
| 754 | } |
| 755 | if (upperNonCriticalThreshMask) |
| 756 | { |
| 757 | auto findUpper = findThreshold.find("WarningHigh"); |
| 758 | if (findUpper == findThreshold.end()) |
| 759 | { |
| 760 | return ipmi::responseInvalidFieldRequest(); |
| 761 | } |
| 762 | thresholdsToSet.emplace_back("WarningHigh", upperNonCritical, |
| 763 | warningThreshIntf); |
| 764 | } |
| 765 | } |
| 766 | } |
| 767 | for (const auto& property : thresholdsToSet) |
| 768 | { |
| 769 | // from section 36.3 in the IPMI Spec, assume all linear |
| 770 | double valueToSet = |
| 771 | ((info.coefficientM * std::get<thresholdValue>(property)) + |
| 772 | (info.scaledOffset * std::pow(10.0, info.scale))) * |
| 773 | std::pow(10.0, info.exponentR); |
| 774 | ipmi::setDbusProperty( |
| 775 | ctx, service, info.sensorPath, std::get<interface>(property), |
| 776 | std::get<propertyName>(property), ipmi::Value(valueToSet)); |
| 777 | } |
| 778 | |
Lei YU | 14a4781 | 2021-09-17 15:58:04 +0800 | [diff] [blame^] | 779 | // Invalidate the cache |
| 780 | sensorThresholdMap.erase(sensorNum); |
Lotus Xu | f93da66 | 2021-10-18 17:20:06 +0800 | [diff] [blame] | 781 | return ipmi::responseSuccess(); |
| 782 | } |
| 783 | |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame] | 784 | /** @brief implements the get SDR Info command |
| 785 | * @param count - Operation |
| 786 | * |
| 787 | * @returns IPMI completion code plus response data |
| 788 | * - sdrCount - sensor/SDR count |
| 789 | * - lunsAndDynamicPopulation - static/Dynamic sensor population flag |
| 790 | */ |
| 791 | ipmi::RspType<uint8_t, // respcount |
| 792 | uint8_t // dynamic population flags |
| 793 | > |
| 794 | ipmiSensorGetDeviceSdrInfo(std::optional<uint8_t> count) |
Emily Shaffer | d06e0e7 | 2017-04-05 09:08:57 -0700 | [diff] [blame] | 795 | { |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame] | 796 | uint8_t sdrCount; |
| 797 | // multiple LUNs not supported. |
| 798 | constexpr uint8_t lunsAndDynamicPopulation = 1; |
| 799 | constexpr uint8_t getSdrCount = 0x01; |
| 800 | constexpr uint8_t getSensorCount = 0x00; |
| 801 | |
| 802 | if (count.value_or(0) == getSdrCount) |
Emily Shaffer | d06e0e7 | 2017-04-05 09:08:57 -0700 | [diff] [blame] | 803 | { |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame] | 804 | // Get SDR count. This returns the total number of SDRs in the device. |
Patrick Venture | 87fd2cd | 2019-08-19 12:07:18 -0700 | [diff] [blame] | 805 | const auto& entityRecords = |
| 806 | ipmi::sensor::EntityInfoMapContainer::getContainer() |
| 807 | ->getIpmiEntityRecords(); |
Patrick Venture | db0cbe6 | 2019-09-09 14:47:22 -0700 | [diff] [blame] | 808 | sdrCount = |
| 809 | ipmi::sensor::sensors.size() + frus.size() + entityRecords.size(); |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame] | 810 | } |
| 811 | else if (count.value_or(0) == getSensorCount) |
| 812 | { |
| 813 | // Get Sensor count. This returns the number of sensors |
Patrick Venture | db0cbe6 | 2019-09-09 14:47:22 -0700 | [diff] [blame] | 814 | sdrCount = ipmi::sensor::sensors.size(); |
Emily Shaffer | d06e0e7 | 2017-04-05 09:08:57 -0700 | [diff] [blame] | 815 | } |
| 816 | else |
| 817 | { |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame] | 818 | return ipmi::responseInvalidCommandOnLun(); |
Emily Shaffer | d06e0e7 | 2017-04-05 09:08:57 -0700 | [diff] [blame] | 819 | } |
| 820 | |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame] | 821 | return ipmi::responseSuccess(sdrCount, lunsAndDynamicPopulation); |
Emily Shaffer | d06e0e7 | 2017-04-05 09:08:57 -0700 | [diff] [blame] | 822 | } |
| 823 | |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame] | 824 | /** @brief implements the reserve SDR command |
| 825 | * @returns IPMI completion code plus response data |
| 826 | * - reservationID - reservation ID |
| 827 | */ |
| 828 | ipmi::RspType<uint16_t> ipmiSensorReserveSdr() |
Emily Shaffer | a344afc | 2017-04-13 15:09:39 -0700 | [diff] [blame] | 829 | { |
| 830 | // A constant reservation ID is okay until we implement add/remove SDR. |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame] | 831 | constexpr uint16_t reservationID = 1; |
Emily Shaffer | a344afc | 2017-04-13 15:09:39 -0700 | [diff] [blame] | 832 | |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame] | 833 | return ipmi::responseSuccess(reservationID); |
Emily Shaffer | a344afc | 2017-04-13 15:09:39 -0700 | [diff] [blame] | 834 | } |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 835 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 836 | void setUnitFieldsForObject(const ipmi::sensor::Info* info, |
| 837 | get_sdr::SensorDataFullRecordBody* body) |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 838 | { |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 839 | namespace server = sdbusplus::xyz::openbmc_project::Sensor::server; |
| 840 | try |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 841 | { |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 842 | auto unit = server::Value::convertUnitFromString(info->unit); |
| 843 | // Unit strings defined in |
| 844 | // phosphor-dbus-interfaces/xyz/openbmc_project/Sensor/Value.interface.yaml |
| 845 | switch (unit) |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 846 | { |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 847 | case server::Value::Unit::DegreesC: |
| 848 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_DEGREES_C; |
| 849 | break; |
| 850 | case server::Value::Unit::RPMS: |
Kirill Pakhomov | 812e44c | 2018-10-22 16:25:35 +0300 | [diff] [blame] | 851 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_RPM; |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 852 | break; |
| 853 | case server::Value::Unit::Volts: |
| 854 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_VOLTS; |
| 855 | break; |
| 856 | case server::Value::Unit::Meters: |
| 857 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_METERS; |
| 858 | break; |
| 859 | case server::Value::Unit::Amperes: |
| 860 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_AMPERES; |
| 861 | break; |
| 862 | case server::Value::Unit::Joules: |
| 863 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_JOULES; |
| 864 | break; |
| 865 | case server::Value::Unit::Watts: |
| 866 | body->sensor_units_2_base = get_sdr::SENSOR_UNIT_WATTS; |
| 867 | break; |
| 868 | default: |
| 869 | // Cannot be hit. |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 870 | std::fprintf(stderr, "Unknown value unit type: = %s\n", |
| 871 | info->unit.c_str()); |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 872 | } |
| 873 | } |
Patrick Venture | 64678b8 | 2018-10-13 13:11:32 -0700 | [diff] [blame] | 874 | catch (const sdbusplus::exception::InvalidEnumString& e) |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 875 | { |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 876 | log<level::WARNING>("Warning: no unit provided for sensor!"); |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 877 | } |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 878 | } |
| 879 | |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 880 | ipmi_ret_t populate_record_from_dbus(get_sdr::SensorDataFullRecordBody* body, |
| 881 | const ipmi::sensor::Info* info, |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 882 | ipmi_data_len_t data_len) |
| 883 | { |
| 884 | /* Functional sensor case */ |
Emily Shaffer | cc941e1 | 2017-06-14 13:06:26 -0700 | [diff] [blame] | 885 | if (isAnalogSensor(info->propertyInterfaces.begin()->first)) |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 886 | { |
Tony Lee | c532425 | 2019-10-31 17:24:16 +0800 | [diff] [blame] | 887 | body->sensor_units_1 = info->sensorUnits1; // default is 0. unsigned, no |
| 888 | // rate, no modifier, not a % |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 889 | /* Unit info */ |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 890 | setUnitFieldsForObject(info, body); |
Emily Shaffer | 10f4959 | 2017-05-10 12:01:10 -0700 | [diff] [blame] | 891 | |
| 892 | get_sdr::body::set_b(info->coefficientB, body); |
| 893 | get_sdr::body::set_m(info->coefficientM, body); |
| 894 | get_sdr::body::set_b_exp(info->exponentB, body); |
Tom Joseph | dc212b2 | 2018-02-16 09:59:57 +0530 | [diff] [blame] | 895 | get_sdr::body::set_r_exp(info->exponentR, body); |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 896 | |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 897 | get_sdr::body::set_id_type(0b00, body); // 00 = unicode |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 898 | } |
| 899 | |
Tom Joseph | 9642391 | 2018-01-25 00:14:34 +0530 | [diff] [blame] | 900 | /* ID string */ |
Jeremy Kerr | be4ffa8 | 2020-08-10 16:17:37 +0800 | [diff] [blame] | 901 | auto id_string = info->sensorName; |
| 902 | |
| 903 | if (id_string.empty()) |
| 904 | { |
| 905 | id_string = info->sensorNameFunc(*info); |
| 906 | } |
Tom Joseph | 9642391 | 2018-01-25 00:14:34 +0530 | [diff] [blame] | 907 | |
| 908 | if (id_string.length() > FULL_RECORD_ID_STR_MAX_LENGTH) |
| 909 | { |
| 910 | get_sdr::body::set_id_strlen(FULL_RECORD_ID_STR_MAX_LENGTH, body); |
| 911 | } |
| 912 | else |
| 913 | { |
| 914 | get_sdr::body::set_id_strlen(id_string.length(), body); |
| 915 | } |
| 916 | strncpy(body->id_string, id_string.c_str(), |
| 917 | get_sdr::body::get_id_strlen(body)); |
| 918 | |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 919 | return IPMI_CC_OK; |
| 920 | }; |
| 921 | |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 922 | ipmi_ret_t ipmi_fru_get_sdr(ipmi_request_t request, ipmi_response_t response, |
| 923 | ipmi_data_len_t data_len) |
| 924 | { |
| 925 | auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request); |
| 926 | auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 927 | get_sdr::SensorDataFruRecord record{}; |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 928 | auto dataLength = 0; |
| 929 | |
| 930 | auto fru = frus.begin(); |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 931 | uint8_t fruID{}; |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 932 | auto recordID = get_sdr::request::get_record_id(req); |
| 933 | |
| 934 | fruID = recordID - FRU_RECORD_ID_START; |
| 935 | fru = frus.find(fruID); |
| 936 | if (fru == frus.end()) |
| 937 | { |
| 938 | return IPMI_CC_SENSOR_INVALID; |
| 939 | } |
| 940 | |
| 941 | /* Header */ |
| 942 | get_sdr::header::set_record_id(recordID, &(record.header)); |
| 943 | record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1 |
| 944 | record.header.record_type = get_sdr::SENSOR_DATA_FRU_RECORD; |
| 945 | record.header.record_length = sizeof(record.key) + sizeof(record.body); |
| 946 | |
| 947 | /* Key */ |
| 948 | record.key.fruID = fruID; |
| 949 | record.key.accessLun |= IPMI_LOGICAL_FRU; |
| 950 | record.key.deviceAddress = BMCSlaveAddress; |
| 951 | |
| 952 | /* Body */ |
| 953 | record.body.entityID = fru->second[0].entityID; |
| 954 | record.body.entityInstance = fru->second[0].entityInstance; |
| 955 | record.body.deviceType = fruInventoryDevice; |
| 956 | record.body.deviceTypeModifier = IPMIFruInventory; |
| 957 | |
| 958 | /* Device ID string */ |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 959 | auto deviceID = |
| 960 | fru->second[0].path.substr(fru->second[0].path.find_last_of('/') + 1, |
| 961 | fru->second[0].path.length()); |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 962 | |
| 963 | if (deviceID.length() > get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH) |
| 964 | { |
| 965 | get_sdr::body::set_device_id_strlen( |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 966 | get_sdr::FRU_RECORD_DEVICE_ID_MAX_LENGTH, &(record.body)); |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 967 | } |
| 968 | else |
| 969 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 970 | get_sdr::body::set_device_id_strlen(deviceID.length(), &(record.body)); |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 971 | } |
| 972 | |
| 973 | strncpy(record.body.deviceID, deviceID.c_str(), |
| 974 | get_sdr::body::get_device_id_strlen(&(record.body))); |
| 975 | |
| 976 | if (++fru == frus.end()) |
| 977 | { |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 978 | // we have reached till end of fru, so assign the next record id to |
| 979 | // 512(Max fru ID = 511) + Entity Record ID(may start with 0). |
Patrick Venture | 87fd2cd | 2019-08-19 12:07:18 -0700 | [diff] [blame] | 980 | const auto& entityRecords = |
| 981 | ipmi::sensor::EntityInfoMapContainer::getContainer() |
| 982 | ->getIpmiEntityRecords(); |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 983 | auto next_record_id = |
Patrick Venture | 83a0b84 | 2019-07-19 18:37:15 -0700 | [diff] [blame] | 984 | (entityRecords.size()) |
| 985 | ? entityRecords.begin()->first + ENTITY_RECORD_ID_START |
| 986 | : END_OF_RECORD; |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 987 | get_sdr::response::set_next_record_id(next_record_id, resp); |
| 988 | } |
| 989 | else |
| 990 | { |
| 991 | get_sdr::response::set_next_record_id( |
| 992 | (FRU_RECORD_ID_START + fru->first), resp); |
| 993 | } |
| 994 | |
| 995 | // Check for invalid offset size |
| 996 | if (req->offset > sizeof(record)) |
| 997 | { |
| 998 | return IPMI_CC_PARM_OUT_OF_RANGE; |
| 999 | } |
| 1000 | |
| 1001 | dataLength = std::min(static_cast<size_t>(req->bytes_to_read), |
| 1002 | sizeof(record) - req->offset); |
| 1003 | |
| 1004 | std::memcpy(resp->record_data, |
| 1005 | reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength); |
| 1006 | |
| 1007 | *data_len = dataLength; |
| 1008 | *data_len += 2; // additional 2 bytes for next record ID |
| 1009 | |
| 1010 | return IPMI_CC_OK; |
| 1011 | } |
| 1012 | |
| 1013 | ipmi_ret_t ipmi_entity_get_sdr(ipmi_request_t request, ipmi_response_t response, |
| 1014 | ipmi_data_len_t data_len) |
| 1015 | { |
| 1016 | auto req = reinterpret_cast<get_sdr::GetSdrReq*>(request); |
| 1017 | auto resp = reinterpret_cast<get_sdr::GetSdrResp*>(response); |
| 1018 | get_sdr::SensorDataEntityRecord record{}; |
| 1019 | auto dataLength = 0; |
| 1020 | |
Patrick Venture | 87fd2cd | 2019-08-19 12:07:18 -0700 | [diff] [blame] | 1021 | const auto& entityRecords = |
| 1022 | ipmi::sensor::EntityInfoMapContainer::getContainer() |
| 1023 | ->getIpmiEntityRecords(); |
Patrick Venture | 83a0b84 | 2019-07-19 18:37:15 -0700 | [diff] [blame] | 1024 | auto entity = entityRecords.begin(); |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 1025 | uint8_t entityRecordID; |
| 1026 | auto recordID = get_sdr::request::get_record_id(req); |
| 1027 | |
| 1028 | entityRecordID = recordID - ENTITY_RECORD_ID_START; |
Patrick Venture | 83a0b84 | 2019-07-19 18:37:15 -0700 | [diff] [blame] | 1029 | entity = entityRecords.find(entityRecordID); |
| 1030 | if (entity == entityRecords.end()) |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 1031 | { |
| 1032 | return IPMI_CC_SENSOR_INVALID; |
| 1033 | } |
| 1034 | |
| 1035 | /* Header */ |
| 1036 | get_sdr::header::set_record_id(recordID, &(record.header)); |
| 1037 | record.header.sdr_version = SDR_VERSION; // Based on IPMI Spec v2.0 rev 1.1 |
| 1038 | record.header.record_type = get_sdr::SENSOR_DATA_ENTITY_RECORD; |
| 1039 | record.header.record_length = sizeof(record.key) + sizeof(record.body); |
| 1040 | |
| 1041 | /* Key */ |
| 1042 | record.key.containerEntityId = entity->second.containerEntityId; |
| 1043 | record.key.containerEntityInstance = entity->second.containerEntityInstance; |
| 1044 | get_sdr::key::set_flags(entity->second.isList, entity->second.isLinked, |
| 1045 | &(record.key)); |
| 1046 | record.key.entityId1 = entity->second.containedEntities[0].first; |
| 1047 | record.key.entityInstance1 = entity->second.containedEntities[0].second; |
| 1048 | |
| 1049 | /* Body */ |
| 1050 | record.body.entityId2 = entity->second.containedEntities[1].first; |
| 1051 | record.body.entityInstance2 = entity->second.containedEntities[1].second; |
| 1052 | record.body.entityId3 = entity->second.containedEntities[2].first; |
| 1053 | record.body.entityInstance3 = entity->second.containedEntities[2].second; |
| 1054 | record.body.entityId4 = entity->second.containedEntities[3].first; |
| 1055 | record.body.entityInstance4 = entity->second.containedEntities[3].second; |
| 1056 | |
Patrick Venture | 83a0b84 | 2019-07-19 18:37:15 -0700 | [diff] [blame] | 1057 | if (++entity == entityRecords.end()) |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 1058 | { |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1059 | get_sdr::response::set_next_record_id(END_OF_RECORD, |
| 1060 | resp); // last record |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 1061 | } |
| 1062 | else |
| 1063 | { |
| 1064 | get_sdr::response::set_next_record_id( |
Jaghathiswari Rankappagounder Natarajan | 9c11894 | 2019-02-12 13:22:55 -0800 | [diff] [blame] | 1065 | (ENTITY_RECORD_ID_START + entity->first), resp); |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 1066 | } |
| 1067 | |
Emily Shaffer | 0fbdbce | 2018-09-27 09:30:41 -0700 | [diff] [blame] | 1068 | // Check for invalid offset size |
| 1069 | if (req->offset > sizeof(record)) |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 1070 | { |
Emily Shaffer | 0fbdbce | 2018-09-27 09:30:41 -0700 | [diff] [blame] | 1071 | return IPMI_CC_PARM_OUT_OF_RANGE; |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 1072 | } |
| 1073 | |
Emily Shaffer | 0fbdbce | 2018-09-27 09:30:41 -0700 | [diff] [blame] | 1074 | dataLength = std::min(static_cast<size_t>(req->bytes_to_read), |
| 1075 | sizeof(record) - req->offset); |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 1076 | |
Patrick Venture | b51bf9c | 2018-09-10 15:53:14 -0700 | [diff] [blame] | 1077 | std::memcpy(resp->record_data, |
Jason M. Bills | 1cd8596 | 2018-10-05 12:04:01 -0700 | [diff] [blame] | 1078 | reinterpret_cast<uint8_t*>(&record) + req->offset, dataLength); |
Ratan Gupta | e0cc855 | 2018-01-22 14:23:04 +0530 | [diff] [blame] | 1079 | |
| 1080 | *data_len = dataLength; |
| 1081 | *data_len += 2; // additional 2 bytes for next record ID |
| 1082 | |
| 1083 | return IPMI_CC_OK; |
| 1084 | } |
| 1085 | |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 1086 | ipmi_ret_t ipmi_sen_get_sdr(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 1087 | ipmi_request_t request, ipmi_response_t response, |
| 1088 | ipmi_data_len_t data_len, ipmi_context_t context) |
| 1089 | { |
| 1090 | ipmi_ret_t ret = IPMI_CC_OK; |
Patrick Venture | 0b02be9 | 2018-08-31 11:55:55 -0700 | [diff] [blame] | 1091 | get_sdr::GetSdrReq* req = (get_sdr::GetSdrReq*)request; |
| 1092 | get_sdr::GetSdrResp* resp = (get_sdr::GetSdrResp*)response; |
Patrick Venture | 38426dd | 2019-07-30 15:22:29 -0700 | [diff] [blame] | 1093 | |
| 1094 | // Note: we use an iterator so we can provide the next ID at the end of |
| 1095 | // the call. |
Patrick Venture | db0cbe6 | 2019-09-09 14:47:22 -0700 | [diff] [blame] | 1096 | auto sensor = ipmi::sensor::sensors.begin(); |
Patrick Venture | 38426dd | 2019-07-30 15:22:29 -0700 | [diff] [blame] | 1097 | auto recordID = get_sdr::request::get_record_id(req); |
| 1098 | |
| 1099 | // At the beginning of a scan, the host side will send us id=0. |
| 1100 | if (recordID != 0) |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 1101 | { |
Patrick Venture | 38426dd | 2019-07-30 15:22:29 -0700 | [diff] [blame] | 1102 | // recordID 0 to 255 means it is a FULL record. |
| 1103 | // recordID 256 to 511 means it is a FRU record. |
| 1104 | // recordID greater then 511 means it is a Entity Association |
| 1105 | // record. Currently we are supporting three record types: FULL |
| 1106 | // record, FRU record and Enttiy Association record. |
| 1107 | if (recordID >= ENTITY_RECORD_ID_START) |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 1108 | { |
Patrick Venture | 38426dd | 2019-07-30 15:22:29 -0700 | [diff] [blame] | 1109 | return ipmi_entity_get_sdr(request, response, data_len); |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 1110 | } |
Patrick Venture | 38426dd | 2019-07-30 15:22:29 -0700 | [diff] [blame] | 1111 | else if (recordID >= FRU_RECORD_ID_START && |
| 1112 | recordID < ENTITY_RECORD_ID_START) |
Jaghathiswari Rankappagounder Natarajan | 0780df1 | 2019-02-06 15:29:24 -0800 | [diff] [blame] | 1113 | { |
Patrick Venture | 38426dd | 2019-07-30 15:22:29 -0700 | [diff] [blame] | 1114 | return ipmi_fru_get_sdr(request, response, data_len); |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 1115 | } |
| 1116 | else |
| 1117 | { |
Patrick Venture | db0cbe6 | 2019-09-09 14:47:22 -0700 | [diff] [blame] | 1118 | sensor = ipmi::sensor::sensors.find(recordID); |
| 1119 | if (sensor == ipmi::sensor::sensors.end()) |
Patrick Venture | 38426dd | 2019-07-30 15:22:29 -0700 | [diff] [blame] | 1120 | { |
| 1121 | return IPMI_CC_SENSOR_INVALID; |
| 1122 | } |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 1123 | } |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 1124 | } |
| 1125 | |
Patrick Venture | 38426dd | 2019-07-30 15:22:29 -0700 | [diff] [blame] | 1126 | uint8_t sensor_id = sensor->first; |
| 1127 | |
Lei YU | 14a4781 | 2021-09-17 15:58:04 +0800 | [diff] [blame^] | 1128 | auto it = sdrCacheMap.find(sensor_id); |
| 1129 | if (it == sdrCacheMap.end()) |
Patrick Venture | 38426dd | 2019-07-30 15:22:29 -0700 | [diff] [blame] | 1130 | { |
Lei YU | 14a4781 | 2021-09-17 15:58:04 +0800 | [diff] [blame^] | 1131 | /* Header */ |
| 1132 | get_sdr::SensorDataFullRecord record = {0}; |
| 1133 | get_sdr::header::set_record_id(sensor_id, &(record.header)); |
| 1134 | record.header.sdr_version = 0x51; // Based on IPMI Spec v2.0 rev 1.1 |
| 1135 | record.header.record_type = get_sdr::SENSOR_DATA_FULL_RECORD; |
| 1136 | record.header.record_length = sizeof(record.key) + sizeof(record.body); |
| 1137 | |
| 1138 | /* Key */ |
| 1139 | get_sdr::key::set_owner_id_bmc(&(record.key)); |
| 1140 | record.key.sensor_number = sensor_id; |
| 1141 | |
| 1142 | /* Body */ |
| 1143 | record.body.entity_id = sensor->second.entityType; |
| 1144 | record.body.sensor_type = sensor->second.sensorType; |
| 1145 | record.body.event_reading_type = sensor->second.sensorReadingType; |
| 1146 | record.body.entity_instance = sensor->second.instance; |
| 1147 | if (ipmi::sensor::Mutability::Write == |
| 1148 | (sensor->second.mutability & ipmi::sensor::Mutability::Write)) |
| 1149 | { |
| 1150 | get_sdr::body::init_settable_state(true, &(record.body)); |
| 1151 | } |
| 1152 | |
| 1153 | // Set the type-specific details given the DBus interface |
| 1154 | populate_record_from_dbus(&(record.body), &(sensor->second), data_len); |
| 1155 | sdrCacheMap[sensor_id] = std::move(record); |
Patrick Venture | 38426dd | 2019-07-30 15:22:29 -0700 | [diff] [blame] | 1156 | } |
| 1157 | |
Lei YU | 14a4781 | 2021-09-17 15:58:04 +0800 | [diff] [blame^] | 1158 | const auto& record = sdrCacheMap[sensor_id]; |
Patrick Venture | 38426dd | 2019-07-30 15:22:29 -0700 | [diff] [blame] | 1159 | |
Patrick Venture | db0cbe6 | 2019-09-09 14:47:22 -0700 | [diff] [blame] | 1160 | if (++sensor == ipmi::sensor::sensors.end()) |
Patrick Venture | 38426dd | 2019-07-30 15:22:29 -0700 | [diff] [blame] | 1161 | { |
| 1162 | // we have reached till end of sensor, so assign the next record id |
| 1163 | // to 256(Max Sensor ID = 255) + FRU ID(may start with 0). |
| 1164 | auto next_record_id = (frus.size()) |
| 1165 | ? frus.begin()->first + FRU_RECORD_ID_START |
| 1166 | : END_OF_RECORD; |
| 1167 | |
| 1168 | get_sdr::response::set_next_record_id(next_record_id, resp); |
| 1169 | } |
| 1170 | else |
| 1171 | { |
| 1172 | get_sdr::response::set_next_record_id(sensor->first, resp); |
| 1173 | } |
| 1174 | |
| 1175 | if (req->offset > sizeof(record)) |
| 1176 | { |
| 1177 | return IPMI_CC_PARM_OUT_OF_RANGE; |
| 1178 | } |
| 1179 | |
| 1180 | // data_len will ultimately be the size of the record, plus |
| 1181 | // the size of the next record ID: |
| 1182 | *data_len = std::min(static_cast<size_t>(req->bytes_to_read), |
| 1183 | sizeof(record) - req->offset); |
| 1184 | |
| 1185 | std::memcpy(resp->record_data, |
Lei YU | 14a4781 | 2021-09-17 15:58:04 +0800 | [diff] [blame^] | 1186 | reinterpret_cast<const uint8_t*>(&record) + req->offset, |
| 1187 | *data_len); |
Patrick Venture | 38426dd | 2019-07-30 15:22:29 -0700 | [diff] [blame] | 1188 | |
| 1189 | // data_len should include the LSB and MSB: |
| 1190 | *data_len += |
| 1191 | sizeof(resp->next_record_id_lsb) + sizeof(resp->next_record_id_msb); |
| 1192 | |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 1193 | return ret; |
| 1194 | } |
| 1195 | |
Jia, Chunhui | 3342a8e | 2018-12-29 13:32:26 +0800 | [diff] [blame] | 1196 | static bool isFromSystemChannel() |
| 1197 | { |
| 1198 | // TODO we could not figure out where the request is from based on IPMI |
| 1199 | // command handler parameters. because of it, we can not differentiate |
| 1200 | // request from SMS/SMM or IPMB channel |
| 1201 | return true; |
| 1202 | } |
| 1203 | |
| 1204 | ipmi_ret_t ipmicmdPlatformEvent(ipmi_netfn_t netfn, ipmi_cmd_t cmd, |
| 1205 | ipmi_request_t request, |
| 1206 | ipmi_response_t response, |
| 1207 | ipmi_data_len_t dataLen, ipmi_context_t context) |
| 1208 | { |
| 1209 | uint16_t generatorID; |
| 1210 | size_t count; |
| 1211 | bool assert = true; |
| 1212 | std::string sensorPath; |
| 1213 | size_t paraLen = *dataLen; |
| 1214 | PlatformEventRequest* req; |
| 1215 | *dataLen = 0; |
| 1216 | |
| 1217 | if ((paraLen < selSystemEventSizeWith1Bytes) || |
| 1218 | (paraLen > selSystemEventSizeWith3Bytes)) |
| 1219 | { |
| 1220 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 1221 | } |
| 1222 | |
| 1223 | if (isFromSystemChannel()) |
| 1224 | { // first byte for SYSTEM Interface is Generator ID |
| 1225 | // +1 to get common struct |
| 1226 | req = reinterpret_cast<PlatformEventRequest*>((uint8_t*)request + 1); |
| 1227 | // Capture the generator ID |
| 1228 | generatorID = *reinterpret_cast<uint8_t*>(request); |
| 1229 | // Platform Event usually comes from other firmware, like BIOS. |
| 1230 | // Unlike BMC sensor, it does not have BMC DBUS sensor path. |
| 1231 | sensorPath = "System"; |
| 1232 | } |
| 1233 | else |
| 1234 | { |
| 1235 | req = reinterpret_cast<PlatformEventRequest*>(request); |
| 1236 | // TODO GenratorID for IPMB is combination of RqSA and RqLUN |
| 1237 | generatorID = 0xff; |
| 1238 | sensorPath = "IPMB"; |
| 1239 | } |
| 1240 | // Content of event data field depends on sensor class. |
| 1241 | // When data0 bit[5:4] is non-zero, valid data counts is 3. |
| 1242 | // When data0 bit[7:6] is non-zero, valid data counts is 2. |
| 1243 | if (((req->data[0] & byte3EnableMask) != 0 && |
| 1244 | paraLen < selSystemEventSizeWith3Bytes) || |
| 1245 | ((req->data[0] & byte2EnableMask) != 0 && |
| 1246 | paraLen < selSystemEventSizeWith2Bytes)) |
| 1247 | { |
| 1248 | return IPMI_CC_REQ_DATA_LEN_INVALID; |
| 1249 | } |
| 1250 | |
| 1251 | // Count bytes of Event Data |
| 1252 | if ((req->data[0] & byte3EnableMask) != 0) |
| 1253 | { |
| 1254 | count = 3; |
| 1255 | } |
| 1256 | else if ((req->data[0] & byte2EnableMask) != 0) |
| 1257 | { |
| 1258 | count = 2; |
| 1259 | } |
| 1260 | else |
| 1261 | { |
| 1262 | count = 1; |
| 1263 | } |
| 1264 | assert = req->eventDirectionType & directionMask ? false : true; |
| 1265 | std::vector<uint8_t> eventData(req->data, req->data + count); |
| 1266 | |
| 1267 | sdbusplus::bus::bus dbus(bus); |
| 1268 | std::string service = |
| 1269 | ipmi::getService(dbus, ipmiSELAddInterface, ipmiSELPath); |
| 1270 | sdbusplus::message::message writeSEL = dbus.new_method_call( |
| 1271 | service.c_str(), ipmiSELPath, ipmiSELAddInterface, "IpmiSelAdd"); |
| 1272 | writeSEL.append(ipmiSELAddMessage, sensorPath, eventData, assert, |
| 1273 | generatorID); |
| 1274 | try |
| 1275 | { |
| 1276 | dbus.call(writeSEL); |
| 1277 | } |
Patrick Williams | a2ad2da | 2021-10-06 12:21:46 -0500 | [diff] [blame] | 1278 | catch (const sdbusplus::exception_t& e) |
Jia, Chunhui | 3342a8e | 2018-12-29 13:32:26 +0800 | [diff] [blame] | 1279 | { |
| 1280 | phosphor::logging::log<phosphor::logging::level::ERR>(e.what()); |
| 1281 | return IPMI_CC_UNSPECIFIED_ERROR; |
| 1282 | } |
| 1283 | return IPMI_CC_OK; |
| 1284 | } |
| 1285 | |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 1286 | void register_netfn_sen_functions() |
| 1287 | { |
Willy Tu | d351a72 | 2021-08-12 14:33:40 -0700 | [diff] [blame] | 1288 | // Handlers with dbus-sdr handler implementation. |
| 1289 | // Do not register the hander if it dynamic sensors stack is used. |
Deepak Kumar Sahu | a8be7dc | 2019-05-07 14:26:53 +0000 | [diff] [blame] | 1290 | |
Willy Tu | d351a72 | 2021-08-12 14:33:40 -0700 | [diff] [blame] | 1291 | #ifndef FEATURE_DYNAMIC_SENSORS |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 1292 | // <Set Sensor Reading and Event Status> |
Deepak Kumar Sahu | 9da3a75 | 2019-05-21 00:45:14 +0000 | [diff] [blame] | 1293 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor, |
| 1294 | ipmi::sensor_event::cmdSetSensorReadingAndEvtSts, |
| 1295 | ipmi::Privilege::Operator, ipmiSetSensorReading); |
Tom | 0573237 | 2016-09-06 17:21:23 +0530 | [diff] [blame] | 1296 | // <Get Sensor Reading> |
jayaprakash Mutyala | 4c3feba | 2019-07-16 00:14:35 +0000 | [diff] [blame] | 1297 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor, |
| 1298 | ipmi::sensor_event::cmdGetSensorReading, |
| 1299 | ipmi::Privilege::User, ipmiSensorGetSensorReading); |
Emily Shaffer | a344afc | 2017-04-13 15:09:39 -0700 | [diff] [blame] | 1300 | |
Tom Joseph | 5ca5095 | 2018-02-22 00:33:38 +0530 | [diff] [blame] | 1301 | // <Reserve Device SDR Repository> |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame] | 1302 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor, |
| 1303 | ipmi::sensor_event::cmdReserveDeviceSdrRepository, |
| 1304 | ipmi::Privilege::User, ipmiSensorReserveSdr); |
Chris Austen | 10ccc0f | 2015-12-10 18:27:04 -0600 | [diff] [blame] | 1305 | |
Tom Joseph | 5ca5095 | 2018-02-22 00:33:38 +0530 | [diff] [blame] | 1306 | // <Get Device SDR Info> |
jayaprakash Mutyala | d957823 | 2019-05-13 20:22:50 +0000 | [diff] [blame] | 1307 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor, |
| 1308 | ipmi::sensor_event::cmdGetDeviceSdrInfo, |
| 1309 | ipmi::Privilege::User, ipmiSensorGetDeviceSdrInfo); |
Emily Shaffer | bbef71c | 2017-05-08 16:36:17 -0700 | [diff] [blame] | 1310 | |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 1311 | // <Get Sensor Thresholds> |
jayaprakash Mutyala | 996c979 | 2019-05-03 15:56:48 +0000 | [diff] [blame] | 1312 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor, |
| 1313 | ipmi::sensor_event::cmdGetSensorThreshold, |
| 1314 | ipmi::Privilege::User, ipmiSensorGetSensorThresholds); |
Dhruvaraj Subhashchandran | 5c0beec | 2018-01-23 04:47:06 -0600 | [diff] [blame] | 1315 | |
Lotus Xu | f93da66 | 2021-10-18 17:20:06 +0800 | [diff] [blame] | 1316 | // <Set Sensor Thresholds> |
| 1317 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor, |
| 1318 | ipmi::sensor_event::cmdSetSensorThreshold, |
| 1319 | ipmi::Privilege::User, ipmiSenSetSensorThresholds); |
Willy Tu | d351a72 | 2021-08-12 14:33:40 -0700 | [diff] [blame] | 1320 | #endif |
| 1321 | |
| 1322 | // Common Handers used by both implementation. |
| 1323 | |
| 1324 | // <Platform Event Message> |
| 1325 | ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_PLATFORM_EVENT, nullptr, |
| 1326 | ipmicmdPlatformEvent, PRIVILEGE_OPERATOR); |
| 1327 | |
| 1328 | // <Get Sensor Type> |
| 1329 | ipmi::registerHandler(ipmi::prioOpenBmcBase, ipmi::netFnSensor, |
| 1330 | ipmi::sensor_event::cmdGetSensorType, |
| 1331 | ipmi::Privilege::User, ipmiGetSensorType); |
| 1332 | |
| 1333 | // <Get Device SDR> |
| 1334 | ipmi_register_callback(NETFUN_SENSOR, IPMI_CMD_GET_DEVICE_SDR, nullptr, |
| 1335 | ipmi_sen_get_sdr, PRIVILEGE_USER); |
Chris Austen | ac4604a | 2015-10-13 12:43:27 -0500 | [diff] [blame] | 1336 | return; |
| 1337 | } |