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